initial commit
This commit is contained in:
50
packages/db/shared/schemas/objects/PaymentMinAggregateInput.schema.d.ts
vendored
Normal file
50
packages/db/shared/schemas/objects/PaymentMinAggregateInput.schema.d.ts
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const PaymentMinAggregateInputObjectSchema: z.ZodType<Prisma.PaymentMinAggregateInputType>;
|
||||
export declare const PaymentMinAggregateInputObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
claimId: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
patientId: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
userId: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
updatedById: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
totalBilled: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
totalPaid: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
totalAdjusted: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
totalDue: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
status: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
notes: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
icn: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
createdAt: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
updatedAt: z.ZodOptional<z.ZodLiteral<true>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: true | undefined;
|
||||
createdAt?: true | undefined;
|
||||
id?: true | undefined;
|
||||
userId?: true | undefined;
|
||||
patientId?: true | undefined;
|
||||
notes?: true | undefined;
|
||||
claimId?: true | undefined;
|
||||
totalBilled?: true | undefined;
|
||||
totalPaid?: true | undefined;
|
||||
totalAdjusted?: true | undefined;
|
||||
totalDue?: true | undefined;
|
||||
icn?: true | undefined;
|
||||
updatedAt?: true | undefined;
|
||||
updatedById?: true | undefined;
|
||||
}, {
|
||||
status?: true | undefined;
|
||||
createdAt?: true | undefined;
|
||||
id?: true | undefined;
|
||||
userId?: true | undefined;
|
||||
patientId?: true | undefined;
|
||||
notes?: true | undefined;
|
||||
claimId?: true | undefined;
|
||||
totalBilled?: true | undefined;
|
||||
totalPaid?: true | undefined;
|
||||
totalAdjusted?: true | undefined;
|
||||
totalDue?: true | undefined;
|
||||
icn?: true | undefined;
|
||||
updatedAt?: true | undefined;
|
||||
updatedById?: true | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=PaymentMinAggregateInput.schema.d.ts.map
|
||||
Reference in New Issue
Block a user