51 lines
7.9 KiB
TypeScript
51 lines
7.9 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import Decimal from "decimal.js";
|
|
export declare const PaymentUpdateWithoutClaimInputObjectSchema: z.ZodType<Prisma.PaymentUpdateWithoutClaimInput>;
|
|
export declare const PaymentUpdateWithoutClaimInputObjectZodSchema: z.ZodObject<{
|
|
userId: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLazy<z.ZodType<Prisma.IntFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.IntFieldUpdateOperationsInput>>]>>;
|
|
totalBilled: z.ZodOptional<z.ZodUnion<[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>, z.ZodLazy<z.ZodType<Prisma.DecimalFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DecimalFieldUpdateOperationsInput>>]>>;
|
|
totalPaid: z.ZodOptional<z.ZodUnion<[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>, z.ZodLazy<z.ZodType<Prisma.DecimalFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DecimalFieldUpdateOperationsInput>>]>>;
|
|
totalAdjusted: z.ZodOptional<z.ZodUnion<[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>, z.ZodLazy<z.ZodType<Prisma.DecimalFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DecimalFieldUpdateOperationsInput>>]>>;
|
|
totalDue: z.ZodOptional<z.ZodUnion<[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>, z.ZodLazy<z.ZodType<Prisma.DecimalFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DecimalFieldUpdateOperationsInput>>]>>;
|
|
status: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["PENDING", "PARTIALLY_PAID", "PAID", "OVERPAID", "DENIED", "VOID"]>, z.ZodLazy<z.ZodType<Prisma.EnumPaymentStatusFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.EnumPaymentStatusFieldUpdateOperationsInput>>]>>;
|
|
notes: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
icn: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodLazy<z.ZodType<Prisma.NullableStringFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.NullableStringFieldUpdateOperationsInput>>]>>>;
|
|
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
updatedAt: z.ZodOptional<z.ZodUnion<[z.ZodDate, z.ZodLazy<z.ZodType<Prisma.DateTimeFieldUpdateOperationsInput, z.ZodTypeDef, Prisma.DateTimeFieldUpdateOperationsInput>>]>>;
|
|
patient: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PatientUpdateOneRequiredWithoutPaymentNestedInput, z.ZodTypeDef, Prisma.PatientUpdateOneRequiredWithoutPaymentNestedInput>>>;
|
|
updatedBy: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.UserUpdateOneWithoutUpdatedPaymentsNestedInput, z.ZodTypeDef, Prisma.UserUpdateOneWithoutUpdatedPaymentsNestedInput>>>;
|
|
serviceLineTransactions: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionUpdateManyWithoutPaymentNestedInput, z.ZodTypeDef, Prisma.ServiceLineTransactionUpdateManyWithoutPaymentNestedInput>>>;
|
|
serviceLines: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineUpdateManyWithoutPaymentNestedInput, z.ZodTypeDef, Prisma.ServiceLineUpdateManyWithoutPaymentNestedInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
status?: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED" | Prisma.EnumPaymentStatusFieldUpdateOperationsInput | undefined;
|
|
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
userId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
patient?: Prisma.PatientUpdateOneRequiredWithoutPaymentNestedInput | undefined;
|
|
notes?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
totalBilled?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFieldUpdateOperationsInput | undefined;
|
|
totalPaid?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFieldUpdateOperationsInput | undefined;
|
|
totalAdjusted?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFieldUpdateOperationsInput | undefined;
|
|
totalDue?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFieldUpdateOperationsInput | undefined;
|
|
serviceLineTransactions?: Prisma.ServiceLineTransactionUpdateManyWithoutPaymentNestedInput | undefined;
|
|
icn?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
updatedBy?: Prisma.UserUpdateOneWithoutUpdatedPaymentsNestedInput | undefined;
|
|
serviceLines?: Prisma.ServiceLineUpdateManyWithoutPaymentNestedInput | undefined;
|
|
}, {
|
|
status?: "PENDING" | "VOID" | "PARTIALLY_PAID" | "PAID" | "OVERPAID" | "DENIED" | Prisma.EnumPaymentStatusFieldUpdateOperationsInput | undefined;
|
|
createdAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
userId?: number | Prisma.IntFieldUpdateOperationsInput | undefined;
|
|
patient?: Prisma.PatientUpdateOneRequiredWithoutPaymentNestedInput | undefined;
|
|
notes?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
totalBilled?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFieldUpdateOperationsInput | undefined;
|
|
totalPaid?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFieldUpdateOperationsInput | undefined;
|
|
totalAdjusted?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFieldUpdateOperationsInput | undefined;
|
|
totalDue?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFieldUpdateOperationsInput | undefined;
|
|
serviceLineTransactions?: Prisma.ServiceLineTransactionUpdateManyWithoutPaymentNestedInput | undefined;
|
|
icn?: string | Prisma.NullableStringFieldUpdateOperationsInput | null | undefined;
|
|
updatedAt?: Date | Prisma.DateTimeFieldUpdateOperationsInput | undefined;
|
|
updatedBy?: Prisma.UserUpdateOneWithoutUpdatedPaymentsNestedInput | undefined;
|
|
serviceLines?: Prisma.ServiceLineUpdateManyWithoutPaymentNestedInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=PaymentUpdateWithoutClaimInput.schema.d.ts.map
|