discord-player 6.6.8-dev.3 → 6.6.9-dev.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/dist/index.d.ts +250 -1
- package/dist/index.js +430 -21
- package/dist/index.mjs +4 -0
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -29,6 +29,7 @@ const {
|
|
|
29
29
|
GuildQueueStatistics,
|
|
30
30
|
IPBlock,
|
|
31
31
|
IPRotator,
|
|
32
|
+
LrcLib,
|
|
32
33
|
PCMAudioFilters,
|
|
33
34
|
Player,
|
|
34
35
|
PlayerEvent,
|
|
@@ -40,6 +41,7 @@ const {
|
|
|
40
41
|
QueryType,
|
|
41
42
|
QueueRepeatMode,
|
|
42
43
|
SearchResult,
|
|
44
|
+
SequentialBucket,
|
|
43
45
|
SerializedType,
|
|
44
46
|
StreamDispatcher,
|
|
45
47
|
Track,
|
|
@@ -105,6 +107,7 @@ export {
|
|
|
105
107
|
GuildQueueStatistics,
|
|
106
108
|
IPBlock,
|
|
107
109
|
IPRotator,
|
|
110
|
+
LrcLib,
|
|
108
111
|
PCMAudioFilters,
|
|
109
112
|
Player,
|
|
110
113
|
PlayerEvent,
|
|
@@ -116,6 +119,7 @@ export {
|
|
|
116
119
|
QueryType,
|
|
117
120
|
QueueRepeatMode,
|
|
118
121
|
SearchResult,
|
|
122
|
+
SequentialBucket,
|
|
119
123
|
SerializedType,
|
|
120
124
|
StreamDispatcher,
|
|
121
125
|
Track,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "discord-player",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.9-dev.0",
|
|
4
4
|
"description": "Complete framework to facilitate music commands using discord.js",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"@discord-player/ffmpeg": "^0.1.0",
|
|
55
55
|
"@discord-player/utils": "^0.2.2",
|
|
56
56
|
"discord-voip": "^0.1.3",
|
|
57
|
-
"ip": "^
|
|
58
|
-
"libsodium-wrappers": "^0.7.
|
|
57
|
+
"ip": "^2.0.1",
|
|
58
|
+
"libsodium-wrappers": "^0.7.13"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"@discord-player/extractor": "^4.4.7"
|