initial commit
This commit is contained in:
102
packages/db/shared/schemas/objects/ServiceLineSelect.schema.d.ts
vendored
Normal file
102
packages/db/shared/schemas/objects/ServiceLineSelect.schema.d.ts
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const ServiceLineSelectObjectSchema: z.ZodType<Prisma.ServiceLineSelect>;
|
||||
export declare const ServiceLineSelectObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
claimId: z.ZodOptional<z.ZodBoolean>;
|
||||
paymentId: z.ZodOptional<z.ZodBoolean>;
|
||||
procedureCode: z.ZodOptional<z.ZodBoolean>;
|
||||
procedureDate: z.ZodOptional<z.ZodBoolean>;
|
||||
quad: z.ZodOptional<z.ZodBoolean>;
|
||||
arch: z.ZodOptional<z.ZodBoolean>;
|
||||
toothNumber: z.ZodOptional<z.ZodBoolean>;
|
||||
toothSurface: 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>;
|
||||
claim: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
include?: Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
include?: Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>>]>>;
|
||||
payment: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PaymentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.PaymentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.PaymentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
include?: Prisma.PaymentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PaymentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
include?: Prisma.PaymentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PaymentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>>]>>;
|
||||
serviceLineTransactions: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodType<Prisma.ServiceLineTransactionFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ServiceLineTransactionFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs>>>]>>;
|
||||
_count: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ServiceLineCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
select?: Prisma.ServiceLineCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
select?: Prisma.ServiceLineCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>>]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
procedureCode?: boolean | undefined;
|
||||
toothNumber?: boolean | undefined;
|
||||
toothSurface?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | {
|
||||
include?: Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
paymentId?: boolean | undefined;
|
||||
payment?: boolean | {
|
||||
include?: Prisma.PaymentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PaymentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
procedureDate?: boolean | undefined;
|
||||
quad?: boolean | undefined;
|
||||
arch?: boolean | undefined;
|
||||
totalBilled?: boolean | undefined;
|
||||
totalPaid?: boolean | undefined;
|
||||
totalAdjusted?: boolean | undefined;
|
||||
totalDue?: boolean | undefined;
|
||||
serviceLineTransactions?: boolean | Prisma.ServiceLineTransactionFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
_count?: boolean | {
|
||||
select?: Prisma.ServiceLineCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
procedureCode?: boolean | undefined;
|
||||
toothNumber?: boolean | undefined;
|
||||
toothSurface?: boolean | undefined;
|
||||
claimId?: boolean | undefined;
|
||||
claim?: boolean | {
|
||||
include?: Prisma.ClaimInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.ClaimSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
paymentId?: boolean | undefined;
|
||||
payment?: boolean | {
|
||||
include?: Prisma.PaymentInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.PaymentSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
procedureDate?: boolean | undefined;
|
||||
quad?: boolean | undefined;
|
||||
arch?: boolean | undefined;
|
||||
totalBilled?: boolean | undefined;
|
||||
totalPaid?: boolean | undefined;
|
||||
totalAdjusted?: boolean | undefined;
|
||||
totalDue?: boolean | undefined;
|
||||
serviceLineTransactions?: boolean | Prisma.ServiceLineTransactionFindManyArgs<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
_count?: boolean | {
|
||||
select?: Prisma.ServiceLineCountOutputTypeSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=ServiceLineSelect.schema.d.ts.map
|
||||
Reference in New Issue
Block a user