50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const AppointmentCreateManyInputObjectSchema: z.ZodType<Prisma.AppointmentCreateManyInput>;
|
|
export declare const AppointmentCreateManyInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<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.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"]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
type: string;
|
|
userId: number;
|
|
date: Date;
|
|
title: string;
|
|
patientId: number;
|
|
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;
|
|
}, {
|
|
type: string;
|
|
userId: number;
|
|
date: Date;
|
|
title: string;
|
|
patientId: number;
|
|
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;
|
|
}>;
|
|
//# sourceMappingURL=AppointmentCreateManyInput.schema.d.ts.map
|