@velliajs/discord 1.0.0
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/LICENSE +191 -0
- package/README.md +133 -0
- package/package.json +82 -0
- package/src/client/BaseClient.js +83 -0
- package/src/client/Client.js +591 -0
- package/src/client/WebhookClient.js +103 -0
- package/src/client/actions/Action.js +119 -0
- package/src/client/actions/ActionsManager.js +79 -0
- package/src/client/actions/ApplicationCommandPermissionsUpdate.js +34 -0
- package/src/client/actions/AutoModerationActionExecution.js +26 -0
- package/src/client/actions/AutoModerationRuleCreate.js +27 -0
- package/src/client/actions/AutoModerationRuleDelete.js +31 -0
- package/src/client/actions/AutoModerationRuleUpdate.js +29 -0
- package/src/client/actions/ChannelCreate.js +23 -0
- package/src/client/actions/ChannelDelete.js +23 -0
- package/src/client/actions/ChannelUpdate.js +33 -0
- package/src/client/actions/GuildAuditLogEntryCreate.js +29 -0
- package/src/client/actions/GuildBanAdd.js +20 -0
- package/src/client/actions/GuildBanRemove.js +25 -0
- package/src/client/actions/GuildChannelsPositionUpdate.js +21 -0
- package/src/client/actions/GuildDelete.js +44 -0
- package/src/client/actions/GuildEmojiCreate.js +20 -0
- package/src/client/actions/GuildEmojiDelete.js +19 -0
- package/src/client/actions/GuildEmojiUpdate.js +20 -0
- package/src/client/actions/GuildEmojisUpdate.js +34 -0
- package/src/client/actions/GuildIntegrationsUpdate.js +19 -0
- package/src/client/actions/GuildMemberRemove.js +31 -0
- package/src/client/actions/GuildMemberUpdate.js +44 -0
- package/src/client/actions/GuildRoleCreate.js +25 -0
- package/src/client/actions/GuildRoleDelete.js +29 -0
- package/src/client/actions/GuildRoleUpdate.js +39 -0
- package/src/client/actions/GuildRolesPositionUpdate.js +21 -0
- package/src/client/actions/GuildScheduledEventCreate.js +27 -0
- package/src/client/actions/GuildScheduledEventDelete.js +31 -0
- package/src/client/actions/GuildScheduledEventUpdate.js +30 -0
- package/src/client/actions/GuildScheduledEventUserAdd.js +32 -0
- package/src/client/actions/GuildScheduledEventUserRemove.js +32 -0
- package/src/client/actions/GuildStickerCreate.js +20 -0
- package/src/client/actions/GuildStickerDelete.js +19 -0
- package/src/client/actions/GuildStickerUpdate.js +20 -0
- package/src/client/actions/GuildStickersUpdate.js +34 -0
- package/src/client/actions/GuildUpdate.js +33 -0
- package/src/client/actions/InteractionCreate.js +101 -0
- package/src/client/actions/InviteCreate.js +28 -0
- package/src/client/actions/InviteDelete.js +30 -0
- package/src/client/actions/MessageCreate.js +37 -0
- package/src/client/actions/MessageDelete.js +32 -0
- package/src/client/actions/MessageDeleteBulk.js +47 -0
- package/src/client/actions/MessageReactionAdd.js +55 -0
- package/src/client/actions/MessageReactionRemove.js +45 -0
- package/src/client/actions/MessageReactionRemoveAll.js +33 -0
- package/src/client/actions/MessageReactionRemoveEmoji.js +28 -0
- package/src/client/actions/MessageUpdate.js +26 -0
- package/src/client/actions/PresenceUpdate.js +42 -0
- package/src/client/actions/StageInstanceCreate.js +28 -0
- package/src/client/actions/StageInstanceDelete.js +31 -0
- package/src/client/actions/StageInstanceUpdate.js +30 -0
- package/src/client/actions/ThreadCreate.js +24 -0
- package/src/client/actions/ThreadDelete.js +26 -0
- package/src/client/actions/ThreadListSync.js +60 -0
- package/src/client/actions/ThreadMemberUpdate.js +30 -0
- package/src/client/actions/ThreadMembersUpdate.js +47 -0
- package/src/client/actions/TypingStart.js +29 -0
- package/src/client/actions/UserUpdate.js +36 -0
- package/src/client/actions/VoiceStateUpdate.js +43 -0
- package/src/client/actions/WebhooksUpdate.js +20 -0
- package/src/client/voice/ClientVoiceManager.js +44 -0
- package/src/client/websocket/WebSocketManager.js +393 -0
- package/src/client/websocket/WebSocketShard.js +231 -0
- package/src/client/websocket/handlers/APPLICATION_COMMAND_PERMISSIONS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/AUTO_MODERATION_ACTION_EXECUTION.js +5 -0
- package/src/client/websocket/handlers/AUTO_MODERATION_RULE_CREATE.js +5 -0
- package/src/client/websocket/handlers/AUTO_MODERATION_RULE_DELETE.js +5 -0
- package/src/client/websocket/handlers/AUTO_MODERATION_RULE_UPDATE.js +5 -0
- package/src/client/websocket/handlers/CHANNEL_CREATE.js +5 -0
- package/src/client/websocket/handlers/CHANNEL_DELETE.js +5 -0
- package/src/client/websocket/handlers/CHANNEL_PINS_UPDATE.js +22 -0
- package/src/client/websocket/handlers/CHANNEL_UPDATE.js +16 -0
- package/src/client/websocket/handlers/GUILD_AUDIT_LOG_ENTRY_CREATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_BAN_ADD.js +5 -0
- package/src/client/websocket/handlers/GUILD_BAN_REMOVE.js +5 -0
- package/src/client/websocket/handlers/GUILD_CREATE.js +26 -0
- package/src/client/websocket/handlers/GUILD_DELETE.js +5 -0
- package/src/client/websocket/handlers/GUILD_EMOJIS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_INTEGRATIONS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_MEMBERS_CHUNK.js +39 -0
- package/src/client/websocket/handlers/GUILD_MEMBER_ADD.js +20 -0
- package/src/client/websocket/handlers/GUILD_MEMBER_REMOVE.js +5 -0
- package/src/client/websocket/handlers/GUILD_MEMBER_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_ROLE_CREATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_ROLE_DELETE.js +5 -0
- package/src/client/websocket/handlers/GUILD_ROLE_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_CREATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_DELETE.js +5 -0
- package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_USER_ADD.js +5 -0
- package/src/client/websocket/handlers/GUILD_SCHEDULED_EVENT_USER_REMOVE.js +5 -0
- package/src/client/websocket/handlers/GUILD_STICKERS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/GUILD_UPDATE.js +5 -0
- package/src/client/websocket/handlers/INTERACTION_CREATE.js +5 -0
- package/src/client/websocket/handlers/INVITE_CREATE.js +5 -0
- package/src/client/websocket/handlers/INVITE_DELETE.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_CREATE.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_DELETE.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_DELETE_BULK.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_REACTION_ADD.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_ALL.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_EMOJI.js +5 -0
- package/src/client/websocket/handlers/MESSAGE_UPDATE.js +16 -0
- package/src/client/websocket/handlers/PRESENCE_UPDATE.js +5 -0
- package/src/client/websocket/handlers/READY.js +27 -0
- package/src/client/websocket/handlers/RESUMED.js +14 -0
- package/src/client/websocket/handlers/STAGE_INSTANCE_CREATE.js +5 -0
- package/src/client/websocket/handlers/STAGE_INSTANCE_DELETE.js +5 -0
- package/src/client/websocket/handlers/STAGE_INSTANCE_UPDATE.js +5 -0
- package/src/client/websocket/handlers/THREAD_CREATE.js +5 -0
- package/src/client/websocket/handlers/THREAD_DELETE.js +5 -0
- package/src/client/websocket/handlers/THREAD_LIST_SYNC.js +5 -0
- package/src/client/websocket/handlers/THREAD_MEMBERS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/THREAD_MEMBER_UPDATE.js +5 -0
- package/src/client/websocket/handlers/THREAD_UPDATE.js +16 -0
- package/src/client/websocket/handlers/TYPING_START.js +5 -0
- package/src/client/websocket/handlers/USER_UPDATE.js +5 -0
- package/src/client/websocket/handlers/VOICE_SERVER_UPDATE.js +6 -0
- package/src/client/websocket/handlers/VOICE_STATE_UPDATE.js +5 -0
- package/src/client/websocket/handlers/WEBHOOKS_UPDATE.js +5 -0
- package/src/client/websocket/handlers/index.js +64 -0
- package/src/errors/DJSError.js +48 -0
- package/src/errors/ErrorCodes.js +319 -0
- package/src/errors/Messages.js +170 -0
- package/src/errors/index.js +5 -0
- package/src/index.js +213 -0
- package/src/managers/ApplicationCommandManager.js +263 -0
- package/src/managers/ApplicationCommandPermissionsManager.js +434 -0
- package/src/managers/AutoModerationRuleManager.js +288 -0
- package/src/managers/BaseGuildEmojiManager.js +80 -0
- package/src/managers/BaseManager.js +19 -0
- package/src/managers/CachedManager.js +57 -0
- package/src/managers/CategoryChannelChildManager.js +77 -0
- package/src/managers/ChannelManager.js +128 -0
- package/src/managers/DataManager.js +61 -0
- package/src/managers/GuildApplicationCommandManager.js +28 -0
- package/src/managers/GuildBanManager.js +204 -0
- package/src/managers/GuildChannelManager.js +494 -0
- package/src/managers/GuildEmojiManager.js +174 -0
- package/src/managers/GuildEmojiRoleManager.js +118 -0
- package/src/managers/GuildForumThreadManager.js +83 -0
- package/src/managers/GuildInviteManager.js +213 -0
- package/src/managers/GuildManager.js +283 -0
- package/src/managers/GuildMemberManager.js +540 -0
- package/src/managers/GuildMemberRoleManager.js +204 -0
- package/src/managers/GuildScheduledEventManager.js +297 -0
- package/src/managers/GuildStickerManager.js +182 -0
- package/src/managers/GuildTextThreadManager.js +91 -0
- package/src/managers/MessageManager.js +259 -0
- package/src/managers/PermissionOverwriteManager.js +168 -0
- package/src/managers/PresenceManager.js +58 -0
- package/src/managers/ReactionManager.js +68 -0
- package/src/managers/ReactionUserManager.js +77 -0
- package/src/managers/RoleManager.js +360 -0
- package/src/managers/StageInstanceManager.js +154 -0
- package/src/managers/ThreadManager.js +204 -0
- package/src/managers/ThreadMemberManager.js +182 -0
- package/src/managers/UserManager.js +139 -0
- package/src/managers/VoiceStateManager.js +37 -0
- package/src/sharding/Shard.js +457 -0
- package/src/sharding/ShardClientUtil.js +285 -0
- package/src/sharding/ShardingManager.js +326 -0
- package/src/structures/ActionRow.js +46 -0
- package/src/structures/ActionRowBuilder.js +35 -0
- package/src/structures/AnonymousGuild.js +97 -0
- package/src/structures/ApplicationCommand.js +606 -0
- package/src/structures/ApplicationRoleConnectionMetadata.js +46 -0
- package/src/structures/Attachment.js +140 -0
- package/src/structures/AttachmentBuilder.js +116 -0
- package/src/structures/AutoModerationActionExecution.js +116 -0
- package/src/structures/AutoModerationRule.js +284 -0
- package/src/structures/AutocompleteInteraction.js +97 -0
- package/src/structures/Base.js +43 -0
- package/src/structures/BaseChannel.js +160 -0
- package/src/structures/BaseGuild.js +119 -0
- package/src/structures/BaseGuildEmoji.js +56 -0
- package/src/structures/BaseGuildTextChannel.js +186 -0
- package/src/structures/BaseGuildVoiceChannel.js +234 -0
- package/src/structures/BaseInteraction.js +344 -0
- package/src/structures/BaseSelectMenuComponent.js +56 -0
- package/src/structures/ButtonBuilder.js +44 -0
- package/src/structures/ButtonComponent.js +65 -0
- package/src/structures/ButtonInteraction.js +11 -0
- package/src/structures/CategoryChannel.js +45 -0
- package/src/structures/ChannelSelectMenuBuilder.js +31 -0
- package/src/structures/ChannelSelectMenuComponent.js +20 -0
- package/src/structures/ChannelSelectMenuInteraction.js +33 -0
- package/src/structures/ChatInputCommandInteraction.js +41 -0
- package/src/structures/ClientApplication.js +193 -0
- package/src/structures/ClientPresence.js +82 -0
- package/src/structures/ClientUser.js +185 -0
- package/src/structures/CommandInteraction.js +224 -0
- package/src/structures/CommandInteractionOptionResolver.js +308 -0
- package/src/structures/Component.js +47 -0
- package/src/structures/ContextMenuCommandInteraction.js +64 -0
- package/src/structures/DMChannel.js +129 -0
- package/src/structures/DirectoryChannel.js +36 -0
- package/src/structures/Embed.js +220 -0
- package/src/structures/EmbedBuilder.js +41 -0
- package/src/structures/Emoji.js +108 -0
- package/src/structures/ForumChannel.js +264 -0
- package/src/structures/Guild.js +1361 -0
- package/src/structures/GuildAuditLogs.js +91 -0
- package/src/structures/GuildAuditLogsEntry.js +527 -0
- package/src/structures/GuildBan.js +59 -0
- package/src/structures/GuildChannel.js +457 -0
- package/src/structures/GuildEmoji.js +148 -0
- package/src/structures/GuildMember.js +518 -0
- package/src/structures/GuildPreview.js +193 -0
- package/src/structures/GuildPreviewEmoji.js +27 -0
- package/src/structures/GuildScheduledEvent.js +439 -0
- package/src/structures/GuildTemplate.js +241 -0
- package/src/structures/Integration.js +220 -0
- package/src/structures/IntegrationApplication.js +85 -0
- package/src/structures/InteractionCollector.js +263 -0
- package/src/structures/InteractionResponse.js +102 -0
- package/src/structures/InteractionWebhook.js +59 -0
- package/src/structures/Invite.js +322 -0
- package/src/structures/InviteGuild.js +22 -0
- package/src/structures/InviteStageInstance.js +87 -0
- package/src/structures/MentionableSelectMenuBuilder.js +32 -0
- package/src/structures/MentionableSelectMenuComponent.js +11 -0
- package/src/structures/MentionableSelectMenuInteraction.js +71 -0
- package/src/structures/Message.js +997 -0
- package/src/structures/MessageCollector.js +146 -0
- package/src/structures/MessageComponentInteraction.js +107 -0
- package/src/structures/MessageContextMenuCommandInteraction.js +20 -0
- package/src/structures/MessageMentions.js +297 -0
- package/src/structures/MessagePayload.js +299 -0
- package/src/structures/MessageReaction.js +142 -0
- package/src/structures/ModalBuilder.js +34 -0
- package/src/structures/ModalSubmitFields.js +55 -0
- package/src/structures/ModalSubmitInteraction.js +121 -0
- package/src/structures/NewsChannel.js +32 -0
- package/src/structures/OAuth2Guild.js +28 -0
- package/src/structures/PartialGroupDMChannel.js +60 -0
- package/src/structures/PermissionOverwrites.js +196 -0
- package/src/structures/Presence.js +372 -0
- package/src/structures/ReactionCollector.js +229 -0
- package/src/structures/ReactionEmoji.js +31 -0
- package/src/structures/Role.js +458 -0
- package/src/structures/RoleSelectMenuBuilder.js +31 -0
- package/src/structures/RoleSelectMenuComponent.js +11 -0
- package/src/structures/RoleSelectMenuInteraction.js +33 -0
- package/src/structures/SelectMenuBuilder.js +26 -0
- package/src/structures/SelectMenuComponent.js +26 -0
- package/src/structures/SelectMenuInteraction.js +26 -0
- package/src/structures/SelectMenuOptionBuilder.js +26 -0
- package/src/structures/StageChannel.js +112 -0
- package/src/structures/StageInstance.js +167 -0
- package/src/structures/Sticker.js +272 -0
- package/src/structures/StickerPack.js +95 -0
- package/src/structures/StringSelectMenuBuilder.js +79 -0
- package/src/structures/StringSelectMenuComponent.js +20 -0
- package/src/structures/StringSelectMenuInteraction.js +21 -0
- package/src/structures/StringSelectMenuOptionBuilder.js +49 -0
- package/src/structures/Team.js +117 -0
- package/src/structures/TeamMember.js +70 -0
- package/src/structures/TextChannel.js +33 -0
- package/src/structures/TextInputBuilder.js +31 -0
- package/src/structures/TextInputComponent.js +29 -0
- package/src/structures/ThreadChannel.js +606 -0
- package/src/structures/ThreadMember.js +113 -0
- package/src/structures/Typing.js +74 -0
- package/src/structures/User.js +331 -0
- package/src/structures/UserContextMenuCommandInteraction.js +29 -0
- package/src/structures/UserSelectMenuBuilder.js +31 -0
- package/src/structures/UserSelectMenuComponent.js +11 -0
- package/src/structures/UserSelectMenuInteraction.js +51 -0
- package/src/structures/VoiceChannel.js +96 -0
- package/src/structures/VoiceRegion.js +46 -0
- package/src/structures/VoiceState.js +303 -0
- package/src/structures/Webhook.js +481 -0
- package/src/structures/WelcomeChannel.js +60 -0
- package/src/structures/WelcomeScreen.js +49 -0
- package/src/structures/Widget.js +88 -0
- package/src/structures/WidgetMember.js +99 -0
- package/src/structures/interfaces/Application.js +108 -0
- package/src/structures/interfaces/Collector.js +335 -0
- package/src/structures/interfaces/InteractionResponses.js +320 -0
- package/src/structures/interfaces/TextBasedChannel.js +413 -0
- package/src/util/APITypes.js +456 -0
- package/src/util/ActivityFlagsBitField.js +26 -0
- package/src/util/ApplicationFlagsBitField.js +26 -0
- package/src/util/BitField.js +176 -0
- package/src/util/ChannelFlagsBitField.js +41 -0
- package/src/util/Channels.js +150 -0
- package/src/util/Colors.js +73 -0
- package/src/util/Components.js +152 -0
- package/src/util/Constants.js +230 -0
- package/src/util/DataResolver.js +140 -0
- package/src/util/Enums.js +13 -0
- package/src/util/Events.js +160 -0
- package/src/util/Formatters.js +413 -0
- package/src/util/GuildMemberFlagsBitField.js +41 -0
- package/src/util/IntentsBitField.js +34 -0
- package/src/util/LimitedCollection.js +68 -0
- package/src/util/MessageFlagsBitField.js +32 -0
- package/src/util/Options.js +216 -0
- package/src/util/Partials.js +44 -0
- package/src/util/PermissionsBitField.js +104 -0
- package/src/util/ShardEvents.js +27 -0
- package/src/util/Status.js +33 -0
- package/src/util/Sweepers.js +467 -0
- package/src/util/SystemChannelFlagsBitField.js +43 -0
- package/src/util/ThreadMemberFlagsBitField.js +31 -0
- package/src/util/Transformers.js +36 -0
- package/src/util/UserFlagsBitField.js +32 -0
- package/src/util/Util.js +394 -0
- package/src/util/WebSocketShardEvents.js +25 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const BaseGuildVoiceChannel = require('./BaseGuildVoiceChannel');
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Represents a guild stage channel on Discord.
|
|
7
|
+
* @extends {BaseGuildVoiceChannel}
|
|
8
|
+
*/
|
|
9
|
+
class StageChannel extends BaseGuildVoiceChannel {
|
|
10
|
+
_patch(data) {
|
|
11
|
+
super._patch(data);
|
|
12
|
+
|
|
13
|
+
if ('topic' in data) {
|
|
14
|
+
/**
|
|
15
|
+
* The topic of the stage channel
|
|
16
|
+
* @type {?string}
|
|
17
|
+
*/
|
|
18
|
+
this.topic = data.topic;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* The stage instance of this stage channel, if it exists
|
|
24
|
+
* @type {?StageInstance}
|
|
25
|
+
* @readonly
|
|
26
|
+
*/
|
|
27
|
+
get stageInstance() {
|
|
28
|
+
return this.guild.stageInstances.cache.find(stageInstance => stageInstance.channelId === this.id) ?? null;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Creates a stage instance associated with this stage channel.
|
|
33
|
+
* @param {StageInstanceCreateOptions} options The options to create the stage instance
|
|
34
|
+
* @returns {Promise<StageInstance>}
|
|
35
|
+
*/
|
|
36
|
+
createStageInstance(options) {
|
|
37
|
+
return this.guild.stageInstances.create(this.id, options);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Sets a new topic for the guild channel.
|
|
42
|
+
* @param {?string} topic The new topic for the guild channel
|
|
43
|
+
* @param {string} [reason] Reason for changing the guild channel's topic
|
|
44
|
+
* @returns {Promise<StageChannel>}
|
|
45
|
+
* @example
|
|
46
|
+
* // Set a new channel topic
|
|
47
|
+
* stageChannel.setTopic('needs more rate limiting')
|
|
48
|
+
* .then(channel => console.log(`Channel's new topic is ${channel.topic}`))
|
|
49
|
+
* .catch(console.error);
|
|
50
|
+
*/
|
|
51
|
+
setTopic(topic, reason) {
|
|
52
|
+
return this.edit({ topic, reason });
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Sets the bitrate of the channel.
|
|
58
|
+
* @method setBitrate
|
|
59
|
+
* @memberof StageChannel
|
|
60
|
+
* @instance
|
|
61
|
+
* @param {number} bitrate The new bitrate
|
|
62
|
+
* @param {string} [reason] Reason for changing the channel's bitrate
|
|
63
|
+
* @returns {Promise<StageChannel>}
|
|
64
|
+
* @example
|
|
65
|
+
* // Set the bitrate of a voice channel
|
|
66
|
+
* stageChannel.setBitrate(48_000)
|
|
67
|
+
* .then(channel => console.log(`Set bitrate to ${channel.bitrate}bps for ${channel.name}`))
|
|
68
|
+
* .catch(console.error);
|
|
69
|
+
*/
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Sets the RTC region of the channel.
|
|
73
|
+
* @method setRTCRegion
|
|
74
|
+
* @memberof StageChannel
|
|
75
|
+
* @instance
|
|
76
|
+
* @param {?string} rtcRegion The new region of the channel. Set to `null` to remove a specific region for the channel
|
|
77
|
+
* @param {string} [reason] The reason for modifying this region.
|
|
78
|
+
* @returns {Promise<StageChannel>}
|
|
79
|
+
* @example
|
|
80
|
+
* // Set the RTC region to sydney
|
|
81
|
+
* stageChannel.setRTCRegion('sydney');
|
|
82
|
+
* @example
|
|
83
|
+
* // Remove a fixed region for this channel - let Discord decide automatically
|
|
84
|
+
* stageChannel.setRTCRegion(null, 'We want to let Discord decide.');
|
|
85
|
+
*/
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Sets the user limit of the channel.
|
|
89
|
+
* @method setUserLimit
|
|
90
|
+
* @memberof StageChannel
|
|
91
|
+
* @instance
|
|
92
|
+
* @param {number} userLimit The new user limit
|
|
93
|
+
* @param {string} [reason] Reason for changing the user limit
|
|
94
|
+
* @returns {Promise<StageChannel>}
|
|
95
|
+
* @example
|
|
96
|
+
* // Set the user limit of a voice channel
|
|
97
|
+
* stageChannel.setUserLimit(42)
|
|
98
|
+
* .then(channel => console.log(`Set user limit to ${channel.userLimit} for ${channel.name}`))
|
|
99
|
+
* .catch(console.error);
|
|
100
|
+
*/
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Sets the camera video quality mode of the channel.
|
|
104
|
+
* @method setVideoQualityMode
|
|
105
|
+
* @memberof StageChannel
|
|
106
|
+
* @instance
|
|
107
|
+
* @param {VideoQualityMode} videoQualityMode The new camera video quality mode.
|
|
108
|
+
* @param {string} [reason] Reason for changing the camera video quality mode.
|
|
109
|
+
* @returns {Promise<StageChannel>}
|
|
110
|
+
*/
|
|
111
|
+
|
|
112
|
+
module.exports = StageChannel;
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { DiscordSnowflake } = require('@sapphire/snowflake');
|
|
4
|
+
const Base = require('./Base');
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Represents a stage instance.
|
|
8
|
+
* @extends {Base}
|
|
9
|
+
*/
|
|
10
|
+
class StageInstance extends Base {
|
|
11
|
+
constructor(client, data) {
|
|
12
|
+
super(client);
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* The stage instance's id
|
|
16
|
+
* @type {Snowflake}
|
|
17
|
+
*/
|
|
18
|
+
this.id = data.id;
|
|
19
|
+
|
|
20
|
+
this._patch(data);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
_patch(data) {
|
|
24
|
+
if ('guild_id' in data) {
|
|
25
|
+
/**
|
|
26
|
+
* The id of the guild associated with the stage channel
|
|
27
|
+
* @type {Snowflake}
|
|
28
|
+
*/
|
|
29
|
+
this.guildId = data.guild_id;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
if ('channel_id' in data) {
|
|
33
|
+
/**
|
|
34
|
+
* The id of the channel associated with the stage channel
|
|
35
|
+
* @type {Snowflake}
|
|
36
|
+
*/
|
|
37
|
+
this.channelId = data.channel_id;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
if ('topic' in data) {
|
|
41
|
+
/**
|
|
42
|
+
* The topic of the stage instance
|
|
43
|
+
* @type {string}
|
|
44
|
+
*/
|
|
45
|
+
this.topic = data.topic;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
if ('privacy_level' in data) {
|
|
49
|
+
/**
|
|
50
|
+
* The privacy level of the stage instance
|
|
51
|
+
* @type {StageInstancePrivacyLevel}
|
|
52
|
+
*/
|
|
53
|
+
this.privacyLevel = data.privacy_level;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
if ('discoverable_disabled' in data) {
|
|
57
|
+
/**
|
|
58
|
+
* Whether or not stage discovery is disabled
|
|
59
|
+
* @type {?boolean}
|
|
60
|
+
* @deprecated See https://github.com/discord/discord-api-docs/pull/4296 for more information
|
|
61
|
+
*/
|
|
62
|
+
this.discoverableDisabled = data.discoverable_disabled;
|
|
63
|
+
} else {
|
|
64
|
+
this.discoverableDisabled ??= null;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
if ('guild_scheduled_event_id' in data) {
|
|
68
|
+
/**
|
|
69
|
+
* The associated guild scheduled event id of this stage instance
|
|
70
|
+
* @type {?Snowflake}
|
|
71
|
+
*/
|
|
72
|
+
this.guildScheduledEventId = data.guild_scheduled_event_id;
|
|
73
|
+
} else {
|
|
74
|
+
this.guildScheduledEventId ??= null;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* The stage channel associated with this stage instance
|
|
80
|
+
* @type {?StageChannel}
|
|
81
|
+
* @readonly
|
|
82
|
+
*/
|
|
83
|
+
get channel() {
|
|
84
|
+
return this.client.channels.resolve(this.channelId);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* The guild this stage instance belongs to
|
|
89
|
+
* @type {?Guild}
|
|
90
|
+
* @readonly
|
|
91
|
+
*/
|
|
92
|
+
get guild() {
|
|
93
|
+
return this.client.guilds.resolve(this.guildId);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* The associated guild scheduled event of this stage instance
|
|
98
|
+
* @type {?GuildScheduledEvent}
|
|
99
|
+
* @readonly
|
|
100
|
+
*/
|
|
101
|
+
get guildScheduledEvent() {
|
|
102
|
+
return this.guild?.scheduledEvents.resolve(this.guildScheduledEventId) ?? null;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Edits this stage instance.
|
|
107
|
+
* @param {StageInstanceEditOptions} options The options to edit the stage instance
|
|
108
|
+
* @returns {Promise<StageInstance>}
|
|
109
|
+
* @example
|
|
110
|
+
* // Edit a stage instance
|
|
111
|
+
* stageInstance.edit({ topic: 'new topic' })
|
|
112
|
+
* .then(stageInstance => console.log(stageInstance))
|
|
113
|
+
* .catch(console.error)
|
|
114
|
+
*/
|
|
115
|
+
edit(options) {
|
|
116
|
+
return this.guild.stageInstances.edit(this.channelId, options);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Deletes this stage instance.
|
|
121
|
+
* @returns {Promise<StageInstance>}
|
|
122
|
+
* @example
|
|
123
|
+
* // Delete a stage instance
|
|
124
|
+
* stageInstance.delete()
|
|
125
|
+
* .then(stageInstance => console.log(stageInstance))
|
|
126
|
+
* .catch(console.error);
|
|
127
|
+
*/
|
|
128
|
+
async delete() {
|
|
129
|
+
await this.guild.stageInstances.delete(this.channelId);
|
|
130
|
+
const clone = this._clone();
|
|
131
|
+
return clone;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Sets the topic of this stage instance.
|
|
136
|
+
* @param {string} topic The topic for the stage instance
|
|
137
|
+
* @returns {Promise<StageInstance>}
|
|
138
|
+
* @example
|
|
139
|
+
* // Set topic of a stage instance
|
|
140
|
+
* stageInstance.setTopic('new topic')
|
|
141
|
+
* .then(stageInstance => console.log(`Set the topic to: ${stageInstance.topic}`))
|
|
142
|
+
* .catch(console.error);
|
|
143
|
+
*/
|
|
144
|
+
setTopic(topic) {
|
|
145
|
+
return this.guild.stageInstances.edit(this.channelId, { topic });
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* The timestamp this stage instances was created at
|
|
150
|
+
* @type {number}
|
|
151
|
+
* @readonly
|
|
152
|
+
*/
|
|
153
|
+
get createdTimestamp() {
|
|
154
|
+
return DiscordSnowflake.timestampFrom(this.id);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* The time this stage instance was created at
|
|
159
|
+
* @type {Date}
|
|
160
|
+
* @readonly
|
|
161
|
+
*/
|
|
162
|
+
get createdAt() {
|
|
163
|
+
return new Date(this.createdTimestamp);
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
exports.StageInstance = StageInstance;
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { DiscordSnowflake } = require('@sapphire/snowflake');
|
|
4
|
+
const { Routes } = require('discord-api-types/v10');
|
|
5
|
+
const Base = require('./Base');
|
|
6
|
+
const { DiscordjsError, ErrorCodes } = require('../errors');
|
|
7
|
+
const { StickerFormatExtensionMap } = require('../util/Constants');
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Represents a Sticker.
|
|
11
|
+
* @extends {Base}
|
|
12
|
+
*/
|
|
13
|
+
class Sticker extends Base {
|
|
14
|
+
constructor(client, sticker) {
|
|
15
|
+
super(client);
|
|
16
|
+
|
|
17
|
+
this._patch(sticker);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
_patch(sticker) {
|
|
21
|
+
/**
|
|
22
|
+
* The sticker's id
|
|
23
|
+
* @type {Snowflake}
|
|
24
|
+
*/
|
|
25
|
+
this.id = sticker.id;
|
|
26
|
+
|
|
27
|
+
if ('description' in sticker) {
|
|
28
|
+
/**
|
|
29
|
+
* The description of the sticker
|
|
30
|
+
* @type {?string}
|
|
31
|
+
*/
|
|
32
|
+
this.description = sticker.description;
|
|
33
|
+
} else {
|
|
34
|
+
this.description ??= null;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if ('type' in sticker) {
|
|
38
|
+
/**
|
|
39
|
+
* The type of the sticker
|
|
40
|
+
* @type {?StickerType}
|
|
41
|
+
*/
|
|
42
|
+
this.type = sticker.type;
|
|
43
|
+
} else {
|
|
44
|
+
this.type ??= null;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
if ('format_type' in sticker) {
|
|
48
|
+
/**
|
|
49
|
+
* The format of the sticker
|
|
50
|
+
* @type {StickerFormatType}
|
|
51
|
+
*/
|
|
52
|
+
this.format = sticker.format_type;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
if ('name' in sticker) {
|
|
56
|
+
/**
|
|
57
|
+
* The name of the sticker
|
|
58
|
+
* @type {string}
|
|
59
|
+
*/
|
|
60
|
+
this.name = sticker.name;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if ('pack_id' in sticker) {
|
|
64
|
+
/**
|
|
65
|
+
* The id of the pack the sticker is from, for standard stickers
|
|
66
|
+
* @type {?Snowflake}
|
|
67
|
+
*/
|
|
68
|
+
this.packId = sticker.pack_id;
|
|
69
|
+
} else {
|
|
70
|
+
this.packId ??= null;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if ('tags' in sticker) {
|
|
74
|
+
/**
|
|
75
|
+
* Autocomplete/suggestions for the sticker
|
|
76
|
+
* @type {?string}
|
|
77
|
+
*/
|
|
78
|
+
this.tags = sticker.tags;
|
|
79
|
+
} else {
|
|
80
|
+
this.tags ??= null;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
if ('available' in sticker) {
|
|
84
|
+
/**
|
|
85
|
+
* Whether or not the guild sticker is available
|
|
86
|
+
* @type {?boolean}
|
|
87
|
+
*/
|
|
88
|
+
this.available = sticker.available;
|
|
89
|
+
} else {
|
|
90
|
+
this.available ??= null;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
if ('guild_id' in sticker) {
|
|
94
|
+
/**
|
|
95
|
+
* The id of the guild that owns this sticker
|
|
96
|
+
* @type {?Snowflake}
|
|
97
|
+
*/
|
|
98
|
+
this.guildId = sticker.guild_id;
|
|
99
|
+
} else {
|
|
100
|
+
this.guildId ??= null;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if ('user' in sticker) {
|
|
104
|
+
/**
|
|
105
|
+
* The user that uploaded the guild sticker
|
|
106
|
+
* @type {?User}
|
|
107
|
+
*/
|
|
108
|
+
this.user = this.client.users._add(sticker.user);
|
|
109
|
+
} else {
|
|
110
|
+
this.user ??= null;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
if ('sort_value' in sticker) {
|
|
114
|
+
/**
|
|
115
|
+
* The standard sticker's sort order within its pack
|
|
116
|
+
* @type {?number}
|
|
117
|
+
*/
|
|
118
|
+
this.sortValue = sticker.sort_value;
|
|
119
|
+
} else {
|
|
120
|
+
this.sortValue ??= null;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* The timestamp the sticker was created at
|
|
126
|
+
* @type {number}
|
|
127
|
+
* @readonly
|
|
128
|
+
*/
|
|
129
|
+
get createdTimestamp() {
|
|
130
|
+
return DiscordSnowflake.timestampFrom(this.id);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* The time the sticker was created at
|
|
135
|
+
* @type {Date}
|
|
136
|
+
* @readonly
|
|
137
|
+
*/
|
|
138
|
+
get createdAt() {
|
|
139
|
+
return new Date(this.createdTimestamp);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Whether this sticker is partial
|
|
144
|
+
* @type {boolean}
|
|
145
|
+
* @readonly
|
|
146
|
+
*/
|
|
147
|
+
get partial() {
|
|
148
|
+
return !this.type;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* The guild that owns this sticker
|
|
153
|
+
* @type {?Guild}
|
|
154
|
+
* @readonly
|
|
155
|
+
*/
|
|
156
|
+
get guild() {
|
|
157
|
+
return this.client.guilds.resolve(this.guildId);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* A link to the sticker
|
|
162
|
+
* <info>If the sticker's format is {@link StickerFormatType.Lottie}, it returns
|
|
163
|
+
* the URL of the Lottie JSON file.</info>
|
|
164
|
+
* @type {string}
|
|
165
|
+
* @readonly
|
|
166
|
+
*/
|
|
167
|
+
get url() {
|
|
168
|
+
return this.client.rest.cdn.sticker(this.id, StickerFormatExtensionMap[this.format]);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* Fetches this sticker.
|
|
173
|
+
* @returns {Promise<Sticker>}
|
|
174
|
+
*/
|
|
175
|
+
async fetch() {
|
|
176
|
+
const data = await this.client.rest.get(Routes.sticker(this.id));
|
|
177
|
+
this._patch(data);
|
|
178
|
+
return this;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Fetches the pack this sticker is part of from Discord, if this is a Nitro sticker.
|
|
183
|
+
* @returns {Promise<?StickerPack>}
|
|
184
|
+
*/
|
|
185
|
+
async fetchPack() {
|
|
186
|
+
return (this.packId && (await this.client.fetchPremiumStickerPacks()).get(this.packId)) ?? null;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* Fetches the user who uploaded this sticker, if this is a guild sticker.
|
|
191
|
+
* @returns {Promise<?User>}
|
|
192
|
+
*/
|
|
193
|
+
async fetchUser() {
|
|
194
|
+
if (this.partial) await this.fetch();
|
|
195
|
+
if (!this.guildId) throw new DiscordjsError(ErrorCodes.NotGuildSticker);
|
|
196
|
+
return this.guild.stickers.fetchUser(this);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* Data for editing a sticker.
|
|
201
|
+
* @typedef {Object} GuildStickerEditOptions
|
|
202
|
+
* @property {string} [name] The name of the sticker
|
|
203
|
+
* @property {?string} [description] The description of the sticker
|
|
204
|
+
* @property {string} [tags] The Discord name of a unicode emoji representing the sticker's expression
|
|
205
|
+
* @property {string} [reason] Reason for editing this sticker
|
|
206
|
+
*/
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* Edits the sticker.
|
|
210
|
+
* @param {GuildStickerEditOptions} options The options to provide
|
|
211
|
+
* @returns {Promise<Sticker>}
|
|
212
|
+
* @example
|
|
213
|
+
* // Update the name of a sticker
|
|
214
|
+
* sticker.edit({ name: 'new name' })
|
|
215
|
+
* .then(s => console.log(`Updated the name of the sticker to ${s.name}`))
|
|
216
|
+
* .catch(console.error);
|
|
217
|
+
*/
|
|
218
|
+
edit(options) {
|
|
219
|
+
return this.guild.stickers.edit(this, options);
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* Deletes the sticker.
|
|
224
|
+
* @returns {Promise<Sticker>}
|
|
225
|
+
* @param {string} [reason] Reason for deleting this sticker
|
|
226
|
+
* @example
|
|
227
|
+
* // Delete a message
|
|
228
|
+
* sticker.delete()
|
|
229
|
+
* .then(s => console.log(`Deleted sticker ${s.name}`))
|
|
230
|
+
* .catch(console.error);
|
|
231
|
+
*/
|
|
232
|
+
async delete(reason) {
|
|
233
|
+
await this.guild.stickers.delete(this, reason);
|
|
234
|
+
return this;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Whether this sticker is the same as another one.
|
|
239
|
+
* @param {Sticker|APISticker} other The sticker to compare it to
|
|
240
|
+
* @returns {boolean}
|
|
241
|
+
*/
|
|
242
|
+
equals(other) {
|
|
243
|
+
if (other instanceof Sticker) {
|
|
244
|
+
return (
|
|
245
|
+
other.id === this.id &&
|
|
246
|
+
other.description === this.description &&
|
|
247
|
+
other.type === this.type &&
|
|
248
|
+
other.format === this.format &&
|
|
249
|
+
other.name === this.name &&
|
|
250
|
+
other.packId === this.packId &&
|
|
251
|
+
other.tags === this.tags &&
|
|
252
|
+
other.available === this.available &&
|
|
253
|
+
other.guildId === this.guildId &&
|
|
254
|
+
other.sortValue === this.sortValue
|
|
255
|
+
);
|
|
256
|
+
} else {
|
|
257
|
+
return (
|
|
258
|
+
other.id === this.id &&
|
|
259
|
+
other.description === this.description &&
|
|
260
|
+
other.name === this.name &&
|
|
261
|
+
other.tags === this.tags
|
|
262
|
+
);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
exports.Sticker = Sticker;
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* @external APISticker
|
|
271
|
+
* @see {@link https://discord.com/developers/docs/resources/sticker#sticker-object}
|
|
272
|
+
*/
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { Collection } = require('@discordjs/collection');
|
|
4
|
+
const { DiscordSnowflake } = require('@sapphire/snowflake');
|
|
5
|
+
const Base = require('./Base');
|
|
6
|
+
const { Sticker } = require('./Sticker');
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Represents a pack of standard stickers.
|
|
10
|
+
* @extends {Base}
|
|
11
|
+
*/
|
|
12
|
+
class StickerPack extends Base {
|
|
13
|
+
constructor(client, pack) {
|
|
14
|
+
super(client);
|
|
15
|
+
/**
|
|
16
|
+
* The Sticker pack's id
|
|
17
|
+
* @type {Snowflake}
|
|
18
|
+
*/
|
|
19
|
+
this.id = pack.id;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* The stickers in the pack
|
|
23
|
+
* @type {Collection<Snowflake, Sticker>}
|
|
24
|
+
*/
|
|
25
|
+
this.stickers = new Collection(pack.stickers.map(s => [s.id, new Sticker(client, s)]));
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* The name of the sticker pack
|
|
29
|
+
* @type {string}
|
|
30
|
+
*/
|
|
31
|
+
this.name = pack.name;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* The id of the pack's SKU
|
|
35
|
+
* @type {Snowflake}
|
|
36
|
+
*/
|
|
37
|
+
this.skuId = pack.sku_id;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* The id of a sticker in the pack which is shown as the pack's icon
|
|
41
|
+
* @type {?Snowflake}
|
|
42
|
+
*/
|
|
43
|
+
this.coverStickerId = pack.cover_sticker_id ?? null;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* The description of the sticker pack
|
|
47
|
+
* @type {string}
|
|
48
|
+
*/
|
|
49
|
+
this.description = pack.description;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* The id of the sticker pack's banner image
|
|
53
|
+
* @type {?Snowflake}
|
|
54
|
+
*/
|
|
55
|
+
this.bannerId = pack.banner_asset_id ?? null;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* The timestamp the sticker was created at
|
|
60
|
+
* @type {number}
|
|
61
|
+
* @readonly
|
|
62
|
+
*/
|
|
63
|
+
get createdTimestamp() {
|
|
64
|
+
return DiscordSnowflake.timestampFrom(this.id);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* The time the sticker was created at
|
|
69
|
+
* @type {Date}
|
|
70
|
+
* @readonly
|
|
71
|
+
*/
|
|
72
|
+
get createdAt() {
|
|
73
|
+
return new Date(this.createdTimestamp);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* The sticker which is shown as the pack's icon
|
|
78
|
+
* @type {?Sticker}
|
|
79
|
+
* @readonly
|
|
80
|
+
*/
|
|
81
|
+
get coverSticker() {
|
|
82
|
+
return this.coverStickerId && this.stickers.get(this.coverStickerId);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* The URL to this sticker pack's banner.
|
|
87
|
+
* @param {ImageURLOptions} [options={}] Options for the image URL
|
|
88
|
+
* @returns {?string}
|
|
89
|
+
*/
|
|
90
|
+
bannerURL(options = {}) {
|
|
91
|
+
return this.bannerId && this.client.rest.cdn.stickerPackBanner(this.bannerId, options);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
module.exports = StickerPack;
|