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

79 lines
7.4 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.PatientUncheckedUpdateWithoutGroupsInputObjectZodSchema = exports.PatientUncheckedUpdateWithoutGroupsInputObjectSchema = void 0;
const z = __importStar(require("zod"));
const IntFieldUpdateOperationsInput_schema_1 = require("./IntFieldUpdateOperationsInput.schema");
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 AppointmentUncheckedUpdateManyWithoutPatientNestedInput_schema_1 = require("./AppointmentUncheckedUpdateManyWithoutPatientNestedInput.schema");
const AppointmentProcedureUncheckedUpdateManyWithoutPatientNestedInput_schema_1 = require("./AppointmentProcedureUncheckedUpdateManyWithoutPatientNestedInput.schema");
const ClaimUncheckedUpdateManyWithoutPatientNestedInput_schema_1 = require("./ClaimUncheckedUpdateManyWithoutPatientNestedInput.schema");
const PaymentUncheckedUpdateManyWithoutPatientNestedInput_schema_1 = require("./PaymentUncheckedUpdateManyWithoutPatientNestedInput.schema");
const CommunicationUncheckedUpdateManyWithoutPatientNestedInput_schema_1 = require("./CommunicationUncheckedUpdateManyWithoutPatientNestedInput.schema");
const PatientDocumentUncheckedUpdateManyWithoutPatientNestedInput_schema_1 = require("./PatientDocumentUncheckedUpdateManyWithoutPatientNestedInput.schema");
const makeSchema = () => z.object({
id: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(),
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(),
userId: z.union([z.number().int(), z.lazy(() => IntFieldUpdateOperationsInput_schema_1.IntFieldUpdateOperationsInputObjectSchema)]).optional(),
createdAt: z.union([z.coerce.date(), z.lazy(() => DateTimeFieldUpdateOperationsInput_schema_1.DateTimeFieldUpdateOperationsInputObjectSchema)]).optional(),
appointments: z.lazy(() => AppointmentUncheckedUpdateManyWithoutPatientNestedInput_schema_1.AppointmentUncheckedUpdateManyWithoutPatientNestedInputObjectSchema).optional(),
procedures: z.lazy(() => AppointmentProcedureUncheckedUpdateManyWithoutPatientNestedInput_schema_1.AppointmentProcedureUncheckedUpdateManyWithoutPatientNestedInputObjectSchema).optional(),
claims: z.lazy(() => ClaimUncheckedUpdateManyWithoutPatientNestedInput_schema_1.ClaimUncheckedUpdateManyWithoutPatientNestedInputObjectSchema).optional(),
payment: z.lazy(() => PaymentUncheckedUpdateManyWithoutPatientNestedInput_schema_1.PaymentUncheckedUpdateManyWithoutPatientNestedInputObjectSchema).optional(),
communications: z.lazy(() => CommunicationUncheckedUpdateManyWithoutPatientNestedInput_schema_1.CommunicationUncheckedUpdateManyWithoutPatientNestedInputObjectSchema).optional(),
documents: z.lazy(() => PatientDocumentUncheckedUpdateManyWithoutPatientNestedInput_schema_1.PatientDocumentUncheckedUpdateManyWithoutPatientNestedInputObjectSchema).optional()
}).strict();
exports.PatientUncheckedUpdateWithoutGroupsInputObjectSchema = makeSchema();
exports.PatientUncheckedUpdateWithoutGroupsInputObjectZodSchema = makeSchema();