initial commit
This commit is contained in:
137
packages/db/shared/schemas/results/ServiceLineFindManyResult.schema.d.ts
vendored
Normal file
137
packages/db/shared/schemas/results/ServiceLineFindManyResult.schema.d.ts
vendored
Normal file
@@ -0,0 +1,137 @@
|
||||
import * as z from 'zod';
|
||||
export declare const ServiceLineFindManyResultSchema: z.ZodObject<{
|
||||
data: z.ZodArray<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;
|
||||
}>, "many">;
|
||||
pagination: z.ZodObject<{
|
||||
page: z.ZodNumber;
|
||||
pageSize: z.ZodNumber;
|
||||
total: z.ZodNumber;
|
||||
totalPages: z.ZodNumber;
|
||||
hasNext: z.ZodBoolean;
|
||||
hasPrev: z.ZodBoolean;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
total: number;
|
||||
totalPages: number;
|
||||
hasNext: boolean;
|
||||
hasPrev: boolean;
|
||||
}, {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
total: number;
|
||||
totalPages: number;
|
||||
hasNext: boolean;
|
||||
hasPrev: boolean;
|
||||
}>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
data: {
|
||||
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;
|
||||
}[];
|
||||
pagination: {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
total: number;
|
||||
totalPages: number;
|
||||
hasNext: boolean;
|
||||
hasPrev: boolean;
|
||||
};
|
||||
}, {
|
||||
data: {
|
||||
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;
|
||||
}[];
|
||||
pagination: {
|
||||
page: number;
|
||||
pageSize: number;
|
||||
total: number;
|
||||
totalPages: number;
|
||||
hasNext: boolean;
|
||||
hasPrev: boolean;
|
||||
};
|
||||
}>;
|
||||
//# sourceMappingURL=ServiceLineFindManyResult.schema.d.ts.map
|
||||
Reference in New Issue
Block a user