initial commit
This commit is contained in:
32
packages/db/shared/schemas/objects/StaffUncheckedUpdateWithoutUserInput.schema.d.ts
vendored
Normal file
32
packages/db/shared/schemas/objects/StaffUncheckedUpdateWithoutUserInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const StaffUncheckedUpdateWithoutUserInputObjectSchema: z.ZodType<Prisma.StaffUncheckedUpdateWithoutUserInput>;
|
||||
export declare const StaffUncheckedUpdateWithoutUserInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
||||
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>>]>>;
|
||||
appointments: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentUncheckedUpdateManyWithoutStaffNestedInput, z.ZodTypeDef, Prisma.AppointmentUncheckedUpdateManyWithoutStaffNestedInput>>>;
|
||||
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimUncheckedUpdateManyWithoutStaffNestedInput, z.ZodTypeDef, Prisma.ClaimUncheckedUpdateManyWithoutStaffNestedInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
||||
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
||||
claims?: Prisma.ClaimUncheckedUpdateManyWithoutStaffNestedInput | undefined;
|
||||
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
email?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
||||
role?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
||||
appointments?: Prisma.AppointmentUncheckedUpdateManyWithoutStaffNestedInput | undefined;
|
||||
}, {
|
||||
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
||||
id?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
||||
claims?: Prisma.ClaimUncheckedUpdateManyWithoutStaffNestedInput | undefined;
|
||||
name?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
email?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
||||
role?: string | Prisma.StringFieldUpdateOperationsInput | undefined;
|
||||
phone?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
||||
appointments?: Prisma.AppointmentUncheckedUpdateManyWithoutStaffNestedInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=StaffUncheckedUpdateWithoutUserInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user