@vercel/routing-utils 5.0.6 → 5.0.8
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 +1406 -1326
- package/dist/schemas.js +191 -1
- package/dist/types.d.ts +20 -0
- package/package.json +1 -1
package/dist/schemas.d.ts
CHANGED
|
@@ -14,85 +14,80 @@ export declare const hasSchema: {
|
|
|
14
14
|
readonly enum: readonly ["host"];
|
|
15
15
|
};
|
|
16
16
|
readonly value: {
|
|
17
|
-
description: string;
|
|
18
|
-
anyOf:
|
|
19
|
-
description:
|
|
20
|
-
type: string;
|
|
21
|
-
maxLength:
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
type:
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
type: string;
|
|
49
|
-
items: {
|
|
50
|
-
type: string;
|
|
51
|
-
maxLength: number;
|
|
17
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
18
|
+
readonly anyOf: readonly [{
|
|
19
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
20
|
+
readonly type: "string";
|
|
21
|
+
readonly maxLength: 4096;
|
|
22
|
+
}, {
|
|
23
|
+
readonly description: "A condition operation object";
|
|
24
|
+
readonly type: "object";
|
|
25
|
+
readonly additionalProperties: false;
|
|
26
|
+
readonly minProperties: 1;
|
|
27
|
+
readonly properties: {
|
|
28
|
+
readonly eq: {
|
|
29
|
+
readonly description: "Equal to";
|
|
30
|
+
readonly anyOf: readonly [{
|
|
31
|
+
readonly type: "string";
|
|
32
|
+
readonly maxLength: 4096;
|
|
33
|
+
}, {
|
|
34
|
+
readonly type: "number";
|
|
35
|
+
}];
|
|
36
|
+
};
|
|
37
|
+
readonly neq: {
|
|
38
|
+
readonly description: "Not equal";
|
|
39
|
+
readonly type: "string";
|
|
40
|
+
readonly maxLength: 4096;
|
|
41
|
+
};
|
|
42
|
+
readonly inc: {
|
|
43
|
+
readonly description: "In array";
|
|
44
|
+
readonly type: "array";
|
|
45
|
+
readonly items: {
|
|
46
|
+
readonly type: "string";
|
|
47
|
+
readonly maxLength: 4096;
|
|
52
48
|
};
|
|
53
49
|
};
|
|
54
|
-
ninc: {
|
|
55
|
-
description:
|
|
56
|
-
type:
|
|
57
|
-
items: {
|
|
58
|
-
type: string;
|
|
59
|
-
maxLength:
|
|
50
|
+
readonly ninc: {
|
|
51
|
+
readonly description: "Not in array";
|
|
52
|
+
readonly type: "array";
|
|
53
|
+
readonly items: {
|
|
54
|
+
readonly type: "string";
|
|
55
|
+
readonly maxLength: 4096;
|
|
60
56
|
};
|
|
61
57
|
};
|
|
62
|
-
pre: {
|
|
63
|
-
description:
|
|
64
|
-
type: string;
|
|
65
|
-
maxLength:
|
|
58
|
+
readonly pre: {
|
|
59
|
+
readonly description: "Starts with";
|
|
60
|
+
readonly type: "string";
|
|
61
|
+
readonly maxLength: 4096;
|
|
66
62
|
};
|
|
67
|
-
suf: {
|
|
68
|
-
description:
|
|
69
|
-
type: string;
|
|
70
|
-
maxLength:
|
|
63
|
+
readonly suf: {
|
|
64
|
+
readonly description: "Ends with";
|
|
65
|
+
readonly type: "string";
|
|
66
|
+
readonly maxLength: 4096;
|
|
71
67
|
};
|
|
72
|
-
re: {
|
|
73
|
-
description:
|
|
74
|
-
type: string;
|
|
75
|
-
maxLength:
|
|
68
|
+
readonly re: {
|
|
69
|
+
readonly description: "Regex";
|
|
70
|
+
readonly type: "string";
|
|
71
|
+
readonly maxLength: 4096;
|
|
76
72
|
};
|
|
77
|
-
gt: {
|
|
78
|
-
description:
|
|
79
|
-
type:
|
|
73
|
+
readonly gt: {
|
|
74
|
+
readonly description: "Greater than";
|
|
75
|
+
readonly type: "number";
|
|
80
76
|
};
|
|
81
|
-
gte: {
|
|
82
|
-
description:
|
|
83
|
-
type:
|
|
77
|
+
readonly gte: {
|
|
78
|
+
readonly description: "Greater than or equal to";
|
|
79
|
+
readonly type: "number";
|
|
84
80
|
};
|
|
85
|
-
lt: {
|
|
86
|
-
description:
|
|
87
|
-
type:
|
|
81
|
+
readonly lt: {
|
|
82
|
+
readonly description: "Less than";
|
|
83
|
+
readonly type: "number";
|
|
88
84
|
};
|
|
89
|
-
lte: {
|
|
90
|
-
description:
|
|
91
|
-
type:
|
|
85
|
+
readonly lte: {
|
|
86
|
+
readonly description: "Less than or equal to";
|
|
87
|
+
readonly type: "number";
|
|
92
88
|
};
|
|
93
89
|
};
|
|
94
|
-
|
|
95
|
-
})[];
|
|
90
|
+
}];
|
|
96
91
|
};
|
|
97
92
|
};
|
|
98
93
|
}, {
|
|
@@ -111,85 +106,80 @@ export declare const hasSchema: {
|
|
|
111
106
|
readonly maxLength: 4096;
|
|
112
107
|
};
|
|
113
108
|
readonly value: {
|
|
114
|
-
description: string;
|
|
115
|
-
anyOf:
|
|
116
|
-
description:
|
|
117
|
-
type: string;
|
|
118
|
-
maxLength:
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
type:
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
type: string;
|
|
146
|
-
items: {
|
|
147
|
-
type: string;
|
|
148
|
-
maxLength: number;
|
|
109
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
110
|
+
readonly anyOf: readonly [{
|
|
111
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
112
|
+
readonly type: "string";
|
|
113
|
+
readonly maxLength: 4096;
|
|
114
|
+
}, {
|
|
115
|
+
readonly description: "A condition operation object";
|
|
116
|
+
readonly type: "object";
|
|
117
|
+
readonly additionalProperties: false;
|
|
118
|
+
readonly minProperties: 1;
|
|
119
|
+
readonly properties: {
|
|
120
|
+
readonly eq: {
|
|
121
|
+
readonly description: "Equal to";
|
|
122
|
+
readonly anyOf: readonly [{
|
|
123
|
+
readonly type: "string";
|
|
124
|
+
readonly maxLength: 4096;
|
|
125
|
+
}, {
|
|
126
|
+
readonly type: "number";
|
|
127
|
+
}];
|
|
128
|
+
};
|
|
129
|
+
readonly neq: {
|
|
130
|
+
readonly description: "Not equal";
|
|
131
|
+
readonly type: "string";
|
|
132
|
+
readonly maxLength: 4096;
|
|
133
|
+
};
|
|
134
|
+
readonly inc: {
|
|
135
|
+
readonly description: "In array";
|
|
136
|
+
readonly type: "array";
|
|
137
|
+
readonly items: {
|
|
138
|
+
readonly type: "string";
|
|
139
|
+
readonly maxLength: 4096;
|
|
149
140
|
};
|
|
150
141
|
};
|
|
151
|
-
ninc: {
|
|
152
|
-
description:
|
|
153
|
-
type:
|
|
154
|
-
items: {
|
|
155
|
-
type: string;
|
|
156
|
-
maxLength:
|
|
142
|
+
readonly ninc: {
|
|
143
|
+
readonly description: "Not in array";
|
|
144
|
+
readonly type: "array";
|
|
145
|
+
readonly items: {
|
|
146
|
+
readonly type: "string";
|
|
147
|
+
readonly maxLength: 4096;
|
|
157
148
|
};
|
|
158
149
|
};
|
|
159
|
-
pre: {
|
|
160
|
-
description:
|
|
161
|
-
type: string;
|
|
162
|
-
maxLength:
|
|
150
|
+
readonly pre: {
|
|
151
|
+
readonly description: "Starts with";
|
|
152
|
+
readonly type: "string";
|
|
153
|
+
readonly maxLength: 4096;
|
|
163
154
|
};
|
|
164
|
-
suf: {
|
|
165
|
-
description:
|
|
166
|
-
type: string;
|
|
167
|
-
maxLength:
|
|
155
|
+
readonly suf: {
|
|
156
|
+
readonly description: "Ends with";
|
|
157
|
+
readonly type: "string";
|
|
158
|
+
readonly maxLength: 4096;
|
|
168
159
|
};
|
|
169
|
-
re: {
|
|
170
|
-
description:
|
|
171
|
-
type: string;
|
|
172
|
-
maxLength:
|
|
160
|
+
readonly re: {
|
|
161
|
+
readonly description: "Regex";
|
|
162
|
+
readonly type: "string";
|
|
163
|
+
readonly maxLength: 4096;
|
|
173
164
|
};
|
|
174
|
-
gt: {
|
|
175
|
-
description:
|
|
176
|
-
type:
|
|
165
|
+
readonly gt: {
|
|
166
|
+
readonly description: "Greater than";
|
|
167
|
+
readonly type: "number";
|
|
177
168
|
};
|
|
178
|
-
gte: {
|
|
179
|
-
description:
|
|
180
|
-
type:
|
|
169
|
+
readonly gte: {
|
|
170
|
+
readonly description: "Greater than or equal to";
|
|
171
|
+
readonly type: "number";
|
|
181
172
|
};
|
|
182
|
-
lt: {
|
|
183
|
-
description:
|
|
184
|
-
type:
|
|
173
|
+
readonly lt: {
|
|
174
|
+
readonly description: "Less than";
|
|
175
|
+
readonly type: "number";
|
|
185
176
|
};
|
|
186
|
-
lte: {
|
|
187
|
-
description:
|
|
188
|
-
type:
|
|
177
|
+
readonly lte: {
|
|
178
|
+
readonly description: "Less than or equal to";
|
|
179
|
+
readonly type: "number";
|
|
189
180
|
};
|
|
190
181
|
};
|
|
191
|
-
|
|
192
|
-
})[];
|
|
182
|
+
}];
|
|
193
183
|
};
|
|
194
184
|
};
|
|
195
185
|
}];
|
|
@@ -330,85 +320,80 @@ export declare const routesSchema: {
|
|
|
330
320
|
readonly enum: readonly ["host"];
|
|
331
321
|
};
|
|
332
322
|
readonly value: {
|
|
333
|
-
description: string;
|
|
334
|
-
anyOf:
|
|
335
|
-
description:
|
|
336
|
-
type: string;
|
|
337
|
-
maxLength:
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
type:
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
type: string;
|
|
365
|
-
items: {
|
|
366
|
-
type: string;
|
|
367
|
-
maxLength: number;
|
|
323
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
324
|
+
readonly anyOf: readonly [{
|
|
325
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
326
|
+
readonly type: "string";
|
|
327
|
+
readonly maxLength: 4096;
|
|
328
|
+
}, {
|
|
329
|
+
readonly description: "A condition operation object";
|
|
330
|
+
readonly type: "object";
|
|
331
|
+
readonly additionalProperties: false;
|
|
332
|
+
readonly minProperties: 1;
|
|
333
|
+
readonly properties: {
|
|
334
|
+
readonly eq: {
|
|
335
|
+
readonly description: "Equal to";
|
|
336
|
+
readonly anyOf: readonly [{
|
|
337
|
+
readonly type: "string";
|
|
338
|
+
readonly maxLength: 4096;
|
|
339
|
+
}, {
|
|
340
|
+
readonly type: "number";
|
|
341
|
+
}];
|
|
342
|
+
};
|
|
343
|
+
readonly neq: {
|
|
344
|
+
readonly description: "Not equal";
|
|
345
|
+
readonly type: "string";
|
|
346
|
+
readonly maxLength: 4096;
|
|
347
|
+
};
|
|
348
|
+
readonly inc: {
|
|
349
|
+
readonly description: "In array";
|
|
350
|
+
readonly type: "array";
|
|
351
|
+
readonly items: {
|
|
352
|
+
readonly type: "string";
|
|
353
|
+
readonly maxLength: 4096;
|
|
368
354
|
};
|
|
369
355
|
};
|
|
370
|
-
ninc: {
|
|
371
|
-
description:
|
|
372
|
-
type:
|
|
373
|
-
items: {
|
|
374
|
-
type: string;
|
|
375
|
-
maxLength:
|
|
356
|
+
readonly ninc: {
|
|
357
|
+
readonly description: "Not in array";
|
|
358
|
+
readonly type: "array";
|
|
359
|
+
readonly items: {
|
|
360
|
+
readonly type: "string";
|
|
361
|
+
readonly maxLength: 4096;
|
|
376
362
|
};
|
|
377
363
|
};
|
|
378
|
-
pre: {
|
|
379
|
-
description:
|
|
380
|
-
type: string;
|
|
381
|
-
maxLength:
|
|
364
|
+
readonly pre: {
|
|
365
|
+
readonly description: "Starts with";
|
|
366
|
+
readonly type: "string";
|
|
367
|
+
readonly maxLength: 4096;
|
|
382
368
|
};
|
|
383
|
-
suf: {
|
|
384
|
-
description:
|
|
385
|
-
type: string;
|
|
386
|
-
maxLength:
|
|
369
|
+
readonly suf: {
|
|
370
|
+
readonly description: "Ends with";
|
|
371
|
+
readonly type: "string";
|
|
372
|
+
readonly maxLength: 4096;
|
|
387
373
|
};
|
|
388
|
-
re: {
|
|
389
|
-
description:
|
|
390
|
-
type: string;
|
|
391
|
-
maxLength:
|
|
374
|
+
readonly re: {
|
|
375
|
+
readonly description: "Regex";
|
|
376
|
+
readonly type: "string";
|
|
377
|
+
readonly maxLength: 4096;
|
|
392
378
|
};
|
|
393
|
-
gt: {
|
|
394
|
-
description:
|
|
395
|
-
type:
|
|
379
|
+
readonly gt: {
|
|
380
|
+
readonly description: "Greater than";
|
|
381
|
+
readonly type: "number";
|
|
396
382
|
};
|
|
397
|
-
gte: {
|
|
398
|
-
description:
|
|
399
|
-
type:
|
|
383
|
+
readonly gte: {
|
|
384
|
+
readonly description: "Greater than or equal to";
|
|
385
|
+
readonly type: "number";
|
|
400
386
|
};
|
|
401
|
-
lt: {
|
|
402
|
-
description:
|
|
403
|
-
type:
|
|
387
|
+
readonly lt: {
|
|
388
|
+
readonly description: "Less than";
|
|
389
|
+
readonly type: "number";
|
|
404
390
|
};
|
|
405
|
-
lte: {
|
|
406
|
-
description:
|
|
407
|
-
type:
|
|
391
|
+
readonly lte: {
|
|
392
|
+
readonly description: "Less than or equal to";
|
|
393
|
+
readonly type: "number";
|
|
408
394
|
};
|
|
409
395
|
};
|
|
410
|
-
|
|
411
|
-
})[];
|
|
396
|
+
}];
|
|
412
397
|
};
|
|
413
398
|
};
|
|
414
399
|
}, {
|
|
@@ -427,85 +412,80 @@ export declare const routesSchema: {
|
|
|
427
412
|
readonly maxLength: 4096;
|
|
428
413
|
};
|
|
429
414
|
readonly value: {
|
|
430
|
-
description: string;
|
|
431
|
-
anyOf:
|
|
432
|
-
description:
|
|
433
|
-
type: string;
|
|
434
|
-
maxLength:
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
type:
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
type: string;
|
|
462
|
-
items: {
|
|
463
|
-
type: string;
|
|
464
|
-
maxLength: number;
|
|
415
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
416
|
+
readonly anyOf: readonly [{
|
|
417
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
418
|
+
readonly type: "string";
|
|
419
|
+
readonly maxLength: 4096;
|
|
420
|
+
}, {
|
|
421
|
+
readonly description: "A condition operation object";
|
|
422
|
+
readonly type: "object";
|
|
423
|
+
readonly additionalProperties: false;
|
|
424
|
+
readonly minProperties: 1;
|
|
425
|
+
readonly properties: {
|
|
426
|
+
readonly eq: {
|
|
427
|
+
readonly description: "Equal to";
|
|
428
|
+
readonly anyOf: readonly [{
|
|
429
|
+
readonly type: "string";
|
|
430
|
+
readonly maxLength: 4096;
|
|
431
|
+
}, {
|
|
432
|
+
readonly type: "number";
|
|
433
|
+
}];
|
|
434
|
+
};
|
|
435
|
+
readonly neq: {
|
|
436
|
+
readonly description: "Not equal";
|
|
437
|
+
readonly type: "string";
|
|
438
|
+
readonly maxLength: 4096;
|
|
439
|
+
};
|
|
440
|
+
readonly inc: {
|
|
441
|
+
readonly description: "In array";
|
|
442
|
+
readonly type: "array";
|
|
443
|
+
readonly items: {
|
|
444
|
+
readonly type: "string";
|
|
445
|
+
readonly maxLength: 4096;
|
|
465
446
|
};
|
|
466
447
|
};
|
|
467
|
-
ninc: {
|
|
468
|
-
description:
|
|
469
|
-
type:
|
|
470
|
-
items: {
|
|
471
|
-
type: string;
|
|
472
|
-
maxLength:
|
|
448
|
+
readonly ninc: {
|
|
449
|
+
readonly description: "Not in array";
|
|
450
|
+
readonly type: "array";
|
|
451
|
+
readonly items: {
|
|
452
|
+
readonly type: "string";
|
|
453
|
+
readonly maxLength: 4096;
|
|
473
454
|
};
|
|
474
455
|
};
|
|
475
|
-
pre: {
|
|
476
|
-
description:
|
|
477
|
-
type: string;
|
|
478
|
-
maxLength:
|
|
456
|
+
readonly pre: {
|
|
457
|
+
readonly description: "Starts with";
|
|
458
|
+
readonly type: "string";
|
|
459
|
+
readonly maxLength: 4096;
|
|
479
460
|
};
|
|
480
|
-
suf: {
|
|
481
|
-
description:
|
|
482
|
-
type: string;
|
|
483
|
-
maxLength:
|
|
461
|
+
readonly suf: {
|
|
462
|
+
readonly description: "Ends with";
|
|
463
|
+
readonly type: "string";
|
|
464
|
+
readonly maxLength: 4096;
|
|
484
465
|
};
|
|
485
|
-
re: {
|
|
486
|
-
description:
|
|
487
|
-
type: string;
|
|
488
|
-
maxLength:
|
|
466
|
+
readonly re: {
|
|
467
|
+
readonly description: "Regex";
|
|
468
|
+
readonly type: "string";
|
|
469
|
+
readonly maxLength: 4096;
|
|
489
470
|
};
|
|
490
|
-
gt: {
|
|
491
|
-
description:
|
|
492
|
-
type:
|
|
471
|
+
readonly gt: {
|
|
472
|
+
readonly description: "Greater than";
|
|
473
|
+
readonly type: "number";
|
|
493
474
|
};
|
|
494
|
-
gte: {
|
|
495
|
-
description:
|
|
496
|
-
type:
|
|
475
|
+
readonly gte: {
|
|
476
|
+
readonly description: "Greater than or equal to";
|
|
477
|
+
readonly type: "number";
|
|
497
478
|
};
|
|
498
|
-
lt: {
|
|
499
|
-
description:
|
|
500
|
-
type:
|
|
479
|
+
readonly lt: {
|
|
480
|
+
readonly description: "Less than";
|
|
481
|
+
readonly type: "number";
|
|
501
482
|
};
|
|
502
|
-
lte: {
|
|
503
|
-
description:
|
|
504
|
-
type:
|
|
483
|
+
readonly lte: {
|
|
484
|
+
readonly description: "Less than or equal to";
|
|
485
|
+
readonly type: "number";
|
|
505
486
|
};
|
|
506
487
|
};
|
|
507
|
-
|
|
508
|
-
})[];
|
|
488
|
+
}];
|
|
509
489
|
};
|
|
510
490
|
};
|
|
511
491
|
}];
|
|
@@ -527,85 +507,80 @@ export declare const routesSchema: {
|
|
|
527
507
|
readonly enum: readonly ["host"];
|
|
528
508
|
};
|
|
529
509
|
readonly value: {
|
|
530
|
-
description: string;
|
|
531
|
-
anyOf:
|
|
532
|
-
description:
|
|
533
|
-
type: string;
|
|
534
|
-
maxLength:
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
type:
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
type: string;
|
|
562
|
-
items: {
|
|
563
|
-
type: string;
|
|
564
|
-
maxLength: number;
|
|
510
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
511
|
+
readonly anyOf: readonly [{
|
|
512
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
513
|
+
readonly type: "string";
|
|
514
|
+
readonly maxLength: 4096;
|
|
515
|
+
}, {
|
|
516
|
+
readonly description: "A condition operation object";
|
|
517
|
+
readonly type: "object";
|
|
518
|
+
readonly additionalProperties: false;
|
|
519
|
+
readonly minProperties: 1;
|
|
520
|
+
readonly properties: {
|
|
521
|
+
readonly eq: {
|
|
522
|
+
readonly description: "Equal to";
|
|
523
|
+
readonly anyOf: readonly [{
|
|
524
|
+
readonly type: "string";
|
|
525
|
+
readonly maxLength: 4096;
|
|
526
|
+
}, {
|
|
527
|
+
readonly type: "number";
|
|
528
|
+
}];
|
|
529
|
+
};
|
|
530
|
+
readonly neq: {
|
|
531
|
+
readonly description: "Not equal";
|
|
532
|
+
readonly type: "string";
|
|
533
|
+
readonly maxLength: 4096;
|
|
534
|
+
};
|
|
535
|
+
readonly inc: {
|
|
536
|
+
readonly description: "In array";
|
|
537
|
+
readonly type: "array";
|
|
538
|
+
readonly items: {
|
|
539
|
+
readonly type: "string";
|
|
540
|
+
readonly maxLength: 4096;
|
|
565
541
|
};
|
|
566
542
|
};
|
|
567
|
-
ninc: {
|
|
568
|
-
description:
|
|
569
|
-
type:
|
|
570
|
-
items: {
|
|
571
|
-
type: string;
|
|
572
|
-
maxLength:
|
|
543
|
+
readonly ninc: {
|
|
544
|
+
readonly description: "Not in array";
|
|
545
|
+
readonly type: "array";
|
|
546
|
+
readonly items: {
|
|
547
|
+
readonly type: "string";
|
|
548
|
+
readonly maxLength: 4096;
|
|
573
549
|
};
|
|
574
550
|
};
|
|
575
|
-
pre: {
|
|
576
|
-
description:
|
|
577
|
-
type: string;
|
|
578
|
-
maxLength:
|
|
551
|
+
readonly pre: {
|
|
552
|
+
readonly description: "Starts with";
|
|
553
|
+
readonly type: "string";
|
|
554
|
+
readonly maxLength: 4096;
|
|
579
555
|
};
|
|
580
|
-
suf: {
|
|
581
|
-
description:
|
|
582
|
-
type: string;
|
|
583
|
-
maxLength:
|
|
556
|
+
readonly suf: {
|
|
557
|
+
readonly description: "Ends with";
|
|
558
|
+
readonly type: "string";
|
|
559
|
+
readonly maxLength: 4096;
|
|
584
560
|
};
|
|
585
|
-
re: {
|
|
586
|
-
description:
|
|
587
|
-
type: string;
|
|
588
|
-
maxLength:
|
|
561
|
+
readonly re: {
|
|
562
|
+
readonly description: "Regex";
|
|
563
|
+
readonly type: "string";
|
|
564
|
+
readonly maxLength: 4096;
|
|
589
565
|
};
|
|
590
|
-
gt: {
|
|
591
|
-
description:
|
|
592
|
-
type:
|
|
566
|
+
readonly gt: {
|
|
567
|
+
readonly description: "Greater than";
|
|
568
|
+
readonly type: "number";
|
|
593
569
|
};
|
|
594
|
-
gte: {
|
|
595
|
-
description:
|
|
596
|
-
type:
|
|
570
|
+
readonly gte: {
|
|
571
|
+
readonly description: "Greater than or equal to";
|
|
572
|
+
readonly type: "number";
|
|
597
573
|
};
|
|
598
|
-
lt: {
|
|
599
|
-
description:
|
|
600
|
-
type:
|
|
574
|
+
readonly lt: {
|
|
575
|
+
readonly description: "Less than";
|
|
576
|
+
readonly type: "number";
|
|
601
577
|
};
|
|
602
|
-
lte: {
|
|
603
|
-
description:
|
|
604
|
-
type:
|
|
578
|
+
readonly lte: {
|
|
579
|
+
readonly description: "Less than or equal to";
|
|
580
|
+
readonly type: "number";
|
|
605
581
|
};
|
|
606
582
|
};
|
|
607
|
-
|
|
608
|
-
})[];
|
|
583
|
+
}];
|
|
609
584
|
};
|
|
610
585
|
};
|
|
611
586
|
}, {
|
|
@@ -624,85 +599,80 @@ export declare const routesSchema: {
|
|
|
624
599
|
readonly maxLength: 4096;
|
|
625
600
|
};
|
|
626
601
|
readonly value: {
|
|
627
|
-
description: string;
|
|
628
|
-
anyOf:
|
|
629
|
-
description:
|
|
630
|
-
type: string;
|
|
631
|
-
maxLength:
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
type:
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
type: string;
|
|
659
|
-
items: {
|
|
660
|
-
type: string;
|
|
661
|
-
maxLength: number;
|
|
602
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
603
|
+
readonly anyOf: readonly [{
|
|
604
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
605
|
+
readonly type: "string";
|
|
606
|
+
readonly maxLength: 4096;
|
|
607
|
+
}, {
|
|
608
|
+
readonly description: "A condition operation object";
|
|
609
|
+
readonly type: "object";
|
|
610
|
+
readonly additionalProperties: false;
|
|
611
|
+
readonly minProperties: 1;
|
|
612
|
+
readonly properties: {
|
|
613
|
+
readonly eq: {
|
|
614
|
+
readonly description: "Equal to";
|
|
615
|
+
readonly anyOf: readonly [{
|
|
616
|
+
readonly type: "string";
|
|
617
|
+
readonly maxLength: 4096;
|
|
618
|
+
}, {
|
|
619
|
+
readonly type: "number";
|
|
620
|
+
}];
|
|
621
|
+
};
|
|
622
|
+
readonly neq: {
|
|
623
|
+
readonly description: "Not equal";
|
|
624
|
+
readonly type: "string";
|
|
625
|
+
readonly maxLength: 4096;
|
|
626
|
+
};
|
|
627
|
+
readonly inc: {
|
|
628
|
+
readonly description: "In array";
|
|
629
|
+
readonly type: "array";
|
|
630
|
+
readonly items: {
|
|
631
|
+
readonly type: "string";
|
|
632
|
+
readonly maxLength: 4096;
|
|
662
633
|
};
|
|
663
634
|
};
|
|
664
|
-
ninc: {
|
|
665
|
-
description:
|
|
666
|
-
type:
|
|
667
|
-
items: {
|
|
668
|
-
type: string;
|
|
669
|
-
maxLength:
|
|
635
|
+
readonly ninc: {
|
|
636
|
+
readonly description: "Not in array";
|
|
637
|
+
readonly type: "array";
|
|
638
|
+
readonly items: {
|
|
639
|
+
readonly type: "string";
|
|
640
|
+
readonly maxLength: 4096;
|
|
670
641
|
};
|
|
671
642
|
};
|
|
672
|
-
pre: {
|
|
673
|
-
description:
|
|
674
|
-
type: string;
|
|
675
|
-
maxLength:
|
|
643
|
+
readonly pre: {
|
|
644
|
+
readonly description: "Starts with";
|
|
645
|
+
readonly type: "string";
|
|
646
|
+
readonly maxLength: 4096;
|
|
676
647
|
};
|
|
677
|
-
suf: {
|
|
678
|
-
description:
|
|
679
|
-
type: string;
|
|
680
|
-
maxLength:
|
|
648
|
+
readonly suf: {
|
|
649
|
+
readonly description: "Ends with";
|
|
650
|
+
readonly type: "string";
|
|
651
|
+
readonly maxLength: 4096;
|
|
681
652
|
};
|
|
682
|
-
re: {
|
|
683
|
-
description:
|
|
684
|
-
type: string;
|
|
685
|
-
maxLength:
|
|
653
|
+
readonly re: {
|
|
654
|
+
readonly description: "Regex";
|
|
655
|
+
readonly type: "string";
|
|
656
|
+
readonly maxLength: 4096;
|
|
686
657
|
};
|
|
687
|
-
gt: {
|
|
688
|
-
description:
|
|
689
|
-
type:
|
|
658
|
+
readonly gt: {
|
|
659
|
+
readonly description: "Greater than";
|
|
660
|
+
readonly type: "number";
|
|
690
661
|
};
|
|
691
|
-
gte: {
|
|
692
|
-
description:
|
|
693
|
-
type:
|
|
662
|
+
readonly gte: {
|
|
663
|
+
readonly description: "Greater than or equal to";
|
|
664
|
+
readonly type: "number";
|
|
694
665
|
};
|
|
695
|
-
lt: {
|
|
696
|
-
description:
|
|
697
|
-
type:
|
|
666
|
+
readonly lt: {
|
|
667
|
+
readonly description: "Less than";
|
|
668
|
+
readonly type: "number";
|
|
698
669
|
};
|
|
699
|
-
lte: {
|
|
700
|
-
description:
|
|
701
|
-
type:
|
|
670
|
+
readonly lte: {
|
|
671
|
+
readonly description: "Less than or equal to";
|
|
672
|
+
readonly type: "number";
|
|
702
673
|
};
|
|
703
674
|
};
|
|
704
|
-
|
|
705
|
-
})[];
|
|
675
|
+
}];
|
|
706
676
|
};
|
|
707
677
|
};
|
|
708
678
|
}];
|
|
@@ -721,6 +691,176 @@ export declare const routesSchema: {
|
|
|
721
691
|
};
|
|
722
692
|
};
|
|
723
693
|
};
|
|
694
|
+
readonly transforms: {
|
|
695
|
+
readonly description: "A list of transform rules to adjust the query parameters of a request or HTTP headers of request or response";
|
|
696
|
+
readonly type: "array";
|
|
697
|
+
readonly minItems: 1;
|
|
698
|
+
readonly items: {
|
|
699
|
+
readonly type: "object";
|
|
700
|
+
readonly additionalProperties: false;
|
|
701
|
+
readonly required: readonly ["type", "op", "target"];
|
|
702
|
+
readonly properties: {
|
|
703
|
+
readonly type: {
|
|
704
|
+
readonly description: "The scope of the transform to apply";
|
|
705
|
+
readonly type: "string";
|
|
706
|
+
readonly enum: readonly ["request.headers", "request.query", "response.headers"];
|
|
707
|
+
};
|
|
708
|
+
readonly op: {
|
|
709
|
+
readonly description: "The operation to perform on the target";
|
|
710
|
+
readonly type: "string";
|
|
711
|
+
readonly enum: readonly ["append", "set", "delete"];
|
|
712
|
+
};
|
|
713
|
+
readonly target: {
|
|
714
|
+
readonly description: "The target of the transform";
|
|
715
|
+
readonly type: "object";
|
|
716
|
+
readonly required: readonly ["key"];
|
|
717
|
+
readonly properties: {
|
|
718
|
+
readonly key: {
|
|
719
|
+
readonly description: "A value to match against. Can be a string or a condition operation object (without regex support)";
|
|
720
|
+
readonly anyOf: readonly [{
|
|
721
|
+
readonly description: "A valid header name (letters, numbers, hyphens, underscores)";
|
|
722
|
+
readonly type: "string";
|
|
723
|
+
readonly maxLength: 4096;
|
|
724
|
+
}, {
|
|
725
|
+
readonly description: "A condition operation object";
|
|
726
|
+
readonly type: "object";
|
|
727
|
+
readonly additionalProperties: false;
|
|
728
|
+
readonly minProperties: 1;
|
|
729
|
+
readonly properties: {
|
|
730
|
+
readonly eq: {
|
|
731
|
+
readonly description: "Equal to";
|
|
732
|
+
readonly anyOf: readonly [{
|
|
733
|
+
readonly type: "string";
|
|
734
|
+
readonly maxLength: 4096;
|
|
735
|
+
}, {
|
|
736
|
+
readonly type: "number";
|
|
737
|
+
}];
|
|
738
|
+
};
|
|
739
|
+
readonly neq: {
|
|
740
|
+
readonly description: "Not equal";
|
|
741
|
+
readonly type: "string";
|
|
742
|
+
readonly maxLength: 4096;
|
|
743
|
+
};
|
|
744
|
+
readonly inc: {
|
|
745
|
+
readonly description: "In array";
|
|
746
|
+
readonly type: "array";
|
|
747
|
+
readonly items: {
|
|
748
|
+
readonly type: "string";
|
|
749
|
+
readonly maxLength: 4096;
|
|
750
|
+
};
|
|
751
|
+
};
|
|
752
|
+
readonly ninc: {
|
|
753
|
+
readonly description: "Not in array";
|
|
754
|
+
readonly type: "array";
|
|
755
|
+
readonly items: {
|
|
756
|
+
readonly type: "string";
|
|
757
|
+
readonly maxLength: 4096;
|
|
758
|
+
};
|
|
759
|
+
};
|
|
760
|
+
readonly pre: {
|
|
761
|
+
readonly description: "Starts with";
|
|
762
|
+
readonly type: "string";
|
|
763
|
+
readonly maxLength: 4096;
|
|
764
|
+
};
|
|
765
|
+
readonly suf: {
|
|
766
|
+
readonly description: "Ends with";
|
|
767
|
+
readonly type: "string";
|
|
768
|
+
readonly maxLength: 4096;
|
|
769
|
+
};
|
|
770
|
+
readonly gt: {
|
|
771
|
+
readonly description: "Greater than";
|
|
772
|
+
readonly type: "number";
|
|
773
|
+
};
|
|
774
|
+
readonly gte: {
|
|
775
|
+
readonly description: "Greater than or equal to";
|
|
776
|
+
readonly type: "number";
|
|
777
|
+
};
|
|
778
|
+
readonly lt: {
|
|
779
|
+
readonly description: "Less than";
|
|
780
|
+
readonly type: "number";
|
|
781
|
+
};
|
|
782
|
+
readonly lte: {
|
|
783
|
+
readonly description: "Less than or equal to";
|
|
784
|
+
readonly type: "number";
|
|
785
|
+
};
|
|
786
|
+
};
|
|
787
|
+
}];
|
|
788
|
+
};
|
|
789
|
+
};
|
|
790
|
+
};
|
|
791
|
+
readonly args: {
|
|
792
|
+
readonly description: "The arguments to the operation";
|
|
793
|
+
readonly anyOf: readonly [{
|
|
794
|
+
readonly type: "string";
|
|
795
|
+
readonly maxLength: 4096;
|
|
796
|
+
}, {
|
|
797
|
+
readonly type: "array";
|
|
798
|
+
readonly minItems: 1;
|
|
799
|
+
readonly items: {
|
|
800
|
+
readonly type: "string";
|
|
801
|
+
readonly maxLength: 4096;
|
|
802
|
+
};
|
|
803
|
+
}];
|
|
804
|
+
};
|
|
805
|
+
};
|
|
806
|
+
readonly allOf: readonly [{
|
|
807
|
+
readonly if: {
|
|
808
|
+
readonly properties: {
|
|
809
|
+
readonly op: {
|
|
810
|
+
readonly enum: readonly ["append", "set"];
|
|
811
|
+
};
|
|
812
|
+
};
|
|
813
|
+
};
|
|
814
|
+
readonly then: {
|
|
815
|
+
readonly required: readonly ["args"];
|
|
816
|
+
};
|
|
817
|
+
}, {
|
|
818
|
+
readonly if: {
|
|
819
|
+
readonly allOf: readonly [{
|
|
820
|
+
readonly properties: {
|
|
821
|
+
readonly type: {
|
|
822
|
+
readonly enum: readonly ["request.headers", "response.headers"];
|
|
823
|
+
};
|
|
824
|
+
};
|
|
825
|
+
}, {
|
|
826
|
+
readonly properties: {
|
|
827
|
+
readonly op: {
|
|
828
|
+
readonly enum: readonly ["set", "append"];
|
|
829
|
+
};
|
|
830
|
+
};
|
|
831
|
+
}];
|
|
832
|
+
};
|
|
833
|
+
readonly then: {
|
|
834
|
+
readonly properties: {
|
|
835
|
+
readonly target: {
|
|
836
|
+
readonly properties: {
|
|
837
|
+
readonly key: {
|
|
838
|
+
readonly if: {
|
|
839
|
+
readonly type: "string";
|
|
840
|
+
};
|
|
841
|
+
readonly then: {
|
|
842
|
+
readonly pattern: "^[a-zA-Z0-9_-]+$";
|
|
843
|
+
};
|
|
844
|
+
};
|
|
845
|
+
};
|
|
846
|
+
};
|
|
847
|
+
readonly args: {
|
|
848
|
+
readonly anyOf: readonly [{
|
|
849
|
+
readonly type: "string";
|
|
850
|
+
readonly pattern: "^[a-zA-Z0-9_ :;.,\"'?!(){}\\[\\]@<>=+*#$&`|~\\^%/-]+$";
|
|
851
|
+
}, {
|
|
852
|
+
readonly type: "array";
|
|
853
|
+
readonly items: {
|
|
854
|
+
readonly type: "string";
|
|
855
|
+
readonly pattern: "^[a-zA-Z0-9_ :;.,\"'?!(){}\\[\\]@<>=+*#$&`|~\\^%/-]+$";
|
|
856
|
+
};
|
|
857
|
+
}];
|
|
858
|
+
};
|
|
859
|
+
};
|
|
860
|
+
};
|
|
861
|
+
}];
|
|
862
|
+
};
|
|
863
|
+
};
|
|
724
864
|
};
|
|
725
865
|
}, {
|
|
726
866
|
readonly type: "object";
|
|
@@ -771,85 +911,80 @@ export declare const rewritesSchema: {
|
|
|
771
911
|
readonly enum: readonly ["host"];
|
|
772
912
|
};
|
|
773
913
|
readonly value: {
|
|
774
|
-
description: string;
|
|
775
|
-
anyOf:
|
|
776
|
-
description:
|
|
777
|
-
type: string;
|
|
778
|
-
maxLength:
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
type:
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
};
|
|
834
|
-
|
|
835
|
-
description:
|
|
836
|
-
type:
|
|
837
|
-
};
|
|
838
|
-
|
|
839
|
-
description:
|
|
840
|
-
type:
|
|
841
|
-
};
|
|
842
|
-
|
|
843
|
-
description:
|
|
844
|
-
type:
|
|
845
|
-
};
|
|
846
|
-
lte: {
|
|
847
|
-
description: string;
|
|
848
|
-
type: string;
|
|
914
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
915
|
+
readonly anyOf: readonly [{
|
|
916
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
917
|
+
readonly type: "string";
|
|
918
|
+
readonly maxLength: 4096;
|
|
919
|
+
}, {
|
|
920
|
+
readonly description: "A condition operation object";
|
|
921
|
+
readonly type: "object";
|
|
922
|
+
readonly additionalProperties: false;
|
|
923
|
+
readonly minProperties: 1;
|
|
924
|
+
readonly properties: {
|
|
925
|
+
readonly eq: {
|
|
926
|
+
readonly description: "Equal to";
|
|
927
|
+
readonly anyOf: readonly [{
|
|
928
|
+
readonly type: "string";
|
|
929
|
+
readonly maxLength: 4096;
|
|
930
|
+
}, {
|
|
931
|
+
readonly type: "number";
|
|
932
|
+
}];
|
|
933
|
+
};
|
|
934
|
+
readonly neq: {
|
|
935
|
+
readonly description: "Not equal";
|
|
936
|
+
readonly type: "string";
|
|
937
|
+
readonly maxLength: 4096;
|
|
938
|
+
};
|
|
939
|
+
readonly inc: {
|
|
940
|
+
readonly description: "In array";
|
|
941
|
+
readonly type: "array";
|
|
942
|
+
readonly items: {
|
|
943
|
+
readonly type: "string";
|
|
944
|
+
readonly maxLength: 4096;
|
|
945
|
+
};
|
|
946
|
+
};
|
|
947
|
+
readonly ninc: {
|
|
948
|
+
readonly description: "Not in array";
|
|
949
|
+
readonly type: "array";
|
|
950
|
+
readonly items: {
|
|
951
|
+
readonly type: "string";
|
|
952
|
+
readonly maxLength: 4096;
|
|
953
|
+
};
|
|
954
|
+
};
|
|
955
|
+
readonly pre: {
|
|
956
|
+
readonly description: "Starts with";
|
|
957
|
+
readonly type: "string";
|
|
958
|
+
readonly maxLength: 4096;
|
|
959
|
+
};
|
|
960
|
+
readonly suf: {
|
|
961
|
+
readonly description: "Ends with";
|
|
962
|
+
readonly type: "string";
|
|
963
|
+
readonly maxLength: 4096;
|
|
964
|
+
};
|
|
965
|
+
readonly re: {
|
|
966
|
+
readonly description: "Regex";
|
|
967
|
+
readonly type: "string";
|
|
968
|
+
readonly maxLength: 4096;
|
|
969
|
+
};
|
|
970
|
+
readonly gt: {
|
|
971
|
+
readonly description: "Greater than";
|
|
972
|
+
readonly type: "number";
|
|
973
|
+
};
|
|
974
|
+
readonly gte: {
|
|
975
|
+
readonly description: "Greater than or equal to";
|
|
976
|
+
readonly type: "number";
|
|
977
|
+
};
|
|
978
|
+
readonly lt: {
|
|
979
|
+
readonly description: "Less than";
|
|
980
|
+
readonly type: "number";
|
|
981
|
+
};
|
|
982
|
+
readonly lte: {
|
|
983
|
+
readonly description: "Less than or equal to";
|
|
984
|
+
readonly type: "number";
|
|
849
985
|
};
|
|
850
986
|
};
|
|
851
|
-
|
|
852
|
-
})[];
|
|
987
|
+
}];
|
|
853
988
|
};
|
|
854
989
|
};
|
|
855
990
|
}, {
|
|
@@ -868,85 +1003,80 @@ export declare const rewritesSchema: {
|
|
|
868
1003
|
readonly maxLength: 4096;
|
|
869
1004
|
};
|
|
870
1005
|
readonly value: {
|
|
871
|
-
description: string;
|
|
872
|
-
anyOf:
|
|
873
|
-
description:
|
|
874
|
-
type: string;
|
|
875
|
-
maxLength:
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
type:
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
};
|
|
931
|
-
|
|
932
|
-
description:
|
|
933
|
-
type:
|
|
934
|
-
};
|
|
935
|
-
|
|
936
|
-
description:
|
|
937
|
-
type:
|
|
938
|
-
};
|
|
939
|
-
|
|
940
|
-
description:
|
|
941
|
-
type:
|
|
942
|
-
};
|
|
943
|
-
lte: {
|
|
944
|
-
description: string;
|
|
945
|
-
type: string;
|
|
1006
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
1007
|
+
readonly anyOf: readonly [{
|
|
1008
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
1009
|
+
readonly type: "string";
|
|
1010
|
+
readonly maxLength: 4096;
|
|
1011
|
+
}, {
|
|
1012
|
+
readonly description: "A condition operation object";
|
|
1013
|
+
readonly type: "object";
|
|
1014
|
+
readonly additionalProperties: false;
|
|
1015
|
+
readonly minProperties: 1;
|
|
1016
|
+
readonly properties: {
|
|
1017
|
+
readonly eq: {
|
|
1018
|
+
readonly description: "Equal to";
|
|
1019
|
+
readonly anyOf: readonly [{
|
|
1020
|
+
readonly type: "string";
|
|
1021
|
+
readonly maxLength: 4096;
|
|
1022
|
+
}, {
|
|
1023
|
+
readonly type: "number";
|
|
1024
|
+
}];
|
|
1025
|
+
};
|
|
1026
|
+
readonly neq: {
|
|
1027
|
+
readonly description: "Not equal";
|
|
1028
|
+
readonly type: "string";
|
|
1029
|
+
readonly maxLength: 4096;
|
|
1030
|
+
};
|
|
1031
|
+
readonly inc: {
|
|
1032
|
+
readonly description: "In array";
|
|
1033
|
+
readonly type: "array";
|
|
1034
|
+
readonly items: {
|
|
1035
|
+
readonly type: "string";
|
|
1036
|
+
readonly maxLength: 4096;
|
|
1037
|
+
};
|
|
1038
|
+
};
|
|
1039
|
+
readonly ninc: {
|
|
1040
|
+
readonly description: "Not in array";
|
|
1041
|
+
readonly type: "array";
|
|
1042
|
+
readonly items: {
|
|
1043
|
+
readonly type: "string";
|
|
1044
|
+
readonly maxLength: 4096;
|
|
1045
|
+
};
|
|
1046
|
+
};
|
|
1047
|
+
readonly pre: {
|
|
1048
|
+
readonly description: "Starts with";
|
|
1049
|
+
readonly type: "string";
|
|
1050
|
+
readonly maxLength: 4096;
|
|
1051
|
+
};
|
|
1052
|
+
readonly suf: {
|
|
1053
|
+
readonly description: "Ends with";
|
|
1054
|
+
readonly type: "string";
|
|
1055
|
+
readonly maxLength: 4096;
|
|
1056
|
+
};
|
|
1057
|
+
readonly re: {
|
|
1058
|
+
readonly description: "Regex";
|
|
1059
|
+
readonly type: "string";
|
|
1060
|
+
readonly maxLength: 4096;
|
|
1061
|
+
};
|
|
1062
|
+
readonly gt: {
|
|
1063
|
+
readonly description: "Greater than";
|
|
1064
|
+
readonly type: "number";
|
|
1065
|
+
};
|
|
1066
|
+
readonly gte: {
|
|
1067
|
+
readonly description: "Greater than or equal to";
|
|
1068
|
+
readonly type: "number";
|
|
1069
|
+
};
|
|
1070
|
+
readonly lt: {
|
|
1071
|
+
readonly description: "Less than";
|
|
1072
|
+
readonly type: "number";
|
|
1073
|
+
};
|
|
1074
|
+
readonly lte: {
|
|
1075
|
+
readonly description: "Less than or equal to";
|
|
1076
|
+
readonly type: "number";
|
|
946
1077
|
};
|
|
947
1078
|
};
|
|
948
|
-
|
|
949
|
-
})[];
|
|
1079
|
+
}];
|
|
950
1080
|
};
|
|
951
1081
|
};
|
|
952
1082
|
}];
|
|
@@ -968,85 +1098,80 @@ export declare const rewritesSchema: {
|
|
|
968
1098
|
readonly enum: readonly ["host"];
|
|
969
1099
|
};
|
|
970
1100
|
readonly value: {
|
|
971
|
-
description: string;
|
|
972
|
-
anyOf:
|
|
973
|
-
description:
|
|
974
|
-
type: string;
|
|
975
|
-
maxLength:
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
type:
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
};
|
|
1031
|
-
|
|
1032
|
-
description:
|
|
1033
|
-
type:
|
|
1034
|
-
};
|
|
1035
|
-
|
|
1036
|
-
description:
|
|
1037
|
-
type:
|
|
1038
|
-
};
|
|
1039
|
-
|
|
1040
|
-
description:
|
|
1041
|
-
type:
|
|
1042
|
-
};
|
|
1043
|
-
lte: {
|
|
1044
|
-
description: string;
|
|
1045
|
-
type: string;
|
|
1101
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
1102
|
+
readonly anyOf: readonly [{
|
|
1103
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
1104
|
+
readonly type: "string";
|
|
1105
|
+
readonly maxLength: 4096;
|
|
1106
|
+
}, {
|
|
1107
|
+
readonly description: "A condition operation object";
|
|
1108
|
+
readonly type: "object";
|
|
1109
|
+
readonly additionalProperties: false;
|
|
1110
|
+
readonly minProperties: 1;
|
|
1111
|
+
readonly properties: {
|
|
1112
|
+
readonly eq: {
|
|
1113
|
+
readonly description: "Equal to";
|
|
1114
|
+
readonly anyOf: readonly [{
|
|
1115
|
+
readonly type: "string";
|
|
1116
|
+
readonly maxLength: 4096;
|
|
1117
|
+
}, {
|
|
1118
|
+
readonly type: "number";
|
|
1119
|
+
}];
|
|
1120
|
+
};
|
|
1121
|
+
readonly neq: {
|
|
1122
|
+
readonly description: "Not equal";
|
|
1123
|
+
readonly type: "string";
|
|
1124
|
+
readonly maxLength: 4096;
|
|
1125
|
+
};
|
|
1126
|
+
readonly inc: {
|
|
1127
|
+
readonly description: "In array";
|
|
1128
|
+
readonly type: "array";
|
|
1129
|
+
readonly items: {
|
|
1130
|
+
readonly type: "string";
|
|
1131
|
+
readonly maxLength: 4096;
|
|
1132
|
+
};
|
|
1133
|
+
};
|
|
1134
|
+
readonly ninc: {
|
|
1135
|
+
readonly description: "Not in array";
|
|
1136
|
+
readonly type: "array";
|
|
1137
|
+
readonly items: {
|
|
1138
|
+
readonly type: "string";
|
|
1139
|
+
readonly maxLength: 4096;
|
|
1140
|
+
};
|
|
1141
|
+
};
|
|
1142
|
+
readonly pre: {
|
|
1143
|
+
readonly description: "Starts with";
|
|
1144
|
+
readonly type: "string";
|
|
1145
|
+
readonly maxLength: 4096;
|
|
1146
|
+
};
|
|
1147
|
+
readonly suf: {
|
|
1148
|
+
readonly description: "Ends with";
|
|
1149
|
+
readonly type: "string";
|
|
1150
|
+
readonly maxLength: 4096;
|
|
1151
|
+
};
|
|
1152
|
+
readonly re: {
|
|
1153
|
+
readonly description: "Regex";
|
|
1154
|
+
readonly type: "string";
|
|
1155
|
+
readonly maxLength: 4096;
|
|
1156
|
+
};
|
|
1157
|
+
readonly gt: {
|
|
1158
|
+
readonly description: "Greater than";
|
|
1159
|
+
readonly type: "number";
|
|
1160
|
+
};
|
|
1161
|
+
readonly gte: {
|
|
1162
|
+
readonly description: "Greater than or equal to";
|
|
1163
|
+
readonly type: "number";
|
|
1164
|
+
};
|
|
1165
|
+
readonly lt: {
|
|
1166
|
+
readonly description: "Less than";
|
|
1167
|
+
readonly type: "number";
|
|
1168
|
+
};
|
|
1169
|
+
readonly lte: {
|
|
1170
|
+
readonly description: "Less than or equal to";
|
|
1171
|
+
readonly type: "number";
|
|
1046
1172
|
};
|
|
1047
1173
|
};
|
|
1048
|
-
|
|
1049
|
-
})[];
|
|
1174
|
+
}];
|
|
1050
1175
|
};
|
|
1051
1176
|
};
|
|
1052
1177
|
}, {
|
|
@@ -1065,85 +1190,80 @@ export declare const rewritesSchema: {
|
|
|
1065
1190
|
readonly maxLength: 4096;
|
|
1066
1191
|
};
|
|
1067
1192
|
readonly value: {
|
|
1068
|
-
description: string;
|
|
1069
|
-
anyOf:
|
|
1070
|
-
description:
|
|
1071
|
-
type: string;
|
|
1072
|
-
maxLength:
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
type:
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
};
|
|
1128
|
-
|
|
1129
|
-
description:
|
|
1130
|
-
type:
|
|
1131
|
-
};
|
|
1132
|
-
|
|
1133
|
-
description:
|
|
1134
|
-
type:
|
|
1135
|
-
};
|
|
1136
|
-
|
|
1137
|
-
description:
|
|
1138
|
-
type:
|
|
1139
|
-
};
|
|
1140
|
-
lte: {
|
|
1141
|
-
description: string;
|
|
1142
|
-
type: string;
|
|
1193
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
1194
|
+
readonly anyOf: readonly [{
|
|
1195
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
1196
|
+
readonly type: "string";
|
|
1197
|
+
readonly maxLength: 4096;
|
|
1198
|
+
}, {
|
|
1199
|
+
readonly description: "A condition operation object";
|
|
1200
|
+
readonly type: "object";
|
|
1201
|
+
readonly additionalProperties: false;
|
|
1202
|
+
readonly minProperties: 1;
|
|
1203
|
+
readonly properties: {
|
|
1204
|
+
readonly eq: {
|
|
1205
|
+
readonly description: "Equal to";
|
|
1206
|
+
readonly anyOf: readonly [{
|
|
1207
|
+
readonly type: "string";
|
|
1208
|
+
readonly maxLength: 4096;
|
|
1209
|
+
}, {
|
|
1210
|
+
readonly type: "number";
|
|
1211
|
+
}];
|
|
1212
|
+
};
|
|
1213
|
+
readonly neq: {
|
|
1214
|
+
readonly description: "Not equal";
|
|
1215
|
+
readonly type: "string";
|
|
1216
|
+
readonly maxLength: 4096;
|
|
1217
|
+
};
|
|
1218
|
+
readonly inc: {
|
|
1219
|
+
readonly description: "In array";
|
|
1220
|
+
readonly type: "array";
|
|
1221
|
+
readonly items: {
|
|
1222
|
+
readonly type: "string";
|
|
1223
|
+
readonly maxLength: 4096;
|
|
1224
|
+
};
|
|
1225
|
+
};
|
|
1226
|
+
readonly ninc: {
|
|
1227
|
+
readonly description: "Not in array";
|
|
1228
|
+
readonly type: "array";
|
|
1229
|
+
readonly items: {
|
|
1230
|
+
readonly type: "string";
|
|
1231
|
+
readonly maxLength: 4096;
|
|
1232
|
+
};
|
|
1233
|
+
};
|
|
1234
|
+
readonly pre: {
|
|
1235
|
+
readonly description: "Starts with";
|
|
1236
|
+
readonly type: "string";
|
|
1237
|
+
readonly maxLength: 4096;
|
|
1238
|
+
};
|
|
1239
|
+
readonly suf: {
|
|
1240
|
+
readonly description: "Ends with";
|
|
1241
|
+
readonly type: "string";
|
|
1242
|
+
readonly maxLength: 4096;
|
|
1243
|
+
};
|
|
1244
|
+
readonly re: {
|
|
1245
|
+
readonly description: "Regex";
|
|
1246
|
+
readonly type: "string";
|
|
1247
|
+
readonly maxLength: 4096;
|
|
1248
|
+
};
|
|
1249
|
+
readonly gt: {
|
|
1250
|
+
readonly description: "Greater than";
|
|
1251
|
+
readonly type: "number";
|
|
1252
|
+
};
|
|
1253
|
+
readonly gte: {
|
|
1254
|
+
readonly description: "Greater than or equal to";
|
|
1255
|
+
readonly type: "number";
|
|
1256
|
+
};
|
|
1257
|
+
readonly lt: {
|
|
1258
|
+
readonly description: "Less than";
|
|
1259
|
+
readonly type: "number";
|
|
1260
|
+
};
|
|
1261
|
+
readonly lte: {
|
|
1262
|
+
readonly description: "Less than or equal to";
|
|
1263
|
+
readonly type: "number";
|
|
1143
1264
|
};
|
|
1144
1265
|
};
|
|
1145
|
-
|
|
1146
|
-
})[];
|
|
1266
|
+
}];
|
|
1147
1267
|
};
|
|
1148
1268
|
};
|
|
1149
1269
|
}];
|
|
@@ -1205,85 +1325,80 @@ export declare const redirectsSchema: {
|
|
|
1205
1325
|
readonly enum: readonly ["host"];
|
|
1206
1326
|
};
|
|
1207
1327
|
readonly value: {
|
|
1208
|
-
description: string;
|
|
1209
|
-
anyOf:
|
|
1210
|
-
description:
|
|
1211
|
-
type: string;
|
|
1212
|
-
maxLength:
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
type:
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
};
|
|
1268
|
-
|
|
1269
|
-
description:
|
|
1270
|
-
type:
|
|
1271
|
-
};
|
|
1272
|
-
|
|
1273
|
-
description:
|
|
1274
|
-
type:
|
|
1275
|
-
};
|
|
1276
|
-
|
|
1277
|
-
description:
|
|
1278
|
-
type:
|
|
1279
|
-
};
|
|
1280
|
-
lte: {
|
|
1281
|
-
description: string;
|
|
1282
|
-
type: string;
|
|
1328
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
1329
|
+
readonly anyOf: readonly [{
|
|
1330
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
1331
|
+
readonly type: "string";
|
|
1332
|
+
readonly maxLength: 4096;
|
|
1333
|
+
}, {
|
|
1334
|
+
readonly description: "A condition operation object";
|
|
1335
|
+
readonly type: "object";
|
|
1336
|
+
readonly additionalProperties: false;
|
|
1337
|
+
readonly minProperties: 1;
|
|
1338
|
+
readonly properties: {
|
|
1339
|
+
readonly eq: {
|
|
1340
|
+
readonly description: "Equal to";
|
|
1341
|
+
readonly anyOf: readonly [{
|
|
1342
|
+
readonly type: "string";
|
|
1343
|
+
readonly maxLength: 4096;
|
|
1344
|
+
}, {
|
|
1345
|
+
readonly type: "number";
|
|
1346
|
+
}];
|
|
1347
|
+
};
|
|
1348
|
+
readonly neq: {
|
|
1349
|
+
readonly description: "Not equal";
|
|
1350
|
+
readonly type: "string";
|
|
1351
|
+
readonly maxLength: 4096;
|
|
1352
|
+
};
|
|
1353
|
+
readonly inc: {
|
|
1354
|
+
readonly description: "In array";
|
|
1355
|
+
readonly type: "array";
|
|
1356
|
+
readonly items: {
|
|
1357
|
+
readonly type: "string";
|
|
1358
|
+
readonly maxLength: 4096;
|
|
1359
|
+
};
|
|
1360
|
+
};
|
|
1361
|
+
readonly ninc: {
|
|
1362
|
+
readonly description: "Not in array";
|
|
1363
|
+
readonly type: "array";
|
|
1364
|
+
readonly items: {
|
|
1365
|
+
readonly type: "string";
|
|
1366
|
+
readonly maxLength: 4096;
|
|
1367
|
+
};
|
|
1368
|
+
};
|
|
1369
|
+
readonly pre: {
|
|
1370
|
+
readonly description: "Starts with";
|
|
1371
|
+
readonly type: "string";
|
|
1372
|
+
readonly maxLength: 4096;
|
|
1373
|
+
};
|
|
1374
|
+
readonly suf: {
|
|
1375
|
+
readonly description: "Ends with";
|
|
1376
|
+
readonly type: "string";
|
|
1377
|
+
readonly maxLength: 4096;
|
|
1378
|
+
};
|
|
1379
|
+
readonly re: {
|
|
1380
|
+
readonly description: "Regex";
|
|
1381
|
+
readonly type: "string";
|
|
1382
|
+
readonly maxLength: 4096;
|
|
1383
|
+
};
|
|
1384
|
+
readonly gt: {
|
|
1385
|
+
readonly description: "Greater than";
|
|
1386
|
+
readonly type: "number";
|
|
1387
|
+
};
|
|
1388
|
+
readonly gte: {
|
|
1389
|
+
readonly description: "Greater than or equal to";
|
|
1390
|
+
readonly type: "number";
|
|
1391
|
+
};
|
|
1392
|
+
readonly lt: {
|
|
1393
|
+
readonly description: "Less than";
|
|
1394
|
+
readonly type: "number";
|
|
1395
|
+
};
|
|
1396
|
+
readonly lte: {
|
|
1397
|
+
readonly description: "Less than or equal to";
|
|
1398
|
+
readonly type: "number";
|
|
1283
1399
|
};
|
|
1284
1400
|
};
|
|
1285
|
-
|
|
1286
|
-
})[];
|
|
1401
|
+
}];
|
|
1287
1402
|
};
|
|
1288
1403
|
};
|
|
1289
1404
|
}, {
|
|
@@ -1302,85 +1417,80 @@ export declare const redirectsSchema: {
|
|
|
1302
1417
|
readonly maxLength: 4096;
|
|
1303
1418
|
};
|
|
1304
1419
|
readonly value: {
|
|
1305
|
-
description: string;
|
|
1306
|
-
anyOf:
|
|
1307
|
-
description:
|
|
1308
|
-
type: string;
|
|
1309
|
-
maxLength:
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
type:
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
};
|
|
1365
|
-
|
|
1366
|
-
description:
|
|
1367
|
-
type:
|
|
1368
|
-
};
|
|
1369
|
-
|
|
1370
|
-
description:
|
|
1371
|
-
type:
|
|
1372
|
-
};
|
|
1373
|
-
|
|
1374
|
-
description:
|
|
1375
|
-
type:
|
|
1376
|
-
};
|
|
1377
|
-
lte: {
|
|
1378
|
-
description: string;
|
|
1379
|
-
type: string;
|
|
1420
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
1421
|
+
readonly anyOf: readonly [{
|
|
1422
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
1423
|
+
readonly type: "string";
|
|
1424
|
+
readonly maxLength: 4096;
|
|
1425
|
+
}, {
|
|
1426
|
+
readonly description: "A condition operation object";
|
|
1427
|
+
readonly type: "object";
|
|
1428
|
+
readonly additionalProperties: false;
|
|
1429
|
+
readonly minProperties: 1;
|
|
1430
|
+
readonly properties: {
|
|
1431
|
+
readonly eq: {
|
|
1432
|
+
readonly description: "Equal to";
|
|
1433
|
+
readonly anyOf: readonly [{
|
|
1434
|
+
readonly type: "string";
|
|
1435
|
+
readonly maxLength: 4096;
|
|
1436
|
+
}, {
|
|
1437
|
+
readonly type: "number";
|
|
1438
|
+
}];
|
|
1439
|
+
};
|
|
1440
|
+
readonly neq: {
|
|
1441
|
+
readonly description: "Not equal";
|
|
1442
|
+
readonly type: "string";
|
|
1443
|
+
readonly maxLength: 4096;
|
|
1444
|
+
};
|
|
1445
|
+
readonly inc: {
|
|
1446
|
+
readonly description: "In array";
|
|
1447
|
+
readonly type: "array";
|
|
1448
|
+
readonly items: {
|
|
1449
|
+
readonly type: "string";
|
|
1450
|
+
readonly maxLength: 4096;
|
|
1451
|
+
};
|
|
1452
|
+
};
|
|
1453
|
+
readonly ninc: {
|
|
1454
|
+
readonly description: "Not in array";
|
|
1455
|
+
readonly type: "array";
|
|
1456
|
+
readonly items: {
|
|
1457
|
+
readonly type: "string";
|
|
1458
|
+
readonly maxLength: 4096;
|
|
1459
|
+
};
|
|
1460
|
+
};
|
|
1461
|
+
readonly pre: {
|
|
1462
|
+
readonly description: "Starts with";
|
|
1463
|
+
readonly type: "string";
|
|
1464
|
+
readonly maxLength: 4096;
|
|
1465
|
+
};
|
|
1466
|
+
readonly suf: {
|
|
1467
|
+
readonly description: "Ends with";
|
|
1468
|
+
readonly type: "string";
|
|
1469
|
+
readonly maxLength: 4096;
|
|
1470
|
+
};
|
|
1471
|
+
readonly re: {
|
|
1472
|
+
readonly description: "Regex";
|
|
1473
|
+
readonly type: "string";
|
|
1474
|
+
readonly maxLength: 4096;
|
|
1475
|
+
};
|
|
1476
|
+
readonly gt: {
|
|
1477
|
+
readonly description: "Greater than";
|
|
1478
|
+
readonly type: "number";
|
|
1479
|
+
};
|
|
1480
|
+
readonly gte: {
|
|
1481
|
+
readonly description: "Greater than or equal to";
|
|
1482
|
+
readonly type: "number";
|
|
1483
|
+
};
|
|
1484
|
+
readonly lt: {
|
|
1485
|
+
readonly description: "Less than";
|
|
1486
|
+
readonly type: "number";
|
|
1487
|
+
};
|
|
1488
|
+
readonly lte: {
|
|
1489
|
+
readonly description: "Less than or equal to";
|
|
1490
|
+
readonly type: "number";
|
|
1380
1491
|
};
|
|
1381
1492
|
};
|
|
1382
|
-
|
|
1383
|
-
})[];
|
|
1493
|
+
}];
|
|
1384
1494
|
};
|
|
1385
1495
|
};
|
|
1386
1496
|
}];
|
|
@@ -1402,85 +1512,80 @@ export declare const redirectsSchema: {
|
|
|
1402
1512
|
readonly enum: readonly ["host"];
|
|
1403
1513
|
};
|
|
1404
1514
|
readonly value: {
|
|
1405
|
-
description: string;
|
|
1406
|
-
anyOf:
|
|
1407
|
-
description:
|
|
1408
|
-
type: string;
|
|
1409
|
-
maxLength:
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
type:
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
};
|
|
1465
|
-
|
|
1466
|
-
description:
|
|
1467
|
-
type:
|
|
1468
|
-
};
|
|
1469
|
-
|
|
1470
|
-
description:
|
|
1471
|
-
type:
|
|
1472
|
-
};
|
|
1473
|
-
|
|
1474
|
-
description:
|
|
1475
|
-
type:
|
|
1476
|
-
};
|
|
1477
|
-
lte: {
|
|
1478
|
-
description: string;
|
|
1479
|
-
type: string;
|
|
1515
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
1516
|
+
readonly anyOf: readonly [{
|
|
1517
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
1518
|
+
readonly type: "string";
|
|
1519
|
+
readonly maxLength: 4096;
|
|
1520
|
+
}, {
|
|
1521
|
+
readonly description: "A condition operation object";
|
|
1522
|
+
readonly type: "object";
|
|
1523
|
+
readonly additionalProperties: false;
|
|
1524
|
+
readonly minProperties: 1;
|
|
1525
|
+
readonly properties: {
|
|
1526
|
+
readonly eq: {
|
|
1527
|
+
readonly description: "Equal to";
|
|
1528
|
+
readonly anyOf: readonly [{
|
|
1529
|
+
readonly type: "string";
|
|
1530
|
+
readonly maxLength: 4096;
|
|
1531
|
+
}, {
|
|
1532
|
+
readonly type: "number";
|
|
1533
|
+
}];
|
|
1534
|
+
};
|
|
1535
|
+
readonly neq: {
|
|
1536
|
+
readonly description: "Not equal";
|
|
1537
|
+
readonly type: "string";
|
|
1538
|
+
readonly maxLength: 4096;
|
|
1539
|
+
};
|
|
1540
|
+
readonly inc: {
|
|
1541
|
+
readonly description: "In array";
|
|
1542
|
+
readonly type: "array";
|
|
1543
|
+
readonly items: {
|
|
1544
|
+
readonly type: "string";
|
|
1545
|
+
readonly maxLength: 4096;
|
|
1546
|
+
};
|
|
1547
|
+
};
|
|
1548
|
+
readonly ninc: {
|
|
1549
|
+
readonly description: "Not in array";
|
|
1550
|
+
readonly type: "array";
|
|
1551
|
+
readonly items: {
|
|
1552
|
+
readonly type: "string";
|
|
1553
|
+
readonly maxLength: 4096;
|
|
1554
|
+
};
|
|
1555
|
+
};
|
|
1556
|
+
readonly pre: {
|
|
1557
|
+
readonly description: "Starts with";
|
|
1558
|
+
readonly type: "string";
|
|
1559
|
+
readonly maxLength: 4096;
|
|
1560
|
+
};
|
|
1561
|
+
readonly suf: {
|
|
1562
|
+
readonly description: "Ends with";
|
|
1563
|
+
readonly type: "string";
|
|
1564
|
+
readonly maxLength: 4096;
|
|
1565
|
+
};
|
|
1566
|
+
readonly re: {
|
|
1567
|
+
readonly description: "Regex";
|
|
1568
|
+
readonly type: "string";
|
|
1569
|
+
readonly maxLength: 4096;
|
|
1570
|
+
};
|
|
1571
|
+
readonly gt: {
|
|
1572
|
+
readonly description: "Greater than";
|
|
1573
|
+
readonly type: "number";
|
|
1574
|
+
};
|
|
1575
|
+
readonly gte: {
|
|
1576
|
+
readonly description: "Greater than or equal to";
|
|
1577
|
+
readonly type: "number";
|
|
1578
|
+
};
|
|
1579
|
+
readonly lt: {
|
|
1580
|
+
readonly description: "Less than";
|
|
1581
|
+
readonly type: "number";
|
|
1582
|
+
};
|
|
1583
|
+
readonly lte: {
|
|
1584
|
+
readonly description: "Less than or equal to";
|
|
1585
|
+
readonly type: "number";
|
|
1480
1586
|
};
|
|
1481
1587
|
};
|
|
1482
|
-
|
|
1483
|
-
})[];
|
|
1588
|
+
}];
|
|
1484
1589
|
};
|
|
1485
1590
|
};
|
|
1486
1591
|
}, {
|
|
@@ -1499,85 +1604,80 @@ export declare const redirectsSchema: {
|
|
|
1499
1604
|
readonly maxLength: 4096;
|
|
1500
1605
|
};
|
|
1501
1606
|
readonly value: {
|
|
1502
|
-
description: string;
|
|
1503
|
-
anyOf:
|
|
1504
|
-
description:
|
|
1505
|
-
type: string;
|
|
1506
|
-
maxLength:
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
type:
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
};
|
|
1562
|
-
|
|
1563
|
-
description:
|
|
1564
|
-
type:
|
|
1565
|
-
};
|
|
1566
|
-
|
|
1567
|
-
description:
|
|
1568
|
-
type:
|
|
1569
|
-
};
|
|
1570
|
-
|
|
1571
|
-
description:
|
|
1572
|
-
type:
|
|
1573
|
-
};
|
|
1574
|
-
lte: {
|
|
1575
|
-
description: string;
|
|
1576
|
-
type: string;
|
|
1607
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
1608
|
+
readonly anyOf: readonly [{
|
|
1609
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
1610
|
+
readonly type: "string";
|
|
1611
|
+
readonly maxLength: 4096;
|
|
1612
|
+
}, {
|
|
1613
|
+
readonly description: "A condition operation object";
|
|
1614
|
+
readonly type: "object";
|
|
1615
|
+
readonly additionalProperties: false;
|
|
1616
|
+
readonly minProperties: 1;
|
|
1617
|
+
readonly properties: {
|
|
1618
|
+
readonly eq: {
|
|
1619
|
+
readonly description: "Equal to";
|
|
1620
|
+
readonly anyOf: readonly [{
|
|
1621
|
+
readonly type: "string";
|
|
1622
|
+
readonly maxLength: 4096;
|
|
1623
|
+
}, {
|
|
1624
|
+
readonly type: "number";
|
|
1625
|
+
}];
|
|
1626
|
+
};
|
|
1627
|
+
readonly neq: {
|
|
1628
|
+
readonly description: "Not equal";
|
|
1629
|
+
readonly type: "string";
|
|
1630
|
+
readonly maxLength: 4096;
|
|
1631
|
+
};
|
|
1632
|
+
readonly inc: {
|
|
1633
|
+
readonly description: "In array";
|
|
1634
|
+
readonly type: "array";
|
|
1635
|
+
readonly items: {
|
|
1636
|
+
readonly type: "string";
|
|
1637
|
+
readonly maxLength: 4096;
|
|
1638
|
+
};
|
|
1639
|
+
};
|
|
1640
|
+
readonly ninc: {
|
|
1641
|
+
readonly description: "Not in array";
|
|
1642
|
+
readonly type: "array";
|
|
1643
|
+
readonly items: {
|
|
1644
|
+
readonly type: "string";
|
|
1645
|
+
readonly maxLength: 4096;
|
|
1646
|
+
};
|
|
1647
|
+
};
|
|
1648
|
+
readonly pre: {
|
|
1649
|
+
readonly description: "Starts with";
|
|
1650
|
+
readonly type: "string";
|
|
1651
|
+
readonly maxLength: 4096;
|
|
1652
|
+
};
|
|
1653
|
+
readonly suf: {
|
|
1654
|
+
readonly description: "Ends with";
|
|
1655
|
+
readonly type: "string";
|
|
1656
|
+
readonly maxLength: 4096;
|
|
1657
|
+
};
|
|
1658
|
+
readonly re: {
|
|
1659
|
+
readonly description: "Regex";
|
|
1660
|
+
readonly type: "string";
|
|
1661
|
+
readonly maxLength: 4096;
|
|
1662
|
+
};
|
|
1663
|
+
readonly gt: {
|
|
1664
|
+
readonly description: "Greater than";
|
|
1665
|
+
readonly type: "number";
|
|
1666
|
+
};
|
|
1667
|
+
readonly gte: {
|
|
1668
|
+
readonly description: "Greater than or equal to";
|
|
1669
|
+
readonly type: "number";
|
|
1670
|
+
};
|
|
1671
|
+
readonly lt: {
|
|
1672
|
+
readonly description: "Less than";
|
|
1673
|
+
readonly type: "number";
|
|
1674
|
+
};
|
|
1675
|
+
readonly lte: {
|
|
1676
|
+
readonly description: "Less than or equal to";
|
|
1677
|
+
readonly type: "number";
|
|
1577
1678
|
};
|
|
1578
1679
|
};
|
|
1579
|
-
|
|
1580
|
-
})[];
|
|
1680
|
+
}];
|
|
1581
1681
|
};
|
|
1582
1682
|
};
|
|
1583
1683
|
}];
|
|
@@ -1636,85 +1736,80 @@ export declare const headersSchema: {
|
|
|
1636
1736
|
readonly enum: readonly ["host"];
|
|
1637
1737
|
};
|
|
1638
1738
|
readonly value: {
|
|
1639
|
-
description: string;
|
|
1640
|
-
anyOf:
|
|
1641
|
-
description:
|
|
1642
|
-
type: string;
|
|
1643
|
-
maxLength:
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
type:
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
};
|
|
1699
|
-
|
|
1700
|
-
description:
|
|
1701
|
-
type:
|
|
1702
|
-
};
|
|
1703
|
-
|
|
1704
|
-
description:
|
|
1705
|
-
type:
|
|
1706
|
-
};
|
|
1707
|
-
|
|
1708
|
-
description:
|
|
1709
|
-
type:
|
|
1710
|
-
};
|
|
1711
|
-
lte: {
|
|
1712
|
-
description: string;
|
|
1713
|
-
type: string;
|
|
1739
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
1740
|
+
readonly anyOf: readonly [{
|
|
1741
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
1742
|
+
readonly type: "string";
|
|
1743
|
+
readonly maxLength: 4096;
|
|
1744
|
+
}, {
|
|
1745
|
+
readonly description: "A condition operation object";
|
|
1746
|
+
readonly type: "object";
|
|
1747
|
+
readonly additionalProperties: false;
|
|
1748
|
+
readonly minProperties: 1;
|
|
1749
|
+
readonly properties: {
|
|
1750
|
+
readonly eq: {
|
|
1751
|
+
readonly description: "Equal to";
|
|
1752
|
+
readonly anyOf: readonly [{
|
|
1753
|
+
readonly type: "string";
|
|
1754
|
+
readonly maxLength: 4096;
|
|
1755
|
+
}, {
|
|
1756
|
+
readonly type: "number";
|
|
1757
|
+
}];
|
|
1758
|
+
};
|
|
1759
|
+
readonly neq: {
|
|
1760
|
+
readonly description: "Not equal";
|
|
1761
|
+
readonly type: "string";
|
|
1762
|
+
readonly maxLength: 4096;
|
|
1763
|
+
};
|
|
1764
|
+
readonly inc: {
|
|
1765
|
+
readonly description: "In array";
|
|
1766
|
+
readonly type: "array";
|
|
1767
|
+
readonly items: {
|
|
1768
|
+
readonly type: "string";
|
|
1769
|
+
readonly maxLength: 4096;
|
|
1770
|
+
};
|
|
1771
|
+
};
|
|
1772
|
+
readonly ninc: {
|
|
1773
|
+
readonly description: "Not in array";
|
|
1774
|
+
readonly type: "array";
|
|
1775
|
+
readonly items: {
|
|
1776
|
+
readonly type: "string";
|
|
1777
|
+
readonly maxLength: 4096;
|
|
1778
|
+
};
|
|
1779
|
+
};
|
|
1780
|
+
readonly pre: {
|
|
1781
|
+
readonly description: "Starts with";
|
|
1782
|
+
readonly type: "string";
|
|
1783
|
+
readonly maxLength: 4096;
|
|
1784
|
+
};
|
|
1785
|
+
readonly suf: {
|
|
1786
|
+
readonly description: "Ends with";
|
|
1787
|
+
readonly type: "string";
|
|
1788
|
+
readonly maxLength: 4096;
|
|
1789
|
+
};
|
|
1790
|
+
readonly re: {
|
|
1791
|
+
readonly description: "Regex";
|
|
1792
|
+
readonly type: "string";
|
|
1793
|
+
readonly maxLength: 4096;
|
|
1794
|
+
};
|
|
1795
|
+
readonly gt: {
|
|
1796
|
+
readonly description: "Greater than";
|
|
1797
|
+
readonly type: "number";
|
|
1798
|
+
};
|
|
1799
|
+
readonly gte: {
|
|
1800
|
+
readonly description: "Greater than or equal to";
|
|
1801
|
+
readonly type: "number";
|
|
1802
|
+
};
|
|
1803
|
+
readonly lt: {
|
|
1804
|
+
readonly description: "Less than";
|
|
1805
|
+
readonly type: "number";
|
|
1806
|
+
};
|
|
1807
|
+
readonly lte: {
|
|
1808
|
+
readonly description: "Less than or equal to";
|
|
1809
|
+
readonly type: "number";
|
|
1714
1810
|
};
|
|
1715
1811
|
};
|
|
1716
|
-
|
|
1717
|
-
})[];
|
|
1812
|
+
}];
|
|
1718
1813
|
};
|
|
1719
1814
|
};
|
|
1720
1815
|
}, {
|
|
@@ -1733,85 +1828,80 @@ export declare const headersSchema: {
|
|
|
1733
1828
|
readonly maxLength: 4096;
|
|
1734
1829
|
};
|
|
1735
1830
|
readonly value: {
|
|
1736
|
-
description: string;
|
|
1737
|
-
anyOf:
|
|
1738
|
-
description:
|
|
1739
|
-
type: string;
|
|
1740
|
-
maxLength:
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
type:
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
};
|
|
1796
|
-
|
|
1797
|
-
description:
|
|
1798
|
-
type:
|
|
1799
|
-
};
|
|
1800
|
-
|
|
1801
|
-
description:
|
|
1802
|
-
type:
|
|
1803
|
-
};
|
|
1804
|
-
|
|
1805
|
-
description:
|
|
1806
|
-
type:
|
|
1807
|
-
};
|
|
1808
|
-
lte: {
|
|
1809
|
-
description: string;
|
|
1810
|
-
type: string;
|
|
1831
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
1832
|
+
readonly anyOf: readonly [{
|
|
1833
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
1834
|
+
readonly type: "string";
|
|
1835
|
+
readonly maxLength: 4096;
|
|
1836
|
+
}, {
|
|
1837
|
+
readonly description: "A condition operation object";
|
|
1838
|
+
readonly type: "object";
|
|
1839
|
+
readonly additionalProperties: false;
|
|
1840
|
+
readonly minProperties: 1;
|
|
1841
|
+
readonly properties: {
|
|
1842
|
+
readonly eq: {
|
|
1843
|
+
readonly description: "Equal to";
|
|
1844
|
+
readonly anyOf: readonly [{
|
|
1845
|
+
readonly type: "string";
|
|
1846
|
+
readonly maxLength: 4096;
|
|
1847
|
+
}, {
|
|
1848
|
+
readonly type: "number";
|
|
1849
|
+
}];
|
|
1850
|
+
};
|
|
1851
|
+
readonly neq: {
|
|
1852
|
+
readonly description: "Not equal";
|
|
1853
|
+
readonly type: "string";
|
|
1854
|
+
readonly maxLength: 4096;
|
|
1855
|
+
};
|
|
1856
|
+
readonly inc: {
|
|
1857
|
+
readonly description: "In array";
|
|
1858
|
+
readonly type: "array";
|
|
1859
|
+
readonly items: {
|
|
1860
|
+
readonly type: "string";
|
|
1861
|
+
readonly maxLength: 4096;
|
|
1862
|
+
};
|
|
1863
|
+
};
|
|
1864
|
+
readonly ninc: {
|
|
1865
|
+
readonly description: "Not in array";
|
|
1866
|
+
readonly type: "array";
|
|
1867
|
+
readonly items: {
|
|
1868
|
+
readonly type: "string";
|
|
1869
|
+
readonly maxLength: 4096;
|
|
1870
|
+
};
|
|
1871
|
+
};
|
|
1872
|
+
readonly pre: {
|
|
1873
|
+
readonly description: "Starts with";
|
|
1874
|
+
readonly type: "string";
|
|
1875
|
+
readonly maxLength: 4096;
|
|
1876
|
+
};
|
|
1877
|
+
readonly suf: {
|
|
1878
|
+
readonly description: "Ends with";
|
|
1879
|
+
readonly type: "string";
|
|
1880
|
+
readonly maxLength: 4096;
|
|
1881
|
+
};
|
|
1882
|
+
readonly re: {
|
|
1883
|
+
readonly description: "Regex";
|
|
1884
|
+
readonly type: "string";
|
|
1885
|
+
readonly maxLength: 4096;
|
|
1886
|
+
};
|
|
1887
|
+
readonly gt: {
|
|
1888
|
+
readonly description: "Greater than";
|
|
1889
|
+
readonly type: "number";
|
|
1890
|
+
};
|
|
1891
|
+
readonly gte: {
|
|
1892
|
+
readonly description: "Greater than or equal to";
|
|
1893
|
+
readonly type: "number";
|
|
1894
|
+
};
|
|
1895
|
+
readonly lt: {
|
|
1896
|
+
readonly description: "Less than";
|
|
1897
|
+
readonly type: "number";
|
|
1898
|
+
};
|
|
1899
|
+
readonly lte: {
|
|
1900
|
+
readonly description: "Less than or equal to";
|
|
1901
|
+
readonly type: "number";
|
|
1811
1902
|
};
|
|
1812
1903
|
};
|
|
1813
|
-
|
|
1814
|
-
})[];
|
|
1904
|
+
}];
|
|
1815
1905
|
};
|
|
1816
1906
|
};
|
|
1817
1907
|
}];
|
|
@@ -1833,85 +1923,80 @@ export declare const headersSchema: {
|
|
|
1833
1923
|
readonly enum: readonly ["host"];
|
|
1834
1924
|
};
|
|
1835
1925
|
readonly value: {
|
|
1836
|
-
description: string;
|
|
1837
|
-
anyOf:
|
|
1838
|
-
description:
|
|
1839
|
-
type: string;
|
|
1840
|
-
maxLength:
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
type:
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
};
|
|
1896
|
-
|
|
1897
|
-
description:
|
|
1898
|
-
type:
|
|
1899
|
-
};
|
|
1900
|
-
|
|
1901
|
-
description:
|
|
1902
|
-
type:
|
|
1903
|
-
};
|
|
1904
|
-
|
|
1905
|
-
description:
|
|
1906
|
-
type:
|
|
1907
|
-
};
|
|
1908
|
-
lte: {
|
|
1909
|
-
description: string;
|
|
1910
|
-
type: string;
|
|
1926
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
1927
|
+
readonly anyOf: readonly [{
|
|
1928
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
1929
|
+
readonly type: "string";
|
|
1930
|
+
readonly maxLength: 4096;
|
|
1931
|
+
}, {
|
|
1932
|
+
readonly description: "A condition operation object";
|
|
1933
|
+
readonly type: "object";
|
|
1934
|
+
readonly additionalProperties: false;
|
|
1935
|
+
readonly minProperties: 1;
|
|
1936
|
+
readonly properties: {
|
|
1937
|
+
readonly eq: {
|
|
1938
|
+
readonly description: "Equal to";
|
|
1939
|
+
readonly anyOf: readonly [{
|
|
1940
|
+
readonly type: "string";
|
|
1941
|
+
readonly maxLength: 4096;
|
|
1942
|
+
}, {
|
|
1943
|
+
readonly type: "number";
|
|
1944
|
+
}];
|
|
1945
|
+
};
|
|
1946
|
+
readonly neq: {
|
|
1947
|
+
readonly description: "Not equal";
|
|
1948
|
+
readonly type: "string";
|
|
1949
|
+
readonly maxLength: 4096;
|
|
1950
|
+
};
|
|
1951
|
+
readonly inc: {
|
|
1952
|
+
readonly description: "In array";
|
|
1953
|
+
readonly type: "array";
|
|
1954
|
+
readonly items: {
|
|
1955
|
+
readonly type: "string";
|
|
1956
|
+
readonly maxLength: 4096;
|
|
1957
|
+
};
|
|
1958
|
+
};
|
|
1959
|
+
readonly ninc: {
|
|
1960
|
+
readonly description: "Not in array";
|
|
1961
|
+
readonly type: "array";
|
|
1962
|
+
readonly items: {
|
|
1963
|
+
readonly type: "string";
|
|
1964
|
+
readonly maxLength: 4096;
|
|
1965
|
+
};
|
|
1966
|
+
};
|
|
1967
|
+
readonly pre: {
|
|
1968
|
+
readonly description: "Starts with";
|
|
1969
|
+
readonly type: "string";
|
|
1970
|
+
readonly maxLength: 4096;
|
|
1971
|
+
};
|
|
1972
|
+
readonly suf: {
|
|
1973
|
+
readonly description: "Ends with";
|
|
1974
|
+
readonly type: "string";
|
|
1975
|
+
readonly maxLength: 4096;
|
|
1976
|
+
};
|
|
1977
|
+
readonly re: {
|
|
1978
|
+
readonly description: "Regex";
|
|
1979
|
+
readonly type: "string";
|
|
1980
|
+
readonly maxLength: 4096;
|
|
1981
|
+
};
|
|
1982
|
+
readonly gt: {
|
|
1983
|
+
readonly description: "Greater than";
|
|
1984
|
+
readonly type: "number";
|
|
1985
|
+
};
|
|
1986
|
+
readonly gte: {
|
|
1987
|
+
readonly description: "Greater than or equal to";
|
|
1988
|
+
readonly type: "number";
|
|
1989
|
+
};
|
|
1990
|
+
readonly lt: {
|
|
1991
|
+
readonly description: "Less than";
|
|
1992
|
+
readonly type: "number";
|
|
1993
|
+
};
|
|
1994
|
+
readonly lte: {
|
|
1995
|
+
readonly description: "Less than or equal to";
|
|
1996
|
+
readonly type: "number";
|
|
1911
1997
|
};
|
|
1912
1998
|
};
|
|
1913
|
-
|
|
1914
|
-
})[];
|
|
1999
|
+
}];
|
|
1915
2000
|
};
|
|
1916
2001
|
};
|
|
1917
2002
|
}, {
|
|
@@ -1930,85 +2015,80 @@ export declare const headersSchema: {
|
|
|
1930
2015
|
readonly maxLength: 4096;
|
|
1931
2016
|
};
|
|
1932
2017
|
readonly value: {
|
|
1933
|
-
description: string;
|
|
1934
|
-
anyOf:
|
|
1935
|
-
description:
|
|
1936
|
-
type: string;
|
|
1937
|
-
maxLength:
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
type:
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
};
|
|
1993
|
-
|
|
1994
|
-
description:
|
|
1995
|
-
type:
|
|
1996
|
-
};
|
|
1997
|
-
|
|
1998
|
-
description:
|
|
1999
|
-
type:
|
|
2000
|
-
};
|
|
2001
|
-
|
|
2002
|
-
description:
|
|
2003
|
-
type:
|
|
2004
|
-
};
|
|
2005
|
-
lte: {
|
|
2006
|
-
description: string;
|
|
2007
|
-
type: string;
|
|
2018
|
+
readonly description: "A value to match against. Can be a string (regex) or a condition operation object";
|
|
2019
|
+
readonly anyOf: readonly [{
|
|
2020
|
+
readonly description: "A regular expression used to match thev value. Named groups can be used in the destination.";
|
|
2021
|
+
readonly type: "string";
|
|
2022
|
+
readonly maxLength: 4096;
|
|
2023
|
+
}, {
|
|
2024
|
+
readonly description: "A condition operation object";
|
|
2025
|
+
readonly type: "object";
|
|
2026
|
+
readonly additionalProperties: false;
|
|
2027
|
+
readonly minProperties: 1;
|
|
2028
|
+
readonly properties: {
|
|
2029
|
+
readonly eq: {
|
|
2030
|
+
readonly description: "Equal to";
|
|
2031
|
+
readonly anyOf: readonly [{
|
|
2032
|
+
readonly type: "string";
|
|
2033
|
+
readonly maxLength: 4096;
|
|
2034
|
+
}, {
|
|
2035
|
+
readonly type: "number";
|
|
2036
|
+
}];
|
|
2037
|
+
};
|
|
2038
|
+
readonly neq: {
|
|
2039
|
+
readonly description: "Not equal";
|
|
2040
|
+
readonly type: "string";
|
|
2041
|
+
readonly maxLength: 4096;
|
|
2042
|
+
};
|
|
2043
|
+
readonly inc: {
|
|
2044
|
+
readonly description: "In array";
|
|
2045
|
+
readonly type: "array";
|
|
2046
|
+
readonly items: {
|
|
2047
|
+
readonly type: "string";
|
|
2048
|
+
readonly maxLength: 4096;
|
|
2049
|
+
};
|
|
2050
|
+
};
|
|
2051
|
+
readonly ninc: {
|
|
2052
|
+
readonly description: "Not in array";
|
|
2053
|
+
readonly type: "array";
|
|
2054
|
+
readonly items: {
|
|
2055
|
+
readonly type: "string";
|
|
2056
|
+
readonly maxLength: 4096;
|
|
2057
|
+
};
|
|
2058
|
+
};
|
|
2059
|
+
readonly pre: {
|
|
2060
|
+
readonly description: "Starts with";
|
|
2061
|
+
readonly type: "string";
|
|
2062
|
+
readonly maxLength: 4096;
|
|
2063
|
+
};
|
|
2064
|
+
readonly suf: {
|
|
2065
|
+
readonly description: "Ends with";
|
|
2066
|
+
readonly type: "string";
|
|
2067
|
+
readonly maxLength: 4096;
|
|
2068
|
+
};
|
|
2069
|
+
readonly re: {
|
|
2070
|
+
readonly description: "Regex";
|
|
2071
|
+
readonly type: "string";
|
|
2072
|
+
readonly maxLength: 4096;
|
|
2073
|
+
};
|
|
2074
|
+
readonly gt: {
|
|
2075
|
+
readonly description: "Greater than";
|
|
2076
|
+
readonly type: "number";
|
|
2077
|
+
};
|
|
2078
|
+
readonly gte: {
|
|
2079
|
+
readonly description: "Greater than or equal to";
|
|
2080
|
+
readonly type: "number";
|
|
2081
|
+
};
|
|
2082
|
+
readonly lt: {
|
|
2083
|
+
readonly description: "Less than";
|
|
2084
|
+
readonly type: "number";
|
|
2085
|
+
};
|
|
2086
|
+
readonly lte: {
|
|
2087
|
+
readonly description: "Less than or equal to";
|
|
2088
|
+
readonly type: "number";
|
|
2008
2089
|
};
|
|
2009
2090
|
};
|
|
2010
|
-
|
|
2011
|
-
})[];
|
|
2091
|
+
}];
|
|
2012
2092
|
};
|
|
2013
2093
|
};
|
|
2014
2094
|
}];
|