initial commit
This commit is contained in:
50
packages/db/shared/schemas/objects/AppointmentCreateWithoutProceduresInput.schema.d.ts
vendored
Normal file
50
packages/db/shared/schemas/objects/AppointmentCreateWithoutProceduresInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const AppointmentCreateWithoutProceduresInputObjectSchema: z.ZodType<Prisma.AppointmentCreateWithoutProceduresInput>;
|
||||
export declare const AppointmentCreateWithoutProceduresInputObjectZodSchema: 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>>>;
|
||||
claims: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimCreateNestedManyWithoutAppointmentInput, z.ZodTypeDef, Prisma.ClaimCreateNestedManyWithoutAppointmentInput>>>;
|
||||
}, "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;
|
||||
claims?: Prisma.ClaimCreateNestedManyWithoutAppointmentInput | 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;
|
||||
claims?: Prisma.ClaimCreateNestedManyWithoutAppointmentInput | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=AppointmentCreateWithoutProceduresInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user