initial commit

This commit is contained in:
2026-04-04 22:13:55 -04:00
commit 5d77e207c9
10181 changed files with 522212 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
import Decimal from "decimal.js";
export declare const ServiceLineTransactionCreateManyInputObjectSchema: z.ZodType<Prisma.ServiceLineTransactionCreateManyInput>;
export declare const ServiceLineTransactionCreateManyInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodNumber>;
paymentId: 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, {
paymentId: number;
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;
}, {
paymentId: number;
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=ServiceLineTransactionCreateManyInput.schema.d.ts.map