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,30 +14,30 @@ export declare const CommunicationModelSchema: z.ZodObject<{
user: z.ZodNullable<z.ZodUnknown>;
}, "strict", z.ZodTypeAny, {
status: "queued" | "sent" | "delivered" | "failed" | "completed" | "busy" | "no_answer";
createdAt: Date;
id: number;
userId: number | null;
createdAt: Date;
patientId: number;
userId: number | null;
channel: "sms" | "voice";
direction: "outbound" | "inbound";
body: string | null;
callDuration: number | null;
twilioSid: string | null;
user?: unknown;
patient?: unknown;
user?: unknown;
}, {
status: "queued" | "sent" | "delivered" | "failed" | "completed" | "busy" | "no_answer";
createdAt: Date;
id: number;
userId: number | null;
createdAt: Date;
patientId: number;
userId: number | null;
channel: "sms" | "voice";
direction: "outbound" | "inbound";
body: string | null;
callDuration: number | null;
twilioSid: string | null;
user?: unknown;
patient?: unknown;
user?: unknown;
}>;
export type CommunicationPureType = z.infer<typeof CommunicationModelSchema>;
//# sourceMappingURL=Communication.pure.d.ts.map