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

23 lines
2.1 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const StaffUpdateManyMutationInputObjectSchema: z.ZodType<Prisma.StaffUpdateManyMutationInput>;
export declare const StaffUpdateManyMutationInputObjectZodSchema: z.ZodObject<{
name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
email: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
role: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.StringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.StringFieldUpdateOperationsInput>>]>>;
phone: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
}, "strict", z.ZodTypeAny, {
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
email?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
role?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
}, {
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
email?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
role?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
}>;
//# sourceMappingURL=StaffUpdateManyMutationInput.schema.d.ts.map