Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/StaffCreateWithoutAppointmentsInput.schema.d.ts
2026-04-04 22:13:55 -04:00

29 lines
1.4 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const StaffCreateWithoutAppointmentsInputObjectSchema: z.ZodType<Prisma.StaffCreateWithoutAppointmentsInput>;
export declare const StaffCreateWithoutAppointmentsInputObjectZodSchema: z.ZodObject<{
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>;
user: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserCreateNestedOneWithoutStaffInput, z.ZodTypeDef, Prisma.UserCreateNestedOneWithoutStaffInput>>>;
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimCreateNestedManyWithoutStaffInput, z.ZodTypeDef, Prisma.ClaimCreateNestedManyWithoutStaffInput>>>;
}, "strict", z.ZodTypeAny, {
name: string;
role: string;
createdAt?: Date | undefined;
user?: Prisma.UserCreateNestedOneWithoutStaffInput | undefined;
claims?: Prisma.ClaimCreateNestedManyWithoutStaffInput | undefined;
email?: string | null | undefined;
phone?: string | null | undefined;
}, {
name: string;
role: string;
createdAt?: Date | undefined;
user?: Prisma.UserCreateNestedOneWithoutStaffInput | undefined;
claims?: Prisma.ClaimCreateNestedManyWithoutStaffInput | undefined;
email?: string | null | undefined;
phone?: string | null | undefined;
}>;
//# sourceMappingURL=StaffCreateWithoutAppointmentsInput.schema.d.ts.map