@paramms/chat-widget 1.0.28 → 1.0.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -72,6 +72,9 @@ export interface Conversation {
|
|
|
72
72
|
guestEmail?: string;
|
|
73
73
|
guestAvatar?: string;
|
|
74
74
|
guestMeta?: Record<string, string>;
|
|
75
|
+
/** True once the guest's identity has been proven by a signed ES256 JWT
|
|
76
|
+
* against the chatroom's guestPublicKey (secure identity mode). */
|
|
77
|
+
guestVerified?: boolean;
|
|
75
78
|
participants: UserId[];
|
|
76
79
|
assignedAgentId?: UserId;
|
|
77
80
|
aiActive?: boolean;
|