aqualink 2.11.10 โ 2.12.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 +55 -1
- package/build/index.d.ts +320 -159
- package/build/structures/Aqua.js +39 -30
- package/build/structures/Connection.js +139 -173
- package/build/structures/Filters.js +10 -6
- package/build/structures/Node.js +71 -130
- package/build/structures/Player.js +38 -17
- package/build/structures/Queue.js +7 -4
- package/build/structures/Rest.js +204 -103
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,6 +48,60 @@
|
|
|
48
48
|
</table>
|
|
49
49
|
</div>
|
|
50
50
|
|
|
51
|
+
## ๐ฆ Installation
|
|
52
|
+
**Latest Stable Release: `v2.11.7`** โข **Choose your preferred package manager below**
|
|
53
|
+
|
|
54
|
+
<details>
|
|
55
|
+
<summary><strong>๐ฆ NPM (Most Popular)</strong></summary>
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
# ๐ฏ Stable release (recommended for production)
|
|
59
|
+
npm install aqualink
|
|
60
|
+
|
|
61
|
+
# ๐ง Latest development build
|
|
62
|
+
npm install ToddyTheNoobDud/aqualink
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
</details>
|
|
66
|
+
|
|
67
|
+
<details>
|
|
68
|
+
<summary><strong>๐งถ Yarn (Fast & Reliable)</strong></summary>
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
# ๐ฏ Stable release (recommended for production)
|
|
72
|
+
yarn add aqualink
|
|
73
|
+
|
|
74
|
+
# ๐ง Latest development build
|
|
75
|
+
yarn add ToddyTheNoobDud/aqualink
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
</details>
|
|
79
|
+
|
|
80
|
+
<details>
|
|
81
|
+
<summary><strong>โก Bun (Lightning Fast)</strong></summary>
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
# ๐ฏ Stable release (recommended for production)
|
|
85
|
+
bun add aqualink
|
|
86
|
+
|
|
87
|
+
# ๐ง Latest development build
|
|
88
|
+
bun add ToddyTheNoobDud/aqualink
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
</details>
|
|
92
|
+
|
|
93
|
+
<details>
|
|
94
|
+
<summary><strong>๐ฆ pnpm (Space Efficient)</strong></summary>
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
# ๐ฏ Stable release (recommended for production)
|
|
98
|
+
pnpm add aqualink
|
|
99
|
+
|
|
100
|
+
# ๐ง Latest development build
|
|
101
|
+
pnpm add ToddyTheNoobDud/aqualink
|
|
102
|
+
```
|
|
103
|
+
</details>
|
|
104
|
+
|
|
51
105
|
## ๐ฅ Feature Highlights
|
|
52
106
|
|
|
53
107
|
<div align="center">
|
|
@@ -392,4 +446,4 @@ Join our thriving community of developers and bot creators!
|
|
|
392
446
|
|
|
393
447
|
<sub>Built with ๐ by the Aqualink Team</sub>
|
|
394
448
|
|
|
395
|
-
</div>
|
|
449
|
+
</div>
|