initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const StaffCreateWithoutUserInputObjectSchema: z.ZodType<Prisma.StaffCreateWithoutUserInput>;
export declare const StaffCreateWithoutUserInputObjectZodSchema: 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>;
appointments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentCreateNestedManyWithoutStaffInput, z.ZodTypeDef, Prisma.AppointmentCreateNestedManyWithoutStaffInput>>>;
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimCreateNestedManyWithoutStaffInput, z.ZodTypeDef, Prisma.ClaimCreateNestedManyWithoutStaffInput>>>;
}, "strict", z.ZodTypeAny, {
name: string;
role: string;
createdAt?: Date | undefined;
claims?: Prisma.ClaimCreateNestedManyWithoutStaffInput | undefined;
email?: string | null | undefined;
phone?: string | null | undefined;
appointments?: Prisma.AppointmentCreateNestedManyWithoutStaffInput | undefined;
}, {
name: string;
role: string;
createdAt?: Date | undefined;
claims?: Prisma.ClaimCreateNestedManyWithoutStaffInput | undefined;
email?: string | null | undefined;
phone?: string | null | undefined;
appointments?: Prisma.AppointmentCreateNestedManyWithoutStaffInput | undefined;
}>;
//# sourceMappingURL=StaffCreateWithoutUserInput.schema.d.ts.map