@vercel/client 12.3.10 → 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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -1
  2. package/package.json +3 -3
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.10",
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,7 +43,7 @@
43
43
  ]
44
44
  },
45
45
  "dependencies": {
46
- "@vercel/build-utils": "6.2.4",
46
+ "@vercel/build-utils": "6.3.0",
47
47
  "@vercel/routing-utils": "2.1.9",
48
48
  "@zeit/fetch": "5.2.0",
49
49
  "async-retry": "1.2.3",
@@ -57,5 +57,5 @@
57
57
  "sleep-promise": "8.0.1",
58
58
  "tar-fs": "1.16.3"
59
59
  },
60
- "gitHead": "9308a0fda5e14ee8a07b9a3506e4480f5f67d212"
60
+ "gitHead": "3d98d1cdea151b7125deb082c2c8469c865027d0"
61
61
  }