initial commit
This commit is contained in:
53
packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutPatientInput.schema.d.ts
vendored
Normal file
53
packages/db/shared/schemas/objects/AppointmentUncheckedCreateWithoutPatientInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const AppointmentUncheckedCreateWithoutPatientInputObjectSchema: z.ZodType<Prisma.AppointmentUncheckedCreateWithoutPatientInput>;
|
||||
export declare const AppointmentUncheckedCreateWithoutPatientInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodNumber>;
|
||||
userId: z.ZodNumber;
|
||||
staffId: z.ZodNumber;
|
||||
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"]>>;
|
||||
procedures: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput, z.ZodTypeDef, Prisma.AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput>>>;
|
||||
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimUncheckedCreateNestedManyWithoutAppointmentInput, z.ZodTypeDef, Prisma.ClaimUncheckedCreateNestedManyWithoutAppointmentInput>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
type: string;
|
||||
userId: number;
|
||||
date: Date;
|
||||
title: string;
|
||||
startTime: string;
|
||||
endTime: string;
|
||||
staffId: number;
|
||||
status?: string | undefined;
|
||||
createdAt?: Date | undefined;
|
||||
id?: number | undefined;
|
||||
notes?: string | null | undefined;
|
||||
procedureCodeNotes?: string | null | undefined;
|
||||
eligibilityStatus?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined;
|
||||
procedures?: Prisma.AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput | undefined;
|
||||
claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutAppointmentInput | undefined;
|
||||
}, {
|
||||
type: string;
|
||||
userId: number;
|
||||
date: Date;
|
||||
title: string;
|
||||
startTime: string;
|
||||
endTime: string;
|
||||
staffId: number;
|
||||
status?: string | undefined;
|
||||
createdAt?: Date | undefined;
|
||||
id?: number | undefined;
|
||||
notes?: string | null | undefined;
|
||||
procedureCodeNotes?: string | null | undefined;
|
||||
eligibilityStatus?: "ACTIVE" | "INACTIVE" | "UNKNOWN" | undefined;
|
||||
procedures?: Prisma.AppointmentProcedureUncheckedCreateNestedManyWithoutAppointmentInput | undefined;
|
||||
claims?: Prisma.ClaimUncheckedCreateNestedManyWithoutAppointmentInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=AppointmentUncheckedCreateWithoutPatientInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user