disgroove 2.0.0-dev.40377cb → 2.0.0
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/README.md +9 -9
- package/dist/lib/Client.d.ts +560 -142
- package/dist/lib/Client.js +1794 -124
- package/dist/lib/Client.js.map +1 -1
- package/dist/lib/constants.d.ts +7 -7
- package/dist/lib/constants.js +218 -218
- package/dist/lib/gateway/Shard.d.ts +0 -1
- package/dist/lib/gateway/Shard.js +65 -261
- package/dist/lib/gateway/Shard.js.map +1 -1
- package/dist/lib/gateway/ShardManager.d.ts +1 -2
- package/dist/lib/gateway/ShardManager.js +1 -2
- package/dist/lib/gateway/ShardManager.js.map +1 -1
- package/dist/lib/index.d.ts +0 -1
- package/dist/lib/index.js +0 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/rest/Endpoints.d.ts +3 -3
- package/dist/lib/rest/Endpoints.js +8 -8
- package/dist/lib/rest/Endpoints.js.map +1 -1
- package/dist/lib/rest/RequestManager.d.ts +8 -2
- package/dist/lib/rest/RequestManager.js +17 -10
- package/dist/lib/rest/RequestManager.js.map +1 -1
- package/dist/lib/rest/index.d.ts +0 -1
- package/dist/lib/rest/index.js +0 -1
- package/dist/lib/rest/index.js.map +1 -1
- package/dist/lib/structures/Webhook.js +14 -3
- package/dist/lib/structures/Webhook.js.map +1 -1
- package/dist/lib/types/application-command.d.ts +94 -20
- package/dist/lib/types/application-role-connection-metadata.d.ts +7 -6
- package/dist/lib/types/application.d.ts +24 -13
- package/dist/lib/types/audit-log.d.ts +15 -16
- package/dist/lib/types/auto-moderation.d.ts +27 -7
- package/dist/lib/types/channel.d.ts +170 -68
- package/dist/lib/types/emoji.d.ts +12 -3
- package/dist/lib/types/entitlements.d.ts +6 -1
- package/dist/lib/types/gateway-events.d.ts +11 -336
- package/dist/lib/types/guild-scheduled-event.d.ts +31 -8
- package/dist/lib/types/guild-template.d.ts +16 -4
- package/dist/lib/types/guild.d.ts +190 -37
- package/dist/lib/types/index.d.ts +2 -0
- package/dist/lib/types/index.js.map +1 -1
- package/dist/lib/types/interaction.d.ts +37 -36
- package/dist/lib/types/invite.d.ts +12 -12
- package/dist/lib/types/message-components.d.ts +12 -12
- package/dist/lib/types/role.d.ts +3 -3
- package/dist/lib/types/sku.d.ts +8 -8
- package/dist/lib/types/stage-instance.d.ts +12 -1
- package/dist/lib/types/sticker.d.ts +18 -6
- package/dist/lib/types/team.d.ts +5 -5
- package/dist/lib/types/user.d.ts +30 -7
- package/dist/lib/types/voice.d.ts +4 -4
- package/dist/lib/types/webhook.d.ts +38 -6
- package/dist/lib/utils/Util.d.ts +2 -13
- package/dist/lib/utils/Util.js +39 -535
- package/dist/lib/utils/Util.js.map +1 -1
- package/dist/lib/utils/errors.d.ts +1 -1
- package/dist/lib/utils/errors.js +4 -4
- package/dist/lib/utils/index.d.ts +0 -1
- package/dist/lib/utils/index.js +0 -1
- package/dist/lib/utils/index.js.map +1 -1
- package/dist/package.json +7 -7
- package/package.json +7 -7
package/dist/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "disgroove",
|
3
|
-
"version": "2.0.0
|
3
|
+
"version": "2.0.0",
|
4
4
|
"description": "A module to interface with Discord",
|
5
5
|
"main": "./dist/lib/index.js",
|
6
6
|
"types": "./dist/lib/index.d.ts",
|
@@ -9,11 +9,11 @@
|
|
9
9
|
"url": "git+https://github.com/XenKys/disgroove.git"
|
10
10
|
},
|
11
11
|
"keywords": [
|
12
|
-
"discord",
|
13
12
|
"api",
|
13
|
+
"bot",
|
14
|
+
"discord",
|
14
15
|
"gateway",
|
15
|
-
"wrapper"
|
16
|
-
"bot"
|
16
|
+
"wrapper"
|
17
17
|
],
|
18
18
|
"author": "XenKys",
|
19
19
|
"license": "MIT",
|
@@ -21,10 +21,10 @@
|
|
21
21
|
"url": "https://github.com/XenKys/disgroove/issues"
|
22
22
|
},
|
23
23
|
"homepage": "https://github.com/XenKys/disgroove#readme",
|
24
|
-
"
|
25
|
-
"@types/node": "^20.11.
|
24
|
+
"devDependencies": {
|
25
|
+
"@types/node": "^20.11.25",
|
26
26
|
"@types/ws": "^8.5.10",
|
27
|
-
"node": "^21.
|
27
|
+
"node": "^21.7.1",
|
28
28
|
"ws": "^8.16.0"
|
29
29
|
}
|
30
30
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "disgroove",
|
3
|
-
"version": "2.0.0
|
3
|
+
"version": "2.0.0",
|
4
4
|
"description": "A module to interface with Discord",
|
5
5
|
"main": "./dist/lib/index.js",
|
6
6
|
"types": "./dist/lib/index.d.ts",
|
@@ -9,11 +9,11 @@
|
|
9
9
|
"url": "git+https://github.com/XenKys/disgroove.git"
|
10
10
|
},
|
11
11
|
"keywords": [
|
12
|
-
"discord",
|
13
12
|
"api",
|
13
|
+
"bot",
|
14
|
+
"discord",
|
14
15
|
"gateway",
|
15
|
-
"wrapper"
|
16
|
-
"bot"
|
16
|
+
"wrapper"
|
17
17
|
],
|
18
18
|
"author": "XenKys",
|
19
19
|
"license": "MIT",
|
@@ -21,10 +21,10 @@
|
|
21
21
|
"url": "https://github.com/XenKys/disgroove/issues"
|
22
22
|
},
|
23
23
|
"homepage": "https://github.com/XenKys/disgroove#readme",
|
24
|
-
"
|
25
|
-
"@types/node": "^20.11.
|
24
|
+
"devDependencies": {
|
25
|
+
"@types/node": "^20.11.25",
|
26
26
|
"@types/ws": "^8.5.10",
|
27
|
-
"node": "^21.
|
27
|
+
"node": "^21.7.1",
|
28
28
|
"ws": "^8.16.0"
|
29
29
|
}
|
30
30
|
}
|