Files
DentalManagementMHAprilgg/packages/db/shared/schemas/objects/PatientUpdateWithoutDocumentsInput.schema.js
2026-04-04 22:13:55 -04:00

78 lines
7.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.PatientUpdateWithoutDocumentsInputObjectZodSchema = exports.PatientUpdateWithoutDocumentsInputObjectSchema = void 0;
const z = __importStar(require("zod"));
const StringFieldUpdateOperationsInput_schema_1 = require("./StringFieldUpdateOperationsInput.schema");
const DateTimeFieldUpdateOperationsInput_schema_1 = require("./DateTimeFieldUpdateOperationsInput.schema");
const NullableStringFieldUpdateOperationsInput_schema_1 = require("./NullableStringFieldUpdateOperationsInput.schema");
const PatientStatus_schema_1 = require("../enums/PatientStatus.schema");
const EnumPatientStatusFieldUpdateOperationsInput_schema_1 = require("./EnumPatientStatusFieldUpdateOperationsInput.schema");
const UserUpdateOneRequiredWithoutPatientsNestedInput_schema_1 = require("./UserUpdateOneRequiredWithoutPatientsNestedInput.schema");
const AppointmentUpdateManyWithoutPatientNestedInput_schema_1 = require("./AppointmentUpdateManyWithoutPatientNestedInput.schema");
const AppointmentProcedureUpdateManyWithoutPatientNestedInput_schema_1 = require("./AppointmentProcedureUpdateManyWithoutPatientNestedInput.schema");
const ClaimUpdateManyWithoutPatientNestedInput_schema_1 = require("./ClaimUpdateManyWithoutPatientNestedInput.schema");
const PdfGroupUpdateManyWithoutPatientNestedInput_schema_1 = require("./PdfGroupUpdateManyWithoutPatientNestedInput.schema");
const PaymentUpdateManyWithoutPatientNestedInput_schema_1 = require("./PaymentUpdateManyWithoutPatientNestedInput.schema");
const CommunicationUpdateManyWithoutPatientNestedInput_schema_1 = require("./CommunicationUpdateManyWithoutPatientNestedInput.schema");
const makeSchema = () => z.object({
firstName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(),
lastName: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(),
dateOfBirth: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(),
gender: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(),
phone: z.union([z.string(), z.lazy(() => StringFieldUpdateOperationsInput_schema_1.StringFieldUpdateOperationsInputObjectSchema)]).optional(),
email: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(),
address: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(),
city: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(),
zipCode: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(),
insuranceProvider: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(),
insuranceId: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(),
groupNumber: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(),
policyHolder: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(),
allergies: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(),
medicalConditions: z.union([z.string(), z.lazy(() => NullableStringFieldUpdateOperationsInput_schema_1.NullableStringFieldUpdateOperationsInputObjectSchema)]).optional().nullable(),
status: z.union([PatientStatus_schema_1.PatientStatusSchema, z.lazy(() => EnumPatientStatusFieldUpdateOperationsInput_schema_1.EnumPatientStatusFieldUpdateOperationsInputObjectSchema)]).optional(),
createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(),
user: z.lazy(() => UserUpdateOneRequiredWithoutPatientsNestedInput_schema_1.UserUpdateOneRequiredWithoutPatientsNestedInputObjectSchema).optional(),
appointments: z.lazy(() => AppointmentUpdateManyWithoutPatientNestedInput_schema_1.AppointmentUpdateManyWithoutPatientNestedInputObjectSchema).optional(),
procedures: z.lazy(() => AppointmentProcedureUpdateManyWithoutPatientNestedInput_schema_1.AppointmentProcedureUpdateManyWithoutPatientNestedInputObjectSchema).optional(),
claims: z.lazy(() => ClaimUpdateManyWithoutPatientNestedInput_schema_1.ClaimUpdateManyWithoutPatientNestedInputObjectSchema).optional(),
groups: z.lazy(() => PdfGroupUpdateManyWithoutPatientNestedInput_schema_1.PdfGroupUpdateManyWithoutPatientNestedInputObjectSchema).optional(),
payment: z.lazy(() => PaymentUpdateManyWithoutPatientNestedInput_schema_1.PaymentUpdateManyWithoutPatientNestedInputObjectSchema).optional(),
communications: z.lazy(() => CommunicationUpdateManyWithoutPatientNestedInput_schema_1.CommunicationUpdateManyWithoutPatientNestedInputObjectSchema).optional()
}).strict();
exports.PatientUpdateWithoutDocumentsInputObjectSchema = makeSchema();
exports.PatientUpdateWithoutDocumentsInputObjectZodSchema = makeSchema();