@vercel/routing-utils 5.2.2 → 5.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.
- package/dist/schemas.d.ts +10 -0
- package/dist/schemas.js +10 -0
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/schemas.d.ts
CHANGED
|
@@ -801,6 +801,16 @@ export declare const routesSchema: {
|
|
|
801
801
|
};
|
|
802
802
|
}];
|
|
803
803
|
};
|
|
804
|
+
readonly env: {
|
|
805
|
+
readonly description: "An array of environment variable names that should be replaced at runtime in the args value";
|
|
806
|
+
readonly type: "array";
|
|
807
|
+
readonly minItems: 1;
|
|
808
|
+
readonly maxItems: 64;
|
|
809
|
+
readonly items: {
|
|
810
|
+
readonly type: "string";
|
|
811
|
+
readonly maxLength: 256;
|
|
812
|
+
};
|
|
813
|
+
};
|
|
804
814
|
};
|
|
805
815
|
readonly allOf: readonly [{
|
|
806
816
|
readonly if: {
|
package/dist/schemas.js
CHANGED
|
@@ -283,6 +283,16 @@ const transformsSchema = {
|
|
|
283
283
|
}
|
|
284
284
|
}
|
|
285
285
|
]
|
|
286
|
+
},
|
|
287
|
+
env: {
|
|
288
|
+
description: "An array of environment variable names that should be replaced at runtime in the args value",
|
|
289
|
+
type: "array",
|
|
290
|
+
minItems: 1,
|
|
291
|
+
maxItems: 64,
|
|
292
|
+
items: {
|
|
293
|
+
type: "string",
|
|
294
|
+
maxLength: 256
|
|
295
|
+
}
|
|
286
296
|
}
|
|
287
297
|
},
|
|
288
298
|
allOf: [
|
package/dist/types.d.ts
CHANGED