discord-player 6.6.4 → 6.6.5-dev.2
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 +2798 -2524
- package/dist/index.js +672 -325
- package/dist/index.mjs +14 -0
- package/package.json +3 -2
package/dist/index.mjs
CHANGED
|
@@ -39,8 +39,10 @@ const {
|
|
|
39
39
|
QueryType,
|
|
40
40
|
QueueRepeatMode,
|
|
41
41
|
SearchResult,
|
|
42
|
+
SerializedType,
|
|
42
43
|
StreamDispatcher,
|
|
43
44
|
Track,
|
|
45
|
+
TrackSkipReason,
|
|
44
46
|
TypeUtil,
|
|
45
47
|
Util,
|
|
46
48
|
VALIDATE_QUEUE_CAP,
|
|
@@ -50,8 +52,13 @@ const {
|
|
|
50
52
|
createAudioPlayer,
|
|
51
53
|
createFFmpegStream,
|
|
52
54
|
createHook,
|
|
55
|
+
decode,
|
|
56
|
+
deserialize,
|
|
57
|
+
encode,
|
|
53
58
|
onAfterCreateStream,
|
|
54
59
|
onBeforeCreateStream,
|
|
60
|
+
serialize,
|
|
61
|
+
tryIntoThumbnailString,
|
|
55
62
|
useHistory,
|
|
56
63
|
useMainPlayer,
|
|
57
64
|
useMasterPlayer,
|
|
@@ -105,8 +112,10 @@ export {
|
|
|
105
112
|
QueryType,
|
|
106
113
|
QueueRepeatMode,
|
|
107
114
|
SearchResult,
|
|
115
|
+
SerializedType,
|
|
108
116
|
StreamDispatcher,
|
|
109
117
|
Track,
|
|
118
|
+
TrackSkipReason,
|
|
110
119
|
TypeUtil,
|
|
111
120
|
Util,
|
|
112
121
|
VALIDATE_QUEUE_CAP,
|
|
@@ -116,8 +125,13 @@ export {
|
|
|
116
125
|
createAudioPlayer,
|
|
117
126
|
createFFmpegStream,
|
|
118
127
|
createHook,
|
|
128
|
+
decode,
|
|
129
|
+
deserialize,
|
|
130
|
+
encode,
|
|
119
131
|
onAfterCreateStream,
|
|
120
132
|
onBeforeCreateStream,
|
|
133
|
+
serialize,
|
|
134
|
+
tryIntoThumbnailString,
|
|
121
135
|
useHistory,
|
|
122
136
|
useMainPlayer,
|
|
123
137
|
useMasterPlayer,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "discord-player",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.5-dev.2",
|
|
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",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"libsodium-wrappers": "^0.7.10"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"@discord-player/extractor": "^4.4.
|
|
61
|
+
"@discord-player/extractor": "^4.4.5-dev.2",
|
|
62
62
|
"discord.js": "14.x",
|
|
63
63
|
"youtube-sr": "4.x"
|
|
64
64
|
},
|
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
"discord-api-types": "^0.37.0",
|
|
71
71
|
"discord.js": "^14.1.2",
|
|
72
72
|
"opusscript": "^0.0.8",
|
|
73
|
+
"tsup": "^7.2.0",
|
|
73
74
|
"typescript": "^4.7.4",
|
|
74
75
|
"youtube-sr": "^4.3.4"
|
|
75
76
|
},
|