discord.js 15.0.0-dev.1744589645-5c0b71455 → 15.0.0-dev.1744848789-57c3da2e8

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.1744589645-5c0b71455",
4
+ "version": "15.0.0-dev.1744848789-57c3da2e8",
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,12 +59,12 @@
59
59
  "lodash.snakecase": "4.1.1",
60
60
  "tslib": "^2.8.1",
61
61
  "undici": "7.8.0",
62
- "@discordjs/builders": "^1.9.0",
63
62
  "@discordjs/collection": "^2.1.1",
64
- "@discordjs/util": "^1.1.1",
63
+ "@discordjs/builders": "^1.9.0",
65
64
  "@discordjs/rest": "^2.4.0",
66
65
  "@discordjs/formatters": "^0.5.0",
67
- "@discordjs/ws": "^2.0.0"
66
+ "@discordjs/ws": "^2.0.0",
67
+ "@discordjs/util": "^1.1.1"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@favware/cliff-jumper": "^4.1.0",
@@ -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",
87
86
  "@discordjs/docgen": "^0.12.1",
88
- "@discordjs/scripts": "^0.1.0"
87
+ "@discordjs/scripts": "^0.1.0",
88
+ "@discordjs/api-extractor": "^7.38.1"
89
89
  },
90
90
  "engines": {
91
91
  "node": ">=22.12.0"
@@ -282,7 +282,7 @@ class ApplicationCommand extends Base {
282
282
  * @returns {Promise<ApplicationCommand>}
283
283
  * @example
284
284
  * // Edit the name localizations of this command
285
- * command.setLocalizedNames({
285
+ * command.setNameLocalizations({
286
286
  * 'en-GB': 'test',
287
287
  * 'pt-BR': 'teste',
288
288
  * })