aqualink 2.9.2 → 2.10.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 +7 -5
- package/build/structures/Aqua.js +493 -303
- package/build/structures/Connection.js +72 -42
- package/build/structures/Filters.js +178 -167
- package/build/structures/Node.js +66 -39
- package/build/structures/Player.js +241 -113
- package/build/structures/Rest.js +242 -156
- package/build/structures/Track.js +0 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -119,7 +119,9 @@ const aqua = new Aqua(client, nodes, {
|
|
|
119
119
|
defaultSearchPlatform: "ytsearch",
|
|
120
120
|
restVersion: "v4",
|
|
121
121
|
autoResume: true,
|
|
122
|
-
infiniteReconnects: true
|
|
122
|
+
infiniteReconnects: true,
|
|
123
|
+
autoplayPlatform: ['spsearch', 'ytsearch', 'scsearch'],
|
|
124
|
+
nodeResolver: 'LeastLoad'
|
|
123
125
|
});
|
|
124
126
|
|
|
125
127
|
client.aqua = aqua;
|
|
@@ -257,7 +259,7 @@ client.on(Events.MessageCreate, async (message) => {
|
|
|
257
259
|
|
|
258
260
|
For detailed usage, API references, and examples, check out our official documentation:
|
|
259
261
|
|
|
260
|
-
[](https://roddynnn.github.io/)
|
|
262
|
+
[](https://roddynnn.github.io/docs/)
|
|
261
263
|
|
|
262
264
|
📌 **Get Started Quickly**
|
|
263
265
|
- Installation guide
|
|
@@ -265,7 +267,7 @@ For detailed usage, API references, and examples, check out our official documen
|
|
|
265
267
|
- Advanced features
|
|
266
268
|
- Troubleshooting
|
|
267
269
|
|
|
268
|
-
🔗 Visit: **[Aqualink Docs](https://roddynnn.github.io/)**
|
|
270
|
+
🔗 Visit: **[Aqualink Docs](https://roddynnn.github.io/docs)**
|
|
269
271
|
|
|
270
272
|
## 👑 Premium Bots Using Aqualink
|
|
271
273
|
|
|
@@ -324,7 +326,7 @@ For detailed usage, API references, and examples, check out our official documen
|
|
|
324
326
|
<a href="https://github.com/pomicee">
|
|
325
327
|
<img src="https://avatars.githubusercontent.com/u/134554554?v=4?s=100" width="100px;" alt="pomicee"/>
|
|
326
328
|
<br />
|
|
327
|
-
<sub><b>
|
|
329
|
+
<sub><b>asynico</b></sub>
|
|
328
330
|
</a>
|
|
329
331
|
<br />
|
|
330
332
|
<a href="#code-pomicee" title="Code">💻</a>
|
|
@@ -390,4 +392,4 @@ Join our thriving community of developers and bot creators!
|
|
|
390
392
|
|
|
391
393
|
<sub>Built with 💙 by the Aqualink Team</sub>
|
|
392
394
|
|
|
393
|
-
</div>
|
|
395
|
+
</div>
|