@bcc-code/vue-bcc-chat-ui 6.3.1 → 6.4.1
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/dist/chat/types.d.ts +4 -3
- package/dist/vue-bcc-chat-ui.js +20314 -20315
- package/dist/vue-bcc-chat-ui.js.map +1 -1
- package/package.json +1 -1
package/dist/chat/types.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { BaseMessage, Group, MessageReceipt } from '@cometchat/chat-sdk-javascript';
|
|
2
2
|
import { FuseResultMatch } from 'fuse.js';
|
|
3
3
|
import { Ref } from 'vue';
|
|
4
|
-
import { Conversation, Message } from '../offline/types';
|
|
4
|
+
import { Conversation as OfflineConversation, Message as OfflineMessage } from '../offline/types';
|
|
5
5
|
export * from 'fuse.js';
|
|
6
|
+
export { OfflineConversation, OfflineMessage };
|
|
6
7
|
export interface ChatInstallOptions {
|
|
7
8
|
environment: Environment;
|
|
8
9
|
language?: Language;
|
|
@@ -94,11 +95,11 @@ export declare enum LogSeverity {
|
|
|
94
95
|
}
|
|
95
96
|
export interface SearchedItems {
|
|
96
97
|
conversations: {
|
|
97
|
-
conversation:
|
|
98
|
+
conversation: OfflineConversation;
|
|
98
99
|
matches: FuseResultMatch[];
|
|
99
100
|
}[];
|
|
100
101
|
messages: {
|
|
101
|
-
message:
|
|
102
|
+
message: OfflineMessage;
|
|
102
103
|
matches: FuseResultMatch[];
|
|
103
104
|
}[];
|
|
104
105
|
}
|