@vercel/build-utils 7.2.0 → 7.2.1

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
+ ## 7.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Internal variants ([#10549](https://github.com/vercel/vercel/pull/10549))
8
+
3
9
  ## 7.2.0
4
10
 
5
11
  ### Minor Changes
package/dist/types.d.ts CHANGED
@@ -380,6 +380,11 @@ export interface Cron {
380
380
  path: string;
381
381
  schedule: string;
382
382
  }
383
+ export interface Flag {
384
+ key: string;
385
+ defaultValue?: unknown;
386
+ metadata: Record<string, unknown>;
387
+ }
383
388
  /** The framework which created the function */
384
389
  export interface FunctionFramework {
385
390
  slug: string;
@@ -402,6 +407,7 @@ export interface BuildResultV2Typical {
402
407
  framework?: {
403
408
  version: string;
404
409
  };
410
+ flags?: Flag[];
405
411
  }
406
412
  export type BuildResultV2 = BuildResultV2Typical | BuildResultBuildOutput;
407
413
  export interface BuildResultV3 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "7.2.0",
3
+ "version": "7.2.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",