discord-player 6.6.4 → 6.6.5-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 +2771 -2524
- package/dist/index.js +566 -314
- package/dist/index.mjs +12 -0
- package/package.json +3 -2
package/dist/index.mjs
CHANGED
|
@@ -39,6 +39,7 @@ const {
|
|
|
39
39
|
QueryType,
|
|
40
40
|
QueueRepeatMode,
|
|
41
41
|
SearchResult,
|
|
42
|
+
SerializedType,
|
|
42
43
|
StreamDispatcher,
|
|
43
44
|
Track,
|
|
44
45
|
TypeUtil,
|
|
@@ -50,8 +51,13 @@ const {
|
|
|
50
51
|
createAudioPlayer,
|
|
51
52
|
createFFmpegStream,
|
|
52
53
|
createHook,
|
|
54
|
+
decode,
|
|
55
|
+
deserialize,
|
|
56
|
+
encode,
|
|
53
57
|
onAfterCreateStream,
|
|
54
58
|
onBeforeCreateStream,
|
|
59
|
+
serialize,
|
|
60
|
+
tryIntoThumbnailString,
|
|
55
61
|
useHistory,
|
|
56
62
|
useMainPlayer,
|
|
57
63
|
useMasterPlayer,
|
|
@@ -105,6 +111,7 @@ export {
|
|
|
105
111
|
QueryType,
|
|
106
112
|
QueueRepeatMode,
|
|
107
113
|
SearchResult,
|
|
114
|
+
SerializedType,
|
|
108
115
|
StreamDispatcher,
|
|
109
116
|
Track,
|
|
110
117
|
TypeUtil,
|
|
@@ -116,8 +123,13 @@ export {
|
|
|
116
123
|
createAudioPlayer,
|
|
117
124
|
createFFmpegStream,
|
|
118
125
|
createHook,
|
|
126
|
+
decode,
|
|
127
|
+
deserialize,
|
|
128
|
+
encode,
|
|
119
129
|
onAfterCreateStream,
|
|
120
130
|
onBeforeCreateStream,
|
|
131
|
+
serialize,
|
|
132
|
+
tryIntoThumbnailString,
|
|
121
133
|
useHistory,
|
|
122
134
|
useMainPlayer,
|
|
123
135
|
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.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",
|
|
@@ -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.0",
|
|
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
|
},
|