refactor(rest): switch api to fetch-like and provide strategies (#9416)

BREAKING CHANGE: NodeJS v18+ is required when using node due to the use of global `fetch`
BREAKING CHANGE: The raw method of REST now returns a web compatible `Respone` object.
BREAKING CHANGE: The `parseResponse` utility method has been updated to operate on a web compatible `Response` object.
BREAKING CHANGE: Many underlying internals have changed, some of which were exported.
BREAKING CHANGE: `DefaultRestOptions` used to contain a default `agent`, which is now set to `null` instead.
This commit is contained in:
ckohen
2023-05-06 12:09:19 -07:00
committed by GitHub
parent fc5b9c523b
commit cdaa0a36f5
28 changed files with 317 additions and 203 deletions

View File

@@ -23,7 +23,7 @@
## Installation ## Installation
**Node.js 16.9.0 or newer is required.** **Node.js 18.12.0 or newer is required.**
```sh ```sh
npm install @discordjs/core npm install @discordjs/core

View File

@@ -64,7 +64,7 @@
"devDependencies": { "devDependencies": {
"@favware/cliff-jumper": "^2.0.0", "@favware/cliff-jumper": "^2.0.0",
"@microsoft/api-extractor": "^7.34.8", "@microsoft/api-extractor": "^7.34.8",
"@types/node": "16.18.25", "@types/node": "18.15.11",
"@vitest/coverage-c8": "^0.31.0", "@vitest/coverage-c8": "^0.31.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"esbuild-plugin-version-injector": "^1.1.0", "esbuild-plugin-version-injector": "^1.1.0",
@@ -78,7 +78,7 @@
"vitest": "^0.31.0" "vitest": "^0.31.0"
}, },
"engines": { "engines": {
"node": ">=16.9.0" "node": ">=18.12.0"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"

View File

@@ -53,7 +53,7 @@
"@discordjs/builders": "workspace:^", "@discordjs/builders": "workspace:^",
"@discordjs/collection": "workspace:^", "@discordjs/collection": "workspace:^",
"@discordjs/formatters": "workspace:^", "@discordjs/formatters": "workspace:^",
"@discordjs/rest": "workspace:^", "@discordjs/rest": "^1.7.1",
"@discordjs/util": "workspace:^", "@discordjs/util": "workspace:^",
"@discordjs/ws": "workspace:^", "@discordjs/ws": "workspace:^",
"@sapphire/snowflake": "^3.4.2", "@sapphire/snowflake": "^3.4.2",

View File

@@ -49,7 +49,7 @@
"tslib": "^2.5.0" "tslib": "^2.5.0"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "16.18.25", "@types/node": "18.15.11",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.39.0", "eslint": "^8.39.0",
"eslint-config-neon": "^0.1.46", "eslint-config-neon": "^0.1.46",
@@ -60,7 +60,7 @@
"typescript": "^5.0.4" "typescript": "^5.0.4"
}, },
"engines": { "engines": {
"node": ">=16.9.0" "node": ">=18.12.0"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"

View File

@@ -23,7 +23,7 @@
## Installation ## Installation
**Node.js 16.9.0 or newer is required.** **Node.js 18.12.0 or newer is required.**
```sh ```sh
npm install @discordjs/proxy npm install @discordjs/proxy

View File

@@ -64,7 +64,7 @@
"devDependencies": { "devDependencies": {
"@favware/cliff-jumper": "^2.0.0", "@favware/cliff-jumper": "^2.0.0",
"@microsoft/api-extractor": "^7.34.8", "@microsoft/api-extractor": "^7.34.8",
"@types/node": "16.18.25", "@types/node": "18.15.11",
"@types/supertest": "^2.0.12", "@types/supertest": "^2.0.12",
"@vitest/coverage-c8": "^0.31.0", "@vitest/coverage-c8": "^0.31.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
@@ -79,7 +79,7 @@
"vitest": "^0.31.0" "vitest": "^0.31.0"
}, },
"engines": { "engines": {
"node": ">=16.9.0" "node": ">=18.12.0"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"

View File

@@ -1,7 +1,7 @@
import type { ServerResponse } from 'node:http'; import type { ServerResponse } from 'node:http';
import { Readable } from 'node:stream';
import { pipeline } from 'node:stream/promises'; import { pipeline } from 'node:stream/promises';
import { DiscordAPIError, HTTPError, RateLimitError } from '@discordjs/rest'; import { DiscordAPIError, HTTPError, RateLimitError, type ResponseLike } from '@discordjs/rest';
import type { Dispatcher } from 'undici';
/** /**
* Populates a server response with the data from a Discord 2xx REST response * Populates a server response with the data from a Discord 2xx REST response
@@ -9,19 +9,21 @@ import type { Dispatcher } from 'undici';
* @param res - The server response to populate * @param res - The server response to populate
* @param data - The data to populate the response with * @param data - The data to populate the response with
*/ */
export async function populateSuccessfulResponse(res: ServerResponse, data: Dispatcher.ResponseData): Promise<void> { export async function populateSuccessfulResponse(res: ServerResponse, data: ResponseLike): Promise<void> {
res.statusCode = data.statusCode; res.statusCode = data.status;
for (const header of Object.keys(data.headers)) { for (const [header, value] of data.headers) {
// Strip ratelimit headers // Strip ratelimit headers
if (header.startsWith('x-ratelimit')) { if (/^x-ratelimit/i.test(header)) {
continue; continue;
} }
res.setHeader(header, data.headers[header]!); res.setHeader(header, value);
} }
await pipeline(data.body, res); if (data.body) {
await pipeline(data.body instanceof Readable ? data.body : Readable.fromWeb(data.body), res);
}
} }
/** /**

View File

@@ -23,7 +23,7 @@
## Installation ## Installation
**Node.js 16.9.0 or newer is required.** **Node.js 18.12.0 or newer is required.**
```sh ```sh
npm install @discordjs/rest npm install @discordjs/rest
@@ -80,6 +80,25 @@ try {
} }
``` ```
Send a basic message in an edge environment:
```js
import { REST } from '@discordjs/rest';
import { Routes } from 'discord-api-types/v10';
const rest = new REST({ version: '10', makeRequest: fetch }).setToken(TOKEN);
try {
await rest.post(Routes.channelMessages(CHANNEL_ID), {
body: {
content: 'A message via REST from the edge!',
},
});
} catch (error) {
console.error(error);
}
```
## Links ## Links
- [Website][website] ([source][website-source]) - [Website][website] ([source][website-source])

View File

@@ -3,7 +3,7 @@
import { performance } from 'node:perf_hooks'; import { performance } from 'node:perf_hooks';
import { MockAgent, setGlobalDispatcher } from 'undici'; import { MockAgent, setGlobalDispatcher } from 'undici';
import type { Interceptable, MockInterceptor } from 'undici/types/mock-interceptor'; import type { Interceptable, MockInterceptor } from 'undici/types/mock-interceptor';
import { beforeEach, afterEach, test, expect, vitest } from 'vitest'; import { beforeEach, afterEach, test, expect } from 'vitest';
import { DiscordAPIError, REST, BurstHandlerMajorIdKey } from '../src/index.js'; import { DiscordAPIError, REST, BurstHandlerMajorIdKey } from '../src/index.js';
import { BurstHandler } from '../src/lib/handlers/BurstHandler.js'; import { BurstHandler } from '../src/lib/handlers/BurstHandler.js';
import { genPath } from './util.js'; import { genPath } from './util.js';
@@ -46,6 +46,7 @@ test('Interaction callback creates burst handler', async () => {
auth: false, auth: false,
body: { type: 4, data: { content: 'Reply' } }, body: { type: 4, data: { content: 'Reply' } },
}), }),
// TODO: This should be ArrayBuffer, there is a bug in undici request
).toBeInstanceOf(Uint8Array); ).toBeInstanceOf(Uint8Array);
expect(api.requestManager.handlers.get(callbackKey)).toBeInstanceOf(BurstHandler); expect(api.requestManager.handlers.get(callbackKey)).toBeInstanceOf(BurstHandler);
}); });

View File

@@ -3,10 +3,10 @@ import { URLSearchParams } from 'node:url';
import { DiscordSnowflake } from '@sapphire/snowflake'; import { DiscordSnowflake } from '@sapphire/snowflake';
import type { Snowflake } from 'discord-api-types/v10'; import type { Snowflake } from 'discord-api-types/v10';
import { Routes } from 'discord-api-types/v10'; import { Routes } from 'discord-api-types/v10';
import type { FormData } from 'undici'; import { type FormData, fetch } from 'undici';
import { File as UndiciFile, MockAgent, setGlobalDispatcher } from 'undici'; import { File as UndiciFile, MockAgent, setGlobalDispatcher } from 'undici';
import type { Interceptable, MockInterceptor } from 'undici/types/mock-interceptor.js'; import type { Interceptable, MockInterceptor } from 'undici/types/mock-interceptor.js';
import { beforeEach, afterEach, test, expect } from 'vitest'; import { beforeEach, afterEach, test, expect, vitest } from 'vitest';
import { REST } from '../src/index.js'; import { REST } from '../src/index.js';
import { genPath } from './util.js'; import { genPath } from './util.js';
@@ -16,6 +16,10 @@ const newSnowflake: Snowflake = DiscordSnowflake.generate().toString();
const api = new REST().setToken('A-Very-Fake-Token'); const api = new REST().setToken('A-Very-Fake-Token');
const makeRequestMock = vitest.fn(fetch);
const fetchApi = new REST({ makeRequest: makeRequestMock }).setToken('A-Very-Fake-Token');
// @discordjs/rest uses the `content-type` header to detect whether to parse // @discordjs/rest uses the `content-type` header to detect whether to parse
// the response as JSON or as an ArrayBuffer. // the response as JSON or as an ArrayBuffer.
const responseOptions: MockInterceptor.MockResponseOptions = { const responseOptions: MockInterceptor.MockResponseOptions = {
@@ -114,6 +118,22 @@ test('simple POST', async () => {
expect(await api.post('/simplePost')).toStrictEqual({ test: true }); expect(await api.post('/simplePost')).toStrictEqual({ test: true });
}); });
test('simple POST with fetch', async () => {
mockPool
.intercept({
path: genPath('/fetchSimplePost'),
method: 'POST',
})
.reply(() => ({
data: { test: true },
statusCode: 200,
responseOptions,
}));
expect(await fetchApi.post('/fetchSimplePost')).toStrictEqual({ test: true });
expect(makeRequestMock).toHaveBeenCalledTimes(1);
});
test('simple PUT 2', async () => { test('simple PUT 2', async () => {
mockPool mockPool
.intercept({ .intercept({
@@ -159,11 +179,11 @@ test('getAuth', async () => {
path: genPath('/getAuth'), path: genPath('/getAuth'),
method: 'GET', method: 'GET',
}) })
.reply((from) => ({ .reply(
data: { auth: (from.headers as unknown as Record<string, string | undefined>).Authorization ?? null }, 200,
statusCode: 200, (from) => ({ auth: (from.headers as unknown as Record<string, string | undefined>).Authorization ?? null }),
responseOptions, responseOptions,
})) )
.times(3); .times(3);
// default // default
@@ -190,11 +210,13 @@ test('getReason', async () => {
path: genPath('/getReason'), path: genPath('/getReason'),
method: 'GET', method: 'GET',
}) })
.reply((from) => ({ .reply(
data: { reason: (from.headers as unknown as Record<string, string | undefined>)['X-Audit-Log-Reason'] ?? null }, 200,
statusCode: 200, (from) => ({
reason: (from.headers as unknown as Record<string, string | undefined>)['X-Audit-Log-Reason'] ?? null,
}),
responseOptions, responseOptions,
})) )
.times(3); .times(3);
// default // default

View File

@@ -1,7 +1,7 @@
/* eslint-disable id-length */ /* eslint-disable id-length */
/* eslint-disable promise/prefer-await-to-then */ /* eslint-disable promise/prefer-await-to-then */
import { performance } from 'node:perf_hooks'; import { performance } from 'node:perf_hooks';
import { setInterval, clearInterval, setTimeout } from 'node:timers'; import { setInterval, clearInterval } from 'node:timers';
import { MockAgent, setGlobalDispatcher } from 'undici'; import { MockAgent, setGlobalDispatcher } from 'undici';
import type { Interceptable, MockInterceptor } from 'undici/types/mock-interceptor.js'; import type { Interceptable, MockInterceptor } from 'undici/types/mock-interceptor.js';
import { beforeEach, afterEach, test, expect, vitest } from 'vitest'; import { beforeEach, afterEach, test, expect, vitest } from 'vitest';
@@ -492,7 +492,7 @@ test('server responding too slow', async () => {
const promise = api2.get('/slow'); const promise = api2.get('/slow');
await expect(promise).rejects.toThrowError('Request aborted'); await expect(promise).rejects.toThrowError('aborted');
}, 1_000); }, 1_000);
test('Unauthorized', async () => { test('Unauthorized', async () => {
@@ -570,8 +570,8 @@ test('abort', async () => {
controller.abort(); controller.abort();
// Abort mid-execution: // Abort mid-execution:
await expect(bP2).rejects.toThrowError('Request aborted'); await expect(bP2).rejects.toThrowError('aborted');
// Abort scheduled: // Abort scheduled:
await expect(cP2).rejects.toThrowError('Request aborted'); await expect(cP2).rejects.toThrowError('Request aborted manually');
}); });

View File

@@ -1,22 +1,37 @@
import { Blob, Buffer } from 'node:buffer'; import { Blob, Buffer } from 'node:buffer';
import { URLSearchParams } from 'node:url'; import { URLSearchParams } from 'node:url';
import { test, expect } from 'vitest'; import { MockAgent, setGlobalDispatcher } from 'undici';
import { resolveBody, parseHeader } from '../src/lib/utils/utils.js'; import type { Interceptable, MockInterceptor } from 'undici/types/mock-interceptor.js';
import { beforeEach, afterEach, test, expect, vitest } from 'vitest';
import { REST } from '../src/index.js';
import { makeRequest, resolveBody } from '../src/strategies/undiciRequest.js';
import { genPath } from './util.js';
test('GIVEN string parseHeader returns string', () => { const makeRequestMock = vitest.fn(makeRequest);
const header = 'application/json';
expect(parseHeader(header)).toEqual(header); const api = new REST({ makeRequest: makeRequestMock }).setToken('A-Very-Fake-Token');
// @discordjs/rest uses the `content-type` header to detect whether to parse
// the response as JSON or as an ArrayBuffer.
const responseOptions: MockInterceptor.MockResponseOptions = {
headers: {
'content-type': 'application/json',
},
};
let mockAgent: MockAgent;
let mockPool: Interceptable;
beforeEach(() => {
mockAgent = new MockAgent();
mockAgent.disableNetConnect(); // prevent actual requests to Discord
setGlobalDispatcher(mockAgent); // enabled the mock client to intercept requests
mockPool = mockAgent.get('https://discord.com');
}); });
test('GIVEN string[] parseHeader returns string', () => { afterEach(async () => {
const header = ['application/json', 'wait sorry I meant text/html']; await mockAgent.close();
expect(parseHeader(header)).toEqual(header.join(';'));
});
test('GIVEN undefined parseHeader return undefined', () => {
expect(parseHeader(undefined)).toBeUndefined();
}); });
test('resolveBody', async () => { test('resolveBody', async () => {
@@ -43,7 +58,7 @@ test('resolveBody', async () => {
} }
}, },
}; };
await expect(resolveBody(iterable)).resolves.toStrictEqual(new Uint8Array([1, 2, 3, 1, 2, 3, 1, 2, 3])); await expect(resolveBody(iterable)).resolves.toStrictEqual(Buffer.from([1, 2, 3, 1, 2, 3, 1, 2, 3]));
const asyncIterable: AsyncIterable<Uint8Array> = { const asyncIterable: AsyncIterable<Uint8Array> = {
[Symbol.asyncIterator]() { [Symbol.asyncIterator]() {
@@ -66,3 +81,19 @@ test('resolveBody', async () => {
// @ts-expect-error: This test is ensuring that this throws // @ts-expect-error: This test is ensuring that this throws
await expect(resolveBody(true)).rejects.toThrow(TypeError); await expect(resolveBody(true)).rejects.toThrow(TypeError);
}); });
test('use passed undici request', async () => {
mockPool
.intercept({
path: genPath('/simplePost'),
method: 'POST',
})
.reply(() => ({
data: { test: true },
statusCode: 200,
responseOptions,
}));
expect(await api.post('/simplePost')).toStrictEqual({ test: true });
expect(makeRequestMock).toHaveBeenCalledTimes(1);
});

View File

@@ -18,9 +18,16 @@
"module": "./dist/index.mjs", "module": "./dist/index.mjs",
"typings": "./dist/index.d.ts", "typings": "./dist/index.d.ts",
"exports": { "exports": {
"types": "./dist/index.d.ts", ".": {
"import": "./dist/index.mjs", "types": "./dist/index.d.ts",
"require": "./dist/index.js" "import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": {
"types": "./dist/strategies/*.d.ts",
"import": "./dist/strategies/*.mjs",
"require": "./dist/strategies/*.js"
}
}, },
"directories": { "directories": {
"lib": "src", "lib": "src",
@@ -66,7 +73,7 @@
"devDependencies": { "devDependencies": {
"@favware/cliff-jumper": "^2.0.0", "@favware/cliff-jumper": "^2.0.0",
"@microsoft/api-extractor": "^7.34.8", "@microsoft/api-extractor": "^7.34.8",
"@types/node": "16.18.25", "@types/node": "18.15.11",
"@vitest/coverage-c8": "^0.31.0", "@vitest/coverage-c8": "^0.31.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"esbuild-plugin-version-injector": "^1.1.0", "esbuild-plugin-version-injector": "^1.1.0",
@@ -80,7 +87,7 @@
"vitest": "^0.31.0" "vitest": "^0.31.0"
}, },
"engines": { "engines": {
"node": ">=16.9.0" "node": ">=18.12.0"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"

View File

@@ -1,6 +1,8 @@
import { EventEmitter } from 'node:events'; import { EventEmitter } from 'node:events';
import type { Readable } from 'node:stream';
import type { ReadableStream } from 'node:stream/web';
import type { Collection } from '@discordjs/collection'; import type { Collection } from '@discordjs/collection';
import type { request, Dispatcher } from 'undici'; import type { Dispatcher, RequestInit, Response } from 'undici';
import { CDN } from './CDN.js'; import { CDN } from './CDN.js';
import { import {
RequestManager, RequestManager,
@@ -11,7 +13,7 @@ import {
type RequestData, type RequestData,
type RouteLike, type RouteLike,
} from './RequestManager.js'; } from './RequestManager.js';
import type { IHandler } from './handlers/IHandler.js'; import type { IHandler } from './interfaces/Handler.js';
import { DefaultRestOptions, RESTEvents } from './utils/constants.js'; import { DefaultRestOptions, RESTEvents } from './utils/constants.js';
import { parseResponse } from './utils/utils.js'; import { parseResponse } from './utils/utils.js';
@@ -22,7 +24,7 @@ export interface RESTOptions {
/** /**
* The agent to set globally * The agent to set globally
*/ */
agent: Dispatcher; agent: Dispatcher | null;
/** /**
* The base api path, without version * The base api path, without version
* *
@@ -79,6 +81,13 @@ export interface RESTOptions {
* @defaultValue `0` * @defaultValue `0`
*/ */
invalidRequestWarningInterval: number; invalidRequestWarningInterval: number;
/**
* The method called to perform the actual HTTP request given a url and web `fetch` options
* For example, to use global fetch, simply provide `makeRequest: fetch`
*
* @defaultValue `undici.request`
*/
makeRequest(url: string, init: RequestInit): Promise<ResponseLike>;
/** /**
* The extra offset to add to rate limits in milliseconds * The extra offset to add to rate limits in milliseconds
* *
@@ -179,7 +188,7 @@ export interface APIRequest {
/** /**
* Additional HTTP options for this request * Additional HTTP options for this request
*/ */
options: RequestOptions; options: RequestInit;
/** /**
* The full path used to make the request * The full path used to make the request
*/ */
@@ -194,6 +203,11 @@ export interface APIRequest {
route: string; route: string;
} }
export interface ResponseLike
extends Pick<Response, 'arrayBuffer' | 'bodyUsed' | 'headers' | 'json' | 'ok' | 'status' | 'text'> {
body: Readable | ReadableStream | null;
}
export interface InvalidRequestWarningData { export interface InvalidRequestWarningData {
/** /**
* Number of invalid requests that have been made in the window * Number of invalid requests that have been made in the window
@@ -212,7 +226,7 @@ export interface RestEvents {
newListener: [name: string, listener: (...args: any) => void]; newListener: [name: string, listener: (...args: any) => void];
rateLimited: [rateLimitInfo: RateLimitData]; rateLimited: [rateLimitInfo: RateLimitData];
removeListener: [name: string, listener: (...args: any) => void]; removeListener: [name: string, listener: (...args: any) => void];
response: [request: APIRequest, response: Dispatcher.ResponseData]; response: [request: APIRequest, response: ResponseLike];
restDebug: [info: string]; restDebug: [info: string];
} }
@@ -233,8 +247,6 @@ export interface REST {
(<S extends string | symbol>(event?: Exclude<S, keyof RestEvents>) => this); (<S extends string | symbol>(event?: Exclude<S, keyof RestEvents>) => this);
} }
export type RequestOptions = Exclude<Parameters<typeof request>[1], undefined>;
export class REST extends EventEmitter { export class REST extends EventEmitter {
public readonly cdn: CDN; public readonly cdn: CDN;

View File

@@ -5,11 +5,11 @@ import type { URLSearchParams } from 'node:url';
import { Collection } from '@discordjs/collection'; import { Collection } from '@discordjs/collection';
import { lazy } from '@discordjs/util'; import { lazy } from '@discordjs/util';
import { DiscordSnowflake } from '@sapphire/snowflake'; import { DiscordSnowflake } from '@sapphire/snowflake';
import { FormData, type RequestInit, type BodyInit, type Dispatcher, type Agent } from 'undici'; import type { RequestInit, BodyInit, Dispatcher, Agent } from 'undici';
import type { RESTOptions, RestEvents, RequestOptions } from './REST.js'; import type { RESTOptions, ResponseLike, RestEvents } from './REST.js';
import { BurstHandler } from './handlers/BurstHandler.js'; import { BurstHandler } from './handlers/BurstHandler.js';
import type { IHandler } from './handlers/IHandler.js';
import { SequentialHandler } from './handlers/SequentialHandler.js'; import { SequentialHandler } from './handlers/SequentialHandler.js';
import type { IHandler } from './interfaces/Handler.js';
import { import {
BurstHandlerMajorIdKey, BurstHandlerMajorIdKey,
DefaultRestOptions, DefaultRestOptions,
@@ -17,7 +17,6 @@ import {
OverwrittenMimeTypes, OverwrittenMimeTypes,
RESTEvents, RESTEvents,
} from './utils/constants.js'; } from './utils/constants.js';
import { resolveBody } from './utils/utils.js';
// Make this a lazy dynamic import as file-type is a pure ESM package // Make this a lazy dynamic import as file-type is a pure ESM package
const getFileType = lazy(async () => import('file-type')); const getFileType = lazy(async () => import('file-type'));
@@ -323,7 +322,7 @@ export class RequestManager extends EventEmitter {
* @param request - All the information needed to make a request * @param request - All the information needed to make a request
* @returns The response from the api request * @returns The response from the api request
*/ */
public async queueRequest(request: InternalRequest): Promise<Dispatcher.ResponseData> { public async queueRequest(request: InternalRequest): Promise<ResponseLike> {
// Generalize the endpoint to its route data // Generalize the endpoint to its route data
const routeId = RequestManager.generateRouteData(request.fullRoute, request.method); const routeId = RequestManager.generateRouteData(request.fullRoute, request.method);
// Get the bucket hash for the generic route, or point to a global route otherwise // Get the bucket hash for the generic route, or point to a global route otherwise
@@ -373,7 +372,7 @@ export class RequestManager extends EventEmitter {
* *
* @param request - The request data * @param request - The request data
*/ */
private async resolveRequest(request: InternalRequest): Promise<{ fetchOptions: RequestOptions; url: string }> { private async resolveRequest(request: InternalRequest): Promise<{ fetchOptions: RequestInit; url: string }> {
const { options } = this; const { options } = this;
let query = ''; let query = '';
@@ -470,20 +469,18 @@ export class RequestManager extends EventEmitter {
} }
} }
finalBody = await resolveBody(finalBody); const method = request.method.toUpperCase();
const fetchOptions: RequestOptions = { // The non null assertions in the following block are due to exactOptionalPropertyTypes, they have been tested to work with undefined
const fetchOptions: RequestInit = {
// Set body to null on get / head requests. This does not follow fetch spec (likely because it causes subtle bugs) but is aligned with what request was doing
body: ['GET', 'HEAD'].includes(method) ? null : finalBody!,
headers: { ...request.headers, ...additionalHeaders, ...headers } as Record<string, string>, headers: { ...request.headers, ...additionalHeaders, ...headers } as Record<string, string>,
method: request.method.toUpperCase() as Dispatcher.HttpMethod, method,
// Prioritize setting an agent per request, use the agent for this instance otherwise.
dispatcher: request.dispatcher ?? this.agent ?? undefined!,
}; };
if (finalBody !== undefined) {
fetchOptions.body = finalBody as Exclude<RequestOptions['body'], undefined>;
}
// Prioritize setting an agent per request, use the agent for this instance otherwise.
fetchOptions.dispatcher = request.dispatcher ?? this.agent ?? undefined!;
return { url, fetchOptions }; return { url, fetchOptions };
} }

View File

@@ -0,0 +1,5 @@
import type * as undici from 'undici';
declare global {
export const { fetch, FormData, Headers, Request, Response }: typeof undici;
}

View File

@@ -1,10 +1,10 @@
import { setTimeout as sleep } from 'node:timers/promises'; import { setTimeout as sleep } from 'node:timers/promises';
import type { Dispatcher } from 'undici'; import type { RequestInit } from 'undici';
import type { RequestOptions } from '../REST.js'; import type { ResponseLike } from '../REST.js';
import type { HandlerRequestData, RequestManager, RouteData } from '../RequestManager.js'; import type { HandlerRequestData, RequestManager, RouteData } from '../RequestManager.js';
import type { IHandler } from '../interfaces/Handler.js';
import { RESTEvents } from '../utils/constants.js'; import { RESTEvents } from '../utils/constants.js';
import { onRateLimit, parseHeader } from '../utils/utils.js'; import { onRateLimit } from '../utils/utils.js';
import type { IHandler } from './IHandler.js';
import { handleErrors, incrementInvalidCount, makeNetworkRequest } from './Shared.js'; import { handleErrors, incrementInvalidCount, makeNetworkRequest } from './Shared.js';
/** /**
@@ -54,9 +54,9 @@ export class BurstHandler implements IHandler {
public async queueRequest( public async queueRequest(
routeId: RouteData, routeId: RouteData,
url: string, url: string,
options: RequestOptions, options: RequestInit,
requestData: HandlerRequestData, requestData: HandlerRequestData,
): Promise<Dispatcher.ResponseData> { ): Promise<ResponseLike> {
return this.runRequest(routeId, url, options, requestData); return this.runRequest(routeId, url, options, requestData);
} }
@@ -72,10 +72,10 @@ export class BurstHandler implements IHandler {
private async runRequest( private async runRequest(
routeId: RouteData, routeId: RouteData,
url: string, url: string,
options: RequestOptions, options: RequestInit,
requestData: HandlerRequestData, requestData: HandlerRequestData,
retries = 0, retries = 0,
): Promise<Dispatcher.ResponseData> { ): Promise<ResponseLike> {
const method = options.method ?? 'get'; const method = options.method ?? 'get';
const res = await makeNetworkRequest(this.manager, routeId, url, options, requestData, retries); const res = await makeNetworkRequest(this.manager, routeId, url, options, requestData, retries);
@@ -86,9 +86,9 @@ export class BurstHandler implements IHandler {
return this.runRequest(routeId, url, options, requestData, ++retries); return this.runRequest(routeId, url, options, requestData, ++retries);
} }
const status = res.statusCode; const status = res.status;
let retryAfter = 0; let retryAfter = 0;
const retry = parseHeader(res.headers['retry-after']); const retry = res.headers.get('Retry-After');
// Amount of time in milliseconds until we should retry if rate limited (globally or otherwise) // Amount of time in milliseconds until we should retry if rate limited (globally or otherwise)
if (retry) retryAfter = Number(retry) * 1_000 + this.manager.options.offset; if (retry) retryAfter = Number(retry) * 1_000 + this.manager.options.offset;
@@ -102,7 +102,7 @@ export class BurstHandler implements IHandler {
return res; return res;
} else if (status === 429) { } else if (status === 429) {
// Unexpected ratelimit // Unexpected ratelimit
const isGlobal = res.headers['x-ratelimit-global'] !== undefined; const isGlobal = res.headers.has('X-RateLimit-Global');
await onRateLimit(this.manager, { await onRateLimit(this.manager, {
timeToReset: retryAfter, timeToReset: retryAfter,
limit: Number.POSITIVE_INFINITY, limit: Number.POSITIVE_INFINITY,

View File

@@ -1,11 +1,11 @@
import { setTimeout as sleep } from 'node:timers/promises'; import { setTimeout as sleep } from 'node:timers/promises';
import { AsyncQueue } from '@sapphire/async-queue'; import { AsyncQueue } from '@sapphire/async-queue';
import type { Dispatcher } from 'undici'; import type { RequestInit } from 'undici';
import type { RateLimitData, RequestOptions } from '../REST.js'; import type { RateLimitData, ResponseLike } from '../REST.js';
import type { HandlerRequestData, RequestManager, RouteData } from '../RequestManager.js'; import type { HandlerRequestData, RequestManager, RouteData } from '../RequestManager.js';
import type { IHandler } from '../interfaces/Handler.js';
import { RESTEvents } from '../utils/constants.js'; import { RESTEvents } from '../utils/constants.js';
import { hasSublimit, onRateLimit, parseHeader } from '../utils/utils.js'; import { hasSublimit, onRateLimit } from '../utils/utils.js';
import type { IHandler } from './IHandler.js';
import { handleErrors, incrementInvalidCount, makeNetworkRequest } from './Shared.js'; import { handleErrors, incrementInvalidCount, makeNetworkRequest } from './Shared.js';
const enum QueueType { const enum QueueType {
@@ -134,9 +134,9 @@ export class SequentialHandler implements IHandler {
public async queueRequest( public async queueRequest(
routeId: RouteData, routeId: RouteData,
url: string, url: string,
options: RequestOptions, options: RequestInit,
requestData: HandlerRequestData, requestData: HandlerRequestData,
): Promise<Dispatcher.ResponseData> { ): Promise<ResponseLike> {
let queue = this.#asyncQueue; let queue = this.#asyncQueue;
let queueType = QueueType.Standard; let queueType = QueueType.Standard;
// Separate sublimited requests when already sublimited // Separate sublimited requests when already sublimited
@@ -195,10 +195,10 @@ export class SequentialHandler implements IHandler {
private async runRequest( private async runRequest(
routeId: RouteData, routeId: RouteData,
url: string, url: string,
options: RequestOptions, options: RequestInit,
requestData: HandlerRequestData, requestData: HandlerRequestData,
retries = 0, retries = 0,
): Promise<Dispatcher.ResponseData> { ): Promise<ResponseLike> {
/* /*
* After calculations have been done, pre-emptively stop further requests * After calculations have been done, pre-emptively stop further requests
* Potentially loop until this task can run if e.g. the global rate limit is hit twice * Potentially loop until this task can run if e.g. the global rate limit is hit twice
@@ -270,14 +270,14 @@ export class SequentialHandler implements IHandler {
return this.runRequest(routeId, url, options, requestData, ++retries); return this.runRequest(routeId, url, options, requestData, ++retries);
} }
const status = res.statusCode; const status = res.status;
let retryAfter = 0; let retryAfter = 0;
const limit = parseHeader(res.headers['x-ratelimit-limit']); const limit = res.headers.get('X-RateLimit-Limit');
const remaining = parseHeader(res.headers['x-ratelimit-remaining']); const remaining = res.headers.get('X-RateLimit-Remaining');
const reset = parseHeader(res.headers['x-ratelimit-reset-after']); const reset = res.headers.get('X-RateLimit-Reset-After');
const hash = parseHeader(res.headers['x-ratelimit-bucket']); const hash = res.headers.get('X-RateLimit-Bucket');
const retry = parseHeader(res.headers['retry-after']); const retry = res.headers.get('Retry-After');
// Update the total number of requests that can be made before the rate limit resets // Update the total number of requests that can be made before the rate limit resets
this.limit = limit ? Number(limit) : Number.POSITIVE_INFINITY; this.limit = limit ? Number(limit) : Number.POSITIVE_INFINITY;
@@ -309,7 +309,7 @@ export class SequentialHandler implements IHandler {
// Handle retryAfter, which means we have actually hit a rate limit // Handle retryAfter, which means we have actually hit a rate limit
let sublimitTimeout: number | null = null; let sublimitTimeout: number | null = null;
if (retryAfter > 0) { if (retryAfter > 0) {
if (res.headers['x-ratelimit-global'] !== undefined) { if (res.headers.has('X-RateLimit-Global')) {
this.manager.globalRemaining = 0; this.manager.globalRemaining = 0;
this.manager.globalReset = Date.now() + retryAfter; this.manager.globalReset = Date.now() + retryAfter;
} else if (!this.localLimited) { } else if (!this.localLimited) {
@@ -327,7 +327,7 @@ export class SequentialHandler implements IHandler {
incrementInvalidCount(this.manager); incrementInvalidCount(this.manager);
} }
if (status >= 200 && status < 300) { if (res.ok) {
return res; return res;
} else if (status === 429) { } else if (status === 429) {
// A rate limit was hit - this may happen if the route isn't associated with an official bucket hash yet, or when first globally rate limited // A rate limit was hit - this may happen if the route isn't associated with an official bucket hash yet, or when first globally rate limited

View File

@@ -1,13 +1,13 @@
import { setTimeout, clearTimeout } from 'node:timers'; import { setTimeout, clearTimeout } from 'node:timers';
import { request, type Dispatcher } from 'undici'; import { Response } from 'undici';
import type { RequestOptions } from '../REST.js'; import type { RequestInit } from 'undici';
import type { ResponseLike } from '../REST.js';
import type { HandlerRequestData, RequestManager, RouteData } from '../RequestManager.js'; import type { HandlerRequestData, RequestManager, RouteData } from '../RequestManager.js';
import type { DiscordErrorData, OAuthErrorData } from '../errors/DiscordAPIError.js'; import type { DiscordErrorData, OAuthErrorData } from '../errors/DiscordAPIError.js';
import { DiscordAPIError } from '../errors/DiscordAPIError.js'; import { DiscordAPIError } from '../errors/DiscordAPIError.js';
import { HTTPError } from '../errors/HTTPError.js'; import { HTTPError } from '../errors/HTTPError.js';
import { RESTEvents } from '../utils/constants.js'; import { RESTEvents } from '../utils/constants.js';
import { parseResponse, shouldRetry } from '../utils/utils.js'; import { parseResponse, shouldRetry } from '../utils/utils.js';
import type { PolyFillAbortSignal } from './IHandler.js';
/** /**
* Invalid request limiting is done on a per-IP basis, not a per-token basis. * Invalid request limiting is done on a per-IP basis, not a per-token basis.
@@ -60,25 +60,23 @@ export async function makeNetworkRequest(
manager: RequestManager, manager: RequestManager,
routeId: RouteData, routeId: RouteData,
url: string, url: string,
options: RequestOptions, options: RequestInit,
requestData: HandlerRequestData, requestData: HandlerRequestData,
retries: number, retries: number,
) { ) {
const controller = new AbortController(); const controller = new AbortController();
const timeout = setTimeout(() => controller.abort(), manager.options.timeout).unref(); const timeout = setTimeout(() => controller.abort(), manager.options.timeout).unref();
if (requestData.signal) { if (requestData.signal) {
// The type polyfill is required because Node.js's types are incomplete.
const signal = requestData.signal as unknown as PolyFillAbortSignal;
// If the user signal was aborted, abort the controller, else abort the local signal. // If the user signal was aborted, abort the controller, else abort the local signal.
// The reason why we don't re-use the user's signal, is because users may use the same signal for multiple // The reason why we don't re-use the user's signal, is because users may use the same signal for multiple
// requests, and we do not want to cause unexpected side-effects. // requests, and we do not want to cause unexpected side-effects.
if (signal.aborted) controller.abort(); if (requestData.signal.aborted) controller.abort();
else signal.addEventListener('abort', () => controller.abort()); else requestData.signal.addEventListener('abort', () => controller.abort());
} }
let res: Dispatcher.ResponseData; let res: ResponseLike;
try { try {
res = await request(url, { ...options, signal: controller.signal }); res = await manager.options.makeRequest(url, { ...options, signal: controller.signal });
} catch (error: unknown) { } catch (error: unknown) {
if (!(error instanceof Error)) throw error; if (!(error instanceof Error)) throw error;
// Retry the specified number of times if needed // Retry the specified number of times if needed
@@ -103,7 +101,7 @@ export async function makeNetworkRequest(
data: requestData, data: requestData,
retries, retries,
}, },
{ ...res }, res instanceof Response ? res.clone() : { ...res },
); );
} }
@@ -123,13 +121,13 @@ export async function makeNetworkRequest(
*/ */
export async function handleErrors( export async function handleErrors(
manager: RequestManager, manager: RequestManager,
res: Dispatcher.ResponseData, res: ResponseLike,
method: string, method: string,
url: string, url: string,
requestData: HandlerRequestData, requestData: HandlerRequestData,
retries: number, retries: number,
) { ) {
const status = res.statusCode; const status = res.status;
if (status >= 500 && status < 600) { if (status >= 500 && status < 600) {
// Retry the specified number of times for possible server side issues // Retry the specified number of times for possible server side issues
if (retries !== manager.options.retries) { if (retries !== manager.options.retries) {

View File

@@ -1,5 +1,5 @@
import type { Dispatcher } from 'undici'; import type { RequestInit } from 'undici';
import type { RequestOptions } from '../REST.js'; import type { ResponseLike } from '../REST.js';
import type { HandlerRequestData, RouteData } from '../RequestManager.js'; import type { HandlerRequestData, RouteData } from '../RequestManager.js';
export interface IHandler { export interface IHandler {
@@ -22,13 +22,7 @@ export interface IHandler {
queueRequest( queueRequest(
routeId: RouteData, routeId: RouteData,
url: string, url: string,
options: RequestOptions, options: RequestInit,
requestData: HandlerRequestData, requestData: HandlerRequestData,
): Promise<Dispatcher.ResponseData>; ): Promise<ResponseLike>;
}
export interface PolyFillAbortSignal {
readonly aborted: boolean;
addEventListener(type: 'abort', listener: () => void): void;
removeEventListener(type: 'abort', listener: () => void): void;
} }

View File

@@ -1,8 +1,12 @@
import process from 'node:process'; import process from 'node:process';
import { lazy } from '@discordjs/util';
import { APIVersion } from 'discord-api-types/v10'; import { APIVersion } from 'discord-api-types/v10';
import { Agent } from 'undici';
import type { RESTOptions } from '../REST.js'; import type { RESTOptions } from '../REST.js';
const getUndiciRequest = lazy(async () => {
return import('../../strategies/undiciRequest.js');
});
export const DefaultUserAgent = export const DefaultUserAgent =
`DiscordBot (https://discord.js.org, [VI]{{inject}}[/VI])` as `DiscordBot (https://discord.js.org, ${string})`; `DiscordBot (https://discord.js.org, [VI]{{inject}}[/VI])` as `DiscordBot (https://discord.js.org, ${string})`;
@@ -12,13 +16,7 @@ export const DefaultUserAgent =
export const DefaultUserAgentAppendix = process.release?.name === 'node' ? `Node.js/${process.version}` : ''; export const DefaultUserAgentAppendix = process.release?.name === 'node' ? `Node.js/${process.version}` : '';
export const DefaultRestOptions = { export const DefaultRestOptions = {
get agent() { agent: null,
return new Agent({
connect: {
timeout: 30_000,
},
});
},
api: 'https://discord.com/api', api: 'https://discord.com/api',
authPrefix: 'Bot', authPrefix: 'Bot',
cdn: 'https://cdn.discordapp.com', cdn: 'https://cdn.discordapp.com',
@@ -34,6 +32,10 @@ export const DefaultRestOptions = {
hashSweepInterval: 14_400_000, // 4 Hours hashSweepInterval: 14_400_000, // 4 Hours
hashLifetime: 86_400_000, // 24 Hours hashLifetime: 86_400_000, // 24 Hours
handlerSweepInterval: 3_600_000, // 1 Hour handlerSweepInterval: 3_600_000, // 1 Hour
async makeRequest(...args) {
const strategy = await getUndiciRequest();
return strategy.makeRequest(...args);
},
} as const satisfies Required<RESTOptions>; } as const satisfies Required<RESTOptions>;
/** /**

View File

@@ -1,20 +1,9 @@
import { Blob, Buffer } from 'node:buffer';
import { URLSearchParams } from 'node:url'; import { URLSearchParams } from 'node:url';
import { types } from 'node:util';
import type { RESTPatchAPIChannelJSONBody } from 'discord-api-types/v10'; import type { RESTPatchAPIChannelJSONBody } from 'discord-api-types/v10';
import { FormData, type Dispatcher, type RequestInit } from 'undici'; import type { RateLimitData, ResponseLike } from '../REST.js';
import type { RateLimitData, RequestOptions } from '../REST.js';
import { type RequestManager, RequestMethod } from '../RequestManager.js'; import { type RequestManager, RequestMethod } from '../RequestManager.js';
import { RateLimitError } from '../errors/RateLimitError.js'; import { RateLimitError } from '../errors/RateLimitError.js';
export function parseHeader(header: string[] | string | undefined): string | undefined {
if (header === undefined || typeof header === 'string') {
return header;
}
return header.join(';');
}
function serializeSearchParam(value: unknown): string | null { function serializeSearchParam(value: unknown): string | null {
switch (typeof value) { switch (typeof value) {
case 'string': case 'string':
@@ -61,13 +50,12 @@ export function makeURLSearchParams<T extends object>(options?: Readonly<T>) {
* *
* @param res - The fetch response * @param res - The fetch response
*/ */
export async function parseResponse(res: Dispatcher.ResponseData): Promise<unknown> { export async function parseResponse(res: ResponseLike): Promise<unknown> {
const header = parseHeader(res.headers['content-type']); if (res.headers.get('Content-Type')?.startsWith('application/json')) {
if (header?.startsWith('application/json')) { return res.json();
return res.body.json();
} }
return res.body.arrayBuffer(); return res.arrayBuffer();
} }
/** /**
@@ -94,49 +82,6 @@ export function hasSublimit(bucketRoute: string, body?: unknown, method?: string
return true; return true;
} }
export async function resolveBody(body: RequestInit['body']): Promise<RequestOptions['body']> {
// eslint-disable-next-line no-eq-null, eqeqeq
if (body == null) {
return null;
} else if (typeof body === 'string') {
return body;
} else if (types.isUint8Array(body)) {
return body;
} else if (types.isArrayBuffer(body)) {
return new Uint8Array(body);
} else if (body instanceof URLSearchParams) {
return body.toString();
} else if (body instanceof DataView) {
return new Uint8Array(body.buffer);
} else if (body instanceof Blob) {
return new Uint8Array(await body.arrayBuffer());
} else if (body instanceof FormData) {
return body;
} else if ((body as Iterable<Uint8Array>)[Symbol.iterator]) {
const chunks = [...(body as Iterable<Uint8Array>)];
const length = chunks.reduce((a, b) => a + b.length, 0);
const uint8 = new Uint8Array(length);
let lengthUsed = 0;
return chunks.reduce((a, b) => {
a.set(b, lengthUsed);
lengthUsed += b.length;
return a;
}, uint8);
} else if ((body as AsyncIterable<Uint8Array>)[Symbol.asyncIterator]) {
const chunks: Uint8Array[] = [];
for await (const chunk of body as AsyncIterable<Uint8Array>) {
chunks.push(chunk);
}
return Buffer.concat(chunks);
}
throw new TypeError(`Unable to resolve body.`);
}
/** /**
* Check whether an error indicates that a retry can be attempted * Check whether an error indicates that a retry can be attempted
* *

View File

@@ -0,0 +1,70 @@
import { Buffer } from 'node:buffer';
import { URLSearchParams } from 'node:url';
import { types } from 'node:util';
import { type RequestInit, request } from 'undici';
import type { ResponseLike } from '../index.js';
export type RequestOptions = Exclude<Parameters<typeof request>[1], undefined>;
export async function makeRequest(url: string, init: RequestInit): Promise<ResponseLike> {
// The cast is necessary because `headers` and `method` are narrower types in `undici.request`
// our request path guarantees they are of acceptable type for `undici.request`
const options = {
...init,
body: await resolveBody(init.body),
} as RequestOptions;
const res = await request(url, options);
return {
body: res.body,
async arrayBuffer() {
return res.body.arrayBuffer();
},
async json() {
return res.body.json();
},
async text() {
return res.body.text();
},
get bodyUsed() {
return res.body.bodyUsed;
},
headers: new Headers(res.headers as Record<string, string[] | string>),
status: res.statusCode,
ok: res.statusCode >= 200 && res.statusCode < 300,
};
}
export async function resolveBody(body: RequestInit['body']): Promise<Exclude<RequestOptions['body'], undefined>> {
// eslint-disable-next-line no-eq-null, eqeqeq
if (body == null) {
return null;
} else if (typeof body === 'string') {
return body;
} else if (types.isUint8Array(body)) {
return body;
} else if (types.isArrayBuffer(body)) {
return new Uint8Array(body);
} else if (body instanceof URLSearchParams) {
return body.toString();
} else if (body instanceof DataView) {
return new Uint8Array(body.buffer);
} else if (body instanceof Blob) {
return new Uint8Array(await body.arrayBuffer());
} else if (body instanceof FormData) {
return body;
} else if ((body as Iterable<Uint8Array>)[Symbol.iterator]) {
const chunks = [...(body as Iterable<Uint8Array>)];
return Buffer.concat(chunks);
} else if ((body as AsyncIterable<Uint8Array>)[Symbol.asyncIterator]) {
const chunks: Uint8Array[] = [];
for await (const chunk of body as AsyncIterable<Uint8Array>) {
chunks.push(chunk);
}
return Buffer.concat(chunks);
}
throw new TypeError(`Unable to resolve body.`);
}

View File

@@ -2,5 +2,6 @@ import { esbuildPluginVersionInjector } from 'esbuild-plugin-version-injector';
import { createTsupConfig } from '../../tsup.config.js'; import { createTsupConfig } from '../../tsup.config.js';
export default createTsupConfig({ export default createTsupConfig({
entry: ['src/index.ts', 'src/strategies/*.ts'],
esbuildPlugins: [esbuildPluginVersionInjector()], esbuildPlugins: [esbuildPluginVersionInjector()],
}); });

View File

@@ -23,7 +23,7 @@
## Installation ## Installation
**Node.js 16.9.0 or newer is required.** **Node.js 18.12.0 or newer is required.**
```sh ```sh
npm install @discordjs/ws npm install @discordjs/ws

View File

@@ -74,7 +74,7 @@
"devDependencies": { "devDependencies": {
"@favware/cliff-jumper": "^2.0.0", "@favware/cliff-jumper": "^2.0.0",
"@microsoft/api-extractor": "^7.34.8", "@microsoft/api-extractor": "^7.34.8",
"@types/node": "16.18.25", "@types/node": "18.15.11",
"@vitest/coverage-c8": "^0.31.0", "@vitest/coverage-c8": "^0.31.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"esbuild-plugin-version-injector": "^1.1.0", "esbuild-plugin-version-injector": "^1.1.0",
@@ -91,7 +91,7 @@
"zlib-sync": "^0.1.8" "zlib-sync": "^0.1.8"
}, },
"engines": { "engines": {
"node": ">=16.9.0" "node": ">=18.12.0"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"

View File

@@ -13,6 +13,7 @@ export default defineConfig({
exclude: [ exclude: [
// All ts files that only contain types, due to ALL // All ts files that only contain types, due to ALL
'**/*.{interface,type,d}.ts', '**/*.{interface,type,d}.ts',
'**/{interfaces,types}/*.ts',
// All index files that *should* only contain exports from other files // All index files that *should* only contain exports from other files
'**/index.{js,ts}', '**/index.{js,ts}',
// All exports files that make subpackages available as submodules // All exports files that make subpackages available as submodules

View File

@@ -2102,7 +2102,7 @@ __metadata:
"@favware/cliff-jumper": ^2.0.0 "@favware/cliff-jumper": ^2.0.0
"@microsoft/api-extractor": ^7.34.8 "@microsoft/api-extractor": ^7.34.8
"@sapphire/snowflake": ^3.4.2 "@sapphire/snowflake": ^3.4.2
"@types/node": 16.18.25 "@types/node": 18.15.11
"@vitest/coverage-c8": ^0.31.0 "@vitest/coverage-c8": ^0.31.0
"@vladfrangu/async_event_emitter": ^2.2.1 "@vladfrangu/async_event_emitter": ^2.2.1
cross-env: ^7.0.3 cross-env: ^7.0.3
@@ -2274,7 +2274,7 @@ __metadata:
dependencies: dependencies:
"@discordjs/proxy": "workspace:^" "@discordjs/proxy": "workspace:^"
"@discordjs/rest": "workspace:^" "@discordjs/rest": "workspace:^"
"@types/node": 16.18.25 "@types/node": 18.15.11
cross-env: ^7.0.3 cross-env: ^7.0.3
eslint: ^8.39.0 eslint: ^8.39.0
eslint-config-neon: ^0.1.46 eslint-config-neon: ^0.1.46
@@ -2295,7 +2295,7 @@ __metadata:
"@discordjs/util": "workspace:^" "@discordjs/util": "workspace:^"
"@favware/cliff-jumper": ^2.0.0 "@favware/cliff-jumper": ^2.0.0
"@microsoft/api-extractor": ^7.34.8 "@microsoft/api-extractor": ^7.34.8
"@types/node": 16.18.25 "@types/node": 18.15.11
"@types/supertest": ^2.0.12 "@types/supertest": ^2.0.12
"@vitest/coverage-c8": ^0.31.0 "@vitest/coverage-c8": ^0.31.0
cross-env: ^7.0.3 cross-env: ^7.0.3
@@ -2313,7 +2313,7 @@ __metadata:
languageName: unknown languageName: unknown
linkType: soft linkType: soft
"@discordjs/rest@workspace:^, @discordjs/rest@workspace:packages/rest": "@discordjs/rest@^1.7.1, @discordjs/rest@workspace:^, @discordjs/rest@workspace:packages/rest":
version: 0.0.0-use.local version: 0.0.0-use.local
resolution: "@discordjs/rest@workspace:packages/rest" resolution: "@discordjs/rest@workspace:packages/rest"
dependencies: dependencies:
@@ -2323,7 +2323,7 @@ __metadata:
"@microsoft/api-extractor": ^7.34.8 "@microsoft/api-extractor": ^7.34.8
"@sapphire/async-queue": ^1.5.0 "@sapphire/async-queue": ^1.5.0
"@sapphire/snowflake": ^3.4.2 "@sapphire/snowflake": ^3.4.2
"@types/node": 16.18.25 "@types/node": 18.15.11
"@vitest/coverage-c8": ^0.31.0 "@vitest/coverage-c8": ^0.31.0
cross-env: ^7.0.3 cross-env: ^7.0.3
discord-api-types: ^0.37.41 discord-api-types: ^0.37.41
@@ -2533,7 +2533,7 @@ __metadata:
"@favware/cliff-jumper": ^2.0.0 "@favware/cliff-jumper": ^2.0.0
"@microsoft/api-extractor": ^7.34.8 "@microsoft/api-extractor": ^7.34.8
"@sapphire/async-queue": ^1.5.0 "@sapphire/async-queue": ^1.5.0
"@types/node": 16.18.25 "@types/node": 18.15.11
"@types/ws": ^8.5.4 "@types/ws": ^8.5.4
"@vitest/coverage-c8": ^0.31.0 "@vitest/coverage-c8": ^0.31.0
"@vladfrangu/async_event_emitter": ^2.2.1 "@vladfrangu/async_event_emitter": ^2.2.1
@@ -6657,6 +6657,13 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@types/node@npm:18.15.11":
version: 18.15.11
resolution: "@types/node@npm:18.15.11"
checksum: 977b4ad04708897ff0eb049ecf82246d210939c82461922d20f7d2dcfd81bbc661582ba3af28869210f7e8b1934529dcd46bff7d448551400f9d48b9d3bddec3
languageName: node
linkType: hard
"@types/node@npm:18.16.4, @types/node@npm:^18.0.0": "@types/node@npm:18.16.4, @types/node@npm:^18.0.0":
version: 18.16.4 version: 18.16.4
resolution: "@types/node@npm:18.16.4" resolution: "@types/node@npm:18.16.4"
@@ -11335,7 +11342,7 @@ __metadata:
"@discordjs/collection": "workspace:^" "@discordjs/collection": "workspace:^"
"@discordjs/docgen": "workspace:^" "@discordjs/docgen": "workspace:^"
"@discordjs/formatters": "workspace:^" "@discordjs/formatters": "workspace:^"
"@discordjs/rest": "workspace:^" "@discordjs/rest": ^1.7.1
"@discordjs/util": "workspace:^" "@discordjs/util": "workspace:^"
"@discordjs/ws": "workspace:^" "@discordjs/ws": "workspace:^"
"@favware/cliff-jumper": ^2.0.0 "@favware/cliff-jumper": ^2.0.0