This commit is contained in:
Martin Aeschlimann 2023-01-23 18:24:50 +01:00 коммит произвёл GitHub
Родитель 9a8d5a8d9d
Коммит 1676d104a6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3585 добавлений и 119 удалений

4
api.d.ts поставляемый
Просмотреть файл

@ -66,9 +66,9 @@ export interface Disposable {
readonly onCancellationRequested: Event<any>;
}
export type HttpProxyAgent = import('http-proxy-agent').HttpProxyAgent;
export type HttpProxyAgent = any;
export type HttpsProxyAgent = import('https-proxy-agent').HttpsProxyAgent;
export type HttpsProxyAgent = any;
export type Headers = { [header: string]: string | string[] | undefined };

3686
package-lock.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "request-light",
"version": "0.6.0",
"version": "0.7.0",
"description": "Lightweight request library. Promise based, with proxy support.",
"main": "./lib/node/main.js",
"browser": {
@ -20,14 +20,14 @@
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.1",
"vscode-nls": "^5.2.0",
"typescript": "^4.8.4",
"typescript": "^4.9.4",
"@types/node": "16.x",
"vscode-jsonrpc": "^5.0.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.4.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"ava": "^5.0.1",
"rimraf": "^4.1.1",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"ava": "^5.1.1",
"proxy": "^1.0.2"
},
"scripts": {