@vercel/routing-utils 6.1.0 → 6.1.1
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 +1 -1
- package/dist/schemas.js +1 -1
- package/package.json +1 -1
package/dist/schemas.d.ts
CHANGED
|
@@ -1345,7 +1345,7 @@ export declare const redirectsSchema: {
|
|
|
1345
1345
|
readonly required: readonly ["source", "destination"];
|
|
1346
1346
|
readonly properties: {
|
|
1347
1347
|
readonly source: {
|
|
1348
|
-
readonly description: "A pattern that matches each incoming pathname (excluding querystring).";
|
|
1348
|
+
readonly description: "A pattern that matches each incoming pathname (excluding querystring) or a full URL including domain.";
|
|
1349
1349
|
readonly type: "string";
|
|
1350
1350
|
readonly maxLength: 4096;
|
|
1351
1351
|
};
|
package/dist/schemas.js
CHANGED
|
@@ -578,7 +578,7 @@ const redirectsSchema = {
|
|
|
578
578
|
required: ["source", "destination"],
|
|
579
579
|
properties: {
|
|
580
580
|
source: {
|
|
581
|
-
description: "A pattern that matches each incoming pathname (excluding querystring).",
|
|
581
|
+
description: "A pattern that matches each incoming pathname (excluding querystring) or a full URL including domain.",
|
|
582
582
|
type: "string",
|
|
583
583
|
maxLength: 4096
|
|
584
584
|
},
|