23 lines
1.2 KiB
TypeScript
23 lines
1.2 KiB
TypeScript
import * as z from 'zod';
|
|
import type { Prisma } from '../../../generated/prisma';
|
|
export declare const ServiceLineTransactionAvgOrderByAggregateInputObjectSchema: z.ZodType<Prisma.ServiceLineTransactionAvgOrderByAggregateInput>;
|
|
export declare const ServiceLineTransactionAvgOrderByAggregateInputObjectZodSchema: z.ZodObject<{
|
|
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
paymentId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
serviceLineId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
paidAmount: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
adjustedAmount: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
}, "strict", z.ZodTypeAny, {
|
|
id?: "asc" | "desc" | undefined;
|
|
paymentId?: "asc" | "desc" | undefined;
|
|
paidAmount?: "asc" | "desc" | undefined;
|
|
adjustedAmount?: "asc" | "desc" | undefined;
|
|
serviceLineId?: "asc" | "desc" | undefined;
|
|
}, {
|
|
id?: "asc" | "desc" | undefined;
|
|
paymentId?: "asc" | "desc" | undefined;
|
|
paidAmount?: "asc" | "desc" | undefined;
|
|
adjustedAmount?: "asc" | "desc" | undefined;
|
|
serviceLineId?: "asc" | "desc" | undefined;
|
|
}>;
|
|
//# sourceMappingURL=ServiceLineTransactionAvgOrderByAggregateInput.schema.d.ts.map
|