discord-player 7.1.1-dev.0 → 7.2.0-dev.1
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 +126 -5
- package/dist/index.js +558 -49
- package/dist/index.mjs +4 -0
- package/package.json +3 -2
package/dist/index.mjs
CHANGED
|
@@ -58,12 +58,14 @@ const {
|
|
|
58
58
|
createContext,
|
|
59
59
|
createErisCompat,
|
|
60
60
|
createFFmpegStream,
|
|
61
|
+
createOceanicCompat,
|
|
61
62
|
decode,
|
|
62
63
|
deserialize,
|
|
63
64
|
encode,
|
|
64
65
|
getVoiceConnection,
|
|
65
66
|
getVoiceConnections,
|
|
66
67
|
isErisProxy,
|
|
68
|
+
isOceanicProxy,
|
|
67
69
|
joinVoiceChannel,
|
|
68
70
|
onAfterCreateStream,
|
|
69
71
|
onBeforeCreateStream,
|
|
@@ -141,12 +143,14 @@ export {
|
|
|
141
143
|
createContext,
|
|
142
144
|
createErisCompat,
|
|
143
145
|
createFFmpegStream,
|
|
146
|
+
createOceanicCompat,
|
|
144
147
|
decode,
|
|
145
148
|
deserialize,
|
|
146
149
|
encode,
|
|
147
150
|
getVoiceConnection,
|
|
148
151
|
getVoiceConnections,
|
|
149
152
|
isErisProxy,
|
|
153
|
+
isOceanicProxy,
|
|
150
154
|
joinVoiceChannel,
|
|
151
155
|
onAfterCreateStream,
|
|
152
156
|
onBeforeCreateStream,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "discord-player",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.2.0-dev.1",
|
|
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",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"homepage": "https://discord-player.js.org",
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@discord-player/equalizer": "^7.1.
|
|
52
|
+
"@discord-player/equalizer": "^7.1.0",
|
|
53
53
|
"@discord-player/ffmpeg": "^7.1.0",
|
|
54
54
|
"@discord-player/utils": "^7.1.0",
|
|
55
55
|
"@web-scrobbler/metadata-filter": "^3.1.0",
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"discord-api-types": "^0.37.0",
|
|
68
68
|
"discord.js": "^14.17.3",
|
|
69
69
|
"eris": "^0.17.2",
|
|
70
|
+
"oceanic.js": "^1.11.2",
|
|
70
71
|
"opusscript": "^0.0.8",
|
|
71
72
|
"tsup": "^8.3.5",
|
|
72
73
|
"typescript": "^5.2.2",
|