fix: fix remote browser socket connection and related updates
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user