@vercel/client 17.5.18 → 17.6.0
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 +6 -2
- package/package.json +2 -2
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, ExperimentalServices, ExperimentalServiceGroups, ExperimentalServicesV2 } from '@vercel/build-utils';
|
|
2
|
+
import type { Builder, BuilderFunctions, Images, ProjectSettings, Cron, ExperimentalServices, ExperimentalServiceGroups, ExperimentalServicesV2, Services } 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> {
|
|
@@ -147,7 +147,11 @@ export interface VercelConfig {
|
|
|
147
147
|
*/
|
|
148
148
|
experimentalServiceGroups?: ExperimentalServiceGroups;
|
|
149
149
|
/**
|
|
150
|
-
*
|
|
150
|
+
* Configures multiple services in this project.
|
|
151
|
+
*/
|
|
152
|
+
services?: Services;
|
|
153
|
+
/**
|
|
154
|
+
* @deprecated Use `services` instead.
|
|
151
155
|
*/
|
|
152
156
|
experimentalServicesV2?: ExperimentalServicesV2;
|
|
153
157
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/client",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.6.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"homepage": "https://vercel.com",
|
|
@@ -39,8 +39,8 @@
|
|
|
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.32.0",
|
|
42
43
|
"@vercel/error-utils": "2.2.0",
|
|
43
|
-
"@vercel/build-utils": "13.31.1",
|
|
44
44
|
"@vercel/routing-utils": "6.3.1"
|
|
45
45
|
},
|
|
46
46
|
"scripts": {
|