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,63 @@
import * as z from 'zod';
export declare const AppointmentDeleteResultSchema: z.ZodNullable<z.ZodObject<{
id: z.ZodNumber;
patientId: 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.ZodOptional<z.ZodString>;
procedureCodeNotes: z.ZodOptional<z.ZodString>;
status: z.ZodString;
createdAt: z.ZodDate;
eligibilityStatus: z.ZodUnknown;
patient: z.ZodUnknown;
user: z.ZodUnknown;
staff: z.ZodOptional<z.ZodUnknown>;
procedures: z.ZodArray<z.ZodUnknown, "many">;
claims: z.ZodArray<z.ZodUnknown, "many">;
}, "strip", z.ZodTypeAny, {
type: string;
status: string;
createdAt: Date;
id: number;
userId: number;
date: Date;
title: string;
patientId: number;
startTime: string;
endTime: string;
procedures: unknown[];
staffId: number;
claims: unknown[];
user?: unknown;
patient?: unknown;
notes?: string | undefined;
procedureCodeNotes?: string | undefined;
eligibilityStatus?: unknown;
staff?: unknown;
}, {
type: string;
status: string;
createdAt: Date;
id: number;
userId: number;
date: Date;
title: string;
patientId: number;
startTime: string;
endTime: string;
procedures: unknown[];
staffId: number;
claims: unknown[];
user?: unknown;
patient?: unknown;
notes?: string | undefined;
procedureCodeNotes?: string | undefined;
eligibilityStatus?: unknown;
staff?: unknown;
}>>;
//# sourceMappingURL=AppointmentDeleteResult.schema.d.ts.map