@esvndev/es-react-template-chat 0.0.15 → 0.0.17
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/components/hook/index.d.ts +0 -25
- package/dist/index.js +117 -118
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +117 -118
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -15,30 +15,5 @@ export declare const useChat: () => {
|
|
|
15
15
|
checkScroll: any;
|
|
16
16
|
listGeneralGroup: any;
|
|
17
17
|
getHistoryApi: (params: any) => any;
|
|
18
|
-
getInfoApi: (params: any) => any;
|
|
19
|
-
getMessageByGroupApi: (params: any, paging: any) => any;
|
|
20
|
-
getMessageByContactApi: (params: string, paging: any) => any;
|
|
21
|
-
groupsApi: (params: any) => any;
|
|
22
|
-
addMemberGroup: (params: any) => any;
|
|
23
|
-
senMessageApi: (id: string, params: any) => any;
|
|
24
|
-
deleteMessageApi: (params: any) => any;
|
|
25
|
-
recallMessageApi: (params: any) => any;
|
|
26
|
-
contactAddApi: (params: any) => any;
|
|
27
|
-
updateGroupAvatarApi: (params: any) => any;
|
|
28
|
-
getProfileApi: () => any;
|
|
29
|
-
getUsersApi: (params: any) => any;
|
|
30
|
-
getContactApi: (params: any) => any;
|
|
31
|
-
getHistoryActiveApi: (params: any) => any;
|
|
32
|
-
updateChatRoomMemberApi: (params: any) => any;
|
|
33
|
-
setScroll: (params: any) => any;
|
|
34
|
-
setGeneralGroup: (params: any) => any;
|
|
35
|
-
get_message_by_group_cursor_api: (params: any) => any;
|
|
36
|
-
getPagingEmployeeApi: (params: any) => any;
|
|
37
|
-
connectChatRoomMember: (params: any) => any;
|
|
38
|
-
pinMessageChatRoom: (params: any) => any;
|
|
39
|
-
getPinMessageChatRoomApi: (params: any) => any;
|
|
40
|
-
deletePinMessage: (pinId: string) => any;
|
|
41
|
-
updateGroupTagApi: (params: any) => any;
|
|
42
|
-
createReminderApi: (params: any) => any;
|
|
43
18
|
typingUsers: any;
|
|
44
19
|
};
|
package/dist/index.js
CHANGED
|
@@ -46652,7 +46652,7 @@ const get_history = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_HISTORY, asyn
|
|
|
46652
46652
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46653
46653
|
}
|
|
46654
46654
|
});
|
|
46655
|
-
|
|
46655
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_MESSAGE_BY_GROUP_CURSOR, async (params, thunkAPI) => {
|
|
46656
46656
|
try {
|
|
46657
46657
|
return await api.chatApi.getMessageByGroupCursor(params.chatRoomId, params);
|
|
46658
46658
|
}
|
|
@@ -46660,7 +46660,7 @@ const get_message_by_group_cursor = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.G
|
|
|
46660
46660
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46661
46661
|
}
|
|
46662
46662
|
});
|
|
46663
|
-
|
|
46663
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_HISTORY_ACTIVE, async (params, thunkAPI) => {
|
|
46664
46664
|
try {
|
|
46665
46665
|
return await api.chatApi.getHistoryActive(params);
|
|
46666
46666
|
}
|
|
@@ -46668,7 +46668,7 @@ const get_history_active = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_HISTOR
|
|
|
46668
46668
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46669
46669
|
}
|
|
46670
46670
|
});
|
|
46671
|
-
|
|
46671
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_INFO, async (params, thunkAPI) => {
|
|
46672
46672
|
try {
|
|
46673
46673
|
return await api.chatApi.getInfo(params);
|
|
46674
46674
|
}
|
|
@@ -46692,7 +46692,7 @@ const addMemberGroup = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.MEMBER_GROUP,
|
|
|
46692
46692
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46693
46693
|
}
|
|
46694
46694
|
});
|
|
46695
|
-
|
|
46695
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.SEN_MESSAGE, async (params, thunkAPI) => {
|
|
46696
46696
|
try {
|
|
46697
46697
|
return await api.chatApi.senMessage(params.id, params.formData, params.tickerDto);
|
|
46698
46698
|
}
|
|
@@ -46700,7 +46700,7 @@ const sen_message = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.SEN_MESSAGE, asyn
|
|
|
46700
46700
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46701
46701
|
}
|
|
46702
46702
|
});
|
|
46703
|
-
|
|
46703
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.DELETE_MESSAGE, async (params, thunkAPI) => {
|
|
46704
46704
|
try {
|
|
46705
46705
|
return await api.chatApi.deleteMessage(params.id, params.chatRoomId);
|
|
46706
46706
|
}
|
|
@@ -46708,7 +46708,7 @@ const delete_message = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.DELETE_MESSAGE
|
|
|
46708
46708
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46709
46709
|
}
|
|
46710
46710
|
});
|
|
46711
|
-
|
|
46711
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.RECALL_MESSAGE, async (params, thunkAPI) => {
|
|
46712
46712
|
try {
|
|
46713
46713
|
return await api.chatApi.recallMessage(params.id, params.chatRoomId);
|
|
46714
46714
|
}
|
|
@@ -46716,7 +46716,7 @@ const recall_message = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.RECALL_MESSAGE
|
|
|
46716
46716
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46717
46717
|
}
|
|
46718
46718
|
});
|
|
46719
|
-
|
|
46719
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.UPDATE_GROUP_AVATAR, async (params, thunkAPI) => {
|
|
46720
46720
|
try {
|
|
46721
46721
|
return await api.chatApi.updateGroupAvatar(params);
|
|
46722
46722
|
}
|
|
@@ -46724,7 +46724,7 @@ const update_group_avatar = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.UPDATE_GR
|
|
|
46724
46724
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46725
46725
|
}
|
|
46726
46726
|
});
|
|
46727
|
-
|
|
46727
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_MESSAGE_BY_GROUP, async (params, thunkAPI) => {
|
|
46728
46728
|
try {
|
|
46729
46729
|
return await api.chatApi.getMessageByGroup(params.chatRoomId, params.paging);
|
|
46730
46730
|
}
|
|
@@ -46732,7 +46732,7 @@ const get_message_by_group = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_MESS
|
|
|
46732
46732
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46733
46733
|
}
|
|
46734
46734
|
});
|
|
46735
|
-
|
|
46735
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_MESSAGE_BY_CONTACT, async (params, thunkAPI) => {
|
|
46736
46736
|
try {
|
|
46737
46737
|
return await api.chatApi.getMessageByContact(params.chatRoomId, params.paging);
|
|
46738
46738
|
}
|
|
@@ -46748,7 +46748,7 @@ const contact_add = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.CONTACT_ADD, asyn
|
|
|
46748
46748
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46749
46749
|
}
|
|
46750
46750
|
});
|
|
46751
|
-
|
|
46751
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.CONNECT_CHAT_ROOM_MEMBER, async (params, thunkAPI) => {
|
|
46752
46752
|
try {
|
|
46753
46753
|
return await api.chatApi.connectChatRoomMemberApi(params);
|
|
46754
46754
|
}
|
|
@@ -46764,7 +46764,7 @@ const get_profile = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_PROFILE, asyn
|
|
|
46764
46764
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46765
46765
|
}
|
|
46766
46766
|
});
|
|
46767
|
-
|
|
46767
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_USERS, async (params, thunkAPI) => {
|
|
46768
46768
|
try {
|
|
46769
46769
|
return await api.chatApi.getUsers(params);
|
|
46770
46770
|
}
|
|
@@ -46788,7 +46788,7 @@ const update_chat_room_member = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.CHAT_
|
|
|
46788
46788
|
return thunkAPI.rejectWithValue({ error: error.response.data });
|
|
46789
46789
|
}
|
|
46790
46790
|
});
|
|
46791
|
-
|
|
46791
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_PAGING_EMPLOYEE, async (params, thunkAPI) => {
|
|
46792
46792
|
try {
|
|
46793
46793
|
const response = await api.chatApi.getPagingEmployeeApi(params);
|
|
46794
46794
|
return response;
|
|
@@ -46797,7 +46797,7 @@ const getPagingEmployeeApi = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.GET_PAGI
|
|
|
46797
46797
|
return thunkAPI.rejectWithValue({ error: error.data });
|
|
46798
46798
|
}
|
|
46799
46799
|
});
|
|
46800
|
-
|
|
46800
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.PIN_MESSAGE_CHAT_ROOM, async (params, thunkAPI) => {
|
|
46801
46801
|
try {
|
|
46802
46802
|
const response = await api.chatApi.pinMessageChatRoomApi(params);
|
|
46803
46803
|
return response;
|
|
@@ -46824,7 +46824,7 @@ const deletePinMessageApi = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.DELETE_PI
|
|
|
46824
46824
|
return thunkAPI.rejectWithValue({ error: error.data });
|
|
46825
46825
|
}
|
|
46826
46826
|
});
|
|
46827
|
-
|
|
46827
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.UPDATE_GROUP_TAG, async (params, thunkAPI) => {
|
|
46828
46828
|
try {
|
|
46829
46829
|
const response = await api.chatApi.updateGroupTagApi(params);
|
|
46830
46830
|
return response;
|
|
@@ -46833,7 +46833,7 @@ const updateGroupTagApi = toolkit.createAsyncThunk(CHAT.ACTION_TYPES.UPDATE_GROU
|
|
|
46833
46833
|
return thunkAPI.rejectWithValue({ error: error.response?.data || error.data });
|
|
46834
46834
|
}
|
|
46835
46835
|
});
|
|
46836
|
-
|
|
46836
|
+
toolkit.createAsyncThunk(CHAT.ACTION_TYPES.CREATE_REMINDER, async (params, thunkAPI) => {
|
|
46837
46837
|
try {
|
|
46838
46838
|
const response = await api.chatApi.createReminderApi(params);
|
|
46839
46839
|
return response;
|
|
@@ -47205,91 +47205,90 @@ const appChatSlice = toolkit.createSlice({
|
|
|
47205
47205
|
// })
|
|
47206
47206
|
}
|
|
47207
47207
|
});
|
|
47208
|
-
|
|
47209
|
-
//setGetHistory,
|
|
47210
|
-
getNotification, removeChatRoom, setListChatType, setArchive, setApproveStatus, setHistory, editGroupName, setScroll, updateMemberGroup, setMessageByGroup, leaveGroup, getGeneralGroup, setGeneralGroup, editGroupAvatar, editGroupTag, addPinnedMessage, userTyping } = appChatSlice.actions;
|
|
47208
|
+
appChatSlice.actions;
|
|
47211
47209
|
|
|
47212
47210
|
const useChat = () => {
|
|
47213
47211
|
const dispatch = configureStore.useAppDispatch();
|
|
47214
47212
|
const { active, checkInit, chatRoomId, userLogin, listContact, contactId, typeChat, loadChat, messageByGroup, listHistory, listChatType, archiveStore, checkScroll, listGeneralGroup, pinnedMessages, typingUsers } = configureStore.useAppSelector((state) => state.chat);
|
|
47213
|
+
console.log('active', active);
|
|
47215
47214
|
const getHistoryApi = (params) => {
|
|
47216
47215
|
return dispatch(get_history(params));
|
|
47217
47216
|
};
|
|
47218
|
-
const get_message_by_group_cursor_api = (params) => {
|
|
47219
|
-
|
|
47220
|
-
}
|
|
47221
|
-
const getHistoryActiveApi = (params) => {
|
|
47222
|
-
|
|
47223
|
-
}
|
|
47224
|
-
const getInfoApi = (params) => {
|
|
47225
|
-
|
|
47226
|
-
}
|
|
47227
|
-
const getMessageByGroupApi = (params, paging) => {
|
|
47228
|
-
|
|
47229
|
-
}
|
|
47230
|
-
const getMessageByContactApi = (params, paging) => {
|
|
47231
|
-
|
|
47232
|
-
}
|
|
47233
|
-
const groupsApi = (params) => {
|
|
47234
|
-
|
|
47235
|
-
}
|
|
47236
|
-
const addMemberGroup
|
|
47237
|
-
|
|
47238
|
-
}
|
|
47239
|
-
const senMessageApi = (id, params) => {
|
|
47240
|
-
|
|
47241
|
-
}
|
|
47242
|
-
const deleteMessageApi = (params) => {
|
|
47243
|
-
|
|
47244
|
-
}
|
|
47245
|
-
const recallMessageApi = (params) => {
|
|
47246
|
-
|
|
47247
|
-
}
|
|
47248
|
-
const contactAddApi = (params) => {
|
|
47249
|
-
|
|
47250
|
-
}
|
|
47251
|
-
const updateGroupAvatarApi = (params) => {
|
|
47252
|
-
|
|
47253
|
-
}
|
|
47254
|
-
const getProfileApi = () => {
|
|
47255
|
-
|
|
47256
|
-
}
|
|
47257
|
-
const getUsersApi = (params) => {
|
|
47258
|
-
|
|
47259
|
-
}
|
|
47260
|
-
const getContactApi = (params) => {
|
|
47261
|
-
|
|
47262
|
-
}
|
|
47263
|
-
const updateChatRoomMemberApi = (params) => {
|
|
47264
|
-
|
|
47265
|
-
}
|
|
47266
|
-
const setScroll
|
|
47267
|
-
|
|
47268
|
-
}
|
|
47269
|
-
const setGeneralGroup
|
|
47270
|
-
|
|
47271
|
-
}
|
|
47272
|
-
const getPagingEmployeeApi
|
|
47273
|
-
|
|
47274
|
-
}
|
|
47275
|
-
const connectChatRoomMember = (params) => {
|
|
47276
|
-
|
|
47277
|
-
}
|
|
47278
|
-
const pinMessageChatRoom = (params) => {
|
|
47279
|
-
|
|
47280
|
-
}
|
|
47281
|
-
const getPinMessageChatRoomApi
|
|
47282
|
-
|
|
47283
|
-
}
|
|
47284
|
-
const deletePinMessage = (pinId) => {
|
|
47285
|
-
|
|
47286
|
-
}
|
|
47287
|
-
const updateGroupTagApi
|
|
47288
|
-
|
|
47289
|
-
}
|
|
47290
|
-
const createReminderApi
|
|
47291
|
-
|
|
47292
|
-
}
|
|
47217
|
+
// const get_message_by_group_cursor_api = (params: any) => {
|
|
47218
|
+
// return dispatch(chatStore.get_message_by_group_cursor(params))
|
|
47219
|
+
// }
|
|
47220
|
+
// const getHistoryActiveApi = (params: any) => {
|
|
47221
|
+
// return dispatch(chatStore.get_history_active(params))
|
|
47222
|
+
// }
|
|
47223
|
+
// const getInfoApi = (params: any) => {
|
|
47224
|
+
// return dispatch(chatStore.get_info(params))
|
|
47225
|
+
// }
|
|
47226
|
+
// const getMessageByGroupApi = (params: any, paging: any) => {
|
|
47227
|
+
// return dispatch(chatStore.get_message_by_group({ chatRoomId: params, paging }))
|
|
47228
|
+
// }
|
|
47229
|
+
// const getMessageByContactApi = (params: string, paging: any) => {
|
|
47230
|
+
// return dispatch(chatStore.get_message_by_contact({ chatRoomId: params, paging }))
|
|
47231
|
+
// }
|
|
47232
|
+
// const groupsApi = (params: any) => {
|
|
47233
|
+
// return dispatch(chatStore.groups(params))
|
|
47234
|
+
// }
|
|
47235
|
+
// const addMemberGroup = (params: any) => {
|
|
47236
|
+
// return dispatch(chatStore.addMemberGroup(params))
|
|
47237
|
+
// }
|
|
47238
|
+
// const senMessageApi = (id: string, params: any) => {
|
|
47239
|
+
// return dispatch(chatStore.sen_message({ id, formData: params }))
|
|
47240
|
+
// }
|
|
47241
|
+
// const deleteMessageApi = (params: any) => {
|
|
47242
|
+
// return dispatch(chatStore.delete_message(params))
|
|
47243
|
+
// }
|
|
47244
|
+
// const recallMessageApi = (params: any) => {
|
|
47245
|
+
// return dispatch(chatStore.recall_message(params))
|
|
47246
|
+
// }
|
|
47247
|
+
// const contactAddApi = (params: any) => {
|
|
47248
|
+
// return dispatch(chatStore.contact_add(params))
|
|
47249
|
+
// }
|
|
47250
|
+
// const updateGroupAvatarApi = (params: any) => {
|
|
47251
|
+
// return dispatch(chatStore.update_group_avatar(params))
|
|
47252
|
+
// }
|
|
47253
|
+
// const getProfileApi = () => {
|
|
47254
|
+
// return dispatch(chatStore.get_profile())
|
|
47255
|
+
// }
|
|
47256
|
+
// const getUsersApi = (params: any) => {
|
|
47257
|
+
// return dispatch(chatStore.get_users(params))
|
|
47258
|
+
// }
|
|
47259
|
+
// const getContactApi = (params: any) => {
|
|
47260
|
+
// return dispatch(chatStore.get_contact(params))
|
|
47261
|
+
// }
|
|
47262
|
+
// const updateChatRoomMemberApi = (params: any) => {
|
|
47263
|
+
// return dispatch(chatStore.update_chat_room_member(params))
|
|
47264
|
+
// }
|
|
47265
|
+
// const setScroll = (params: any) => {
|
|
47266
|
+
// return dispatch(chatStore.setScroll(params))
|
|
47267
|
+
// }
|
|
47268
|
+
// const setGeneralGroup = (params: any) => {
|
|
47269
|
+
// return dispatch(chatStore.setGeneralGroup(params))
|
|
47270
|
+
// }
|
|
47271
|
+
// const getPagingEmployeeApi = (params: any) => {
|
|
47272
|
+
// return dispatch(chatStore.getPagingEmployeeApi(params))
|
|
47273
|
+
// }
|
|
47274
|
+
// const connectChatRoomMember = (params: any) => {
|
|
47275
|
+
// return dispatch(chatStore.connectChatRoomMemberApi(params))
|
|
47276
|
+
// }
|
|
47277
|
+
// const pinMessageChatRoom = (params: any) => {
|
|
47278
|
+
// return dispatch(chatStore.pinMessageChatRoomApi(params))
|
|
47279
|
+
// }
|
|
47280
|
+
// const getPinMessageChatRoomApi = (params: any) => {
|
|
47281
|
+
// return dispatch(chatStore.getPinMessageChatRoomApi(params))
|
|
47282
|
+
// }
|
|
47283
|
+
// const deletePinMessage = (pinId: string) => {
|
|
47284
|
+
// return dispatch(chatStore.deletePinMessageApi(pinId))
|
|
47285
|
+
// }
|
|
47286
|
+
// const updateGroupTagApi = (params: any) => {
|
|
47287
|
+
// return dispatch(chatStore.updateGroupTagApi(params))
|
|
47288
|
+
// }
|
|
47289
|
+
// const createReminderApi = (params: any) => {
|
|
47290
|
+
// return dispatch(chatStore.createReminderApi(params))
|
|
47291
|
+
// }
|
|
47293
47292
|
return {
|
|
47294
47293
|
active,
|
|
47295
47294
|
contactId,
|
|
@@ -47307,31 +47306,31 @@ const useChat = () => {
|
|
|
47307
47306
|
checkScroll,
|
|
47308
47307
|
listGeneralGroup,
|
|
47309
47308
|
getHistoryApi,
|
|
47310
|
-
getInfoApi,
|
|
47311
|
-
getMessageByGroupApi,
|
|
47312
|
-
getMessageByContactApi,
|
|
47313
|
-
groupsApi,
|
|
47314
|
-
|
|
47315
|
-
senMessageApi,
|
|
47316
|
-
deleteMessageApi,
|
|
47317
|
-
recallMessageApi,
|
|
47318
|
-
contactAddApi,
|
|
47319
|
-
updateGroupAvatarApi,
|
|
47320
|
-
getProfileApi,
|
|
47321
|
-
getUsersApi,
|
|
47322
|
-
getContactApi,
|
|
47323
|
-
getHistoryActiveApi,
|
|
47324
|
-
updateChatRoomMemberApi,
|
|
47325
|
-
|
|
47326
|
-
|
|
47327
|
-
get_message_by_group_cursor_api,
|
|
47328
|
-
|
|
47329
|
-
connectChatRoomMember,
|
|
47330
|
-
pinMessageChatRoom,
|
|
47331
|
-
|
|
47332
|
-
deletePinMessage,
|
|
47333
|
-
|
|
47334
|
-
|
|
47309
|
+
// getInfoApi,
|
|
47310
|
+
// getMessageByGroupApi,
|
|
47311
|
+
// getMessageByContactApi,
|
|
47312
|
+
// groupsApi,
|
|
47313
|
+
// addMemberGroup,
|
|
47314
|
+
// senMessageApi,
|
|
47315
|
+
// deleteMessageApi,
|
|
47316
|
+
// recallMessageApi,
|
|
47317
|
+
// contactAddApi,
|
|
47318
|
+
// updateGroupAvatarApi,
|
|
47319
|
+
// getProfileApi,
|
|
47320
|
+
// getUsersApi,
|
|
47321
|
+
// getContactApi,
|
|
47322
|
+
// getHistoryActiveApi,
|
|
47323
|
+
// updateChatRoomMemberApi,
|
|
47324
|
+
// setScroll,
|
|
47325
|
+
// setGeneralGroup,
|
|
47326
|
+
// get_message_by_group_cursor_api,
|
|
47327
|
+
// getPagingEmployeeApi,
|
|
47328
|
+
// connectChatRoomMember,
|
|
47329
|
+
// pinMessageChatRoom,
|
|
47330
|
+
// getPinMessageChatRoomApi,
|
|
47331
|
+
// deletePinMessage,
|
|
47332
|
+
// updateGroupTagApi,
|
|
47333
|
+
// createReminderApi,
|
|
47335
47334
|
typingUsers
|
|
47336
47335
|
};
|
|
47337
47336
|
};
|