initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View 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