@vercel/config 0.0.30 → 0.0.31
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/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -25,6 +25,11 @@ export interface FunctionConfig {
|
|
|
25
25
|
* This setting overrides the top-level `regions` setting for matching functions.
|
|
26
26
|
*/
|
|
27
27
|
regions?: string[];
|
|
28
|
+
/**
|
|
29
|
+
* An array of passive regions where this Serverless Function can fail over during outages.
|
|
30
|
+
* This setting overrides top-level `functionFailoverRegions` for matching functions.
|
|
31
|
+
*/
|
|
32
|
+
functionFailoverRegions?: string[];
|
|
28
33
|
/**
|
|
29
34
|
* The npm package name of a Runtime, including its version
|
|
30
35
|
*/
|
package/package.json
CHANGED