fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -5,6 +5,7 @@ export declare const AppointmentProcedureFindManySelectZodSchema: z.ZodObject<{
|
||||
id: z.ZodOptional<z.ZodBoolean>;
|
||||
appointmentId: z.ZodOptional<z.ZodBoolean>;
|
||||
patientId: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProviderId: z.ZodOptional<z.ZodBoolean>;
|
||||
procedureCode: z.ZodOptional<z.ZodBoolean>;
|
||||
procedureLabel: z.ZodOptional<z.ZodBoolean>;
|
||||
fee: z.ZodOptional<z.ZodBoolean>;
|
||||
@@ -17,11 +18,13 @@ export declare const AppointmentProcedureFindManySelectZodSchema: z.ZodObject<{
|
||||
createdAt: z.ZodOptional<z.ZodBoolean>;
|
||||
appointment: z.ZodOptional<z.ZodBoolean>;
|
||||
patient: z.ZodOptional<z.ZodBoolean>;
|
||||
npiProvider: z.ZodOptional<z.ZodBoolean>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
procedureCode?: boolean | undefined;
|
||||
procedureLabel?: boolean | undefined;
|
||||
fee?: boolean | undefined;
|
||||
@@ -33,11 +36,13 @@ export declare const AppointmentProcedureFindManySelectZodSchema: z.ZodObject<{
|
||||
comboKey?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
}, {
|
||||
createdAt?: boolean | undefined;
|
||||
id?: boolean | undefined;
|
||||
createdAt?: boolean | undefined;
|
||||
patientId?: boolean | undefined;
|
||||
patient?: boolean | undefined;
|
||||
npiProviderId?: boolean | undefined;
|
||||
procedureCode?: boolean | undefined;
|
||||
procedureLabel?: boolean | undefined;
|
||||
fee?: boolean | undefined;
|
||||
@@ -49,6 +54,7 @@ export declare const AppointmentProcedureFindManySelectZodSchema: z.ZodObject<{
|
||||
comboKey?: boolean | undefined;
|
||||
appointmentId?: boolean | undefined;
|
||||
appointment?: boolean | undefined;
|
||||
npiProvider?: boolean | undefined;
|
||||
}>;
|
||||
export declare const AppointmentProcedureFindManySchema: z.ZodType<Prisma.AppointmentProcedureFindManyArgs>;
|
||||
export declare const AppointmentProcedureFindManyZodSchema: z.ZodObject<{
|
||||
@@ -59,7 +65,7 @@ export declare const AppointmentProcedureFindManyZodSchema: z.ZodObject<{
|
||||
cursor: z.ZodOptional<z.ZodType<Prisma.AppointmentProcedureWhereUniqueInput, z.ZodTypeDef, Prisma.AppointmentProcedureWhereUniqueInput>>;
|
||||
take: z.ZodOptional<z.ZodNumber>;
|
||||
skip: z.ZodOptional<z.ZodNumber>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
|
||||
distinct: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, z.ZodArray<z.ZodEnum<["id", "appointmentId", "patientId", "npiProviderId", "procedureCode", "procedureLabel", "fee", "category", "toothNumber", "toothSurface", "oralCavityArea", "source", "comboKey", "createdAt"]>, "many">]>>;
|
||||
}, "strict", z.ZodTypeAny, {
|
||||
where?: Prisma.AppointmentProcedureWhereInput | undefined;
|
||||
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -68,7 +74,7 @@ export declare const AppointmentProcedureFindManyZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
}, {
|
||||
where?: Prisma.AppointmentProcedureWhereInput | undefined;
|
||||
include?: Prisma.AppointmentProcedureInclude<import("../../generated/prisma/runtime/client").DefaultArgs> | undefined;
|
||||
@@ -77,6 +83,6 @@ export declare const AppointmentProcedureFindManyZodSchema: z.ZodObject<{
|
||||
cursor?: Prisma.AppointmentProcedureWhereUniqueInput | undefined;
|
||||
take?: number | undefined;
|
||||
skip?: number | undefined;
|
||||
distinct?: "createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("createdAt" | "id" | "patientId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
distinct?: "id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId" | ("id" | "createdAt" | "patientId" | "npiProviderId" | "procedureCode" | "procedureLabel" | "fee" | "category" | "toothNumber" | "toothSurface" | "oralCavityArea" | "source" | "comboKey" | "appointmentId")[] | undefined;
|
||||
}>;
|
||||
//# sourceMappingURL=findManyAppointmentProcedure.schema.d.ts.map
|
||||
Reference in New Issue
Block a user