Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/ServiceLineTransactionCreateManyPaymentInput.schema.d.ts
2026-04-04 22:13:55 -04:00

39 lines
2.9 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import Decimal from "decimal.js";
export declare const ServiceLineTransactionCreateManyPaymentInputObjectSchema: z.ZodType<Prisma.ServiceLineTransactionCreateManyPaymentInput>;
export declare const ServiceLineTransactionCreateManyPaymentInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodNumber>;
serviceLineId: z.ZodNumber;
transactionId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
paidAmount: 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>;
adjustedAmount: 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>>;
method: z.ZodEnum<["EFT", "CHECK", "CASH", "CARD", "OTHER"]>;
receivedDate: z.ZodDate;
payerName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
notes: z.ZodNullable<z.ZodOptional<z.ZodString>>;
createdAt: z.ZodOptional<z.ZodDate>;
}, "strict", z.ZodTypeAny, {
paidAmount: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal;
method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD";
receivedDate: Date;
serviceLineId: number;
createdAt?: Date | undefined;
id?: number | undefined;
notes?: string | null | undefined;
transactionId?: string | null | undefined;
adjustedAmount?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
payerName?: string | null | undefined;
}, {
paidAmount: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal;
method: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD";
receivedDate: Date;
serviceLineId: number;
createdAt?: Date | undefined;
id?: number | undefined;
notes?: string | null | undefined;
transactionId?: string | null | undefined;
adjustedAmount?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | undefined;
payerName?: string | null | undefined;
}>;
//# sourceMappingURL=ServiceLineTransactionCreateManyPaymentInput.schema.d.ts.map