@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.
Files changed (2) hide show
  1. package/dist/types.d.ts +5 -0
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/config",
3
- "version": "0.0.30",
3
+ "version": "0.0.31",
4
4
  "description": "A TypeScript SDK for programmatically configuring Vercel projects",
5
5
  "license": "MIT",
6
6
  "homepage": "https://vercel.com/docs/projects/project-configuration",