jugglechat-websdk 1.9.6 → 1.9.7
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.
- package/index.d.ts +2 -0
- package/index.js +79 -60
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -205,6 +205,7 @@ declare class Message {
|
|
|
205
205
|
conversationTitle?: string;
|
|
206
206
|
conversationPortrait?: string;
|
|
207
207
|
conversationExts?: string;
|
|
208
|
+
conversationAlias: string;
|
|
208
209
|
tid?: string;
|
|
209
210
|
messageId?: string;
|
|
210
211
|
name: string;
|
|
@@ -337,6 +338,7 @@ interface SearchMatchMsg {
|
|
|
337
338
|
conversationExts: string;
|
|
338
339
|
conversationPortrait: string;
|
|
339
340
|
conversationTitle: string;
|
|
341
|
+
conversationAlias: string;
|
|
340
342
|
matchedCount: number;
|
|
341
343
|
matchedList: Message[];
|
|
342
344
|
}
|