68 lines
5.1 KiB
JavaScript
68 lines
5.1 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.UserCreateWithoutUpdatedPaymentsInputObjectZodSchema = exports.UserCreateWithoutUpdatedPaymentsInputObjectSchema = void 0;
|
|
const z = __importStar(require("zod"));
|
|
const PatientCreateNestedManyWithoutUserInput_schema_1 = require("./PatientCreateNestedManyWithoutUserInput.schema");
|
|
const AppointmentCreateNestedManyWithoutUserInput_schema_1 = require("./AppointmentCreateNestedManyWithoutUserInput.schema");
|
|
const StaffCreateNestedManyWithoutUserInput_schema_1 = require("./StaffCreateNestedManyWithoutUserInput.schema");
|
|
const NpiProviderCreateNestedManyWithoutUserInput_schema_1 = require("./NpiProviderCreateNestedManyWithoutUserInput.schema");
|
|
const ClaimCreateNestedManyWithoutUserInput_schema_1 = require("./ClaimCreateNestedManyWithoutUserInput.schema");
|
|
const InsuranceCredentialCreateNestedManyWithoutUserInput_schema_1 = require("./InsuranceCredentialCreateNestedManyWithoutUserInput.schema");
|
|
const DatabaseBackupCreateNestedManyWithoutUserInput_schema_1 = require("./DatabaseBackupCreateNestedManyWithoutUserInput.schema");
|
|
const BackupDestinationCreateNestedManyWithoutUserInput_schema_1 = require("./BackupDestinationCreateNestedManyWithoutUserInput.schema");
|
|
const NotificationCreateNestedManyWithoutUserInput_schema_1 = require("./NotificationCreateNestedManyWithoutUserInput.schema");
|
|
const CloudFolderCreateNestedManyWithoutUserInput_schema_1 = require("./CloudFolderCreateNestedManyWithoutUserInput.schema");
|
|
const CloudFileCreateNestedManyWithoutUserInput_schema_1 = require("./CloudFileCreateNestedManyWithoutUserInput.schema");
|
|
const CommunicationCreateNestedManyWithoutUserInput_schema_1 = require("./CommunicationCreateNestedManyWithoutUserInput.schema");
|
|
const makeSchema = () => z.object({
|
|
username: z.string(),
|
|
password: z.string(),
|
|
patients: z.lazy(() => PatientCreateNestedManyWithoutUserInput_schema_1.PatientCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
appointments: z.lazy(() => AppointmentCreateNestedManyWithoutUserInput_schema_1.AppointmentCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
staff: z.lazy(() => StaffCreateNestedManyWithoutUserInput_schema_1.StaffCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
npiProviders: z.lazy(() => NpiProviderCreateNestedManyWithoutUserInput_schema_1.NpiProviderCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
claims: z.lazy(() => ClaimCreateNestedManyWithoutUserInput_schema_1.ClaimCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
insuranceCredentials: z.lazy(() => InsuranceCredentialCreateNestedManyWithoutUserInput_schema_1.InsuranceCredentialCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
backups: z.lazy(() => DatabaseBackupCreateNestedManyWithoutUserInput_schema_1.DatabaseBackupCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
backupDestinations: z.lazy(() => BackupDestinationCreateNestedManyWithoutUserInput_schema_1.BackupDestinationCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
notifications: z.lazy(() => NotificationCreateNestedManyWithoutUserInput_schema_1.NotificationCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
cloudFolders: z.lazy(() => CloudFolderCreateNestedManyWithoutUserInput_schema_1.CloudFolderCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
cloudFiles: z.lazy(() => CloudFileCreateNestedManyWithoutUserInput_schema_1.CloudFileCreateNestedManyWithoutUserInputObjectSchema).optional(),
|
|
communications: z.lazy(() => CommunicationCreateNestedManyWithoutUserInput_schema_1.CommunicationCreateNestedManyWithoutUserInputObjectSchema).optional()
|
|
}).strict();
|
|
exports.UserCreateWithoutUpdatedPaymentsInputObjectSchema = makeSchema();
|
|
exports.UserCreateWithoutUpdatedPaymentsInputObjectZodSchema = makeSchema();
|