finalized version tested with +150.000 guilds

This commit is contained in:
Dragurimu 2022-08-20 07:05:09 -05:00
parent ad1f1398a8
commit b8c29ae2ad
14 changed files with 30 additions and 30 deletions

View File

@ -1,6 +1,6 @@
# @biscuitland/api-types # @biscuitland/api-types
## 2.0.2 ## 2.0.3
### Major Changes ### Major Changes

View File

@ -25,7 +25,7 @@ import type { DiscordUser } from '@biscuitland/api-types';
## Example for [Deno](https://deno.land/) ## Example for [Deno](https://deno.land/)
```ts ```ts
import type { DiscordUser } from "https://unpkg.com/@biscuitland/api-types@2.0.2/dist/index.d.ts"; import type { DiscordUser } from "https://unpkg.com/@biscuitland/api-types@2.0.3/dist/index.d.ts";
``` ```
We deliver this package through [unpkg](https://unpkg.com/) and it does contain constants and routes too We deliver this package through [unpkg](https://unpkg.com/) and it does contain constants and routes too

View File

@ -1,6 +1,6 @@
{ {
"name": "@biscuitland/api-types", "name": "@biscuitland/api-types",
"version": "2.0.2", "version": "2.0.3",
"main": "./dist/index.js", "main": "./dist/index.js",
"module": "./dist/index.mjs", "module": "./dist/index.mjs",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",

View File

@ -5,7 +5,7 @@ export const BASE_URL = 'https://discord.com/api';
export const API_VERSION = 10; export const API_VERSION = 10;
/** https://github.com/oasisjs/biscuit/releases */ /** https://github.com/oasisjs/biscuit/releases */
export const BISCUIT_VERSION = '2.0.2'; export const BISCUIT_VERSION = '2.0.3';
/** https://discord.com/developers/docs/reference#user-agent */ /** https://discord.com/developers/docs/reference#user-agent */
export const USER_AGENT = `DiscordBot (https://github.com/oasisjs/biscuit, v${BISCUIT_VERSION})`; export const USER_AGENT = `DiscordBot (https://github.com/oasisjs/biscuit, v${BISCUIT_VERSION})`;

View File

@ -1,6 +1,6 @@
# @biscuitland/cache # @biscuitland/cache
## 2.0.2 ## 2.0.3
### Major Changes ### Major Changes
@ -9,4 +9,4 @@
### Patch Changes ### Patch Changes
- Updated dependencies - Updated dependencies
- @biscuitland/api-types@2.0.2 - @biscuitland/api-types@2.0.3

View File

@ -1,6 +1,6 @@
{ {
"name": "@biscuitland/cache", "name": "@biscuitland/cache",
"version": "2.0.2", "version": "2.0.3",
"main": "./dist/index.js", "main": "./dist/index.js",
"module": "./dist/index.mjs", "module": "./dist/index.mjs",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
@ -23,7 +23,7 @@
} }
}, },
"dependencies": { "dependencies": {
"@biscuitland/api-types": "^2.0.2", "@biscuitland/api-types": "^2.0.3",
"ioredis": "^5.2.2" "ioredis": "^5.2.2"
}, },
"devDependencies": { "devDependencies": {

View File

@ -1,6 +1,6 @@
# @biscuitland/core # @biscuitland/core
## 2.0.2 ## 2.0.3
### Major Changes ### Major Changes
@ -9,6 +9,6 @@
### Patch Changes ### Patch Changes
- Updated dependencies - Updated dependencies
- @biscuitland/api-types@2.0.2 - @biscuitland/api-types@2.0.3
- @biscuitland/rest@2.0.2 - @biscuitland/rest@2.0.3
- @biscuitland/ws@2.0.2 - @biscuitland/ws@2.0.3

View File

@ -1,6 +1,6 @@
{ {
"name": "@biscuitland/core", "name": "@biscuitland/core",
"version": "2.0.2", "version": "2.0.3",
"main": "./dist/index.js", "main": "./dist/index.js",
"module": "./dist/index.mjs", "module": "./dist/index.mjs",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
@ -23,9 +23,9 @@
} }
}, },
"dependencies": { "dependencies": {
"@biscuitland/api-types": "^2.0.2", "@biscuitland/api-types": "^2.0.3",
"@biscuitland/rest": "^2.0.2", "@biscuitland/rest": "^2.0.3",
"@biscuitland/ws": "^2.0.2" "@biscuitland/ws": "^2.0.3"
}, },
"devDependencies": { "devDependencies": {
"tsup": "^6.1.3" "tsup": "^6.1.3"

View File

@ -1,9 +1,9 @@
# @biscuitland/helpers # @biscuitland/helpers
## 2.0.2 ## 2.0.3
### Patch Changes ### Patch Changes
- Updated dependencies - Updated dependencies
- @biscuitland/api-types@2.0.2 - @biscuitland/api-types@2.0.3
- @biscuitland/core@2.0.2 - @biscuitland/core@2.0.3

View File

@ -1,6 +1,6 @@
{ {
"name": "@biscuitland/helpers", "name": "@biscuitland/helpers",
"version": "2.0.2", "version": "2.0.3",
"main": "./dist/index.js", "main": "./dist/index.js",
"module": "./dist/index.mjs", "module": "./dist/index.mjs",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
@ -23,8 +23,8 @@
} }
}, },
"dependencies": { "dependencies": {
"@biscuitland/api-types": "^2.0.2", "@biscuitland/api-types": "^2.0.3",
"@biscuitland/core": "^2.0.2" "@biscuitland/core": "^2.0.3"
}, },
"devDependencies": { "devDependencies": {
"tsup": "^6.1.3" "tsup": "^6.1.3"

View File

@ -1,6 +1,6 @@
# @biscuitland/rest # @biscuitland/rest
## 2.0.2 ## 2.0.3
### Major Changes ### Major Changes
@ -9,4 +9,4 @@
### Patch Changes ### Patch Changes
- Updated dependencies - Updated dependencies
- @biscuitland/api-types@2.0.2 - @biscuitland/api-types@2.0.3

View File

@ -1,6 +1,6 @@
{ {
"name": "@biscuitland/rest", "name": "@biscuitland/rest",
"version": "2.0.2", "version": "2.0.3",
"main": "./dist/index.js", "main": "./dist/index.js",
"module": "./dist/index.mjs", "module": "./dist/index.mjs",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
@ -23,7 +23,7 @@
} }
}, },
"dependencies": { "dependencies": {
"@biscuitland/api-types": "^2.0.2" "@biscuitland/api-types": "^2.0.3"
}, },
"devDependencies": { "devDependencies": {
"tsup": "^6.1.3" "tsup": "^6.1.3"

View File

@ -1,6 +1,6 @@
# @biscuitland/ws # @biscuitland/ws
## 2.0.2 ## 2.0.3
### Major Changes ### Major Changes
@ -9,4 +9,4 @@
### Patch Changes ### Patch Changes
- Updated dependencies - Updated dependencies
- @biscuitland/api-types@2.0.2 - @biscuitland/api-types@2.0.3

View File

@ -1,6 +1,6 @@
{ {
"name": "@biscuitland/ws", "name": "@biscuitland/ws",
"version": "2.0.2", "version": "2.0.3",
"main": "./dist/index.js", "main": "./dist/index.js",
"module": "./dist/index.mjs", "module": "./dist/index.mjs",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
@ -23,7 +23,7 @@
} }
}, },
"dependencies": { "dependencies": {
"@biscuitland/api-types": "^2.0.2", "@biscuitland/api-types": "^2.0.3",
"ws": "^8.8.1" "ws": "^8.8.1"
}, },
"devDependencies": { "devDependencies": {