@phonghq/go-chat 1.0.36 → 1.0.39

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.
@@ -39,6 +39,35 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
39
39
  color: string;
40
40
  is_unknown: number;
41
41
  }[]>;
42
+ listConversationsUnknown: import("vue").Ref<{
43
+ id: number;
44
+ receiver_id: number;
45
+ username: string | null;
46
+ phone: string;
47
+ avatar: string | null;
48
+ last_message: string;
49
+ last_message_time: string;
50
+ created_at: string;
51
+ updated_at: string;
52
+ unread_count: number;
53
+ status: number;
54
+ color: string;
55
+ is_unknown: number;
56
+ }[], IConversation[] | {
57
+ id: number;
58
+ receiver_id: number;
59
+ username: string | null;
60
+ phone: string;
61
+ avatar: string | null;
62
+ last_message: string;
63
+ last_message_time: string;
64
+ created_at: string;
65
+ updated_at: string;
66
+ unread_count: number;
67
+ status: number;
68
+ color: string;
69
+ is_unknown: number;
70
+ }[]>;
42
71
  getCurrentConversation: () => IConversation | undefined;
43
72
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
44
73
  "update:receiverId": (value: any) => any;
@@ -1,5 +1,5 @@
1
1
  export declare const TOPIC_DETAIL_CHAT = "chat/message/";
2
2
  export declare const TOPIC_DETAIL_CALL = "call/message/";
3
- export declare const TOPIC_HOME: string[];
4
3
  export declare const TOPIC_PLIVO_SMS = "sms-inbound/";
5
4
  export declare const TOPIC_STATUS_USER: string;
5
+ export declare const TOPIC_HOME: string[];