initial commit
This commit is contained in:
57
packages/db/shared/schemas/results/ServiceLineUpsertResult.schema.d.ts
vendored
Normal file
57
packages/db/shared/schemas/results/ServiceLineUpsertResult.schema.d.ts
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
import * as z from 'zod';
|
||||
export declare const ServiceLineUpsertResultSchema: z.ZodObject<{
|
||||
id: z.ZodNumber;
|
||||
claimId: z.ZodOptional<z.ZodNumber>;
|
||||
paymentId: z.ZodOptional<z.ZodNumber>;
|
||||
procedureCode: z.ZodString;
|
||||
procedureDate: z.ZodDate;
|
||||
quad: z.ZodOptional<z.ZodString>;
|
||||
arch: z.ZodOptional<z.ZodString>;
|
||||
toothNumber: z.ZodOptional<z.ZodString>;
|
||||
toothSurface: z.ZodOptional<z.ZodString>;
|
||||
totalBilled: z.ZodNumber;
|
||||
totalPaid: z.ZodNumber;
|
||||
totalAdjusted: z.ZodNumber;
|
||||
totalDue: z.ZodNumber;
|
||||
status: z.ZodUnknown;
|
||||
claim: z.ZodOptional<z.ZodUnknown>;
|
||||
payment: z.ZodOptional<z.ZodUnknown>;
|
||||
serviceLineTransactions: z.ZodArray<z.ZodUnknown, "many">;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
id: number;
|
||||
procedureCode: string;
|
||||
procedureDate: Date;
|
||||
totalBilled: number;
|
||||
totalPaid: number;
|
||||
totalAdjusted: number;
|
||||
totalDue: number;
|
||||
serviceLineTransactions: unknown[];
|
||||
status?: unknown;
|
||||
toothNumber?: string | undefined;
|
||||
toothSurface?: string | undefined;
|
||||
claimId?: number | undefined;
|
||||
claim?: unknown;
|
||||
paymentId?: number | undefined;
|
||||
payment?: unknown;
|
||||
quad?: string | undefined;
|
||||
arch?: string | undefined;
|
||||
}, {
|
||||
id: number;
|
||||
procedureCode: string;
|
||||
procedureDate: Date;
|
||||
totalBilled: number;
|
||||
totalPaid: number;
|
||||
totalAdjusted: number;
|
||||
totalDue: number;
|
||||
serviceLineTransactions: unknown[];
|
||||
status?: unknown;
|
||||
toothNumber?: string | undefined;
|
||||
toothSurface?: string | undefined;
|
||||
claimId?: number | undefined;
|
||||
claim?: unknown;
|
||||
paymentId?: number | undefined;
|
||||
payment?: unknown;
|
||||
quad?: string | undefined;
|
||||
arch?: string | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=ServiceLineUpsertResult.schema.d.ts.map
|
||||
Reference in New Issue
Block a user