discord.js 15.0.0-dev.1744848789-57c3da2e8 → 15.0.0-dev.1744935184-feec5efe4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/src/client/Client.js +0 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "discord.js",
|
|
4
|
-
"version": "15.0.0-dev.
|
|
4
|
+
"version": "15.0.0-dev.1744935184-feec5efe4",
|
|
5
5
|
"description": "A powerful library for interacting with the Discord API",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
7
|
"types": "./typings/index.d.ts",
|
|
@@ -59,10 +59,10 @@
|
|
|
59
59
|
"lodash.snakecase": "4.1.1",
|
|
60
60
|
"tslib": "^2.8.1",
|
|
61
61
|
"undici": "7.8.0",
|
|
62
|
-
"@discordjs/collection": "^2.1.1",
|
|
63
62
|
"@discordjs/builders": "^1.9.0",
|
|
64
|
-
"@discordjs/
|
|
63
|
+
"@discordjs/collection": "^2.1.1",
|
|
65
64
|
"@discordjs/formatters": "^0.5.0",
|
|
65
|
+
"@discordjs/rest": "^2.4.0",
|
|
66
66
|
"@discordjs/ws": "^2.0.0",
|
|
67
67
|
"@discordjs/util": "^1.1.1"
|
|
68
68
|
},
|
|
@@ -83,9 +83,9 @@
|
|
|
83
83
|
"tslint": "6.1.3",
|
|
84
84
|
"turbo": "^2.5.0",
|
|
85
85
|
"typescript": "~5.8.3",
|
|
86
|
+
"@discordjs/api-extractor": "^7.38.1",
|
|
86
87
|
"@discordjs/docgen": "^0.12.1",
|
|
87
|
-
"@discordjs/scripts": "^0.1.0"
|
|
88
|
-
"@discordjs/api-extractor": "^7.38.1"
|
|
88
|
+
"@discordjs/scripts": "^0.1.0"
|
|
89
89
|
},
|
|
90
90
|
"engines": {
|
|
91
91
|
"node": ">=22.12.0"
|
package/src/client/Client.js
CHANGED
|
@@ -279,7 +279,6 @@ class Client extends BaseClient {
|
|
|
279
279
|
(await this.ws.fetchStatus()).every(status => status === WebSocketShardStatus.Ready)
|
|
280
280
|
) {
|
|
281
281
|
this.emit(Events.Debug, 'Client received all its guilds. Marking as fully ready.');
|
|
282
|
-
this.status = Status.Ready;
|
|
283
282
|
|
|
284
283
|
this._triggerClientReady();
|
|
285
284
|
return;
|
|
@@ -302,7 +301,6 @@ class Client extends BaseClient {
|
|
|
302
301
|
);
|
|
303
302
|
|
|
304
303
|
this.readyTimeout = null;
|
|
305
|
-
this.status = Status.Ready;
|
|
306
304
|
|
|
307
305
|
this._triggerClientReady();
|
|
308
306
|
},
|