@vercel/build-utils 14.10.1 → 14.10.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 14.10.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 53a6086: Remove `payload` from static schedule configuration in `vercel.json`. Static schedules no longer accept or expose a payload field; use dynamic schedules for payload support.
8
+
3
9
  ## 14.10.1
4
10
 
5
11
  ### Patch Changes
package/dist/types.d.ts CHANGED
@@ -591,8 +591,6 @@ export interface Schedule {
591
591
  /** IANA timezone for cron evaluation, e.g. "America/New_York". Defaults to UTC. */
592
592
  timezone?: string;
593
593
  target: ScheduleTarget;
594
- /** Payload delivered with each firing (OPTIONAL) */
595
- payload?: unknown;
596
594
  }
597
595
  export interface ServiceQueueTopic {
598
596
  topic: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "14.10.1",
3
+ "version": "14.10.2",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",
@@ -52,8 +52,8 @@
52
52
  "vitest": "4.1.10",
53
53
  "typescript": "4.9.5",
54
54
  "yazl": "2.5.1",
55
- "@vercel/routing-utils": "6.6.0",
56
- "@vercel/error-utils": "2.2.1"
55
+ "@vercel/error-utils": "2.2.1",
56
+ "@vercel/routing-utils": "6.6.0"
57
57
  },
58
58
  "scripts": {
59
59
  "build": "node build.mjs",