initial commit
This commit is contained in:
20
packages/db/shared/schemas/objects/AppointmentProcedureSumAggregateInput.schema.d.ts
vendored
Normal file
20
packages/db/shared/schemas/objects/AppointmentProcedureSumAggregateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const AppointmentProcedureSumAggregateInputObjectSchema: z.ZodType<Prisma.AppointmentProcedureSumAggregateInputType>;
|
||||
export declare const AppointmentProcedureSumAggregateInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
appointmentId: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
patientId: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
fee: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
id?: true | undefined;
|
||||
patientId?: true | undefined;
|
||||
fee?: true | undefined;
|
||||
appointmentId?: true | undefined;
|
||||
}, {
|
||||
id?: true | undefined;
|
||||
patientId?: true | undefined;
|
||||
fee?: true | undefined;
|
||||
appointmentId?: true | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=AppointmentProcedureSumAggregateInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user