- 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>
38 lines
3.4 KiB
TypeScript
38 lines
3.4 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const CronJobLogWhereInputObjectSchema: z.ZodType<Prisma.CronJobLogWhereInput>;
|
|
export declare const CronJobLogWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CronJobLogWhereInput, z.ZodTypeDef, Prisma.CronJobLogWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CronJobLogWhereInput, z.ZodTypeDef, Prisma.CronJobLogWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CronJobLogWhereInput, z.ZodTypeDef, Prisma.CronJobLogWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.CronJobLogWhereInput, z.ZodTypeDef, Prisma.CronJobLogWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.CronJobLogWhereInput, z.ZodTypeDef, Prisma.CronJobLogWhereInput>>, "many">]>>;
|
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
jobName: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
status: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringFilter<never>, z.ZodTypeDef, Prisma.StringFilter<never>>>, z.ZodString]>>;
|
|
startedAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
completedAt: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeNullableFilter<never>, z.ZodTypeDef, Prisma.DateTimeNullableFilter<never>>>, z.ZodDate]>>>;
|
|
durationMs: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntNullableFilter<never>, z.ZodTypeDef, Prisma.IntNullableFilter<never>>>, z.ZodNumber]>>>;
|
|
errorMessage: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
status?: string | Prisma.StringFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.CronJobLogWhereInput | Prisma.CronJobLogWhereInput[] | undefined;
|
|
OR?: Prisma.CronJobLogWhereInput[] | undefined;
|
|
NOT?: Prisma.CronJobLogWhereInput | Prisma.CronJobLogWhereInput[] | undefined;
|
|
jobName?: string | Prisma.StringFilter<never> | undefined;
|
|
startedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
completedAt?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
durationMs?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
errorMessage?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
}, {
|
|
status?: string | Prisma.StringFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.CronJobLogWhereInput | Prisma.CronJobLogWhereInput[] | undefined;
|
|
OR?: Prisma.CronJobLogWhereInput[] | undefined;
|
|
NOT?: Prisma.CronJobLogWhereInput | Prisma.CronJobLogWhereInput[] | undefined;
|
|
jobName?: string | Prisma.StringFilter<never> | undefined;
|
|
startedAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
completedAt?: Date | Prisma.DateTimeNullableFilter<never> | null | undefined;
|
|
durationMs?: number | Prisma.IntNullableFilter<never> | null | undefined;
|
|
errorMessage?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
}>;
|
|
//# sourceMappingURL=CronJobLogWhereInput.schema.d.ts.map
|