@vercel/client 17.5.7 → 17.5.9
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 -2
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Agent } from 'http';
|
|
2
|
-
import type { Builder, BuilderFunctions, Images, ProjectSettings, Cron,
|
|
2
|
+
import type { Builder, BuilderFunctions, Images, ProjectSettings, Cron, ExperimentalServices, ExperimentalServiceGroups, ExperimentalServicesV2 } from '@vercel/build-utils';
|
|
3
3
|
import type { Header, Route, Redirect, Rewrite } from '@vercel/routing-utils';
|
|
4
4
|
export { DeploymentEventType } from './utils';
|
|
5
5
|
export interface Dictionary<T> {
|
|
@@ -139,7 +139,6 @@ export interface VercelConfig {
|
|
|
139
139
|
* This file will be included in prebuilt deployments.
|
|
140
140
|
*/
|
|
141
141
|
bulkRedirectsPath?: string | null;
|
|
142
|
-
services?: Services;
|
|
143
142
|
/**
|
|
144
143
|
* @experimental This feature is experimental and may change.
|
|
145
144
|
*/
|
|
@@ -148,6 +147,10 @@ export interface VercelConfig {
|
|
|
148
147
|
* @experimental This feature is experimental and may change.
|
|
149
148
|
*/
|
|
150
149
|
experimentalServiceGroups?: ExperimentalServiceGroups;
|
|
150
|
+
/**
|
|
151
|
+
* @experimental This feature is experimental and may change.
|
|
152
|
+
*/
|
|
153
|
+
experimentalServicesV2?: ExperimentalServicesV2;
|
|
151
154
|
}
|
|
152
155
|
export interface GitMetadata {
|
|
153
156
|
commitAuthorName?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/client",
|
|
3
|
-
"version": "17.5.
|
|
3
|
+
"version": "17.5.9",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"homepage": "https://vercel.com",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
"querystring": "^0.2.0",
|
|
40
40
|
"sleep-promise": "8.0.1",
|
|
41
41
|
"tar-fs": "1.16.3",
|
|
42
|
-
"@vercel/build-utils": "13.
|
|
42
|
+
"@vercel/build-utils": "13.27.0",
|
|
43
43
|
"@vercel/routing-utils": "6.2.0",
|
|
44
|
-
"@vercel/error-utils": "2.
|
|
44
|
+
"@vercel/error-utils": "2.2.0"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "node ../../utils/build.mjs",
|