initial commit
This commit is contained in:
59
packages/db/shared/schemas/objects/ClaimCreateManyInput.schema.d.ts
vendored
Normal file
59
packages/db/shared/schemas/objects/ClaimCreateManyInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const ClaimCreateManyInputObjectSchema: z.ZodType<Prisma.ClaimCreateManyInput>;
|
||||
export declare const ClaimCreateManyInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodNumber>;
|
||||
patientId: 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;
|
||||
patientId: 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;
|
||||
patientId: 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=ClaimCreateManyInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user