fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -19,25 +19,29 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{
|
||||
updatedAt: z.ZodOptional<z.ZodBoolean>;
|
||||
status: z.ZodOptional<z.ZodBoolean>;
|
||||
claimNumber: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProviderId: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodBoolean>;
|
||||
appointment: z.ZodOptional<z.ZodBoolean>;
|
||||
user: z.ZodOptional<z.ZodBoolean>;
|
||||
staff: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProvider: z.ZodOptional<z.ZodBoolean>;
|
||||
serviceLines: z.ZodOptional<z.ZodBoolean>;
|
||||
claimFiles: z.ZodOptional<z.ZodBoolean>;
|
||||
payment: z.ZodOptional<z.ZodBoolean>;
|
||||
_count: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
payment?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
@@ -55,15 +59,17 @@ export declare const ClaimFindFirstSelectZodSchema: z.ZodObject<{
|
||||
_count?: boolean | undefined;
|
||||
}, {
|
||||
status?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
user?: boolean | undefined;
|
||||
staff?: boolean | undefined;
|
||||
userId?: boolean | undefined;
|
||||
staffId?: boolean | undefined;
|
||||
payment?: boolean | undefined;
|
||||
updatedAt?: boolean | undefined;
|
||||
@@ -89,7 +95,7 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.ClaimWhereUniqueInput, z.ZodTypeDef, Prisma.ClaimWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber"]>, z.ZodArray<z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>, z.ZodArray<z.ZodEnum<["id", "patientId", "appointmentId", "userId", "staffId", "patientName", "memberId", "dateOfBirth", "remarks", "missingTeethStatus", "missingTeeth", "serviceDate", "insuranceProvider", "createdAt", "updatedAt", "status", "claimNumber", "npiProviderId"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.ClaimWhereInput | undefined;
|
||||
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -98,7 +104,7 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ClaimWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.ClaimWhereInput | undefined;
|
||||
include?: Prisma.ClaimInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -107,6 +113,6 @@ export declare const ClaimFindFirstZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.ClaimWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "createdAt" | "id" | "userId" | "patientId" | "appointmentId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
distinct?: "status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber" | ("status" | "id" | "createdAt" | "patientId" | "npiProviderId" | "appointmentId" | "userId" | "staffId" | "updatedAt" | "patientName" | "memberId" | "dateOfBirth" | "remarks" | "missingTeethStatus" | "missingTeeth" | "serviceDate" | "insuranceProvider" | "claimNumber")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findFirstClaim.schema.d.ts.map
|
||||
Reference in New Issue
Block a user