Files
DentalManagementMH06/packages/db/shared/schemas/objects/CronJobLogOrderByWithAggregationInput.schema.d.ts
Gitead 3e899376c3 feat: Select Procedures flow, batch-column NPI provider fix, auto PDF save
- 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>
2026-04-27 00:25:24 -04:00

44 lines
3.2 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const CronJobLogOrderByWithAggregationInputObjectSchema: z.ZodType<Prisma.CronJobLogOrderByWithAggregationInput>;
export declare const CronJobLogOrderByWithAggregationInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
jobName: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
status: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
startedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
completedAt: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
durationMs: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
errorMessage: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
_count: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CronJobLogCountOrderByAggregateInput, z.ZodTypeDef, Prisma.CronJobLogCountOrderByAggregateInput>>>;
_avg: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CronJobLogAvgOrderByAggregateInput, z.ZodTypeDef, Prisma.CronJobLogAvgOrderByAggregateInput>>>;
_max: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CronJobLogMaxOrderByAggregateInput, z.ZodTypeDef, Prisma.CronJobLogMaxOrderByAggregateInput>>>;
_min: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CronJobLogMinOrderByAggregateInput, z.ZodTypeDef, Prisma.CronJobLogMinOrderByAggregateInput>>>;
_sum: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.CronJobLogSumOrderByAggregateInput, z.ZodTypeDef, Prisma.CronJobLogSumOrderByAggregateInput>>>;
}, "strict", z.ZodTypeAny, {
status?: "asc" | "desc" | undefined;
id?: "asc" | "desc" | undefined;
_count?: Prisma.CronJobLogCountOrderByAggregateInput | undefined;
_min?: Prisma.CronJobLogMinOrderByAggregateInput | undefined;
_max?: Prisma.CronJobLogMaxOrderByAggregateInput | undefined;
_avg?: Prisma.CronJobLogAvgOrderByAggregateInput | undefined;
_sum?: Prisma.CronJobLogSumOrderByAggregateInput | undefined;
jobName?: "asc" | "desc" | undefined;
startedAt?: "asc" | "desc" | undefined;
completedAt?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
durationMs?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
errorMessage?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
}, {
status?: "asc" | "desc" | undefined;
id?: "asc" | "desc" | undefined;
_count?: Prisma.CronJobLogCountOrderByAggregateInput | undefined;
_min?: Prisma.CronJobLogMinOrderByAggregateInput | undefined;
_max?: Prisma.CronJobLogMaxOrderByAggregateInput | undefined;
_avg?: Prisma.CronJobLogAvgOrderByAggregateInput | undefined;
_sum?: Prisma.CronJobLogSumOrderByAggregateInput | undefined;
jobName?: "asc" | "desc" | undefined;
startedAt?: "asc" | "desc" | undefined;
completedAt?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
durationMs?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
errorMessage?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
}>;
//# sourceMappingURL=CronJobLogOrderByWithAggregationInput.schema.d.ts.map