fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user