woodenfish-bot 4.7.2 → 4.7.4

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/es/index.js CHANGED
@@ -319,7 +319,7 @@ var Guild = /*#__PURE__*/function () {
319
319
  }]);
320
320
  }();
321
321
 
322
- var version = "4.7.2";
322
+ var version = "4.7.4";
323
323
 
324
324
  function getDefaultExportFromCjs (x) {
325
325
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
@@ -1270,11 +1270,7 @@ var Message = /*#__PURE__*/function () {
1270
1270
  // 群组撤回消息
1271
1271
  }, {
1272
1272
  key: "deleteGroupMessage",
1273
- value: function deleteGroupMessage(groupOpenid, messageID, hideTip) {
1274
- var params = Object.create(null);
1275
- if (typeof hideTip === 'boolean') {
1276
- params.hidetip = hideTip;
1277
- }
1273
+ value: function deleteGroupMessage(groupOpenid, messageID) {
1278
1274
  var options = {
1279
1275
  method: 'DELETE',
1280
1276
  url: getURL('groupMessageURI'),
@@ -1282,7 +1278,6 @@ var Message = /*#__PURE__*/function () {
1282
1278
  groupOpenid: groupOpenid,
1283
1279
  messageID: messageID
1284
1280
  },
1285
- params: params,
1286
1281
  apiVersion: 'v2'
1287
1282
  };
1288
1283
  return this.request(options);
@@ -1292,7 +1287,6 @@ var Message = /*#__PURE__*/function () {
1292
1287
  }, {
1293
1288
  key: "postGroupMessage",
1294
1289
  value: function postGroupMessage(groupOpenid, message) {
1295
- message.timestamp = Date.now();
1296
1290
  var options = {
1297
1291
  method: 'POST',
1298
1292
  url: getURL('groupMessagesURI'),
@@ -2493,6 +2487,7 @@ var AvailableIntentsEventsEnum = /*#__PURE__*/function (AvailableIntentsEventsEn
2493
2487
  AvailableIntentsEventsEnum["PUBLIC_GUILD_MESSAGES"] = "PUBLIC_GUILD_MESSAGES";
2494
2488
  AvailableIntentsEventsEnum["MESSAGE_AUDIT"] = "MESSAGE_AUDIT";
2495
2489
  AvailableIntentsEventsEnum["INTERACTION"] = "INTERACTION";
2490
+ AvailableIntentsEventsEnum["GROUP_MEMBER"] = "GROUP_MEMBER";
2496
2491
  AvailableIntentsEventsEnum["GROUP_AND_C2C_EVENT"] = "GROUP_AND_C2C_EVENT";
2497
2492
  return AvailableIntentsEventsEnum;
2498
2493
  }({});
@@ -2628,11 +2623,13 @@ var WsEventType = {
2628
2623
  // 群管理员主动在机器人资料页操作开启通知
2629
2624
  GROUP_MSG_REJECT: AvailableIntentsEventsEnum.GROUP_AND_C2C_EVENT,
2630
2625
  // 群管理员主动在机器人资料页操作关闭通知
2631
- GROUP_MEMBER_ADD: AvailableIntentsEventsEnum.GROUP_AND_C2C_EVENT,
2626
+ GROUP_JOIN_REQUEST: AvailableIntentsEventsEnum.GROUP_AND_C2C_EVENT,
2627
+ // 用户申请加群
2628
+
2629
+ // ======= GROUP_MEMBER(兼容旧版群成员事件位) ======
2630
+ GROUP_MEMBER_ADD: AvailableIntentsEventsEnum.GROUP_MEMBER,
2632
2631
  // 群成员加入
2633
- GROUP_MEMBER_REMOVE: AvailableIntentsEventsEnum.GROUP_AND_C2C_EVENT,
2634
- // 群成员退出或被移出
2635
- GROUP_JOIN_REQUEST: AvailableIntentsEventsEnum.GROUP_AND_C2C_EVENT // 用户申请加群
2632
+ GROUP_MEMBER_REMOVE: AvailableIntentsEventsEnum.GROUP_MEMBER // 群成员退出或被移出
2636
2633
  };
2637
2634
  var WSCodes = {
2638
2635
  1000: 'WS_CLOSE_REQUESTED',
@@ -2721,6 +2718,7 @@ var IntentEvents = {
2721
2718
  DIRECT_MESSAGE: 1 << 12,
2722
2719
  OPEN_FORUM_EVENT: 1 << 18,
2723
2720
  AUDIO_OR_LIVE_CHANNEL_MEMBER: 1 << 19,
2721
+ GROUP_MEMBER: 1 << 24,
2724
2722
  GROUP_AND_C2C_EVENT: 1 << 25,
2725
2723
  INTERACTION: 1 << 26,
2726
2724
  MESSAGE_AUDIT: 1 << 27,
@@ -2748,6 +2746,7 @@ var Intents = {
2748
2746
  DIRECT_MESSAGE_TYPING: 14,
2749
2747
  OPEN_FORUM_EVENT: 18,
2750
2748
  AUDIO_OR_LIVE_CHANNEL_MEMBER: 19,
2749
+ GROUP_MEMBER: 24,
2751
2750
  GROUP_AND_C2C_EVENT: 25,
2752
2751
  INTERACTION: 26,
2753
2752
  MESSAGE_AUDIT: 27,
package/lib/index.js CHANGED
@@ -321,7 +321,7 @@ var Guild = /*#__PURE__*/function () {
321
321
  }]);
322
322
  }();
323
323
 
324
- var version = "4.7.2";
324
+ var version = "4.7.4";
325
325
 
326
326
  function getDefaultExportFromCjs (x) {
327
327
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
@@ -1272,11 +1272,7 @@ var Message = /*#__PURE__*/function () {
1272
1272
  // 群组撤回消息
1273
1273
  }, {
1274
1274
  key: "deleteGroupMessage",
1275
- value: function deleteGroupMessage(groupOpenid, messageID, hideTip) {
1276
- var params = Object.create(null);
1277
- if (typeof hideTip === 'boolean') {
1278
- params.hidetip = hideTip;
1279
- }
1275
+ value: function deleteGroupMessage(groupOpenid, messageID) {
1280
1276
  var options = {
1281
1277
  method: 'DELETE',
1282
1278
  url: getURL('groupMessageURI'),
@@ -1284,7 +1280,6 @@ var Message = /*#__PURE__*/function () {
1284
1280
  groupOpenid: groupOpenid,
1285
1281
  messageID: messageID
1286
1282
  },
1287
- params: params,
1288
1283
  apiVersion: 'v2'
1289
1284
  };
1290
1285
  return this.request(options);
@@ -1294,7 +1289,6 @@ var Message = /*#__PURE__*/function () {
1294
1289
  }, {
1295
1290
  key: "postGroupMessage",
1296
1291
  value: function postGroupMessage(groupOpenid, message) {
1297
- message.timestamp = Date.now();
1298
1292
  var options = {
1299
1293
  method: 'POST',
1300
1294
  url: getURL('groupMessagesURI'),
@@ -2495,6 +2489,7 @@ var AvailableIntentsEventsEnum = /*#__PURE__*/function (AvailableIntentsEventsEn
2495
2489
  AvailableIntentsEventsEnum["PUBLIC_GUILD_MESSAGES"] = "PUBLIC_GUILD_MESSAGES";
2496
2490
  AvailableIntentsEventsEnum["MESSAGE_AUDIT"] = "MESSAGE_AUDIT";
2497
2491
  AvailableIntentsEventsEnum["INTERACTION"] = "INTERACTION";
2492
+ AvailableIntentsEventsEnum["GROUP_MEMBER"] = "GROUP_MEMBER";
2498
2493
  AvailableIntentsEventsEnum["GROUP_AND_C2C_EVENT"] = "GROUP_AND_C2C_EVENT";
2499
2494
  return AvailableIntentsEventsEnum;
2500
2495
  }({});
@@ -2630,11 +2625,13 @@ var WsEventType = {
2630
2625
  // 群管理员主动在机器人资料页操作开启通知
2631
2626
  GROUP_MSG_REJECT: AvailableIntentsEventsEnum.GROUP_AND_C2C_EVENT,
2632
2627
  // 群管理员主动在机器人资料页操作关闭通知
2633
- GROUP_MEMBER_ADD: AvailableIntentsEventsEnum.GROUP_AND_C2C_EVENT,
2628
+ GROUP_JOIN_REQUEST: AvailableIntentsEventsEnum.GROUP_AND_C2C_EVENT,
2629
+ // 用户申请加群
2630
+
2631
+ // ======= GROUP_MEMBER(兼容旧版群成员事件位) ======
2632
+ GROUP_MEMBER_ADD: AvailableIntentsEventsEnum.GROUP_MEMBER,
2634
2633
  // 群成员加入
2635
- GROUP_MEMBER_REMOVE: AvailableIntentsEventsEnum.GROUP_AND_C2C_EVENT,
2636
- // 群成员退出或被移出
2637
- GROUP_JOIN_REQUEST: AvailableIntentsEventsEnum.GROUP_AND_C2C_EVENT // 用户申请加群
2634
+ GROUP_MEMBER_REMOVE: AvailableIntentsEventsEnum.GROUP_MEMBER // 群成员退出或被移出
2638
2635
  };
2639
2636
  var WSCodes = {
2640
2637
  1000: 'WS_CLOSE_REQUESTED',
@@ -2723,6 +2720,7 @@ var IntentEvents = {
2723
2720
  DIRECT_MESSAGE: 1 << 12,
2724
2721
  OPEN_FORUM_EVENT: 1 << 18,
2725
2722
  AUDIO_OR_LIVE_CHANNEL_MEMBER: 1 << 19,
2723
+ GROUP_MEMBER: 1 << 24,
2726
2724
  GROUP_AND_C2C_EVENT: 1 << 25,
2727
2725
  INTERACTION: 1 << 26,
2728
2726
  MESSAGE_AUDIT: 1 << 27,
@@ -2750,6 +2748,7 @@ var Intents = {
2750
2748
  DIRECT_MESSAGE_TYPING: 14,
2751
2749
  OPEN_FORUM_EVENT: 18,
2752
2750
  AUDIO_OR_LIVE_CHANNEL_MEMBER: 19,
2751
+ GROUP_MEMBER: 24,
2753
2752
  GROUP_AND_C2C_EVENT: 25,
2754
2753
  INTERACTION: 26,
2755
2754
  MESSAGE_AUDIT: 27,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "woodenfish-bot",
3
- "version": "4.7.2",
3
+ "version": "4.7.4",
4
4
  "description": "woodenfish-bot",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -66,6 +66,7 @@ declare enum AvailableIntentsEventsEnum {
66
66
  PUBLIC_GUILD_MESSAGES = "PUBLIC_GUILD_MESSAGES",
67
67
  MESSAGE_AUDIT = "MESSAGE_AUDIT",
68
68
  INTERACTION = "INTERACTION",
69
+ GROUP_MEMBER = "GROUP_MEMBER",
69
70
  GROUP_AND_C2C_EVENT = "GROUP_AND_C2C_EVENT"
70
71
  }
71
72
  declare const WsEventType: {
@@ -123,6 +124,7 @@ declare const Intents: {
123
124
  DIRECT_MESSAGE_TYPING: number;
124
125
  OPEN_FORUM_EVENT: number;
125
126
  AUDIO_OR_LIVE_CHANNEL_MEMBER: number;
127
+ GROUP_MEMBER: number;
126
128
  GROUP_AND_C2C_EVENT: number;
127
129
  INTERACTION: number;
128
130
  MESSAGE_AUDIT: number;
@@ -177,13 +179,13 @@ interface GroupInfo {
177
179
  group_member_num: number;
178
180
  }
179
181
  type GroupReceiveMessageSetting = 'all' | 'only_mention' | 'mention_and_context';
180
- type GroupMemberRole = 'member' | 'owner' | 'admin';
182
+ type GroupMemberRole$1 = 'member' | 'owner' | 'admin';
181
183
  interface GroupBotState {
182
184
  member_openid: string;
183
185
  joined_at: string;
184
186
  allow_proactive_msg: boolean;
185
187
  recv_msg_setting: GroupReceiveMessageSetting;
186
- member_role: GroupMemberRole;
188
+ member_role: GroupMemberRole$1;
187
189
  }
188
190
  interface GroupCursorPager {
189
191
  cursor?: string;
@@ -328,6 +330,61 @@ interface GroupMemberEvent {
328
330
  }
329
331
  type GroupMemberAddEvent = GroupMemberEvent;
330
332
  type GroupMemberRemoveEvent = GroupMemberEvent;
333
+ type GroupMemberRole = 'member' | 'admin' | 'owner';
334
+ interface GroupMessageUser {
335
+ id: string;
336
+ username: string;
337
+ bot: boolean;
338
+ union_openid?: string;
339
+ union_user_account?: string;
340
+ user_openid?: string;
341
+ member_openid?: string;
342
+ member_role?: GroupMemberRole;
343
+ }
344
+ interface GroupMessageScene {
345
+ source: string;
346
+ ext: string[];
347
+ }
348
+ interface GroupMessageAttachment {
349
+ url: string;
350
+ filename: string;
351
+ width?: number;
352
+ height?: number;
353
+ size: number;
354
+ content_type: string;
355
+ voice_wav_url?: string;
356
+ asr_refer_text?: string;
357
+ }
358
+ interface GroupMessageArkData {
359
+ prompt: string;
360
+ ark_type: string;
361
+ ark_name: string;
362
+ fields: Record<string, unknown>;
363
+ }
364
+ interface GroupMessageElement {
365
+ msg_idx?: string;
366
+ author?: GroupMessageUser;
367
+ message_type?: number;
368
+ content?: string;
369
+ attachments?: GroupMessageAttachment[];
370
+ ark_data?: GroupMessageArkData;
371
+ msg_elements?: GroupMessageElement[];
372
+ }
373
+ interface GroupMessageEvent {
374
+ id: string;
375
+ author: GroupMessageUser;
376
+ content: string;
377
+ group_openid: string;
378
+ timestamp: string;
379
+ message_type: number;
380
+ message_scene: GroupMessageScene;
381
+ attachments?: GroupMessageAttachment[];
382
+ mentions?: GroupMessageUser[];
383
+ ark_data?: GroupMessageArkData;
384
+ msg_elements?: GroupMessageElement[];
385
+ }
386
+ type GroupAtMessageCreateEvent = GroupMessageEvent;
387
+ type GroupMessageCreateEvent = GroupMessageEvent;
331
388
  interface GroupJoinRequestEvent extends GroupJoinRequest {
332
389
  group_openid: string;
333
390
  auto_approved?: {
@@ -335,6 +392,8 @@ interface GroupJoinRequestEvent extends GroupJoinRequest {
335
392
  };
336
393
  }
337
394
  interface GroupEventPayloadMap {
395
+ GROUP_AT_MESSAGE_CREATE: GroupAtMessageCreateEvent;
396
+ GROUP_MESSAGE_CREATE: GroupMessageCreateEvent;
338
397
  GROUP_ADD_ROBOT: GroupAddRobotEvent;
339
398
  GROUP_DEL_ROBOT: GroupDelRobotEvent;
340
399
  GROUP_MSG_RECEIVE: GroupMsgReceiveEvent;
@@ -488,12 +547,12 @@ interface MessageAPI {
488
547
  message: (channelID: string, messageID: string) => Promise<RestyResponse<IMessageRes>>;
489
548
  messages: (channelID: string, pager: MessagesPager) => Promise<RestyResponse<IMessage[]>>;
490
549
  postMessage: (channelID: string, message: MessageToCreate) => Promise<RestyResponse<IMessage>>;
491
- postGroupMessage: (groupOpenid: string, message: MessageToCreate) => Promise<RestyResponse<IMessage>>;
550
+ postGroupMessage: (groupOpenid: string, message: GroupMessageToCreate) => Promise<RestyResponse<GroupMessageResponse>>;
492
551
  postC2CMessage: (userID: string, message: MessageToCreate) => Promise<RestyResponse<IMessage>>;
493
552
  patchMessage: (channelID: string, messageID: string, message: MessageToCreate) => Promise<RestyResponse<IMessage>>;
494
553
  deleteMessage: (channelID: string, messageID: string, hideTip?: boolean) => Promise<RestyResponse<any>>;
495
554
  deleteDirectMessage: (guildID: string, messageID: string, hideTip?: boolean) => Promise<RestyResponse<any>>;
496
- deleteGroupMessage: (groupOpenid: string, messageID: string, hideTip?: boolean) => Promise<RestyResponse<any>>;
555
+ deleteGroupMessage: (groupOpenid: string, messageID: string) => Promise<RestyResponse<Record<string, never>>>;
497
556
  deleteC2CMessage: (userID: string, messageID: string, hideTip?: boolean) => Promise<RestyResponse<any>>;
498
557
  postGroupMedia: (groupOpenid: string, message: MediaToCreate) => Promise<RestyResponse<IMedia>>;
499
558
  postC2CMedia: (userID: string, message: MediaToCreate) => Promise<RestyResponse<IMedia>>;
@@ -564,6 +623,38 @@ interface MessageReference {
564
623
  message_id: string;
565
624
  ignore_get_message_error?: boolean;
566
625
  }
626
+ interface GroupMessageReference {
627
+ message_id: string;
628
+ }
629
+ interface MessageMarkdown {
630
+ /** @deprecated 平台 Markdown 模板已废弃。 */
631
+ template_id?: number;
632
+ content?: string;
633
+ /** @deprecated 自定义 Markdown 模板已废弃。 */
634
+ custom_template_id?: string;
635
+ force_verify_image_resource?: boolean;
636
+ }
637
+ type GroupMessageType = 0 | 2 | 7;
638
+ interface GroupMessageToCreate {
639
+ msg_type?: GroupMessageType;
640
+ content?: string;
641
+ markdown?: MessageMarkdown;
642
+ keyboard?: MessageKeyboard;
643
+ msg_id?: string;
644
+ event_id?: string;
645
+ msg_seq?: number;
646
+ media?: Media;
647
+ message_reference?: GroupMessageReference;
648
+ is_wakeup?: boolean;
649
+ }
650
+ interface MessageExtInfo {
651
+ ref_idx: string;
652
+ }
653
+ interface GroupMessageResponse {
654
+ id: string;
655
+ timestamp: string;
656
+ ext_info: MessageExtInfo;
657
+ }
567
658
  interface MessageToCreate {
568
659
  content?: string;
569
660
  embed?: Embed;
@@ -610,17 +701,21 @@ interface Button {
610
701
  interface RenderData {
611
702
  label?: string;
612
703
  visited_label?: string;
613
- style?: number;
704
+ style?: 0 | 1 | 2 | 3;
614
705
  }
615
706
  interface Action {
616
- type?: number;
707
+ type?: 0 | 1 | 2;
617
708
  permission?: Permission;
618
709
  click_limit?: number;
619
710
  data?: string;
711
+ unsupport_tips?: string;
712
+ enter?: boolean;
713
+ reply?: boolean;
714
+ anchor?: number;
620
715
  at_bot_show_channel_list?: boolean;
621
716
  }
622
717
  interface Permission {
623
- type?: number;
718
+ type?: 0 | 1 | 2;
624
719
  specify_role_ids?: string[];
625
720
  specify_user_ids?: string[];
626
721
  }
@@ -975,4 +1070,4 @@ declare function createOpenAPI(config: Config): OpenAPI;
975
1070
  declare function createWebsocket(config: GetWsParam): WebsocketClient;
976
1071
 
977
1072
  export { AvailableIntentsEventsEnum, IntentEvents, Intents, OpCode, SessionEvents, WSCodes, WebsocketCloseReason, WebsocketCode, WsEventType, WsObjRequestOptions, createOpenAPI, createWebsocket, selectOpenAPIVersion };
978
- export type { APIVersion, Action, AnnounceAPI, Ark, ArkKV, ArkObj, ArkObjKV, AudioAPI, AudioControl, Button, ChannelAPI, ChannelPermissionsAPI, ChannelSubType, ChannelType, Config, CreateGroupJoinApprovalStrategy, CustomKeyboard, DirectMessageAPI, DirectMessageToCreate, Embed, EmbedField, EmbedThumbnail, EventTypes, GetWsParam, GroupAPI, GroupAddRobotEvent, GroupBotState, GroupCursorPager, GroupDelRobotEvent, GroupEventPayloadMap, GroupEventType, GroupGlobalMuteRule, GroupInfo, GroupJoinApplySource, GroupJoinApprovalStrategy, GroupJoinApprovalStrategyGroupAction, GroupJoinApprovalStrategyGroups, GroupJoinApprovalStrategyList, GroupJoinApprovalStrategyResult, GroupJoinApprovalStrategyState, GroupJoinApprovalStrategyWhitelistResult, GroupJoinRequest, GroupJoinRequestApproval, GroupJoinRequestEvent, GroupJoinRequestList, GroupJoinReviewQA, GroupJoinVerifyInfo, GroupJoinVerifyMethod, GroupMemberAddEvent, GroupMemberEvent, GroupMemberMuteState, GroupMemberRemoveEvent, GroupMemberRole, GroupMsgReceiveEvent, GroupMsgRejectEvent, GroupMuteMode, GroupMuteRecurringRule, GroupMuteScheduleRule, GroupReceiveMessageSetting, GroupRestrictChatSetting, GroupRobotEvent, GuildAPI, GuildMembersPager, GuildPermission, GuildPermissionDemand, GuildPermissionDemandIdentify, GuildPermissionRes, GuildPermissionsAPI, GuildRoles, HeartbeatParam, IAnnounce, IChannel, IChannelPermissions, IChannelRolePermissions, IDirectMessage, IGuild, IMedia, IMember, IMessage, IMessageRes, IOpenAPI, IPinsMessage, IRole, IRoleFilter, ISchedule, IUser, IVoiceMember, InputNotify, IntentEventsMapType, InteractionAPI, InteractionData, MeAPI, MeGuildsReq, Media, MediaToCreate, MemberAPI, MemberAddRoleBody, MessageAPI, MessageAttachment, MessageKeyboard, MessageReference, MessageToCreate, MessagesPager, MuteAPI, MuteOptions, Nullish, OpenAPIRequest, OpenAPIRequestOptions, PatchChannelObj, Permission, PermissionDemandToCreate, PinsMessageAPI, PostChannelObj, ReactionAPI, ReactionObj, ReactionUserListObj, RecommendChannel, RecommendObj, RenderData, RoleAPI, Row, ScheduleAPI, ScheduleRemindType, ScheduleToCreate, ScheduleToPatch, SessionRecord, SetGroupMemberMuteState, SetGroupRestrictChatSetting, ThreadReplyToCreate, ThreadsAPI, ThreadsToCreate, Token, UpdateChannelPermissions, UpdateGroupJoinApprovalStrategy, UpdateGroupJoinApprovalStrategyWhitelist, UpdateRoleRes, WebsocketAPI, WebsocketEventData, WsAddressObj, WsDataInfo, wsResData };
1073
+ export type { APIVersion, Action, AnnounceAPI, Ark, ArkKV, ArkObj, ArkObjKV, AudioAPI, AudioControl, Button, ChannelAPI, ChannelPermissionsAPI, ChannelSubType, ChannelType, Config, CreateGroupJoinApprovalStrategy, CustomKeyboard, DirectMessageAPI, DirectMessageToCreate, Embed, EmbedField, EmbedThumbnail, EventTypes, GetWsParam, GroupAPI, GroupAddRobotEvent, GroupAtMessageCreateEvent, GroupBotState, GroupCursorPager, GroupDelRobotEvent, GroupEventPayloadMap, GroupEventType, GroupGlobalMuteRule, GroupInfo, GroupJoinApplySource, GroupJoinApprovalStrategy, GroupJoinApprovalStrategyGroupAction, GroupJoinApprovalStrategyGroups, GroupJoinApprovalStrategyList, GroupJoinApprovalStrategyResult, GroupJoinApprovalStrategyState, GroupJoinApprovalStrategyWhitelistResult, GroupJoinRequest, GroupJoinRequestApproval, GroupJoinRequestEvent, GroupJoinRequestList, GroupJoinReviewQA, GroupJoinVerifyInfo, GroupJoinVerifyMethod, GroupMemberAddEvent, GroupMemberEvent, GroupMemberMuteState, GroupMemberRemoveEvent, GroupMessageArkData, GroupMessageAttachment, GroupMessageCreateEvent, GroupMessageElement, GroupMessageEvent, GroupMessageReference, GroupMessageResponse, GroupMessageScene, GroupMessageToCreate, GroupMessageType, GroupMessageUser, GroupMsgReceiveEvent, GroupMsgRejectEvent, GroupMuteMode, GroupMuteRecurringRule, GroupMuteScheduleRule, GroupReceiveMessageSetting, GroupRestrictChatSetting, GroupRobotEvent, GuildAPI, GuildMembersPager, GuildPermission, GuildPermissionDemand, GuildPermissionDemandIdentify, GuildPermissionRes, GuildPermissionsAPI, GuildRoles, HeartbeatParam, IAnnounce, IChannel, IChannelPermissions, IChannelRolePermissions, IDirectMessage, IGuild, IMedia, IMember, IMessage, IMessageRes, IOpenAPI, IPinsMessage, IRole, IRoleFilter, ISchedule, IUser, IVoiceMember, InputNotify, IntentEventsMapType, InteractionAPI, InteractionData, MeAPI, MeGuildsReq, Media, MediaToCreate, MemberAPI, MemberAddRoleBody, MessageAPI, MessageAttachment, MessageExtInfo, MessageKeyboard, MessageMarkdown, MessageReference, MessageToCreate, MessagesPager, MuteAPI, MuteOptions, Nullish, OpenAPIRequest, OpenAPIRequestOptions, PatchChannelObj, Permission, PermissionDemandToCreate, PinsMessageAPI, PostChannelObj, ReactionAPI, ReactionObj, ReactionUserListObj, RecommendChannel, RecommendObj, RenderData, RoleAPI, Row, ScheduleAPI, ScheduleRemindType, ScheduleToCreate, ScheduleToPatch, SessionRecord, SetGroupMemberMuteState, SetGroupRestrictChatSetting, ThreadReplyToCreate, ThreadsAPI, ThreadsToCreate, Token, UpdateChannelPermissions, UpdateGroupJoinApprovalStrategy, UpdateGroupJoinApprovalStrategyWhitelist, UpdateRoleRes, WebsocketAPI, WebsocketEventData, WsAddressObj, WsDataInfo, wsResData };