35 lines
2.3 KiB
TypeScript
35 lines
2.3 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import { MissingTeethStatusSchema } from '../enums/MissingTeethStatus.schema';
|
|
import { NullableJsonNullValueInputSchema } from '../enums/NullableJsonNullValueInput.schema';
|
|
import { ClaimStatusSchema } from '../enums/ClaimStatus.schema';
|
|
import { ServiceLineUncheckedCreateNestedManyWithoutClaimInputObjectSchema as ServiceLineUncheckedCreateNestedManyWithoutClaimInputObjectSchema } from './ServiceLineUncheckedCreateNestedManyWithoutClaimInput.schema';
|
|
import { ClaimFileUncheckedCreateNestedManyWithoutClaimInputObjectSchema as ClaimFileUncheckedCreateNestedManyWithoutClaimInputObjectSchema } from './ClaimFileUncheckedCreateNestedManyWithoutClaimInput.schema';
|
|
import { PaymentUncheckedCreateNestedOneWithoutClaimInputObjectSchema as PaymentUncheckedCreateNestedOneWithoutClaimInputObjectSchema } from './PaymentUncheckedCreateNestedOneWithoutClaimInput.schema'
|
|
|
|
import { JsonValueSchema as jsonSchema } from '../../helpers/json-helpers';
|
|
|
|
const makeSchema = () => z.object({
|
|
id: z.number().int().optional(),
|
|
patientId: z.number().int(),
|
|
userId: z.number().int(),
|
|
staffId: z.number().int(),
|
|
patientName: z.string(),
|
|
memberId: z.string(),
|
|
dateOfBirth: z.coerce.date(),
|
|
remarks: z.string(),
|
|
missingTeethStatus: MissingTeethStatusSchema.optional(),
|
|
missingTeeth: z.union([NullableJsonNullValueInputSchema, jsonSchema]).optional(),
|
|
serviceDate: z.coerce.date(),
|
|
insuranceProvider: z.string(),
|
|
createdAt: z.coerce.date().optional(),
|
|
updatedAt: z.coerce.date().optional(),
|
|
status: ClaimStatusSchema.optional(),
|
|
claimNumber: z.string().optional().nullable(),
|
|
serviceLines: z.lazy(() => ServiceLineUncheckedCreateNestedManyWithoutClaimInputObjectSchema).optional(),
|
|
claimFiles: z.lazy(() => ClaimFileUncheckedCreateNestedManyWithoutClaimInputObjectSchema).optional(),
|
|
payment: z.lazy(() => PaymentUncheckedCreateNestedOneWithoutClaimInputObjectSchema).optional()
|
|
}).strict();
|
|
export const ClaimUncheckedCreateWithoutAppointmentInputObjectSchema: z.ZodType<Prisma.ClaimUncheckedCreateWithoutAppointmentInput> = makeSchema() as unknown as z.ZodType<Prisma.ClaimUncheckedCreateWithoutAppointmentInput>;
|
|
export const ClaimUncheckedCreateWithoutAppointmentInputObjectZodSchema = makeSchema();
|