node-nim 9.2.8-rc.1 → 9.3.0-rc.2
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/README.md +74 -39
- package/dist/chatroom/chatroom.js +253 -0
- package/dist/chatroom/chatroom.js.map +1 -0
- package/dist/chatroom_def/chatroom_def.js +120 -0
- package/dist/chatroom_def/chatroom_def.js.map +1 -0
- package/{js → dist}/loader.js +0 -0
- package/{js → dist}/loader.js.map +0 -0
- package/{js/api → dist/nim}/client.js +46 -8
- package/dist/nim/client.js.map +1 -0
- package/{js/api → dist/nim}/data_sync.js +2 -2
- package/dist/nim/data_sync.js.map +1 -0
- package/{js/api → dist/nim}/friend.js +62 -12
- package/dist/nim/friend.js.map +1 -0
- package/{js/api → dist/nim}/global.js +50 -8
- package/dist/nim/global.js.map +1 -0
- package/{js/api → dist/nim}/msglog.js +271 -52
- package/dist/nim/msglog.js.map +1 -0
- package/{js/api → dist/nim}/nos.js +54 -13
- package/dist/nim/nos.js.map +1 -0
- package/{js/api → dist/nim}/online_session.js +34 -6
- package/dist/nim/online_session.js.map +1 -0
- package/{js/api → dist/nim}/pass_through_proxy.js +10 -3
- package/dist/nim/pass_through_proxy.js.map +1 -0
- package/{js/api → dist/nim}/plugin.js +18 -4
- package/dist/nim/plugin.js.map +1 -0
- package/{js/api → dist/nim}/session.js +171 -28
- package/dist/nim/session.js.map +1 -0
- package/{js/api → dist/nim}/subscribe_event.js +53 -12
- package/dist/nim/subscribe_event.js.map +1 -0
- package/{js/api → dist/nim}/super_team.js +253 -47
- package/dist/nim/super_team.js.map +1 -0
- package/{js/api → dist/nim}/sysmsg.js +80 -12
- package/dist/nim/sysmsg.js.map +1 -0
- package/{js/api → dist/nim}/talk.js +10 -3
- package/dist/nim/talk.js.map +1 -0
- package/dist/nim/talkex.js +192 -0
- package/dist/nim/talkex.js.map +1 -0
- package/{js/api → dist/nim}/team.js +363 -87
- package/dist/nim/team.js.map +1 -0
- package/{js/api → dist/nim}/tool.js +21 -5
- package/dist/nim/tool.js.map +1 -0
- package/{js/api → dist/nim}/user.js +84 -16
- package/dist/nim/user.js.map +1 -0
- package/{js/def → dist/nim_def}/client_def.js +0 -0
- package/dist/nim_def/client_def.js.map +1 -0
- package/{js/def → dist/nim_def}/data_sync_def.js +0 -0
- package/dist/nim_def/data_sync_def.js.map +1 -0
- package/{js/def → dist/nim_def}/doc_trans_def.js +0 -0
- package/dist/nim_def/doc_trans_def.js.map +1 -0
- package/{js/def → dist/nim_def}/friend_def.js +0 -0
- package/dist/nim_def/friend_def.js.map +1 -0
- package/{js/def → dist/nim_def}/global_def.js +0 -0
- package/dist/nim_def/global_def.js.map +1 -0
- package/{js/def → dist/nim_def}/msglog_def.js +1 -1
- package/dist/nim_def/msglog_def.js.map +1 -0
- package/{js/def → dist/nim_def}/nos_def.js +0 -0
- package/dist/nim_def/nos_def.js.map +1 -0
- package/{js/def → dist/nim_def}/online_session_def.js +0 -0
- package/dist/nim_def/online_session_def.js.map +1 -0
- package/{js/def → dist/nim_def}/pass_through_proxy_def.js +0 -0
- package/dist/nim_def/pass_through_proxy_def.js.map +1 -0
- package/{js/def → dist/nim_def}/plugin_def.js +0 -0
- package/{js/def → dist/nim_def}/plugin_def.js.map +1 -1
- package/{js/def → dist/nim_def}/session_def.js +0 -0
- package/dist/nim_def/session_def.js.map +1 -0
- package/{js/def → dist/nim_def}/subscribe_event_def.js +0 -0
- package/dist/nim_def/subscribe_event_def.js.map +1 -0
- package/{js/def → dist/nim_def}/super_team_def.js +0 -0
- package/dist/nim_def/super_team_def.js.map +1 -0
- package/{js/def → dist/nim_def}/sysmsg_def.js +0 -0
- package/dist/nim_def/sysmsg_def.js.map +1 -0
- package/{js/def → dist/nim_def}/talk_def.js +0 -0
- package/{js/def → dist/nim_def}/talk_def.js.map +1 -1
- package/{js/def → dist/nim_def}/talkex_def.js +0 -0
- package/{js/def → dist/nim_def}/talkex_def.js.map +1 -1
- package/{js/def → dist/nim_def}/team_def.js +0 -0
- package/dist/nim_def/team_def.js.map +1 -0
- package/{js/def → dist/nim_def}/tool_def.js +0 -0
- package/dist/nim_def/tool_def.js.map +1 -0
- package/{js/def → dist/nim_def}/user_def.js +0 -0
- package/dist/nim_def/user_def.js.map +1 -0
- package/dist/node-nim.js +98 -0
- package/dist/node-nim.js.map +1 -0
- package/dist/qchat/attachment.js +75 -0
- package/dist/qchat/attachment.js.map +1 -0
- package/dist/qchat/channel.js +402 -0
- package/dist/qchat/channel.js.map +1 -0
- package/dist/qchat/channel_category.js +249 -0
- package/dist/qchat/channel_category.js.map +1 -0
- package/dist/qchat/instance.js +94 -0
- package/dist/qchat/instance.js.map +1 -0
- package/dist/qchat/message.js +325 -0
- package/dist/qchat/message.js.map +1 -0
- package/dist/qchat/role.js +562 -0
- package/dist/qchat/role.js.map +1 -0
- package/dist/qchat/server.js +515 -0
- package/dist/qchat/server.js.map +1 -0
- package/dist/qchat/system_notification.js +96 -0
- package/dist/qchat/system_notification.js.map +1 -0
- package/dist/qchat_def/attachment_def.js +3 -0
- package/dist/qchat_def/attachment_def.js.map +1 -0
- package/dist/qchat_def/channel_def.js +3 -0
- package/dist/qchat_def/channel_def.js.map +1 -0
- package/dist/qchat_def/instance_def.js +3 -0
- package/dist/qchat_def/instance_def.js.map +1 -0
- package/dist/qchat_def/message_def.js +3 -0
- package/dist/qchat_def/message_def.js.map +1 -0
- package/dist/qchat_def/public_def.js +584 -0
- package/dist/qchat_def/public_def.js.map +1 -0
- package/dist/qchat_def/role_def.js +3 -0
- package/dist/qchat_def/role_def.js.map +1 -0
- package/dist/qchat_def/server_def.js +3 -0
- package/dist/qchat_def/server_def.js.map +1 -0
- package/dist/qchat_def/system_notification_def.js +3 -0
- package/dist/qchat_def/system_notification_def.js.map +1 -0
- package/package.json +7 -6
- package/script/download-sdk.mjs +17 -16
- package/types/chatroom/chatroom.d.ts +54 -0
- package/types/chatroom_def/chatroom_def.d.ts +419 -0
- package/types/{api → nim}/client.d.ts +22 -23
- package/types/nim/data_sync.d.ts +12 -0
- package/types/{api → nim}/friend.d.ts +17 -17
- package/types/{api → nim}/global.d.ts +13 -13
- package/types/{api → nim}/msglog.d.ts +62 -62
- package/types/{api → nim}/nos.d.ts +21 -21
- package/types/{api → nim}/online_session.d.ts +12 -12
- package/types/{api → nim}/pass_through_proxy.d.ts +8 -8
- package/types/{api → nim}/plugin.d.ts +8 -6
- package/types/{api → nim}/session.d.ts +40 -40
- package/types/{api → nim}/subscribe_event.d.ts +19 -19
- package/types/{api → nim}/super_team.d.ts +51 -52
- package/types/{api → nim}/sysmsg.d.ts +20 -20
- package/types/{api → nim}/talk.d.ts +19 -19
- package/types/{api → nim}/talkex.d.ts +29 -27
- package/types/{api → nim}/team.d.ts +89 -88
- package/types/{api → nim}/tool.d.ts +9 -7
- package/types/{api → nim}/user.d.ts +23 -23
- package/types/{def → nim_def}/client_def.d.ts +86 -86
- package/types/{def → nim_def}/data_sync_def.d.ts +0 -0
- package/types/{def → nim_def}/doc_trans_def.d.ts +0 -0
- package/types/{def → nim_def}/friend_def.d.ts +17 -16
- package/types/{def → nim_def}/global_def.d.ts +14 -13
- package/types/{def → nim_def}/msglog_def.d.ts +152 -141
- package/types/nim_def/nos_def.d.ts +72 -0
- package/types/{def → nim_def}/online_session_def.d.ts +15 -15
- package/types/{def → nim_def}/pass_through_proxy_def.d.ts +2 -1
- package/types/{def → nim_def}/plugin_def.d.ts +3 -2
- package/types/{def → nim_def}/session_def.d.ts +49 -48
- package/types/nim_def/subscribe_event_def.d.ts +83 -0
- package/types/{def → nim_def}/super_team_def.d.ts +34 -34
- package/types/{def → nim_def}/sysmsg_def.d.ts +25 -25
- package/types/{def → nim_def}/talk_def.d.ts +24 -24
- package/types/nim_def/talkex_def.d.ts +112 -0
- package/types/{def → nim_def}/team_def.d.ts +37 -37
- package/types/{def → nim_def}/tool_def.d.ts +7 -6
- package/types/{def → nim_def}/user_def.d.ts +22 -21
- package/types/node-nim.d.ts +53 -0
- package/types/qchat/attachment.d.ts +40 -0
- package/types/qchat/channel.d.ts +133 -0
- package/types/qchat/channel_category.d.ts +82 -0
- package/types/qchat/instance.d.ts +46 -0
- package/types/qchat/message.d.ts +110 -0
- package/types/qchat/role.d.ts +161 -0
- package/types/qchat/server.d.ts +168 -0
- package/types/qchat/system_notification.d.ts +39 -0
- package/types/qchat_def/attachment_def.d.ts +71 -0
- package/types/qchat_def/channel_def.d.ts +624 -0
- package/types/qchat_def/instance_def.d.ts +212 -0
- package/types/qchat_def/message_def.d.ts +477 -0
- package/types/qchat_def/public_def.d.ts +774 -0
- package/types/qchat_def/role_def.d.ts +430 -0
- package/types/qchat_def/server_def.d.ts +451 -0
- package/types/qchat_def/system_notification_def.d.ts +170 -0
- package/js/api/client.js.map +0 -1
- package/js/api/data_sync.js.map +0 -1
- package/js/api/friend.js.map +0 -1
- package/js/api/global.js.map +0 -1
- package/js/api/msglog.js.map +0 -1
- package/js/api/nos.js.map +0 -1
- package/js/api/online_session.js.map +0 -1
- package/js/api/pass_through_proxy.js.map +0 -1
- package/js/api/plugin.js.map +0 -1
- package/js/api/session.js.map +0 -1
- package/js/api/subscribe_event.js.map +0 -1
- package/js/api/super_team.js.map +0 -1
- package/js/api/sysmsg.js.map +0 -1
- package/js/api/talk.js.map +0 -1
- package/js/api/talkex.js +0 -115
- package/js/api/talkex.js.map +0 -1
- package/js/api/team.js.map +0 -1
- package/js/api/tool.js.map +0 -1
- package/js/api/user.js.map +0 -1
- package/js/def/client_def.js.map +0 -1
- package/js/def/data_sync_def.js.map +0 -1
- package/js/def/doc_trans_def.js.map +0 -1
- package/js/def/friend_def.js.map +0 -1
- package/js/def/global_def.js.map +0 -1
- package/js/def/msglog_def.js.map +0 -1
- package/js/def/nos_def.js.map +0 -1
- package/js/def/online_session_def.js.map +0 -1
- package/js/def/pass_through_proxy_def.js.map +0 -1
- package/js/def/session_def.js.map +0 -1
- package/js/def/subscribe_event_def.js.map +0 -1
- package/js/def/super_team_def.js.map +0 -1
- package/js/def/sysmsg_def.js.map +0 -1
- package/js/def/team_def.js.map +0 -1
- package/js/def/tool_def.js.map +0 -1
- package/js/def/user_def.js.map +0 -1
- package/js/nim.js +0 -72
- package/js/nim.js.map +0 -1
- package/types/api/data_sync.d.ts +0 -13
- package/types/def/nos_def.d.ts +0 -71
- package/types/def/subscribe_event_def.d.ts +0 -82
- package/types/def/talkex_def.d.ts +0 -111
- package/types/nim.d.ts +0 -36
|
@@ -0,0 +1,584 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NIMQChatSystemNotificationStatus = exports.NIMQChatSystemNotificationType = exports.NIMQChatInviteApplyRecordStatus = exports.NIMQChatInviteApplyRecordType = exports.NIMQChatServerSearchType = exports.NIMQChatServerInviteFailReason = exports.NIMQChatServerApplyMode = exports.NIMQChatServerInviteMode = exports.NIMQChatGetReferMessageType = exports.NIMQChatQuickCommentOperation = exports.NIMQChatMsgType = exports.NIMQChatMessageNotifyReason = exports.NIMQChatMessageStatus = exports.NIMQChatFCSAuthenticationType = exports.NIMQChatHandShakeType = exports.NIMQChatCommEncryptionAlgorithm = exports.NIMQChatExchangeKeyEncryptionAlgorithm = exports.NIMQChatLoginStatus = exports.NIMQChatLoginStep = exports.NIMQChatClientType = exports.NIMQChatLoginAuthType = exports.NIMQChatPermissionsOption = exports.NIMQChatRoleType = exports.NIMQChatPermissions = exports.NIMResCode = exports.NIMQChatChannelSearchSort = exports.NIMQChatServerSearchSort = exports.NIMQChatSearchOrder = exports.NIMQChatBanMemberOpeType = exports.NIMQChatDownloadResType = exports.NIMQChatSubscribeType = exports.NIMQChatSubscribeOpeType = exports.NIMQChatChannelSyncMode = exports.NIMQChatChannelViewMode = exports.NIMQChatChannelWhiteBlackOpeType = exports.NIMQChatChannelWhiteBlackType = exports.NIMQChatChannelMemberIdentifyOpeType = exports.NIMQChatChannelMemberIdentifyType = exports.NIMQChatChannelType = void 0;
|
|
4
|
+
var NIMQChatChannelType;
|
|
5
|
+
(function (NIMQChatChannelType) {
|
|
6
|
+
/** 普通文本频道 */
|
|
7
|
+
NIMQChatChannelType[NIMQChatChannelType["kNIMQChatChannelTypeText"] = 0] = "kNIMQChatChannelTypeText";
|
|
8
|
+
/** RTC频道 */
|
|
9
|
+
NIMQChatChannelType[NIMQChatChannelType["kNIMQChatChannelTypeRTC"] = 1] = "kNIMQChatChannelTypeRTC";
|
|
10
|
+
/** 自定义频道类型 */
|
|
11
|
+
NIMQChatChannelType[NIMQChatChannelType["kNIMQChatChannelTypeCustom"] = 100] = "kNIMQChatChannelTypeCustom";
|
|
12
|
+
})(NIMQChatChannelType = exports.NIMQChatChannelType || (exports.NIMQChatChannelType = {}));
|
|
13
|
+
var NIMQChatChannelMemberIdentifyType;
|
|
14
|
+
(function (NIMQChatChannelMemberIdentifyType) {
|
|
15
|
+
NIMQChatChannelMemberIdentifyType[NIMQChatChannelMemberIdentifyType["kNIMQChatWhite"] = 1] = "kNIMQChatWhite";
|
|
16
|
+
NIMQChatChannelMemberIdentifyType[NIMQChatChannelMemberIdentifyType["kNIMQChatBlack"] = 2] = "kNIMQChatBlack";
|
|
17
|
+
})(NIMQChatChannelMemberIdentifyType = exports.NIMQChatChannelMemberIdentifyType || (exports.NIMQChatChannelMemberIdentifyType = {}));
|
|
18
|
+
var NIMQChatChannelMemberIdentifyOpeType;
|
|
19
|
+
(function (NIMQChatChannelMemberIdentifyOpeType) {
|
|
20
|
+
NIMQChatChannelMemberIdentifyOpeType[NIMQChatChannelMemberIdentifyOpeType["kNIMQChatChannelMemberIdentifyOpeTypeAdd"] = 1] = "kNIMQChatChannelMemberIdentifyOpeTypeAdd";
|
|
21
|
+
NIMQChatChannelMemberIdentifyOpeType[NIMQChatChannelMemberIdentifyOpeType["kNIMQChatChannelMemberIdentifyOpeTypeRemove"] = 2] = "kNIMQChatChannelMemberIdentifyOpeTypeRemove";
|
|
22
|
+
})(NIMQChatChannelMemberIdentifyOpeType = exports.NIMQChatChannelMemberIdentifyOpeType || (exports.NIMQChatChannelMemberIdentifyOpeType = {}));
|
|
23
|
+
var NIMQChatChannelWhiteBlackType;
|
|
24
|
+
(function (NIMQChatChannelWhiteBlackType) {
|
|
25
|
+
NIMQChatChannelWhiteBlackType[NIMQChatChannelWhiteBlackType["kNIMQChatChannelWhite"] = 1] = "kNIMQChatChannelWhite";
|
|
26
|
+
NIMQChatChannelWhiteBlackType[NIMQChatChannelWhiteBlackType["kNIMQChatChannelBlack"] = 2] = "kNIMQChatChannelBlack";
|
|
27
|
+
})(NIMQChatChannelWhiteBlackType = exports.NIMQChatChannelWhiteBlackType || (exports.NIMQChatChannelWhiteBlackType = {}));
|
|
28
|
+
var NIMQChatChannelWhiteBlackOpeType;
|
|
29
|
+
(function (NIMQChatChannelWhiteBlackOpeType) {
|
|
30
|
+
NIMQChatChannelWhiteBlackOpeType[NIMQChatChannelWhiteBlackOpeType["kNIMQChatChannelWhiteBlackOpeTypeAdd"] = 1] = "kNIMQChatChannelWhiteBlackOpeTypeAdd";
|
|
31
|
+
NIMQChatChannelWhiteBlackOpeType[NIMQChatChannelWhiteBlackOpeType["kNIMQChatChannelWhiteBlackOpeTypeRemove"] = 2] = "kNIMQChatChannelWhiteBlackOpeTypeRemove";
|
|
32
|
+
})(NIMQChatChannelWhiteBlackOpeType = exports.NIMQChatChannelWhiteBlackOpeType || (exports.NIMQChatChannelWhiteBlackOpeType = {}));
|
|
33
|
+
var NIMQChatChannelViewMode;
|
|
34
|
+
(function (NIMQChatChannelViewMode) {
|
|
35
|
+
/** 公开模式 */
|
|
36
|
+
NIMQChatChannelViewMode[NIMQChatChannelViewMode["kNIMQChatChannelViewModePublic"] = 0] = "kNIMQChatChannelViewModePublic";
|
|
37
|
+
/** 私密模式 */
|
|
38
|
+
NIMQChatChannelViewMode[NIMQChatChannelViewMode["kNIMQChatChannelViewModePrivate"] = 1] = "kNIMQChatChannelViewModePrivate";
|
|
39
|
+
})(NIMQChatChannelViewMode = exports.NIMQChatChannelViewMode || (exports.NIMQChatChannelViewMode = {}));
|
|
40
|
+
var NIMQChatChannelSyncMode;
|
|
41
|
+
(function (NIMQChatChannelSyncMode) {
|
|
42
|
+
/** 不与频道分组同步 */
|
|
43
|
+
NIMQChatChannelSyncMode[NIMQChatChannelSyncMode["kNIMQChatChannelSyncModeNoSync"] = 0] = "kNIMQChatChannelSyncModeNoSync";
|
|
44
|
+
/** 与频道分组同步 */
|
|
45
|
+
NIMQChatChannelSyncMode[NIMQChatChannelSyncMode["kNIMQChatChannelSyncModeSync"] = 1] = "kNIMQChatChannelSyncModeSync";
|
|
46
|
+
})(NIMQChatChannelSyncMode = exports.NIMQChatChannelSyncMode || (exports.NIMQChatChannelSyncMode = {}));
|
|
47
|
+
var NIMQChatSubscribeOpeType;
|
|
48
|
+
(function (NIMQChatSubscribeOpeType) {
|
|
49
|
+
/** 订阅 */
|
|
50
|
+
NIMQChatSubscribeOpeType[NIMQChatSubscribeOpeType["kNIMQChatSubscribeOpeTypeSubscribe"] = 1] = "kNIMQChatSubscribeOpeTypeSubscribe";
|
|
51
|
+
/** 取消订阅 */
|
|
52
|
+
NIMQChatSubscribeOpeType[NIMQChatSubscribeOpeType["kNIMQChatSubscribeOpeTypeUnsubscribe"] = 2] = "kNIMQChatSubscribeOpeTypeUnsubscribe";
|
|
53
|
+
})(NIMQChatSubscribeOpeType = exports.NIMQChatSubscribeOpeType || (exports.NIMQChatSubscribeOpeType = {}));
|
|
54
|
+
var NIMQChatSubscribeType;
|
|
55
|
+
(function (NIMQChatSubscribeType) {
|
|
56
|
+
/** 未知 */
|
|
57
|
+
NIMQChatSubscribeType[NIMQChatSubscribeType["kNIMQChatSubscribeTypeUnknow"] = 0] = "kNIMQChatSubscribeTypeUnknow";
|
|
58
|
+
/** 订阅某个channel的【消息】/【通知】 */
|
|
59
|
+
NIMQChatSubscribeType[NIMQChatSubscribeType["kNIMQChatSubscribeTypeMsg"] = 1] = "kNIMQChatSubscribeTypeMsg";
|
|
60
|
+
/** 订阅某个channel的【消息未读数】/【通知】 */
|
|
61
|
+
NIMQChatSubscribeType[NIMQChatSubscribeType["kNIMQChatSubscribeTypeUnreadCount"] = 2] = "kNIMQChatSubscribeTypeUnreadCount";
|
|
62
|
+
/** 订阅某个channel的【消息未读状态】/【通知】 */
|
|
63
|
+
NIMQChatSubscribeType[NIMQChatSubscribeType["kNIMQChatSubscribeTypeUnreadStatus"] = 3] = "kNIMQChatSubscribeTypeUnreadStatus";
|
|
64
|
+
/** 订阅某个server的【通知】 */
|
|
65
|
+
NIMQChatSubscribeType[NIMQChatSubscribeType["kNIMQChatSubscribeTypeServerNotification"] = 4] = "kNIMQChatSubscribeTypeServerNotification";
|
|
66
|
+
/** 订阅某个channel的【正在输入事件】 */
|
|
67
|
+
NIMQChatSubscribeType[NIMQChatSubscribeType["kNIMQChatSubscribeTypeTypingEvent"] = 5] = "kNIMQChatSubscribeTypeTypingEvent";
|
|
68
|
+
})(NIMQChatSubscribeType = exports.NIMQChatSubscribeType || (exports.NIMQChatSubscribeType = {}));
|
|
69
|
+
var NIMQChatDownloadResType;
|
|
70
|
+
(function (NIMQChatDownloadResType) {
|
|
71
|
+
/** 原文件 */
|
|
72
|
+
NIMQChatDownloadResType[NIMQChatDownloadResType["NIMQChatDownloadResTypeSource"] = 1] = "NIMQChatDownloadResTypeSource";
|
|
73
|
+
/** 图片缩略图 */
|
|
74
|
+
NIMQChatDownloadResType[NIMQChatDownloadResType["NIMQChatDownloadResTypeImageThumnail"] = 2] = "NIMQChatDownloadResTypeImageThumnail";
|
|
75
|
+
/** 视频封面 */
|
|
76
|
+
NIMQChatDownloadResType[NIMQChatDownloadResType["NIMQChatDownloadResTypeVideoCover"] = 3] = "NIMQChatDownloadResTypeVideoCover";
|
|
77
|
+
})(NIMQChatDownloadResType = exports.NIMQChatDownloadResType || (exports.NIMQChatDownloadResType = {}));
|
|
78
|
+
var NIMQChatBanMemberOpeType;
|
|
79
|
+
(function (NIMQChatBanMemberOpeType) {
|
|
80
|
+
/** 封禁 */
|
|
81
|
+
NIMQChatBanMemberOpeType[NIMQChatBanMemberOpeType["kNIMQChatBanMemberOpeTypeBan"] = 1] = "kNIMQChatBanMemberOpeTypeBan";
|
|
82
|
+
/** 解除封禁 */
|
|
83
|
+
NIMQChatBanMemberOpeType[NIMQChatBanMemberOpeType["kNIMQChatBanMemberOpeTypeUnban"] = 2] = "kNIMQChatBanMemberOpeTypeUnban";
|
|
84
|
+
})(NIMQChatBanMemberOpeType = exports.NIMQChatBanMemberOpeType || (exports.NIMQChatBanMemberOpeType = {}));
|
|
85
|
+
var NIMQChatSearchOrder;
|
|
86
|
+
(function (NIMQChatSearchOrder) {
|
|
87
|
+
/** 按时间正序 */
|
|
88
|
+
NIMQChatSearchOrder[NIMQChatSearchOrder["kNIMQChatSearchOrderAsc"] = 1] = "kNIMQChatSearchOrderAsc";
|
|
89
|
+
/** 按时间倒序 */
|
|
90
|
+
NIMQChatSearchOrder[NIMQChatSearchOrder["kNIMQChatSearchOrderDesc"] = 2] = "kNIMQChatSearchOrderDesc";
|
|
91
|
+
})(NIMQChatSearchOrder = exports.NIMQChatSearchOrder || (exports.NIMQChatSearchOrder = {}));
|
|
92
|
+
var NIMQChatServerSearchSort;
|
|
93
|
+
(function (NIMQChatServerSearchSort) {
|
|
94
|
+
/** 自定义权重排序(详见服务器端文档) */
|
|
95
|
+
NIMQChatServerSearchSort[NIMQChatServerSearchSort["kNIMQChatServerSearchSortCustom"] = 0] = "kNIMQChatServerSearchSortCustom";
|
|
96
|
+
/** 创建时间排序 */
|
|
97
|
+
NIMQChatServerSearchSort[NIMQChatServerSearchSort["kNIMQChatServerSearchSortCreateTime"] = 1] = "kNIMQChatServerSearchSortCreateTime";
|
|
98
|
+
/** 服务器总人数排序 */
|
|
99
|
+
NIMQChatServerSearchSort[NIMQChatServerSearchSort["kNIMQChatServerSearchSortMemberCOunt"] = 2] = "kNIMQChatServerSearchSortMemberCOunt";
|
|
100
|
+
})(NIMQChatServerSearchSort = exports.NIMQChatServerSearchSort || (exports.NIMQChatServerSearchSort = {}));
|
|
101
|
+
var NIMQChatChannelSearchSort;
|
|
102
|
+
(function (NIMQChatChannelSearchSort) {
|
|
103
|
+
/** 自定义权重排序(详见服务器端文档) */
|
|
104
|
+
NIMQChatChannelSearchSort[NIMQChatChannelSearchSort["kNIMQChatChannelSearchSortCustom"] = 0] = "kNIMQChatChannelSearchSortCustom";
|
|
105
|
+
/** 创建时间排序 */
|
|
106
|
+
NIMQChatChannelSearchSort[NIMQChatChannelSearchSort["kNIMQChatChannelSearchSortCreateTime"] = 1] = "kNIMQChatChannelSearchSortCreateTime";
|
|
107
|
+
})(NIMQChatChannelSearchSort = exports.NIMQChatChannelSearchSort || (exports.NIMQChatChannelSearchSort = {}));
|
|
108
|
+
var NIMResCode;
|
|
109
|
+
(function (NIMResCode) {
|
|
110
|
+
// 通用错误码
|
|
111
|
+
/** 错误 */
|
|
112
|
+
NIMResCode[NIMResCode["kNIMResError"] = 0] = "kNIMResError";
|
|
113
|
+
/** 没有错误,一切正常 */
|
|
114
|
+
NIMResCode[NIMResCode["kNIMResSuccess"] = 200] = "kNIMResSuccess";
|
|
115
|
+
/** 客户端版本不正确 */
|
|
116
|
+
NIMResCode[NIMResCode["kNIMResVersionError"] = 201] = "kNIMResVersionError";
|
|
117
|
+
/** 用户名或密码错误 */
|
|
118
|
+
NIMResCode[NIMResCode["kNIMResUidPassError"] = 302] = "kNIMResUidPassError";
|
|
119
|
+
/** 禁止操作 */
|
|
120
|
+
NIMResCode[NIMResCode["kNIMResForbidden"] = 403] = "kNIMResForbidden";
|
|
121
|
+
/** 请求的目标(用户或对象)不存在 */
|
|
122
|
+
NIMResCode[NIMResCode["kNIMResNotExist"] = 404] = "kNIMResNotExist";
|
|
123
|
+
/** 数据自上次查询以来未发生变化(用于增量更新) */
|
|
124
|
+
NIMResCode[NIMResCode["kNIMResNoModify"] = 406] = "kNIMResNoModify";
|
|
125
|
+
/** 请求过程超时 */
|
|
126
|
+
NIMResCode[NIMResCode["kNIMResTimeoutError"] = 408] = "kNIMResTimeoutError";
|
|
127
|
+
/** 参数错误 */
|
|
128
|
+
NIMResCode[NIMResCode["kNIMResParameterError"] = 414] = "kNIMResParameterError";
|
|
129
|
+
/** 网络连接出现错误 */
|
|
130
|
+
NIMResCode[NIMResCode["kNIMResConnectionError"] = 415] = "kNIMResConnectionError";
|
|
131
|
+
/** 操作太过频繁 */
|
|
132
|
+
NIMResCode[NIMResCode["kNIMResFrequently"] = 416] = "kNIMResFrequently";
|
|
133
|
+
/** 对象已经存在/重复操作 */
|
|
134
|
+
NIMResCode[NIMResCode["kNIMResExist"] = 417] = "kNIMResExist";
|
|
135
|
+
/** 超限 */
|
|
136
|
+
NIMResCode[NIMResCode["kNIMResOverrun"] = 419] = "kNIMResOverrun";
|
|
137
|
+
/** 帐号被禁用 */
|
|
138
|
+
NIMResCode[NIMResCode["kNIMResAccountBlock"] = 422] = "kNIMResAccountBlock";
|
|
139
|
+
/** 未知错误,或者不方便告诉你 */
|
|
140
|
+
NIMResCode[NIMResCode["kNIMResUnknownError"] = 500] = "kNIMResUnknownError";
|
|
141
|
+
/** 服务器数据错误 */
|
|
142
|
+
NIMResCode[NIMResCode["kNIMResServerDataError"] = 501] = "kNIMResServerDataError";
|
|
143
|
+
/** 服务器太忙 */
|
|
144
|
+
NIMResCode[NIMResCode["kNIMResTooBuzy"] = 503] = "kNIMResTooBuzy";
|
|
145
|
+
/** 超过配置有效期 */
|
|
146
|
+
NIMResCode[NIMResCode["kNIMResExceedLimit"] = 508] = "kNIMResExceedLimit";
|
|
147
|
+
/** 协议无效, 不允许访问的协议 */
|
|
148
|
+
NIMResCode[NIMResCode["kNIMResInvalid"] = 509] = "kNIMResInvalid";
|
|
149
|
+
// 群错误码
|
|
150
|
+
/** 已达到人数限制 */
|
|
151
|
+
NIMResCode[NIMResCode["kNIMResTeamECountLimit"] = 801] = "kNIMResTeamECountLimit";
|
|
152
|
+
/** 没有权限 */
|
|
153
|
+
NIMResCode[NIMResCode["kNIMResTeamENAccess"] = 802] = "kNIMResTeamENAccess";
|
|
154
|
+
/** 群不存在 */
|
|
155
|
+
NIMResCode[NIMResCode["kNIMResTeamENotExist"] = 803] = "kNIMResTeamENotExist";
|
|
156
|
+
/** 用户不在兴趣组里面 */
|
|
157
|
+
NIMResCode[NIMResCode["kNIMResTeamEMemberNotExist"] = 804] = "kNIMResTeamEMemberNotExist";
|
|
158
|
+
/** 群类型不对 */
|
|
159
|
+
NIMResCode[NIMResCode["kNIMResTeamErrType"] = 805] = "kNIMResTeamErrType";
|
|
160
|
+
/** 创建群数量限制 */
|
|
161
|
+
NIMResCode[NIMResCode["kNIMResTeamLimit"] = 806] = "kNIMResTeamLimit";
|
|
162
|
+
/** 群成员状态不对 */
|
|
163
|
+
NIMResCode[NIMResCode["kNIMResTeamUserStatusErr"] = 807] = "kNIMResTeamUserStatusErr";
|
|
164
|
+
/** 申请成功 */
|
|
165
|
+
NIMResCode[NIMResCode["kNIMResTeamApplySuccess"] = 808] = "kNIMResTeamApplySuccess";
|
|
166
|
+
/** 已经在群里 */
|
|
167
|
+
NIMResCode[NIMResCode["kNIMResTeamAlreadyIn"] = 809] = "kNIMResTeamAlreadyIn";
|
|
168
|
+
/** 邀请成功 */
|
|
169
|
+
NIMResCode[NIMResCode["kNIMResTeamInviteSuccess"] = 810] = "kNIMResTeamInviteSuccess";
|
|
170
|
+
/** 强推列表账号数量超限 */
|
|
171
|
+
NIMResCode[NIMResCode["kNIMResForcePushCountLimit"] = 811] = "kNIMResForcePushCountLimit";
|
|
172
|
+
/** 操作成功,但部分成员的群数量超限 */
|
|
173
|
+
NIMResCode[NIMResCode["kNIMResTeamMemberLimit"] = 813] = "kNIMResTeamMemberLimit";
|
|
174
|
+
// 数据整解编错误代码
|
|
175
|
+
/** 协议已失效 */
|
|
176
|
+
NIMResCode[NIMResCode["kNIMResInvalidProtocol"] = 997] = "kNIMResInvalidProtocol";
|
|
177
|
+
/** 解包错误 */
|
|
178
|
+
NIMResCode[NIMResCode["kNIMResEUnpacket"] = 998] = "kNIMResEUnpacket";
|
|
179
|
+
/** 打包错误 */
|
|
180
|
+
NIMResCode[NIMResCode["kNIMResEPacket"] = 999] = "kNIMResEPacket";
|
|
181
|
+
/** 被接收方加入黑名单 SDK版本大于2.5.0支持 */
|
|
182
|
+
NIMResCode[NIMResCode["kNIMResInBlack"] = 7101] = "kNIMResInBlack";
|
|
183
|
+
// 客户端自定义的错误号
|
|
184
|
+
/** 值大于该错误号的都是客户端自定义的错误号。不能随意更改其值! */
|
|
185
|
+
NIMResCode[NIMResCode["kNIMLocalRes"] = 10000] = "kNIMLocalRes";
|
|
186
|
+
/** 客户端本地错误号,需要重新向IM服务器获取进入聊天室权限 */
|
|
187
|
+
NIMResCode[NIMResCode["kNIMResRoomLocalNeedRequestAgain"] = 10001] = "kNIMResRoomLocalNeedRequestAgain";
|
|
188
|
+
/** 客户端本地错误号,本地网络错误,需要检查本地网络 */
|
|
189
|
+
NIMResCode[NIMResCode["kNIMLocalResNetworkError"] = 10010] = "kNIMLocalResNetworkError";
|
|
190
|
+
// 客户端自定义的消息错误号
|
|
191
|
+
/** (发送文件消息或者stop_upload_ex)HTTP upload to NOS上传暂停 */
|
|
192
|
+
NIMResCode[NIMResCode["kNIMLocalResMsgNosUploadCancel"] = 10200] = "kNIMLocalResMsgNosUploadCancel";
|
|
193
|
+
/** (收到文件消息或者stop_download_ex)HTTP download from NOS下载暂停 */
|
|
194
|
+
NIMResCode[NIMResCode["kNIMLocalResMsgNosDownloadCancel"] = 10206] = "kNIMLocalResMsgNosDownloadCancel";
|
|
195
|
+
/** 收到文件消息,NOS下载完成后本地文件检查错误,一般为下载的文件大小与文件信息不符 */
|
|
196
|
+
NIMResCode[NIMResCode["kNIMLocalResMsgNosDownloadCheckError"] = 10207] = "kNIMLocalResMsgNosDownloadCheckError";
|
|
197
|
+
/** 禁止访问 */
|
|
198
|
+
NIMResCode[NIMResCode["kNIMLocalResMsgAccessDenied"] = 10403] = "kNIMLocalResMsgAccessDenied";
|
|
199
|
+
/** 本地资源不存在 */
|
|
200
|
+
NIMResCode[NIMResCode["kNIMLocalResMsgFileNotExist"] = 10404] = "kNIMLocalResMsgFileNotExist";
|
|
201
|
+
/** 本地错误码,参数错误,(收到消息,资源下载地址无效,无法下载) */
|
|
202
|
+
NIMResCode[NIMResCode["kNIMLocalResParameterError"] = 10414] = "kNIMLocalResParameterError";
|
|
203
|
+
/** 本地错误码,操作太过频繁 */
|
|
204
|
+
NIMResCode[NIMResCode["kNIMLocalResFrequently"] = 10416] = "kNIMLocalResFrequently";
|
|
205
|
+
/** 本地错误码,对象已经存在/重复操作,(收到消息,本地资源已存在,不需要重复下载) */
|
|
206
|
+
NIMResCode[NIMResCode["kNIMLocalResExist"] = 10417] = "kNIMLocalResExist";
|
|
207
|
+
/** 发送消息,上传NOS失败 */
|
|
208
|
+
NIMResCode[NIMResCode["kNIMLocalResMsgSendNosError"] = 10502] = "kNIMLocalResMsgSendNosError";
|
|
209
|
+
/** 本地错误码,超过配置有效期或者所需参数不存在 */
|
|
210
|
+
NIMResCode[NIMResCode["kNIMLocalResExceedLimit"] = 10508] = "kNIMLocalResExceedLimit";
|
|
211
|
+
/** 导入消息历史时验证身份和加密密钥不通过 */
|
|
212
|
+
NIMResCode[NIMResCode["kNIMLocalResCheckMsgDBFailed"] = 10600] = "kNIMLocalResCheckMsgDBFailed";
|
|
213
|
+
/** 导入消息历史时写记录失败 */
|
|
214
|
+
NIMResCode[NIMResCode["kNIMLocalResImportMsgDBFailed"] = 10601] = "kNIMLocalResImportMsgDBFailed";
|
|
215
|
+
// 客户端自定义的RTS错误号
|
|
216
|
+
/** rts会话 未知错误 */
|
|
217
|
+
NIMResCode[NIMResCode["kNIMLocalResRtsError"] = 11100] = "kNIMLocalResRtsError";
|
|
218
|
+
/** rts会话 id不存在 */
|
|
219
|
+
NIMResCode[NIMResCode["kNIMLocalResRtsIdNotExist"] = 11101] = "kNIMLocalResRtsIdNotExist";
|
|
220
|
+
/** rts会话 音视频已存在 */
|
|
221
|
+
NIMResCode[NIMResCode["kNIMLocalResRtsVChatExist"] = 11417] = "kNIMLocalResRtsVChatExist";
|
|
222
|
+
/** rts会话 通道状态不正确 */
|
|
223
|
+
NIMResCode[NIMResCode["kNIMLocalResRtsStatusError"] = 11501] = "kNIMLocalResRtsStatusError";
|
|
224
|
+
/** rts会话 通道不存在 */
|
|
225
|
+
NIMResCode[NIMResCode["kNIMLocalResRtsChannelNotExist"] = 11510] = "kNIMLocalResRtsChannelNotExist";
|
|
226
|
+
/** 主链接错误 */
|
|
227
|
+
NIMResCode[NIMResCode["kNIMResRoomLinkError"] = 13001] = "kNIMResRoomLinkError";
|
|
228
|
+
/** 聊天室状态异常 */
|
|
229
|
+
NIMResCode[NIMResCode["kNIMResRoomError"] = 13002] = "kNIMResRoomError";
|
|
230
|
+
/** 黑名单用户禁止进入 */
|
|
231
|
+
NIMResCode[NIMResCode["kNIMResRoomBlackBeOut"] = 13003] = "kNIMResRoomBlackBeOut";
|
|
232
|
+
/** 被禁言 */
|
|
233
|
+
NIMResCode[NIMResCode["kNIMResRoomBeMuted"] = 13004] = "kNIMResRoomBeMuted";
|
|
234
|
+
/** 聊天室处于整体禁言状态,只有管理员能发言 */
|
|
235
|
+
NIMResCode[NIMResCode["kNIMResRoomAllMuted"] = 13006] = "kNIMResRoomAllMuted";
|
|
236
|
+
// 客户端自定义的api调用问题
|
|
237
|
+
/** 还未初始化或初始化未正常完成 */
|
|
238
|
+
NIMResCode[NIMResCode["kNIMLocalResAPIErrorInitUndone"] = 20000] = "kNIMLocalResAPIErrorInitUndone";
|
|
239
|
+
/** 还未登陆或登录未完成 */
|
|
240
|
+
NIMResCode[NIMResCode["kNIMLocalResAPIErrorLoginUndone"] = 20001] = "kNIMLocalResAPIErrorLoginUndone";
|
|
241
|
+
/** 已经登录 */
|
|
242
|
+
NIMResCode[NIMResCode["kNIMLocalResAPIErrorLogined"] = 20002] = "kNIMLocalResAPIErrorLogined";
|
|
243
|
+
/** SDK版本不对,可能会引发其他问题 */
|
|
244
|
+
NIMResCode[NIMResCode["kNIMLocalResAPIErrorVersionError"] = 20003] = "kNIMLocalResAPIErrorVersionError";
|
|
245
|
+
/** 聊天室模式混用错误,不支持同时以登陆状态和匿名状态登陆聊天室 */
|
|
246
|
+
NIMResCode[NIMResCode["kNIMLocalResAPIErrorChatroomMixError"] = 20004] = "kNIMLocalResAPIErrorChatroomMixError";
|
|
247
|
+
/** 连接地址用完了 */
|
|
248
|
+
NIMResCode[NIMResCode["kNIMLocalResAPIErrorRunOutOfLinkAddress"] = 20005] = "kNIMLocalResAPIErrorRunOutOfLinkAddress";
|
|
249
|
+
})(NIMResCode = exports.NIMResCode || (exports.NIMResCode = {}));
|
|
250
|
+
var NIMQChatPermissions;
|
|
251
|
+
(function (NIMQChatPermissions) {
|
|
252
|
+
/** 管理服务器,Server */
|
|
253
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionManageServer"] = 1] = "kPermissionManageServer";
|
|
254
|
+
/** 管理频道,Server/Channel */
|
|
255
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionManageChannel"] = 2] = "kPermissionManageChannel";
|
|
256
|
+
/** 管理角色,Server/Channel */
|
|
257
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionManageRole"] = 3] = "kPermissionManageRole";
|
|
258
|
+
/** 发送消息,Server/Channel */
|
|
259
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionSendMessage"] = 4] = "kPermissionSendMessage";
|
|
260
|
+
/** 修改自己信息,Server */
|
|
261
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionUpdateMyInfo"] = 5] = "kPermissionUpdateMyInfo";
|
|
262
|
+
/** 邀请他人,Server */
|
|
263
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionIviteMember"] = 6] = "kPermissionIviteMember";
|
|
264
|
+
/** 踢除他人,Server */
|
|
265
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionKickMember"] = 7] = "kPermissionKickMember";
|
|
266
|
+
/** 修改他人信息,Server */
|
|
267
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionUpdateMemberInfo"] = 8] = "kPermissionUpdateMemberInfo";
|
|
268
|
+
/** 撤回他人信息,Server/Channel */
|
|
269
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRevokeMemberMessage"] = 9] = "kPermissionRevokeMemberMessage";
|
|
270
|
+
/** 删除他人消息,Server/Channel */
|
|
271
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionDeleteMemberMessage"] = 10] = "kPermissionDeleteMemberMessage";
|
|
272
|
+
/** @ 他人,Server/Channel */
|
|
273
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionAtMember"] = 11] = "kPermissionAtMember";
|
|
274
|
+
/** @ 所有人,Server/Channel */
|
|
275
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionAtAll"] = 12] = "kPermissionAtAll";
|
|
276
|
+
/** 管理白/黑名单,Server/Channel */
|
|
277
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionManageBlackWhiteList"] = 13] = "kPermissionManageBlackWhiteList";
|
|
278
|
+
/** 封禁他人,Server */
|
|
279
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionBanServerMember"] = 14] = "kPermissionBanServerMember";
|
|
280
|
+
/** RTC频道: 连接的权限,Server/Channel */
|
|
281
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRTCConnect"] = 15] = "kPermissionRTCConnect";
|
|
282
|
+
/** RTC频道: 断开他人连接的权限,Server/Channel */
|
|
283
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRTCDisconnectOther"] = 16] = "kPermissionRTCDisconnectOther";
|
|
284
|
+
/** RTC频道: 开启自己麦克风的权限,Server/Channel */
|
|
285
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRTCOpenMic"] = 17] = "kPermissionRTCOpenMic";
|
|
286
|
+
/** RTC频道: 开启自己摄像头的权限,Server/Channel */
|
|
287
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRTCOpenCamera"] = 18] = "kPermissionRTCOpenCamera";
|
|
288
|
+
/** RTC频道: 禁用/解禁他人麦克风的权限,Server/Channel */
|
|
289
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRTCOpenMuteOthersMic"] = 19] = "kPermissionRTCOpenMuteOthersMic";
|
|
290
|
+
/** RTC频道: 禁用/解禁他人摄像头的权限,Server/Channel */
|
|
291
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRTCOpenMuteOthersCamera"] = 20] = "kPermissionRTCOpenMuteOthersCamera";
|
|
292
|
+
/** RTC频道: 禁用/解禁全员麦克风的权限,Server/Channel */
|
|
293
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRTCOpenMuteAllMic"] = 21] = "kPermissionRTCOpenMuteAllMic";
|
|
294
|
+
/** RTC频道: 禁用/解禁全员摄像头的权限,Server/Channel */
|
|
295
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRTCOpenMuteAllCamera"] = 22] = "kPermissionRTCOpenMuteAllCamera";
|
|
296
|
+
/** RTC频道: 打开自己共享屏幕的权限,Server/Channel */
|
|
297
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRTCOpenScreenShare"] = 23] = "kPermissionRTCOpenScreenShare";
|
|
298
|
+
/** RTC频道: 关闭他人共享屏幕的权限,Server/Channel */
|
|
299
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionRTCCloseOthersScreenShare"] = 24] = "kPermissionRTCCloseOthersScreenShare";
|
|
300
|
+
/** 服务器申请处理权限,Server */
|
|
301
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionServerHandleApply"] = 25] = "kPermissionServerHandleApply";
|
|
302
|
+
/** 申请邀请历史查看权限,有这个权限才可以查询server级别的申请/邀请记录,Server */
|
|
303
|
+
NIMQChatPermissions[NIMQChatPermissions["kPermissionGetServerInviteApplyRecords"] = 26] = "kPermissionGetServerInviteApplyRecords";
|
|
304
|
+
})(NIMQChatPermissions = exports.NIMQChatPermissions || (exports.NIMQChatPermissions = {}));
|
|
305
|
+
var NIMQChatRoleType;
|
|
306
|
+
(function (NIMQChatRoleType) {
|
|
307
|
+
/** 未知 */
|
|
308
|
+
NIMQChatRoleType[NIMQChatRoleType["kRoleTypeUnkonwn"] = 0] = "kRoleTypeUnkonwn";
|
|
309
|
+
/** 默认 Everyone 身份组 */
|
|
310
|
+
NIMQChatRoleType[NIMQChatRoleType["kRoleTypeEveryone"] = 1] = "kRoleTypeEveryone";
|
|
311
|
+
/** 自定义身份组 */
|
|
312
|
+
NIMQChatRoleType[NIMQChatRoleType["kRoleTypeCustom"] = 2] = "kRoleTypeCustom";
|
|
313
|
+
})(NIMQChatRoleType = exports.NIMQChatRoleType || (exports.NIMQChatRoleType = {}));
|
|
314
|
+
var NIMQChatPermissionsOption;
|
|
315
|
+
(function (NIMQChatPermissionsOption) {
|
|
316
|
+
/** 拒绝 */
|
|
317
|
+
NIMQChatPermissionsOption[NIMQChatPermissionsOption["kPermissionSwitchDeny"] = -1] = "kPermissionSwitchDeny";
|
|
318
|
+
/** 继承 */
|
|
319
|
+
NIMQChatPermissionsOption[NIMQChatPermissionsOption["kPermissionSwitchExtend"] = 0] = "kPermissionSwitchExtend";
|
|
320
|
+
/** 允许 */
|
|
321
|
+
NIMQChatPermissionsOption[NIMQChatPermissionsOption["kPermissionSwitchAllow"] = 1] = "kPermissionSwitchAllow";
|
|
322
|
+
})(NIMQChatPermissionsOption = exports.NIMQChatPermissionsOption || (exports.NIMQChatPermissionsOption = {}));
|
|
323
|
+
var NIMQChatLoginAuthType;
|
|
324
|
+
(function (NIMQChatLoginAuthType) {
|
|
325
|
+
/** 默认login token鉴权方式 */
|
|
326
|
+
NIMQChatLoginAuthType[NIMQChatLoginAuthType["kNIMQChatLoginAuthTypeDefault"] = 0] = "kNIMQChatLoginAuthTypeDefault";
|
|
327
|
+
/** app secret鉴权方式 */
|
|
328
|
+
NIMQChatLoginAuthType[NIMQChatLoginAuthType["kNIMQChatLoginAuthTypeAppSecret"] = 1] = "kNIMQChatLoginAuthTypeAppSecret";
|
|
329
|
+
/** 基于第三方回调的token鉴权方式, 圈组暂不支持 */
|
|
330
|
+
NIMQChatLoginAuthType[NIMQChatLoginAuthType["kNIMQChatLoginAuthTypeAppThirdParty"] = 2] = "kNIMQChatLoginAuthTypeAppThirdParty";
|
|
331
|
+
})(NIMQChatLoginAuthType = exports.NIMQChatLoginAuthType || (exports.NIMQChatLoginAuthType = {}));
|
|
332
|
+
var NIMQChatClientType;
|
|
333
|
+
(function (NIMQChatClientType) {
|
|
334
|
+
NIMQChatClientType[NIMQChatClientType["kQChatClientTypeUnknown"] = 0] = "kQChatClientTypeUnknown";
|
|
335
|
+
/** Android */
|
|
336
|
+
NIMQChatClientType[NIMQChatClientType["kQChatClientTypeAOS"] = 1] = "kQChatClientTypeAOS";
|
|
337
|
+
/** iOS */
|
|
338
|
+
NIMQChatClientType[NIMQChatClientType["kQChatClientTypeIOS"] = 2] = "kQChatClientTypeIOS";
|
|
339
|
+
/** Desktop PC (Windows/macOS/Linux) */
|
|
340
|
+
NIMQChatClientType[NIMQChatClientType["kQChatClientTypePC"] = 4] = "kQChatClientTypePC";
|
|
341
|
+
/** WP */
|
|
342
|
+
NIMQChatClientType[NIMQChatClientType["kQChatClientTypeWP"] = 8] = "kQChatClientTypeWP";
|
|
343
|
+
/** Web */
|
|
344
|
+
NIMQChatClientType[NIMQChatClientType["kQChatClientTypeWeb"] = 16] = "kQChatClientTypeWeb";
|
|
345
|
+
/** macOS */
|
|
346
|
+
NIMQChatClientType[NIMQChatClientType["kQChatClientTypeMacOS"] = 64] = "kQChatClientTypeMacOS";
|
|
347
|
+
})(NIMQChatClientType = exports.NIMQChatClientType || (exports.NIMQChatClientType = {}));
|
|
348
|
+
var NIMQChatLoginStep;
|
|
349
|
+
(function (NIMQChatLoginStep) {
|
|
350
|
+
/** 连接 Link 地址阶段 */
|
|
351
|
+
NIMQChatLoginStep[NIMQChatLoginStep["kLoginStepLink"] = 0] = "kLoginStepLink";
|
|
352
|
+
NIMQChatLoginStep[NIMQChatLoginStep["kLoginStepAuth"] = 1] = "kLoginStepAuth"; // 认证阶段
|
|
353
|
+
})(NIMQChatLoginStep = exports.NIMQChatLoginStep || (exports.NIMQChatLoginStep = {}));
|
|
354
|
+
var NIMQChatLoginStatus;
|
|
355
|
+
(function (NIMQChatLoginStatus) {
|
|
356
|
+
NIMQChatLoginStatus[NIMQChatLoginStatus["kLoginStatusUnlogin"] = 0] = "kLoginStatusUnlogin";
|
|
357
|
+
NIMQChatLoginStatus[NIMQChatLoginStatus["kLoginStatusLogging"] = 1] = "kLoginStatusLogging";
|
|
358
|
+
NIMQChatLoginStatus[NIMQChatLoginStatus["kLoginStatusLogin"] = 2] = "kLoginStatusLogin";
|
|
359
|
+
NIMQChatLoginStatus[NIMQChatLoginStatus["kLoginStatusKicked"] = 3] = "kLoginStatusKicked";
|
|
360
|
+
})(NIMQChatLoginStatus = exports.NIMQChatLoginStatus || (exports.NIMQChatLoginStatus = {}));
|
|
361
|
+
var NIMQChatExchangeKeyEncryptionAlgorithm;
|
|
362
|
+
(function (NIMQChatExchangeKeyEncryptionAlgorithm) {
|
|
363
|
+
/** RSA 加密 */
|
|
364
|
+
NIMQChatExchangeKeyEncryptionAlgorithm[NIMQChatExchangeKeyEncryptionAlgorithm["kNIMQChatEncryptionAlgorithmRSA"] = 1] = "kNIMQChatEncryptionAlgorithmRSA";
|
|
365
|
+
/** SM2 加密 */
|
|
366
|
+
NIMQChatExchangeKeyEncryptionAlgorithm[NIMQChatExchangeKeyEncryptionAlgorithm["kNIMQChatEncryptionAlgorithmSM2"] = 2] = "kNIMQChatEncryptionAlgorithmSM2";
|
|
367
|
+
})(NIMQChatExchangeKeyEncryptionAlgorithm = exports.NIMQChatExchangeKeyEncryptionAlgorithm || (exports.NIMQChatExchangeKeyEncryptionAlgorithm = {}));
|
|
368
|
+
var NIMQChatCommEncryptionAlgorithm;
|
|
369
|
+
(function (NIMQChatCommEncryptionAlgorithm) {
|
|
370
|
+
NIMQChatCommEncryptionAlgorithm[NIMQChatCommEncryptionAlgorithm["kNIMQChatCommEncryptionAlgorithmBase"] = 1] = "kNIMQChatCommEncryptionAlgorithmBase";
|
|
371
|
+
/** RC4 加密 */
|
|
372
|
+
NIMQChatCommEncryptionAlgorithm[NIMQChatCommEncryptionAlgorithm["kNIMQChatCommEncryptionAlgorithmRC4"] = 1] = "kNIMQChatCommEncryptionAlgorithmRC4";
|
|
373
|
+
/** AES128 加密 */
|
|
374
|
+
NIMQChatCommEncryptionAlgorithm[NIMQChatCommEncryptionAlgorithm["kNIMQChatCommEncryptionAlgorithmAES128"] = 2] = "kNIMQChatCommEncryptionAlgorithmAES128";
|
|
375
|
+
NIMQChatCommEncryptionAlgorithm[NIMQChatCommEncryptionAlgorithm["kNIMQChatCommEncryptionAlgorithmSM4"] = 4] = "kNIMQChatCommEncryptionAlgorithmSM4"; // SM4 加密
|
|
376
|
+
})(NIMQChatCommEncryptionAlgorithm = exports.NIMQChatCommEncryptionAlgorithm || (exports.NIMQChatCommEncryptionAlgorithm = {}));
|
|
377
|
+
var NIMQChatHandShakeType;
|
|
378
|
+
(function (NIMQChatHandShakeType) {
|
|
379
|
+
/** 支持配置多种对称与非对称加密算法 */
|
|
380
|
+
NIMQChatHandShakeType[NIMQChatHandShakeType["kNIMQChatHandShakeTypeMulti"] = 0] = "kNIMQChatHandShakeTypeMulti";
|
|
381
|
+
NIMQChatHandShakeType[NIMQChatHandShakeType["kNIMQChatHandShakeTypeRASRC4"] = 1] = "kNIMQChatHandShakeTypeRASRC4"; // 支持RAS + RC4
|
|
382
|
+
})(NIMQChatHandShakeType = exports.NIMQChatHandShakeType || (exports.NIMQChatHandShakeType = {}));
|
|
383
|
+
var NIMQChatFCSAuthenticationType;
|
|
384
|
+
(function (NIMQChatFCSAuthenticationType) {
|
|
385
|
+
NIMQChatFCSAuthenticationType[NIMQChatFCSAuthenticationType["kNIMQChatFCSAuthenticationTypeRefer"] = 1] = "kNIMQChatFCSAuthenticationTypeRefer";
|
|
386
|
+
NIMQChatFCSAuthenticationType[NIMQChatFCSAuthenticationType["kNIMQChatFCSAuthenticationTypeToken"] = 2] = "kNIMQChatFCSAuthenticationTypeToken";
|
|
387
|
+
NIMQChatFCSAuthenticationType[NIMQChatFCSAuthenticationType["kNIMQChatFCSAuthenticationTypeURLToken"] = 3] = "kNIMQChatFCSAuthenticationTypeURLToken";
|
|
388
|
+
NIMQChatFCSAuthenticationType[NIMQChatFCSAuthenticationType["kNIMQChatFCSAuthenticationTypeCustom"] = 4] = "kNIMQChatFCSAuthenticationTypeCustom";
|
|
389
|
+
})(NIMQChatFCSAuthenticationType = exports.NIMQChatFCSAuthenticationType || (exports.NIMQChatFCSAuthenticationType = {}));
|
|
390
|
+
var NIMQChatMessageStatus;
|
|
391
|
+
(function (NIMQChatMessageStatus) {
|
|
392
|
+
/** 普通消息状态 */
|
|
393
|
+
NIMQChatMessageStatus[NIMQChatMessageStatus["kMsgStatusNormal"] = 0] = "kMsgStatusNormal";
|
|
394
|
+
/** 被撤回的消息 */
|
|
395
|
+
NIMQChatMessageStatus[NIMQChatMessageStatus["kMsgStatusRevoke"] = 1] = "kMsgStatusRevoke";
|
|
396
|
+
/** 被删除的消息 */
|
|
397
|
+
NIMQChatMessageStatus[NIMQChatMessageStatus["kMsgStatusDelete"] = 2] = "kMsgStatusDelete";
|
|
398
|
+
NIMQChatMessageStatus[NIMQChatMessageStatus["kMsgStatusUser"] = 10000] = "kMsgStatusUser"; // 大于10000为用户自定义状态
|
|
399
|
+
})(NIMQChatMessageStatus = exports.NIMQChatMessageStatus || (exports.NIMQChatMessageStatus = {}));
|
|
400
|
+
var NIMQChatMessageNotifyReason;
|
|
401
|
+
(function (NIMQChatMessageNotifyReason) {
|
|
402
|
+
/** 未知原因 */
|
|
403
|
+
NIMQChatMessageNotifyReason[NIMQChatMessageNotifyReason["kMessageNotifyReasonUnkonw"] = 0] = "kMessageNotifyReasonUnkonw";
|
|
404
|
+
/** 本消息发给了channel里的所有人 */
|
|
405
|
+
NIMQChatMessageNotifyReason[NIMQChatMessageNotifyReason["kMessageNotifyReasonNotifyAll"] = 1] = "kMessageNotifyReasonNotifyAll";
|
|
406
|
+
/** 本消息发给了channel里的订阅者 */
|
|
407
|
+
NIMQChatMessageNotifyReason[NIMQChatMessageNotifyReason["kMessageNotifyReasonNotifySubscribe"] = 2] = "kMessageNotifyReasonNotifySubscribe";
|
|
408
|
+
})(NIMQChatMessageNotifyReason = exports.NIMQChatMessageNotifyReason || (exports.NIMQChatMessageNotifyReason = {}));
|
|
409
|
+
var NIMQChatMsgType;
|
|
410
|
+
(function (NIMQChatMsgType) {
|
|
411
|
+
/** 文本类型消息 */
|
|
412
|
+
NIMQChatMsgType[NIMQChatMsgType["kNIMQChatMsgTypeText"] = 0] = "kNIMQChatMsgTypeText";
|
|
413
|
+
/** 图片类型消息 */
|
|
414
|
+
NIMQChatMsgType[NIMQChatMsgType["kNIMQChatMsgTypeImage"] = 1] = "kNIMQChatMsgTypeImage";
|
|
415
|
+
/** 声音类型消息 */
|
|
416
|
+
NIMQChatMsgType[NIMQChatMsgType["kNIMQChatMsgTypeAudio"] = 2] = "kNIMQChatMsgTypeAudio";
|
|
417
|
+
/** 视频类型消息 */
|
|
418
|
+
NIMQChatMsgType[NIMQChatMsgType["kNIMQChatMsgTypeVideo"] = 3] = "kNIMQChatMsgTypeVideo";
|
|
419
|
+
/** 位置类型消息 */
|
|
420
|
+
NIMQChatMsgType[NIMQChatMsgType["kNIMQChatMsgTypeLocation"] = 4] = "kNIMQChatMsgTypeLocation";
|
|
421
|
+
/** 通知类型消息 */
|
|
422
|
+
NIMQChatMsgType[NIMQChatMsgType["kNIMQChatMsgTypeNotification"] = 5] = "kNIMQChatMsgTypeNotification";
|
|
423
|
+
/** 文件类型消息 */
|
|
424
|
+
NIMQChatMsgType[NIMQChatMsgType["kNIMQChatMsgTypeFile"] = 6] = "kNIMQChatMsgTypeFile";
|
|
425
|
+
/** 提醒类型消息 */
|
|
426
|
+
NIMQChatMsgType[NIMQChatMsgType["kNIMQChatMsgTypeTips"] = 10] = "kNIMQChatMsgTypeTips";
|
|
427
|
+
/** 自定义消息 */
|
|
428
|
+
NIMQChatMsgType[NIMQChatMsgType["kNIMQChatMsgTypeCustom"] = 100] = "kNIMQChatMsgTypeCustom";
|
|
429
|
+
/** 未知类型消息,作为默认值 */
|
|
430
|
+
NIMQChatMsgType[NIMQChatMsgType["kNIMQChatMsgTypeUnknown"] = 1000] = "kNIMQChatMsgTypeUnknown";
|
|
431
|
+
})(NIMQChatMsgType = exports.NIMQChatMsgType || (exports.NIMQChatMsgType = {}));
|
|
432
|
+
var NIMQChatQuickCommentOperation;
|
|
433
|
+
(function (NIMQChatQuickCommentOperation) {
|
|
434
|
+
/** 添加 */
|
|
435
|
+
NIMQChatQuickCommentOperation[NIMQChatQuickCommentOperation["kNIMQChatQuickCommentAdd"] = 1] = "kNIMQChatQuickCommentAdd";
|
|
436
|
+
/** 删除 */
|
|
437
|
+
NIMQChatQuickCommentOperation[NIMQChatQuickCommentOperation["kNIMQChatQuickCommentRemove"] = 2] = "kNIMQChatQuickCommentRemove";
|
|
438
|
+
})(NIMQChatQuickCommentOperation = exports.NIMQChatQuickCommentOperation || (exports.NIMQChatQuickCommentOperation = {}));
|
|
439
|
+
var NIMQChatGetReferMessageType;
|
|
440
|
+
(function (NIMQChatGetReferMessageType) {
|
|
441
|
+
/** 获取被回复的消息 */
|
|
442
|
+
NIMQChatGetReferMessageType[NIMQChatGetReferMessageType["kNIMQChatGetReferMessageTypeReply"] = 1] = "kNIMQChatGetReferMessageTypeReply";
|
|
443
|
+
/** 获取 thread 根消息 */
|
|
444
|
+
NIMQChatGetReferMessageType[NIMQChatGetReferMessageType["kNIMQChatGetReferMessageTypeThreadRoot"] = 2] = "kNIMQChatGetReferMessageTypeThreadRoot";
|
|
445
|
+
/** 获取以上两个条件的消息 */
|
|
446
|
+
NIMQChatGetReferMessageType[NIMQChatGetReferMessageType["kNIMQChatGetReferMessageTypeAll"] = 3] = "kNIMQChatGetReferMessageTypeAll";
|
|
447
|
+
})(NIMQChatGetReferMessageType = exports.NIMQChatGetReferMessageType || (exports.NIMQChatGetReferMessageType = {}));
|
|
448
|
+
var NIMQChatServerInviteMode;
|
|
449
|
+
(function (NIMQChatServerInviteMode) {
|
|
450
|
+
/** 需要验证 */
|
|
451
|
+
NIMQChatServerInviteMode[NIMQChatServerInviteMode["kNIMQChatServerInviteModeNeedConfirm"] = 0] = "kNIMQChatServerInviteModeNeedConfirm";
|
|
452
|
+
NIMQChatServerInviteMode[NIMQChatServerInviteMode["kNIMQChatServerInviteModeNormal"] = 1] = "kNIMQChatServerInviteModeNormal"; // 不需要验证
|
|
453
|
+
})(NIMQChatServerInviteMode = exports.NIMQChatServerInviteMode || (exports.NIMQChatServerInviteMode = {}));
|
|
454
|
+
var NIMQChatServerApplyMode;
|
|
455
|
+
(function (NIMQChatServerApplyMode) {
|
|
456
|
+
/** 不需要验证 */
|
|
457
|
+
NIMQChatServerApplyMode[NIMQChatServerApplyMode["kNIMQChatServerApplyModeNormal"] = 0] = "kNIMQChatServerApplyModeNormal";
|
|
458
|
+
/** 需要验证 */
|
|
459
|
+
NIMQChatServerApplyMode[NIMQChatServerApplyMode["kNIMQChatServerApplyModeNeedConfirm"] = 1] = "kNIMQChatServerApplyModeNeedConfirm";
|
|
460
|
+
})(NIMQChatServerApplyMode = exports.NIMQChatServerApplyMode || (exports.NIMQChatServerApplyMode = {}));
|
|
461
|
+
var NIMQChatServerInviteFailReason;
|
|
462
|
+
(function (NIMQChatServerInviteFailReason) {
|
|
463
|
+
/** 服务器人数超过限制 */
|
|
464
|
+
NIMQChatServerInviteFailReason[NIMQChatServerInviteFailReason["kNIMQChatServerInviteFailReasonExceedLimit"] = 1] = "kNIMQChatServerInviteFailReasonExceedLimit";
|
|
465
|
+
/** 被封禁 */
|
|
466
|
+
NIMQChatServerInviteFailReason[NIMQChatServerInviteFailReason["kNIMQChatServerInviteFailReasonBanned"] = 2] = "kNIMQChatServerInviteFailReasonBanned";
|
|
467
|
+
})(NIMQChatServerInviteFailReason = exports.NIMQChatServerInviteFailReason || (exports.NIMQChatServerInviteFailReason = {}));
|
|
468
|
+
var NIMQChatServerSearchType;
|
|
469
|
+
(function (NIMQChatServerSearchType) {
|
|
470
|
+
/** 广场搜索 */
|
|
471
|
+
NIMQChatServerSearchType[NIMQChatServerSearchType["kNIMQChatServerSearchTypeSquare"] = 1] = "kNIMQChatServerSearchTypeSquare";
|
|
472
|
+
/** 个人服务器搜索 */
|
|
473
|
+
NIMQChatServerSearchType[NIMQChatServerSearchType["kNIMQChatServerSearchTypePersonal"] = 2] = "kNIMQChatServerSearchTypePersonal";
|
|
474
|
+
})(NIMQChatServerSearchType = exports.NIMQChatServerSearchType || (exports.NIMQChatServerSearchType = {}));
|
|
475
|
+
var NIMQChatInviteApplyRecordType;
|
|
476
|
+
(function (NIMQChatInviteApplyRecordType) {
|
|
477
|
+
/** 申请 */
|
|
478
|
+
NIMQChatInviteApplyRecordType[NIMQChatInviteApplyRecordType["kNIMQChatInviteApplyRecordTypeApply"] = 1] = "kNIMQChatInviteApplyRecordTypeApply";
|
|
479
|
+
/** 邀请 */
|
|
480
|
+
NIMQChatInviteApplyRecordType[NIMQChatInviteApplyRecordType["kNIMQChatInviteApplyRecordTypeInvite"] = 2] = "kNIMQChatInviteApplyRecordTypeInvite";
|
|
481
|
+
/** 被邀请 */
|
|
482
|
+
NIMQChatInviteApplyRecordType[NIMQChatInviteApplyRecordType["kNIMQChatInviteApplyRecordTypeBeInvited"] = 3] = "kNIMQChatInviteApplyRecordTypeBeInvited";
|
|
483
|
+
/** 生成邀请码 */
|
|
484
|
+
NIMQChatInviteApplyRecordType[NIMQChatInviteApplyRecordType["kNIMQChatInviteApplyRecordTypeGenerateInviteCode"] = 4] = "kNIMQChatInviteApplyRecordTypeGenerateInviteCode";
|
|
485
|
+
/** 通过邀请码加入 */
|
|
486
|
+
NIMQChatInviteApplyRecordType[NIMQChatInviteApplyRecordType["kNIMQChatInviteApplyRecordTypeJoinByInviteCode"] = 5] = "kNIMQChatInviteApplyRecordTypeJoinByInviteCode";
|
|
487
|
+
})(NIMQChatInviteApplyRecordType = exports.NIMQChatInviteApplyRecordType || (exports.NIMQChatInviteApplyRecordType = {}));
|
|
488
|
+
var NIMQChatInviteApplyRecordStatus;
|
|
489
|
+
(function (NIMQChatInviteApplyRecordStatus) {
|
|
490
|
+
/** 初始状态 */
|
|
491
|
+
NIMQChatInviteApplyRecordStatus[NIMQChatInviteApplyRecordStatus["kNIMQChatInviteApplyRecordStatusInitial"] = 0] = "kNIMQChatInviteApplyRecordStatusInitial";
|
|
492
|
+
/** 同意 */
|
|
493
|
+
NIMQChatInviteApplyRecordStatus[NIMQChatInviteApplyRecordStatus["kNIMQChatInviteApplyRecordStatusApprove"] = 1] = "kNIMQChatInviteApplyRecordStatusApprove";
|
|
494
|
+
/** 拒绝 */
|
|
495
|
+
NIMQChatInviteApplyRecordStatus[NIMQChatInviteApplyRecordStatus["kNIMQChatInviteApplyRecordStatusReject"] = 2] = "kNIMQChatInviteApplyRecordStatusReject";
|
|
496
|
+
/** 通过其他请求同意 */
|
|
497
|
+
NIMQChatInviteApplyRecordStatus[NIMQChatInviteApplyRecordStatus["kNIMQChatInviteApplyRecordStatusApproveByOtherRequest"] = 3] = "kNIMQChatInviteApplyRecordStatusApproveByOtherRequest";
|
|
498
|
+
/** 通过其他请求拒绝 */
|
|
499
|
+
NIMQChatInviteApplyRecordStatus[NIMQChatInviteApplyRecordStatus["kNIMQChatInviteApplyRecordStatusRejectByOtherRequest"] = 4] = "kNIMQChatInviteApplyRecordStatusRejectByOtherRequest";
|
|
500
|
+
/** 邀请/申请时自动加入 */
|
|
501
|
+
NIMQChatInviteApplyRecordStatus[NIMQChatInviteApplyRecordStatus["kNIMQChatInviteApplyRecordStatusAutoJoin"] = 5] = "kNIMQChatInviteApplyRecordStatusAutoJoin";
|
|
502
|
+
/** 过期 */
|
|
503
|
+
NIMQChatInviteApplyRecordStatus[NIMQChatInviteApplyRecordStatus["kNIMQChatInviteApplyRecordStatusExpired"] = 6] = "kNIMQChatInviteApplyRecordStatusExpired";
|
|
504
|
+
})(NIMQChatInviteApplyRecordStatus = exports.NIMQChatInviteApplyRecordStatus || (exports.NIMQChatInviteApplyRecordStatus = {}));
|
|
505
|
+
var NIMQChatSystemNotificationType;
|
|
506
|
+
(function (NIMQChatSystemNotificationType) {
|
|
507
|
+
/** 未知类型系统通知 */
|
|
508
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeUnkonwn"] = 0] = "kNIMQChatSystemNotificationTypeUnkonwn";
|
|
509
|
+
/** 服务器成员邀请 msg_data: NULL */
|
|
510
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberInvite"] = 1] = "kNIMQChatSystemNotificationTypeMemberInvite";
|
|
511
|
+
/** 服务器成员邀请被拒绝 msg_data: NULL */
|
|
512
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberInviteReject"] = 2] = "kNIMQChatSystemNotificationTypeMemberInviteReject";
|
|
513
|
+
/** 服务器成员申请 msg_data: NULL */
|
|
514
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberApply"] = 3] = "kNIMQChatSystemNotificationTypeMemberApply";
|
|
515
|
+
/** 服务器成员申请被拒绝 msg_data: NULL */
|
|
516
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberApplyReject"] = 4] = "kNIMQChatSystemNotificationTypeMemberApplyReject";
|
|
517
|
+
/** 服务器创建 msg_data: NIMQChatSystemNotificationDataServerCreate */
|
|
518
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeServerCreate"] = 5] = "kNIMQChatSystemNotificationTypeServerCreate";
|
|
519
|
+
/** 服务器解散 msg_data: NULL */
|
|
520
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeServerRemove"] = 6] = "kNIMQChatSystemNotificationTypeServerRemove";
|
|
521
|
+
/** 服务器更新 msg_data: NIMQChatSystemNotificationDataServerUpdate */
|
|
522
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeServerUpdate"] = 7] = "kNIMQChatSystemNotificationTypeServerUpdate";
|
|
523
|
+
/** 服务器成员邀请完成 msg_data: NIMQChatSystemNotificationDataMemberInviteDone */
|
|
524
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberInviteDone"] = 8] = "kNIMQChatSystemNotificationTypeMemberInviteDone";
|
|
525
|
+
/** 服务器成员邀请被接受 msg_data: NIMQChatSystemNotificationDataMemberInviteAccept */
|
|
526
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberInviteAccept"] = 9] = "kNIMQChatSystemNotificationTypeMemberInviteAccept";
|
|
527
|
+
/** 服务器成员申请完成 msg_data: NIMQChatSystemNotificationDataMemberApplyDone */
|
|
528
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberApplyDone"] = 10] = "kNIMQChatSystemNotificationTypeMemberApplyDone";
|
|
529
|
+
/** 服务器成员申请被接受 msg_data: NIMQChatSystemNotificationDataMemberApplyAccept */
|
|
530
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberApplyAccept"] = 11] = "kNIMQChatSystemNotificationTypeMemberApplyAccept";
|
|
531
|
+
/** 服务器成员被踢出 msg_data: NIMQChatSystemNotificationDataMemberKick */
|
|
532
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberKick"] = 12] = "kNIMQChatSystemNotificationTypeMemberKick";
|
|
533
|
+
/** 服务器成员离开 msg_data: NIMQChatSystemNotificationDataMemberLeave */
|
|
534
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberLeave"] = 13] = "kNIMQChatSystemNotificationTypeMemberLeave";
|
|
535
|
+
/** 服务器成员更新 msg_data: NIMQChatSystemNotificationDataMemberUpdate */
|
|
536
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberUpdate"] = 14] = "kNIMQChatSystemNotificationTypeMemberUpdate";
|
|
537
|
+
/** 频道创建 msg_data: NIMQChatSystemNotificationDataChannelCreate */
|
|
538
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeChannelCreate"] = 15] = "kNIMQChatSystemNotificationTypeChannelCreate";
|
|
539
|
+
/** 频道解散 msg_data: NULL */
|
|
540
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeChannelDelete"] = 16] = "kNIMQChatSystemNotificationTypeChannelDelete";
|
|
541
|
+
/** 频道更新 msg_data: NIMQChatSystemNotificationDataChannelUpdate */
|
|
542
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeChannelUpdate"] = 17] = "kNIMQChatSystemNotificationTypeChannelUpdate";
|
|
543
|
+
/** 频道白/黑名单身份组更新 msg_data: NIMQChatSystemNotificationDataWhiteBlackRoleUpdate */
|
|
544
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeWhiteBlackRoleUpdate"] = 18] = "kNIMQChatSystemNotificationTypeWhiteBlackRoleUpdate";
|
|
545
|
+
/** 频道白/黑名单成员更新 msg_data: NIMQChatSystemNotificationDataWhiteBlackMembersUpdate */
|
|
546
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeWhiteBlackMembersUpdate"] = 19] = "kNIMQChatSystemNotificationTypeWhiteBlackMembersUpdate";
|
|
547
|
+
/** 添加或删除快捷评论通知 msg_data: NIMQChatSystemNotificationQuickCommentChanged */
|
|
548
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeQuickCommentChanged"] = 20] = "kNIMQChatSystemNotificationTypeQuickCommentChanged";
|
|
549
|
+
/** 创建频道分组 msg_data: NIMQChatSystemNotificationDataChannelCategoryCreate */
|
|
550
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeChannelCategoryCreate"] = 21] = "kNIMQChatSystemNotificationTypeChannelCategoryCreate";
|
|
551
|
+
/** 删除频道分组 msg_data: NIMQChatSystemNotificationDataChannelCategoryRemove */
|
|
552
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeChannelCategoryRemove"] = 22] = "kNIMQChatSystemNotificationTypeChannelCategoryRemove";
|
|
553
|
+
/** 更新频道分组 msg_data: NIMQChatSystemNotificationDataChannelCategoryUpdate */
|
|
554
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeChannelCategoryUpdate"] = 23] = "kNIMQChatSystemNotificationTypeChannelCategoryUpdate";
|
|
555
|
+
/** 频道分组白/黑名单身份组更新 msg_data: NIMQChatSystemNotificationDataChannelCategoryWhiteBlackRoleUpdate */
|
|
556
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeChannelCategoryWhiteBlackRoleUpdate"] = 24] = "kNIMQChatSystemNotificationTypeChannelCategoryWhiteBlackRoleUpdate";
|
|
557
|
+
/** 频道分组白/黑名单成员更新 msg_data: NIMQChatSystemNotificationDataChannelCategoryWhiteBlackMembersUpdate */
|
|
558
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeChannelCategoryWhiteBlackMembersUpdate"] = 25] = "kNIMQChatSystemNotificationTypeChannelCategoryWhiteBlackMembersUpdate";
|
|
559
|
+
/** 服务器身份组加入成员 msg_data: NIMQChatSystemNotificationDataServerRoleAddMember */
|
|
560
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeServerRoleAddMember"] = 26] = "kNIMQChatSystemNotificationTypeServerRoleAddMember";
|
|
561
|
+
/** 服务器身份组移出成员 msg_data: NIMQChatSystemNotificationDataServerRoleRemoveMember */
|
|
562
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeServerRoleRemoveMember"] = 27] = "kNIMQChatSystemNotificationTypeServerRoleRemoveMember";
|
|
563
|
+
/** 服务器身份组权限变更 msg_data: NIMQChatSystemNotificationDataServerRolePermissionChange */
|
|
564
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeServerRolePermissionChange"] = 28] = "kNIMQChatSystemNotificationTypeServerRolePermissionChange";
|
|
565
|
+
/** 频道定制身份组权限变更 msg_data: NIMQChatSystemNotificationDataChannelRolePermissionChange */
|
|
566
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeChannelRolePermissionChange"] = 29] = "kNIMQChatSystemNotificationTypeChannelRolePermissionChange";
|
|
567
|
+
/** 频道个人定制权限变更 msg_data: NIMQChatSystemNotificationDataMemberRolePermissionChange */
|
|
568
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeMemberRolePermissionChange"] = 30] = "kNIMQChatSystemNotificationTypeMemberRolePermissionChange";
|
|
569
|
+
/** 频道对当前用户可见性变更 msg_data: NIMQChatSystemNotificationDataChannelVisibilityChange */
|
|
570
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeChannelVisibilityChange"] = 31] = "kNIMQChatSystemNotificationTypeChannelVisibilityChange";
|
|
571
|
+
/** 当前用户进入/离开服务器 msg_data: NIMQChatSystemNotificationDataServerEnterLeave */
|
|
572
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeServerEnterLeave"] = 32] = "kNIMQChatSystemNotificationTypeServerEnterLeave";
|
|
573
|
+
/** 用户通过邀请码加入服务器 msg_data: NIMQChatSystemNotificationDataServerJoinByInviteCode */
|
|
574
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeServerJoinByInviteCode"] = 33] = "kNIMQChatSystemNotificationTypeServerJoinByInviteCode";
|
|
575
|
+
/** 自定义系统通知 msg_data: NULL */
|
|
576
|
+
NIMQChatSystemNotificationType[NIMQChatSystemNotificationType["kNIMQChatSystemNotificationTypeCustom"] = 100] = "kNIMQChatSystemNotificationTypeCustom";
|
|
577
|
+
})(NIMQChatSystemNotificationType = exports.NIMQChatSystemNotificationType || (exports.NIMQChatSystemNotificationType = {}));
|
|
578
|
+
var NIMQChatSystemNotificationStatus;
|
|
579
|
+
(function (NIMQChatSystemNotificationStatus) {
|
|
580
|
+
/** 普通状态 */
|
|
581
|
+
NIMQChatSystemNotificationStatus[NIMQChatSystemNotificationStatus["kNIMQChatSystemNotificationNormal"] = 0] = "kNIMQChatSystemNotificationNormal";
|
|
582
|
+
NIMQChatSystemNotificationStatus[NIMQChatSystemNotificationStatus["kNIMQChatSystemNotificationUser"] = 10000] = "kNIMQChatSystemNotificationUser"; // 大于10000为用户自定义状态
|
|
583
|
+
})(NIMQChatSystemNotificationStatus = exports.NIMQChatSystemNotificationStatus || (exports.NIMQChatSystemNotificationStatus = {}));
|
|
584
|
+
//# sourceMappingURL=public_def.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"public_def.js","sourceRoot":"","sources":["../../ts/qchat_def/public_def.ts"],"names":[],"mappings":"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"}
|