@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 +6 -0
- package/dist/types.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
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 {
|