seyfert 1.5.0 → 2.1.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 +21 -190
- package/README.md +18 -10
- package/lib/api/Router.js +2 -2
- package/lib/api/Routes/applications.d.ts +23 -1
- package/lib/api/Routes/channels.d.ts +1 -1
- package/lib/api/Routes/gateway.d.ts +1 -1
- package/lib/api/Routes/guilds.d.ts +5 -2
- package/lib/api/Routes/interactions.d.ts +8 -2
- package/lib/api/Routes/invites.d.ts +1 -1
- package/lib/api/Routes/skus.d.ts +11 -0
- package/lib/api/Routes/skus.js +2 -0
- package/lib/api/Routes/stage-instances.d.ts +1 -1
- package/lib/api/Routes/stickers.d.ts +2 -2
- package/lib/api/Routes/users.d.ts +1 -1
- package/lib/api/Routes/voice.d.ts +1 -1
- package/lib/api/Routes/webhooks.d.ts +2 -2
- package/lib/api/api.d.ts +3 -3
- package/lib/api/api.js +15 -25
- package/lib/api/bucket.d.ts +0 -1
- package/lib/api/shared.d.ts +1 -2
- package/lib/api/utils/constants.d.ts +2 -5
- package/lib/api/utils/constants.js +3 -7
- package/lib/api/utils/utils.d.ts +1 -2
- package/lib/api/utils/utils.js +2 -3
- package/lib/builders/ActionRow.d.ts +1 -1
- package/lib/builders/ActionRow.js +3 -3
- package/lib/builders/Attachment.d.ts +3 -4
- package/lib/builders/Attachment.js +24 -25
- package/lib/builders/Base.d.ts +2 -2
- package/lib/builders/Base.js +1 -1
- package/lib/builders/Button.d.ts +7 -7
- package/lib/builders/Button.js +11 -9
- package/lib/builders/Embed.d.ts +1 -1
- package/lib/builders/Modal.d.ts +1 -1
- package/lib/builders/Modal.js +2 -2
- package/lib/builders/Poll.d.ts +2 -2
- package/lib/builders/Poll.js +5 -6
- package/lib/builders/SelectMenu.d.ts +1 -1
- package/lib/builders/SelectMenu.js +17 -18
- package/lib/builders/index.d.ts +1 -1
- package/lib/builders/index.js +10 -11
- package/lib/cache/adapters/default.d.ts +16 -9
- package/lib/cache/adapters/default.js +42 -31
- package/lib/cache/adapters/index.d.ts +0 -1
- package/lib/cache/adapters/index.js +0 -1
- package/lib/cache/adapters/limited.d.ts +17 -12
- package/lib/cache/adapters/limited.js +80 -36
- package/lib/cache/adapters/types.d.ts +6 -7
- package/lib/cache/adapters/workeradapter.d.ts +6 -6
- package/lib/cache/adapters/workeradapter.js +13 -0
- package/lib/cache/index.d.ts +20 -8
- package/lib/cache/index.js +328 -22
- package/lib/cache/resources/bans.d.ts +9 -6
- package/lib/cache/resources/bans.js +13 -4
- package/lib/cache/resources/channels.d.ts +6 -4
- package/lib/cache/resources/channels.js +13 -7
- package/lib/cache/resources/default/base.d.ts +7 -7
- package/lib/cache/resources/default/base.js +2 -2
- package/lib/cache/resources/default/guild-based.d.ts +6 -6
- package/lib/cache/resources/default/guild-based.js +6 -6
- package/lib/cache/resources/default/guild-related.d.ts +7 -7
- package/lib/cache/resources/default/guild-related.js +10 -8
- package/lib/cache/resources/emojis.d.ts +15 -6
- package/lib/cache/resources/emojis.js +13 -4
- package/lib/cache/resources/guilds.d.ts +9 -6
- package/lib/cache/resources/guilds.js +27 -6
- package/lib/cache/resources/members.d.ts +9 -6
- package/lib/cache/resources/members.js +22 -6
- package/lib/cache/resources/messages.d.ts +11 -7
- package/lib/cache/resources/messages.js +19 -7
- package/lib/cache/resources/overwrites.d.ts +11 -2
- package/lib/cache/resources/overwrites.js +9 -0
- package/lib/cache/resources/presence.d.ts +3 -2
- package/lib/cache/resources/roles.d.ts +9 -6
- package/lib/cache/resources/roles.js +13 -4
- package/lib/cache/resources/stage-instances.d.ts +2 -2
- package/lib/cache/resources/stickers.d.ts +9 -6
- package/lib/cache/resources/stickers.js +13 -4
- package/lib/cache/resources/threads.d.ts +9 -6
- package/lib/cache/resources/threads.js +13 -4
- package/lib/cache/resources/users.d.ts +9 -6
- package/lib/cache/resources/users.js +13 -4
- package/lib/cache/resources/voice-states.d.ts +11 -8
- package/lib/cache/resources/voice-states.js +15 -4
- package/lib/client/base.d.ts +29 -21
- package/lib/client/base.js +64 -57
- package/lib/client/client.d.ts +11 -16
- package/lib/client/client.js +51 -37
- package/lib/client/collectors.d.ts +10 -10
- package/lib/client/collectors.js +26 -1
- package/lib/client/httpclient.d.ts +8 -13
- package/lib/client/httpclient.js +27 -218
- package/lib/client/index.d.ts +1 -0
- package/lib/client/index.js +1 -0
- package/lib/client/transformers.d.ts +68 -0
- package/lib/client/transformers.js +99 -0
- package/lib/client/types.d.ts +5 -0
- package/lib/client/types.js +2 -0
- package/lib/client/workerclient.d.ts +16 -15
- package/lib/client/workerclient.js +130 -72
- package/lib/commands/applications/chat.d.ts +35 -34
- package/lib/commands/applications/chat.js +5 -9
- package/lib/commands/applications/chatcontext.d.ts +17 -17
- package/lib/commands/applications/chatcontext.js +5 -5
- package/lib/commands/applications/entryPoint.d.ts +46 -0
- package/lib/commands/applications/entryPoint.js +56 -0
- package/lib/commands/applications/entrycontext.d.ts +40 -0
- package/lib/commands/applications/entrycontext.js +85 -0
- package/lib/commands/applications/menu.d.ts +2 -3
- package/lib/commands/applications/menu.js +2 -5
- package/lib/commands/applications/menucontext.d.ts +14 -13
- package/lib/commands/applications/menucontext.js +9 -9
- package/lib/commands/applications/options.d.ts +4 -3
- package/lib/commands/applications/options.js +20 -21
- package/lib/commands/applications/shared.d.ts +3 -1
- package/lib/commands/decorators.d.ts +47 -35
- package/lib/commands/decorators.js +20 -18
- package/lib/commands/handle.d.ts +65 -0
- package/lib/commands/handle.js +727 -0
- package/lib/commands/handler.d.ts +29 -18
- package/lib/commands/handler.js +295 -164
- package/lib/commands/index.d.ts +2 -0
- package/lib/commands/index.js +2 -0
- package/lib/commands/optionresolver.d.ts +13 -13
- package/lib/commands/optionresolver.js +24 -29
- package/lib/common/bot/watcher.d.ts +4 -33
- package/lib/common/bot/watcher.js +0 -109
- package/lib/common/index.d.ts +1 -0
- package/lib/common/index.js +1 -0
- package/lib/common/it/colors.js +48 -49
- package/lib/common/it/formatter.d.ts +32 -0
- package/lib/common/it/formatter.js +42 -0
- package/lib/common/it/logger.d.ts +0 -1
- package/lib/common/it/logger.js +3 -3
- package/lib/common/it/utils.d.ts +24 -4
- package/lib/common/it/utils.js +88 -17
- package/lib/common/shorters/application.d.ts +56 -0
- package/lib/common/shorters/application.js +81 -0
- package/lib/common/shorters/bans.d.ts +4 -5
- package/lib/common/shorters/bans.js +3 -3
- package/lib/common/shorters/channels.d.ts +7 -6
- package/lib/common/shorters/channels.js +19 -15
- package/lib/common/shorters/emojis.d.ts +5 -6
- package/lib/common/shorters/emojis.js +5 -5
- package/lib/common/shorters/guilds.d.ts +18 -16
- package/lib/common/shorters/guilds.js +31 -26
- package/lib/common/shorters/interaction.d.ts +7 -7
- package/lib/common/shorters/interaction.js +3 -2
- package/lib/common/shorters/members.d.ts +29 -12
- package/lib/common/shorters/members.js +55 -16
- package/lib/common/shorters/messages.d.ts +7 -8
- package/lib/common/shorters/messages.js +8 -7
- package/lib/common/shorters/reactions.d.ts +3 -3
- package/lib/common/shorters/reactions.js +11 -11
- package/lib/common/shorters/roles.d.ts +9 -7
- package/lib/common/shorters/roles.js +26 -7
- package/lib/common/shorters/templates.d.ts +7 -8
- package/lib/common/shorters/templates.js +7 -7
- package/lib/common/shorters/threads.d.ts +6 -7
- package/lib/common/shorters/threads.js +6 -9
- package/lib/common/shorters/users.d.ts +4 -4
- package/lib/common/shorters/users.js +8 -4
- package/lib/common/shorters/webhook.d.ts +10 -10
- package/lib/common/shorters/webhook.js +10 -9
- package/lib/common/types/resolvables.d.ts +2 -2
- package/lib/common/types/util.d.ts +4 -2
- package/lib/common/types/write.d.ts +3 -3
- package/lib/components/ActionRow.d.ts +1 -1
- package/lib/components/BaseComponent.d.ts +1 -1
- package/lib/components/BaseComponent.js +1 -1
- package/lib/components/BaseSelectMenuComponent.d.ts +1 -1
- package/lib/components/ButtonComponent.d.ts +17 -7
- package/lib/components/ButtonComponent.js +19 -2
- package/lib/components/ChannelSelectMenuComponent.d.ts +3 -3
- package/lib/components/MentionableSelectMenuComponent.d.ts +2 -2
- package/lib/components/RoleSelectMenuComponent.d.ts +2 -2
- package/lib/components/StringSelectMenuComponent.d.ts +2 -2
- package/lib/components/TextInputComponent.d.ts +2 -2
- package/lib/components/UserSelectMenuComponent.d.ts +2 -2
- package/lib/components/componentcommand.js +2 -2
- package/lib/components/componentcontext.d.ts +10 -9
- package/lib/components/componentcontext.js +8 -8
- package/lib/components/handler.d.ts +15 -14
- package/lib/components/handler.js +89 -93
- package/lib/components/index.d.ts +3 -3
- package/lib/components/index.js +12 -10
- package/lib/components/modalcontext.d.ts +12 -11
- package/lib/components/modalcontext.js +2 -2
- package/lib/deps/mixer.d.ts +8 -0
- package/lib/deps/mixer.js +71 -0
- package/lib/events/handler.d.ts +35 -13
- package/lib/events/handler.js +57 -24
- package/lib/events/hooks/application_command.d.ts +2 -2
- package/lib/events/hooks/auto_moderation.d.ts +6 -7
- package/lib/events/hooks/auto_moderation.js +4 -4
- package/lib/events/hooks/channel.d.ts +2 -2
- package/lib/events/hooks/channel.js +4 -7
- package/lib/events/hooks/custom.d.ts +4 -3
- package/lib/events/hooks/custom.js +5 -1
- package/lib/events/hooks/dispatch.d.ts +3 -4
- package/lib/events/hooks/dispatch.js +2 -2
- package/lib/events/hooks/entitlement.d.ts +5 -37
- package/lib/events/hooks/entitlement.js +7 -7
- package/lib/events/hooks/guild.d.ts +125 -125
- package/lib/events/hooks/guild.js +13 -15
- package/lib/events/hooks/integration.d.ts +27 -28
- package/lib/events/hooks/integration.js +3 -3
- package/lib/events/hooks/interactions.d.ts +2 -2
- package/lib/events/hooks/invite.d.ts +18 -17
- package/lib/events/hooks/message.d.ts +69 -54
- package/lib/events/hooks/message.js +4 -8
- package/lib/events/hooks/presence.d.ts +17 -16
- package/lib/events/hooks/stage.d.ts +4 -4
- package/lib/events/hooks/subscriptions.d.ts +35 -0
- package/lib/events/hooks/subscriptions.js +16 -0
- package/lib/events/hooks/thread.d.ts +132 -63
- package/lib/events/hooks/thread.js +4 -4
- package/lib/events/hooks/typing.d.ts +28 -6
- package/lib/events/hooks/typing.js +2 -2
- package/lib/events/hooks/user.d.ts +3 -3
- package/lib/events/hooks/user.js +2 -2
- package/lib/events/hooks/voice.d.ts +28 -3
- package/lib/events/hooks/voice.js +8 -4
- package/lib/events/hooks/webhook.d.ts +1 -1
- package/lib/index.d.ts +5 -14
- package/lib/index.js +7 -12
- package/lib/langs/handler.d.ts +14 -10
- package/lib/langs/handler.js +40 -9
- package/lib/structures/AutoModerationRule.d.ts +4 -4
- package/lib/structures/AutoModerationRule.js +1 -2
- package/lib/structures/ClientUser.d.ts +1 -1
- package/lib/structures/Entitlement.d.ts +10 -0
- package/lib/structures/Entitlement.js +16 -0
- package/lib/structures/Guild.d.ts +33 -34
- package/lib/structures/Guild.js +5 -2
- package/lib/structures/GuildBan.d.ts +6 -6
- package/lib/structures/GuildBan.js +2 -1
- package/lib/structures/GuildEmoji.d.ts +4 -4
- package/lib/structures/GuildEmoji.js +3 -2
- package/lib/structures/GuildMember.d.ts +20 -17
- package/lib/structures/GuildMember.js +18 -8
- package/lib/structures/GuildPreview.d.ts +1 -1
- package/lib/structures/GuildRole.d.ts +5 -3
- package/lib/structures/GuildRole.js +8 -1
- package/lib/structures/GuildTemplate.d.ts +2 -2
- package/lib/structures/GuildTemplate.js +1 -1
- package/lib/structures/Interaction.d.ts +76 -39
- package/lib/structures/Interaction.js +179 -94
- package/lib/structures/Message.d.ts +29 -33
- package/lib/structures/Message.js +8 -12
- package/lib/structures/Poll.d.ts +4 -3
- package/lib/structures/Poll.js +6 -2
- package/lib/structures/Sticker.d.ts +7 -7
- package/lib/structures/Sticker.js +7 -7
- package/lib/structures/User.d.ts +5 -4
- package/lib/structures/User.js +2 -1
- package/lib/structures/VoiceState.d.ts +15 -11
- package/lib/structures/VoiceState.js +35 -17
- package/lib/structures/Webhook.d.ts +6 -7
- package/lib/structures/Webhook.js +6 -7
- package/lib/structures/channels.d.ts +11 -10
- package/lib/structures/channels.js +70 -65
- package/lib/structures/extra/BaseGuild.d.ts +12 -2
- package/lib/structures/extra/BaseGuild.js +30 -3
- package/lib/structures/extra/BitField.d.ts +1 -1
- package/lib/structures/extra/BitField.js +3 -2
- package/lib/structures/extra/DiscordBase.js +2 -2
- package/lib/structures/extra/Permissions.d.ts +3 -1
- package/lib/structures/extra/Permissions.js +8 -3
- package/lib/types/gateway.d.ts +1554 -0
- package/lib/types/gateway.js +4 -0
- package/lib/types/index.d.ts +9 -1
- package/lib/types/index.js +28 -1
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/attachment.d.ts +5 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/attachment.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/base.d.ts +22 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/base.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/boolean.d.ts +4 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/boolean.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/channel.d.ts +7 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/channel.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/integer.d.ts +17 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/integer.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/mentionable.d.ts +5 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/mentionable.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/number.d.ts +17 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/number.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/role.d.ts +5 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/role.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/shared.d.ts +25 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/shared.js +20 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/string.d.ts +17 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/string.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/subcommand.d.ts +11 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/subcommand.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/subcommandGroup.d.ts +11 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/subcommandGroup.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/user.d.ts +5 -0
- package/lib/types/payloads/_interactions/_applicationCommands/_chatInput/user.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/chatInput.d.ts +65 -0
- package/lib/types/payloads/_interactions/_applicationCommands/chatInput.js +29 -0
- package/lib/types/payloads/_interactions/_applicationCommands/contextMenu.d.ts +65 -0
- package/lib/types/payloads/_interactions/_applicationCommands/contextMenu.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/internals.d.ts +8 -0
- package/lib/types/payloads/_interactions/_applicationCommands/internals.js +2 -0
- package/lib/types/payloads/_interactions/_applicationCommands/permissions.d.ts +54 -0
- package/lib/types/payloads/_interactions/_applicationCommands/permissions.js +20 -0
- package/lib/types/payloads/_interactions/applicationCommands.d.ts +188 -0
- package/lib/types/payloads/_interactions/applicationCommands.js +88 -0
- package/lib/types/payloads/_interactions/autocomplete.d.ts +10 -0
- package/lib/types/payloads/_interactions/autocomplete.js +2 -0
- package/lib/types/payloads/_interactions/base.d.ts +197 -0
- package/lib/types/payloads/_interactions/base.js +2 -0
- package/lib/types/payloads/_interactions/messageComponents.d.ts +41 -0
- package/lib/types/payloads/_interactions/messageComponents.js +2 -0
- package/lib/types/payloads/_interactions/modalSubmit.d.ts +35 -0
- package/lib/types/payloads/_interactions/modalSubmit.js +2 -0
- package/lib/types/payloads/_interactions/ping.d.ts +3 -0
- package/lib/types/payloads/_interactions/ping.js +2 -0
- package/lib/types/payloads/_interactions/responses.d.ts +184 -0
- package/lib/types/payloads/_interactions/responses.js +58 -0
- package/lib/types/payloads/application.d.ts +292 -0
- package/lib/types/payloads/application.js +117 -0
- package/lib/types/payloads/auditLog.d.ts +644 -0
- package/lib/types/payloads/auditLog.js +80 -0
- package/lib/types/payloads/autoModeration.d.ts +219 -0
- package/lib/types/payloads/autoModeration.js +87 -0
- package/lib/types/payloads/channel.d.ts +1748 -0
- package/lib/types/payloads/channel.js +376 -0
- package/lib/types/payloads/emoji.d.ts +48 -0
- package/lib/types/payloads/emoji.js +5 -0
- package/lib/types/payloads/gateway.d.ts +373 -0
- package/lib/types/payloads/gateway.js +82 -0
- package/lib/types/payloads/guild.d.ts +1060 -0
- package/lib/types/payloads/guild.js +324 -0
- package/lib/types/payloads/guildScheduledEvent.d.ts +138 -0
- package/lib/types/payloads/guildScheduledEvent.js +32 -0
- package/lib/types/payloads/index.d.ts +64 -0
- package/lib/types/payloads/index.js +37 -0
- package/lib/types/payloads/interactions.d.ts +24 -0
- package/lib/types/payloads/interactions.js +23 -0
- package/lib/types/payloads/invite.d.ts +121 -0
- package/lib/types/payloads/invite.js +23 -0
- package/lib/types/payloads/monetization.d.ts +178 -0
- package/lib/types/payloads/monetization.js +88 -0
- package/lib/types/payloads/oauth2.d.ts +131 -0
- package/lib/types/payloads/oauth2.js +135 -0
- package/lib/types/payloads/permissions.d.ts +97 -0
- package/lib/types/payloads/permissions.js +16 -0
- package/lib/types/payloads/poll.d.ts +104 -0
- package/lib/types/payloads/poll.js +16 -0
- package/lib/types/payloads/stageInstance.d.ts +77 -0
- package/lib/types/payloads/stageInstance.js +19 -0
- package/lib/types/payloads/sticker.d.ts +123 -0
- package/lib/types/payloads/sticker.js +30 -0
- package/lib/types/payloads/teams.d.ts +78 -0
- package/lib/types/payloads/teams.js +23 -0
- package/lib/types/payloads/template.d.ts +62 -0
- package/lib/types/payloads/template.js +5 -0
- package/lib/types/payloads/user.d.ts +337 -0
- package/lib/types/payloads/user.js +167 -0
- package/lib/types/payloads/voice.d.ts +89 -0
- package/lib/types/payloads/voice.js +5 -0
- package/lib/types/payloads/webhook.d.ts +76 -0
- package/lib/types/payloads/webhook.js +21 -0
- package/lib/types/rest/application.d.ts +57 -0
- package/lib/types/rest/application.js +2 -0
- package/lib/types/rest/auditLog.d.ts +30 -0
- package/lib/types/rest/auditLog.js +2 -0
- package/lib/types/rest/autoModeration.d.ts +66 -0
- package/lib/types/rest/autoModeration.js +2 -0
- package/lib/types/rest/channel.d.ts +699 -0
- package/lib/types/rest/channel.js +11 -0
- package/lib/types/rest/emoji.d.ts +54 -0
- package/lib/types/rest/emoji.js +2 -0
- package/lib/types/rest/gateway.d.ts +9 -0
- package/lib/types/rest/gateway.js +2 -0
- package/lib/types/rest/guild.d.ts +865 -0
- package/lib/types/rest/guild.js +2 -0
- package/lib/types/rest/guildScheduledEvent.d.ts +126 -0
- package/lib/types/rest/guildScheduledEvent.js +2 -0
- package/lib/types/rest/index.d.ts +296 -0
- package/lib/types/rest/index.js +292 -0
- package/lib/types/rest/interactions.d.ts +216 -0
- package/lib/types/rest/interactions.js +2 -0
- package/lib/types/rest/invite.d.ts +24 -0
- package/lib/types/rest/invite.js +2 -0
- package/lib/types/rest/monetization.d.ts +103 -0
- package/lib/types/rest/monetization.js +11 -0
- package/lib/types/rest/oauth2.d.ts +172 -0
- package/lib/types/rest/oauth2.js +2 -0
- package/lib/types/rest/poll.d.ts +44 -0
- package/lib/types/rest/poll.js +2 -0
- package/lib/types/rest/stageInstance.d.ts +58 -0
- package/lib/types/rest/stageInstance.js +2 -0
- package/lib/types/rest/sticker.d.ts +77 -0
- package/lib/types/rest/sticker.js +2 -0
- package/lib/types/rest/template.d.ts +62 -0
- package/lib/types/rest/template.js +2 -0
- package/lib/types/rest/user.d.ts +120 -0
- package/lib/types/rest/user.js +2 -0
- package/lib/types/rest/voice.d.ts +17 -0
- package/lib/types/rest/voice.js +2 -0
- package/lib/types/rest/webhook.d.ts +250 -0
- package/lib/types/rest/webhook.js +2 -0
- package/lib/types/utils/index.d.ts +808 -0
- package/lib/types/utils/index.js +810 -0
- package/lib/websocket/SharedTypes.d.ts +12 -5
- package/lib/websocket/SharedTypes.js +1 -1
- package/lib/websocket/constants/index.d.ts +3 -3
- package/lib/websocket/constants/index.js +11 -1
- package/lib/websocket/discord/basesocket.d.ts +7 -7
- package/lib/websocket/discord/basesocket.js +34 -22
- package/lib/websocket/discord/events/memberUpdate.d.ts +1 -6
- package/lib/websocket/discord/events/memberUpdate.js +2 -1
- package/lib/websocket/discord/events/presenceUpdate.d.ts +5 -18
- package/lib/websocket/discord/events/presenceUpdate.js +5 -6
- package/lib/websocket/discord/shard.d.ts +9 -8
- package/lib/websocket/discord/shard.js +83 -57
- package/lib/websocket/discord/sharder.d.ts +6 -5
- package/lib/websocket/discord/sharder.js +70 -11
- package/lib/websocket/discord/shared.d.ts +34 -6
- package/lib/websocket/discord/socket/custom.d.ts +52 -0
- package/lib/websocket/discord/socket/custom.js +300 -0
- package/lib/websocket/discord/worker.d.ts +6 -10
- package/lib/websocket/discord/workermanager.d.ts +10 -16
- package/lib/websocket/discord/workermanager.js +63 -50
- package/lib/websocket/structures/index.d.ts +0 -1
- package/lib/websocket/structures/index.js +1 -1
- package/lib/websocket/structures/timeout.d.ts +0 -1
- package/package.json +70 -74
- package/lib/cache/adapters/redis.d.ts +0 -37
- package/lib/cache/adapters/redis.js +0 -218
- package/lib/client/oninteractioncreate.d.ts +0 -4
- package/lib/client/oninteractioncreate.js +0 -198
- package/lib/client/onmessagecreate.d.ts +0 -13
- package/lib/client/onmessagecreate.js +0 -410
- package/lib/structures/extra/functions.d.ts +0 -12
- package/lib/structures/extra/functions.js +0 -70
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Types extracted from https://discord.com/developers/docs/resources/invite
|
|
3
|
+
*/
|
|
4
|
+
import type { APIApplication } from './application';
|
|
5
|
+
import type { APIPartialChannel } from './channel';
|
|
6
|
+
import type { APIGuild } from './guild';
|
|
7
|
+
import type { APIGuildScheduledEvent } from './guildScheduledEvent';
|
|
8
|
+
import type { APIInviteStageInstance } from './stageInstance';
|
|
9
|
+
import type { APIUser } from './user';
|
|
10
|
+
export type APIInviteGuild = Pick<APIGuild, 'banner' | 'description' | 'features' | 'icon' | 'id' | 'name' | 'nsfw_level' | 'premium_subscription_count' | 'splash' | 'vanity_url_code' | 'verification_level'>;
|
|
11
|
+
/**
|
|
12
|
+
* https://discord.com/developers/docs/resources/invite#invite-object
|
|
13
|
+
*/
|
|
14
|
+
export interface APIInvite {
|
|
15
|
+
/**
|
|
16
|
+
* The invite code (unique ID)
|
|
17
|
+
*/
|
|
18
|
+
code: string;
|
|
19
|
+
/**
|
|
20
|
+
* The guild this invite is for
|
|
21
|
+
*
|
|
22
|
+
* See https://discord.com/developers/docs/resources/guild#guild-object
|
|
23
|
+
*/
|
|
24
|
+
guild?: APIInviteGuild;
|
|
25
|
+
/**
|
|
26
|
+
* The channel this invite is for
|
|
27
|
+
*
|
|
28
|
+
* See https://discord.com/developers/docs/resources/channel#channel-object
|
|
29
|
+
*/
|
|
30
|
+
channel: Required<APIPartialChannel> | null;
|
|
31
|
+
/**
|
|
32
|
+
* The user who created the invite
|
|
33
|
+
*
|
|
34
|
+
* See https://discord.com/developers/docs/resources/user#user-object
|
|
35
|
+
*/
|
|
36
|
+
inviter?: APIUser;
|
|
37
|
+
/**
|
|
38
|
+
* The type of target for this voice channel invite
|
|
39
|
+
*
|
|
40
|
+
* See https://discord.com/developers/docs/resources/invite#invite-object-invite-target-types
|
|
41
|
+
*/
|
|
42
|
+
target_type?: InviteTargetType;
|
|
43
|
+
/**
|
|
44
|
+
* The user whose stream to display for this voice channel stream invite
|
|
45
|
+
*
|
|
46
|
+
* See https://discord.com/developers/docs/resources/user#user-object
|
|
47
|
+
*/
|
|
48
|
+
target_user?: APIUser;
|
|
49
|
+
/**
|
|
50
|
+
* The embedded application to open for this voice channel embedded application invite
|
|
51
|
+
*
|
|
52
|
+
* See https://discord.com/developers/docs/resources/application#application-object
|
|
53
|
+
*/
|
|
54
|
+
target_application?: Partial<APIApplication>;
|
|
55
|
+
/**
|
|
56
|
+
* Approximate count of online members, returned from the `GET /invites/<code>` endpoint when `with_counts` is `true`
|
|
57
|
+
*/
|
|
58
|
+
approximate_presence_count?: number;
|
|
59
|
+
/**
|
|
60
|
+
* Approximate count of total members, returned from the `GET /invites/<code>` endpoint when `with_counts` is `true`
|
|
61
|
+
*/
|
|
62
|
+
approximate_member_count?: number;
|
|
63
|
+
/**
|
|
64
|
+
* The expiration date of this invite, returned from the `GET /invites/<code>` endpoint when `with_expiration` is `true`
|
|
65
|
+
*/
|
|
66
|
+
expires_at?: string | null;
|
|
67
|
+
/**
|
|
68
|
+
* The stage instance data if there is a public stage instance in the stage channel this invite is for
|
|
69
|
+
*
|
|
70
|
+
* @deprecated
|
|
71
|
+
*/
|
|
72
|
+
stage_instance?: APIInviteStageInstance;
|
|
73
|
+
/**
|
|
74
|
+
* The guild scheduled event data, returned from the `GET /invites/<code>` endpoint when `guild_scheduled_event_id` is a valid guild scheduled event id
|
|
75
|
+
*/
|
|
76
|
+
guild_scheduled_event?: APIGuildScheduledEvent;
|
|
77
|
+
/**
|
|
78
|
+
* The invite type
|
|
79
|
+
*/
|
|
80
|
+
type: InviteType;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* https://discord.com/developers/docs/resources/invite#invite-object-invite-types
|
|
84
|
+
*/
|
|
85
|
+
export declare enum InviteType {
|
|
86
|
+
Guild = 0,
|
|
87
|
+
GroupDM = 1,
|
|
88
|
+
Friend = 2
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* https://discord.com/developers/docs/resources/invite#invite-object-invite-target-types
|
|
92
|
+
*/
|
|
93
|
+
export declare enum InviteTargetType {
|
|
94
|
+
Stream = 1,
|
|
95
|
+
EmbeddedApplication = 2
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* https://discord.com/developers/docs/resources/invite#invite-metadata-object
|
|
99
|
+
*/
|
|
100
|
+
export interface APIExtendedInvite extends APIInvite {
|
|
101
|
+
/**
|
|
102
|
+
* Number of times this invite has been used
|
|
103
|
+
*/
|
|
104
|
+
uses: number;
|
|
105
|
+
/**
|
|
106
|
+
* Max number of times this invite can be used
|
|
107
|
+
*/
|
|
108
|
+
max_uses: number;
|
|
109
|
+
/**
|
|
110
|
+
* Duration (in seconds) after which the invite expires
|
|
111
|
+
*/
|
|
112
|
+
max_age: number;
|
|
113
|
+
/**
|
|
114
|
+
* Whether this invite only grants temporary membership
|
|
115
|
+
*/
|
|
116
|
+
temporary: boolean;
|
|
117
|
+
/**
|
|
118
|
+
* When this invite was created
|
|
119
|
+
*/
|
|
120
|
+
created_at: string;
|
|
121
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Types extracted from https://discord.com/developers/docs/resources/invite
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.InviteTargetType = exports.InviteType = void 0;
|
|
7
|
+
/**
|
|
8
|
+
* https://discord.com/developers/docs/resources/invite#invite-object-invite-types
|
|
9
|
+
*/
|
|
10
|
+
var InviteType;
|
|
11
|
+
(function (InviteType) {
|
|
12
|
+
InviteType[InviteType["Guild"] = 0] = "Guild";
|
|
13
|
+
InviteType[InviteType["GroupDM"] = 1] = "GroupDM";
|
|
14
|
+
InviteType[InviteType["Friend"] = 2] = "Friend";
|
|
15
|
+
})(InviteType || (exports.InviteType = InviteType = {}));
|
|
16
|
+
/**
|
|
17
|
+
* https://discord.com/developers/docs/resources/invite#invite-object-invite-target-types
|
|
18
|
+
*/
|
|
19
|
+
var InviteTargetType;
|
|
20
|
+
(function (InviteTargetType) {
|
|
21
|
+
InviteTargetType[InviteTargetType["Stream"] = 1] = "Stream";
|
|
22
|
+
InviteTargetType[InviteTargetType["EmbeddedApplication"] = 2] = "EmbeddedApplication";
|
|
23
|
+
})(InviteTargetType || (exports.InviteTargetType = InviteTargetType = {}));
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import type { Snowflake } from '../index';
|
|
2
|
+
/**
|
|
3
|
+
* https://discord.com/developers/docs/monetization/entitlements#entitlement-object-entitlement-structure
|
|
4
|
+
*/
|
|
5
|
+
export interface APIEntitlement {
|
|
6
|
+
/**
|
|
7
|
+
* ID of the entitlement
|
|
8
|
+
*/
|
|
9
|
+
id: Snowflake;
|
|
10
|
+
/**
|
|
11
|
+
* ID of the SKU
|
|
12
|
+
*/
|
|
13
|
+
sku_id: Snowflake;
|
|
14
|
+
/**
|
|
15
|
+
* ID of the user that is granted access to the entitlement's sku
|
|
16
|
+
*/
|
|
17
|
+
user_id?: Snowflake;
|
|
18
|
+
/**
|
|
19
|
+
* ID of the guild that is granted access to the entitlement's sku
|
|
20
|
+
*/
|
|
21
|
+
guild_id?: Snowflake;
|
|
22
|
+
/**
|
|
23
|
+
* ID of the parent application
|
|
24
|
+
*/
|
|
25
|
+
application_id: Snowflake;
|
|
26
|
+
/**
|
|
27
|
+
* Type of entitlement
|
|
28
|
+
*/
|
|
29
|
+
type: EntitlementType;
|
|
30
|
+
/**
|
|
31
|
+
* Whether the entitlement was deleted
|
|
32
|
+
*/
|
|
33
|
+
deleted: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Start date at which the entitlement is valid. Not present when using test entitlements.
|
|
36
|
+
*/
|
|
37
|
+
starts_at?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Date at which the entitlement is no longer valid. Not present when using test entitlements.
|
|
40
|
+
*/
|
|
41
|
+
ends_at?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
* For consumable items, whether or not the entitlement has been consumed
|
|
44
|
+
*/
|
|
45
|
+
consumed?: boolean;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* https://discord.com/developers/docs/monetization/entitlements#entitlement-object-entitlement-types
|
|
49
|
+
*/
|
|
50
|
+
export declare enum EntitlementType {
|
|
51
|
+
/**
|
|
52
|
+
* Entitlement was purchased by user
|
|
53
|
+
*/
|
|
54
|
+
Purchase = 1,
|
|
55
|
+
/**
|
|
56
|
+
* Entitlement for Discord Nitro subscription
|
|
57
|
+
*/
|
|
58
|
+
PremiumSubscription = 2,
|
|
59
|
+
/**
|
|
60
|
+
* Entitlement was gifted by developer
|
|
61
|
+
*/
|
|
62
|
+
DeveloperGift = 3,
|
|
63
|
+
/**
|
|
64
|
+
* Entitlement was purchased by a dev in application test mode
|
|
65
|
+
*/
|
|
66
|
+
TestModePurchase = 4,
|
|
67
|
+
/**
|
|
68
|
+
* Entitlement was granted when the SKU was free
|
|
69
|
+
*/
|
|
70
|
+
FreePurchase = 5,
|
|
71
|
+
/**
|
|
72
|
+
* Entitlement was gifted by another user
|
|
73
|
+
*/
|
|
74
|
+
UserGift = 6,
|
|
75
|
+
/**
|
|
76
|
+
* Entitlement was claimed by user for free as a Nitro Subscriber
|
|
77
|
+
*/
|
|
78
|
+
PremiumPurchase = 7,
|
|
79
|
+
/**
|
|
80
|
+
* Entitlement was purchased as an app subscription
|
|
81
|
+
*/
|
|
82
|
+
ApplicationSubscription = 8
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* https://discord.com/developers/docs/monetization/skus#sku-object-sku-structure
|
|
86
|
+
*/
|
|
87
|
+
export interface APISKU {
|
|
88
|
+
/**
|
|
89
|
+
* ID of SKU
|
|
90
|
+
*/
|
|
91
|
+
id: Snowflake;
|
|
92
|
+
/**
|
|
93
|
+
* Type of SKU
|
|
94
|
+
*/
|
|
95
|
+
type: SKUType;
|
|
96
|
+
/**
|
|
97
|
+
* ID of the parent application
|
|
98
|
+
*/
|
|
99
|
+
application_id: Snowflake;
|
|
100
|
+
/**
|
|
101
|
+
* Customer-facing name of your premium offering
|
|
102
|
+
*/
|
|
103
|
+
name: string;
|
|
104
|
+
/**
|
|
105
|
+
* System-generated URL slug based on the SKU's name
|
|
106
|
+
*/
|
|
107
|
+
slug: string;
|
|
108
|
+
/**
|
|
109
|
+
* SKU flags combined as a bitfield
|
|
110
|
+
*
|
|
111
|
+
* See https://en.wikipedia.org/wiki/Bit_field
|
|
112
|
+
*/
|
|
113
|
+
flags: SKUFlags;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* https://discord.com/developers/docs/monetization/skus#sku-object-sku-flags
|
|
117
|
+
*/
|
|
118
|
+
export declare enum SKUFlags {
|
|
119
|
+
/**
|
|
120
|
+
* SKU is available for purchase
|
|
121
|
+
*/
|
|
122
|
+
Available = 4,
|
|
123
|
+
/**
|
|
124
|
+
* Recurring SKU that can be purchased by a user and applied to a single server.
|
|
125
|
+
* Grants access to every user in that server.
|
|
126
|
+
*/
|
|
127
|
+
GuildSubscription = 128,
|
|
128
|
+
/**
|
|
129
|
+
* Recurring SKU purchased by a user for themselves. Grants access to the purchasing user in every server.
|
|
130
|
+
*/
|
|
131
|
+
UserSubscription = 256
|
|
132
|
+
}
|
|
133
|
+
export declare enum SKUType {
|
|
134
|
+
/**
|
|
135
|
+
* Durable one-time purchase
|
|
136
|
+
*/
|
|
137
|
+
Durable = 2,
|
|
138
|
+
/**
|
|
139
|
+
* Consumable one-time purchase
|
|
140
|
+
*/
|
|
141
|
+
Consumable = 3,
|
|
142
|
+
/**
|
|
143
|
+
* Represents a recurring subscription
|
|
144
|
+
*/
|
|
145
|
+
Subscription = 5,
|
|
146
|
+
/**
|
|
147
|
+
* System-generated group for each Subscription SKU created
|
|
148
|
+
*/
|
|
149
|
+
SubscriptionGroup = 6
|
|
150
|
+
}
|
|
151
|
+
export interface APISubscription {
|
|
152
|
+
/** ID of the subscription */
|
|
153
|
+
id: string;
|
|
154
|
+
/** ID of the user who is subscribed */
|
|
155
|
+
user_id: string;
|
|
156
|
+
/** List of SKUs subscribed to */
|
|
157
|
+
sku_ids: string[];
|
|
158
|
+
/** List of entitlements granted for this subscription */
|
|
159
|
+
entitlements_ids: string[];
|
|
160
|
+
/** Start of the current subscription period */
|
|
161
|
+
current_period_start: string;
|
|
162
|
+
/** End of the current subscription period */
|
|
163
|
+
current_period_end: string;
|
|
164
|
+
/** Current status of the subscription */
|
|
165
|
+
status: SubscriptionStatus;
|
|
166
|
+
/** When the subscription was canceled */
|
|
167
|
+
canceled_at: string | null;
|
|
168
|
+
/** ISO3166-1 alpha-2 country code of the payment source used to purchase the subscription. Missing unless queried with a private OAuth scope. */
|
|
169
|
+
country?: string;
|
|
170
|
+
}
|
|
171
|
+
export declare enum SubscriptionStatus {
|
|
172
|
+
/** Subscription is active and scheduled to renew. */
|
|
173
|
+
Active = 0,
|
|
174
|
+
/** Subscription is active but will not renew. */
|
|
175
|
+
Ending = 1,
|
|
176
|
+
/** Subscription is inactive and not being charged. */
|
|
177
|
+
Inactive = 2
|
|
178
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SubscriptionStatus = exports.SKUType = exports.SKUFlags = exports.EntitlementType = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* https://discord.com/developers/docs/monetization/entitlements#entitlement-object-entitlement-types
|
|
6
|
+
*/
|
|
7
|
+
var EntitlementType;
|
|
8
|
+
(function (EntitlementType) {
|
|
9
|
+
/**
|
|
10
|
+
* Entitlement was purchased by user
|
|
11
|
+
*/
|
|
12
|
+
EntitlementType[EntitlementType["Purchase"] = 1] = "Purchase";
|
|
13
|
+
/**
|
|
14
|
+
* Entitlement for Discord Nitro subscription
|
|
15
|
+
*/
|
|
16
|
+
EntitlementType[EntitlementType["PremiumSubscription"] = 2] = "PremiumSubscription";
|
|
17
|
+
/**
|
|
18
|
+
* Entitlement was gifted by developer
|
|
19
|
+
*/
|
|
20
|
+
EntitlementType[EntitlementType["DeveloperGift"] = 3] = "DeveloperGift";
|
|
21
|
+
/**
|
|
22
|
+
* Entitlement was purchased by a dev in application test mode
|
|
23
|
+
*/
|
|
24
|
+
EntitlementType[EntitlementType["TestModePurchase"] = 4] = "TestModePurchase";
|
|
25
|
+
/**
|
|
26
|
+
* Entitlement was granted when the SKU was free
|
|
27
|
+
*/
|
|
28
|
+
EntitlementType[EntitlementType["FreePurchase"] = 5] = "FreePurchase";
|
|
29
|
+
/**
|
|
30
|
+
* Entitlement was gifted by another user
|
|
31
|
+
*/
|
|
32
|
+
EntitlementType[EntitlementType["UserGift"] = 6] = "UserGift";
|
|
33
|
+
/**
|
|
34
|
+
* Entitlement was claimed by user for free as a Nitro Subscriber
|
|
35
|
+
*/
|
|
36
|
+
EntitlementType[EntitlementType["PremiumPurchase"] = 7] = "PremiumPurchase";
|
|
37
|
+
/**
|
|
38
|
+
* Entitlement was purchased as an app subscription
|
|
39
|
+
*/
|
|
40
|
+
EntitlementType[EntitlementType["ApplicationSubscription"] = 8] = "ApplicationSubscription";
|
|
41
|
+
})(EntitlementType || (exports.EntitlementType = EntitlementType = {}));
|
|
42
|
+
/**
|
|
43
|
+
* https://discord.com/developers/docs/monetization/skus#sku-object-sku-flags
|
|
44
|
+
*/
|
|
45
|
+
var SKUFlags;
|
|
46
|
+
(function (SKUFlags) {
|
|
47
|
+
/**
|
|
48
|
+
* SKU is available for purchase
|
|
49
|
+
*/
|
|
50
|
+
SKUFlags[SKUFlags["Available"] = 4] = "Available";
|
|
51
|
+
/**
|
|
52
|
+
* Recurring SKU that can be purchased by a user and applied to a single server.
|
|
53
|
+
* Grants access to every user in that server.
|
|
54
|
+
*/
|
|
55
|
+
SKUFlags[SKUFlags["GuildSubscription"] = 128] = "GuildSubscription";
|
|
56
|
+
/**
|
|
57
|
+
* Recurring SKU purchased by a user for themselves. Grants access to the purchasing user in every server.
|
|
58
|
+
*/
|
|
59
|
+
SKUFlags[SKUFlags["UserSubscription"] = 256] = "UserSubscription";
|
|
60
|
+
})(SKUFlags || (exports.SKUFlags = SKUFlags = {}));
|
|
61
|
+
var SKUType;
|
|
62
|
+
(function (SKUType) {
|
|
63
|
+
/**
|
|
64
|
+
* Durable one-time purchase
|
|
65
|
+
*/
|
|
66
|
+
SKUType[SKUType["Durable"] = 2] = "Durable";
|
|
67
|
+
/**
|
|
68
|
+
* Consumable one-time purchase
|
|
69
|
+
*/
|
|
70
|
+
SKUType[SKUType["Consumable"] = 3] = "Consumable";
|
|
71
|
+
/**
|
|
72
|
+
* Represents a recurring subscription
|
|
73
|
+
*/
|
|
74
|
+
SKUType[SKUType["Subscription"] = 5] = "Subscription";
|
|
75
|
+
/**
|
|
76
|
+
* System-generated group for each Subscription SKU created
|
|
77
|
+
*/
|
|
78
|
+
SKUType[SKUType["SubscriptionGroup"] = 6] = "SubscriptionGroup";
|
|
79
|
+
})(SKUType || (exports.SKUType = SKUType = {}));
|
|
80
|
+
var SubscriptionStatus;
|
|
81
|
+
(function (SubscriptionStatus) {
|
|
82
|
+
/** Subscription is active and scheduled to renew. */
|
|
83
|
+
SubscriptionStatus[SubscriptionStatus["Active"] = 0] = "Active";
|
|
84
|
+
/** Subscription is active but will not renew. */
|
|
85
|
+
SubscriptionStatus[SubscriptionStatus["Ending"] = 1] = "Ending";
|
|
86
|
+
/** Subscription is inactive and not being charged. */
|
|
87
|
+
SubscriptionStatus[SubscriptionStatus["Inactive"] = 2] = "Inactive";
|
|
88
|
+
})(SubscriptionStatus || (exports.SubscriptionStatus = SubscriptionStatus = {}));
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Types extracted from https://discord.com/developers/docs/topics/oauth2
|
|
3
|
+
*/
|
|
4
|
+
export declare enum OAuth2Scopes {
|
|
5
|
+
/**
|
|
6
|
+
* For oauth2 bots, this puts the bot in the user's selected guild by default
|
|
7
|
+
*/
|
|
8
|
+
Bot = "bot",
|
|
9
|
+
/**
|
|
10
|
+
* Allows [/users/@me/connections](https://discord.com/developers/docs/resources/user#get-user-connections)
|
|
11
|
+
* to return linked third-party accounts
|
|
12
|
+
*
|
|
13
|
+
* See https://discord.com/developers/docs/resources/user#get-user-connections
|
|
14
|
+
*/
|
|
15
|
+
Connections = "connections",
|
|
16
|
+
/**
|
|
17
|
+
* Allows your app to see information about the user's DMs and group DMs - requires Discord approval
|
|
18
|
+
*/
|
|
19
|
+
DMChannelsRead = "dm_channels.read",
|
|
20
|
+
/**
|
|
21
|
+
* Enables [/users/@me](https://discord.com/developers/docs/resources/user#get-current-user) to return an `email`
|
|
22
|
+
*
|
|
23
|
+
* See https://discord.com/developers/docs/resources/user#get-current-user
|
|
24
|
+
*/
|
|
25
|
+
Email = "email",
|
|
26
|
+
/**
|
|
27
|
+
* Allows [/users/@me](https://discord.com/developers/docs/resources/user#get-current-user) without `email`
|
|
28
|
+
*
|
|
29
|
+
* See https://discord.com/developers/docs/resources/user#get-current-user
|
|
30
|
+
*/
|
|
31
|
+
Identify = "identify",
|
|
32
|
+
/**
|
|
33
|
+
* Allows [/users/@me/guilds](https://discord.com/developers/docs/resources/user#get-current-user-guilds)
|
|
34
|
+
* to return basic information about all of a user's guilds
|
|
35
|
+
*
|
|
36
|
+
* See https://discord.com/developers/docs/resources/user#get-current-user-guilds
|
|
37
|
+
*/
|
|
38
|
+
Guilds = "guilds",
|
|
39
|
+
/**
|
|
40
|
+
* Allows [/guilds/{guild.id}/members/{user.id}](https://discord.com/developers/docs/resources/guild#add-guild-member)
|
|
41
|
+
* to be used for joining users to a guild
|
|
42
|
+
*
|
|
43
|
+
* See https://discord.com/developers/docs/resources/guild#add-guild-member
|
|
44
|
+
*/
|
|
45
|
+
GuildsJoin = "guilds.join",
|
|
46
|
+
/**
|
|
47
|
+
* Allows /users/@me/guilds/{guild.id}/member to return a user's member information in a guild
|
|
48
|
+
*
|
|
49
|
+
* See https://discord.com/developers/docs/resources/user#get-current-user-guild-member
|
|
50
|
+
*/
|
|
51
|
+
GuildsMembersRead = "guilds.members.read",
|
|
52
|
+
/**
|
|
53
|
+
* Allows your app to join users to a group dm
|
|
54
|
+
*
|
|
55
|
+
* See https://discord.com/developers/docs/resources/channel#group-dm-add-recipient
|
|
56
|
+
*/
|
|
57
|
+
GroupDMJoins = "gdm.join",
|
|
58
|
+
/**
|
|
59
|
+
* For local rpc server api access, this allows you to read messages from all client channels
|
|
60
|
+
* (otherwise restricted to channels/guilds your app creates)
|
|
61
|
+
*/
|
|
62
|
+
MessagesRead = "messages.read",
|
|
63
|
+
/**
|
|
64
|
+
* Allows your app to update a user's connection and metadata for the app
|
|
65
|
+
*/
|
|
66
|
+
RoleConnectionsWrite = "role_connections.write",
|
|
67
|
+
/**
|
|
68
|
+
* For local rpc server access, this allows you to control a user's local Discord client - requires Discord approval
|
|
69
|
+
*/
|
|
70
|
+
RPC = "rpc",
|
|
71
|
+
/**
|
|
72
|
+
* For local rpc server api access, this allows you to receive notifications pushed out to the user - requires Discord approval
|
|
73
|
+
*/
|
|
74
|
+
RPCNotificationsRead = "rpc.notifications.read",
|
|
75
|
+
/**
|
|
76
|
+
* This generates a webhook that is returned in the oauth token response for authorization code grants
|
|
77
|
+
*/
|
|
78
|
+
WebhookIncoming = "webhook.incoming",
|
|
79
|
+
/**
|
|
80
|
+
* Allows your app to connect to voice on user's behalf and see all the voice members - requires Discord approval
|
|
81
|
+
*/
|
|
82
|
+
Voice = "voice",
|
|
83
|
+
/**
|
|
84
|
+
* Allows your app to upload/update builds for a user's applications - requires Discord approval
|
|
85
|
+
*/
|
|
86
|
+
ApplicationsBuildsUpload = "applications.builds.upload",
|
|
87
|
+
/**
|
|
88
|
+
* Allows your app to read build data for a user's applications
|
|
89
|
+
*/
|
|
90
|
+
ApplicationsBuildsRead = "applications.builds.read",
|
|
91
|
+
/**
|
|
92
|
+
* Allows your app to read and update store data (SKUs, store listings, achievements, etc.) for a user's applications
|
|
93
|
+
*/
|
|
94
|
+
ApplicationsStoreUpdate = "applications.store.update",
|
|
95
|
+
/**
|
|
96
|
+
* Allows your app to read entitlements for a user's applications
|
|
97
|
+
*/
|
|
98
|
+
ApplicationsEntitlements = "applications.entitlements",
|
|
99
|
+
/**
|
|
100
|
+
* Allows your app to know a user's friends and implicit relationships - requires Discord approval
|
|
101
|
+
*/
|
|
102
|
+
RelationshipsRead = "relationships.read",
|
|
103
|
+
/**
|
|
104
|
+
* Allows your app to fetch data from a user's "Now Playing/Recently Played" list - requires Discord approval
|
|
105
|
+
*/
|
|
106
|
+
ActivitiesRead = "activities.read",
|
|
107
|
+
/**
|
|
108
|
+
* Allows your app to update a user's activity - requires Discord approval (NOT REQUIRED FOR GAMESDK ACTIVITY MANAGER)
|
|
109
|
+
*
|
|
110
|
+
* See https://discord.com/developers/docs/game-sdk/activities
|
|
111
|
+
*/
|
|
112
|
+
ActivitiesWrite = "activities.write",
|
|
113
|
+
/**
|
|
114
|
+
* Allows your app to use Application Commands in a guild
|
|
115
|
+
*
|
|
116
|
+
* See https://discord.com/developers/docs/interactions/application-commands
|
|
117
|
+
*/
|
|
118
|
+
ApplicationsCommands = "applications.commands",
|
|
119
|
+
/**
|
|
120
|
+
* Allows your app to update its Application Commands via this bearer token - client credentials grant only
|
|
121
|
+
*
|
|
122
|
+
* See https://discord.com/developers/docs/interactions/application-commands
|
|
123
|
+
*/
|
|
124
|
+
ApplicationsCommandsUpdate = "applications.commands.update",
|
|
125
|
+
/**
|
|
126
|
+
* Allows your app to update permissions for its commands using a Bearer token - client credentials grant only
|
|
127
|
+
*
|
|
128
|
+
* See https://discord.com/developers/docs/interactions/application-commands
|
|
129
|
+
*/
|
|
130
|
+
ApplicationCommandsPermissionsUpdate = "applications.commands.permissions.update"
|
|
131
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Types extracted from https://discord.com/developers/docs/topics/oauth2
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.OAuth2Scopes = void 0;
|
|
7
|
+
var OAuth2Scopes;
|
|
8
|
+
(function (OAuth2Scopes) {
|
|
9
|
+
/**
|
|
10
|
+
* For oauth2 bots, this puts the bot in the user's selected guild by default
|
|
11
|
+
*/
|
|
12
|
+
OAuth2Scopes["Bot"] = "bot";
|
|
13
|
+
/**
|
|
14
|
+
* Allows [/users/@me/connections](https://discord.com/developers/docs/resources/user#get-user-connections)
|
|
15
|
+
* to return linked third-party accounts
|
|
16
|
+
*
|
|
17
|
+
* See https://discord.com/developers/docs/resources/user#get-user-connections
|
|
18
|
+
*/
|
|
19
|
+
OAuth2Scopes["Connections"] = "connections";
|
|
20
|
+
/**
|
|
21
|
+
* Allows your app to see information about the user's DMs and group DMs - requires Discord approval
|
|
22
|
+
*/
|
|
23
|
+
OAuth2Scopes["DMChannelsRead"] = "dm_channels.read";
|
|
24
|
+
/**
|
|
25
|
+
* Enables [/users/@me](https://discord.com/developers/docs/resources/user#get-current-user) to return an `email`
|
|
26
|
+
*
|
|
27
|
+
* See https://discord.com/developers/docs/resources/user#get-current-user
|
|
28
|
+
*/
|
|
29
|
+
OAuth2Scopes["Email"] = "email";
|
|
30
|
+
/**
|
|
31
|
+
* Allows [/users/@me](https://discord.com/developers/docs/resources/user#get-current-user) without `email`
|
|
32
|
+
*
|
|
33
|
+
* See https://discord.com/developers/docs/resources/user#get-current-user
|
|
34
|
+
*/
|
|
35
|
+
OAuth2Scopes["Identify"] = "identify";
|
|
36
|
+
/**
|
|
37
|
+
* Allows [/users/@me/guilds](https://discord.com/developers/docs/resources/user#get-current-user-guilds)
|
|
38
|
+
* to return basic information about all of a user's guilds
|
|
39
|
+
*
|
|
40
|
+
* See https://discord.com/developers/docs/resources/user#get-current-user-guilds
|
|
41
|
+
*/
|
|
42
|
+
OAuth2Scopes["Guilds"] = "guilds";
|
|
43
|
+
/**
|
|
44
|
+
* Allows [/guilds/{guild.id}/members/{user.id}](https://discord.com/developers/docs/resources/guild#add-guild-member)
|
|
45
|
+
* to be used for joining users to a guild
|
|
46
|
+
*
|
|
47
|
+
* See https://discord.com/developers/docs/resources/guild#add-guild-member
|
|
48
|
+
*/
|
|
49
|
+
OAuth2Scopes["GuildsJoin"] = "guilds.join";
|
|
50
|
+
/**
|
|
51
|
+
* Allows /users/@me/guilds/{guild.id}/member to return a user's member information in a guild
|
|
52
|
+
*
|
|
53
|
+
* See https://discord.com/developers/docs/resources/user#get-current-user-guild-member
|
|
54
|
+
*/
|
|
55
|
+
OAuth2Scopes["GuildsMembersRead"] = "guilds.members.read";
|
|
56
|
+
/**
|
|
57
|
+
* Allows your app to join users to a group dm
|
|
58
|
+
*
|
|
59
|
+
* See https://discord.com/developers/docs/resources/channel#group-dm-add-recipient
|
|
60
|
+
*/
|
|
61
|
+
OAuth2Scopes["GroupDMJoins"] = "gdm.join";
|
|
62
|
+
/**
|
|
63
|
+
* For local rpc server api access, this allows you to read messages from all client channels
|
|
64
|
+
* (otherwise restricted to channels/guilds your app creates)
|
|
65
|
+
*/
|
|
66
|
+
OAuth2Scopes["MessagesRead"] = "messages.read";
|
|
67
|
+
/**
|
|
68
|
+
* Allows your app to update a user's connection and metadata for the app
|
|
69
|
+
*/
|
|
70
|
+
OAuth2Scopes["RoleConnectionsWrite"] = "role_connections.write";
|
|
71
|
+
/**
|
|
72
|
+
* For local rpc server access, this allows you to control a user's local Discord client - requires Discord approval
|
|
73
|
+
*/
|
|
74
|
+
OAuth2Scopes["RPC"] = "rpc";
|
|
75
|
+
/**
|
|
76
|
+
* For local rpc server api access, this allows you to receive notifications pushed out to the user - requires Discord approval
|
|
77
|
+
*/
|
|
78
|
+
OAuth2Scopes["RPCNotificationsRead"] = "rpc.notifications.read";
|
|
79
|
+
/**
|
|
80
|
+
* This generates a webhook that is returned in the oauth token response for authorization code grants
|
|
81
|
+
*/
|
|
82
|
+
OAuth2Scopes["WebhookIncoming"] = "webhook.incoming";
|
|
83
|
+
/**
|
|
84
|
+
* Allows your app to connect to voice on user's behalf and see all the voice members - requires Discord approval
|
|
85
|
+
*/
|
|
86
|
+
OAuth2Scopes["Voice"] = "voice";
|
|
87
|
+
/**
|
|
88
|
+
* Allows your app to upload/update builds for a user's applications - requires Discord approval
|
|
89
|
+
*/
|
|
90
|
+
OAuth2Scopes["ApplicationsBuildsUpload"] = "applications.builds.upload";
|
|
91
|
+
/**
|
|
92
|
+
* Allows your app to read build data for a user's applications
|
|
93
|
+
*/
|
|
94
|
+
OAuth2Scopes["ApplicationsBuildsRead"] = "applications.builds.read";
|
|
95
|
+
/**
|
|
96
|
+
* Allows your app to read and update store data (SKUs, store listings, achievements, etc.) for a user's applications
|
|
97
|
+
*/
|
|
98
|
+
OAuth2Scopes["ApplicationsStoreUpdate"] = "applications.store.update";
|
|
99
|
+
/**
|
|
100
|
+
* Allows your app to read entitlements for a user's applications
|
|
101
|
+
*/
|
|
102
|
+
OAuth2Scopes["ApplicationsEntitlements"] = "applications.entitlements";
|
|
103
|
+
/**
|
|
104
|
+
* Allows your app to know a user's friends and implicit relationships - requires Discord approval
|
|
105
|
+
*/
|
|
106
|
+
OAuth2Scopes["RelationshipsRead"] = "relationships.read";
|
|
107
|
+
/**
|
|
108
|
+
* Allows your app to fetch data from a user's "Now Playing/Recently Played" list - requires Discord approval
|
|
109
|
+
*/
|
|
110
|
+
OAuth2Scopes["ActivitiesRead"] = "activities.read";
|
|
111
|
+
/**
|
|
112
|
+
* Allows your app to update a user's activity - requires Discord approval (NOT REQUIRED FOR GAMESDK ACTIVITY MANAGER)
|
|
113
|
+
*
|
|
114
|
+
* See https://discord.com/developers/docs/game-sdk/activities
|
|
115
|
+
*/
|
|
116
|
+
OAuth2Scopes["ActivitiesWrite"] = "activities.write";
|
|
117
|
+
/**
|
|
118
|
+
* Allows your app to use Application Commands in a guild
|
|
119
|
+
*
|
|
120
|
+
* See https://discord.com/developers/docs/interactions/application-commands
|
|
121
|
+
*/
|
|
122
|
+
OAuth2Scopes["ApplicationsCommands"] = "applications.commands";
|
|
123
|
+
/**
|
|
124
|
+
* Allows your app to update its Application Commands via this bearer token - client credentials grant only
|
|
125
|
+
*
|
|
126
|
+
* See https://discord.com/developers/docs/interactions/application-commands
|
|
127
|
+
*/
|
|
128
|
+
OAuth2Scopes["ApplicationsCommandsUpdate"] = "applications.commands.update";
|
|
129
|
+
/**
|
|
130
|
+
* Allows your app to update permissions for its commands using a Bearer token - client credentials grant only
|
|
131
|
+
*
|
|
132
|
+
* See https://discord.com/developers/docs/interactions/application-commands
|
|
133
|
+
*/
|
|
134
|
+
OAuth2Scopes["ApplicationCommandsPermissionsUpdate"] = "applications.commands.permissions.update";
|
|
135
|
+
})(OAuth2Scopes || (exports.OAuth2Scopes = OAuth2Scopes = {}));
|