initial commit
This commit is contained in:
32
packages/db/shared/schemas/objects/StaffUncheckedCreateWithoutClaimsInput.schema.d.ts
vendored
Normal file
32
packages/db/shared/schemas/objects/StaffUncheckedCreateWithoutClaimsInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const StaffUncheckedCreateWithoutClaimsInputObjectSchema: z.ZodType<Prisma.StaffUncheckedCreateWithoutClaimsInput>;
|
||||
export declare const StaffUncheckedCreateWithoutClaimsInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodNumber>;
|
||||
userId: z.ZodNumber;
|
||||
name: z.ZodString;
|
||||
email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
role: z.ZodString;
|
||||
phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
||||
createdAt: z.ZodOptional<z.ZodDate>;
|
||||
appointments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentUncheckedCreateNestedManyWithoutStaffInput, z.ZodTypeDef, Prisma.AppointmentUncheckedCreateNestedManyWithoutStaffInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
userId: number;
|
||||
name: string;
|
||||
role: string;
|
||||
createdAt?: Date | undefined;
|
||||
id?: number | undefined;
|
||||
email?: string | null | undefined;
|
||||
phone?: string | null | undefined;
|
||||
appointments?: Prisma.AppointmentUncheckedCreateNestedManyWithoutStaffInput | undefined;
|
||||
}, {
|
||||
userId: number;
|
||||
name: string;
|
||||
role: string;
|
||||
createdAt?: Date | undefined;
|
||||
id?: number | undefined;
|
||||
email?: string | null | undefined;
|
||||
phone?: string | null | undefined;
|
||||
appointments?: Prisma.AppointmentUncheckedCreateNestedManyWithoutStaffInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=StaffUncheckedCreateWithoutClaimsInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user