@vercel/routing-utils 5.2.1 → 5.2.2

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
@@ -218,7 +218,7 @@ export declare const routesSchema: {
218
218
  readonly patternProperties: {
219
219
  readonly '^.{1,256}$': {
220
220
  readonly type: "string";
221
- readonly maxLength: 4096;
221
+ readonly maxLength: 32768;
222
222
  };
223
223
  };
224
224
  };
@@ -1714,7 +1714,7 @@ export declare const headersSchema: {
1714
1714
  };
1715
1715
  readonly value: {
1716
1716
  readonly type: "string";
1717
- readonly maxLength: 4096;
1717
+ readonly maxLength: 32768;
1718
1718
  };
1719
1719
  };
1720
1720
  };
package/dist/schemas.js CHANGED
@@ -380,7 +380,7 @@ const routesSchema = {
380
380
  patternProperties: {
381
381
  "^.{1,256}$": {
382
382
  type: "string",
383
- maxLength: 4096
383
+ maxLength: 32768
384
384
  }
385
385
  }
386
386
  },
@@ -577,7 +577,7 @@ const headersSchema = {
577
577
  },
578
578
  value: {
579
579
  type: "string",
580
- maxLength: 4096
580
+ maxLength: 32768
581
581
  }
582
582
  }
583
583
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/routing-utils",
3
- "version": "5.2.1",
3
+ "version": "5.2.2",
4
4
  "description": "Vercel routing utilities",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",