add @discordjs/opus + jmd.js

This commit is contained in:
2021-04-11 12:12:39 +02:00
parent c49adbb146
commit 5c2e0737c0
977 changed files with 199471 additions and 1074 deletions

50
node_modules/discord.js/package.json generated vendored
View File

@@ -1,28 +1,28 @@
{
"_from": "discord.js",
"_id": "discord.js@12.5.1",
"_from": "discord.js@^12.5.1",
"_id": "discord.js@12.5.3",
"_inBundle": false,
"_integrity": "sha512-VwZkVaUAIOB9mKdca0I5MefPMTQJTNg0qdgi1huF3iwsFwJ0L5s/Y69AQe+iPmjuV6j9rtKoG0Ta0n9vgEIL6w==",
"_integrity": "sha512-D3nkOa/pCkNyn6jLZnAiJApw2N9XrIsXUAdThf01i7yrEuqUmDGc7/CexVWwEcgbQR97XQ+mcnqJpmJ/92B4Aw==",
"_location": "/discord.js",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"type": "range",
"registry": true,
"raw": "discord.js",
"raw": "discord.js@^12.5.1",
"name": "discord.js",
"escapedName": "discord.js",
"rawSpec": "",
"rawSpec": "^12.5.1",
"saveSpec": null,
"fetchSpec": "latest"
"fetchSpec": "^12.5.1"
},
"_requiredBy": [
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/discord.js/-/discord.js-12.5.1.tgz",
"_shasum": "992b45753e3815526a279914ccc281d3496f5990",
"_spec": "discord.js",
"_where": "C:\\Users\\j4kub\\Desktop\\code\\git\\gractwo-bot",
"_resolved": "https://registry.npmjs.org/discord.js/-/discord.js-12.5.3.tgz",
"_shasum": "56820d473c24320871df9ea0bbc6b462f21cf85c",
"_spec": "discord.js@^12.5.1",
"_where": "C:\\Users\\j4kub\\Desktop\\git\\gractwo-bot",
"author": {
"name": "Amish Shah",
"email": "amishshah.2k@gmail.com"
@@ -97,33 +97,33 @@
"@discordjs/form-data": "^3.0.1",
"abort-controller": "^3.0.0",
"node-fetch": "^2.6.1",
"prism-media": "^1.2.2",
"prism-media": "^1.2.9",
"setimmediate": "^1.0.5",
"tweetnacl": "^1.0.3",
"ws": "^7.3.1"
"ws": "^7.4.4"
},
"deprecated": false,
"description": "A powerful library for interacting with the Discord API",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-angular": "^12.0.1",
"@types/node": "^12.12.6",
"@types/ws": "^7.2.7",
"cross-env": "^7.0.2",
"@types/ws": "^7.4.0",
"cross-env": "^7.0.3",
"discord.js-docgen": "git+https://github.com/discordjs/docgen.git",
"dtslint": "^4.0.4",
"eslint": "^7.11.0",
"dtslint": "^4.0.8",
"eslint": "^7.23.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.0",
"jest": "^26.6.0",
"jest": "^26.6.3",
"json-filter-loader": "^1.0.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"terser-webpack-plugin": "^4.2.3",
"tslint": "^6.1.3",
"typescript": "^4.0.3",
"typescript": "^4.2.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
@@ -188,5 +188,5 @@
},
"types": "./typings/index.d.ts",
"unpkg": "./webpack/discord.min.js",
"version": "12.5.1"
"version": "12.5.3"
}

View File

@@ -9,7 +9,7 @@ class InviteDeleteAction extends Action {
const client = this.client;
const channel = client.channels.cache.get(data.channel_id);
const guild = client.guilds.cache.get(data.guild_id);
if (!channel && !guild) return false;
if (!channel) return false;
const inviteData = Object.assign(data, { channel, guild });
const invite = new Invite(client, inviteData);

View File

@@ -56,8 +56,14 @@ class ClientVoiceManager {
this.connections.delete(guild_id);
return;
}
connection.channel = this.client.channels.cache.get(channel_id);
connection.setSessionID(session_id);
const channel = this.client.channels.cache.get(channel_id);
if (channel) {
connection.channel = channel;
connection.setSessionID(session_id);
} else {
this.client.emit('debug', `[VOICE] disconnecting from guild ${guild_id} as channel ${channel_id} is uncached`);
connection.disconnect();
}
}
/**

View File

@@ -25,7 +25,7 @@ class ReactionUserManager extends BaseManager {
*/
/**
* Fetches all the users that gave this reaction. Resolves with a collection of users, mapped by their IDs.
* Fetches the users that gave this reaction. Resolves with a collection of users, mapped by their IDs.
* @param {Object} [options] Options for fetching the users
* @param {number} [options.limit=100] The maximum amount of users to fetch, defaults to 100
* @param {Snowflake} [options.before] Limit fetching users to those with an id lower than the supplied id

View File

@@ -1,40 +0,0 @@
"use strict";
/// <reference path="index.d.ts" />
Object.defineProperty(exports, "__esModule", { value: true });
const discord_js_1 = require("discord.js");
const client = new discord_js_1.Client();
client.on('ready', () => {
console.log(`Client is logged in as ${client.user.tag} and ready!`);
});
client.on('guildCreate', g => {
const channel = g.channels.cache.random();
if (!channel)
return;
channel.setName('foo').then(updatedChannel => {
console.log(`New channel name: ${updatedChannel.name}`);
});
});
client.on('messageReactionRemoveAll', async (message) => {
console.log(`messageReactionRemoveAll - id: ${message.id} (${message.id.length})`);
if (message.partial)
message = await message.fetch();
console.log(`messageReactionRemoveAll - content: ${message.content}`);
});
client.on('message', ({ channel }) => {
assertIsMessage(channel.send('string'));
assertIsMessage(channel.send({}));
assertIsMessage(channel.send({ embed: {} }));
assertIsMessage(channel.send({ another: 'property' }, {}));
const attachment = new discord_js_1.MessageAttachment('file.png');
const embed = new discord_js_1.MessageEmbed();
assertIsMessage(channel.send(attachment));
assertIsMessage(channel.send(embed));
assertIsMessage(channel.send([attachment, embed]));
assertIsMessageArray(channel.send(Symbol('another primitive'), { split: true }));
assertIsMessageArray(channel.send({ split: true }));
// @ts-expect-error
channel.send();
// @ts-expect-error
channel.send({ another: 'property' });
});
client.login('absolutely-valid-token');

File diff suppressed because one or more lines are too long

View File

@@ -1,861 +0,0 @@
/*! no static exports found */
/*!********************!*\
!*** ws (ignored) ***!
\********************/
/*!**********************!*\
!*** ./package.json ***!
\**********************/
/*!**********************!*\
!*** ./src/index.js ***!
\**********************/
/*!**********************!*\
!*** util (ignored) ***!
\**********************/
/*!***********************!*\
!*** https (ignored) ***!
\***********************/
/*!*************************!*\
!*** erlpack (ignored) ***!
\*************************/
/*!**************************!*\
!*** ./src/WebSocket.js ***!
\**************************/
/*!**************************!*\
!*** ./src/util/Util.js ***!
\**************************/
/*!***************************!*\
!*** zlib-sync (ignored) ***!
\***************************/
/*!*****************************!*\
!*** ./src/errors/index.js ***!
\*****************************/
/*!*****************************!*\
!*** ./src/util/Intents.js ***!
\*****************************/
/*!******************************!*\
!*** ./src/client/Client.js ***!
\******************************/
/*!******************************!*\
!*** ./src/util/BitField.js ***!
\******************************/
/*!******************************!*\
!*** ./src/util/Speaking.js ***!
\******************************/
/*!*******************************!*\
!*** ./src/rest/APIRouter.js ***!
\*******************************/
/*!*******************************!*\
!*** ./src/rest/HTTPError.js ***!
\*******************************/
/*!*******************************!*\
!*** ./src/util/Constants.js ***!
\*******************************/
/*!*******************************!*\
!*** ./src/util/Snowflake.js ***!
\*******************************/
/*!*******************************!*\
!*** ./src/util/UserFlags.js ***!
\*******************************/
/*!********************************!*\
!*** ./src/errors/DJSError.js ***!
\********************************/
/*!********************************!*\
!*** ./src/errors/Messages.js ***!
\********************************/
/*!********************************!*\
!*** ./src/rest/APIRequest.js ***!
\********************************/
/*!********************************!*\
!*** ./src/rest/AsyncQueue.js ***!
\********************************/
/*!********************************!*\
!*** ./src/structures/Base.js ***!
\********************************/
/*!********************************!*\
!*** ./src/structures/Role.js ***!
\********************************/
/*!********************************!*\
!*** ./src/structures/Team.js ***!
\********************************/
/*!********************************!*\
!*** ./src/structures/User.js ***!
\********************************/
/*!********************************!*\
!*** ./src/util/Collection.js ***!
\********************************/
/*!********************************!*\
!*** ./src/util/Structures.js ***!
\********************************/
/*!********************************!*\
!*** worker_threads (ignored) ***!
\********************************/
/*!*********************************!*\
!*** ./src/rest/RESTManager.js ***!
\*********************************/
/*!*********************************!*\
!*** ./src/structures/Emoji.js ***!
\*********************************/
/*!*********************************!*\
!*** ./src/structures/Guild.js ***!
\*********************************/
/*!*********************************!*\
!*** ./src/util/Permissions.js ***!
\*********************************/
/*!**********************************!*\
!*** ./sharding/Shard (ignored) ***!
\**********************************/
/*!**********************************!*\
!*** ./src/client/BaseClient.js ***!
\**********************************/
/*!**********************************!*\
!*** ./src/structures/Invite.js ***!
\**********************************/
/*!**********************************!*\
!*** ./src/util/DataResolver.js ***!
\**********************************/
/*!**********************************!*\
!*** ./src/util/MessageFlags.js ***!
\**********************************/
/*!***********************************!*\
!*** (webpack)/buildin/global.js ***!
\***********************************/
/*!***********************************!*\
!*** ./node_modules/util/util.js ***!
\***********************************/
/*!***********************************!*\
!*** ./src/structures/Channel.js ***!
\***********************************/
/*!***********************************!*\
!*** ./src/structures/Message.js ***!
\***********************************/
/*!***********************************!*\
!*** ./src/structures/Webhook.js ***!
\***********************************/
/*!***********************************!*\
!*** ./src/util/ActivityFlags.js ***!
\***********************************/
/*!************************************!*\
!*** ./src/rest/RequestHandler.js ***!
\************************************/
/*!************************************!*\
!*** ./src/structures/Presence.js ***!
\************************************/
/*!*************************************!*\
!*** ./src/client/WebhookClient.js ***!
\*************************************/
/*!*************************************!*\
!*** ./src/managers/BaseManager.js ***!
\*************************************/
/*!*************************************!*\
!*** ./src/managers/RoleManager.js ***!
\*************************************/
/*!*************************************!*\
!*** ./src/managers/UserManager.js ***!
\*************************************/
/*!*************************************!*\
!*** ./src/rest/DiscordAPIError.js ***!
\*************************************/
/*!*************************************!*\
!*** ./src/structures/DMChannel.js ***!
\*************************************/
/*!**************************************!*\
!*** ./node_modules/buffer/index.js ***!
\**************************************/
/*!**************************************!*\
!*** ./src/client/actions/Action.js ***!
\**************************************/
/*!**************************************!*\
!*** ./src/managers/GuildManager.js ***!
\**************************************/
/*!**************************************!*\
!*** ./src/structures/APIMessage.js ***!
\**************************************/
/*!**************************************!*\
!*** ./src/structures/ClientUser.js ***!
\**************************************/
/*!**************************************!*\
!*** ./src/structures/GuildEmoji.js ***!
\**************************************/
/*!**************************************!*\
!*** ./src/structures/TeamMember.js ***!
\**************************************/
/*!**************************************!*\
!*** ./src/structures/VoiceState.js ***!
\**************************************/
/*!***************************************!*\
!*** ./node_modules/events/events.js ***!
\***************************************/
/*!***************************************!*\
!*** ./node_modules/ieee754/index.js ***!
\***************************************/
/*!***************************************!*\
!*** ./node_modules/isarray/index.js ***!
\***************************************/
/*!***************************************!*\
!*** ./src/structures/GuildMember.js ***!
\***************************************/
/*!***************************************!*\
!*** ./src/structures/Integration.js ***!
\***************************************/
/*!***************************************!*\
!*** ./src/structures/NewsChannel.js ***!
\***************************************/
/*!***************************************!*\
!*** ./src/structures/TextChannel.js ***!
\***************************************/
/*!***************************************!*\
!*** ./src/structures/VoiceRegion.js ***!
\***************************************/
/*!***************************************!*\
!*** ./src/util/LimitedCollection.js ***!
\***************************************/
/*!****************************************!*\
!*** ./src/managers/ChannelManager.js ***!
\****************************************/
/*!****************************************!*\
!*** ./src/managers/MessageManager.js ***!
\****************************************/
/*!****************************************!*\
!*** ./src/structures/GuildChannel.js ***!
\****************************************/
/*!****************************************!*\
!*** ./src/structures/GuildPreview.js ***!
\****************************************/
/*!****************************************!*\
!*** ./src/structures/MessageEmbed.js ***!
\****************************************/
/*!****************************************!*\
!*** ./src/structures/StoreChannel.js ***!
\****************************************/
/*!****************************************!*\
!*** ./src/structures/VoiceChannel.js ***!
\****************************************/
/*!****************************************!*\
!*** ./src/util/SystemChannelFlags.js ***!
\****************************************/
/*!*****************************************!*\
!*** ./node_modules/base64-js/index.js ***!
\*****************************************/
/*!*****************************************!*\
!*** ./node_modules/process/browser.js ***!
\*****************************************/
/*!*****************************************!*\
!*** ./src/managers/PresenceManager.js ***!
\*****************************************/
/*!*****************************************!*\
!*** ./src/managers/ReactionManager.js ***!
\*****************************************/
/*!*****************************************!*\
!*** ./src/structures/GuildTemplate.js ***!
\*****************************************/
/*!*****************************************!*\
!*** ./src/structures/ReactionEmoji.js ***!
\*****************************************/
/*!******************************************!*\
!*** ./src/client/actions/UserUpdate.js ***!
\******************************************/
/*!******************************************!*\
!*** ./src/structures/BaseGuildEmoji.js ***!
\******************************************/
/*!******************************************!*\
!*** ./src/structures/ClientPresence.js ***!
\******************************************/
/*!******************************************!*\
!*** ./src/structures/GuildAuditLogs.js ***!
\******************************************/
/*!*******************************************!*\
!*** ./node_modules/safe-buffer/index.js ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/client/actions/GuildDelete.js ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/client/actions/GuildUpdate.js ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/client/actions/TypingStart.js ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/managers/GuildEmojiManager.js ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/managers/VoiceStateManager.js ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/structures/CategoryChannel.js ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/structures/MessageMentions.js ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/structures/MessageReaction.js ***!
\*******************************************/
/*!********************************************!*\
!*** ./node_modules/node-fetch/browser.js ***!
\********************************************/
/*!********************************************!*\
!*** ./sharding/ShardClientUtil (ignored) ***!
\********************************************/
/*!********************************************!*\
!*** ./sharding/ShardingManager (ignored) ***!
\********************************************/
/*!********************************************!*\
!*** ./src/client/actions/InviteCreate.js ***!
\********************************************/
/*!********************************************!*\
!*** ./src/client/actions/InviteDelete.js ***!
\********************************************/
/*!********************************************!*\
!*** ./src/managers/GuildMemberManager.js ***!
\********************************************/
/*!********************************************!*\
!*** ./src/structures/MessageCollector.js ***!
\********************************************/
/*!********************************************!*\
!*** ./voice/ClientVoiceManager (ignored) ***!
\********************************************/
/*!*********************************************!*\
!*** ../sharding/ShardClientUtil (ignored) ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/client/actions/ChannelCreate.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/client/actions/ChannelDelete.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/client/actions/ChannelUpdate.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/client/actions/MessageCreate.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/client/actions/MessageDelete.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/client/actions/MessageUpdate.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/managers/GuildChannelManager.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/managers/ReactionUserManager.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/structures/ClientApplication.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/structures/GuildPreviewEmoji.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/structures/MessageAttachment.js ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/structures/ReactionCollector.js ***!
\*********************************************/
/*!**********************************************!*\
!*** ./src/client/actions/ActionsManager.js ***!
\**********************************************/
/*!**********************************************!*\
!*** ./src/client/actions/GuildBanRemove.js ***!
\**********************************************/
/*!**********************************************!*\
!*** ./src/client/actions/PresenceUpdate.js ***!
\**********************************************/
/*!**********************************************!*\
!*** ./src/client/actions/WebhooksUpdate.js ***!
\**********************************************/
/*!***********************************************!*\
!*** ./node_modules/core-util-is/lib/util.js ***!
\***********************************************/
/*!***********************************************!*\
!*** ./src/client/actions/GuildRoleCreate.js ***!
\***********************************************/
/*!***********************************************!*\
!*** ./src/client/actions/GuildRoleDelete.js ***!
\***********************************************/
/*!***********************************************!*\
!*** ./src/client/actions/GuildRoleUpdate.js ***!
\***********************************************/
/*!***********************************************!*\
!*** ./src/managers/GuildEmojiRoleManager.js ***!
\***********************************************/
/*!************************************************!*\
!*** ./node_modules/timers-browserify/main.js ***!
\************************************************/
/*!************************************************!*\
!*** ./node_modules/util-deprecate/browser.js ***!
\************************************************/
/*!************************************************!*\
!*** ./src/client/actions/GuildEmojiCreate.js ***!
\************************************************/
/*!************************************************!*\
!*** ./src/client/actions/GuildEmojiDelete.js ***!
\************************************************/
/*!************************************************!*\
!*** ./src/client/actions/GuildEmojiUpdate.js ***!
\************************************************/
/*!************************************************!*\
!*** ./src/client/actions/VoiceStateUpdate.js ***!
\************************************************/
/*!************************************************!*\
!*** ./src/client/websocket/WebSocketShard.js ***!
\************************************************/
/*!************************************************!*\
!*** ./src/client/websocket/handlers/READY.js ***!
\************************************************/
/*!************************************************!*\
!*** ./src/client/websocket/handlers/index.js ***!
\************************************************/
/*!************************************************!*\
!*** ./src/managers/GuildMemberRoleManager.js ***!
\************************************************/
/*!************************************************!*\
!*** ./src/structures/PermissionOverwrites.js ***!
\************************************************/
/*!************************************************!*\
!*** ./src/structures/interfaces/Collector.js ***!
\************************************************/
/*!*************************************************!*\
!*** ./node_modules/stream-browserify/index.js ***!
\*************************************************/
/*!*************************************************!*\
!*** ./src/client/actions/GuildEmojisUpdate.js ***!
\*************************************************/
/*!*************************************************!*\
!*** ./src/client/actions/GuildMemberRemove.js ***!
\*************************************************/
/*!*************************************************!*\
!*** ./src/client/actions/GuildMemberUpdate.js ***!
\*************************************************/
/*!*************************************************!*\
!*** ./src/client/actions/MessageDeleteBulk.js ***!
\*************************************************/
/*!*************************************************!*\
!*** ./src/structures/PartialGroupDMChannel.js ***!
\*************************************************/
/*!**************************************************!*\
!*** ./node_modules/abort-controller/browser.js ***!
\**************************************************/
/*!**************************************************!*\
!*** ./src/client/actions/MessageReactionAdd.js ***!
\**************************************************/
/*!**************************************************!*\
!*** ./src/client/websocket/WebSocketManager.js ***!
\**************************************************/
/*!**************************************************!*\
!*** ./src/client/websocket/handlers/RESUMED.js ***!
\**************************************************/
/*!**************************************************!*\
!*** ./src/structures/IntegrationApplication.js ***!
\**************************************************/
/*!**************************************************!*\
!*** ./src/structures/interfaces/Application.js ***!
\**************************************************/
/*!***************************************************!*\
!*** ./node_modules/inherits/inherits_browser.js ***!
\***************************************************/
/*!***************************************************!*\
!*** ./node_modules/readable-stream/transform.js ***!
\***************************************************/
/*!***************************************************!*\
!*** ./node_modules/setimmediate/setImmediate.js ***!
\***************************************************/
/*!****************************************************!*\
!*** ./node_modules/process-nextick-args/index.js ***!
\****************************************************/
/*!*****************************************************!*\
!*** ./node_modules/readable-stream/passthrough.js ***!
\*****************************************************/
/*!*****************************************************!*\
!*** ./src/client/actions/MessageReactionRemove.js ***!
\*****************************************************/
/*!******************************************************!*\
!*** ./node_modules/node-libs-browser/mock/empty.js ***!
\******************************************************/
/*!******************************************************!*\
!*** ./node_modules/util/support/isBufferBrowser.js ***!
\******************************************************/
/*!******************************************************!*\
!*** ./src/client/websocket/handlers/USER_UPDATE.js ***!
\******************************************************/
/*!*******************************************************!*\
!*** ./src/client/actions/GuildIntegrationsUpdate.js ***!
\*******************************************************/
/*!*******************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_CREATE.js ***!
\*******************************************************/
/*!*******************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_DELETE.js ***!
\*******************************************************/
/*!*******************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_UPDATE.js ***!
\*******************************************************/
/*!*******************************************************!*\
!*** ./src/client/websocket/handlers/TYPING_START.js ***!
\*******************************************************/
/*!*******************************************************!*\
!*** ./src/structures/interfaces/TextBasedChannel.js ***!
\*******************************************************/
/*!********************************************************!*\
!*** ./node_modules/readable-stream/duplex-browser.js ***!
\********************************************************/
/*!********************************************************!*\
!*** ./src/client/actions/GuildRolesPositionUpdate.js ***!
\********************************************************/
/*!********************************************************!*\
!*** ./src/client/actions/MessageReactionRemoveAll.js ***!
\********************************************************/
/*!********************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_BAN_ADD.js ***!
\********************************************************/
/*!********************************************************!*\
!*** ./src/client/websocket/handlers/INVITE_CREATE.js ***!
\********************************************************/
/*!********************************************************!*\
!*** ./src/client/websocket/handlers/INVITE_DELETE.js ***!
\********************************************************/
/*!*********************************************************!*\
!*** ./src/client/websocket/handlers sync ^\.\/.*\.js$ ***!
\*********************************************************/
/*!*********************************************************!*\
!*** ./src/client/websocket/handlers/CHANNEL_CREATE.js ***!
\*********************************************************/
/*!*********************************************************!*\
!*** ./src/client/websocket/handlers/CHANNEL_DELETE.js ***!
\*********************************************************/
/*!*********************************************************!*\
!*** ./src/client/websocket/handlers/CHANNEL_UPDATE.js ***!
\*********************************************************/
/*!*********************************************************!*\
!*** ./src/client/websocket/handlers/MESSAGE_CREATE.js ***!
\*********************************************************/
/*!*********************************************************!*\
!*** ./src/client/websocket/handlers/MESSAGE_DELETE.js ***!
\*********************************************************/
/*!*********************************************************!*\
!*** ./src/client/websocket/handlers/MESSAGE_UPDATE.js ***!
\*********************************************************/
/*!**********************************************************!*\
!*** ./node_modules/@discordjs/collection/dist/index.js ***!
\**********************************************************/
/*!**********************************************************!*\
!*** ./node_modules/@discordjs/form-data/lib/browser.js ***!
\**********************************************************/
/*!**********************************************************!*\
!*** ./node_modules/readable-stream/readable-browser.js ***!
\**********************************************************/
/*!**********************************************************!*\
!*** ./node_modules/readable-stream/writable-browser.js ***!
\**********************************************************/
/*!**********************************************************!*\
!*** ./src/client/actions/MessageReactionRemoveEmoji.js ***!
\**********************************************************/
/*!**********************************************************!*\
!*** ./src/client/websocket/handlers/PRESENCE_UPDATE.js ***!
\**********************************************************/
/*!**********************************************************!*\
!*** ./src/client/websocket/handlers/WEBHOOKS_UPDATE.js ***!
\**********************************************************/
/*!***********************************************************!*\
!*** ./node_modules/string_decoder/lib/string_decoder.js ***!
\***********************************************************/
/*!***********************************************************!*\
!*** ./src/client/actions/GuildChannelsPositionUpdate.js ***!
\***********************************************************/
/*!***********************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_BAN_REMOVE.js ***!
\***********************************************************/
/*!***********************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_MEMBER_ADD.js ***!
\***********************************************************/
/*!************************************************************!*\
!*** ./node_modules/readable-stream/lib/_stream_duplex.js ***!
\************************************************************/
/*!************************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_ROLE_CREATE.js ***!
\************************************************************/
/*!************************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_ROLE_DELETE.js ***!
\************************************************************/
/*!************************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_ROLE_UPDATE.js ***!
\************************************************************/
/*!*************************************************************!*\
!*** ./src/client/websocket/handlers/VOICE_STATE_UPDATE.js ***!
\*************************************************************/
/*!**************************************************************!*\
!*** ./node_modules/readable-stream/lib/_stream_readable.js ***!
\**************************************************************/
/*!**************************************************************!*\
!*** ./node_modules/readable-stream/lib/_stream_writable.js ***!
\**************************************************************/
/*!**************************************************************!*\
!*** ./src/client/websocket/handlers/CHANNEL_PINS_UPDATE.js ***!
\**************************************************************/
/*!**************************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_EMOJIS_UPDATE.js ***!
\**************************************************************/
/*!**************************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_MEMBERS_CHUNK.js ***!
\**************************************************************/
/*!**************************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_MEMBER_REMOVE.js ***!
\**************************************************************/
/*!**************************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_MEMBER_UPDATE.js ***!
\**************************************************************/
/*!**************************************************************!*\
!*** ./src/client/websocket/handlers/MESSAGE_DELETE_BULK.js ***!
\**************************************************************/
/*!**************************************************************!*\
!*** ./src/client/websocket/handlers/VOICE_SERVER_UPDATE.js ***!
\**************************************************************/
/*!***************************************************************!*\
!*** ./node_modules/readable-stream/lib/_stream_transform.js ***!
\***************************************************************/
/*!***************************************************************!*\
!*** ./src/client/websocket/handlers/MESSAGE_REACTION_ADD.js ***!
\***************************************************************/
/*!*****************************************************************!*\
!*** ./node_modules/readable-stream/lib/_stream_passthrough.js ***!
\*****************************************************************/
/*!******************************************************************!*\
!*** ./src/client/websocket/handlers/MESSAGE_REACTION_REMOVE.js ***!
\******************************************************************/
/*!********************************************************************!*\
!*** ./src/client/websocket/handlers/GUILD_INTEGRATIONS_UPDATE.js ***!
\********************************************************************/
/*!*********************************************************************!*\
!*** ./node_modules/util/node_modules/inherits/inherits_browser.js ***!
\*********************************************************************/
/*!**********************************************************************!*\
!*** ./node_modules/readable-stream/lib/internal/streams/destroy.js ***!
\**********************************************************************/
/*!**********************************************************************!*\
!*** ./src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_ALL.js ***!
\**********************************************************************/
/*!************************************************************************!*\
!*** ./src/client/websocket/handlers/MESSAGE_REACTION_REMOVE_EMOJI.js ***!
\************************************************************************/
/*!*************************************************************************!*\
!*** ./node_modules/readable-stream/lib/internal/streams/BufferList.js ***!
\*************************************************************************/
/*!*****************************************************************************!*\
!*** ./node_modules/readable-stream/lib/internal/streams/stream-browser.js ***!
\*****************************************************************************/

File diff suppressed because one or more lines are too long