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

@@ -41,6 +41,7 @@ const PatientOrderByWithRelationInput_schema_1 = require("./PatientOrderByWithRe
const AppointmentOrderByWithRelationInput_schema_1 = require("./AppointmentOrderByWithRelationInput.schema");
const UserOrderByWithRelationInput_schema_1 = require("./UserOrderByWithRelationInput.schema");
const StaffOrderByWithRelationInput_schema_1 = require("./StaffOrderByWithRelationInput.schema");
const NpiProviderOrderByWithRelationInput_schema_1 = require("./NpiProviderOrderByWithRelationInput.schema");
const ServiceLineOrderByRelationAggregateInput_schema_1 = require("./ServiceLineOrderByRelationAggregateInput.schema");
const ClaimFileOrderByRelationAggregateInput_schema_1 = require("./ClaimFileOrderByRelationAggregateInput.schema");
const PaymentOrderByWithRelationInput_schema_1 = require("./PaymentOrderByWithRelationInput.schema");
@@ -62,10 +63,12 @@ const makeSchema = () => z.object({
updatedAt: SortOrder_schema_1.SortOrderSchema.optional(),
status: SortOrder_schema_1.SortOrderSchema.optional(),
claimNumber: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(),
npiProviderId: z.union([SortOrder_schema_1.SortOrderSchema, z.lazy(() => SortOrderInput_schema_1.SortOrderInputObjectSchema)]).optional(),
patient: z.lazy(() => PatientOrderByWithRelationInput_schema_1.PatientOrderByWithRelationInputObjectSchema).optional(),
appointment: z.lazy(() => AppointmentOrderByWithRelationInput_schema_1.AppointmentOrderByWithRelationInputObjectSchema).optional(),
user: z.lazy(() => UserOrderByWithRelationInput_schema_1.UserOrderByWithRelationInputObjectSchema).optional(),
staff: z.lazy(() => StaffOrderByWithRelationInput_schema_1.StaffOrderByWithRelationInputObjectSchema).optional(),
npiProvider: z.lazy(() => NpiProviderOrderByWithRelationInput_schema_1.NpiProviderOrderByWithRelationInputObjectSchema).optional(),
serviceLines: z.lazy(() => ServiceLineOrderByRelationAggregateInput_schema_1.ServiceLineOrderByRelationAggregateInputObjectSchema).optional(),
claimFiles: z.lazy(() => ClaimFileOrderByRelationAggregateInput_schema_1.ClaimFileOrderByRelationAggregateInputObjectSchema).optional(),
payment: z.lazy(() => PaymentOrderByWithRelationInput_schema_1.PaymentOrderByWithRelationInputObjectSchema).optional()