47 lines
3.0 KiB
TypeScript
47 lines
3.0 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const ServiceLineTransactionOrderByWithRelationInputObjectSchema: z.ZodType<Prisma.ServiceLineTransactionOrderByWithRelationInput>;
|
|
export declare const ServiceLineTransactionOrderByWithRelationInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
paymentId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
serviceLineId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
transactionId: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
paidAmount: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
adjustedAmount: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
method: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
receivedDate: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
payerName: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
notes: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["asc", "desc"]>, z.ZodLazy<z.ZodType<Prisma.SortOrderInput, z.ZodTypeDef, Prisma.SortOrderInput>>]>>;
|
|
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
payment: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentOrderByWithRelationInput, z.ZodTypeDef, Prisma.PaymentOrderByWithRelationInput>>>;
|
|
serviceLine: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineOrderByWithRelationInput, z.ZodTypeDef, Prisma.ServiceLineOrderByWithRelationInput>>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
createdAt?: "asc" | "desc" | undefined;
|
|
id?: "asc" | "desc" | undefined;
|
|
notes?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
paymentId?: "asc" | "desc" | undefined;
|
|
transactionId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
paidAmount?: "asc" | "desc" | undefined;
|
|
adjustedAmount?: "asc" | "desc" | undefined;
|
|
method?: "asc" | "desc" | undefined;
|
|
receivedDate?: "asc" | "desc" | undefined;
|
|
payerName?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
serviceLineId?: "asc" | "desc" | undefined;
|
|
payment?: Prisma.PaymentOrderByWithRelationInput | undefined;
|
|
serviceLine?: Prisma.ServiceLineOrderByWithRelationInput | undefined;
|
|
}, {
|
|
createdAt?: "asc" | "desc" | undefined;
|
|
id?: "asc" | "desc" | undefined;
|
|
notes?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
paymentId?: "asc" | "desc" | undefined;
|
|
transactionId?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
paidAmount?: "asc" | "desc" | undefined;
|
|
adjustedAmount?: "asc" | "desc" | undefined;
|
|
method?: "asc" | "desc" | undefined;
|
|
receivedDate?: "asc" | "desc" | undefined;
|
|
payerName?: "asc" | "desc" | Prisma.SortOrderInput | undefined;
|
|
serviceLineId?: "asc" | "desc" | undefined;
|
|
payment?: Prisma.PaymentOrderByWithRelationInput | undefined;
|
|
serviceLine?: Prisma.ServiceLineOrderByWithRelationInput | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ServiceLineTransactionOrderByWithRelationInput.schema.d.ts.map
|