cloudstorm 0.5.2 → 0.5.5
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/dist/Types.d.ts +1 -17
- package/dist/connector/DiscordConnector.d.ts +3 -0
- package/dist/connector/DiscordConnector.js +64 -15
- package/dist/index.js +5 -1
- package/dist/structures/BetterWs.d.ts +1 -1
- package/dist/structures/BetterWs.js +6 -6
- package/dist/structures/RatelimitBucket.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +10 -10
package/dist/Types.d.ts
CHANGED
|
@@ -1,20 +1,4 @@
|
|
|
1
|
-
export
|
|
2
|
-
GUILDS: number;
|
|
3
|
-
GUILD_MEMBERS: number;
|
|
4
|
-
GUILD_BANS: number;
|
|
5
|
-
GUILD_EMOJIS_AND_STICKERS: number;
|
|
6
|
-
GUILD_INTEGRATIONS: number;
|
|
7
|
-
GUILD_WEBHOOKS: number;
|
|
8
|
-
GUILD_INVITES: number;
|
|
9
|
-
GUILD_VOICE_STATES: number;
|
|
10
|
-
GUILD_PRESENCES: number;
|
|
11
|
-
GUILD_MESSAGES: number;
|
|
12
|
-
GUILD_MESSAGE_REACTIONS: number;
|
|
13
|
-
GUILD_MESSAGE_TYPING: number;
|
|
14
|
-
DIRECT_MESSAGES: number;
|
|
15
|
-
DIRECT_MESSAGE_REACTIONS: number;
|
|
16
|
-
DIRECT_MESSAGE_TYPING: number;
|
|
17
|
-
}
|
|
1
|
+
export declare type IntentFlags = (typeof import("./Intents"))["flags"];
|
|
18
2
|
export declare type IntentResolvable = number | Array<number> | keyof IntentFlags | Array<keyof IntentFlags>;
|
|
19
3
|
export interface IWSMessage {
|
|
20
4
|
op: import("discord-typings").GatewayOpcode;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
+
/// <reference types="node" />
|
|
2
3
|
import { EventEmitter } from "events";
|
|
3
4
|
import BetterWs from "../structures/BetterWs";
|
|
4
5
|
interface ConnectorEvents {
|
|
@@ -44,6 +45,8 @@ declare class DiscordConnector extends EventEmitter {
|
|
|
44
45
|
lastHeartbeatSend: number;
|
|
45
46
|
latency: number;
|
|
46
47
|
private _closing;
|
|
48
|
+
identifyAddress: string;
|
|
49
|
+
resumeAddress: string | null;
|
|
47
50
|
static readonly default: typeof DiscordConnector;
|
|
48
51
|
/**
|
|
49
52
|
* Create a new Discord Connector.
|
|
@@ -30,11 +30,13 @@ class DiscordConnector extends events_1.EventEmitter {
|
|
|
30
30
|
this.lastHeartbeatSend = 0;
|
|
31
31
|
this.latency = 0;
|
|
32
32
|
this._closing = false;
|
|
33
|
+
this.resumeAddress = null;
|
|
33
34
|
this.id = id;
|
|
34
35
|
this.client = client;
|
|
35
36
|
this.options = client.options;
|
|
36
37
|
this.reconnect = this.options.reconnect || true;
|
|
37
|
-
this.
|
|
38
|
+
this.identifyAddress = this.options.endpoint;
|
|
39
|
+
this.betterWs = new BetterWs_1.default(this.identifyAddress, this.options.ws);
|
|
38
40
|
this.betterWs.on("ws_open", () => {
|
|
39
41
|
this.status = "connecting";
|
|
40
42
|
this.emit("stateChange", "connecting");
|
|
@@ -51,6 +53,7 @@ class DiscordConnector extends events_1.EventEmitter {
|
|
|
51
53
|
connect() {
|
|
52
54
|
this._closing = false;
|
|
53
55
|
this.client.emit("debug", `Shard ${this.id} connecting to gateway`);
|
|
56
|
+
// The address should already be updated if resuming/identifying
|
|
54
57
|
return this.betterWs.connect();
|
|
55
58
|
}
|
|
56
59
|
/**
|
|
@@ -83,7 +86,7 @@ class DiscordConnector extends events_1.EventEmitter {
|
|
|
83
86
|
break;
|
|
84
87
|
case Constants_1.GATEWAY_OP_CODES.RECONNECT:
|
|
85
88
|
this.client.emit("debug", `Gateway asked shard ${this.id} to reconnect`);
|
|
86
|
-
if (this.options.reconnect)
|
|
89
|
+
if (this.options.reconnect && this.betterWs.status !== 2)
|
|
87
90
|
this._reconnect(true);
|
|
88
91
|
else
|
|
89
92
|
this.disconnect();
|
|
@@ -104,7 +107,7 @@ class DiscordConnector extends events_1.EventEmitter {
|
|
|
104
107
|
this.heartbeatTimeout = setInterval(() => {
|
|
105
108
|
if (this.lastACKAt <= Date.now() - (this.heartbeatInterval + 5000)) {
|
|
106
109
|
this.client.emit("debug", `Shard ${this.id} has not received a heartbeat ACK in ${this.heartbeatInterval + 5000}ms.`);
|
|
107
|
-
if (this.options.reconnect)
|
|
110
|
+
if (this.options.reconnect && this.betterWs.status !== 2)
|
|
108
111
|
this._reconnect(true);
|
|
109
112
|
else
|
|
110
113
|
this.disconnect();
|
|
@@ -133,10 +136,17 @@ class DiscordConnector extends events_1.EventEmitter {
|
|
|
133
136
|
if (this.betterWs.status === 2)
|
|
134
137
|
void this.client.emit("error", `Client was attempting to ${resume ? "resume" : "reconnect"} while the WebSocket was still in the connecting state. This should never happen.`);
|
|
135
138
|
await this.betterWs.close(resume ? 4000 : 1012, "reconnecting");
|
|
136
|
-
if (resume)
|
|
139
|
+
if (resume) {
|
|
137
140
|
this.clearHeartBeat();
|
|
138
|
-
|
|
141
|
+
if (this.resumeAddress)
|
|
142
|
+
this.betterWs.address = this.resumeAddress;
|
|
143
|
+
else
|
|
144
|
+
this.betterWs.address = this.identifyAddress;
|
|
145
|
+
}
|
|
146
|
+
else {
|
|
139
147
|
this.reset();
|
|
148
|
+
this.betterWs.address = this.identifyAddress;
|
|
149
|
+
}
|
|
140
150
|
this.connect();
|
|
141
151
|
}
|
|
142
152
|
/**
|
|
@@ -175,9 +185,9 @@ class DiscordConnector extends events_1.EventEmitter {
|
|
|
175
185
|
d: {
|
|
176
186
|
token: this.options.token,
|
|
177
187
|
properties: {
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
188
|
+
os: process.platform,
|
|
189
|
+
browser: "CloudStorm",
|
|
190
|
+
device: "CloudStorm"
|
|
181
191
|
},
|
|
182
192
|
large_threshold: this.options.largeGuildThreshold,
|
|
183
193
|
shard: [this.id, this.options.totalShards || 1],
|
|
@@ -219,8 +229,11 @@ class DiscordConnector extends events_1.EventEmitter {
|
|
|
219
229
|
switch (message.t) {
|
|
220
230
|
case "READY":
|
|
221
231
|
case "RESUMED":
|
|
222
|
-
if (message.t === "READY")
|
|
232
|
+
if (message.t === "READY") {
|
|
233
|
+
if (message.d.resume_gateway_url)
|
|
234
|
+
this.resumeAddress = message.d.resume_gateway_url;
|
|
223
235
|
this.sessionId = message.d.session_id;
|
|
236
|
+
}
|
|
224
237
|
this.status = "ready";
|
|
225
238
|
this.emit("stateChange", "ready");
|
|
226
239
|
this._trace = message.d._trace;
|
|
@@ -241,64 +254,96 @@ class DiscordConnector extends events_1.EventEmitter {
|
|
|
241
254
|
this.status = "disconnected";
|
|
242
255
|
this.emit("stateChange", "disconnected");
|
|
243
256
|
// Disallowed Intents.
|
|
244
|
-
if (code === 4014)
|
|
257
|
+
if (code === 4014) {
|
|
258
|
+
this.betterWs.address = this.identifyAddress;
|
|
245
259
|
this.client.emit("error", "Disallowed Intents, check your client options and application page.");
|
|
260
|
+
}
|
|
246
261
|
// Invalid Intents.
|
|
247
|
-
if (code === 4013)
|
|
262
|
+
if (code === 4013) {
|
|
263
|
+
this.betterWs.address = this.identifyAddress;
|
|
248
264
|
this.client.emit("error", "Invalid Intents data, check your client options.");
|
|
265
|
+
}
|
|
249
266
|
// Invalid API version.
|
|
250
|
-
if (code === 4012)
|
|
267
|
+
if (code === 4012) {
|
|
268
|
+
this.betterWs.address = this.identifyAddress;
|
|
251
269
|
this.client.emit("error", "Invalid API version.");
|
|
270
|
+
}
|
|
252
271
|
// Sharding required.
|
|
253
|
-
if (code === 4011)
|
|
272
|
+
if (code === 4011) {
|
|
273
|
+
this.betterWs.address = this.identifyAddress;
|
|
254
274
|
this.client.emit("error", "Shard would be on over 2500 guilds. Add more shards.");
|
|
275
|
+
}
|
|
255
276
|
// Invalid shard.
|
|
256
|
-
if (code === 4010)
|
|
277
|
+
if (code === 4010) {
|
|
278
|
+
this.betterWs.address = this.identifyAddress;
|
|
257
279
|
this.client.emit("error", "Invalid sharding data, check your client options.");
|
|
280
|
+
}
|
|
258
281
|
// Session timed out.
|
|
259
282
|
// force identify if the session is marked as invalid.
|
|
260
283
|
if (code === 4009) {
|
|
261
284
|
this.client.emit("error", "Session timed out.");
|
|
262
285
|
this.clearHeartBeat();
|
|
286
|
+
this.betterWs.address = this.identifyAddress;
|
|
263
287
|
this.connect();
|
|
264
288
|
}
|
|
265
289
|
// Rate limited.
|
|
266
290
|
if (code === 4008) {
|
|
267
291
|
this.client.emit("error", "You are being rate limited. Wait before sending more packets.");
|
|
268
292
|
this.clearHeartBeat();
|
|
293
|
+
if (this.resumeAddress)
|
|
294
|
+
this.betterWs.address = this.resumeAddress;
|
|
295
|
+
else
|
|
296
|
+
this.betterWs.address = this.identifyAddress;
|
|
269
297
|
this.connect();
|
|
270
298
|
}
|
|
271
299
|
// Invalid sequence.
|
|
272
300
|
if (code === 4007) {
|
|
273
301
|
this.client.emit("error", "Invalid sequence. Reconnecting and starting a new session.");
|
|
274
302
|
this.reset();
|
|
303
|
+
this.betterWs.address = this.identifyAddress;
|
|
275
304
|
this.connect();
|
|
276
305
|
}
|
|
277
306
|
// Already authenticated.
|
|
278
307
|
if (code === 4005) {
|
|
279
308
|
this.client.emit("error", "You sent more than one OP 2 IDENTIFY payload while the websocket was open.");
|
|
280
309
|
this.clearHeartBeat();
|
|
310
|
+
if (this.resumeAddress)
|
|
311
|
+
this.betterWs.address = this.resumeAddress;
|
|
281
312
|
this.connect();
|
|
282
313
|
}
|
|
283
314
|
// Authentication failed.
|
|
284
|
-
if (code === 4004)
|
|
315
|
+
if (code === 4004) {
|
|
316
|
+
this.betterWs.address = this.identifyAddress;
|
|
285
317
|
this.client.emit("error", "Tried to connect with an invalid token");
|
|
318
|
+
}
|
|
286
319
|
// Not authenticated.
|
|
287
320
|
if (code === 4003) {
|
|
288
321
|
this.client.emit("error", "You tried to send a packet before sending an OP 2 IDENTIFY or OP 6 RESUME.");
|
|
289
322
|
this.clearHeartBeat();
|
|
323
|
+
if (this.resumeAddress)
|
|
324
|
+
this.betterWs.address = this.resumeAddress;
|
|
325
|
+
else
|
|
326
|
+
this.betterWs.address = this.identifyAddress;
|
|
290
327
|
this.connect();
|
|
291
328
|
}
|
|
292
329
|
// Decode error.
|
|
293
330
|
if (code === 4002) {
|
|
294
331
|
this.client.emit("error", "You sent an invalid payload");
|
|
295
332
|
this.clearHeartBeat();
|
|
333
|
+
if (this.resumeAddress)
|
|
334
|
+
this.betterWs.address = this.resumeAddress;
|
|
335
|
+
else
|
|
336
|
+
this.betterWs.address = this.identifyAddress;
|
|
296
337
|
this.connect();
|
|
297
338
|
}
|
|
298
339
|
// Invalid opcode.
|
|
299
340
|
if (code === 4001) {
|
|
300
341
|
this.client.emit("error", "You sent an invalid opcode or invalid payload for an opcode");
|
|
301
342
|
this.clearHeartBeat();
|
|
343
|
+
if (this.resumeAddress)
|
|
344
|
+
this.betterWs.address = this.resumeAddress;
|
|
345
|
+
else
|
|
346
|
+
this.betterWs.address = this.identifyAddress;
|
|
302
347
|
this.connect();
|
|
303
348
|
}
|
|
304
349
|
// Generic error / safe self closing code.
|
|
@@ -308,6 +353,10 @@ class DiscordConnector extends events_1.EventEmitter {
|
|
|
308
353
|
else {
|
|
309
354
|
this.client.emit("error", "Error code 4000 received. Attempting to resume");
|
|
310
355
|
this.clearHeartBeat();
|
|
356
|
+
if (this.resumeAddress)
|
|
357
|
+
this.betterWs.address = this.resumeAddress;
|
|
358
|
+
else
|
|
359
|
+
this.betterWs.address = this.identifyAddress;
|
|
311
360
|
this.connect();
|
|
312
361
|
}
|
|
313
362
|
}
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -37,7 +37,7 @@ declare class BetterWs extends EventEmitter {
|
|
|
37
37
|
private _internal;
|
|
38
38
|
private _connecting;
|
|
39
39
|
constructor(address: string, options: import("../Types").IClientWSOptions);
|
|
40
|
-
get status(): 2 | 3 | 4
|
|
40
|
+
get status(): 1 | 2 | 3 | 4;
|
|
41
41
|
connect(): Promise<void>;
|
|
42
42
|
close(code: number, reason?: string): Promise<void>;
|
|
43
43
|
sendMessage(data: import("../Types").IWSMessage): Promise<void>;
|
|
@@ -192,7 +192,7 @@ class BetterWs extends events_1.EventEmitter {
|
|
|
192
192
|
}
|
|
193
193
|
_onReadable() {
|
|
194
194
|
const socket = this._socket;
|
|
195
|
-
while (socket.readableLength > 1) {
|
|
195
|
+
while (((socket === null || socket === void 0 ? void 0 : socket.readableLength) || 0) > 1) {
|
|
196
196
|
let length = readRange(socket, 1, 1) & 127;
|
|
197
197
|
let bytes = 0;
|
|
198
198
|
if (length > 125) {
|
|
@@ -208,7 +208,7 @@ class BetterWs extends events_1.EventEmitter {
|
|
|
208
208
|
const opcode = frame[0] & 15;
|
|
209
209
|
if (fin !== 1 || opcode === 0)
|
|
210
210
|
this.emit("debug", "discord actually does send messages with fin=0. if you see this error let me know");
|
|
211
|
-
const payload = frame.
|
|
211
|
+
const payload = frame.subarray(2 + bytes);
|
|
212
212
|
this._processFrame(opcode, payload);
|
|
213
213
|
}
|
|
214
214
|
}
|
|
@@ -271,7 +271,7 @@ class BetterWs extends events_1.EventEmitter {
|
|
|
271
271
|
}
|
|
272
272
|
case 8: {
|
|
273
273
|
const code = message.length > 1 ? (message[0] << 8) + message[1] : 0;
|
|
274
|
-
const reason = message.length > 2 ? message.
|
|
274
|
+
const reason = message.length > 2 ? message.subarray(2).toString() : "";
|
|
275
275
|
this.emit("ws_close", code, reason);
|
|
276
276
|
this._write(Buffer.from([code >> 8, code & 255]), 8);
|
|
277
277
|
break;
|
|
@@ -293,10 +293,10 @@ function readRange(socket, index, bytes) {
|
|
|
293
293
|
let read = 0;
|
|
294
294
|
let num = 0;
|
|
295
295
|
do {
|
|
296
|
-
for (
|
|
296
|
+
for (const element of head.data) {
|
|
297
297
|
if (++cursor > index) {
|
|
298
298
|
num *= 256;
|
|
299
|
-
num +=
|
|
299
|
+
num += element;
|
|
300
300
|
if (++read === bytes)
|
|
301
301
|
return num;
|
|
302
302
|
}
|
|
@@ -539,6 +539,6 @@ function writeETF(data) {
|
|
|
539
539
|
}
|
|
540
540
|
};
|
|
541
541
|
loop(data);
|
|
542
|
-
return Buffer.from(b.
|
|
542
|
+
return Buffer.from(b.subarray(0, i));
|
|
543
543
|
}
|
|
544
544
|
module.exports = BetterWs;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es5.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2016.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2021.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.esnext.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.dom.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../appdata/roaming/npm/node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/constants.ts","../node_modules/snowtransfer/dist/constants.d.ts","../node_modules/snowtransfer/dist/endpoints.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/snowtransfer/dist/ratelimitbuckets/localbucket.d.ts","../node_modules/snowtransfer/dist/ratelimiter.d.ts","../node_modules/@types/centra/index.d.ts","../node_modules/snowtransfer/dist/requesthandler.d.ts","../node_modules/discord-typings/reference.d.ts","../node_modules/discord-typings/topics/permissions.d.ts","../node_modules/discord-typings/resources/emoji.d.ts","../node_modules/discord-typings/resources/voice.d.ts","../node_modules/discord-typings/topics/opcodesandstatuscodes.d.ts","../node_modules/discord-typings/topics/teams.d.ts","../node_modules/discord-typings/resources/application.d.ts","../node_modules/discord-typings/resources/sticker.d.ts","../node_modules/discord-typings/resources/guildscheduledevent.d.ts","../node_modules/discord-typings/resources/invite.d.ts","../node_modules/discord-typings/topics/gateway.d.ts","../node_modules/discord-typings/resources/stageinstance.d.ts","../node_modules/discord-typings/resources/guild.d.ts","../node_modules/discord-typings/resources/user.d.ts","../node_modules/discord-typings/interactions/messagecomponents.d.ts","../node_modules/discord-typings/interactions/receivingandresponding.d.ts","../node_modules/discord-typings/resources/channel.d.ts","../node_modules/discord-typings/interactions/applicationcommands.d.ts","../node_modules/discord-typings/resources/webhook.d.ts","../node_modules/discord-typings/resources/auditlog.d.ts","../node_modules/discord-typings/resources/guildtemplate.d.ts","../node_modules/discord-typings/topics/oauth2.d.ts","../node_modules/discord-typings/index.d.ts","../node_modules/snowtransfer/dist/methods/channels.d.ts","../node_modules/snowtransfer/dist/methods/users.d.ts","../node_modules/snowtransfer/dist/methods/guildassets.d.ts","../node_modules/snowtransfer/dist/methods/webhooks.d.ts","../node_modules/snowtransfer/dist/methods/guilds.d.ts","../node_modules/snowtransfer/dist/methods/guildscheduledevent.d.ts","../node_modules/snowtransfer/dist/methods/guildtemplate.d.ts","../node_modules/snowtransfer/dist/methods/interactions.d.ts","../node_modules/snowtransfer/dist/methods/invites.d.ts","../node_modules/snowtransfer/dist/methods/voices.d.ts","../node_modules/snowtransfer/dist/methods/bots.d.ts","../node_modules/snowtransfer/dist/methods/auditlog.d.ts","../node_modules/snowtransfer/dist/methods/stageinstance.d.ts","../node_modules/snowtransfer/dist/snowtransfer.d.ts","../node_modules/snowtransfer/dist/index.d.ts","../src/structures/ratelimitbucket.ts","../src/types.ts","../src/structures/betterws.ts","../src/intents.ts","../src/connector/discordconnector.ts","../src/shard.ts","../src/shardmanager.ts","../src/client.ts","../src/index.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"9966ec0b03e7f0932a26e393e297e48dd31237cf514f1f973fd06e9d977b8f2c","241670ab33d6700a86b96dfd35c12d5ed2f2d109ffc5b6b0e124faec32ee00e7","af73d86092a6434d4e4c16968ecbea06b51154c66aac99429aa28617fa51807d","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","a6f8d474a7cf5d4ab22d761f14e5f6b85c0050728fdc69fd65d79980bc42e60f","6feef4cfd98b1ccdd6248a91008b5701a7a2fb0a61adbeb74ee7c8fac0f514da","3e5883cbd1b75ae02ec22e0a74b35c1c069eecf6a34814292024f431d3a38cb3","07ee26bcf8df0582fd517602d259cc7a8b71b1d86d83ddaa5e47cbae875db79f","dba1158a38c78ad31104b9cb36086133846b4c1b2b08d35f79868bdf2fc0ac8a","150a5862874478d5c14e7b6f02e1df5f5e46284b7dcae8822d6f045fc30e94a4","a26ea102be21fbcae9d7eefe8e1deb6d5065af54a2470494fb55cf2b6c5f4793","ca6f8fe753ffd22a559a5838c4fe2a8a0c54ce9acd06464bbee549e6250a5814","08efe48606426eca55d9ff13f2849019d4689fa4cb2d27a9f0be4e543a7ce5e1","4cb4c93a284d529a689f96c49a162b654a86451543140e38e18d120342b59230","0921334431ec6bf599691193762a4f6d049c8632c563b09ac13665506ec43195","c9e75e2e8a8f78f713c243b95fa5ebf425eddf7a0f8ee4bf957d969ce522c055","bf0763a84702a72bbc492f6a41196b70df432dfec062af0f6a555d785b943cfb","fdc136dfdfea68b8bb93db9060ff59eab1696bc1725e2a264faa82b3a2836c1a","6f5f168bde77a5a553a0b2703aea33b25b8b6fd3657c32707fd7b135d37f7999","c78aa784c2c60a8acd213cbb94f9a4792788f679c6c64824910bf5d3b028eb42","91364f823572be45c655c42572d16c2cb0530e12419c14eea23dacecb561b01a","b800c4657de5751c42a234152368abdc480201355c9ea2d79f1e2251f0a0923a","febff245a678fc3f598c5611c8f5c079db8b12ad08e61ef1d7febfa9c82743b2","3395093408c97de4f9e47b37b1edbf47643e9a591b74dbf6b814c1c5b3e278e7","3fe7bb36f0b587c32403d1de497547522ba282d88f660dc6d057a0d187e932c5","204070adc433ffd7f2c9d5e598074024ce8bfb6225eb841e293ac1283a165213","cf8ef3555f09f8b71df47dc63dff5a869fb4afe4a1cb632dbec3dd625af725f3","cef33e4a401baf042a4eb8d98eeedd46740160a215d3c306c7b822deaf31be0a","e4ff2ec932357917fc93a319a654ca4a9e948392c8cb8e4a806e92d3add51047","7ba36d11ae38518a6ff04bdf2089c5e62ea10ef8801512f250681b1f271225bd","9f2c9e732e01e506055e2b6f336c24d8c1ea559c803e362dc0d4342b6e7902d1","1dec42ef5c7ff9fa01ac2c05ecb66d4b8b7d2b4b65ad7d7bdb01a3d727ee90d7","07d36410b1d0e2bfce13528fc8ecf1dbec31f6ec3986146410e1d6d6998fc148","4a5d2deb6c3edee59bc443c3bb0b2a1651e5101ee93aeb9261dcdedeed28b5af","dbf1346c9b0f14653a8dbe8a6c5f46208c8c4538c60f8ec21714e60bb1e2b596","af3601bf1517ef2dda2e771d04102982dc6d67f34cf42f4d81861cde1b2bf7bb","4066f8d717c7c12da9bf8cba759a1d7449396d7f35b6eb4d4b4eec0d1647dda4","d948d6e7436ee4109e313b16269a1d2b5d14faf65d9437c976fb7ef4486b18f2","157ca38948262ff885e3237a1a565e1bbb15e4f1f83ebc494e0026888d839751","7bd7d8f58f36696617c44d4ac8196284d9fad0036edc66ac5d1514c15fea2ee5","9a61a2e6282659624b125fd29aba2d2aadb3325e22ee8ea66123cbc658e1776f","c4b601ffd759466cacf25ffd585ac2fcf94fc0e8739ec179bea83e774872838a","d15f0313532fa6144d409cf896d9258750ce4f294cfe201642c7a02752a49f91","42f50ef5f446724f7e64df244aa91db35e1714b082dadf2f1ef8015eab4652da","25513566501ee6e95e633500ea9d3e316afc78cef6a37e80212b236769913ebe","7fed7ecc1c740cc737643da5966801ff99b4643b7ac8dbf44bbf84c0be5a6d7d","f1ffb993045211679cdd64df58f6f0b304b86fb07657077135697968b244eb51","6768d708c3e445bda7ab50c428dca96e46f3c2ae5c347d9bf86deb888771b1dd",{"version":"c5fad9cc02863b6d0a159f94f488c0026e140bff192a7045e21f15030764fce4","signature":"4a3b892acad064ff417c6d5ce3247d3ec694fbb57a68a7a0e26ad0084e3bebdc"},"0d08b33aac3b17b047fbffef9bcff420ec6cb2a8ef6820434da8aa5b97ab335d",{"version":"1b8034034cb6b249db1df030bbf8cfd373fe3d2a371bfaf92d93ebe11c80110b","signature":"9730bce50b78ddc7b8e62490eedfc9b840ef728c91fea509440e15fc86a7abd7"},{"version":"1e6053c1231a4e35b6b8d017f1eef1740af53624c763321bd79387f06eab128c","signature":"fc0677fb1b5375a74cb4d29550ac2f8dddd4b2959a5bdc6b0d35cd51a7c5db57"},{"version":"cf83684d1ae077315fc644041234b31a5e3e9e41285876d84faf0f907c7a7635","signature":"3ebbf3636543b06a67a72d27c96754c8d9d21327fc45e3eb010eb8986f22520b"},{"version":"c84783fb8075912d76ce14917bd16e942478e03c0dfa359b3dd99f3d1c4cbf2e","signature":"08468128804e2f7806bd081f9c3299a05095754a2e554e712246a2ebb1b505af"},{"version":"5a013adbecf3026a50e5d4c91aa611de05d25f70f6731e1afa4a31c9e3796ef4","signature":"a2084fd9326fde59e6af3fd117411282c4bf5114623f41a7b776abd79fc6282a"}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noUnusedLocals":false,"outDir":"./","removeComments":false,"sourceMap":false,"strictNullChecks":true,"target":6},"fileIdsList":[[92],[67,91,92,99],[49,92],[52,92],[53,58,92],[54,64,65,72,81,91,92],[54,55,64,72,92],[56,92],[57,58,65,73,92],[58,81,88,92],[59,61,64,72,92],[60,92],[61,62,92],[63,64,92],[64,92],[64,65,66,81,91,92],[64,65,66,81,92],[67,72,81,91,92],[64,65,67,68,72,81,88,91,92],[67,69,81,88,91,92],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98],[64,70,92],[71,91,92],[61,64,72,81,92],[73,92],[74,92],[52,75,92],[76,90,92,96],[77,92],[78,92],[64,79,92],[79,80,92,94],[64,81,82,83,92],[81,83,92],[81,82,92],[84,92],[85,92],[64,86,87,92],[86,87,92],[58,72,81,88,92],[89,92],[72,90,92],[53,67,78,91,92],[58,92],[81,92,93],[92,94],[92,95],[53,58,64,66,75,81,91,92,94,96],[81,92,97],[92,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125],[92,104,120],[92,106],[92,104,105,116,117,118,120,121],[92,104,109,117],[92,104,112,116,117,120,122],[92,104,106,110,111,116,117,118,119],[92,104,117],[92,104,105,106,107,111,112,114,115,117,120],[92,104,116,117],[92,110,112,116,117,120],[92,104],[92,104,116],[92,104,116,117,120],[92,104,105,106,108,110,111,113,116,117,120],[47,48,92,140],[92,103,126],[92,99,103,126],[92,103,126,130],[92,101],[92,99,100],[64,92,99,101,102],[92,101,103,127,128,129,130,131,132,133,134,135,136,137,138,139],[46,64,92,126,141,142,143,148],[46,64,92,126,143,144,145,149],[46,92],[46,92,143,145,149,150],[92,143,145],[46,64,92,126,143,146,149],[92,126,142,147,149],[46,58,64,69,72,92,97,142,143],[92,126,141],[64,126,143,148],[64,126,143,144,149],[46,143,145,149,150],[64,126,146,149],[126,142,147,149],[64,142,143]],"referencedMap":[[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[32,1],[33,1],[34,1],[35,1],[7,1],[40,1],[36,1],[37,1],[38,1],[39,1],[8,1],[44,1],[41,1],[42,1],[43,1],[1,1],[9,1],[45,1],[102,2],[49,3],[50,3],[52,4],[53,5],[54,6],[55,7],[56,8],[57,9],[58,10],[59,11],[60,12],[61,13],[62,13],[63,14],[64,15],[65,16],[66,17],[51,1],[98,1],[67,18],[68,19],[69,20],[99,21],[70,22],[71,23],[72,24],[73,25],[74,26],[75,27],[76,28],[77,29],[78,30],[79,31],[80,32],[81,33],[83,34],[82,35],[84,36],[85,37],[86,38],[87,39],[88,40],[89,41],[90,42],[91,43],[92,44],[93,45],[94,46],[95,47],[96,48],[97,49],[126,50],[121,51],[118,52],[119,53],[104,1],[110,54],[123,55],[120,56],[106,57],[116,58],[112,59],[124,59],[113,60],[115,61],[111,57],[117,62],[107,62],[122,63],[114,64],[125,1],[108,1],[105,61],[109,57],[47,1],[48,1],[141,65],[138,66],[137,66],[127,67],[129,67],[131,66],[132,66],[133,66],[134,68],[135,66],[139,66],[128,66],[136,66],[130,67],[100,69],[101,70],[103,71],[140,72],[149,73],[146,74],[46,75],[150,76],[145,77],[147,78],[148,79],[144,80],[142,1],[143,81]],"exportedModulesMap":[[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[32,1],[33,1],[34,1],[35,1],[7,1],[40,1],[36,1],[37,1],[38,1],[39,1],[8,1],[44,1],[41,1],[42,1],[43,1],[1,1],[9,1],[45,1],[102,2],[49,3],[50,3],[52,4],[53,5],[54,6],[55,7],[56,8],[57,9],[58,10],[59,11],[60,12],[61,13],[62,13],[63,14],[64,15],[65,16],[66,17],[51,1],[98,1],[67,18],[68,19],[69,20],[99,21],[70,22],[71,23],[72,24],[73,25],[74,26],[75,27],[76,28],[77,29],[78,30],[79,31],[80,32],[81,33],[83,34],[82,35],[84,36],[85,37],[86,38],[87,39],[88,40],[89,41],[90,42],[91,43],[92,44],[93,45],[94,46],[95,47],[96,48],[97,49],[126,50],[121,51],[118,52],[119,53],[104,1],[110,54],[123,55],[120,56],[106,57],[116,58],[112,59],[124,59],[113,60],[115,61],[111,57],[117,62],[107,62],[122,63],[114,64],[125,1],[108,1],[105,61],[109,57],[47,1],[48,1],[141,65],[138,66],[137,66],[127,67],[129,67],[131,66],[132,66],[133,66],[134,68],[135,66],[139,66],[128,66],[136,66],[130,67],[100,69],[101,70],[103,71],[140,72],[149,82],[146,83],[46,75],[150,84],[145,77],[147,85],[148,86],[144,87],[142,1],[143,81]],"semanticDiagnosticsPerFile":[10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,44,41,42,43,1,9,45,102,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,51,98,67,68,69,99,70,71,72,73,74,75,76,77,78,79,80,81,83,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,126,121,118,119,104,110,123,120,106,116,112,124,113,115,111,117,107,122,114,125,108,105,109,47,48,141,138,137,127,129,131,132,133,134,135,139,128,136,130,100,101,103,140,149,146,46,150,145,147,148,144,142,143]},"version":"4.5.5"}
|
|
1
|
+
{"program":{"fileNames":["a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es5.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2015.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2016.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2017.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2018.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2019.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2020.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2021.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2022.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.esnext.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.dom.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2015.core.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2015.collection.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2015.generator.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2015.iterable.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2015.promise.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2015.proxy.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2015.reflect.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2015.symbol.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2016.array.include.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2017.object.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2017.string.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2017.intl.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2018.intl.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2018.promise.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2018.regexp.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2019.array.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2019.object.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2019.string.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2019.symbol.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2020.bigint.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2020.date.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2020.promise.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2020.string.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2020.intl.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2020.number.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2021.promise.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2021.string.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2021.weakref.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2021.intl.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2022.array.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2022.error.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2022.intl.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2022.object.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.es2022.string.d.ts","a:/windows/documents/github/cloudstorm/node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/constants.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/constants.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/endpoints.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/assert.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/assert/strict.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/globals.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/async_hooks.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/buffer.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/child_process.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/cluster.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/console.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/constants.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/crypto.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/dgram.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/diagnostics_channel.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/dns.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/dns/promises.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/domain.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/events.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/fs.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/fs/promises.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/http.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/http2.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/https.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/inspector.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/module.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/net.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/os.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/path.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/perf_hooks.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/process.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/punycode.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/querystring.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/readline.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/repl.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/stream.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/stream/promises.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/stream/consumers.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/stream/web.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/string_decoder.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/test.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/timers.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/timers/promises.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/tls.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/trace_events.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/tty.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/url.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/util.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/v8.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/vm.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/wasi.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/worker_threads.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/zlib.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/globals.global.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/node/index.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/localbucket.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/ratelimiter.d.ts","a:/windows/documents/github/cloudstorm/node_modules/@types/centra/index.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/requesthandler.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/reference.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/topics/permissions.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/emoji.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/voice.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/topics/opcodesandstatuscodes.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/topics/teams.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/application.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/sticker.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/guildscheduledevent.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/invite.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/topics/gateway.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/stageinstance.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/guild.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/user.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/interactions/messagecomponents.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/interactions/receivingandresponding.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/channel.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/interactions/applicationcommands.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/webhook.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/auditlog.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/automoderation.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/resources/guildtemplate.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/topics/oauth2.d.ts","a:/windows/documents/github/cloudstorm/node_modules/discord-typings/index.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/channels.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/users.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/guildassets.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/webhooks.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/guilds.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/guildscheduledevent.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/guildtemplate.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/interactions.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/invites.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/voice.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/bots.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/auditlog.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/methods/stageinstance.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/snowtransfer.d.ts","a:/windows/documents/github/cloudstorm/node_modules/snowtransfer/dist/index.d.ts","../src/structures/ratelimitbucket.ts","../src/intents.ts","../src/types.ts","../src/structures/betterws.ts","../src/connector/discordconnector.ts","../src/shard.ts","../src/shardmanager.ts","../src/client.ts","../src/index.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},{"version":"9966ec0b03e7f0932a26e393e297e48dd31237cf514f1f973fd06e9d977b8f2c","signature":"3f312956ee149f82efccc23541a50f5c24d336f9434c3b0666f6cfdb69978c9e"},"52c27915cb35f0b8df0152d516b34af68ba31109303128c6090313dea3454d8a","48c9586dc5d86f2889559e9a9a36ad8660820ca548c869bdfa29e0bba6883e06","9122ed7070e054b73ebab37c2373a196def2d90e7d1a9a7fcd9d46b0e51fae78","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"002d6d5f044365b3fbfba0ba9be3bb57cac09b81547c8df4b0795755d2081d90","affectsGlobalScope":true},"0c0cee62cb619aed81133b904f644515ba3064487002a7da83fd8aa07b1b4abd","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","34ec1daf3566f26c43dbab380af0de1aac29166e57e4f9ef379a2f154e0cb290","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","75ecef44f126e2ae018b4abbd85b6e8a2e2ba1638ebec56cc64274643ce3567b","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"bae4ea23beb8397755b935cb84d3cdc6cdb0b1b4a329b90de9fc6c8774d71994","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","a9b6b0f7b1e30359283b131ba6d1c51ee2d3601a2f12e1623141e6a1a60c92a5","aeee0090b38de0dd47ca9a79ad5c2d156e3e09d92306719b0b45a3e96098e564","acfbb5aaef964e1d441f961a1846197f03241dba3c63b1e4d1903684888ef465","09416dd69576b03a3f485adf329a02f043e4a481e060ef5b208194e488d31fd9","8acf99b1c8682276a63ea5bb68433782715892726b97e4604a415e4e56bce41c",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"9499ba4dcd1ee0596d8c98d01341bc874840c5291156513bda667fecad54d5be","a907bf91df26df2400858ef75f749498fb5cf00062bf90a737ac3949cc07978d","cb92bc2e42b261e4299025756f1beb826b3d9666a3f0d46f8a7254ca512f57e4","4275d5f964e7fc7afc18538e26b3748c207dd772998346d17f409749aa1f3a63",{"version":"59104b2e80c588b813d03d3a45f57117ca4601ae3fc216c5ffbcbafc4effc1c5","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","d1a78a3c5708807e8de3e399f91df4797c62e44b02195eefc2209b2e713e54ee","8c4c1a64db28930732033c31418f817dcb9d09d706766707ae6d38f23faf0c53","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","556bf5c36deb62cffa1bf697c1789fe008ec82db0273025001db66732714e9d9","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","653968fc1b35c5eb3d273d36fac1c1dc66f9537edf28f33485b8776bd956e23d",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","a381f079c4804442f179d742fdb2e495fe28d67a47cac673485f75ae2e77aeca","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"bfe39beb986d2a2e512c091cbe924f1c415bc65de54de0e2f6a0dc6f84c183d9","affectsGlobalScope":true},"2af17363f8a062e3a8cd1b26030af0058b3f86e783f4fc6aa9f57247f240ebaa","06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","d2ec52f565f0570e90b659811347bd689f8c6039b11eaaccd0f243759d46da6e","8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"64d5585e08ad1ab194b18bf4e851f22a626eae33ac7312ca4ba90bb7ea7daf64","e76bb9431f64b6e0acb5256c905745b4abfb9cc7350b9473b58bee296acd18cd","57a633dd0eeb0f5aae82a9257a2fee5f4e71b87413c0057259bbc347bff95873","3e5883cbd1b75ae02ec22e0a74b35c1c069eecf6a34814292024f431d3a38cb3","c0323097f7274bd9a425fadd155d173bb53a9d239640794866022d44ac1f7331","dba1158a38c78ad31104b9cb36086133846b4c1b2b08d35f79868bdf2fc0ac8a","150a5862874478d5c14e7b6f02e1df5f5e46284b7dcae8822d6f045fc30e94a4","a26ea102be21fbcae9d7eefe8e1deb6d5065af54a2470494fb55cf2b6c5f4793","ca6f8fe753ffd22a559a5838c4fe2a8a0c54ce9acd06464bbee549e6250a5814","08efe48606426eca55d9ff13f2849019d4689fa4cb2d27a9f0be4e543a7ce5e1","4cb4c93a284d529a689f96c49a162b654a86451543140e38e18d120342b59230","0921334431ec6bf599691193762a4f6d049c8632c563b09ac13665506ec43195","c9e75e2e8a8f78f713c243b95fa5ebf425eddf7a0f8ee4bf957d969ce522c055","bf0763a84702a72bbc492f6a41196b70df432dfec062af0f6a555d785b943cfb","c50c47776ee0e959c1f6cb757a71be9311113997b056138a3f28bc43c1958966","734cbacd46cf884f1f663b4d3579ee454ccf9e634765aeaa788d56e4c1cd81bd","c78aa784c2c60a8acd213cbb94f9a4792788f679c6c64824910bf5d3b028eb42","a61f10cd165c8ffd78218844918f9ebce1c7d80b457163680a5dfefb898caac9","84065a9f0e6d3daae4fbfd1360bd849a02ed004d868c9657da0401b013802b55","febff245a678fc3f598c5611c8f5c079db8b12ad08e61ef1d7febfa9c82743b2","3c4ad4533c80be7363470530f0c6c5df672ada38b1fd5085fe53cb0e66139a33","236987cec86845bcb113bc0fabef642d26d64ac62406869bc63d1998820a9c8c","b792958b6fe5806a69fd44ac59e89d2d1311435d37a1ec67c651436d49976358","cf8ef3555f09f8b71df47dc63dff5a869fb4afe4a1cb632dbec3dd625af725f3","f86655282cbf385fe04ea6b4ac3680a1c9642f224047066ad1d23770e5acd84d","5997fecedf2e72dd13f365fb880f99444ee2de26855287e89a411c6baf2f1cb7","e4ff2ec932357917fc93a319a654ca4a9e948392c8cb8e4a806e92d3add51047","a6be5af808005db077761c817812e35d9a84266dd6032a64e43c7f51c06e81ed","2552b49e80f168f30f289d788a49dcab4681c977ee5bb96784a66f916f72c149","74f422d896fb0b625c68275bde5851c6681171f7d8b2666d11f4873d82c94e86","697c7a2bc0caadae20eeb762a0cbe7e1a35d008065e7ce181cd0ea972f1be14d","52c644702249054218f5644306bf2136e40a7ed34312be0e9d8a79e120c601cd","cb424b76e9e6e514ba644735b890c8fcd58ab09671d92c11e0a72f16d920d142","c298abb3a12d23353cc3113adfdd08034cd87634cfddaedbede1ae892a904639","25f935b1f12fe79373b0459f194db4840b45851675b93f2c82913d3d7ea51e45","c75cfa61c24dd440928df18ad764bfc422e1cfdd03dd0c403034cddfe2300d6f","71047bb0baf8605ec11455317429d5465a8509914fbdfd7604aabe66dacde9f3","ffbb422fdbc70ec17621819048450154bc230c508729291e19a54638f95f9882","3e43e09b01f6d83ffbb27efd5adec353ba8dfd955686bda4511dbf6bc54f45df","29ac9e4a88028032c59efec8d502f424c32dba8fe28c0e51226d6b90c4459dbe","a081d4780cf47daf0d71f4cab2855f248e9188cd8c3df143a1caf525e8dd4245","696a178c60d7c9b798c93dbb2f3582d3117a1d08abf4f70a077e6b3b8b653058","4040a6d392ae0b5a80a416c924cbee5e9c565e0847792e4169a2a71cdbaa45ef","666b53c323bd2cfb77b6b004d43de3ad915a9066cc338d9f0e20684c14219d19",{"version":"5ec4299ae41689306bf962a2f9eed51b33d45e3f1a74406e2b08b6921b18ba56","signature":"073b0e8b9d7392ed5e02f1f12c0e2e3c2e46b1820d4464923003966ce870d116"},{"version":"0d08b33aac3b17b047fbffef9bcff420ec6cb2a8ef6820434da8aa5b97ab335d","signature":"42a3019b8904d7963511fa16f3490eb756ed8eff8600c0116bf2e2142e826a50"},{"version":"527892d1c539c6409ff20c20f62ba46b32f3bf55d5645a4955858742ba1f3fd7","signature":"494ab2a45a5a327c554e5c049dea853e4abb111db6cc8439d46289a677348a04"},{"version":"d13d898dc8e81f91903889eaa98aed5de7abefdf1d25ac41c06d851b464f49a3","signature":"adc6b4fef57cfb135b0a8b0b28821fe0b36b3f12491957b60932e4ffae18e6e9"},{"version":"1b431145b033ce76b93804c4d3c6a99c54af43b5b4b28de4ec1ff11891ba13b2","signature":"36b45ca379155964014a04f0f9f213cb282e7e76f91edb50c4e76389f06c84c7"},{"version":"1e6053c1231a4e35b6b8d017f1eef1740af53624c763321bd79387f06eab128c","signature":"fc0677fb1b5375a74cb4d29550ac2f8dddd4b2959a5bdc6b0d35cd51a7c5db57"},{"version":"cf83684d1ae077315fc644041234b31a5e3e9e41285876d84faf0f907c7a7635","signature":"3ebbf3636543b06a67a72d27c96754c8d9d21327fc45e3eb010eb8986f22520b"},{"version":"c84783fb8075912d76ce14917bd16e942478e03c0dfa359b3dd99f3d1c4cbf2e","signature":"08468128804e2f7806bd081f9c3299a05095754a2e554e712246a2ebb1b505af"},{"version":"5a013adbecf3026a50e5d4c91aa611de05d25f70f6731e1afa4a31c9e3796ef4","signature":"a2084fd9326fde59e6af3fd117411282c4bf5114623f41a7b776abd79fc6282a"}],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noUnusedLocals":false,"outDir":"./","removeComments":false,"sourceMap":false,"strictNullChecks":true,"target":6},"fileIdsList":[[75,100,101,108],[57,101],[60,101],[61,66,101],[62,72,73,80,89,100,101],[62,63,72,80,101],[64,101],[65,66,73,81,101],[66,89,97,101],[67,69,72,80,101],[68,101],[69,70,101],[71,72,101],[72,101],[72,73,74,89,100,101],[72,73,74,89,92,101],[101,105],[101],[75,80,89,100,101],[72,73,75,76,80,89,97,100,101],[75,77,89,97,100,101],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107],[72,78,101],[79,100,101],[69,72,80,89,101],[81,101],[82,101],[60,83,101],[84,99,101,105],[85,101],[86,101],[72,87,101],[87,88,101,103],[72,89,90,91,92,101],[89,91,101],[89,90,101],[92,101],[93,101],[72,95,96,101],[95,96,101],[66,80,89,97,101],[98,101],[80,99,101],[61,75,86,100,101],[66,101],[89,101,102],[101,103],[101,104],[61,66,72,74,83,89,100,101,103,105],[89,101,106],[101,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135],[101,113,129],[101,115],[101,113,114,125,126,127,129,130],[101,113,118,126],[101,113,121,125,126,129,131],[101,113],[101,113,115,119,120,125,126,127,128],[101,113,126],[101,113,114,115,116,120,121,123,124,126,129],[101,113,125,126],[101,119,121,125,126,129],[101,113,125],[101,113,125,126,129],[101,113,114,115,117,119,120,122,125,126,129],[55,56,101,150,151],[101,108,110],[101,112,136],[101,108,112,136],[101,108,112,136,140],[101,108,109],[72,101,108,110,111],[101,110,112,137,138,139,140,141,142,143,144,145,146,147,148,149],[54,72,101,136,151,152,154,158],[54,72,101,136,153,154,155,159],[54,101],[54,101,153,154,159,160],[101,153,154],[54,72,101,136,154,156,159],[101,136,152,157,159],[54,66,72,77,80,101,106,152,154],[101,136,151,153],[72,136,154,158],[72,136,154,155,159],[54],[54,153,154,159,160],[153,154],[72,136,156,159],[136,152,157,159],[72,152,154],[136,151,153]],"referencedMap":[[111,1],[57,2],[58,2],[60,3],[61,4],[62,5],[63,6],[64,7],[65,8],[66,9],[67,10],[68,11],[69,12],[70,12],[71,13],[72,14],[73,15],[74,16],[59,17],[107,18],[75,19],[76,20],[77,21],[108,22],[78,23],[79,24],[80,25],[81,26],[82,27],[83,28],[84,29],[85,30],[86,31],[87,32],[88,33],[89,34],[91,35],[90,36],[92,37],[93,38],[94,18],[95,39],[96,40],[97,41],[98,42],[99,43],[100,44],[101,45],[102,46],[103,47],[104,48],[105,49],[106,50],[136,51],[130,52],[127,53],[128,54],[113,18],[119,55],[132,56],[133,57],[129,58],[115,59],[125,60],[121,61],[134,61],[122,62],[124,57],[120,59],[126,63],[116,63],[131,64],[123,65],[135,18],[117,18],[114,57],[118,59],[55,18],[56,18],[151,66],[109,67],[148,68],[147,68],[137,69],[139,69],[141,68],[142,68],[143,68],[144,70],[145,68],[149,68],[138,68],[146,68],[140,69],[110,71],[112,72],[150,73],[11,18],[13,18],[12,18],[2,18],[14,18],[15,18],[16,18],[17,18],[18,18],[19,18],[20,18],[21,18],[3,18],[4,18],[25,18],[22,18],[23,18],[24,18],[26,18],[27,18],[28,18],[5,18],[29,18],[30,18],[31,18],[32,18],[6,18],[33,18],[34,18],[35,18],[36,18],[7,18],[37,18],[42,18],[43,18],[38,18],[39,18],[40,18],[41,18],[8,18],[47,18],[44,18],[45,18],[46,18],[48,18],[9,18],[49,18],[50,18],[51,18],[52,18],[1,18],[10,18],[53,18],[159,74],[156,75],[54,76],[160,77],[153,78],[157,79],[158,80],[155,81],[152,18],[154,82]],"exportedModulesMap":[[111,1],[57,2],[58,2],[60,3],[61,4],[62,5],[63,6],[64,7],[65,8],[66,9],[67,10],[68,11],[69,12],[70,12],[71,13],[72,14],[73,15],[74,16],[59,17],[107,18],[75,19],[76,20],[77,21],[108,22],[78,23],[79,24],[80,25],[81,26],[82,27],[83,28],[84,29],[85,30],[86,31],[87,32],[88,33],[89,34],[91,35],[90,36],[92,37],[93,38],[94,18],[95,39],[96,40],[97,41],[98,42],[99,43],[100,44],[101,45],[102,46],[103,47],[104,48],[105,49],[106,50],[136,51],[130,52],[127,53],[128,54],[113,18],[119,55],[132,56],[133,57],[129,58],[115,59],[125,60],[121,61],[134,61],[122,62],[124,57],[120,59],[126,63],[116,63],[131,64],[123,65],[135,18],[117,18],[114,57],[118,59],[55,18],[56,18],[151,66],[109,67],[148,68],[147,68],[137,69],[139,69],[141,68],[142,68],[143,68],[144,70],[145,68],[149,68],[138,68],[146,68],[140,69],[110,71],[112,72],[150,73],[11,18],[13,18],[12,18],[2,18],[14,18],[15,18],[16,18],[17,18],[18,18],[19,18],[20,18],[21,18],[3,18],[4,18],[25,18],[22,18],[23,18],[24,18],[26,18],[27,18],[28,18],[5,18],[29,18],[30,18],[31,18],[32,18],[6,18],[33,18],[34,18],[35,18],[36,18],[7,18],[37,18],[42,18],[43,18],[38,18],[39,18],[40,18],[41,18],[8,18],[47,18],[44,18],[45,18],[46,18],[48,18],[9,18],[49,18],[50,18],[51,18],[52,18],[1,18],[10,18],[53,18],[159,83],[156,84],[54,85],[160,86],[153,87],[157,88],[158,89],[155,90],[154,91]],"semanticDiagnosticsPerFile":[111,57,58,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,59,107,75,76,77,108,78,79,80,81,82,83,84,85,86,87,88,89,91,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,136,130,127,128,113,119,132,133,129,115,125,121,134,122,124,120,126,116,131,123,135,117,114,118,55,56,151,109,148,147,137,139,141,142,143,144,145,149,138,146,140,110,112,150,11,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,8,47,44,45,46,48,9,49,50,51,52,1,10,53,159,156,54,160,153,157,158,155,152,154]},"version":"4.7.4"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cloudstorm",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "Minimalistic Discord Gateway library",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"engines": {
|
|
@@ -14,18 +14,18 @@
|
|
|
14
14
|
"author": "wolke <wolke@weeb.sh>",
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"snowtransfer": "^0.
|
|
17
|
+
"snowtransfer": "^0.5.5"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/centra": "^2.2.0",
|
|
21
|
-
"@types/node": "
|
|
22
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
23
|
-
"@typescript-eslint/parser": "^5.
|
|
24
|
-
"eslint": "^8.
|
|
25
|
-
"typedoc": "^0.
|
|
26
|
-
"typedoc-plugin-mdn-links": "^
|
|
27
|
-
"typedoc-plugin-missing-exports": "^0.
|
|
28
|
-
"typescript": "^4.
|
|
21
|
+
"@types/node": "18.6.5",
|
|
22
|
+
"@typescript-eslint/eslint-plugin": "^5.33.0",
|
|
23
|
+
"@typescript-eslint/parser": "^5.33.0",
|
|
24
|
+
"eslint": "^8.21.0",
|
|
25
|
+
"typedoc": "^0.23.10",
|
|
26
|
+
"typedoc-plugin-mdn-links": "^2.0.0",
|
|
27
|
+
"typedoc-plugin-missing-exports": "^0.23.0",
|
|
28
|
+
"typescript": "^4.7.4"
|
|
29
29
|
},
|
|
30
30
|
"files": [
|
|
31
31
|
"dist",
|