mirror of
https://github.com/discordjs/discord-api-types.git
synced 2026-05-21 10:50:08 +00:00
Compare commits
18 Commits
fix/permis
...
d96bfd3eea
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d96bfd3eea | ||
|
|
5cd0686f1a | ||
|
|
391d0d4454 | ||
|
|
2d3fc09ade | ||
|
|
3637535d28 | ||
|
|
14bca2694d | ||
|
|
1e8075e41d | ||
|
|
bb1f5dfe5e | ||
|
|
b9df5c2d02 | ||
|
|
812fbbe688 | ||
|
|
edf9a9651b | ||
|
|
9c2f1746b1 | ||
|
|
f8f039867e | ||
|
|
8a4a6d1e43 | ||
|
|
2e5e31b4c4 | ||
|
|
0bd00dd111 | ||
|
|
d5dc47a36c | ||
|
|
09c71fe9d1 |
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@ enableGlobalCache: true
|
||||
|
||||
nodeLinker: node-modules
|
||||
|
||||
yarnPath: .yarn/releases/yarn-4.13.0.cjs
|
||||
yarnPath: .yarn/releases/yarn-4.14.1.cjs
|
||||
|
||||
plugins:
|
||||
- path: ./.yarn/plugins/postinstallDev.cjs
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
## [0.38.47](https://github.com/discordjs/discord-api-types/compare/0.38.46...0.38.47) (2026-04-16)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **RESTJSONErrorCodes:** add `CannotForwardMessageWithUnreadableContent` ([#1628](https://github.com/discordjs/discord-api-types/issues/1628)) ([09c71fe](https://github.com/discordjs/discord-api-types/commit/09c71fe9d19006d0b287be35456c25809e9afc1a))
|
||||
* **RESTJSONErrorCodes:** rename `ChannelSendRateLimit` to `ChannelWriteRateLimit` ([#1627](https://github.com/discordjs/discord-api-types/issues/1627)) ([d5dc47a](https://github.com/discordjs/discord-api-types/commit/d5dc47a36c544ff8a83adcfb29684d5ac5e15af4))
|
||||
|
||||
## [0.38.46](https://github.com/discordjs/discord-api-types/compare/0.38.45...0.38.46) (2026-04-13)
|
||||
|
||||
|
||||
|
||||
8
deno/CHANGELOG.md
generated
8
deno/CHANGELOG.md
generated
@@ -1,3 +1,11 @@
|
||||
## [0.38.47](https://github.com/discordjs/discord-api-types/compare/0.38.46...0.38.47) (2026-04-16)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **RESTJSONErrorCodes:** add `CannotForwardMessageWithUnreadableContent` ([#1628](https://github.com/discordjs/discord-api-types/issues/1628)) ([09c71fe](https://github.com/discordjs/discord-api-types/commit/09c71fe9d19006d0b287be35456c25809e9afc1a))
|
||||
* **RESTJSONErrorCodes:** rename `ChannelSendRateLimit` to `ChannelWriteRateLimit` ([#1627](https://github.com/discordjs/discord-api-types/issues/1627)) ([d5dc47a](https://github.com/discordjs/discord-api-types/commit/d5dc47a36c544ff8a83adcfb29684d5ac5e15af4))
|
||||
|
||||
## [0.38.46](https://github.com/discordjs/discord-api-types/compare/0.38.45...0.38.46) (2026-04-13)
|
||||
|
||||
|
||||
|
||||
14
deno/rest/common.ts
generated
14
deno/rest/common.ts
generated
@@ -75,8 +75,16 @@ export enum RESTJSONErrorCodes {
|
||||
|
||||
UnderMinimumAge = 20_024,
|
||||
|
||||
ChannelSendRateLimit = 20_028,
|
||||
ServerSendRateLimit,
|
||||
ChannelWriteRateLimit = 20_028,
|
||||
/**
|
||||
* @deprecated Use {@link RESTJSONErrorCodes.ChannelWriteRateLimit} instead
|
||||
*/
|
||||
ChannelSendRateLimit = ChannelWriteRateLimit,
|
||||
ServerWriteRateLimit = 20_029,
|
||||
/**
|
||||
* @deprecated Use {@link RESTJSONErrorCodes.ServerWriteRateLimit} instead
|
||||
*/
|
||||
ServerSendRateLimit = ServerWriteRateLimit,
|
||||
|
||||
StageTopicServerNameServerDescriptionOrChannelNamesContainDisallowedWords = 20_031,
|
||||
|
||||
@@ -301,6 +309,8 @@ export enum RESTJSONErrorCodes {
|
||||
MaximumActiveThreads,
|
||||
MaximumActiveAnnouncementThreads,
|
||||
|
||||
CannotForwardMessageWithUnreadableContent = 160_014,
|
||||
|
||||
InvalidJSONForUploadedLottieFile = 170_001,
|
||||
UploadedLottiesCannotContainRasterizedImages,
|
||||
StickerMaximumFramerateExceeded,
|
||||
|
||||
12
package.json
12
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "discord-api-types",
|
||||
"version": "0.38.46",
|
||||
"version": "0.38.47",
|
||||
"description": "Discord API typings that are kept up to date for use in bot library creation.",
|
||||
"homepage": "https://discord-api-types.dev",
|
||||
"workspaces": [
|
||||
@@ -132,8 +132,8 @@
|
||||
"{globals,v*}.{js,js.map,d.ts,d.ts.map,mjs}"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@commitlint/cli": "^20.0.0",
|
||||
"@commitlint/config-angular": "^20.0.0",
|
||||
"@commitlint/cli": "^21.0.0",
|
||||
"@commitlint/config-angular": "^21.0.0",
|
||||
"@favware/npm-deprecate": "^2.0.0",
|
||||
"@octokit/action": "^8.0.2",
|
||||
"@octokit/webhooks-types": "^7.6.1",
|
||||
@@ -207,9 +207,9 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"packageManager": "yarn@4.13.0",
|
||||
"packageManager": "yarn@4.14.1",
|
||||
"volta": {
|
||||
"node": "24.14.1",
|
||||
"yarn": "4.13.0"
|
||||
"node": "24.15.0",
|
||||
"yarn": "4.14.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -75,8 +75,16 @@ export enum RESTJSONErrorCodes {
|
||||
|
||||
UnderMinimumAge = 20_024,
|
||||
|
||||
ChannelSendRateLimit = 20_028,
|
||||
ServerSendRateLimit,
|
||||
ChannelWriteRateLimit = 20_028,
|
||||
/**
|
||||
* @deprecated Use {@link RESTJSONErrorCodes.ChannelWriteRateLimit} instead
|
||||
*/
|
||||
ChannelSendRateLimit = ChannelWriteRateLimit,
|
||||
ServerWriteRateLimit = 20_029,
|
||||
/**
|
||||
* @deprecated Use {@link RESTJSONErrorCodes.ServerWriteRateLimit} instead
|
||||
*/
|
||||
ServerSendRateLimit = ServerWriteRateLimit,
|
||||
|
||||
StageTopicServerNameServerDescriptionOrChannelNamesContainDisallowedWords = 20_031,
|
||||
|
||||
@@ -301,6 +309,8 @@ export enum RESTJSONErrorCodes {
|
||||
MaximumActiveThreads,
|
||||
MaximumActiveAnnouncementThreads,
|
||||
|
||||
CannotForwardMessageWithUnreadableContent = 160_014,
|
||||
|
||||
InvalidJSONForUploadedLottieFile = 170_001,
|
||||
UploadedLottiesCannotContainRasterizedImages,
|
||||
StickerMaximumFramerateExceeded,
|
||||
|
||||
@@ -1 +1 @@
|
||||
[{"entryPoints":{"v10":{"path":"v10.ts","label":"API v10"},"v9":{"path":"v9.ts","label":"API v9"},"voice/v4":{"path":"voice/v4.ts","label":"Voice v4"},"voice/v8":{"path":"voice/v8.ts","label":"Voice v8"},"globals":{"path":"globals.ts","label":"Global Types"}},"packageRoot":"/home/runner/work/discord-api-types/discord-api-types/","packagePath":"./","packageSlug":"discord-api-types","packageName":"discord-api-types","packageVersion":"0.38.46"}]
|
||||
[{"entryPoints":{"v10":{"path":"v10.ts","label":"API v10"},"v9":{"path":"v9.ts","label":"API v9"},"voice/v4":{"path":"voice/v4.ts","label":"Voice v4"},"voice/v8":{"path":"voice/v8.ts","label":"Voice v8"},"globals":{"path":"globals.ts","label":"Global Types"}},"packageRoot":"/home/runner/work/discord-api-types/discord-api-types/","packagePath":"./","packageSlug":"discord-api-types","packageName":"discord-api-types","packageVersion":"0.38.47"}]
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 126 KiB |
@@ -1,3 +1,3 @@
|
||||
[
|
||||
"0.38.46"
|
||||
"0.38.47"
|
||||
]
|
||||
Reference in New Issue
Block a user