initial commit
This commit is contained in:
23
packages/db/shared/schemas/objects/ServiceLineTransactionAvgOrderByAggregateInput.schema.d.ts
vendored
Normal file
23
packages/db/shared/schemas/objects/ServiceLineTransactionAvgOrderByAggregateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
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
|
||||
Reference in New Issue
Block a user