initial commit
This commit is contained in:
45
packages/db/shared/schemas/results/ServiceLineTransactionUpsertResult.schema.d.ts
vendored
Normal file
45
packages/db/shared/schemas/results/ServiceLineTransactionUpsertResult.schema.d.ts
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
import * as z from 'zod';
|
||||
export declare const ServiceLineTransactionUpsertResultSchema: z.ZodObject<{
|
||||
id: z.ZodNumber;
|
||||
paymentId: z.ZodNumber;
|
||||
serviceLineId: z.ZodNumber;
|
||||
transactionId: z.ZodOptional<z.ZodString>;
|
||||
paidAmount: z.ZodNumber;
|
||||
adjustedAmount: z.ZodNumber;
|
||||
method: z.ZodUnknown;
|
||||
receivedDate: z.ZodDate;
|
||||
payerName: z.ZodOptional<z.ZodString>;
|
||||
notes: z.ZodOptional<z.ZodString>;
|
||||
createdAt: z.ZodDate;
|
||||
payment: z.ZodUnknown;
|
||||
serviceLine: z.ZodUnknown;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
createdAt: Date;
|
||||
id: number;
|
||||
paymentId: number;
|
||||
paidAmount: number;
|
||||
adjustedAmount: number;
|
||||
receivedDate: Date;
|
||||
serviceLineId: number;
|
||||
notes?: string | undefined;
|
||||
transactionId?: string | undefined;
|
||||
method?: unknown;
|
||||
payerName?: string | undefined;
|
||||
payment?: unknown;
|
||||
serviceLine?: unknown;
|
||||
}, {
|
||||
createdAt: Date;
|
||||
id: number;
|
||||
paymentId: number;
|
||||
paidAmount: number;
|
||||
adjustedAmount: number;
|
||||
receivedDate: Date;
|
||||
serviceLineId: number;
|
||||
notes?: string | undefined;
|
||||
transactionId?: string | undefined;
|
||||
method?: unknown;
|
||||
payerName?: string | undefined;
|
||||
payment?: unknown;
|
||||
serviceLine?: unknown;
|
||||
}>;
|
||||
//# sourceMappingURL=ServiceLineTransactionUpsertResult.schema.d.ts.map
|
||||
Reference in New Issue
Block a user