@velliajs/discord 1.0.3 → 1.0.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.
Files changed (257) hide show
  1. package/package.json +1 -1
  2. package/src/client/BaseClient.js +7 -28
  3. package/src/client/Client.js +116 -283
  4. package/src/client/WebhookClient.js +17 -59
  5. package/src/client/actions/Action.js +0 -10
  6. package/src/client/actions/ActionsManager.js +3 -3
  7. package/src/client/actions/ApplicationCommandPermissionsUpdate.js +2 -15
  8. package/src/client/actions/AutoModerationActionExecution.js +1 -6
  9. package/src/client/actions/AutoModerationRuleCreate.js +1 -6
  10. package/src/client/actions/AutoModerationRuleDelete.js +1 -6
  11. package/src/client/actions/AutoModerationRuleUpdate.js +1 -7
  12. package/src/client/actions/ChannelCreate.js +1 -5
  13. package/src/client/actions/ChannelDelete.js +1 -5
  14. package/src/client/actions/GuildAuditLogEntryCreate.js +1 -6
  15. package/src/client/actions/GuildBanAdd.js +1 -5
  16. package/src/client/actions/GuildBanRemove.js +1 -5
  17. package/src/client/actions/GuildDelete.js +6 -14
  18. package/src/client/actions/GuildEmojiCreate.js +1 -5
  19. package/src/client/actions/GuildEmojiDelete.js +1 -5
  20. package/src/client/actions/GuildEmojiUpdate.js +1 -6
  21. package/src/client/actions/GuildEmojisUpdate.js +4 -4
  22. package/src/client/actions/GuildIntegrationsUpdate.js +1 -5
  23. package/src/client/actions/GuildMemberRemove.js +1 -5
  24. package/src/client/actions/GuildMemberUpdate.js +2 -11
  25. package/src/client/actions/GuildRoleCreate.js +1 -5
  26. package/src/client/actions/GuildRoleDelete.js +1 -5
  27. package/src/client/actions/GuildRoleUpdate.js +1 -6
  28. package/src/client/actions/GuildScheduledEventCreate.js +1 -5
  29. package/src/client/actions/GuildScheduledEventDelete.js +1 -5
  30. package/src/client/actions/GuildScheduledEventUpdate.js +1 -6
  31. package/src/client/actions/GuildScheduledEventUserAdd.js +1 -6
  32. package/src/client/actions/GuildScheduledEventUserRemove.js +1 -6
  33. package/src/client/actions/GuildStickerCreate.js +1 -5
  34. package/src/client/actions/GuildStickerDelete.js +1 -5
  35. package/src/client/actions/GuildStickerUpdate.js +1 -6
  36. package/src/client/actions/GuildStickersUpdate.js +4 -4
  37. package/src/client/actions/GuildUpdate.js +1 -6
  38. package/src/client/actions/InteractionCreate.js +3 -7
  39. package/src/client/actions/InviteCreate.js +1 -7
  40. package/src/client/actions/InviteDelete.js +1 -7
  41. package/src/client/actions/MessageCreate.js +1 -5
  42. package/src/client/actions/MessageDelete.js +1 -5
  43. package/src/client/actions/MessageDeleteBulk.js +1 -6
  44. package/src/client/actions/MessageReactionAdd.js +5 -18
  45. package/src/client/actions/MessageReactionRemove.js +5 -16
  46. package/src/client/actions/MessageReactionRemoveAll.js +4 -9
  47. package/src/client/actions/MessageReactionRemoveEmoji.js +1 -5
  48. package/src/client/actions/PresenceUpdate.js +1 -6
  49. package/src/client/actions/StageInstanceCreate.js +1 -5
  50. package/src/client/actions/StageInstanceDelete.js +1 -5
  51. package/src/client/actions/StageInstanceUpdate.js +1 -6
  52. package/src/client/actions/ThreadCreate.js +1 -6
  53. package/src/client/actions/ThreadDelete.js +1 -5
  54. package/src/client/actions/ThreadListSync.js +2 -7
  55. package/src/client/actions/ThreadMemberUpdate.js +2 -7
  56. package/src/client/actions/ThreadMembersUpdate.js +2 -9
  57. package/src/client/actions/TypingStart.js +1 -5
  58. package/src/client/actions/UserUpdate.js +1 -8
  59. package/src/client/actions/VoiceStateUpdate.js +4 -9
  60. package/src/client/actions/WebhooksUpdate.js +1 -6
  61. package/src/client/voice/ClientVoiceManager.js +3 -13
  62. package/src/client/websocket/WebSocketManager.js +25 -117
  63. package/src/client/websocket/WebSocketShard.js +29 -116
  64. package/src/client/websocket/handlers/CHANNEL_PINS_UPDATE.js +2 -8
  65. package/src/client/websocket/handlers/CHANNEL_UPDATE.js +1 -6
  66. package/src/client/websocket/handlers/GUILD_CREATE.js +3 -7
  67. package/src/client/websocket/handlers/GUILD_MEMBERS_CHUNK.js +2 -16
  68. package/src/client/websocket/handlers/GUILD_MEMBER_ADD.js +1 -5
  69. package/src/client/websocket/handlers/MESSAGE_UPDATE.js +1 -6
  70. package/src/client/websocket/handlers/RESUMED.js +1 -6
  71. package/src/client/websocket/handlers/THREAD_UPDATE.js +1 -6
  72. package/src/errors/DJSError.js +3 -14
  73. package/src/errors/ErrorCodes.js +2 -164
  74. package/src/index.js +6 -6
  75. package/src/managers/ApplicationCommandManager.js +14 -130
  76. package/src/managers/ApplicationCommandPermissionsManager.js +31 -202
  77. package/src/managers/AutoModerationRuleManager.js +17 -145
  78. package/src/managers/BaseGuildEmojiManager.js +7 -38
  79. package/src/managers/BaseManager.js +2 -10
  80. package/src/managers/CachedManager.js +3 -17
  81. package/src/managers/CategoryChannelChildManager.js +6 -48
  82. package/src/managers/ChannelManager.js +11 -52
  83. package/src/managers/DataManager.js +5 -27
  84. package/src/managers/GuildApplicationCommandManager.js +3 -12
  85. package/src/managers/GuildBanManager.js +16 -105
  86. package/src/managers/GuildChannelManager.js +31 -226
  87. package/src/managers/GuildEmojiManager.js +9 -65
  88. package/src/managers/GuildEmojiRoleManager.js +8 -47
  89. package/src/managers/GuildForumThreadManager.js +5 -39
  90. package/src/managers/GuildInviteManager.js +18 -117
  91. package/src/managers/GuildManager.js +14 -115
  92. package/src/managers/GuildMemberManager.js +38 -256
  93. package/src/managers/GuildMemberRoleManager.js +13 -76
  94. package/src/managers/GuildScheduledEventManager.js +25 -128
  95. package/src/managers/GuildStickerManager.js +16 -96
  96. package/src/managers/GuildTextThreadManager.js +4 -47
  97. package/src/managers/MessageManager.js +23 -137
  98. package/src/managers/PermissionOverwriteManager.js +10 -78
  99. package/src/managers/PresenceManager.js +6 -27
  100. package/src/managers/ReactionManager.js +7 -40
  101. package/src/managers/ReactionUserManager.js +6 -29
  102. package/src/managers/RoleManager.js +29 -177
  103. package/src/managers/StageInstanceManager.js +14 -77
  104. package/src/managers/ThreadManager.js +23 -113
  105. package/src/managers/ThreadMemberManager.js +20 -89
  106. package/src/managers/UserManager.js +13 -65
  107. package/src/managers/VoiceStateManager.js +3 -13
  108. package/src/sharding/Shard.js +42 -158
  109. package/src/sharding/ShardClientUtil.js +17 -101
  110. package/src/sharding/ShardingManager.js +34 -151
  111. package/src/structures/ActionRow.js +4 -21
  112. package/src/structures/ActionRowBuilder.js +3 -13
  113. package/src/structures/AnonymousGuild.js +10 -43
  114. package/src/structures/ApplicationCommand.js +54 -308
  115. package/src/structures/ApplicationRoleConnectionMetadata.js +7 -27
  116. package/src/structures/Attachment.js +16 -65
  117. package/src/structures/AttachmentBuilder.js +13 -58
  118. package/src/structures/AutoModerationActionExecution.js +16 -69
  119. package/src/structures/AutoModerationRule.js +32 -164
  120. package/src/structures/AutocompleteInteraction.js +10 -52
  121. package/src/structures/Base.js +2 -10
  122. package/src/structures/BaseChannel.js +16 -80
  123. package/src/structures/BaseGuild.js +13 -59
  124. package/src/structures/BaseGuildEmoji.js +5 -21
  125. package/src/structures/BaseGuildTextChannel.js +19 -100
  126. package/src/structures/BaseGuildVoiceChannel.js +21 -110
  127. package/src/structures/BaseInteraction.js +40 -196
  128. package/src/structures/BaseSelectMenuComponent.js +6 -29
  129. package/src/structures/ButtonBuilder.js +4 -18
  130. package/src/structures/ButtonComponent.js +7 -34
  131. package/src/structures/ButtonInteraction.js +1 -4
  132. package/src/structures/CategoryChannel.js +5 -30
  133. package/src/structures/ChannelSelectMenuBuilder.js +3 -13
  134. package/src/structures/ChannelSelectMenuComponent.js +2 -9
  135. package/src/structures/ChannelSelectMenuInteraction.js +3 -12
  136. package/src/structures/ChatInputCommandInteraction.js +3 -13
  137. package/src/structures/ClientApplication.js +20 -83
  138. package/src/structures/ClientPresence.js +5 -20
  139. package/src/structures/ClientUser.js +21 -118
  140. package/src/structures/CommandInteraction.js +21 -96
  141. package/src/structures/CommandInteractionOptionResolver.js +26 -147
  142. package/src/structures/Component.js +5 -21
  143. package/src/structures/ContextMenuCommandInteraction.js +4 -18
  144. package/src/structures/DMChannel.js +17 -52
  145. package/src/structures/DirectoryChannel.js +4 -16
  146. package/src/structures/Embed.js +21 -107
  147. package/src/structures/EmbedBuilder.js +4 -18
  148. package/src/structures/Emoji.js +12 -60
  149. package/src/structures/ForumChannel.js +30 -140
  150. package/src/structures/Guild.js +117 -697
  151. package/src/structures/GuildAuditLogs.js +7 -32
  152. package/src/structures/GuildAuditLogsEntry.js +27 -135
  153. package/src/structures/GuildBan.js +6 -26
  154. package/src/structures/GuildChannel.js +36 -188
  155. package/src/structures/GuildEmoji.js +13 -67
  156. package/src/structures/GuildMember.js +47 -270
  157. package/src/structures/GuildPreview.js +19 -84
  158. package/src/structures/GuildPreviewEmoji.js +3 -13
  159. package/src/structures/GuildScheduledEvent.js +46 -250
  160. package/src/structures/GuildTemplate.js +24 -108
  161. package/src/structures/Integration.js +25 -103
  162. package/src/structures/IntegrationApplication.js +8 -32
  163. package/src/structures/InteractionCollector.js +22 -113
  164. package/src/structures/InteractionResponse.js +11 -46
  165. package/src/structures/InteractionWebhook.js +8 -33
  166. package/src/structures/Invite.js +27 -131
  167. package/src/structures/InviteGuild.js +2 -8
  168. package/src/structures/InviteStageInstance.js +9 -39
  169. package/src/structures/MentionableSelectMenuBuilder.js +3 -14
  170. package/src/structures/MentionableSelectMenuComponent.js +1 -4
  171. package/src/structures/MentionableSelectMenuInteraction.js +5 -20
  172. package/src/structures/Message.js +85 -460
  173. package/src/structures/MessageCollector.js +14 -70
  174. package/src/structures/MessageComponentInteraction.js +14 -57
  175. package/src/structures/MessageContextMenuCommandInteraction.js +2 -9
  176. package/src/structures/MessageMentions.js +25 -136
  177. package/src/structures/MessagePayload.js +24 -94
  178. package/src/structures/MessageReaction.js +13 -51
  179. package/src/structures/ModalBuilder.js +3 -13
  180. package/src/structures/ModalSubmitFields.js +5 -22
  181. package/src/structures/ModalSubmitInteraction.js +17 -61
  182. package/src/structures/NewsChannel.js +2 -16
  183. package/src/structures/OAuth2Guild.js +3 -12
  184. package/src/structures/PartialGroupDMChannel.js +7 -27
  185. package/src/structures/PermissionOverwrites.js +20 -99
  186. package/src/structures/Presence.js +45 -190
  187. package/src/structures/ReactionCollector.js +20 -108
  188. package/src/structures/ReactionEmoji.js +2 -10
  189. package/src/structures/Role.js +39 -261
  190. package/src/structures/RoleSelectMenuBuilder.js +3 -13
  191. package/src/structures/RoleSelectMenuComponent.js +1 -4
  192. package/src/structures/RoleSelectMenuInteraction.js +3 -12
  193. package/src/structures/SelectMenuBuilder.js +1 -4
  194. package/src/structures/SelectMenuComponent.js +1 -4
  195. package/src/structures/SelectMenuInteraction.js +1 -4
  196. package/src/structures/SelectMenuOptionBuilder.js +1 -4
  197. package/src/structures/StageChannel.js +12 -84
  198. package/src/structures/StageInstance.js +16 -87
  199. package/src/structures/Sticker.js +25 -124
  200. package/src/structures/StickerPack.js +12 -52
  201. package/src/structures/StringSelectMenuBuilder.js +6 -29
  202. package/src/structures/StringSelectMenuComponent.js +2 -9
  203. package/src/structures/StringSelectMenuInteraction.js +2 -8
  204. package/src/structures/StringSelectMenuOptionBuilder.js +4 -18
  205. package/src/structures/Team.js +11 -52
  206. package/src/structures/TeamMember.js +7 -33
  207. package/src/structures/TextChannel.js +3 -14
  208. package/src/structures/TextInputBuilder.js +3 -13
  209. package/src/structures/TextInputComponent.js +3 -14
  210. package/src/structures/ThreadChannel.js +59 -305
  211. package/src/structures/ThreadMember.js +12 -55
  212. package/src/structures/Typing.js +8 -35
  213. package/src/structures/User.js +29 -151
  214. package/src/structures/UserContextMenuCommandInteraction.js +3 -14
  215. package/src/structures/UserSelectMenuBuilder.js +3 -13
  216. package/src/structures/UserSelectMenuComponent.js +1 -4
  217. package/src/structures/UserSelectMenuInteraction.js +4 -16
  218. package/src/structures/VoiceChannel.js +8 -67
  219. package/src/structures/VoiceRegion.js +6 -23
  220. package/src/structures/VoiceState.js +28 -140
  221. package/src/structures/Webhook.js +37 -227
  222. package/src/structures/WelcomeChannel.js +7 -29
  223. package/src/structures/WelcomeScreen.js +5 -20
  224. package/src/structures/Widget.js +9 -40
  225. package/src/structures/WidgetMember.js +15 -61
  226. package/src/structures/interfaces/Application.js +10 -49
  227. package/src/structures/interfaces/Collector.js +34 -155
  228. package/src/structures/interfaces/InteractionResponses.js +25 -164
  229. package/src/structures/interfaces/TextBasedChannel.js +37 -232
  230. package/src/util/APITypes.js +183 -456
  231. package/src/util/ActivityFlagsBitField.js +3 -15
  232. package/src/util/ApplicationFlagsBitField.js +3 -15
  233. package/src/util/BitField.js +17 -82
  234. package/src/util/ChannelFlagsBitField.js +7 -30
  235. package/src/util/Channels.js +5 -35
  236. package/src/util/Colors.js +3 -38
  237. package/src/util/Components.js +21 -75
  238. package/src/util/Constants.js +17 -144
  239. package/src/util/DataResolver.js +20 -77
  240. package/src/util/Events.js +3 -81
  241. package/src/util/Formatters.js +58 -305
  242. package/src/util/GuildMemberFlagsBitField.js +7 -30
  243. package/src/util/IntentsBitField.js +4 -23
  244. package/src/util/LimitedCollection.js +4 -21
  245. package/src/util/MessageFlagsBitField.js +5 -21
  246. package/src/util/Options.js +24 -137
  247. package/src/util/Partials.js +3 -30
  248. package/src/util/PermissionsBitField.js +12 -67
  249. package/src/util/ShardEvents.js +3 -15
  250. package/src/util/Status.js +3 -17
  251. package/src/util/Sweepers.js +35 -184
  252. package/src/util/SystemChannelFlagsBitField.js +7 -32
  253. package/src/util/ThreadMemberFlagsBitField.js +5 -21
  254. package/src/util/Transformers.js +2 -11
  255. package/src/util/UserFlagsBitField.js +5 -21
  256. package/src/util/Util.js +30 -169
  257. package/src/util/WebSocketShardEvents.js +3 -14
@@ -1,456 +1,183 @@
1
- /* eslint-disable max-len */
2
-
3
- /**
4
- * @external ActivityFlags
5
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ActivityFlags}
6
- */
7
-
8
- /**
9
- * @external ActivityType
10
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ActivityType}
11
- */
12
-
13
- /**
14
- * @external APIActionRowComponent
15
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIActionRowComponent}
16
- */
17
-
18
- /**
19
- * @external APIApplication
20
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIApplication}
21
- */
22
-
23
- /**
24
- * @external APIApplicationCommand
25
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIApplicationCommand}
26
- */
27
-
28
- /**
29
- * @external APIApplicationCommandOption
30
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIApplicationCommandOption}
31
- */
32
-
33
- /**
34
- * @external APIAutoModerationAction
35
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIAutoModerationAction}
36
- */
37
-
38
- /**
39
- * @external APIButtonComponent
40
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIButtonComponent}
41
- */
42
-
43
- /**
44
- * @external APIChannel
45
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIChannel}
46
- */
47
-
48
- /**
49
- * @external APIChannelSelectComponent
50
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIChannelSelectComponent}
51
- */
52
-
53
- /**
54
- * @external APIEmbed
55
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIEmbed}
56
- */
57
-
58
- /**
59
- * @external APIEmbedField
60
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIEmbedField}
61
- */
62
-
63
- /**
64
- * @external APIEmbedProvider
65
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIEmbedProvider}
66
- */
67
-
68
- /**
69
- * @external APIEmoji
70
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIEmoji}
71
- */
72
-
73
- /**
74
- * @external APIGuild
75
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIGuild}
76
- */
77
-
78
- /**
79
- * @external APIGuildForumDefaultReactionEmoji
80
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIGuildForumDefaultReactionEmoji}
81
- */
82
-
83
- /**
84
- * @external APIGuildForumTag
85
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIGuildForumTag}
86
- */
87
-
88
- /**
89
- * @external APIInteraction
90
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIInteraction}
91
- */
92
-
93
- /**
94
- * @external APIInteractionDataResolvedChannel
95
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIInteractionDataResolvedChannel}
96
- */
97
-
98
- /**
99
- * @external APIInteractionDataResolvedGuildMember
100
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIInteractionDataResolvedGuildMember}
101
- */
102
-
103
- /**
104
- * @external APIInteractionGuildMember
105
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIInteractionGuildMember}
106
- */
107
-
108
- /**
109
- * @external APIMentionableSelectComponent
110
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIMentionableSelectComponent}
111
- */
112
-
113
- /**
114
- * @external APIMessage
115
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIMessage}
116
- */
117
-
118
- /**
119
- * @external APIMessageActionRowComponent
120
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIMessageActionRowComponent}
121
- */
122
-
123
- /**
124
- * @external APIMessageComponent
125
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIMessageComponent}
126
- */
127
-
128
- /**
129
- * @external APIMessageComponentEmoji
130
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIMessageComponentEmoji}
131
- */
132
-
133
- /**
134
- * @external APIModalInteractionResponse
135
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIModalInteractionResponse}
136
- */
137
-
138
- /**
139
- * @external APIModalInteractionResponseCallbackData
140
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIModalInteractionResponseCallbackData}
141
- */
142
-
143
- /**
144
- * @external APIModalComponent
145
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIModalComponent}
146
- */
147
-
148
- /**
149
- * @external APIModalSubmission
150
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIModalSubmission}
151
- */
152
-
153
- /**
154
- * @external APIPresence
155
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIPresence}
156
- */
157
-
158
- /**
159
- * @external APIRoleSelectComponent
160
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIRoleSelectComponent}
161
- */
162
-
163
- /**
164
- * @external APISelectMenuOption
165
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APISelectMenuOption}
166
- */
167
-
168
- /**
169
- * @external APIStringSelectComponent
170
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIStringSelectComponent}
171
- */
172
-
173
- /**
174
- * @external APITextInputComponent
175
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APITextInputComponent}
176
- */
177
-
178
- /**
179
- * @external APIUser
180
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/interface/APIUser}
181
- */
182
-
183
- /**
184
- * @external APIUserSelectComponent
185
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10#APIUserSelectComponent}
186
- */
187
-
188
- /**
189
- * @external ApplicationCommandType
190
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ApplicationCommandType}
191
- */
192
-
193
- /**
194
- * @external ApplicationCommandOptionType
195
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ApplicationCommandOptionType}
196
- */
197
-
198
- /**
199
- * @external ApplicationCommandPermissionType
200
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ApplicationCommandPermissionType}
201
- */
202
-
203
- /**
204
- * @external ApplicationFlags
205
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ApplicationFlags}
206
- */
207
-
208
- /**
209
- * @external ApplicationRoleConnectionMetadataType
210
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ApplicationRoleConnectionMetadataType}
211
- */
212
-
213
- /**
214
- * @external AutoModerationActionType
215
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/AutoModerationActionType}
216
- */
217
-
218
- /**
219
- * @external AutoModerationRuleEventType
220
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/AutoModerationRuleEventType}
221
- */
222
-
223
- /**
224
- * @external AutoModerationRuleTriggerType
225
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/AutoModerationRuleTriggerType}
226
- */
227
-
228
- /**
229
- * @external AutoModerationRuleKeywordPresetType
230
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/AutoModerationRuleKeywordPresetType}
231
- */
232
-
233
- /**
234
- * @external AuditLogEvent
235
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/AuditLogEvent}
236
- */
237
-
238
- /**
239
- * @external ButtonStyle
240
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ButtonStyle}
241
- */
242
-
243
- /**
244
- * @external ChannelFlags
245
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ChannelFlags}
246
- */
247
-
248
- /**
249
- * @external ChannelType
250
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ChannelType}
251
- */
252
-
253
- /**
254
- * @external ComponentType
255
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ComponentType}
256
- */
257
-
258
- /**
259
- * @external ForumLayoutType
260
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ForumLayoutType}
261
- */
262
-
263
- /**
264
- * @external GatewayCloseCodes
265
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GatewayCloseCodes}
266
- */
267
-
268
- /**
269
- * @external GatewayDispatchEvents
270
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GatewayDispatchEvents}
271
- */
272
-
273
- /**
274
- * @external GatewayIntentBits
275
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GatewayIntentBits}
276
- */
277
-
278
- /**
279
- * @external GatewayOpcodes
280
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GatewayOpcodes}
281
- */
282
-
283
- /**
284
- * @external GuildDefaultMessageNotifications
285
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildDefaultMessageNotifications}
286
- */
287
-
288
- /**
289
- * @external GuildExplicitContentFilter
290
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildExplicitContentFilter}
291
- */
292
-
293
- /**
294
- * @external GuildFeature
295
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildFeature}
296
- */
297
-
298
- /**
299
- * @external GuildMFALevel
300
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildMFALevel}
301
- */
302
-
303
- /**
304
- * @external GuildMemberFlags
305
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildMemberFlags}
306
- */
307
-
308
- /**
309
- * @external GuildNSFWLevel
310
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildNSFWLevel}
311
- */
312
-
313
- /**
314
- * @external GuildPremiumTier
315
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildPremiumTier}
316
- */
317
-
318
- /**
319
- * @external GuildScheduledEventEntityType
320
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildScheduledEventEntityType}
321
- */
322
-
323
- /**
324
- * @external GuildScheduledEventPrivacyLevel
325
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildScheduledEventPrivacyLevel}
326
- */
327
-
328
- /**
329
- * @external GuildScheduledEventStatus
330
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildScheduledEventStatus}
331
- */
332
-
333
- /**
334
- * @external GuildSystemChannelFlags
335
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildSystemChannelFlags}
336
- */
337
-
338
- /**
339
- * @external GuildVerificationLevel
340
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/GuildVerificationLevel}
341
- */
342
-
343
- /**
344
- * @external IntegrationExpireBehavior
345
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/IntegrationExpireBehavior}
346
- */
347
-
348
- /**
349
- * @external InteractionType
350
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/InteractionType}
351
- */
352
-
353
- /**
354
- * @external InteractionResponseType
355
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/InteractionResponseType}
356
- */
357
-
358
- /**
359
- * @external InviteTargetType
360
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/InviteTargetType}
361
- */
362
-
363
- /**
364
- * @external Locale
365
- * @see {@link https://discord-api-types.dev/api/discord-api-types-rest/common/enum/Locale}
366
- */
367
-
368
- /**
369
- * @external LocaleString
370
- * @see {@link https://discord-api-types.dev/api/discord-api-types-rest/common#LocaleString}
371
- */
372
-
373
- /**
374
- * @external MessageActivityType
375
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/MessageActivityType}
376
- */
377
-
378
- /**
379
- * @external MessageType
380
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/MessageType}
381
- */
382
-
383
- /**
384
- * @external MessageFlags
385
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/MessageFlags}
386
- */
387
-
388
- /**
389
- * @external OAuth2Scopes
390
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/OAuth2Scopes}
391
- */
392
-
393
- /**
394
- * @external OverwriteType
395
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/OverwriteType}
396
- */
397
-
398
- /**
399
- * @external PermissionFlagsBits
400
- * @see {@link https://discord-api-types.dev/api/discord-api-types-payloads/common#PermissionFlagsBits}
401
- */
402
-
403
- /**
404
- * @external RESTJSONErrorCodes
405
- * @see {@link https://discord-api-types.dev/api/discord-api-types-rest/common/enum/RESTJSONErrorCodes}
406
- */
407
-
408
- /**
409
- * @external SortOrderType
410
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/SortOrderType}
411
- */
412
-
413
- /**
414
- * @external StageInstancePrivacyLevel
415
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/StageInstancePrivacyLevel}
416
- */
417
-
418
- /**
419
- * @external StickerType
420
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/StickerType}
421
- */
422
-
423
- /**
424
- * @external StickerFormatType
425
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/StickerFormatType}
426
- */
427
-
428
- /**
429
- * @external TeamMemberMembershipState
430
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/TeamMemberMembershipState}
431
- */
432
-
433
- /**
434
- * @external TextInputStyle
435
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/TextInputStyle}
436
- */
437
-
438
- /**
439
- * @external ThreadAutoArchiveDuration
440
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/ThreadAutoArchiveDuration}
441
- */
442
-
443
- /**
444
- * @external UserFlags
445
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/UserFlags}
446
- */
447
-
448
- /**
449
- * @external VideoQualityMode
450
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/VideoQualityMode}
451
- */
452
-
453
- /**
454
- * @external WebhookType
455
- * @see {@link https://discord-api-types.dev/api/discord-api-types-v10/enum/WebhookType}
456
- */
1
+
2
+
3
+
4
+
5
+
6
+
7
+
8
+
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+
29
+
30
+
31
+
32
+
33
+
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
46
+
47
+
48
+
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+
77
+
78
+
79
+
80
+
81
+
82
+
83
+
84
+
85
+
86
+
87
+
88
+
89
+
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+
98
+
99
+
100
+
101
+
102
+
103
+
104
+
105
+
106
+
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+
126
+
127
+
128
+
129
+
130
+
131
+
132
+
133
+
134
+
135
+
136
+
137
+
138
+
139
+
140
+
141
+
142
+
143
+
144
+
145
+
146
+
147
+
148
+
149
+
150
+
151
+
152
+
153
+
154
+
155
+
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+
164
+
165
+
166
+
167
+
168
+
169
+
170
+
171
+
172
+
173
+
174
+
175
+
176
+
177
+
178
+
179
+
180
+
181
+
182
+
183
+
@@ -3,24 +3,12 @@
3
3
  const { ActivityFlags } = require('discord-api-types/v10');
4
4
  const BitField = require('./BitField');
5
5
 
6
- /**
7
- * Data structure that makes it easy to interact with an {@link Activity#flags} bitfield.
8
- * @extends {BitField}
9
- */
6
+
10
7
  class ActivityFlagsBitField extends BitField {
11
- /**
12
- * Numeric activity flags.
13
- * @type {ActivityFlags}
14
- * @memberof ActivityFlagsBitField
15
- */
8
+
16
9
  static Flags = ActivityFlags;
17
10
  }
18
11
 
19
- /**
20
- * @name ActivityFlagsBitField
21
- * @kind constructor
22
- * @memberof ActivityFlagsBitField
23
- * @param {BitFieldResolvable} [bits=0] Bit(s) to read from
24
- */
12
+
25
13
 
26
14
  module.exports = ActivityFlagsBitField;
@@ -3,24 +3,12 @@
3
3
  const { ApplicationFlags } = require('discord-api-types/v10');
4
4
  const BitField = require('./BitField');
5
5
 
6
- /**
7
- * Data structure that makes it easy to interact with a {@link ClientApplication#flags} bitfield.
8
- * @extends {BitField}
9
- */
6
+
10
7
  class ApplicationFlagsBitField extends BitField {
11
- /**
12
- * Numeric application flags. All available properties:
13
- * @type {ApplicationFlags}
14
- * @memberof ApplicationFlagsBitField
15
- */
8
+
16
9
  static Flags = ApplicationFlags;
17
10
  }
18
11
 
19
- /**
20
- * @name ApplicationFlagsBitField
21
- * @kind constructor
22
- * @memberof ApplicationFlagsBitField
23
- * @param {BitFieldResolvable} [bits=0] Bit(s) to read from
24
- */
12
+
25
13
 
26
14
  module.exports = ApplicationFlagsBitField;