fix: fix remote browser socket connection and related updates

This commit is contained in:
Gitead
2026-04-30 11:52:58 -04:00
parent 441cfcc8e3
commit d8f852741a
959 changed files with 13338 additions and 2208 deletions

View File

@@ -35,11 +35,15 @@ var __importStar = (this && this.__importStar) || (function () {
Object.defineProperty(exports, "__esModule", { value: true });
exports.NpiProviderUncheckedCreateWithoutUserInputObjectZodSchema = exports.NpiProviderUncheckedCreateWithoutUserInputObjectSchema = void 0;
const z = __importStar(require("zod"));
const ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimUncheckedCreateNestedManyWithoutNpiProviderInput.schema");
const AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput.schema");
const makeSchema = () => z.object({
id: z.number().int().optional(),
npiNumber: z.string(),
providerName: z.string(),
createdAt: z.coerce.date().optional()
createdAt: z.coerce.date().optional(),
claims: z.lazy(() => ClaimUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(),
appointmentProcedures: z.lazy(() => AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureUncheckedCreateNestedManyWithoutNpiProviderInputObjectSchema).optional()
}).strict();
exports.NpiProviderUncheckedCreateWithoutUserInputObjectSchema = makeSchema();
exports.NpiProviderUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema();