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

@@ -14,27 +14,27 @@ export declare const CommunicationInputSchema: z.ZodObject<{
user: z.ZodNullable<z.ZodOptional<z.ZodUnknown>>;
}, "strict", z.ZodTypeAny, {
status: "queued" | "sent" | "delivered" | "failed" | "completed" | "busy" | "no_answer";
createdAt: Date;
id: number;
createdAt: Date;
patientId: number;
channel: "sms" | "voice";
direction: "outbound" | "inbound";
userId?: number | null | undefined;
user?: unknown;
patient?: unknown;
user?: unknown;
userId?: number | null | undefined;
body?: string | null | undefined;
callDuration?: number | null | undefined;
twilioSid?: string | null | undefined;
}, {
status: "queued" | "sent" | "delivered" | "failed" | "completed" | "busy" | "no_answer";
createdAt: Date;
id: number;
createdAt: Date;
patientId: number;
channel: "sms" | "voice";
direction: "outbound" | "inbound";
userId?: number | null | undefined;
user?: unknown;
patient?: unknown;
user?: unknown;
userId?: number | null | undefined;
body?: string | null | undefined;
callDuration?: number | null | undefined;
twilioSid?: string | null | undefined;