32 lines
1.7 KiB
TypeScript
32 lines
1.7 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const StaffUncheckedCreateWithoutUserInputObjectSchema: z.ZodType<Prisma.StaffUncheckedCreateWithoutUserInput>;
|
|
export declare const StaffUncheckedCreateWithoutUserInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<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>>>;
|
|
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimUncheckedCreateNestedManyWithoutStaffInput, z.ZodTypeDef, Prisma.ClaimUncheckedCreateNestedManyWithoutStaffInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
name: string;
|
|
role: string;
|
|
createdAt?: Date | undefined;
|
|
id?: number | undefined;
|
|
claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutStaffInput | undefined;
|
|
email?: string | null | undefined;
|
|
phone?: string | null | undefined;
|
|
appointments?: Prisma.AppointmentUncheckedCreateNestedManyWithoutStaffInput | undefined;
|
|
}, {
|
|
name: string;
|
|
role: string;
|
|
createdAt?: Date | undefined;
|
|
id?: number | undefined;
|
|
claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutStaffInput | undefined;
|
|
email?: string | null | undefined;
|
|
phone?: string | null | undefined;
|
|
appointments?: Prisma.AppointmentUncheckedCreateNestedManyWithoutStaffInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=StaffUncheckedCreateWithoutUserInput.schema.d.ts.map
|