39 lines
2.9 KiB
TypeScript
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 ServiceLineTransactionUncheckedCreateWithoutServiceLineInputObjectSchema: z.ZodType<Prisma.ServiceLineTransactionUncheckedCreateWithoutServiceLineInput>;
|
|
export declare const ServiceLineTransactionUncheckedCreateWithoutServiceLineInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodNumber>;
|
|
paymentId: 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;
|
|
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;
|
|
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=ServiceLineTransactionUncheckedCreateWithoutServiceLineInput.schema.d.ts.map
|