@discordjs/core 0.5.0-dev.1680307820-34bc36a.0 → 0.5.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/CHANGELOG.md +13 -0
- package/README.md +4 -5
- package/dist/files-4cadec53.d.ts +1612 -0
- package/dist/http-only.d.ts +11 -0
- package/dist/http-only.js +2345 -0
- package/dist/http-only.js.map +1 -0
- package/dist/http-only.mjs +2320 -0
- package/dist/http-only.mjs.map +1 -0
- package/dist/index.d.ts +11 -1496
- package/dist/index.js +660 -438
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +660 -441
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
# [@discordjs/core@0.5.0](https://github.com/discordjs/discord.js/compare/@discordjs/core@0.4.0...@discordjs/core@0.5.0) - (2023-04-01)
|
|
6
|
+
|
|
7
|
+
## Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **core:** Include data for defer (#9284) ([9d69bba](https://github.com/discordjs/discord.js/commit/9d69bba47c73b756086992bc14e57c40fadb34d1))
|
|
10
|
+
- **scripts:** Accessing tsComment ([d8d5f31](https://github.com/discordjs/discord.js/commit/d8d5f31d3927fd1de62f1fa3a1a6e454243ad87b))
|
|
11
|
+
|
|
12
|
+
## Features
|
|
13
|
+
|
|
14
|
+
- **core:** Http-only wrapper (#9281) ([11e682c](https://github.com/discordjs/discord.js/commit/11e682cfe388b9a3070388f73ebef3c27555c0dd))
|
|
15
|
+
- **core:** Add `AbortSignal` support. (#9042) ([907eb1b](https://github.com/discordjs/discord.js/commit/907eb1b4708bdaf30f4e59f4016ef8a717f47a4c))
|
|
16
|
+
- **website:** Render syntax and mdx on the server (#9086) ([ee5169e](https://github.com/discordjs/discord.js/commit/ee5169e0aadd7bbfcd752aae614ec0f69602b68b))
|
|
17
|
+
|
|
5
18
|
# [@discordjs/core@0.4.0](https://github.com/discordjs/discord.js/compare/@discordjs/core@0.3.0...@discordjs/core@0.4.0) - (2023-03-12)
|
|
6
19
|
|
|
7
20
|
## Bug Fixes
|
package/README.md
CHANGED
|
@@ -83,7 +83,7 @@ const guild = await api.guilds.get('1234567891011');
|
|
|
83
83
|
- [Website][website] ([source][website-source])
|
|
84
84
|
- [Documentation][documentation]
|
|
85
85
|
- [Guide][guide] ([source][guide-source])
|
|
86
|
-
|
|
86
|
+
Also see the v13 to v14 [Update Guide][guide-update], which includes updated and removed items from the library.
|
|
87
87
|
- [discord.js Discord server][discord]
|
|
88
88
|
- [Discord API Discord server][discord-api]
|
|
89
89
|
- [GitHub][source]
|
|
@@ -98,12 +98,11 @@ See [the contribution guide][contributing] if you'd like to submit a PR.
|
|
|
98
98
|
|
|
99
99
|
## Help
|
|
100
100
|
|
|
101
|
-
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle
|
|
102
|
-
nudge in the right direction, please don't hesitate to join our official [discord.js Server][discord].
|
|
101
|
+
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official [discord.js Server][discord].
|
|
103
102
|
|
|
104
|
-
[website]: https://discord.js.org
|
|
103
|
+
[website]: https://discord.js.org
|
|
105
104
|
[website-source]: https://github.com/discordjs/discord.js/tree/main/apps/website
|
|
106
|
-
[documentation]: https://discord.js.org/
|
|
105
|
+
[documentation]: https://discord.js.org/docs/packages/core/stable
|
|
107
106
|
[guide]: https://discordjs.guide/
|
|
108
107
|
[guide-source]: https://github.com/discordjs/guide
|
|
109
108
|
[guide-update]: https://discordjs.guide/additional-info/changes-in-v14.html
|