51 lines
5.1 KiB
TypeScript
51 lines
5.1 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import Decimal from "decimal.js";
|
|
export declare const ServiceLineUncheckedCreateWithoutPaymentInputObjectSchema: z.ZodType<Prisma.ServiceLineUncheckedCreateWithoutPaymentInput>;
|
|
export declare const ServiceLineUncheckedCreateWithoutPaymentInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodNumber>;
|
|
claimId: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
procedureCode: z.ZodString;
|
|
procedureDate: z.ZodDate;
|
|
quad: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
arch: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
toothNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
toothSurface: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
totalBilled: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<import("../../../generated/prisma/runtime/client").DecimalJsLike, z.ZodTypeDef, import("../../../generated/prisma/runtime/client").DecimalJsLike>]>, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal>;
|
|
totalPaid: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<import("../../../generated/prisma/runtime/client").DecimalJsLike, z.ZodTypeDef, import("../../../generated/prisma/runtime/client").DecimalJsLike>]>, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal>>;
|
|
totalAdjusted: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<import("../../../generated/prisma/runtime/client").DecimalJsLike, z.ZodTypeDef, import("../../../generated/prisma/runtime/client").DecimalJsLike>]>, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal>>;
|
|
totalDue: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<Decimal, z.ZodTypeDef, Decimal>, z.ZodType<import("../../../generated/prisma/runtime/client").DecimalJsLike, z.ZodTypeDef, import("../../../generated/prisma/runtime/client").DecimalJsLike>]>, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal, string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal>>;
|
|
status: z.ZodOptional<z.ZodEnum<["PENDING", "PARTIALLY_PAID", "PAID", "UNPAID", "ADJUSTED", "OVERPAID", "DENIED"]>>;
|
|
serviceLineTransactions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput, z.ZodTypeDef, Prisma.ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
procedureCode: string;
|
|
procedureDate: Date;
|
|
totalBilled: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal;
|
|
status?: "PENDING" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED" | "UNPAID" | "ADJUSTED" | undefined;
|
|
id?: number | undefined;
|
|
toothNumber?: string | null | undefined;
|
|
toothSurface?: string | null | undefined;
|
|
claimId?: number | null | undefined;
|
|
quad?: string | null | undefined;
|
|
arch?: string | null | undefined;
|
|
totalPaid?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
|
|
totalAdjusted?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
|
|
totalDue?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
|
|
serviceLineTransactions?: Prisma.ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput | undefined;
|
|
}, {
|
|
procedureCode: string;
|
|
procedureDate: Date;
|
|
totalBilled: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal;
|
|
status?: "PENDING" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED" | "UNPAID" | "ADJUSTED" | undefined;
|
|
id?: number | undefined;
|
|
toothNumber?: string | null | undefined;
|
|
toothSurface?: string | null | undefined;
|
|
claimId?: number | null | undefined;
|
|
quad?: string | null | undefined;
|
|
arch?: string | null | undefined;
|
|
totalPaid?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
|
|
totalAdjusted?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
|
|
totalDue?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
|
|
serviceLineTransactions?: Prisma.ServiceLineTransactionUncheckedCreateNestedManyWithoutServiceLineInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ServiceLineUncheckedCreateWithoutPaymentInput.schema.d.ts.map
|