- 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
2.8 KiB
TypeScript
38 lines
2.8 KiB
TypeScript
import type { Prisma } from '../../generated/prisma';
|
|
import * as z from 'zod';
|
|
export declare const CronJobLogAggregateSchema: z.ZodType<Prisma.CronJobLogAggregateArgs>;
|
|
export declare const CronJobLogAggregateZodSchema: z.ZodObject<{
|
|
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.CronJobLogOrderByWithRelationInput, z.ZodTypeDef, Prisma.CronJobLogOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.CronJobLogOrderByWithRelationInput, z.ZodTypeDef, Prisma.CronJobLogOrderByWithRelationInput>, "many">]>>;
|
|
where: z.ZodOptional<z.ZodType<Prisma.CronJobLogWhereInput, z.ZodTypeDef, Prisma.CronJobLogWhereInput>>;
|
|
cursor: z.ZodOptional<z.ZodType<Prisma.CronJobLogWhereUniqueInput, z.ZodTypeDef, Prisma.CronJobLogWhereUniqueInput>>;
|
|
take: z.ZodOptional<z.ZodNumber>;
|
|
skip: z.ZodOptional<z.ZodNumber>;
|
|
_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, {
|
|
where?: Prisma.CronJobLogWhereInput | undefined;
|
|
_count?: true | Prisma.CronJobLogCountAggregateInputType | undefined;
|
|
orderBy?: Prisma.CronJobLogOrderByWithRelationInput | Prisma.CronJobLogOrderByWithRelationInput[] | undefined;
|
|
cursor?: Prisma.CronJobLogWhereUniqueInput | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
_min?: Prisma.CronJobLogMinAggregateInputType | undefined;
|
|
_max?: Prisma.CronJobLogMaxAggregateInputType | undefined;
|
|
_avg?: Prisma.CronJobLogAvgAggregateInputType | undefined;
|
|
_sum?: Prisma.CronJobLogSumAggregateInputType | undefined;
|
|
}, {
|
|
where?: Prisma.CronJobLogWhereInput | undefined;
|
|
_count?: true | Prisma.CronJobLogCountAggregateInputType | undefined;
|
|
orderBy?: Prisma.CronJobLogOrderByWithRelationInput | Prisma.CronJobLogOrderByWithRelationInput[] | undefined;
|
|
cursor?: Prisma.CronJobLogWhereUniqueInput | undefined;
|
|
take?: number | undefined;
|
|
skip?: number | undefined;
|
|
_min?: Prisma.CronJobLogMinAggregateInputType | undefined;
|
|
_max?: Prisma.CronJobLogMaxAggregateInputType | undefined;
|
|
_avg?: Prisma.CronJobLogAvgAggregateInputType | undefined;
|
|
_sum?: Prisma.CronJobLogSumAggregateInputType | undefined;
|
|
}>;
|
|
//# sourceMappingURL=aggregateCronJobLog.schema.d.ts.map
|