initial commit
This commit is contained in:
63
packages/db/shared/schemas/results/PaymentCreateResult.schema.d.ts
vendored
Normal file
63
packages/db/shared/schemas/results/PaymentCreateResult.schema.d.ts
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
import * as z from 'zod';
|
||||
export declare const PaymentCreateResultSchema: z.ZodObject<{
|
||||
id: z.ZodNumber;
|
||||
claimId: z.ZodOptional<z.ZodNumber>;
|
||||
patientId: z.ZodNumber;
|
||||
userId: z.ZodNumber;
|
||||
updatedById: z.ZodOptional<z.ZodNumber>;
|
||||
totalBilled: z.ZodNumber;
|
||||
totalPaid: z.ZodNumber;
|
||||
totalAdjusted: z.ZodNumber;
|
||||
totalDue: z.ZodNumber;
|
||||
status: z.ZodUnknown;
|
||||
notes: z.ZodOptional<z.ZodString>;
|
||||
icn: z.ZodOptional<z.ZodString>;
|
||||
createdAt: z.ZodDate;
|
||||
updatedAt: z.ZodDate;
|
||||
claim: z.ZodOptional<z.ZodUnknown>;
|
||||
patient: z.ZodUnknown;
|
||||
updatedBy: z.ZodOptional<z.ZodUnknown>;
|
||||
serviceLineTransactions: z.ZodArray<z.ZodUnknown, "many">;
|
||||
serviceLines: z.ZodArray<z.ZodUnknown, "many">;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
createdAt: Date;
|
||||
id: number;
|
||||
userId: number;
|
||||
patientId: number;
|
||||
totalBilled: number;
|
||||
totalPaid: number;
|
||||
totalAdjusted: number;
|
||||
totalDue: number;
|
||||
serviceLineTransactions: unknown[];
|
||||
updatedAt: Date;
|
||||
serviceLines: unknown[];
|
||||
status?: unknown;
|
||||
patient?: unknown;
|
||||
notes?: string | undefined;
|
||||
claimId?: number | undefined;
|
||||
claim?: unknown;
|
||||
icn?: string | undefined;
|
||||
updatedBy?: unknown;
|
||||
updatedById?: number | undefined;
|
||||
}, {
|
||||
createdAt: Date;
|
||||
id: number;
|
||||
userId: number;
|
||||
patientId: number;
|
||||
totalBilled: number;
|
||||
totalPaid: number;
|
||||
totalAdjusted: number;
|
||||
totalDue: number;
|
||||
serviceLineTransactions: unknown[];
|
||||
updatedAt: Date;
|
||||
serviceLines: unknown[];
|
||||
status?: unknown;
|
||||
patient?: unknown;
|
||||
notes?: string | undefined;
|
||||
claimId?: number | undefined;
|
||||
claim?: unknown;
|
||||
icn?: string | undefined;
|
||||
updatedBy?: unknown;
|
||||
updatedById?: number | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=PaymentCreateResult.schema.d.ts.map
|
||||
Reference in New Issue
Block a user