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

@@ -36,11 +36,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
exports.NpiProviderCreateInputObjectZodSchema = exports.NpiProviderCreateInputObjectSchema = void 0;
const z = __importStar(require("zod"));
const UserCreateNestedOneWithoutNpiProvidersInput_schema_1 = require("./UserCreateNestedOneWithoutNpiProvidersInput.schema");
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(),
user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInput_schema_1.UserCreateNestedOneWithoutNpiProvidersInputObjectSchema)
user: z.lazy(() => UserCreateNestedOneWithoutNpiProvidersInput_schema_1.UserCreateNestedOneWithoutNpiProvidersInputObjectSchema),
claims: z.lazy(() => ClaimCreateNestedManyWithoutNpiProviderInput_schema_1.ClaimCreateNestedManyWithoutNpiProviderInputObjectSchema).optional(),
appointmentProcedures: z.lazy(() => AppointmentProcedureCreateNestedManyWithoutNpiProviderInput_schema_1.AppointmentProcedureCreateNestedManyWithoutNpiProviderInputObjectSchema).optional()
}).strict();
exports.NpiProviderCreateInputObjectSchema = makeSchema();
exports.NpiProviderCreateInputObjectZodSchema = makeSchema();