@vercel/client 18.1.1 → 18.2.1
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/dist/types.d.ts +5 -0
- package/package.json +4 -4
package/dist/types.d.ts
CHANGED
|
@@ -12,6 +12,10 @@ export interface FetchDispatcher {
|
|
|
12
12
|
export interface Dictionary<T> {
|
|
13
13
|
[key: string]: T;
|
|
14
14
|
}
|
|
15
|
+
export interface ProxyConfig {
|
|
16
|
+
entrypoint: string;
|
|
17
|
+
matcher?: string | string[];
|
|
18
|
+
}
|
|
15
19
|
export declare const VALID_ARCHIVE_FORMATS: readonly ["tgz"];
|
|
16
20
|
export type ArchiveFormat = (typeof VALID_ARCHIVE_FORMATS)[number];
|
|
17
21
|
export interface DeploymentAliasError {
|
|
@@ -162,6 +166,7 @@ export interface VercelConfig {
|
|
|
162
166
|
images?: Images;
|
|
163
167
|
crons?: Cron[];
|
|
164
168
|
bunVersion?: string;
|
|
169
|
+
proxy?: ProxyConfig;
|
|
165
170
|
/**
|
|
166
171
|
* Path to a file containing bulk redirects (relative to the project root).
|
|
167
172
|
* This file will be included in prebuilt deployments.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/client",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.2.1",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"homepage": "https://vercel.com",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"querystring": "^0.2.0",
|
|
38
38
|
"sleep-promise": "8.0.1",
|
|
39
39
|
"tar-fs": "1.16.3",
|
|
40
|
-
"@vercel/
|
|
41
|
-
"@vercel/
|
|
42
|
-
"@vercel/
|
|
40
|
+
"@vercel/error-utils": "2.2.0",
|
|
41
|
+
"@vercel/build-utils": "13.36.1",
|
|
42
|
+
"@vercel/routing-utils": "6.4.0"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "node ../../utils/build.mjs",
|