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

62 lines
3.9 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const ClaimCreateWithoutPatientInputObjectSchema: z.ZodType<Prisma.ClaimCreateWithoutPatientInput>;
export declare const ClaimCreateWithoutPatientInputObjectZodSchema: z.ZodObject<{
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>>;
appointment: z.ZodLazy<z.ZodType<Prisma.AppointmentCreateNestedOneWithoutClaimsInput, z.ZodTypeDef, Prisma.AppointmentCreateNestedOneWithoutClaimsInput>>;
user: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserCreateNestedOneWithoutClaimsInput, z.ZodTypeDef, Prisma.UserCreateNestedOneWithoutClaimsInput>>>;
staff: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.StaffCreateNestedOneWithoutClaimsInput, z.ZodTypeDef, Prisma.StaffCreateNestedOneWithoutClaimsInput>>>;
serviceLines: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineCreateNestedManyWithoutClaimInput, z.ZodTypeDef, Prisma.ServiceLineCreateNestedManyWithoutClaimInput>>>;
claimFiles: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimFileCreateNestedManyWithoutClaimInput, z.ZodTypeDef, Prisma.ClaimFileCreateNestedManyWithoutClaimInput>>>;
payment: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentCreateNestedOneWithoutClaimInput, z.ZodTypeDef, Prisma.PaymentCreateNestedOneWithoutClaimInput>>>;
}, "strict", z.ZodTypeAny, {
appointment: Prisma.AppointmentCreateNestedOneWithoutClaimsInput;
patientName: string;
memberId: string;
dateOfBirth: Date;
remarks: string;
serviceDate: Date;
insuranceProvider: string;
status?: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | undefined;
createdAt?: Date | undefined;
user?: Prisma.UserCreateNestedOneWithoutClaimsInput | undefined;
staff?: Prisma.StaffCreateNestedOneWithoutClaimsInput | undefined;
payment?: Prisma.PaymentCreateNestedOneWithoutClaimInput | undefined;
updatedAt?: Date | undefined;
serviceLines?: Prisma.ServiceLineCreateNestedManyWithoutClaimInput | undefined;
missingTeethStatus?: "No_missing" | "endentulous" | "Yes_missing" | undefined;
missingTeeth?: import("../../helpers/json-helpers").JsonValue | undefined;
claimNumber?: string | null | undefined;
claimFiles?: Prisma.ClaimFileCreateNestedManyWithoutClaimInput | undefined;
}, {
appointment: Prisma.AppointmentCreateNestedOneWithoutClaimsInput;
patientName: string;
memberId: string;
dateOfBirth: Date;
remarks: string;
serviceDate: Date;
insuranceProvider: string;
status?: "PENDING" | "APPROVED" | "CANCELLED" | "REVIEW" | "VOID" | undefined;
createdAt?: Date | undefined;
user?: Prisma.UserCreateNestedOneWithoutClaimsInput | undefined;
staff?: Prisma.StaffCreateNestedOneWithoutClaimsInput | undefined;
payment?: Prisma.PaymentCreateNestedOneWithoutClaimInput | undefined;
updatedAt?: Date | undefined;
serviceLines?: Prisma.ServiceLineCreateNestedManyWithoutClaimInput | undefined;
missingTeethStatus?: "No_missing" | "endentulous" | "Yes_missing" | undefined;
missingTeeth?: import("../../helpers/json-helpers").JsonValue | undefined;
claimNumber?: string | null | undefined;
claimFiles?: Prisma.ClaimFileCreateNestedManyWithoutClaimInput | undefined;
}>;
//# sourceMappingURL=ClaimCreateWithoutPatientInput.schema.d.ts.map