Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/PaymentCountOrderByAggregateInput.schema.d.ts
2026-04-04 22:13:55 -04:00

50 lines
2.3 KiB
TypeScript

import * as z from 'zod';
import type { Prisma } from '../../../generated/prisma';
export declare const PaymentCountOrderByAggregateInputObjectSchema: z.ZodType<Prisma.PaymentCountOrderByAggregateInput>;
export declare const PaymentCountOrderByAggregateInputObjectZodSchema: z.ZodObject<{
id: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
claimId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
patientId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
userId: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
updatedById: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
totalBilled: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
totalPaid: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
totalAdjusted: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
totalDue: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
status: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
notes: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
icn: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
createdAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
updatedAt: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
}, "strict", z.ZodTypeAny, {
status?: "asc" | "desc" | undefined;
createdAt?: "asc" | "desc" | undefined;
id?: "asc" | "desc" | undefined;
userId?: "asc" | "desc" | undefined;
patientId?: "asc" | "desc" | undefined;
notes?: "asc" | "desc" | undefined;
claimId?: "asc" | "desc" | undefined;
totalBilled?: "asc" | "desc" | undefined;
totalPaid?: "asc" | "desc" | undefined;
totalAdjusted?: "asc" | "desc" | undefined;
totalDue?: "asc" | "desc" | undefined;
icn?: "asc" | "desc" | undefined;
updatedAt?: "asc" | "desc" | undefined;
updatedById?: "asc" | "desc" | undefined;
}, {
status?: "asc" | "desc" | undefined;
createdAt?: "asc" | "desc" | undefined;
id?: "asc" | "desc" | undefined;
userId?: "asc" | "desc" | undefined;
patientId?: "asc" | "desc" | undefined;
notes?: "asc" | "desc" | undefined;
claimId?: "asc" | "desc" | undefined;
totalBilled?: "asc" | "desc" | undefined;
totalPaid?: "asc" | "desc" | undefined;
totalAdjusted?: "asc" | "desc" | undefined;
totalDue?: "asc" | "desc" | undefined;
icn?: "asc" | "desc" | undefined;
updatedAt?: "asc" | "desc" | undefined;
updatedById?: "asc" | "desc" | undefined;
}>;
//# sourceMappingURL=PaymentCountOrderByAggregateInput.schema.d.ts.map