Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/ClaimCreateManyPatientInput.schema.d.ts
2026-04-04 22:13:55 -04:00

56 lines
2.3 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const ClaimCreateManyPatientInputObjectSchema: z.ZodType<Prisma.ClaimCreateManyPatientInput>;
export declare const ClaimCreateManyPatientInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodNumber>;
appointmentId: z.ZodNumber;
userId: z.ZodNumber;
staffId: z.ZodNumber;
patientName: z.ZodString;
memberId: z.ZodString;
dateOfBirth: z.ZodDate;
remarks: z.ZodString;
missingTeethStatus: z.ZodOptional<z.ZodEnum<["No_missing", "endentulous", "Yes_missing"]>>;
missingTeeth: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["DbNull", "JsonNull"]>, z.ZodType<import("../../helpers/json-helpers").JsonValue, z.ZodTypeDef, import("../../helpers/json-helpers").JsonValue>]>>;
serviceDate: z.ZodDate;
insuranceProvider: z.ZodString;
createdAt: z.ZodOptional<z.ZodDate>;
updatedAt: z.ZodOptional<z.ZodDate>;
status: z.ZodOptional<z.ZodEnum<["PENDING", "APPROVED", "CANCELLED", "REVIEW", "VOID"]>>;
claimNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
}, "strict", z.ZodTypeAny, {
userId: number;
appointmentId: number;
staffId: number;
patientName: string;
memberId: string;
dateOfBirth: Date;
remarks: string;
serviceDate: Date;
insuranceProvider: string;
status?: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | undefined;
createdAt?: Date | undefined;
id?: number | undefined;
updatedAt?: Date | undefined;
missingTeethStatus?: "No_missing" | "endentulous" | "Yes_missing" | undefined;
missingTeeth?: import("../../helpers/json-helpers").JsonValue | undefined;
claimNumber?: string | null | undefined;
}, {
userId: number;
appointmentId: number;
staffId: number;
patientName: string;
memberId: string;
dateOfBirth: Date;
remarks: string;
serviceDate: Date;
insuranceProvider: string;
status?: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | undefined;
createdAt?: Date | undefined;
id?: number | undefined;
updatedAt?: Date | undefined;
missingTeethStatus?: "No_missing" | "endentulous" | "Yes_missing" | undefined;
missingTeeth?: import("../../helpers/json-helpers").JsonValue | undefined;
claimNumber?: string | null | undefined;
}>;
//# sourceMappingURL=ClaimCreateManyPatientInput.schema.d.ts.map