discord.js 15.0.0-dev.1761955338-f26a5ed86 → 15.0.0-dev.1762041719-06a75e80b
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 +9 -9
- package/src/util/Components.js +2 -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.1762041719-06a75e80b",
|
|
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,12 +61,12 @@
|
|
|
61
61
|
"magic-bytes.js": "^1.12.1",
|
|
62
62
|
"tslib": "^2.8.1",
|
|
63
63
|
"undici": "7.16.0",
|
|
64
|
-
"@discordjs/builders": "^2.0.0-dev.
|
|
65
|
-
"@discordjs/collection": "^3.0.0-dev.
|
|
66
|
-
"@discordjs/formatters": "^1.0.0-dev.
|
|
67
|
-
"@discordjs/rest": "^3.0.0-dev.
|
|
68
|
-
"@discordjs/util": "^2.0.0-dev.
|
|
69
|
-
"@discordjs/ws": "^3.0.0-dev.
|
|
64
|
+
"@discordjs/builders": "^2.0.0-dev.1762041719-06a75e80b",
|
|
65
|
+
"@discordjs/collection": "^3.0.0-dev.1762041719-06a75e80b",
|
|
66
|
+
"@discordjs/formatters": "^1.0.0-dev.1762041719-06a75e80b",
|
|
67
|
+
"@discordjs/rest": "^3.0.0-dev.1762041719-06a75e80b",
|
|
68
|
+
"@discordjs/util": "^2.0.0-dev.1762041719-06a75e80b",
|
|
69
|
+
"@discordjs/ws": "^3.0.0-dev.1762041719-06a75e80b"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@favware/cliff-jumper": "^4.1.0",
|
|
@@ -82,9 +82,9 @@
|
|
|
82
82
|
"tsd": "^0.33.0",
|
|
83
83
|
"turbo": "^2.5.8",
|
|
84
84
|
"typescript": "~5.9.3",
|
|
85
|
+
"@discordjs/api-extractor": "^7.52.7",
|
|
85
86
|
"@discordjs/docgen": "^0.12.1",
|
|
86
|
-
"@discordjs/scripts": "^0.1.0"
|
|
87
|
-
"@discordjs/api-extractor": "^7.52.7"
|
|
87
|
+
"@discordjs/scripts": "^0.1.0"
|
|
88
88
|
},
|
|
89
89
|
"engines": {
|
|
90
90
|
"node": ">=22.12.0"
|
package/src/util/Components.js
CHANGED
|
@@ -47,7 +47,7 @@ const { ComponentType } = require('discord-api-types/v10');
|
|
|
47
47
|
/**
|
|
48
48
|
* @typedef {BaseComponentData} FileUploadComponentData
|
|
49
49
|
* @property {string} customId The custom id of the file upload
|
|
50
|
-
* @property {number} [minValues] The minimum number of files that
|
|
50
|
+
* @property {number} [minValues] The minimum number of files that must be uploaded (0-10)
|
|
51
51
|
* @property {number} [maxValues] The maximum number of files that can be uploaded (1-10)
|
|
52
52
|
* @property {boolean} [required] Whether this component is required in modals
|
|
53
53
|
*/
|
|
@@ -57,7 +57,7 @@ const { ComponentType } = require('discord-api-types/v10');
|
|
|
57
57
|
* @property {string} customId The custom id of the select menu
|
|
58
58
|
* @property {boolean} [disabled] Whether the select menu is disabled or not
|
|
59
59
|
* @property {number} [maxValues] The maximum amount of options that can be selected
|
|
60
|
-
* @property {number} [minValues] The minimum amount of options that
|
|
60
|
+
* @property {number} [minValues] The minimum amount of options that must be selected
|
|
61
61
|
* @property {string} [placeholder] The placeholder of the select menu
|
|
62
62
|
* @property {boolean} [required] Whether this component is required in modals
|
|
63
63
|
*/
|