initial commit
This commit is contained in:
97
packages/db/shared/schemas/findManyPayment.schema.d.ts
vendored
Normal file
97
packages/db/shared/schemas/findManyPayment.schema.d.ts
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
import type { Prisma } from '../../generated/prisma';
|
||||
import * as z from 'zod';
|
||||
export declare const PaymentFindManySelectSchema: z.ZodType<Prisma.PaymentSelect>;
|
||||
export declare const PaymentFindManySelectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
claimId: z.ZodOptional<z.ZodBoolean>;
|
||||
patientId: z.ZodOptional<z.ZodBoolean>;
|
||||
userId: z.ZodOptional<z.ZodBoolean>;
|
||||
updatedById: z.ZodOptional<z.ZodBoolean>;
|
||||
totalBilled: z.ZodOptional<z.ZodBoolean>;
|
||||
totalPaid: z.ZodOptional<z.ZodBoolean>;
|
||||
totalAdjusted: z.ZodOptional<z.ZodBoolean>;
|
||||
totalDue: z.ZodOptional<z.ZodBoolean>;
|
||||
status: z.ZodOptional<z.ZodBoolean>;
|
||||
notes: z.ZodOptional<z.ZodBoolean>;
|
||||
icn: z.ZodOptional<z.ZodBoolean>;
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
claim: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodBoolean>;
|
||||
updatedBy: z.ZodOptional<z.ZodBoolean>;
|
||||
serviceLineTransactions: z.ZodOptional<z.ZodBoolean>;
|
||||
serviceLines: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | undefined;
|
||||
totalBilled?: boolean | undefined;
|
||||
totalPaid?: boolean | undefined;
|
||||
totalAdjusted?: boolean | undefined;
|
||||
totalDue?: boolean | undefined;
|
||||
serviceLineTransactions?: boolean | undefined;
|
||||
icn?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
updatedBy?: boolean | undefined;
|
||||
serviceLines?: boolean | undefined;
|
||||
updatedById?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | undefined;
|
||||
totalBilled?: boolean | undefined;
|
||||
totalPaid?: boolean | undefined;
|
||||
totalAdjusted?: boolean | undefined;
|
||||
totalDue?: boolean | undefined;
|
||||
serviceLineTransactions?: boolean | undefined;
|
||||
icn?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
updatedBy?: boolean | undefined;
|
||||
serviceLines?: boolean | undefined;
|
||||
updatedById?: boolean | undefined;
|
||||
_count?: boolean | undefined;
|
||||
}>;
|
||||
export declare const PaymentFindManySchema: z.ZodType<Prisma.PaymentFindManyArgs>;
|
||||
export declare const PaymentFindManyZodSchema: z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodType<Prisma.PaymentSelect<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PaymentSelect<import("../../generated/prisma/runtime/client").DefaultArgs>>>;
|
||||
include: z.ZodLazy<z.ZodOptional<z.ZodType<Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
orderBy: z.ZodOptional<z.ZodUnion<[z.ZodType<Prisma.PaymentOrderByWithRelationInput, z.ZodTypeDef, Prisma.PaymentOrderByWithRelationInput>, z.ZodArray<z.ZodType<Prisma.PaymentOrderByWithRelationInput, z.ZodTypeDef, Prisma.PaymentOrderByWithRelationInput>, "many">]>>;
|
||||
where: z.ZodOptional<z.ZodType<Prisma.PaymentWhereInput, z.ZodTypeDef, Prisma.PaymentWhereInput>>;
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.PaymentWhereUniqueInput, z.ZodTypeDef, Prisma.PaymentWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "claimId", "patientId", "userId", "updatedById", "totalBilled", "totalPaid", "totalAdjusted", "totalDue", "status", "notes", "icn", "createdAt", "updatedAt"]>, z.ZodArray<z.ZodEnum<["id", "claimId", "patientId", "userId", "updatedById", "totalBilled", "totalPaid", "totalAdjusted", "totalDue", "status", "notes", "icn", "createdAt", "updatedAt"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.PaymentWhereInput | undefined;
|
||||
include?: Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PaymentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
orderBy?: Prisma.PaymentOrderByWithRelationInput | Prisma.PaymentOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.PaymentWhereInput | undefined;
|
||||
include?: Prisma.PaymentInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PaymentSelect<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
orderBy?: Prisma.PaymentOrderByWithRelationInput | Prisma.PaymentOrderByWithRelationInput[] | undefined;
|
||||
cursor?: Prisma.PaymentWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "notes" | "claimId" | "totalBilled" | "totalPaid" | "totalAdjusted" | "totalDue" | "icn" | "updatedAt" | "updatedById")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findManyPayment.schema.d.ts.map
|
||||
Reference in New Issue
Block a user