50 lines
2.7 KiB
TypeScript
50 lines
2.7 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const AppointmentCreateWithoutClaimsInputObjectSchema: z.ZodType<Prisma.AppointmentCreateWithoutClaimsInput>;
|
|
export declare const AppointmentCreateWithoutClaimsInputObjectZodSchema: z.ZodObject<{
|
|
title: z.ZodString;
|
|
date: z.ZodDate;
|
|
startTime: z.ZodString;
|
|
endTime: z.ZodString;
|
|
type: z.ZodString;
|
|
notes: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
procedureCodeNotes: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
status: z.ZodOptional<z.ZodString>;
|
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
eligibilityStatus: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "UNKNOWN"]>>;
|
|
patient: z.ZodLazy<z.ZodType<Prisma.PatientCreateNestedOneWithoutAppointmentsInput, z.ZodTypeDef, Prisma.PatientCreateNestedOneWithoutAppointmentsInput>>;
|
|
user: z.ZodLazy<z.ZodType<Prisma.UserCreateNestedOneWithoutAppointmentsInput, z.ZodTypeDef, Prisma.UserCreateNestedOneWithoutAppointmentsInput>>;
|
|
staff: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffCreateNestedOneWithoutAppointmentsInput, z.ZodTypeDef, Prisma.StaffCreateNestedOneWithoutAppointmentsInput>>>;
|
|
procedures: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureCreateNestedManyWithoutAppointmentInput, z.ZodTypeDef, Prisma.AppointmentProcedureCreateNestedManyWithoutAppointmentInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
type: string;
|
|
user: Prisma.UserCreateNestedOneWithoutAppointmentsInput;
|
|
date: Date;
|
|
title: string;
|
|
patient: Prisma.PatientCreateNestedOneWithoutAppointmentsInput;
|
|
startTime: string;
|
|
endTime: string;
|
|
status?: string | undefined;
|
|
createdAt?: Date | undefined;
|
|
notes?: string | null | undefined;
|
|
procedureCodeNotes?: string | null | undefined;
|
|
eligibilityStatus?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined;
|
|
staff?: Prisma.StaffCreateNestedOneWithoutAppointmentsInput | undefined;
|
|
procedures?: Prisma.AppointmentProcedureCreateNestedManyWithoutAppointmentInput | undefined;
|
|
}, {
|
|
type: string;
|
|
user: Prisma.UserCreateNestedOneWithoutAppointmentsInput;
|
|
date: Date;
|
|
title: string;
|
|
patient: Prisma.PatientCreateNestedOneWithoutAppointmentsInput;
|
|
startTime: string;
|
|
endTime: string;
|
|
status?: string | undefined;
|
|
createdAt?: Date | undefined;
|
|
notes?: string | null | undefined;
|
|
procedureCodeNotes?: string | null | undefined;
|
|
eligibilityStatus?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined;
|
|
staff?: Prisma.StaffCreateNestedOneWithoutAppointmentsInput | undefined;
|
|
procedures?: Prisma.AppointmentProcedureCreateNestedManyWithoutAppointmentInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=AppointmentCreateWithoutClaimsInput.schema.d.ts.map
|