91 lines
5.3 KiB
JavaScript
91 lines
5.3 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || (function () {
|
|
var ownKeys = function(o) {
|
|
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
var ar = [];
|
|
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
return ar;
|
|
};
|
|
return ownKeys(o);
|
|
};
|
|
return function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
})();
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.PaymentFindFirstZodSchema = exports.PaymentFindFirstSchema = exports.PaymentFindFirstSelectZodSchema = exports.PaymentFindFirstSelectSchema = void 0;
|
|
const z = __importStar(require("zod"));
|
|
const PaymentInclude_schema_1 = require("./objects/PaymentInclude.schema");
|
|
const PaymentOrderByWithRelationInput_schema_1 = require("./objects/PaymentOrderByWithRelationInput.schema");
|
|
const PaymentWhereInput_schema_1 = require("./objects/PaymentWhereInput.schema");
|
|
const PaymentWhereUniqueInput_schema_1 = require("./objects/PaymentWhereUniqueInput.schema");
|
|
const PaymentScalarFieldEnum_schema_1 = require("./enums/PaymentScalarFieldEnum.schema");
|
|
// Select schema needs to be in file to prevent circular imports
|
|
//------------------------------------------------------
|
|
exports.PaymentFindFirstSelectSchema = z.object({
|
|
id: z.boolean().optional(),
|
|
claimId: z.boolean().optional(),
|
|
patientId: z.boolean().optional(),
|
|
userId: z.boolean().optional(),
|
|
updatedById: z.boolean().optional(),
|
|
totalBilled: z.boolean().optional(),
|
|
totalPaid: z.boolean().optional(),
|
|
totalAdjusted: z.boolean().optional(),
|
|
totalDue: z.boolean().optional(),
|
|
status: z.boolean().optional(),
|
|
notes: z.boolean().optional(),
|
|
icn: z.boolean().optional(),
|
|
createdAt: z.boolean().optional(),
|
|
updatedAt: z.boolean().optional(),
|
|
claim: z.boolean().optional(),
|
|
patient: z.boolean().optional(),
|
|
updatedBy: z.boolean().optional(),
|
|
serviceLineTransactions: z.boolean().optional(),
|
|
serviceLines: z.boolean().optional(),
|
|
_count: z.boolean().optional()
|
|
}).strict();
|
|
exports.PaymentFindFirstSelectZodSchema = z.object({
|
|
id: z.boolean().optional(),
|
|
claimId: z.boolean().optional(),
|
|
patientId: z.boolean().optional(),
|
|
userId: z.boolean().optional(),
|
|
updatedById: z.boolean().optional(),
|
|
totalBilled: z.boolean().optional(),
|
|
totalPaid: z.boolean().optional(),
|
|
totalAdjusted: z.boolean().optional(),
|
|
totalDue: z.boolean().optional(),
|
|
status: z.boolean().optional(),
|
|
notes: z.boolean().optional(),
|
|
icn: z.boolean().optional(),
|
|
createdAt: z.boolean().optional(),
|
|
updatedAt: z.boolean().optional(),
|
|
claim: z.boolean().optional(),
|
|
patient: z.boolean().optional(),
|
|
updatedBy: z.boolean().optional(),
|
|
serviceLineTransactions: z.boolean().optional(),
|
|
serviceLines: z.boolean().optional(),
|
|
_count: z.boolean().optional()
|
|
}).strict();
|
|
exports.PaymentFindFirstSchema = z.object({ select: exports.PaymentFindFirstSelectSchema.optional(), include: z.lazy(() => PaymentInclude_schema_1.PaymentIncludeObjectSchema.optional()), orderBy: z.union([PaymentOrderByWithRelationInput_schema_1.PaymentOrderByWithRelationInputObjectSchema, PaymentOrderByWithRelationInput_schema_1.PaymentOrderByWithRelationInputObjectSchema.array()]).optional(), where: PaymentWhereInput_schema_1.PaymentWhereInputObjectSchema.optional(), cursor: PaymentWhereUniqueInput_schema_1.PaymentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PaymentScalarFieldEnum_schema_1.PaymentScalarFieldEnumSchema, PaymentScalarFieldEnum_schema_1.PaymentScalarFieldEnumSchema.array()]).optional() }).strict();
|
|
exports.PaymentFindFirstZodSchema = z.object({ select: exports.PaymentFindFirstSelectSchema.optional(), include: z.lazy(() => PaymentInclude_schema_1.PaymentIncludeObjectSchema.optional()), orderBy: z.union([PaymentOrderByWithRelationInput_schema_1.PaymentOrderByWithRelationInputObjectSchema, PaymentOrderByWithRelationInput_schema_1.PaymentOrderByWithRelationInputObjectSchema.array()]).optional(), where: PaymentWhereInput_schema_1.PaymentWhereInputObjectSchema.optional(), cursor: PaymentWhereUniqueInput_schema_1.PaymentWhereUniqueInputObjectSchema.optional(), take: z.number().optional(), skip: z.number().optional(), distinct: z.union([PaymentScalarFieldEnum_schema_1.PaymentScalarFieldEnumSchema, PaymentScalarFieldEnum_schema_1.PaymentScalarFieldEnumSchema.array()]).optional() }).strict();
|