initial commit
This commit is contained in:
53
packages/db/shared/schemas/objects/AppointmentProcedureOrderByWithRelationInput.schema.d.ts
vendored
Normal file
53
packages/db/shared/schemas/objects/AppointmentProcedureOrderByWithRelationInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const AppointmentProcedureOrderByWithRelationInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureOrderByWithRelationInput>;
|
||||
export declare const AppointmentProcedureOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
appointmentId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
patientId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
procedureCode: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
procedureLabel: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
fee: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
category: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
toothNumber: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
toothSurface: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
oralCavityArea: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
source: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
comboKey: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
||||
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
||||
appointment: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentOrderByWithRelationInput, z.ZodTypeDef, Prisma.AppointmentOrderByWithRelationInput>>>;
|
||||
patient: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientOrderByWithRelationInput, z.ZodTypeDef, Prisma.PatientOrderByWithRelationInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
patientId?: "asc" | "desc" | undefined;
|
||||
patient?: Prisma.PatientOrderByWithRelationInput | undefined;
|
||||
procedureCode?: "asc" | "desc" | undefined;
|
||||
procedureLabel?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
fee?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
category?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
toothNumber?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
toothSurface?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
oralCavityArea?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
source?: "asc" | "desc" | undefined;
|
||||
comboKey?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
appointmentId?: "asc" | "desc" | undefined;
|
||||
appointment?: Prisma.AppointmentOrderByWithRelationInput | undefined;
|
||||
}, {
|
||||
createdAt?: "asc" | "desc" | undefined;
|
||||
id?: "asc" | "desc" | undefined;
|
||||
patientId?: "asc" | "desc" | undefined;
|
||||
patient?: Prisma.PatientOrderByWithRelationInput | undefined;
|
||||
procedureCode?: "asc" | "desc" | undefined;
|
||||
procedureLabel?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
fee?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
category?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
toothNumber?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
toothSurface?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
oralCavityArea?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
source?: "asc" | "desc" | undefined;
|
||||
comboKey?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
||||
appointmentId?: "asc" | "desc" | undefined;
|
||||
appointment?: Prisma.AppointmentOrderByWithRelationInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=AppointmentProcedureOrderByWithRelationInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user