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