@vercel/client 17.2.26 → 17.2.28
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 +9 -1
- package/dist/utils/hashes.d.ts +0 -1
- package/package.json +5 -5
package/dist/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import type { Agent } from 'http';
|
|
3
|
-
import type { Builder, BuilderFunctions, Images, ProjectSettings, Cron } from '@vercel/build-utils';
|
|
3
|
+
import type { Builder, BuilderFunctions, Images, ProjectSettings, Cron, ExperimentalServices, ExperimentalServiceGroups } from '@vercel/build-utils';
|
|
4
4
|
import type { Header, Route, Redirect, Rewrite } from '@vercel/routing-utils';
|
|
5
5
|
export { DeploymentEventType } from './utils';
|
|
6
6
|
export interface Dictionary<T> {
|
|
@@ -124,6 +124,14 @@ export interface VercelConfig {
|
|
|
124
124
|
default5xx?: string;
|
|
125
125
|
default4xx?: string;
|
|
126
126
|
};
|
|
127
|
+
/**
|
|
128
|
+
* @experimental This feature is experimental and may change.
|
|
129
|
+
*/
|
|
130
|
+
experimentalServices?: ExperimentalServices;
|
|
131
|
+
/**
|
|
132
|
+
* @experimental This feature is experimental and may change.
|
|
133
|
+
*/
|
|
134
|
+
experimentalServiceGroups?: ExperimentalServiceGroups;
|
|
127
135
|
}
|
|
128
136
|
export interface GitMetadata {
|
|
129
137
|
commitAuthorName?: string | undefined;
|
package/dist/utils/hashes.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/client",
|
|
3
|
-
"version": "17.2.
|
|
3
|
+
"version": "17.2.28",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"homepage": "https://vercel.com",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@types/jest": "27.4.1",
|
|
23
23
|
"@types/minimatch": "3.0.5",
|
|
24
24
|
"@types/ms": "0.7.30",
|
|
25
|
-
"@types/node": "
|
|
25
|
+
"@types/node": "20.11.0",
|
|
26
26
|
"@types/node-fetch": "2.5.4",
|
|
27
27
|
"@types/recursive-readdir": "2.2.0",
|
|
28
28
|
"@types/tar-fs": "1.16.1",
|
|
@@ -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/
|
|
46
|
-
"@vercel/
|
|
47
|
-
"@vercel/
|
|
45
|
+
"@vercel/build-utils": "13.2.14",
|
|
46
|
+
"@vercel/routing-utils": "5.3.2",
|
|
47
|
+
"@vercel/error-utils": "2.0.3"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "node ../../utils/build.mjs",
|