- Add 'Select Procedures' right-click option on appointment page (separate from Claims/PreAuth) - Select Procedures form saves CDT codes + NPI provider to AppointmentProcedure storage - Remove Save button from insurance claim form; Claims/PreAuth opens for insurance submission only - Claims/PreAuth auto-prefills from saved procedures including NPI provider - Batch-column: procedures npiProviderId takes priority over stale claim npiProviderId - Batch-column: auto-save PDF to patient Documents after successful submission (no socket needed) - Add npiProviderId column to AppointmentProcedure table (prisma db push) - Fix 'invalid db creation invocation': guard staffId, npiProviderId, procedureDate as Date object, totalBilled NaN guard - Add full error logging to batch-column catch block Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
41 lines
3.2 KiB
TypeScript
41 lines
3.2 KiB
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
export declare const CronJobLogGroupBySchema: z.ZodType<Prisma.CronJobLogGroupByArgs>;
|
|
export declare const CronJobLogGroupByZodSchema: z.ZodObject<{
|
|
where: z.ZodOptional<z.ZodType<Prisma.CronJobLogWhereInput, z.ZodTypeDef, Prisma.CronJobLogWhereInput>>;
|
|
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.CronJobLogOrderByWithAggregationInput, z.ZodTypeDef, Prisma.CronJobLogOrderByWithAggregationInput>, z.ZodArray<z.ZodType<Prisma.CronJobLogOrderByWithAggregationInput, z.ZodTypeDef, Prisma.CronJobLogOrderByWithAggregationInput>, "many">]>>;
|
|
having: z.ZodOptional<z.ZodType<Prisma.CronJobLogScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.CronJobLogScalarWhereWithAggregatesInput>>;
|
|
take: z.ZodOptional<z.ZodNumber>;
|
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
by: z.ZodArray<z.ZodEnum<["id", "jobName", "status", "startedAt", "completedAt", "durationMs", "errorMessage"]>, "many">;
|
|
_count: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<true>, z.ZodType<Prisma.CronJobLogCountAggregateInputType, z.ZodTypeDef, Prisma.CronJobLogCountAggregateInputType>]>>;
|
|
_min: z.ZodOptional<z.ZodType<Prisma.CronJobLogMinAggregateInputType, z.ZodTypeDef, Prisma.CronJobLogMinAggregateInputType>>;
|
|
_max: z.ZodOptional<z.ZodType<Prisma.CronJobLogMaxAggregateInputType, z.ZodTypeDef, Prisma.CronJobLogMaxAggregateInputType>>;
|
|
_avg: z.ZodOptional<z.ZodType<Prisma.CronJobLogAvgAggregateInputType, z.ZodTypeDef, Prisma.CronJobLogAvgAggregateInputType>>;
|
|
_sum: z.ZodOptional<z.ZodType<Prisma.CronJobLogSumAggregateInputType, z.ZodTypeDef, Prisma.CronJobLogSumAggregateInputType>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
by: ("status" | "id" | "jobName" | "startedAt" | "completedAt" | "durationMs" | "errorMessage")[];
|
|
where?: Prisma.CronJobLogWhereInput | undefined;
|
|
_count?: true | Prisma.CronJobLogCountAggregateInputType | undefined;
|
|
orderBy?: Prisma.CronJobLogOrderByWithAggregationInput | Prisma.CronJobLogOrderByWithAggregationInput[] | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
_min?: Prisma.CronJobLogMinAggregateInputType | undefined;
|
|
_max?: Prisma.CronJobLogMaxAggregateInputType | undefined;
|
|
_avg?: Prisma.CronJobLogAvgAggregateInputType | undefined;
|
|
_sum?: Prisma.CronJobLogSumAggregateInputType | undefined;
|
|
having?: Prisma.CronJobLogScalarWhereWithAggregatesInput | undefined;
|
|
}, {
|
|
by: ("status" | "id" | "jobName" | "startedAt" | "completedAt" | "durationMs" | "errorMessage")[];
|
|
where?: Prisma.CronJobLogWhereInput | undefined;
|
|
_count?: true | Prisma.CronJobLogCountAggregateInputType | undefined;
|
|
orderBy?: Prisma.CronJobLogOrderByWithAggregationInput | Prisma.CronJobLogOrderByWithAggregationInput[] | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
_min?: Prisma.CronJobLogMinAggregateInputType | undefined;
|
|
_max?: Prisma.CronJobLogMaxAggregateInputType | undefined;
|
|
_avg?: Prisma.CronJobLogAvgAggregateInputType | undefined;
|
|
_sum?: Prisma.CronJobLogSumAggregateInputType | undefined;
|
|
having?: Prisma.CronJobLogScalarWhereWithAggregatesInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=groupByCronJobLog.schema.d.ts.map
|