@vercel/client 17.2.16 → 17.2.17
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 +8 -0
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -120,6 +120,10 @@ export interface VercelConfig {
|
|
|
120
120
|
images?: Images;
|
|
121
121
|
crons?: Cron[];
|
|
122
122
|
bunVersion?: string;
|
|
123
|
+
customErrorPage?: string | {
|
|
124
|
+
default5xx?: string;
|
|
125
|
+
default4xx?: string;
|
|
126
|
+
};
|
|
123
127
|
}
|
|
124
128
|
export interface GitMetadata {
|
|
125
129
|
commitAuthorName?: string | undefined;
|
|
@@ -156,4 +160,8 @@ export interface DeploymentOptions {
|
|
|
156
160
|
gitMetadata?: GitMetadata;
|
|
157
161
|
autoAssignCustomDomains?: boolean;
|
|
158
162
|
customEnvironmentSlugOrId?: string;
|
|
163
|
+
customErrorPage?: string | {
|
|
164
|
+
default5xx?: string;
|
|
165
|
+
default4xx?: string;
|
|
166
|
+
};
|
|
159
167
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/client",
|
|
3
|
-
"version": "17.2.
|
|
3
|
+
"version": "17.2.17",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"homepage": "https://vercel.com",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"querystring": "^0.2.0",
|
|
43
43
|
"sleep-promise": "8.0.1",
|
|
44
44
|
"tar-fs": "1.16.3",
|
|
45
|
-
"@vercel/
|
|
45
|
+
"@vercel/error-utils": "2.0.3",
|
|
46
46
|
"@vercel/build-utils": "13.2.3",
|
|
47
|
-
"@vercel/
|
|
47
|
+
"@vercel/routing-utils": "5.3.1"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "node ../../utils/build.mjs",
|