@bcc-code/vue-bcc-chat-ui 6.4.0 → 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/index.d.ts
CHANGED
|
@@ -7,8 +7,8 @@ declare const _default: {
|
|
|
7
7
|
getGroupMessages: Ref<((guid: string, query: string) => Promise<any>) | undefined, ((guid: string, query: string) => Promise<any>) | undefined>;
|
|
8
8
|
loadMessageId: Ref<string | undefined, string | undefined>;
|
|
9
9
|
scrollToMessageId: Ref<string | undefined, string | undefined>;
|
|
10
|
-
onlineMode: import('vue').WritableComputedRef<import('../types').OnlineStatus, import('../types').OnlineStatus>;
|
|
11
|
-
onlineStatus: import('vue').ComputedRef<import('../types').OnlineStatus>;
|
|
10
|
+
onlineMode: import('vue').WritableComputedRef<import('../offline/types').OnlineStatus, import('../offline/types').OnlineStatus>;
|
|
11
|
+
onlineStatus: import('vue').ComputedRef<import('../offline/types').OnlineStatus>;
|
|
12
12
|
theme: Ref<{
|
|
13
13
|
palette: {
|
|
14
14
|
mode: string;
|
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
|
}
|
package/dist/vue-bcc-chat-ui.js
CHANGED
|
@@ -25984,7 +25984,7 @@ class Q6e {
|
|
|
25984
25984
|
}
|
|
25985
25985
|
eh = new WeakMap(), kl = new WeakMap(), Fs = new WeakSet(), P0 = function(t, r, n) {
|
|
25986
25986
|
const a = structuredClone(n) ?? {};
|
|
25987
|
-
a.chatVersion = "6.4.
|
|
25987
|
+
a.chatVersion = "6.4.1";
|
|
25988
25988
|
const i = {
|
|
25989
25989
|
logUid: window.crypto.randomUUID(),
|
|
25990
25990
|
correlationUid: no(this, eh),
|