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

29 lines
995 B
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const StaffCreateManyInputObjectSchema: z.ZodType<Prisma.StaffCreateManyInput>;
export declare const StaffCreateManyInputObjectZodSchema: 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>;
}, "strict", z.ZodTypeAny, {
userId: number;
name: string;
role: string;
createdAt?: Date | undefined;
id?: number | undefined;
email?: string | null | undefined;
phone?: string | null | undefined;
}, {
userId: number;
name: string;
role: string;
createdAt?: Date | undefined;
id?: number | undefined;
email?: string | null | undefined;
phone?: string | null | undefined;
}>;
//# sourceMappingURL=StaffCreateManyInput.schema.d.ts.map