discord.js 15.0.0-dev.1749341741-8e03af6ea → 15.0.0-dev.1749729936-2852a529c
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 +4 -4
- package/typings/index.d.mts +8 -4
- package/typings/index.d.ts +8 -4
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.1749729936-2852a529c",
|
|
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.10.0",
|
|
62
62
|
"tslib": "^2.8.1",
|
|
63
63
|
"undici": "7.8.0",
|
|
64
|
-
"@discordjs/collection": "^2.1.1",
|
|
65
64
|
"@discordjs/builders": "^1.11.1",
|
|
65
|
+
"@discordjs/collection": "^2.1.1",
|
|
66
66
|
"@discordjs/formatters": "^0.6.1",
|
|
67
|
+
"@discordjs/util": "^1.1.1",
|
|
67
68
|
"@discordjs/rest": "^2.5.0",
|
|
68
|
-
"@discordjs/ws": "^2.0.2"
|
|
69
|
-
"@discordjs/util": "^1.1.1"
|
|
69
|
+
"@discordjs/ws": "^2.0.2"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@favware/cliff-jumper": "^4.1.0",
|
package/typings/index.d.mts
CHANGED
|
@@ -5300,9 +5300,13 @@ export interface ClientEventTypes {
|
|
|
5300
5300
|
];
|
|
5301
5301
|
guildScheduledEventUserAdd: [guildScheduledEvent: GuildScheduledEvent | PartialGuildScheduledEvent, user: User];
|
|
5302
5302
|
guildScheduledEventUserRemove: [guildScheduledEvent: GuildScheduledEvent | PartialGuildScheduledEvent, user: User];
|
|
5303
|
-
guildSoundboardSoundCreate: [soundboardSound:
|
|
5304
|
-
guildSoundboardSoundDelete: [soundboardSound:
|
|
5305
|
-
guildSoundboardSoundUpdate: [
|
|
5303
|
+
guildSoundboardSoundCreate: [soundboardSound: GuildSoundboardSound];
|
|
5304
|
+
guildSoundboardSoundDelete: [soundboardSound: GuildSoundboardSound | PartialSoundboardSound];
|
|
5305
|
+
guildSoundboardSoundUpdate: [
|
|
5306
|
+
oldSoundboardSound: GuildSoundboardSound | null,
|
|
5307
|
+
newSoundboardSound: GuildSoundboardSound,
|
|
5308
|
+
];
|
|
5309
|
+
guildSoundboardSoundsUpdate: [soundboardSounds: ReadonlyCollection<Snowflake, GuildSoundboardSound>, guild: Guild];
|
|
5306
5310
|
guildUnavailable: [guild: Guild];
|
|
5307
5311
|
guildUpdate: [oldGuild: Guild, newGuild: Guild];
|
|
5308
5312
|
interactionCreate: [interaction: Interaction];
|
|
@@ -5340,7 +5344,7 @@ export interface ClientEventTypes {
|
|
|
5340
5344
|
roleCreate: [role: Role];
|
|
5341
5345
|
roleDelete: [role: Role];
|
|
5342
5346
|
roleUpdate: [oldRole: Role, newRole: Role];
|
|
5343
|
-
soundboardSounds: [soundboardSounds: ReadonlyCollection<Snowflake,
|
|
5347
|
+
soundboardSounds: [soundboardSounds: ReadonlyCollection<Snowflake, GuildSoundboardSound>, guild: Guild];
|
|
5344
5348
|
stageInstanceCreate: [stageInstance: StageInstance];
|
|
5345
5349
|
stageInstanceDelete: [stageInstance: StageInstance];
|
|
5346
5350
|
stageInstanceUpdate: [oldStageInstance: StageInstance | null, newStageInstance: StageInstance];
|
package/typings/index.d.ts
CHANGED
|
@@ -5300,9 +5300,13 @@ export interface ClientEventTypes {
|
|
|
5300
5300
|
];
|
|
5301
5301
|
guildScheduledEventUserAdd: [guildScheduledEvent: GuildScheduledEvent | PartialGuildScheduledEvent, user: User];
|
|
5302
5302
|
guildScheduledEventUserRemove: [guildScheduledEvent: GuildScheduledEvent | PartialGuildScheduledEvent, user: User];
|
|
5303
|
-
guildSoundboardSoundCreate: [soundboardSound:
|
|
5304
|
-
guildSoundboardSoundDelete: [soundboardSound:
|
|
5305
|
-
guildSoundboardSoundUpdate: [
|
|
5303
|
+
guildSoundboardSoundCreate: [soundboardSound: GuildSoundboardSound];
|
|
5304
|
+
guildSoundboardSoundDelete: [soundboardSound: GuildSoundboardSound | PartialSoundboardSound];
|
|
5305
|
+
guildSoundboardSoundUpdate: [
|
|
5306
|
+
oldSoundboardSound: GuildSoundboardSound | null,
|
|
5307
|
+
newSoundboardSound: GuildSoundboardSound,
|
|
5308
|
+
];
|
|
5309
|
+
guildSoundboardSoundsUpdate: [soundboardSounds: ReadonlyCollection<Snowflake, GuildSoundboardSound>, guild: Guild];
|
|
5306
5310
|
guildUnavailable: [guild: Guild];
|
|
5307
5311
|
guildUpdate: [oldGuild: Guild, newGuild: Guild];
|
|
5308
5312
|
interactionCreate: [interaction: Interaction];
|
|
@@ -5340,7 +5344,7 @@ export interface ClientEventTypes {
|
|
|
5340
5344
|
roleCreate: [role: Role];
|
|
5341
5345
|
roleDelete: [role: Role];
|
|
5342
5346
|
roleUpdate: [oldRole: Role, newRole: Role];
|
|
5343
|
-
soundboardSounds: [soundboardSounds: ReadonlyCollection<Snowflake,
|
|
5347
|
+
soundboardSounds: [soundboardSounds: ReadonlyCollection<Snowflake, GuildSoundboardSound>, guild: Guild];
|
|
5344
5348
|
stageInstanceCreate: [stageInstance: StageInstance];
|
|
5345
5349
|
stageInstanceDelete: [stageInstance: StageInstance];
|
|
5346
5350
|
stageInstanceUpdate: [oldStageInstance: StageInstance | null, newStageInstance: StageInstance];
|