@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.
- package/package.json +1 -1
- package/src/client/BaseClient.js +7 -28
- package/src/client/Client.js +116 -283
- package/src/client/WebhookClient.js +17 -59
- package/src/client/actions/Action.js +0 -10
- package/src/client/actions/ActionsManager.js +3 -3
- package/src/client/actions/ApplicationCommandPermissionsUpdate.js +2 -15
- package/src/client/actions/AutoModerationActionExecution.js +1 -6
- package/src/client/actions/AutoModerationRuleCreate.js +1 -6
- package/src/client/actions/AutoModerationRuleDelete.js +1 -6
- package/src/client/actions/AutoModerationRuleUpdate.js +1 -7
- package/src/client/actions/ChannelCreate.js +1 -5
- package/src/client/actions/ChannelDelete.js +1 -5
- package/src/client/actions/GuildAuditLogEntryCreate.js +1 -6
- package/src/client/actions/GuildBanAdd.js +1 -5
- package/src/client/actions/GuildBanRemove.js +1 -5
- package/src/client/actions/GuildDelete.js +6 -14
- package/src/client/actions/GuildEmojiCreate.js +1 -5
- package/src/client/actions/GuildEmojiDelete.js +1 -5
- package/src/client/actions/GuildEmojiUpdate.js +1 -6
- package/src/client/actions/GuildEmojisUpdate.js +4 -4
- package/src/client/actions/GuildIntegrationsUpdate.js +1 -5
- package/src/client/actions/GuildMemberRemove.js +1 -5
- package/src/client/actions/GuildMemberUpdate.js +2 -11
- package/src/client/actions/GuildRoleCreate.js +1 -5
- package/src/client/actions/GuildRoleDelete.js +1 -5
- package/src/client/actions/GuildRoleUpdate.js +1 -6
- package/src/client/actions/GuildScheduledEventCreate.js +1 -5
- package/src/client/actions/GuildScheduledEventDelete.js +1 -5
- package/src/client/actions/GuildScheduledEventUpdate.js +1 -6
- package/src/client/actions/GuildScheduledEventUserAdd.js +1 -6
- package/src/client/actions/GuildScheduledEventUserRemove.js +1 -6
- package/src/client/actions/GuildStickerCreate.js +1 -5
- package/src/client/actions/GuildStickerDelete.js +1 -5
- package/src/client/actions/GuildStickerUpdate.js +1 -6
- package/src/client/actions/GuildStickersUpdate.js +4 -4
- package/src/client/actions/GuildUpdate.js +1 -6
- package/src/client/actions/InteractionCreate.js +3 -7
- package/src/client/actions/InviteCreate.js +1 -7
- package/src/client/actions/InviteDelete.js +1 -7
- package/src/client/actions/MessageCreate.js +1 -5
- package/src/client/actions/MessageDelete.js +1 -5
- package/src/client/actions/MessageDeleteBulk.js +1 -6
- package/src/client/actions/MessageReactionAdd.js +5 -18
- package/src/client/actions/MessageReactionRemove.js +5 -16
- package/src/client/actions/MessageReactionRemoveAll.js +4 -9
- package/src/client/actions/MessageReactionRemoveEmoji.js +1 -5
- package/src/client/actions/PresenceUpdate.js +1 -6
- package/src/client/actions/StageInstanceCreate.js +1 -5
- package/src/client/actions/StageInstanceDelete.js +1 -5
- package/src/client/actions/StageInstanceUpdate.js +1 -6
- package/src/client/actions/ThreadCreate.js +1 -6
- package/src/client/actions/ThreadDelete.js +1 -5
- package/src/client/actions/ThreadListSync.js +2 -7
- package/src/client/actions/ThreadMemberUpdate.js +2 -7
- package/src/client/actions/ThreadMembersUpdate.js +2 -9
- package/src/client/actions/TypingStart.js +1 -5
- package/src/client/actions/UserUpdate.js +1 -8
- package/src/client/actions/VoiceStateUpdate.js +4 -9
- package/src/client/actions/WebhooksUpdate.js +1 -6
- package/src/client/voice/ClientVoiceManager.js +3 -13
- package/src/client/websocket/WebSocketManager.js +25 -117
- package/src/client/websocket/WebSocketShard.js +29 -116
- package/src/client/websocket/handlers/CHANNEL_PINS_UPDATE.js +2 -8
- package/src/client/websocket/handlers/CHANNEL_UPDATE.js +1 -6
- package/src/client/websocket/handlers/GUILD_CREATE.js +3 -7
- package/src/client/websocket/handlers/GUILD_MEMBERS_CHUNK.js +2 -16
- package/src/client/websocket/handlers/GUILD_MEMBER_ADD.js +1 -5
- package/src/client/websocket/handlers/MESSAGE_UPDATE.js +1 -6
- package/src/client/websocket/handlers/RESUMED.js +1 -6
- package/src/client/websocket/handlers/THREAD_UPDATE.js +1 -6
- package/src/errors/DJSError.js +3 -14
- package/src/errors/ErrorCodes.js +2 -164
- package/src/index.js +6 -6
- package/src/managers/ApplicationCommandManager.js +14 -130
- package/src/managers/ApplicationCommandPermissionsManager.js +31 -202
- package/src/managers/AutoModerationRuleManager.js +17 -145
- package/src/managers/BaseGuildEmojiManager.js +7 -38
- package/src/managers/BaseManager.js +2 -10
- package/src/managers/CachedManager.js +3 -17
- package/src/managers/CategoryChannelChildManager.js +6 -48
- package/src/managers/ChannelManager.js +11 -52
- package/src/managers/DataManager.js +5 -27
- package/src/managers/GuildApplicationCommandManager.js +3 -12
- package/src/managers/GuildBanManager.js +16 -105
- package/src/managers/GuildChannelManager.js +31 -226
- package/src/managers/GuildEmojiManager.js +9 -65
- package/src/managers/GuildEmojiRoleManager.js +8 -47
- package/src/managers/GuildForumThreadManager.js +5 -39
- package/src/managers/GuildInviteManager.js +18 -117
- package/src/managers/GuildManager.js +14 -115
- package/src/managers/GuildMemberManager.js +38 -256
- package/src/managers/GuildMemberRoleManager.js +13 -76
- package/src/managers/GuildScheduledEventManager.js +25 -128
- package/src/managers/GuildStickerManager.js +16 -96
- package/src/managers/GuildTextThreadManager.js +4 -47
- package/src/managers/MessageManager.js +23 -137
- package/src/managers/PermissionOverwriteManager.js +10 -78
- package/src/managers/PresenceManager.js +6 -27
- package/src/managers/ReactionManager.js +7 -40
- package/src/managers/ReactionUserManager.js +6 -29
- package/src/managers/RoleManager.js +29 -177
- package/src/managers/StageInstanceManager.js +14 -77
- package/src/managers/ThreadManager.js +23 -113
- package/src/managers/ThreadMemberManager.js +20 -89
- package/src/managers/UserManager.js +13 -65
- package/src/managers/VoiceStateManager.js +3 -13
- package/src/sharding/Shard.js +42 -158
- package/src/sharding/ShardClientUtil.js +17 -101
- package/src/sharding/ShardingManager.js +34 -151
- package/src/structures/ActionRow.js +4 -21
- package/src/structures/ActionRowBuilder.js +3 -13
- package/src/structures/AnonymousGuild.js +10 -43
- package/src/structures/ApplicationCommand.js +54 -308
- package/src/structures/ApplicationRoleConnectionMetadata.js +7 -27
- package/src/structures/Attachment.js +16 -65
- package/src/structures/AttachmentBuilder.js +13 -58
- package/src/structures/AutoModerationActionExecution.js +16 -69
- package/src/structures/AutoModerationRule.js +32 -164
- package/src/structures/AutocompleteInteraction.js +10 -52
- package/src/structures/Base.js +2 -10
- package/src/structures/BaseChannel.js +16 -80
- package/src/structures/BaseGuild.js +13 -59
- package/src/structures/BaseGuildEmoji.js +5 -21
- package/src/structures/BaseGuildTextChannel.js +19 -100
- package/src/structures/BaseGuildVoiceChannel.js +21 -110
- package/src/structures/BaseInteraction.js +40 -196
- package/src/structures/BaseSelectMenuComponent.js +6 -29
- package/src/structures/ButtonBuilder.js +4 -18
- package/src/structures/ButtonComponent.js +7 -34
- package/src/structures/ButtonInteraction.js +1 -4
- package/src/structures/CategoryChannel.js +5 -30
- package/src/structures/ChannelSelectMenuBuilder.js +3 -13
- package/src/structures/ChannelSelectMenuComponent.js +2 -9
- package/src/structures/ChannelSelectMenuInteraction.js +3 -12
- package/src/structures/ChatInputCommandInteraction.js +3 -13
- package/src/structures/ClientApplication.js +20 -83
- package/src/structures/ClientPresence.js +5 -20
- package/src/structures/ClientUser.js +21 -118
- package/src/structures/CommandInteraction.js +21 -96
- package/src/structures/CommandInteractionOptionResolver.js +26 -147
- package/src/structures/Component.js +5 -21
- package/src/structures/ContextMenuCommandInteraction.js +4 -18
- package/src/structures/DMChannel.js +17 -52
- package/src/structures/DirectoryChannel.js +4 -16
- package/src/structures/Embed.js +21 -107
- package/src/structures/EmbedBuilder.js +4 -18
- package/src/structures/Emoji.js +12 -60
- package/src/structures/ForumChannel.js +30 -140
- package/src/structures/Guild.js +117 -697
- package/src/structures/GuildAuditLogs.js +7 -32
- package/src/structures/GuildAuditLogsEntry.js +27 -135
- package/src/structures/GuildBan.js +6 -26
- package/src/structures/GuildChannel.js +36 -188
- package/src/structures/GuildEmoji.js +13 -67
- package/src/structures/GuildMember.js +47 -270
- package/src/structures/GuildPreview.js +19 -84
- package/src/structures/GuildPreviewEmoji.js +3 -13
- package/src/structures/GuildScheduledEvent.js +46 -250
- package/src/structures/GuildTemplate.js +24 -108
- package/src/structures/Integration.js +25 -103
- package/src/structures/IntegrationApplication.js +8 -32
- package/src/structures/InteractionCollector.js +22 -113
- package/src/structures/InteractionResponse.js +11 -46
- package/src/structures/InteractionWebhook.js +8 -33
- package/src/structures/Invite.js +27 -131
- package/src/structures/InviteGuild.js +2 -8
- package/src/structures/InviteStageInstance.js +9 -39
- package/src/structures/MentionableSelectMenuBuilder.js +3 -14
- package/src/structures/MentionableSelectMenuComponent.js +1 -4
- package/src/structures/MentionableSelectMenuInteraction.js +5 -20
- package/src/structures/Message.js +85 -460
- package/src/structures/MessageCollector.js +14 -70
- package/src/structures/MessageComponentInteraction.js +14 -57
- package/src/structures/MessageContextMenuCommandInteraction.js +2 -9
- package/src/structures/MessageMentions.js +25 -136
- package/src/structures/MessagePayload.js +24 -94
- package/src/structures/MessageReaction.js +13 -51
- package/src/structures/ModalBuilder.js +3 -13
- package/src/structures/ModalSubmitFields.js +5 -22
- package/src/structures/ModalSubmitInteraction.js +17 -61
- package/src/structures/NewsChannel.js +2 -16
- package/src/structures/OAuth2Guild.js +3 -12
- package/src/structures/PartialGroupDMChannel.js +7 -27
- package/src/structures/PermissionOverwrites.js +20 -99
- package/src/structures/Presence.js +45 -190
- package/src/structures/ReactionCollector.js +20 -108
- package/src/structures/ReactionEmoji.js +2 -10
- package/src/structures/Role.js +39 -261
- package/src/structures/RoleSelectMenuBuilder.js +3 -13
- package/src/structures/RoleSelectMenuComponent.js +1 -4
- package/src/structures/RoleSelectMenuInteraction.js +3 -12
- package/src/structures/SelectMenuBuilder.js +1 -4
- package/src/structures/SelectMenuComponent.js +1 -4
- package/src/structures/SelectMenuInteraction.js +1 -4
- package/src/structures/SelectMenuOptionBuilder.js +1 -4
- package/src/structures/StageChannel.js +12 -84
- package/src/structures/StageInstance.js +16 -87
- package/src/structures/Sticker.js +25 -124
- package/src/structures/StickerPack.js +12 -52
- package/src/structures/StringSelectMenuBuilder.js +6 -29
- package/src/structures/StringSelectMenuComponent.js +2 -9
- package/src/structures/StringSelectMenuInteraction.js +2 -8
- package/src/structures/StringSelectMenuOptionBuilder.js +4 -18
- package/src/structures/Team.js +11 -52
- package/src/structures/TeamMember.js +7 -33
- package/src/structures/TextChannel.js +3 -14
- package/src/structures/TextInputBuilder.js +3 -13
- package/src/structures/TextInputComponent.js +3 -14
- package/src/structures/ThreadChannel.js +59 -305
- package/src/structures/ThreadMember.js +12 -55
- package/src/structures/Typing.js +8 -35
- package/src/structures/User.js +29 -151
- package/src/structures/UserContextMenuCommandInteraction.js +3 -14
- package/src/structures/UserSelectMenuBuilder.js +3 -13
- package/src/structures/UserSelectMenuComponent.js +1 -4
- package/src/structures/UserSelectMenuInteraction.js +4 -16
- package/src/structures/VoiceChannel.js +8 -67
- package/src/structures/VoiceRegion.js +6 -23
- package/src/structures/VoiceState.js +28 -140
- package/src/structures/Webhook.js +37 -227
- package/src/structures/WelcomeChannel.js +7 -29
- package/src/structures/WelcomeScreen.js +5 -20
- package/src/structures/Widget.js +9 -40
- package/src/structures/WidgetMember.js +15 -61
- package/src/structures/interfaces/Application.js +10 -49
- package/src/structures/interfaces/Collector.js +34 -155
- package/src/structures/interfaces/InteractionResponses.js +25 -164
- package/src/structures/interfaces/TextBasedChannel.js +37 -232
- package/src/util/APITypes.js +183 -456
- package/src/util/ActivityFlagsBitField.js +3 -15
- package/src/util/ApplicationFlagsBitField.js +3 -15
- package/src/util/BitField.js +17 -82
- package/src/util/ChannelFlagsBitField.js +7 -30
- package/src/util/Channels.js +5 -35
- package/src/util/Colors.js +3 -38
- package/src/util/Components.js +21 -75
- package/src/util/Constants.js +17 -144
- package/src/util/DataResolver.js +20 -77
- package/src/util/Events.js +3 -81
- package/src/util/Formatters.js +58 -305
- package/src/util/GuildMemberFlagsBitField.js +7 -30
- package/src/util/IntentsBitField.js +4 -23
- package/src/util/LimitedCollection.js +4 -21
- package/src/util/MessageFlagsBitField.js +5 -21
- package/src/util/Options.js +24 -137
- package/src/util/Partials.js +3 -30
- package/src/util/PermissionsBitField.js +12 -67
- package/src/util/ShardEvents.js +3 -15
- package/src/util/Status.js +3 -17
- package/src/util/Sweepers.js +35 -184
- package/src/util/SystemChannelFlagsBitField.js +7 -32
- package/src/util/ThreadMemberFlagsBitField.js +5 -21
- package/src/util/Transformers.js +2 -11
- package/src/util/UserFlagsBitField.js +5 -21
- package/src/util/Util.js +30 -169
- package/src/util/WebSocketShardEvents.js +3 -14
|
@@ -3,18 +3,12 @@
|
|
|
3
3
|
const AnonymousGuild = require('./AnonymousGuild');
|
|
4
4
|
const WelcomeScreen = require('./WelcomeScreen');
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
* Represents a guild received from an invite, includes welcome screen data if available.
|
|
8
|
-
* @extends {AnonymousGuild}
|
|
9
|
-
*/
|
|
6
|
+
|
|
10
7
|
class InviteGuild extends AnonymousGuild {
|
|
11
8
|
constructor(client, data) {
|
|
12
9
|
super(client, data);
|
|
13
10
|
|
|
14
|
-
|
|
15
|
-
* The welcome screen for this invite guild
|
|
16
|
-
* @type {?WelcomeScreen}
|
|
17
|
-
*/
|
|
11
|
+
|
|
18
12
|
this.welcomeScreen = data.welcome_screen !== undefined ? new WelcomeScreen(this, data.welcome_screen) : null;
|
|
19
13
|
}
|
|
20
14
|
}
|
|
@@ -3,31 +3,18 @@
|
|
|
3
3
|
const { Collection } = require('@discordjs/collection');
|
|
4
4
|
const Base = require('./Base');
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
* Represents the data about a public {@link StageInstance} in an {@link Invite}.
|
|
8
|
-
* @extends {Base}
|
|
9
|
-
* @deprecated
|
|
10
|
-
*/
|
|
6
|
+
|
|
11
7
|
class InviteStageInstance extends Base {
|
|
12
8
|
constructor(client, data, channelId, guildId) {
|
|
13
9
|
super(client);
|
|
14
10
|
|
|
15
|
-
|
|
16
|
-
* The id of the stage channel this invite is for
|
|
17
|
-
* @type {Snowflake}
|
|
18
|
-
*/
|
|
11
|
+
|
|
19
12
|
this.channelId = channelId;
|
|
20
13
|
|
|
21
|
-
|
|
22
|
-
* The stage channel's guild id
|
|
23
|
-
* @type {Snowflake}
|
|
24
|
-
*/
|
|
14
|
+
|
|
25
15
|
this.guildId = guildId;
|
|
26
16
|
|
|
27
|
-
|
|
28
|
-
* The members speaking in the stage channel
|
|
29
|
-
* @type {Collection<Snowflake, GuildMember>}
|
|
30
|
-
*/
|
|
17
|
+
|
|
31
18
|
this.members = new Collection();
|
|
32
19
|
|
|
33
20
|
this._patch(data);
|
|
@@ -35,26 +22,17 @@ class InviteStageInstance extends Base {
|
|
|
35
22
|
|
|
36
23
|
_patch(data) {
|
|
37
24
|
if ('topic' in data) {
|
|
38
|
-
|
|
39
|
-
* The topic of the stage instance
|
|
40
|
-
* @type {string}
|
|
41
|
-
*/
|
|
25
|
+
|
|
42
26
|
this.topic = data.topic;
|
|
43
27
|
}
|
|
44
28
|
|
|
45
29
|
if ('participant_count' in data) {
|
|
46
|
-
|
|
47
|
-
* The number of users in the stage channel
|
|
48
|
-
* @type {number}
|
|
49
|
-
*/
|
|
30
|
+
|
|
50
31
|
this.participantCount = data.participant_count;
|
|
51
32
|
}
|
|
52
33
|
|
|
53
34
|
if ('speaker_count' in data) {
|
|
54
|
-
|
|
55
|
-
* The number of users speaking in the stage channel
|
|
56
|
-
* @type {number}
|
|
57
|
-
*/
|
|
35
|
+
|
|
58
36
|
this.speakerCount = data.speaker_count;
|
|
59
37
|
}
|
|
60
38
|
|
|
@@ -65,20 +43,12 @@ class InviteStageInstance extends Base {
|
|
|
65
43
|
}
|
|
66
44
|
}
|
|
67
45
|
|
|
68
|
-
|
|
69
|
-
* The stage channel this invite is for
|
|
70
|
-
* @type {?StageChannel}
|
|
71
|
-
* @readonly
|
|
72
|
-
*/
|
|
46
|
+
|
|
73
47
|
get channel() {
|
|
74
48
|
return this.client.channels.resolve(this.channelId);
|
|
75
49
|
}
|
|
76
50
|
|
|
77
|
-
|
|
78
|
-
* The guild of the stage channel this invite is for
|
|
79
|
-
* @type {?Guild}
|
|
80
|
-
* @readonly
|
|
81
|
-
*/
|
|
51
|
+
|
|
82
52
|
get guild() {
|
|
83
53
|
return this.client.guilds.resolve(this.guildId);
|
|
84
54
|
}
|
|
@@ -4,21 +4,13 @@ const { MentionableSelectMenuBuilder: BuildersMentionableSelectMenu } = require(
|
|
|
4
4
|
const { isJSONEncodable } = require('@discordjs/util');
|
|
5
5
|
const { toSnakeCase } = require('../util/Transformers');
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
* Class used to build select menu components to be sent through the API
|
|
9
|
-
* @extends {BuildersMentionableSelectMenu}
|
|
10
|
-
*/
|
|
7
|
+
|
|
11
8
|
class MentionableSelectMenuBuilder extends BuildersMentionableSelectMenu {
|
|
12
9
|
constructor(data = {}) {
|
|
13
10
|
super(toSnakeCase(data));
|
|
14
11
|
}
|
|
15
12
|
|
|
16
|
-
|
|
17
|
-
* Creates a new select menu builder from JSON data
|
|
18
|
-
* @param {MentionableSelectMenuBuilder|MentionableSelectMenuComponent|APIMentionableSelectComponent} other
|
|
19
|
-
* The other data
|
|
20
|
-
* @returns {MentionableSelectMenuBuilder}
|
|
21
|
-
*/
|
|
13
|
+
|
|
22
14
|
static from(other) {
|
|
23
15
|
return new this(isJSONEncodable(other) ? other.toJSON() : other);
|
|
24
16
|
}
|
|
@@ -26,7 +18,4 @@ class MentionableSelectMenuBuilder extends BuildersMentionableSelectMenu {
|
|
|
26
18
|
|
|
27
19
|
module.exports = MentionableSelectMenuBuilder;
|
|
28
20
|
|
|
29
|
-
|
|
30
|
-
* @external BuildersMentionableSelectMenu
|
|
31
|
-
* @see {@link https://discord.js.org/docs/packages/builders/stable/MentionableSelectMenuBuilder:Class}
|
|
32
|
-
*/
|
|
21
|
+
|
|
@@ -2,10 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
const BaseSelectMenuComponent = require('./BaseSelectMenuComponent');
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
* Represents a mentionable select menu component
|
|
7
|
-
* @extends {BaseSelectMenuComponent}
|
|
8
|
-
*/
|
|
5
|
+
|
|
9
6
|
class MentionableSelectMenuComponent extends BaseSelectMenuComponent {}
|
|
10
7
|
|
|
11
8
|
module.exports = MentionableSelectMenuComponent;
|
|
@@ -4,38 +4,23 @@ const { Collection } = require('@discordjs/collection');
|
|
|
4
4
|
const MessageComponentInteraction = require('./MessageComponentInteraction');
|
|
5
5
|
const Events = require('../util/Events');
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
* Represents a {@link ComponentType.MentionableSelect} select menu interaction.
|
|
9
|
-
* @extends {MessageComponentInteraction}
|
|
10
|
-
*/
|
|
7
|
+
|
|
11
8
|
class MentionableSelectMenuInteraction extends MessageComponentInteraction {
|
|
12
9
|
constructor(client, data) {
|
|
13
10
|
super(client, data);
|
|
14
11
|
const { resolved, values } = data.data;
|
|
15
12
|
const { members, users, roles } = resolved ?? {};
|
|
16
13
|
|
|
17
|
-
|
|
18
|
-
* An array of the selected user and role ids
|
|
19
|
-
* @type {Snowflake[]}
|
|
20
|
-
*/
|
|
14
|
+
|
|
21
15
|
this.values = values ?? [];
|
|
22
16
|
|
|
23
|
-
|
|
24
|
-
* Collection of the selected users
|
|
25
|
-
* @type {Collection<Snowflake, User>}
|
|
26
|
-
*/
|
|
17
|
+
|
|
27
18
|
this.users = new Collection();
|
|
28
19
|
|
|
29
|
-
|
|
30
|
-
* Collection of the selected users
|
|
31
|
-
* @type {Collection<Snowflake, GuildMember|APIGuildMember>}
|
|
32
|
-
*/
|
|
20
|
+
|
|
33
21
|
this.members = new Collection();
|
|
34
22
|
|
|
35
|
-
|
|
36
|
-
* Collection of the selected roles
|
|
37
|
-
* @type {Collection<Snowflake, Role|APIRole>}
|
|
38
|
-
*/
|
|
23
|
+
|
|
39
24
|
this.roles = new Collection();
|
|
40
25
|
|
|
41
26
|
if (members) {
|