@vercel/client 18.2.22 → 18.3.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 +2 -2
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { Builder, BuilderFunctions, Images, ProjectSettings, Cron, ExperimentalServices, ExperimentalServiceGroups, ExperimentalServicesV2, Services } from '@vercel/build-utils';
1
+ import type { Builder, BuilderFunctions, Images, ProjectSettings, Cron, Schedule, ExperimentalServices, ExperimentalServiceGroups, ExperimentalServicesV2, Services } from '@vercel/build-utils';
2
2
  import type { Header, Route, Redirect, Rewrite } from '@vercel/routing-utils';
3
3
  export { DeploymentEventType } from './utils';
4
4
  /**
@@ -165,6 +165,7 @@ export interface VercelConfig {
165
165
  outputDirectory?: string | null;
166
166
  images?: Images;
167
167
  crons?: Cron[];
168
+ schedules?: Schedule[];
168
169
  bunVersion?: string;
169
170
  proxy?: ProxyConfig;
170
171
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/client",
3
- "version": "18.2.22",
3
+ "version": "18.3.0",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "homepage": "https://vercel.com",
@@ -37,7 +37,7 @@
37
37
  "querystring": "^0.2.0",
38
38
  "sleep-promise": "8.0.1",
39
39
  "tar-fs": "1.16.3",
40
- "@vercel/build-utils": "14.7.0",
40
+ "@vercel/build-utils": "14.8.0",
41
41
  "@vercel/error-utils": "2.2.1",
42
42
  "@vercel/routing-utils": "6.5.0"
43
43
  },