@vercel/client 12.3.9 → 12.4.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 +2 -1
- package/package.json +4 -4
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Builder, BuilderFunctions, Images, ProjectSettings } from '@vercel/build-utils';
|
|
1
|
+
import type { Builder, BuilderFunctions, Images, ProjectSettings, Cron } from '@vercel/build-utils';
|
|
2
2
|
import type { Header, Route, Redirect, Rewrite } from '@vercel/routing-utils';
|
|
3
3
|
export { DeploymentEventType } from './utils';
|
|
4
4
|
export interface Dictionary<T> {
|
|
@@ -110,6 +110,7 @@ export interface VercelConfig {
|
|
|
110
110
|
framework?: string | null;
|
|
111
111
|
outputDirectory?: string | null;
|
|
112
112
|
images?: Images;
|
|
113
|
+
crons?: Cron[];
|
|
113
114
|
}
|
|
114
115
|
export interface GitMetadata {
|
|
115
116
|
commitAuthorName?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/client",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.4.0",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"homepage": "https://vercel.com",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
]
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@vercel/build-utils": "6.
|
|
47
|
-
"@vercel/routing-utils": "2.1.
|
|
46
|
+
"@vercel/build-utils": "6.3.0",
|
|
47
|
+
"@vercel/routing-utils": "2.1.9",
|
|
48
48
|
"@zeit/fetch": "5.2.0",
|
|
49
49
|
"async-retry": "1.2.3",
|
|
50
50
|
"async-sema": "3.0.0",
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"sleep-promise": "8.0.1",
|
|
58
58
|
"tar-fs": "1.16.3"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "3d98d1cdea151b7125deb082c2c8469c865027d0"
|
|
61
61
|
}
|