initial commit
This commit is contained in:
48
packages/db/shared/schemas/objects/ServiceLineCreateManyPaymentInput.schema.d.ts
vendored
Normal file
48
packages/db/shared/schemas/objects/ServiceLineCreateManyPaymentInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
import Decimal from "decimal.js";
|
||||
export declare const ServiceLineCreateManyPaymentInputObjectSchema: z.ZodType<Prisma.ServiceLineCreateManyPaymentInput>;
|
||||
export declare const ServiceLineCreateManyPaymentInputObjectZodSchema: 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"]>>;
|
||||
}, "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;
|
||||
}, {
|
||||
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;
|
||||
}>;
|
||||
//# sourceMappingURL=ServiceLineCreateManyPaymentInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user