57 lines
7.1 KiB
TypeScript
57 lines
7.1 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import Decimal from "decimal.js";
|
|
export declare const ServiceLineTransactionWhereInputObjectSchema: z.ZodType<Prisma.ServiceLineTransactionWhereInput>;
|
|
export declare const ServiceLineTransactionWhereInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionWhereInput, z.ZodTypeDef, Prisma.ServiceLineTransactionWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionWhereInput, z.ZodTypeDef, Prisma.ServiceLineTransactionWhereInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionWhereInput, z.ZodTypeDef, Prisma.ServiceLineTransactionWhereInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionWhereInput, z.ZodTypeDef, Prisma.ServiceLineTransactionWhereInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionWhereInput, z.ZodTypeDef, Prisma.ServiceLineTransactionWhereInput>>, "many">]>>;
|
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
paymentId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
serviceLineId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntFilter<never>, z.ZodTypeDef, Prisma.IntFilter<never>>>, z.ZodNumber]>>;
|
|
transactionId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
paidAmount: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DecimalFilter<never>, z.ZodTypeDef, Prisma.DecimalFilter<never>>>, 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.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DecimalFilter<never>, z.ZodTypeDef, Prisma.DecimalFilter<never>>>, 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.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.EnumPaymentMethodFilter<never>, z.ZodTypeDef, Prisma.EnumPaymentMethodFilter<never>>>, z.ZodEnum<["EFT", "CHECK", "CASH", "CARD", "OTHER"]>]>>;
|
|
receivedDate: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
payerName: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
notes: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableFilter<never>, z.ZodTypeDef, Prisma.StringNullableFilter<never>>>, z.ZodString]>>>;
|
|
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeFilter<never>, z.ZodTypeDef, Prisma.DateTimeFilter<never>>>, z.ZodDate]>>;
|
|
payment: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.PaymentScalarRelationFilter, z.ZodTypeDef, Prisma.PaymentScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.PaymentWhereInput, z.ZodTypeDef, Prisma.PaymentWhereInput>>]>>;
|
|
serviceLine: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.ServiceLineScalarRelationFilter, z.ZodTypeDef, Prisma.ServiceLineScalarRelationFilter>>, z.ZodLazy<z.ZodType<Prisma.ServiceLineWhereInput, z.ZodTypeDef, Prisma.ServiceLineWhereInput>>]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.ServiceLineTransactionWhereInput | Prisma.ServiceLineTransactionWhereInput[] | undefined;
|
|
OR?: Prisma.ServiceLineTransactionWhereInput[] | undefined;
|
|
NOT?: Prisma.ServiceLineTransactionWhereInput | Prisma.ServiceLineTransactionWhereInput[] | undefined;
|
|
notes?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
paymentId?: number | Prisma.IntFilter<never> | undefined;
|
|
transactionId?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
paidAmount?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFilter<never> | undefined;
|
|
adjustedAmount?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFilter<never> | undefined;
|
|
method?: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD" | Prisma.EnumPaymentMethodFilter<never> | undefined;
|
|
receivedDate?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
payerName?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
serviceLineId?: number | Prisma.IntFilter<never> | undefined;
|
|
payment?: Prisma.PaymentScalarRelationFilter | Prisma.PaymentWhereInput | undefined;
|
|
serviceLine?: Prisma.ServiceLineScalarRelationFilter | Prisma.ServiceLineWhereInput | undefined;
|
|
}, {
|
|
createdAt?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
id?: number | Prisma.IntFilter<never> | undefined;
|
|
AND?: Prisma.ServiceLineTransactionWhereInput | Prisma.ServiceLineTransactionWhereInput[] | undefined;
|
|
OR?: Prisma.ServiceLineTransactionWhereInput[] | undefined;
|
|
NOT?: Prisma.ServiceLineTransactionWhereInput | Prisma.ServiceLineTransactionWhereInput[] | undefined;
|
|
notes?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
paymentId?: number | Prisma.IntFilter<never> | undefined;
|
|
transactionId?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
paidAmount?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFilter<never> | undefined;
|
|
adjustedAmount?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalFilter<never> | undefined;
|
|
method?: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD" | Prisma.EnumPaymentMethodFilter<never> | undefined;
|
|
receivedDate?: Date | Prisma.DateTimeFilter<never> | undefined;
|
|
payerName?: string | Prisma.StringNullableFilter<never> | null | undefined;
|
|
serviceLineId?: number | Prisma.IntFilter<never> | undefined;
|
|
payment?: Prisma.PaymentScalarRelationFilter | Prisma.PaymentWhereInput | undefined;
|
|
serviceLine?: Prisma.ServiceLineScalarRelationFilter | Prisma.ServiceLineWhereInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ServiceLineTransactionWhereInput.schema.d.ts.map
|