initial commit
This commit is contained in:
77
packages/db/shared/schemas/objects/ServiceLineTransactionSelect.schema.d.ts
vendored
Normal file
77
packages/db/shared/schemas/objects/ServiceLineTransactionSelect.schema.d.ts
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
import * as z from 'zod';
|
||||
import type { Prisma } from '../../../generated/prisma';
|
||||
export declare const ServiceLineTransactionSelectObjectSchema: z.ZodType<Prisma.ServiceLineTransactionSelect>;
|
||||
export declare const ServiceLineTransactionSelectObjectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
paymentId: z.ZodOptional<z.ZodBoolean>;
|
||||
serviceLineId: z.ZodOptional<z.ZodBoolean>;
|
||||
transactionId: z.ZodOptional<z.ZodBoolean>;
|
||||
paidAmount: z.ZodOptional<z.ZodBoolean>;
|
||||
adjustedAmount: z.ZodOptional<z.ZodBoolean>;
|
||||
method: z.ZodOptional<z.ZodBoolean>;
|
||||
receivedDate: z.ZodOptional<z.ZodBoolean>;
|
||||
payerName: z.ZodOptional<z.ZodBoolean>;
|
||||
notes: z.ZodOptional<z.ZodBoolean>;
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
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;
|
||||
}>>]>>;
|
||||
serviceLine: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodLazy<z.ZodObject<{
|
||||
select: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ServiceLineSelect<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
include: z.ZodOptional<z.ZodLazy<z.ZodType<Prisma.ServiceLineInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>, z.ZodTypeDef, Prisma.ServiceLineInclude<import("../../../generated/prisma/runtime/client").DefaultArgs>>>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
include?: Prisma.ServiceLineInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.ServiceLineSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}, {
|
||||
include?: Prisma.ServiceLineInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.ServiceLineSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
}>>]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
paymentId?: boolean | undefined;
|
||||
transactionId?: boolean | undefined;
|
||||
paidAmount?: boolean | undefined;
|
||||
adjustedAmount?: boolean | undefined;
|
||||
method?: boolean | undefined;
|
||||
receivedDate?: boolean | undefined;
|
||||
payerName?: boolean | undefined;
|
||||
serviceLineId?: 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;
|
||||
serviceLine?: boolean | {
|
||||
include?: Prisma.ServiceLineInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.ServiceLineSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
notes?: boolean | undefined;
|
||||
paymentId?: boolean | undefined;
|
||||
transactionId?: boolean | undefined;
|
||||
paidAmount?: boolean | undefined;
|
||||
adjustedAmount?: boolean | undefined;
|
||||
method?: boolean | undefined;
|
||||
receivedDate?: boolean | undefined;
|
||||
payerName?: boolean | undefined;
|
||||
serviceLineId?: 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;
|
||||
serviceLine?: boolean | {
|
||||
include?: Prisma.ServiceLineInclude<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
select?: Prisma.ServiceLineSelect<import("../../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
} | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=ServiceLineTransactionSelect.schema.d.ts.map
|
||||
Reference in New Issue
Block a user