@vercel/routing-utils 2.1.10 → 2.2.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 CHANGED
@@ -107,6 +107,9 @@ export declare const routesSchema: {
107
107
  readonly check: {
108
108
  readonly type: "boolean";
109
109
  };
110
+ readonly isInternal: {
111
+ readonly type: "boolean";
112
+ };
110
113
  readonly status: {
111
114
  readonly type: "integer";
112
115
  readonly minimum: 100;
package/dist/schemas.js CHANGED
@@ -111,6 +111,9 @@ exports.routesSchema = {
111
111
  check: {
112
112
  type: 'boolean',
113
113
  },
114
+ isInternal: {
115
+ type: 'boolean',
116
+ },
114
117
  status: {
115
118
  type: 'integer',
116
119
  minimum: 100,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/routing-utils",
3
- "version": "2.1.10",
3
+ "version": "2.2.0",
4
4
  "description": "Vercel routing utilities",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "url": "https://github.com/vercel/vercel.git",
13
13
  "directory": "packages/routing-utils"
14
14
  },
15
- "license": "MIT",
15
+ "license": "Apache-2.0",
16
16
  "scripts": {
17
17
  "build": "tsc",
18
18
  "test": "jest --env node --verbose --runInBand --bail",
@@ -30,5 +30,5 @@
30
30
  "optionalDependencies": {
31
31
  "ajv": "^6.0.0"
32
32
  },
33
- "gitHead": "e0f8bc98202146eda0f2b85efac74b803654e786"
33
+ "gitHead": "925c8ba18ceec80174d9440cd2cad0e725ed4f56"
34
34
  }