58 lines
2.2 KiB
TypeScript
58 lines
2.2 KiB
TypeScript
import * as z from 'zod';
|
|
export declare const AppointmentProcedureInputSchema: z.ZodObject<{
|
|
id: z.ZodNumber;
|
|
appointmentId: z.ZodNumber;
|
|
patientId: z.ZodNumber;
|
|
npiProviderId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
procedureCode: z.ZodString;
|
|
procedureLabel: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
fee: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
category: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
toothNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
toothSurface: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
oralCavityArea: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
source: z.ZodEnum<["COMBO", "MANUAL"]>;
|
|
comboKey: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
createdAt: z.ZodDate;
|
|
appointment: z.ZodUnknown;
|
|
patient: z.ZodUnknown;
|
|
npiProvider: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id: number;
|
|
createdAt: Date;
|
|
patientId: number;
|
|
procedureCode: string;
|
|
source: "COMBO" | "MANUAL";
|
|
appointmentId: number;
|
|
patient?: unknown;
|
|
npiProviderId?: number | null | undefined;
|
|
procedureLabel?: string | null | undefined;
|
|
fee?: number | null | undefined;
|
|
category?: string | null | undefined;
|
|
toothNumber?: string | null | undefined;
|
|
toothSurface?: string | null | undefined;
|
|
oralCavityArea?: string | null | undefined;
|
|
comboKey?: string | null | undefined;
|
|
appointment?: unknown;
|
|
npiProvider?: unknown;
|
|
}, {
|
|
id: number;
|
|
createdAt: Date;
|
|
patientId: number;
|
|
procedureCode: string;
|
|
source: "COMBO" | "MANUAL";
|
|
appointmentId: number;
|
|
patient?: unknown;
|
|
npiProviderId?: number | null | undefined;
|
|
procedureLabel?: string | null | undefined;
|
|
fee?: number | null | undefined;
|
|
category?: string | null | undefined;
|
|
toothNumber?: string | null | undefined;
|
|
toothSurface?: string | null | undefined;
|
|
oralCavityArea?: string | null | undefined;
|
|
comboKey?: string | null | undefined;
|
|
appointment?: unknown;
|
|
npiProvider?: unknown;
|
|
}>;
|
|
export type AppointmentProcedureInputType = z.infer<typeof AppointmentProcedureInputSchema>;
|
|
//# sourceMappingURL=AppointmentProcedure.input.d.ts.map
|