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,10 +35,14 @@ var __importStar = (this && this.__importStar) || (function () {
Object.defineProperty(exports, "__esModule", { value: true });
exports.NpiProviderCreateWithoutUserInputObjectZodSchema = exports.NpiProviderCreateWithoutUserInputObjectSchema = void 0;
const z = __importStar(require("zod"));
const ClaimCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./ClaimCreateNestedManyWithoutNpiProviderInput.schema");
const AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1 = require("./AppointmentProcedureCreateNestedManyWithoutNpiProviderInput.schema");
const makeSchema = () => z.object({
npiNumber: z.string(),
providerName: z.string(),
createdAt: z.coerce.date().optional()
createdAt: z.coerce.date().optional(),
claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(),
appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional()
}).strict();
exports.NpiProviderCreateWithoutUserInputObjectSchema = makeSchema();
exports.NpiProviderCreateWithoutUserInputObjectZodSchema = makeSchema();