discord.js 15.0.0-dev.1745755498-d32aacd14 → 15.0.0-dev.1745841930-696d8339a
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
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.1745841930-696d8339a",
|
|
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",
|
|
@@ -61,28 +61,29 @@
|
|
|
61
61
|
"tslib": "^2.8.1",
|
|
62
62
|
"undici": "7.8.0",
|
|
63
63
|
"@discordjs/collection": "^2.1.1",
|
|
64
|
-
"@discordjs/
|
|
65
|
-
"@discordjs/rest": "^2.
|
|
66
|
-
"@discordjs/
|
|
64
|
+
"@discordjs/builders": "^1.11.1",
|
|
65
|
+
"@discordjs/rest": "^2.5.0",
|
|
66
|
+
"@discordjs/formatters": "^0.6.1",
|
|
67
67
|
"@discordjs/util": "^1.1.1",
|
|
68
|
-
"@discordjs/ws": "^2.0.
|
|
68
|
+
"@discordjs/ws": "^2.0.2"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@favware/cliff-jumper": "^4.1.0",
|
|
72
|
-
"@types/node": "^22.
|
|
73
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
72
|
+
"@types/node": "^22.15.2",
|
|
73
|
+
"@typescript-eslint/eslint-plugin": "^8.31.0",
|
|
74
74
|
"@typescript-eslint/parser": "^8.29.0",
|
|
75
75
|
"cross-env": "^7.0.3",
|
|
76
76
|
"dtslint": "4.2.1",
|
|
77
|
-
"eslint": "^
|
|
77
|
+
"eslint": "^9.25.1",
|
|
78
78
|
"eslint-formatter-compact": "^8.40.0",
|
|
79
79
|
"eslint-formatter-pretty": "^5.0.0",
|
|
80
80
|
"eslint-plugin-import": "^2.31.0",
|
|
81
|
+
"eslint-plugin-jsdoc": "^50.6.11",
|
|
81
82
|
"jest": "29.7.0",
|
|
82
83
|
"prettier": "^3.5.3",
|
|
83
84
|
"tsd": "^0.31.2",
|
|
84
85
|
"tslint": "6.1.3",
|
|
85
|
-
"turbo": "^2.5.
|
|
86
|
+
"turbo": "^2.5.2",
|
|
86
87
|
"typescript": "~5.8.3",
|
|
87
88
|
"@discordjs/api-extractor": "^7.38.1",
|
|
88
89
|
"@discordjs/docgen": "^0.12.1",
|
|
@@ -65,7 +65,7 @@ class WebhookClient extends BaseClient {
|
|
|
65
65
|
*/
|
|
66
66
|
|
|
67
67
|
// These are here only for documentation purposes - they are implemented by Webhook
|
|
68
|
-
/* eslint-disable no-empty-function
|
|
68
|
+
/* eslint-disable no-empty-function */
|
|
69
69
|
/**
|
|
70
70
|
* Sends a message with this webhook.
|
|
71
71
|
* @param {string|MessagePayload|WebhookMessageCreateOptions} options The content for the reply
|
package/src/util/Components.js
CHANGED
|
@@ -23,7 +23,7 @@ const { ComponentType } = require('discord-api-types/v10');
|
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
|
-
* @typedef {
|
|
26
|
+
* @typedef {Object} SelectMenuComponentOptionData
|
|
27
27
|
* @property {string} label The label of the option
|
|
28
28
|
* @property {string} value The value of the option
|
|
29
29
|
* @property {?string} description The description of the option
|