51 lines
7.3 KiB
TypeScript
51 lines
7.3 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
import Decimal from "decimal.js";
|
|
export declare const ServiceLineTransactionScalarWhereWithAggregatesInputObjectSchema: z.ZodType<Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput>;
|
|
export declare const ServiceLineTransactionScalarWhereWithAggregatesInputObjectZodSchema: z.ZodObject<{
|
|
AND: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput>>, "many">]>>;
|
|
OR: z.ZodOptional<z.ZodArray<z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput>>, "many">>;
|
|
NOT: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput>>, z.ZodArray<z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput, z.ZodTypeDef, Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput>>, "many">]>>;
|
|
id: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
|
|
paymentId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
|
|
serviceLineId: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.IntWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.IntWithAggregatesFilter<never>>>, z.ZodNumber]>>;
|
|
transactionId: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
|
|
paidAmount: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DecimalWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DecimalWithAggregatesFilter<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.DecimalWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DecimalWithAggregatesFilter<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.EnumPaymentMethodWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.EnumPaymentMethodWithAggregatesFilter<never>>>, z.ZodEnum<["EFT", "CHECK", "CASH", "CARD", "OTHER"]>]>>;
|
|
receivedDate: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeWithAggregatesFilter<never>>>, z.ZodDate]>>;
|
|
payerName: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
|
|
notes: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.StringNullableWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.StringNullableWithAggregatesFilter<never>>>, z.ZodString]>>>;
|
|
createdAt: z.ZodOptional<z.ZodUnion<[z.ZodLazy<z.ZodType<Prisma.DateTimeWithAggregatesFilter<never>, z.ZodTypeDef, Prisma.DateTimeWithAggregatesFilter<never>>>, z.ZodDate]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
AND?: Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput | Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput[] | undefined;
|
|
OR?: Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput[] | undefined;
|
|
NOT?: Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput | Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput[] | undefined;
|
|
notes?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
paymentId?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
transactionId?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
paidAmount?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalWithAggregatesFilter<never> | undefined;
|
|
adjustedAmount?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalWithAggregatesFilter<never> | undefined;
|
|
method?: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD" | Prisma.EnumPaymentMethodWithAggregatesFilter<never> | undefined;
|
|
receivedDate?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
payerName?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
serviceLineId?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
}, {
|
|
createdAt?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
id?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
AND?: Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput | Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput[] | undefined;
|
|
OR?: Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput[] | undefined;
|
|
NOT?: Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput | Prisma.ServiceLineTransactionScalarWhereWithAggregatesInput[] | undefined;
|
|
notes?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
paymentId?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
transactionId?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
paidAmount?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalWithAggregatesFilter<never> | undefined;
|
|
adjustedAmount?: string | number | import("../../../generated/prisma/runtime/client").DecimalJsLike | Decimal | Prisma.DecimalWithAggregatesFilter<never> | undefined;
|
|
method?: "OTHER" | "EFT" | "CHECK" | "CASH" | "CARD" | Prisma.EnumPaymentMethodWithAggregatesFilter<never> | undefined;
|
|
receivedDate?: Date | Prisma.DateTimeWithAggregatesFilter<never> | undefined;
|
|
payerName?: string | Prisma.StringNullableWithAggregatesFilter<never> | null | undefined;
|
|
serviceLineId?: number | Prisma.IntWithAggregatesFilter<never> | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ServiceLineTransactionScalarWhereWithAggregatesInput.schema.d.ts.map
|