discord.js 15.0.0-dev.1755518496-7710decf6 → 15.0.0-dev.1755777694-4b6060dcd
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.1755777694-4b6060dcd",
|
|
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.11.0",
|
|
64
|
-
"@discordjs/
|
|
65
|
-
"@discordjs/
|
|
66
|
-
"@discordjs/
|
|
67
|
-
"@discordjs/
|
|
68
|
-
"@discordjs/
|
|
69
|
-
"@discordjs/
|
|
64
|
+
"@discordjs/builders": "^2.0.0-dev.1755777691-4b6060dcd",
|
|
65
|
+
"@discordjs/collection": "^3.0.0-dev.1755777692-4b6060dcd",
|
|
66
|
+
"@discordjs/formatters": "^1.0.0-dev.1755777696-4b6060dcd",
|
|
67
|
+
"@discordjs/rest": "^3.0.0-dev.1755777699-4b6060dcd",
|
|
68
|
+
"@discordjs/util": "^2.0.0-dev.1755777701-4b6060dcd",
|
|
69
|
+
"@discordjs/ws": "^3.0.0-dev.1755777702-4b6060dcd"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@favware/cliff-jumper": "^4.1.0",
|
|
@@ -13,50 +13,62 @@ class ActionsManager {
|
|
|
13
13
|
constructor(client) {
|
|
14
14
|
this.client = client;
|
|
15
15
|
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
this.
|
|
23
|
-
this.
|
|
24
|
-
this.
|
|
25
|
-
this.
|
|
26
|
-
this.
|
|
27
|
-
this.
|
|
28
|
-
this.
|
|
29
|
-
this.
|
|
30
|
-
this.
|
|
31
|
-
this.
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
this.
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
this.
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
this.
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
this.
|
|
44
|
-
this.
|
|
45
|
-
this.
|
|
46
|
-
this.
|
|
47
|
-
this.
|
|
48
|
-
this.
|
|
49
|
-
this.
|
|
50
|
-
this.
|
|
51
|
-
this.
|
|
52
|
-
this.
|
|
53
|
-
this.
|
|
54
|
-
this.
|
|
55
|
-
this.
|
|
16
|
+
this.ChannelCreate = this.load(require('./ChannelCreate.js').ChannelCreateAction);
|
|
17
|
+
this.ChannelDelete = this.load(require('./ChannelDelete.js').ChannelDeleteAction);
|
|
18
|
+
this.ChannelUpdate = this.load(require('./ChannelUpdate.js').ChannelUpdateAction);
|
|
19
|
+
this.GuildChannelsPositionUpdate = this.load(
|
|
20
|
+
require('./GuildChannelsPositionUpdate.js').GuildChannelsPositionUpdateAction,
|
|
21
|
+
);
|
|
22
|
+
this.GuildEmojiCreate = this.load(require('./GuildEmojiCreate.js').GuildEmojiCreateAction);
|
|
23
|
+
this.GuildEmojiDelete = this.load(require('./GuildEmojiDelete.js').GuildEmojiDeleteAction);
|
|
24
|
+
this.GuildEmojiUpdate = this.load(require('./GuildEmojiUpdate.js').GuildEmojiUpdateAction);
|
|
25
|
+
this.GuildEmojisUpdate = this.load(require('./GuildEmojisUpdate.js').GuildEmojisUpdateAction);
|
|
26
|
+
this.GuildMemberRemove = this.load(require('./GuildMemberRemove.js').GuildMemberRemoveAction);
|
|
27
|
+
this.GuildMemberUpdate = this.load(require('./GuildMemberUpdate.js').GuildMemberUpdateAction);
|
|
28
|
+
this.GuildRoleCreate = this.load(require('./GuildRoleCreate.js').GuildRoleCreateAction);
|
|
29
|
+
this.GuildRoleDelete = this.load(require('./GuildRoleDelete.js').GuildRoleDeleteAction);
|
|
30
|
+
this.GuildRolesPositionUpdate = this.load(require('./GuildRolesPositionUpdate.js').GuildRolesPositionUpdateAction);
|
|
31
|
+
this.GuildScheduledEventDelete = this.load(
|
|
32
|
+
require('./GuildScheduledEventDelete.js').GuildScheduledEventDeleteAction,
|
|
33
|
+
);
|
|
34
|
+
this.GuildScheduledEventUserAdd = this.load(
|
|
35
|
+
require('./GuildScheduledEventUserAdd.js').GuildScheduledEventUserAddAction,
|
|
36
|
+
);
|
|
37
|
+
this.GuildScheduledEventUserRemove = this.load(
|
|
38
|
+
require('./GuildScheduledEventUserRemove.js').GuildScheduledEventUserRemoveAction,
|
|
39
|
+
);
|
|
40
|
+
this.GuildSoundboardSoundDelete = this.load(
|
|
41
|
+
require('./GuildSoundboardSoundDelete.js').GuildSoundboardSoundDeleteAction,
|
|
42
|
+
);
|
|
43
|
+
this.GuildStickerCreate = this.load(require('./GuildStickerCreate.js').GuildStickerCreateAction);
|
|
44
|
+
this.GuildStickerDelete = this.load(require('./GuildStickerDelete.js').GuildStickerDeleteAction);
|
|
45
|
+
this.GuildStickerUpdate = this.load(require('./GuildStickerUpdate.js').GuildStickerUpdateAction);
|
|
46
|
+
this.GuildStickersUpdate = this.load(require('./GuildStickersUpdate.js').GuildStickersUpdateAction);
|
|
47
|
+
this.GuildUpdate = this.load(require('./GuildUpdate.js').GuildUpdateAction);
|
|
48
|
+
this.InteractionCreate = this.load(require('./InteractionCreate.js').InteractionCreateAction);
|
|
49
|
+
this.MessageCreate = this.load(require('./MessageCreate.js').MessageCreateAction);
|
|
50
|
+
this.MessageDelete = this.load(require('./MessageDelete.js').MessageDeleteAction);
|
|
51
|
+
this.MessageDeleteBulk = this.load(require('./MessageDeleteBulk.js').MessageDeleteBulkAction);
|
|
52
|
+
this.MessagePollVoteAdd = this.load(require('./MessagePollVoteAdd.js').MessagePollVoteAddAction);
|
|
53
|
+
this.MessagePollVoteRemove = this.load(require('./MessagePollVoteRemove.js').MessagePollVoteRemoveAction);
|
|
54
|
+
this.MessageReactionAdd = this.load(require('./MessageReactionAdd.js').MessageReactionAddAction);
|
|
55
|
+
this.MessageReactionRemove = this.load(require('./MessageReactionRemove.js').MessageReactionRemoveAction);
|
|
56
|
+
this.MessageReactionRemoveAll = this.load(require('./MessageReactionRemoveAll.js').MessageReactionRemoveAllAction);
|
|
57
|
+
this.MessageReactionRemoveEmoji = this.load(
|
|
58
|
+
require('./MessageReactionRemoveEmoji.js').MessageReactionRemoveEmojiAction,
|
|
59
|
+
);
|
|
60
|
+
this.MessageUpdate = this.load(require('./MessageUpdate.js').MessageUpdateAction);
|
|
61
|
+
this.StageInstanceCreate = this.load(require('./StageInstanceCreate.js').StageInstanceCreateAction);
|
|
62
|
+
this.StageInstanceDelete = this.load(require('./StageInstanceDelete.js').StageInstanceDeleteAction);
|
|
63
|
+
this.StageInstanceUpdate = this.load(require('./StageInstanceUpdate.js').StageInstanceUpdateAction);
|
|
64
|
+
this.ThreadCreate = this.load(require('./ThreadCreate.js').ThreadCreateAction);
|
|
65
|
+
this.ThreadMembersUpdate = this.load(require('./ThreadMembersUpdate.js').ThreadMembersUpdateAction);
|
|
66
|
+
this.TypingStart = this.load(require('./TypingStart.js').TypingStartAction);
|
|
67
|
+
this.UserUpdate = this.load(require('./UserUpdate.js').UserUpdateAction);
|
|
56
68
|
}
|
|
57
69
|
|
|
58
|
-
|
|
59
|
-
|
|
70
|
+
load(Action) {
|
|
71
|
+
return new Action(this.client);
|
|
60
72
|
}
|
|
61
73
|
}
|
|
62
74
|
|