@scalar/workspace-store 0.8.0 → 0.10.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/CHANGELOG.md +27 -0
- package/README.md +15 -0
- package/dist/client.d.ts +10 -3
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +50 -1
- package/dist/client.js.map +2 -2
- package/dist/helpers/general.d.ts +25 -0
- package/dist/helpers/general.d.ts.map +1 -1
- package/dist/helpers/general.js +4 -0
- package/dist/helpers/general.js.map +2 -2
- package/dist/helpers/proxy.d.ts +1 -1
- package/dist/helpers/proxy.d.ts.map +1 -1
- package/dist/helpers/proxy.js +2 -2
- package/dist/helpers/proxy.js.map +2 -2
- package/dist/mutators/helpers.d.ts +2665 -2325
- package/dist/mutators/helpers.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-description.d.ts +2 -1
- package/dist/navigation/helpers/traverse-description.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-description.js.map +2 -2
- package/dist/navigation/helpers/traverse-document.d.ts +89 -2
- package/dist/navigation/helpers/traverse-document.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-document.js.map +2 -2
- package/dist/navigation/helpers/traverse-paths.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-paths.js.map +2 -2
- package/dist/navigation/helpers/traverse-schemas.d.ts +2 -1
- package/dist/navigation/helpers/traverse-schemas.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-schemas.js.map +2 -2
- package/dist/navigation/helpers/traverse-tags.d.ts +2 -1
- package/dist/navigation/helpers/traverse-tags.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-tags.js.map +2 -2
- package/dist/navigation/helpers/traverse-webhooks.d.ts +2 -1
- package/dist/navigation/helpers/traverse-webhooks.d.ts.map +1 -1
- package/dist/navigation/helpers/traverse-webhooks.js.map +2 -2
- package/dist/navigation/types.d.ts +1 -39
- package/dist/navigation/types.d.ts.map +1 -1
- package/dist/schemas/inmemory-workspace.d.ts +68 -0
- package/dist/schemas/inmemory-workspace.d.ts.map +1 -0
- package/dist/schemas/inmemory-workspace.js +14 -0
- package/dist/schemas/inmemory-workspace.js.map +7 -0
- package/dist/schemas/navigation.d.ts +148 -0
- package/dist/schemas/navigation.d.ts.map +1 -0
- package/dist/schemas/navigation.js +76 -0
- package/dist/schemas/navigation.js.map +7 -0
- package/dist/schemas/v3.1/strict/callback.d.ts +8 -1
- package/dist/schemas/v3.1/strict/callback.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/callback.js +2 -1
- package/dist/schemas/v3.1/strict/callback.js.map +2 -2
- package/dist/schemas/v3.1/strict/openapi-document.d.ts +47 -0
- package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/openapi-document.js +4 -1
- package/dist/schemas/v3.1/strict/openapi-document.js.map +2 -2
- package/dist/schemas/v3.1/strict/path-operations.d.ts +90 -13
- package/dist/schemas/v3.1/strict/path-operations.d.ts.map +1 -1
- package/dist/schemas/v3.1/strict/paths.d.ts +72 -9
- package/dist/schemas/v3.1/strict/paths.d.ts.map +1 -1
- package/dist/schemas/workspace-specification/index.d.ts +48 -1
- package/dist/schemas/workspace-specification/index.d.ts.map +1 -1
- package/dist/schemas/workspace.d.ts +2 -2
- package/dist/schemas/workspace.d.ts.map +1 -1
- package/dist/schemas/workspace.js +2 -1
- package/dist/schemas/workspace.js.map +2 -2
- package/dist/server.d.ts +268 -250
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js.map +1 -1
- package/package.json +5 -5
package/dist/server.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { extensions } from './schemas/extensions.js';
|
|
|
4
4
|
import { type OpenApiDocument } from './schemas/v3.1/strict/openapi-document.js';
|
|
5
5
|
import type { PathsObject } from './schemas/v3.1/strict/paths.js';
|
|
6
6
|
import type { OperationObject } from './schemas/v3.1/strict/path-operations.js';
|
|
7
|
-
import type { TraversedEntry } from './navigation
|
|
7
|
+
import type { TraversedEntry } from './schemas/navigation.js';
|
|
8
8
|
export declare const WORKSPACE_FILE_NAME = "scalar-workspace.json";
|
|
9
9
|
type WorkspaceDocumentMetaInput = {
|
|
10
10
|
name: string;
|
|
@@ -55,8 +55,8 @@ type CreateServerWorkspaceStore = ({
|
|
|
55
55
|
* }
|
|
56
56
|
*/
|
|
57
57
|
export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string, Record<string, ({
|
|
58
|
-
description?: string | undefined;
|
|
59
58
|
summary?: string | undefined;
|
|
59
|
+
description?: string | undefined;
|
|
60
60
|
externalDocs?: ({
|
|
61
61
|
description?: string | undefined;
|
|
62
62
|
url: string;
|
|
@@ -66,8 +66,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
66
66
|
deprecated?: boolean | undefined;
|
|
67
67
|
operationId?: string | undefined;
|
|
68
68
|
parameters?: (({
|
|
69
|
-
description?: string | undefined;
|
|
70
69
|
summary?: string | undefined;
|
|
70
|
+
description?: string | undefined;
|
|
71
71
|
$ref: string;
|
|
72
72
|
} & {
|
|
73
73
|
$status?: "loading" | "error" | undefined;
|
|
@@ -80,14 +80,14 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
80
80
|
deprecated?: boolean | undefined;
|
|
81
81
|
allowEmptyValue?: boolean | undefined;
|
|
82
82
|
name: string;
|
|
83
|
-
in: "
|
|
83
|
+
in: "path" | "query" | "header" | "cookie";
|
|
84
84
|
} & {
|
|
85
85
|
[x: `x-${string}`]: unknown;
|
|
86
86
|
} & {
|
|
87
87
|
examples?: {
|
|
88
88
|
[x: string]: ({
|
|
89
|
-
description?: string | undefined;
|
|
90
89
|
summary?: string | undefined;
|
|
90
|
+
description?: string | undefined;
|
|
91
91
|
$ref: string;
|
|
92
92
|
} & {
|
|
93
93
|
$status?: "loading" | "error" | undefined;
|
|
@@ -95,8 +95,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
95
95
|
} & {
|
|
96
96
|
[x: `x-${string}`]: unknown;
|
|
97
97
|
}) | ({
|
|
98
|
-
description?: string | undefined;
|
|
99
98
|
summary?: string | undefined;
|
|
99
|
+
description?: string | undefined;
|
|
100
100
|
value?: any;
|
|
101
101
|
externalValue?: string | undefined;
|
|
102
102
|
} & {
|
|
@@ -106,8 +106,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
106
106
|
style?: string | undefined;
|
|
107
107
|
explode?: boolean | undefined;
|
|
108
108
|
schema?: ({
|
|
109
|
-
description?: string | undefined;
|
|
110
109
|
summary?: string | undefined;
|
|
110
|
+
description?: string | undefined;
|
|
111
111
|
$ref: string;
|
|
112
112
|
} & {
|
|
113
113
|
$status?: "loading" | "error" | undefined;
|
|
@@ -154,7 +154,7 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
154
154
|
deprecated?: boolean | undefined;
|
|
155
155
|
allowEmptyValue?: boolean | undefined;
|
|
156
156
|
name: string;
|
|
157
|
-
in: "
|
|
157
|
+
in: "path" | "query" | "header" | "cookie";
|
|
158
158
|
} & {
|
|
159
159
|
[x: `x-${string}`]: unknown;
|
|
160
160
|
} & {
|
|
@@ -163,15 +163,15 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
163
163
|
example?: any;
|
|
164
164
|
examples?: {
|
|
165
165
|
[x: string]: ({
|
|
166
|
-
description?: string | undefined;
|
|
167
166
|
summary?: string | undefined;
|
|
167
|
+
description?: string | undefined;
|
|
168
168
|
value?: any;
|
|
169
169
|
externalValue?: string | undefined;
|
|
170
170
|
} & {
|
|
171
171
|
[x: `x-${string}`]: unknown;
|
|
172
172
|
}) | ({
|
|
173
|
-
description?: string | undefined;
|
|
174
173
|
summary?: string | undefined;
|
|
174
|
+
description?: string | undefined;
|
|
175
175
|
$ref: string;
|
|
176
176
|
} & {
|
|
177
177
|
$status?: "loading" | "error" | undefined;
|
|
@@ -218,8 +218,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
218
218
|
contentType?: string | undefined;
|
|
219
219
|
headers?: {
|
|
220
220
|
[x: string]: ({
|
|
221
|
-
description?: string | undefined;
|
|
222
221
|
summary?: string | undefined;
|
|
222
|
+
description?: string | undefined;
|
|
223
223
|
$ref: string;
|
|
224
224
|
} & {
|
|
225
225
|
$status?: "loading" | "error" | undefined;
|
|
@@ -235,15 +235,15 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
235
235
|
} & {
|
|
236
236
|
examples?: {
|
|
237
237
|
[x: string]: ({
|
|
238
|
-
description?: string | undefined;
|
|
239
238
|
summary?: string | undefined;
|
|
239
|
+
description?: string | undefined;
|
|
240
240
|
value?: any;
|
|
241
241
|
externalValue?: string | undefined;
|
|
242
242
|
} & {
|
|
243
243
|
[x: `x-${string}`]: unknown;
|
|
244
244
|
}) | ({
|
|
245
|
-
description?: string | undefined;
|
|
246
245
|
summary?: string | undefined;
|
|
246
|
+
description?: string | undefined;
|
|
247
247
|
$ref: string;
|
|
248
248
|
} & {
|
|
249
249
|
$status?: "loading" | "error" | undefined;
|
|
@@ -255,8 +255,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
255
255
|
style?: string | undefined;
|
|
256
256
|
explode?: boolean | undefined;
|
|
257
257
|
schema?: ({
|
|
258
|
-
description?: string | undefined;
|
|
259
258
|
summary?: string | undefined;
|
|
259
|
+
description?: string | undefined;
|
|
260
260
|
$ref: string;
|
|
261
261
|
} & {
|
|
262
262
|
$status?: "loading" | "error" | undefined;
|
|
@@ -321,8 +321,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
321
321
|
} | undefined;
|
|
322
322
|
}))[] | undefined;
|
|
323
323
|
requestBody?: ({
|
|
324
|
-
description?: string | undefined;
|
|
325
324
|
summary?: string | undefined;
|
|
325
|
+
description?: string | undefined;
|
|
326
326
|
$ref: string;
|
|
327
327
|
} & {
|
|
328
328
|
$status?: "loading" | "error" | undefined;
|
|
@@ -337,15 +337,15 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
337
337
|
example?: any;
|
|
338
338
|
examples?: {
|
|
339
339
|
[x: string]: ({
|
|
340
|
-
description?: string | undefined;
|
|
341
340
|
summary?: string | undefined;
|
|
341
|
+
description?: string | undefined;
|
|
342
342
|
value?: any;
|
|
343
343
|
externalValue?: string | undefined;
|
|
344
344
|
} & {
|
|
345
345
|
[x: `x-${string}`]: unknown;
|
|
346
346
|
}) | ({
|
|
347
|
-
description?: string | undefined;
|
|
348
347
|
summary?: string | undefined;
|
|
348
|
+
description?: string | undefined;
|
|
349
349
|
$ref: string;
|
|
350
350
|
} & {
|
|
351
351
|
$status?: "loading" | "error" | undefined;
|
|
@@ -392,8 +392,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
392
392
|
contentType?: string | undefined;
|
|
393
393
|
headers?: {
|
|
394
394
|
[x: string]: ({
|
|
395
|
-
description?: string | undefined;
|
|
396
395
|
summary?: string | undefined;
|
|
396
|
+
description?: string | undefined;
|
|
397
397
|
$ref: string;
|
|
398
398
|
} & {
|
|
399
399
|
$status?: "loading" | "error" | undefined;
|
|
@@ -409,15 +409,15 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
409
409
|
} & {
|
|
410
410
|
examples?: {
|
|
411
411
|
[x: string]: ({
|
|
412
|
-
description?: string | undefined;
|
|
413
412
|
summary?: string | undefined;
|
|
413
|
+
description?: string | undefined;
|
|
414
414
|
value?: any;
|
|
415
415
|
externalValue?: string | undefined;
|
|
416
416
|
} & {
|
|
417
417
|
[x: `x-${string}`]: unknown;
|
|
418
418
|
}) | ({
|
|
419
|
-
description?: string | undefined;
|
|
420
419
|
summary?: string | undefined;
|
|
420
|
+
description?: string | undefined;
|
|
421
421
|
$ref: string;
|
|
422
422
|
} & {
|
|
423
423
|
$status?: "loading" | "error" | undefined;
|
|
@@ -429,8 +429,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
429
429
|
style?: string | undefined;
|
|
430
430
|
explode?: boolean | undefined;
|
|
431
431
|
schema?: ({
|
|
432
|
-
description?: string | undefined;
|
|
433
432
|
summary?: string | undefined;
|
|
433
|
+
description?: string | undefined;
|
|
434
434
|
$ref: string;
|
|
435
435
|
} & {
|
|
436
436
|
$status?: "loading" | "error" | undefined;
|
|
@@ -499,8 +499,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
499
499
|
tags?: string[] | undefined;
|
|
500
500
|
responses?: ({
|
|
501
501
|
[x: string]: ({
|
|
502
|
-
description?: string | undefined;
|
|
503
502
|
summary?: string | undefined;
|
|
503
|
+
description?: string | undefined;
|
|
504
504
|
$ref: string;
|
|
505
505
|
} & {
|
|
506
506
|
$status?: "loading" | "error" | undefined;
|
|
@@ -518,35 +518,26 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
518
518
|
} & {
|
|
519
519
|
examples?: {
|
|
520
520
|
[x: string]: ({
|
|
521
|
-
description?: string | undefined;
|
|
522
521
|
summary?: string | undefined;
|
|
523
|
-
value?: any;
|
|
524
|
-
externalValue?: string | undefined;
|
|
525
|
-
} & {
|
|
526
|
-
[x: `x-${string}`]: unknown;
|
|
527
|
-
}) | ({
|
|
528
522
|
description?: string | undefined;
|
|
529
|
-
summary?: string | undefined;
|
|
530
523
|
$ref: string;
|
|
531
524
|
} & {
|
|
532
525
|
$status?: "loading" | "error" | undefined;
|
|
533
526
|
$global?: boolean | undefined;
|
|
534
527
|
} & {
|
|
535
528
|
[x: `x-${string}`]: unknown;
|
|
529
|
+
}) | ({
|
|
530
|
+
summary?: string | undefined;
|
|
531
|
+
description?: string | undefined;
|
|
532
|
+
value?: any;
|
|
533
|
+
externalValue?: string | undefined;
|
|
534
|
+
} & {
|
|
535
|
+
[x: `x-${string}`]: unknown;
|
|
536
536
|
});
|
|
537
537
|
} | undefined;
|
|
538
538
|
style?: string | undefined;
|
|
539
539
|
explode?: boolean | undefined;
|
|
540
540
|
schema?: ({
|
|
541
|
-
description?: string | undefined;
|
|
542
|
-
summary?: string | undefined;
|
|
543
|
-
$ref: string;
|
|
544
|
-
} & {
|
|
545
|
-
$status?: "loading" | "error" | undefined;
|
|
546
|
-
$global?: boolean | undefined;
|
|
547
|
-
} & {
|
|
548
|
-
[x: `x-${string}`]: unknown;
|
|
549
|
-
}) | ({
|
|
550
541
|
discriminator?: ({
|
|
551
542
|
mapping?: {
|
|
552
543
|
[x: string]: string;
|
|
@@ -578,6 +569,15 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
578
569
|
'x-tags'?: string[] | undefined;
|
|
579
570
|
} & {
|
|
580
571
|
[x: string]: unknown;
|
|
572
|
+
}) | ({
|
|
573
|
+
summary?: string | undefined;
|
|
574
|
+
description?: string | undefined;
|
|
575
|
+
$ref: string;
|
|
576
|
+
} & {
|
|
577
|
+
$status?: "loading" | "error" | undefined;
|
|
578
|
+
$global?: boolean | undefined;
|
|
579
|
+
} & {
|
|
580
|
+
[x: `x-${string}`]: unknown;
|
|
581
581
|
}) | undefined;
|
|
582
582
|
example: any;
|
|
583
583
|
}) | ({
|
|
@@ -592,21 +592,21 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
592
592
|
example?: any;
|
|
593
593
|
examples?: {
|
|
594
594
|
[x: string]: ({
|
|
595
|
-
description?: string | undefined;
|
|
596
595
|
summary?: string | undefined;
|
|
597
|
-
value?: any;
|
|
598
|
-
externalValue?: string | undefined;
|
|
599
|
-
} & {
|
|
600
|
-
[x: `x-${string}`]: unknown;
|
|
601
|
-
}) | ({
|
|
602
596
|
description?: string | undefined;
|
|
603
|
-
summary?: string | undefined;
|
|
604
597
|
$ref: string;
|
|
605
598
|
} & {
|
|
606
599
|
$status?: "loading" | "error" | undefined;
|
|
607
600
|
$global?: boolean | undefined;
|
|
608
601
|
} & {
|
|
609
602
|
[x: `x-${string}`]: unknown;
|
|
603
|
+
}) | ({
|
|
604
|
+
summary?: string | undefined;
|
|
605
|
+
description?: string | undefined;
|
|
606
|
+
value?: any;
|
|
607
|
+
externalValue?: string | undefined;
|
|
608
|
+
} & {
|
|
609
|
+
[x: `x-${string}`]: unknown;
|
|
610
610
|
});
|
|
611
611
|
} | undefined;
|
|
612
612
|
schema?: ({
|
|
@@ -655,35 +655,26 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
655
655
|
} & {
|
|
656
656
|
examples?: {
|
|
657
657
|
[x: string]: ({
|
|
658
|
-
description?: string | undefined;
|
|
659
658
|
summary?: string | undefined;
|
|
660
|
-
value?: any;
|
|
661
|
-
externalValue?: string | undefined;
|
|
662
|
-
} & {
|
|
663
|
-
[x: `x-${string}`]: unknown;
|
|
664
|
-
}) | ({
|
|
665
659
|
description?: string | undefined;
|
|
666
|
-
summary?: string | undefined;
|
|
667
660
|
$ref: string;
|
|
668
661
|
} & {
|
|
669
662
|
$status?: "loading" | "error" | undefined;
|
|
670
663
|
$global?: boolean | undefined;
|
|
671
664
|
} & {
|
|
672
665
|
[x: `x-${string}`]: unknown;
|
|
666
|
+
}) | ({
|
|
667
|
+
summary?: string | undefined;
|
|
668
|
+
description?: string | undefined;
|
|
669
|
+
value?: any;
|
|
670
|
+
externalValue?: string | undefined;
|
|
671
|
+
} & {
|
|
672
|
+
[x: `x-${string}`]: unknown;
|
|
673
673
|
});
|
|
674
674
|
} | undefined;
|
|
675
675
|
style?: string | undefined;
|
|
676
676
|
explode?: boolean | undefined;
|
|
677
677
|
schema?: ({
|
|
678
|
-
description?: string | undefined;
|
|
679
|
-
summary?: string | undefined;
|
|
680
|
-
$ref: string;
|
|
681
|
-
} & {
|
|
682
|
-
$status?: "loading" | "error" | undefined;
|
|
683
|
-
$global?: boolean | undefined;
|
|
684
|
-
} & {
|
|
685
|
-
[x: `x-${string}`]: unknown;
|
|
686
|
-
}) | ({
|
|
687
678
|
discriminator?: ({
|
|
688
679
|
mapping?: {
|
|
689
680
|
[x: string]: string;
|
|
@@ -715,6 +706,15 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
715
706
|
'x-tags'?: string[] | undefined;
|
|
716
707
|
} & {
|
|
717
708
|
[x: string]: unknown;
|
|
709
|
+
}) | ({
|
|
710
|
+
summary?: string | undefined;
|
|
711
|
+
description?: string | undefined;
|
|
712
|
+
$ref: string;
|
|
713
|
+
} & {
|
|
714
|
+
$status?: "loading" | "error" | undefined;
|
|
715
|
+
$global?: boolean | undefined;
|
|
716
|
+
} & {
|
|
717
|
+
[x: `x-${string}`]: unknown;
|
|
718
718
|
}) | undefined;
|
|
719
719
|
example: any;
|
|
720
720
|
}) | ({
|
|
@@ -724,8 +724,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
724
724
|
} & {
|
|
725
725
|
[x: `x-${string}`]: unknown;
|
|
726
726
|
} & any) | ({
|
|
727
|
-
description?: string | undefined;
|
|
728
727
|
summary?: string | undefined;
|
|
728
|
+
description?: string | undefined;
|
|
729
729
|
$ref: string;
|
|
730
730
|
} & {
|
|
731
731
|
$status?: "loading" | "error" | undefined;
|
|
@@ -743,8 +743,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
743
743
|
};
|
|
744
744
|
} | undefined;
|
|
745
745
|
}) | ({
|
|
746
|
-
description?: string | undefined;
|
|
747
746
|
summary?: string | undefined;
|
|
747
|
+
description?: string | undefined;
|
|
748
748
|
$ref: string;
|
|
749
749
|
} & {
|
|
750
750
|
$status?: "loading" | "error" | undefined;
|
|
@@ -758,15 +758,15 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
758
758
|
example?: any;
|
|
759
759
|
examples?: {
|
|
760
760
|
[x: string]: ({
|
|
761
|
-
description?: string | undefined;
|
|
762
761
|
summary?: string | undefined;
|
|
762
|
+
description?: string | undefined;
|
|
763
763
|
value?: any;
|
|
764
764
|
externalValue?: string | undefined;
|
|
765
765
|
} & {
|
|
766
766
|
[x: `x-${string}`]: unknown;
|
|
767
767
|
}) | ({
|
|
768
|
-
description?: string | undefined;
|
|
769
768
|
summary?: string | undefined;
|
|
769
|
+
description?: string | undefined;
|
|
770
770
|
$ref: string;
|
|
771
771
|
} & {
|
|
772
772
|
$status?: "loading" | "error" | undefined;
|
|
@@ -813,8 +813,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
813
813
|
contentType?: string | undefined;
|
|
814
814
|
headers?: {
|
|
815
815
|
[x: string]: ({
|
|
816
|
-
description?: string | undefined;
|
|
817
816
|
summary?: string | undefined;
|
|
817
|
+
description?: string | undefined;
|
|
818
818
|
$ref: string;
|
|
819
819
|
} & {
|
|
820
820
|
$status?: "loading" | "error" | undefined;
|
|
@@ -830,15 +830,15 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
830
830
|
} & {
|
|
831
831
|
examples?: {
|
|
832
832
|
[x: string]: ({
|
|
833
|
-
description?: string | undefined;
|
|
834
833
|
summary?: string | undefined;
|
|
834
|
+
description?: string | undefined;
|
|
835
835
|
value?: any;
|
|
836
836
|
externalValue?: string | undefined;
|
|
837
837
|
} & {
|
|
838
838
|
[x: `x-${string}`]: unknown;
|
|
839
839
|
}) | ({
|
|
840
|
-
description?: string | undefined;
|
|
841
840
|
summary?: string | undefined;
|
|
841
|
+
description?: string | undefined;
|
|
842
842
|
$ref: string;
|
|
843
843
|
} & {
|
|
844
844
|
$status?: "loading" | "error" | undefined;
|
|
@@ -850,8 +850,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
850
850
|
style?: string | undefined;
|
|
851
851
|
explode?: boolean | undefined;
|
|
852
852
|
schema?: ({
|
|
853
|
-
description?: string | undefined;
|
|
854
853
|
summary?: string | undefined;
|
|
854
|
+
description?: string | undefined;
|
|
855
855
|
$ref: string;
|
|
856
856
|
} & {
|
|
857
857
|
$status?: "loading" | "error" | undefined;
|
|
@@ -916,8 +916,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
916
916
|
} | undefined;
|
|
917
917
|
links?: {
|
|
918
918
|
[x: string]: ({
|
|
919
|
-
description?: string | undefined;
|
|
920
919
|
summary?: string | undefined;
|
|
920
|
+
description?: string | undefined;
|
|
921
921
|
$ref: string;
|
|
922
922
|
} & {
|
|
923
923
|
$status?: "loading" | "error" | undefined;
|
|
@@ -980,8 +980,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
980
980
|
})[] | undefined;
|
|
981
981
|
callbacks?: {
|
|
982
982
|
[x: string]: ({
|
|
983
|
-
description?: string | undefined;
|
|
984
983
|
summary?: string | undefined;
|
|
984
|
+
description?: string | undefined;
|
|
985
985
|
$ref: string;
|
|
986
986
|
} & {
|
|
987
987
|
$status?: "loading" | "error" | undefined;
|
|
@@ -989,13 +989,22 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
989
989
|
} & {
|
|
990
990
|
[x: `x-${string}`]: unknown;
|
|
991
991
|
}) | ({
|
|
992
|
-
[x: string]: {
|
|
992
|
+
[x: string]: ({
|
|
993
|
+
summary?: string | undefined;
|
|
993
994
|
description?: string | undefined;
|
|
995
|
+
$ref: string;
|
|
996
|
+
} & {
|
|
997
|
+
$status?: "loading" | "error" | undefined;
|
|
998
|
+
$global?: boolean | undefined;
|
|
999
|
+
} & {
|
|
1000
|
+
[x: `x-${string}`]: unknown;
|
|
1001
|
+
}) | ({
|
|
994
1002
|
$ref?: string | undefined;
|
|
995
1003
|
summary?: string | undefined;
|
|
1004
|
+
description?: string | undefined;
|
|
996
1005
|
parameters?: (({
|
|
997
|
-
description?: string | undefined;
|
|
998
1006
|
summary?: string | undefined;
|
|
1007
|
+
description?: string | undefined;
|
|
999
1008
|
$ref: string;
|
|
1000
1009
|
} & {
|
|
1001
1010
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1008,14 +1017,14 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1008
1017
|
deprecated?: boolean | undefined;
|
|
1009
1018
|
allowEmptyValue?: boolean | undefined;
|
|
1010
1019
|
name: string;
|
|
1011
|
-
in: "
|
|
1020
|
+
in: "path" | "query" | "header" | "cookie";
|
|
1012
1021
|
} & {
|
|
1013
1022
|
[x: `x-${string}`]: unknown;
|
|
1014
1023
|
} & {
|
|
1015
1024
|
examples?: {
|
|
1016
1025
|
[x: string]: ({
|
|
1017
|
-
description?: string | undefined;
|
|
1018
1026
|
summary?: string | undefined;
|
|
1027
|
+
description?: string | undefined;
|
|
1019
1028
|
$ref: string;
|
|
1020
1029
|
} & {
|
|
1021
1030
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1023,8 +1032,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1023
1032
|
} & {
|
|
1024
1033
|
[x: `x-${string}`]: unknown;
|
|
1025
1034
|
}) | ({
|
|
1026
|
-
description?: string | undefined;
|
|
1027
1035
|
summary?: string | undefined;
|
|
1036
|
+
description?: string | undefined;
|
|
1028
1037
|
value?: any;
|
|
1029
1038
|
externalValue?: string | undefined;
|
|
1030
1039
|
} & {
|
|
@@ -1034,8 +1043,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1034
1043
|
style?: string | undefined;
|
|
1035
1044
|
explode?: boolean | undefined;
|
|
1036
1045
|
schema?: ({
|
|
1037
|
-
description?: string | undefined;
|
|
1038
1046
|
summary?: string | undefined;
|
|
1047
|
+
description?: string | undefined;
|
|
1039
1048
|
$ref: string;
|
|
1040
1049
|
} & {
|
|
1041
1050
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1082,7 +1091,7 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1082
1091
|
deprecated?: boolean | undefined;
|
|
1083
1092
|
allowEmptyValue?: boolean | undefined;
|
|
1084
1093
|
name: string;
|
|
1085
|
-
in: "
|
|
1094
|
+
in: "path" | "query" | "header" | "cookie";
|
|
1086
1095
|
} & {
|
|
1087
1096
|
[x: `x-${string}`]: unknown;
|
|
1088
1097
|
} & {
|
|
@@ -1091,15 +1100,15 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1091
1100
|
example?: any;
|
|
1092
1101
|
examples?: {
|
|
1093
1102
|
[x: string]: ({
|
|
1094
|
-
description?: string | undefined;
|
|
1095
1103
|
summary?: string | undefined;
|
|
1104
|
+
description?: string | undefined;
|
|
1096
1105
|
value?: any;
|
|
1097
1106
|
externalValue?: string | undefined;
|
|
1098
1107
|
} & {
|
|
1099
1108
|
[x: `x-${string}`]: unknown;
|
|
1100
1109
|
}) | ({
|
|
1101
|
-
description?: string | undefined;
|
|
1102
1110
|
summary?: string | undefined;
|
|
1111
|
+
description?: string | undefined;
|
|
1103
1112
|
$ref: string;
|
|
1104
1113
|
} & {
|
|
1105
1114
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1146,8 +1155,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1146
1155
|
contentType?: string | undefined;
|
|
1147
1156
|
headers?: {
|
|
1148
1157
|
[x: string]: ({
|
|
1149
|
-
description?: string | undefined;
|
|
1150
1158
|
summary?: string | undefined;
|
|
1159
|
+
description?: string | undefined;
|
|
1151
1160
|
$ref: string;
|
|
1152
1161
|
} & {
|
|
1153
1162
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1163,15 +1172,15 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1163
1172
|
} & {
|
|
1164
1173
|
examples?: {
|
|
1165
1174
|
[x: string]: ({
|
|
1166
|
-
description?: string | undefined;
|
|
1167
1175
|
summary?: string | undefined;
|
|
1176
|
+
description?: string | undefined;
|
|
1168
1177
|
value?: any;
|
|
1169
1178
|
externalValue?: string | undefined;
|
|
1170
1179
|
} & {
|
|
1171
1180
|
[x: `x-${string}`]: unknown;
|
|
1172
1181
|
}) | ({
|
|
1173
|
-
description?: string | undefined;
|
|
1174
1182
|
summary?: string | undefined;
|
|
1183
|
+
description?: string | undefined;
|
|
1175
1184
|
$ref: string;
|
|
1176
1185
|
} & {
|
|
1177
1186
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1183,8 +1192,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1183
1192
|
style?: string | undefined;
|
|
1184
1193
|
explode?: boolean | undefined;
|
|
1185
1194
|
schema?: ({
|
|
1186
|
-
description?: string | undefined;
|
|
1187
1195
|
summary?: string | undefined;
|
|
1196
|
+
description?: string | undefined;
|
|
1188
1197
|
$ref: string;
|
|
1189
1198
|
} & {
|
|
1190
1199
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1268,13 +1277,13 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1268
1277
|
[x: string]: {
|
|
1269
1278
|
name?: string | undefined;
|
|
1270
1279
|
parameters?: {
|
|
1271
|
-
|
|
1280
|
+
path?: {
|
|
1272
1281
|
[x: string]: string;
|
|
1273
1282
|
} | undefined;
|
|
1274
|
-
|
|
1283
|
+
query?: {
|
|
1275
1284
|
[x: string]: string;
|
|
1276
1285
|
} | undefined;
|
|
1277
|
-
|
|
1286
|
+
header?: {
|
|
1278
1287
|
[x: string]: string;
|
|
1279
1288
|
} | undefined;
|
|
1280
1289
|
cookie?: {
|
|
@@ -1296,8 +1305,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1296
1305
|
} & {
|
|
1297
1306
|
[x: `x-${string}`]: unknown;
|
|
1298
1307
|
}) | ({
|
|
1299
|
-
description?: string | undefined;
|
|
1300
1308
|
summary?: string | undefined;
|
|
1309
|
+
description?: string | undefined;
|
|
1301
1310
|
$ref: string;
|
|
1302
1311
|
} & {
|
|
1303
1312
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1310,13 +1319,13 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1310
1319
|
[x: string]: {
|
|
1311
1320
|
name?: string | undefined;
|
|
1312
1321
|
parameters?: {
|
|
1313
|
-
|
|
1322
|
+
path?: {
|
|
1314
1323
|
[x: string]: string;
|
|
1315
1324
|
} | undefined;
|
|
1316
|
-
|
|
1325
|
+
query?: {
|
|
1317
1326
|
[x: string]: string;
|
|
1318
1327
|
} | undefined;
|
|
1319
|
-
|
|
1328
|
+
header?: {
|
|
1320
1329
|
[x: string]: string;
|
|
1321
1330
|
} | undefined;
|
|
1322
1331
|
cookie?: {
|
|
@@ -1338,8 +1347,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1338
1347
|
} & {
|
|
1339
1348
|
[x: `x-${string}`]: unknown;
|
|
1340
1349
|
}) | ({
|
|
1341
|
-
description?: string | undefined;
|
|
1342
1350
|
summary?: string | undefined;
|
|
1351
|
+
description?: string | undefined;
|
|
1343
1352
|
$ref: string;
|
|
1344
1353
|
} & {
|
|
1345
1354
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1352,13 +1361,13 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1352
1361
|
[x: string]: {
|
|
1353
1362
|
name?: string | undefined;
|
|
1354
1363
|
parameters?: {
|
|
1355
|
-
|
|
1364
|
+
path?: {
|
|
1356
1365
|
[x: string]: string;
|
|
1357
1366
|
} | undefined;
|
|
1358
|
-
|
|
1367
|
+
query?: {
|
|
1359
1368
|
[x: string]: string;
|
|
1360
1369
|
} | undefined;
|
|
1361
|
-
|
|
1370
|
+
header?: {
|
|
1362
1371
|
[x: string]: string;
|
|
1363
1372
|
} | undefined;
|
|
1364
1373
|
cookie?: {
|
|
@@ -1380,8 +1389,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1380
1389
|
} & {
|
|
1381
1390
|
[x: `x-${string}`]: unknown;
|
|
1382
1391
|
}) | ({
|
|
1383
|
-
description?: string | undefined;
|
|
1384
1392
|
summary?: string | undefined;
|
|
1393
|
+
description?: string | undefined;
|
|
1385
1394
|
$ref: string;
|
|
1386
1395
|
} & {
|
|
1387
1396
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1394,13 +1403,13 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1394
1403
|
[x: string]: {
|
|
1395
1404
|
name?: string | undefined;
|
|
1396
1405
|
parameters?: {
|
|
1397
|
-
|
|
1406
|
+
path?: {
|
|
1398
1407
|
[x: string]: string;
|
|
1399
1408
|
} | undefined;
|
|
1400
|
-
|
|
1409
|
+
query?: {
|
|
1401
1410
|
[x: string]: string;
|
|
1402
1411
|
} | undefined;
|
|
1403
|
-
|
|
1412
|
+
header?: {
|
|
1404
1413
|
[x: string]: string;
|
|
1405
1414
|
} | undefined;
|
|
1406
1415
|
cookie?: {
|
|
@@ -1422,8 +1431,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1422
1431
|
} & {
|
|
1423
1432
|
[x: `x-${string}`]: unknown;
|
|
1424
1433
|
}) | ({
|
|
1425
|
-
description?: string | undefined;
|
|
1426
1434
|
summary?: string | undefined;
|
|
1435
|
+
description?: string | undefined;
|
|
1427
1436
|
$ref: string;
|
|
1428
1437
|
} & {
|
|
1429
1438
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1436,13 +1445,13 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1436
1445
|
[x: string]: {
|
|
1437
1446
|
name?: string | undefined;
|
|
1438
1447
|
parameters?: {
|
|
1439
|
-
|
|
1448
|
+
path?: {
|
|
1440
1449
|
[x: string]: string;
|
|
1441
1450
|
} | undefined;
|
|
1442
|
-
|
|
1451
|
+
query?: {
|
|
1443
1452
|
[x: string]: string;
|
|
1444
1453
|
} | undefined;
|
|
1445
|
-
|
|
1454
|
+
header?: {
|
|
1446
1455
|
[x: string]: string;
|
|
1447
1456
|
} | undefined;
|
|
1448
1457
|
cookie?: {
|
|
@@ -1464,8 +1473,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1464
1473
|
} & {
|
|
1465
1474
|
[x: `x-${string}`]: unknown;
|
|
1466
1475
|
}) | ({
|
|
1467
|
-
description?: string | undefined;
|
|
1468
1476
|
summary?: string | undefined;
|
|
1477
|
+
description?: string | undefined;
|
|
1469
1478
|
$ref: string;
|
|
1470
1479
|
} & {
|
|
1471
1480
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1478,13 +1487,13 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1478
1487
|
[x: string]: {
|
|
1479
1488
|
name?: string | undefined;
|
|
1480
1489
|
parameters?: {
|
|
1481
|
-
|
|
1490
|
+
path?: {
|
|
1482
1491
|
[x: string]: string;
|
|
1483
1492
|
} | undefined;
|
|
1484
|
-
|
|
1493
|
+
query?: {
|
|
1485
1494
|
[x: string]: string;
|
|
1486
1495
|
} | undefined;
|
|
1487
|
-
|
|
1496
|
+
header?: {
|
|
1488
1497
|
[x: string]: string;
|
|
1489
1498
|
} | undefined;
|
|
1490
1499
|
cookie?: {
|
|
@@ -1506,8 +1515,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1506
1515
|
} & {
|
|
1507
1516
|
[x: `x-${string}`]: unknown;
|
|
1508
1517
|
}) | ({
|
|
1509
|
-
description?: string | undefined;
|
|
1510
1518
|
summary?: string | undefined;
|
|
1519
|
+
description?: string | undefined;
|
|
1511
1520
|
$ref: string;
|
|
1512
1521
|
} & {
|
|
1513
1522
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1520,13 +1529,13 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1520
1529
|
[x: string]: {
|
|
1521
1530
|
name?: string | undefined;
|
|
1522
1531
|
parameters?: {
|
|
1523
|
-
|
|
1532
|
+
path?: {
|
|
1524
1533
|
[x: string]: string;
|
|
1525
1534
|
} | undefined;
|
|
1526
|
-
|
|
1535
|
+
query?: {
|
|
1527
1536
|
[x: string]: string;
|
|
1528
1537
|
} | undefined;
|
|
1529
|
-
|
|
1538
|
+
header?: {
|
|
1530
1539
|
[x: string]: string;
|
|
1531
1540
|
} | undefined;
|
|
1532
1541
|
cookie?: {
|
|
@@ -1548,8 +1557,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1548
1557
|
} & {
|
|
1549
1558
|
[x: `x-${string}`]: unknown;
|
|
1550
1559
|
}) | ({
|
|
1551
|
-
description?: string | undefined;
|
|
1552
1560
|
summary?: string | undefined;
|
|
1561
|
+
description?: string | undefined;
|
|
1553
1562
|
$ref: string;
|
|
1554
1563
|
} & {
|
|
1555
1564
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1562,13 +1571,13 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1562
1571
|
[x: string]: {
|
|
1563
1572
|
name?: string | undefined;
|
|
1564
1573
|
parameters?: {
|
|
1565
|
-
|
|
1574
|
+
path?: {
|
|
1566
1575
|
[x: string]: string;
|
|
1567
1576
|
} | undefined;
|
|
1568
|
-
|
|
1577
|
+
query?: {
|
|
1569
1578
|
[x: string]: string;
|
|
1570
1579
|
} | undefined;
|
|
1571
|
-
|
|
1580
|
+
header?: {
|
|
1572
1581
|
[x: string]: string;
|
|
1573
1582
|
} | undefined;
|
|
1574
1583
|
cookie?: {
|
|
@@ -1590,8 +1599,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1590
1599
|
} & {
|
|
1591
1600
|
[x: `x-${string}`]: unknown;
|
|
1592
1601
|
}) | ({
|
|
1593
|
-
description?: string | undefined;
|
|
1594
1602
|
summary?: string | undefined;
|
|
1603
|
+
description?: string | undefined;
|
|
1595
1604
|
$ref: string;
|
|
1596
1605
|
} & {
|
|
1597
1606
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1604,13 +1613,13 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1604
1613
|
[x: string]: {
|
|
1605
1614
|
name?: string | undefined;
|
|
1606
1615
|
parameters?: {
|
|
1607
|
-
|
|
1616
|
+
path?: {
|
|
1608
1617
|
[x: string]: string;
|
|
1609
1618
|
} | undefined;
|
|
1610
|
-
|
|
1619
|
+
query?: {
|
|
1611
1620
|
[x: string]: string;
|
|
1612
1621
|
} | undefined;
|
|
1613
|
-
|
|
1622
|
+
header?: {
|
|
1614
1623
|
[x: string]: string;
|
|
1615
1624
|
} | undefined;
|
|
1616
1625
|
cookie?: {
|
|
@@ -1632,8 +1641,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1632
1641
|
} & {
|
|
1633
1642
|
[x: `x-${string}`]: unknown;
|
|
1634
1643
|
}) | ({
|
|
1635
|
-
description?: string | undefined;
|
|
1636
1644
|
summary?: string | undefined;
|
|
1645
|
+
description?: string | undefined;
|
|
1637
1646
|
$ref: string;
|
|
1638
1647
|
} & {
|
|
1639
1648
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1643,7 +1652,7 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1643
1652
|
}) | undefined;
|
|
1644
1653
|
} & {
|
|
1645
1654
|
[x: `x-${string}`]: unknown;
|
|
1646
|
-
};
|
|
1655
|
+
});
|
|
1647
1656
|
} & {
|
|
1648
1657
|
[x: `x-${string}`]: unknown;
|
|
1649
1658
|
});
|
|
@@ -1653,13 +1662,13 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1653
1662
|
[x: string]: {
|
|
1654
1663
|
name?: string | undefined;
|
|
1655
1664
|
parameters?: {
|
|
1656
|
-
|
|
1665
|
+
path?: {
|
|
1657
1666
|
[x: string]: string;
|
|
1658
1667
|
} | undefined;
|
|
1659
|
-
|
|
1668
|
+
query?: {
|
|
1660
1669
|
[x: string]: string;
|
|
1661
1670
|
} | undefined;
|
|
1662
|
-
|
|
1671
|
+
header?: {
|
|
1663
1672
|
[x: string]: string;
|
|
1664
1673
|
} | undefined;
|
|
1665
1674
|
cookie?: {
|
|
@@ -1681,8 +1690,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1681
1690
|
} & {
|
|
1682
1691
|
[x: `x-${string}`]: unknown;
|
|
1683
1692
|
}) | ({
|
|
1684
|
-
description?: string | undefined;
|
|
1685
1693
|
summary?: string | undefined;
|
|
1694
|
+
description?: string | undefined;
|
|
1686
1695
|
$ref: string;
|
|
1687
1696
|
} & {
|
|
1688
1697
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1700,8 +1709,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
|
|
|
1700
1709
|
* Output: { "/users~1{id}": { ... } }
|
|
1701
1710
|
*/
|
|
1702
1711
|
export declare function escapePaths(paths: Record<string, Record<string, OperationObject>>): Record<string, Record<string, ({
|
|
1703
|
-
description?: string | undefined;
|
|
1704
1712
|
summary?: string | undefined;
|
|
1713
|
+
description?: string | undefined;
|
|
1705
1714
|
externalDocs?: ({
|
|
1706
1715
|
description?: string | undefined;
|
|
1707
1716
|
url: string;
|
|
@@ -1711,8 +1720,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1711
1720
|
deprecated?: boolean | undefined;
|
|
1712
1721
|
operationId?: string | undefined;
|
|
1713
1722
|
parameters?: (({
|
|
1714
|
-
description?: string | undefined;
|
|
1715
1723
|
summary?: string | undefined;
|
|
1724
|
+
description?: string | undefined;
|
|
1716
1725
|
$ref: string;
|
|
1717
1726
|
} & {
|
|
1718
1727
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1725,14 +1734,14 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1725
1734
|
deprecated?: boolean | undefined;
|
|
1726
1735
|
allowEmptyValue?: boolean | undefined;
|
|
1727
1736
|
name: string;
|
|
1728
|
-
in: "
|
|
1737
|
+
in: "path" | "query" | "header" | "cookie";
|
|
1729
1738
|
} & {
|
|
1730
1739
|
[x: `x-${string}`]: unknown;
|
|
1731
1740
|
} & {
|
|
1732
1741
|
examples?: {
|
|
1733
1742
|
[x: string]: ({
|
|
1734
|
-
description?: string | undefined;
|
|
1735
1743
|
summary?: string | undefined;
|
|
1744
|
+
description?: string | undefined;
|
|
1736
1745
|
$ref: string;
|
|
1737
1746
|
} & {
|
|
1738
1747
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1740,8 +1749,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1740
1749
|
} & {
|
|
1741
1750
|
[x: `x-${string}`]: unknown;
|
|
1742
1751
|
}) | ({
|
|
1743
|
-
description?: string | undefined;
|
|
1744
1752
|
summary?: string | undefined;
|
|
1753
|
+
description?: string | undefined;
|
|
1745
1754
|
value?: any;
|
|
1746
1755
|
externalValue?: string | undefined;
|
|
1747
1756
|
} & {
|
|
@@ -1751,8 +1760,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1751
1760
|
style?: string | undefined;
|
|
1752
1761
|
explode?: boolean | undefined;
|
|
1753
1762
|
schema?: ({
|
|
1754
|
-
description?: string | undefined;
|
|
1755
1763
|
summary?: string | undefined;
|
|
1764
|
+
description?: string | undefined;
|
|
1756
1765
|
$ref: string;
|
|
1757
1766
|
} & {
|
|
1758
1767
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1799,7 +1808,7 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1799
1808
|
deprecated?: boolean | undefined;
|
|
1800
1809
|
allowEmptyValue?: boolean | undefined;
|
|
1801
1810
|
name: string;
|
|
1802
|
-
in: "
|
|
1811
|
+
in: "path" | "query" | "header" | "cookie";
|
|
1803
1812
|
} & {
|
|
1804
1813
|
[x: `x-${string}`]: unknown;
|
|
1805
1814
|
} & {
|
|
@@ -1808,15 +1817,15 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1808
1817
|
example?: any;
|
|
1809
1818
|
examples?: {
|
|
1810
1819
|
[x: string]: ({
|
|
1811
|
-
description?: string | undefined;
|
|
1812
1820
|
summary?: string | undefined;
|
|
1821
|
+
description?: string | undefined;
|
|
1813
1822
|
value?: any;
|
|
1814
1823
|
externalValue?: string | undefined;
|
|
1815
1824
|
} & {
|
|
1816
1825
|
[x: `x-${string}`]: unknown;
|
|
1817
1826
|
}) | ({
|
|
1818
|
-
description?: string | undefined;
|
|
1819
1827
|
summary?: string | undefined;
|
|
1828
|
+
description?: string | undefined;
|
|
1820
1829
|
$ref: string;
|
|
1821
1830
|
} & {
|
|
1822
1831
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1863,8 +1872,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1863
1872
|
contentType?: string | undefined;
|
|
1864
1873
|
headers?: {
|
|
1865
1874
|
[x: string]: ({
|
|
1866
|
-
description?: string | undefined;
|
|
1867
1875
|
summary?: string | undefined;
|
|
1876
|
+
description?: string | undefined;
|
|
1868
1877
|
$ref: string;
|
|
1869
1878
|
} & {
|
|
1870
1879
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1880,15 +1889,15 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1880
1889
|
} & {
|
|
1881
1890
|
examples?: {
|
|
1882
1891
|
[x: string]: ({
|
|
1883
|
-
description?: string | undefined;
|
|
1884
1892
|
summary?: string | undefined;
|
|
1893
|
+
description?: string | undefined;
|
|
1885
1894
|
value?: any;
|
|
1886
1895
|
externalValue?: string | undefined;
|
|
1887
1896
|
} & {
|
|
1888
1897
|
[x: `x-${string}`]: unknown;
|
|
1889
1898
|
}) | ({
|
|
1890
|
-
description?: string | undefined;
|
|
1891
1899
|
summary?: string | undefined;
|
|
1900
|
+
description?: string | undefined;
|
|
1892
1901
|
$ref: string;
|
|
1893
1902
|
} & {
|
|
1894
1903
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1900,8 +1909,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1900
1909
|
style?: string | undefined;
|
|
1901
1910
|
explode?: boolean | undefined;
|
|
1902
1911
|
schema?: ({
|
|
1903
|
-
description?: string | undefined;
|
|
1904
1912
|
summary?: string | undefined;
|
|
1913
|
+
description?: string | undefined;
|
|
1905
1914
|
$ref: string;
|
|
1906
1915
|
} & {
|
|
1907
1916
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1966,8 +1975,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1966
1975
|
} | undefined;
|
|
1967
1976
|
}))[] | undefined;
|
|
1968
1977
|
requestBody?: ({
|
|
1969
|
-
description?: string | undefined;
|
|
1970
1978
|
summary?: string | undefined;
|
|
1979
|
+
description?: string | undefined;
|
|
1971
1980
|
$ref: string;
|
|
1972
1981
|
} & {
|
|
1973
1982
|
$status?: "loading" | "error" | undefined;
|
|
@@ -1982,15 +1991,15 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
1982
1991
|
example?: any;
|
|
1983
1992
|
examples?: {
|
|
1984
1993
|
[x: string]: ({
|
|
1985
|
-
description?: string | undefined;
|
|
1986
1994
|
summary?: string | undefined;
|
|
1995
|
+
description?: string | undefined;
|
|
1987
1996
|
value?: any;
|
|
1988
1997
|
externalValue?: string | undefined;
|
|
1989
1998
|
} & {
|
|
1990
1999
|
[x: `x-${string}`]: unknown;
|
|
1991
2000
|
}) | ({
|
|
1992
|
-
description?: string | undefined;
|
|
1993
2001
|
summary?: string | undefined;
|
|
2002
|
+
description?: string | undefined;
|
|
1994
2003
|
$ref: string;
|
|
1995
2004
|
} & {
|
|
1996
2005
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2037,8 +2046,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2037
2046
|
contentType?: string | undefined;
|
|
2038
2047
|
headers?: {
|
|
2039
2048
|
[x: string]: ({
|
|
2040
|
-
description?: string | undefined;
|
|
2041
2049
|
summary?: string | undefined;
|
|
2050
|
+
description?: string | undefined;
|
|
2042
2051
|
$ref: string;
|
|
2043
2052
|
} & {
|
|
2044
2053
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2054,15 +2063,15 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2054
2063
|
} & {
|
|
2055
2064
|
examples?: {
|
|
2056
2065
|
[x: string]: ({
|
|
2057
|
-
description?: string | undefined;
|
|
2058
2066
|
summary?: string | undefined;
|
|
2067
|
+
description?: string | undefined;
|
|
2059
2068
|
value?: any;
|
|
2060
2069
|
externalValue?: string | undefined;
|
|
2061
2070
|
} & {
|
|
2062
2071
|
[x: `x-${string}`]: unknown;
|
|
2063
2072
|
}) | ({
|
|
2064
|
-
description?: string | undefined;
|
|
2065
2073
|
summary?: string | undefined;
|
|
2074
|
+
description?: string | undefined;
|
|
2066
2075
|
$ref: string;
|
|
2067
2076
|
} & {
|
|
2068
2077
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2074,8 +2083,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2074
2083
|
style?: string | undefined;
|
|
2075
2084
|
explode?: boolean | undefined;
|
|
2076
2085
|
schema?: ({
|
|
2077
|
-
description?: string | undefined;
|
|
2078
2086
|
summary?: string | undefined;
|
|
2087
|
+
description?: string | undefined;
|
|
2079
2088
|
$ref: string;
|
|
2080
2089
|
} & {
|
|
2081
2090
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2144,8 +2153,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2144
2153
|
tags?: string[] | undefined;
|
|
2145
2154
|
responses?: ({
|
|
2146
2155
|
[x: string]: ({
|
|
2147
|
-
description?: string | undefined;
|
|
2148
2156
|
summary?: string | undefined;
|
|
2157
|
+
description?: string | undefined;
|
|
2149
2158
|
$ref: string;
|
|
2150
2159
|
} & {
|
|
2151
2160
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2163,35 +2172,26 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2163
2172
|
} & {
|
|
2164
2173
|
examples?: {
|
|
2165
2174
|
[x: string]: ({
|
|
2166
|
-
description?: string | undefined;
|
|
2167
2175
|
summary?: string | undefined;
|
|
2168
|
-
value?: any;
|
|
2169
|
-
externalValue?: string | undefined;
|
|
2170
|
-
} & {
|
|
2171
|
-
[x: `x-${string}`]: unknown;
|
|
2172
|
-
}) | ({
|
|
2173
2176
|
description?: string | undefined;
|
|
2174
|
-
summary?: string | undefined;
|
|
2175
2177
|
$ref: string;
|
|
2176
2178
|
} & {
|
|
2177
2179
|
$status?: "loading" | "error" | undefined;
|
|
2178
2180
|
$global?: boolean | undefined;
|
|
2179
2181
|
} & {
|
|
2180
2182
|
[x: `x-${string}`]: unknown;
|
|
2183
|
+
}) | ({
|
|
2184
|
+
summary?: string | undefined;
|
|
2185
|
+
description?: string | undefined;
|
|
2186
|
+
value?: any;
|
|
2187
|
+
externalValue?: string | undefined;
|
|
2188
|
+
} & {
|
|
2189
|
+
[x: `x-${string}`]: unknown;
|
|
2181
2190
|
});
|
|
2182
2191
|
} | undefined;
|
|
2183
2192
|
style?: string | undefined;
|
|
2184
2193
|
explode?: boolean | undefined;
|
|
2185
2194
|
schema?: ({
|
|
2186
|
-
description?: string | undefined;
|
|
2187
|
-
summary?: string | undefined;
|
|
2188
|
-
$ref: string;
|
|
2189
|
-
} & {
|
|
2190
|
-
$status?: "loading" | "error" | undefined;
|
|
2191
|
-
$global?: boolean | undefined;
|
|
2192
|
-
} & {
|
|
2193
|
-
[x: `x-${string}`]: unknown;
|
|
2194
|
-
}) | ({
|
|
2195
2195
|
discriminator?: ({
|
|
2196
2196
|
mapping?: {
|
|
2197
2197
|
[x: string]: string;
|
|
@@ -2223,6 +2223,15 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2223
2223
|
'x-tags'?: string[] | undefined;
|
|
2224
2224
|
} & {
|
|
2225
2225
|
[x: string]: unknown;
|
|
2226
|
+
}) | ({
|
|
2227
|
+
summary?: string | undefined;
|
|
2228
|
+
description?: string | undefined;
|
|
2229
|
+
$ref: string;
|
|
2230
|
+
} & {
|
|
2231
|
+
$status?: "loading" | "error" | undefined;
|
|
2232
|
+
$global?: boolean | undefined;
|
|
2233
|
+
} & {
|
|
2234
|
+
[x: `x-${string}`]: unknown;
|
|
2226
2235
|
}) | undefined;
|
|
2227
2236
|
example: any;
|
|
2228
2237
|
}) | ({
|
|
@@ -2237,21 +2246,21 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2237
2246
|
example?: any;
|
|
2238
2247
|
examples?: {
|
|
2239
2248
|
[x: string]: ({
|
|
2240
|
-
description?: string | undefined;
|
|
2241
2249
|
summary?: string | undefined;
|
|
2242
|
-
value?: any;
|
|
2243
|
-
externalValue?: string | undefined;
|
|
2244
|
-
} & {
|
|
2245
|
-
[x: `x-${string}`]: unknown;
|
|
2246
|
-
}) | ({
|
|
2247
2250
|
description?: string | undefined;
|
|
2248
|
-
summary?: string | undefined;
|
|
2249
2251
|
$ref: string;
|
|
2250
2252
|
} & {
|
|
2251
2253
|
$status?: "loading" | "error" | undefined;
|
|
2252
2254
|
$global?: boolean | undefined;
|
|
2253
2255
|
} & {
|
|
2254
2256
|
[x: `x-${string}`]: unknown;
|
|
2257
|
+
}) | ({
|
|
2258
|
+
summary?: string | undefined;
|
|
2259
|
+
description?: string | undefined;
|
|
2260
|
+
value?: any;
|
|
2261
|
+
externalValue?: string | undefined;
|
|
2262
|
+
} & {
|
|
2263
|
+
[x: `x-${string}`]: unknown;
|
|
2255
2264
|
});
|
|
2256
2265
|
} | undefined;
|
|
2257
2266
|
schema?: ({
|
|
@@ -2300,35 +2309,26 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2300
2309
|
} & {
|
|
2301
2310
|
examples?: {
|
|
2302
2311
|
[x: string]: ({
|
|
2303
|
-
description?: string | undefined;
|
|
2304
2312
|
summary?: string | undefined;
|
|
2305
|
-
value?: any;
|
|
2306
|
-
externalValue?: string | undefined;
|
|
2307
|
-
} & {
|
|
2308
|
-
[x: `x-${string}`]: unknown;
|
|
2309
|
-
}) | ({
|
|
2310
2313
|
description?: string | undefined;
|
|
2311
|
-
summary?: string | undefined;
|
|
2312
2314
|
$ref: string;
|
|
2313
2315
|
} & {
|
|
2314
2316
|
$status?: "loading" | "error" | undefined;
|
|
2315
2317
|
$global?: boolean | undefined;
|
|
2316
2318
|
} & {
|
|
2317
2319
|
[x: `x-${string}`]: unknown;
|
|
2320
|
+
}) | ({
|
|
2321
|
+
summary?: string | undefined;
|
|
2322
|
+
description?: string | undefined;
|
|
2323
|
+
value?: any;
|
|
2324
|
+
externalValue?: string | undefined;
|
|
2325
|
+
} & {
|
|
2326
|
+
[x: `x-${string}`]: unknown;
|
|
2318
2327
|
});
|
|
2319
2328
|
} | undefined;
|
|
2320
2329
|
style?: string | undefined;
|
|
2321
2330
|
explode?: boolean | undefined;
|
|
2322
2331
|
schema?: ({
|
|
2323
|
-
description?: string | undefined;
|
|
2324
|
-
summary?: string | undefined;
|
|
2325
|
-
$ref: string;
|
|
2326
|
-
} & {
|
|
2327
|
-
$status?: "loading" | "error" | undefined;
|
|
2328
|
-
$global?: boolean | undefined;
|
|
2329
|
-
} & {
|
|
2330
|
-
[x: `x-${string}`]: unknown;
|
|
2331
|
-
}) | ({
|
|
2332
2332
|
discriminator?: ({
|
|
2333
2333
|
mapping?: {
|
|
2334
2334
|
[x: string]: string;
|
|
@@ -2360,6 +2360,15 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2360
2360
|
'x-tags'?: string[] | undefined;
|
|
2361
2361
|
} & {
|
|
2362
2362
|
[x: string]: unknown;
|
|
2363
|
+
}) | ({
|
|
2364
|
+
summary?: string | undefined;
|
|
2365
|
+
description?: string | undefined;
|
|
2366
|
+
$ref: string;
|
|
2367
|
+
} & {
|
|
2368
|
+
$status?: "loading" | "error" | undefined;
|
|
2369
|
+
$global?: boolean | undefined;
|
|
2370
|
+
} & {
|
|
2371
|
+
[x: `x-${string}`]: unknown;
|
|
2363
2372
|
}) | undefined;
|
|
2364
2373
|
example: any;
|
|
2365
2374
|
}) | ({
|
|
@@ -2369,8 +2378,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2369
2378
|
} & {
|
|
2370
2379
|
[x: `x-${string}`]: unknown;
|
|
2371
2380
|
} & any) | ({
|
|
2372
|
-
description?: string | undefined;
|
|
2373
2381
|
summary?: string | undefined;
|
|
2382
|
+
description?: string | undefined;
|
|
2374
2383
|
$ref: string;
|
|
2375
2384
|
} & {
|
|
2376
2385
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2388,8 +2397,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2388
2397
|
};
|
|
2389
2398
|
} | undefined;
|
|
2390
2399
|
}) | ({
|
|
2391
|
-
description?: string | undefined;
|
|
2392
2400
|
summary?: string | undefined;
|
|
2401
|
+
description?: string | undefined;
|
|
2393
2402
|
$ref: string;
|
|
2394
2403
|
} & {
|
|
2395
2404
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2403,15 +2412,15 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2403
2412
|
example?: any;
|
|
2404
2413
|
examples?: {
|
|
2405
2414
|
[x: string]: ({
|
|
2406
|
-
description?: string | undefined;
|
|
2407
2415
|
summary?: string | undefined;
|
|
2416
|
+
description?: string | undefined;
|
|
2408
2417
|
value?: any;
|
|
2409
2418
|
externalValue?: string | undefined;
|
|
2410
2419
|
} & {
|
|
2411
2420
|
[x: `x-${string}`]: unknown;
|
|
2412
2421
|
}) | ({
|
|
2413
|
-
description?: string | undefined;
|
|
2414
2422
|
summary?: string | undefined;
|
|
2423
|
+
description?: string | undefined;
|
|
2415
2424
|
$ref: string;
|
|
2416
2425
|
} & {
|
|
2417
2426
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2458,8 +2467,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2458
2467
|
contentType?: string | undefined;
|
|
2459
2468
|
headers?: {
|
|
2460
2469
|
[x: string]: ({
|
|
2461
|
-
description?: string | undefined;
|
|
2462
2470
|
summary?: string | undefined;
|
|
2471
|
+
description?: string | undefined;
|
|
2463
2472
|
$ref: string;
|
|
2464
2473
|
} & {
|
|
2465
2474
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2475,15 +2484,15 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2475
2484
|
} & {
|
|
2476
2485
|
examples?: {
|
|
2477
2486
|
[x: string]: ({
|
|
2478
|
-
description?: string | undefined;
|
|
2479
2487
|
summary?: string | undefined;
|
|
2488
|
+
description?: string | undefined;
|
|
2480
2489
|
value?: any;
|
|
2481
2490
|
externalValue?: string | undefined;
|
|
2482
2491
|
} & {
|
|
2483
2492
|
[x: `x-${string}`]: unknown;
|
|
2484
2493
|
}) | ({
|
|
2485
|
-
description?: string | undefined;
|
|
2486
2494
|
summary?: string | undefined;
|
|
2495
|
+
description?: string | undefined;
|
|
2487
2496
|
$ref: string;
|
|
2488
2497
|
} & {
|
|
2489
2498
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2495,8 +2504,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2495
2504
|
style?: string | undefined;
|
|
2496
2505
|
explode?: boolean | undefined;
|
|
2497
2506
|
schema?: ({
|
|
2498
|
-
description?: string | undefined;
|
|
2499
2507
|
summary?: string | undefined;
|
|
2508
|
+
description?: string | undefined;
|
|
2500
2509
|
$ref: string;
|
|
2501
2510
|
} & {
|
|
2502
2511
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2561,8 +2570,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2561
2570
|
} | undefined;
|
|
2562
2571
|
links?: {
|
|
2563
2572
|
[x: string]: ({
|
|
2564
|
-
description?: string | undefined;
|
|
2565
2573
|
summary?: string | undefined;
|
|
2574
|
+
description?: string | undefined;
|
|
2566
2575
|
$ref: string;
|
|
2567
2576
|
} & {
|
|
2568
2577
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2625,8 +2634,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2625
2634
|
})[] | undefined;
|
|
2626
2635
|
callbacks?: {
|
|
2627
2636
|
[x: string]: ({
|
|
2628
|
-
description?: string | undefined;
|
|
2629
2637
|
summary?: string | undefined;
|
|
2638
|
+
description?: string | undefined;
|
|
2630
2639
|
$ref: string;
|
|
2631
2640
|
} & {
|
|
2632
2641
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2634,13 +2643,22 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2634
2643
|
} & {
|
|
2635
2644
|
[x: `x-${string}`]: unknown;
|
|
2636
2645
|
}) | ({
|
|
2637
|
-
[x: string]: {
|
|
2646
|
+
[x: string]: ({
|
|
2647
|
+
summary?: string | undefined;
|
|
2638
2648
|
description?: string | undefined;
|
|
2649
|
+
$ref: string;
|
|
2650
|
+
} & {
|
|
2651
|
+
$status?: "loading" | "error" | undefined;
|
|
2652
|
+
$global?: boolean | undefined;
|
|
2653
|
+
} & {
|
|
2654
|
+
[x: `x-${string}`]: unknown;
|
|
2655
|
+
}) | ({
|
|
2639
2656
|
$ref?: string | undefined;
|
|
2640
2657
|
summary?: string | undefined;
|
|
2658
|
+
description?: string | undefined;
|
|
2641
2659
|
parameters?: (({
|
|
2642
|
-
description?: string | undefined;
|
|
2643
2660
|
summary?: string | undefined;
|
|
2661
|
+
description?: string | undefined;
|
|
2644
2662
|
$ref: string;
|
|
2645
2663
|
} & {
|
|
2646
2664
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2653,14 +2671,14 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2653
2671
|
deprecated?: boolean | undefined;
|
|
2654
2672
|
allowEmptyValue?: boolean | undefined;
|
|
2655
2673
|
name: string;
|
|
2656
|
-
in: "
|
|
2674
|
+
in: "path" | "query" | "header" | "cookie";
|
|
2657
2675
|
} & {
|
|
2658
2676
|
[x: `x-${string}`]: unknown;
|
|
2659
2677
|
} & {
|
|
2660
2678
|
examples?: {
|
|
2661
2679
|
[x: string]: ({
|
|
2662
|
-
description?: string | undefined;
|
|
2663
2680
|
summary?: string | undefined;
|
|
2681
|
+
description?: string | undefined;
|
|
2664
2682
|
$ref: string;
|
|
2665
2683
|
} & {
|
|
2666
2684
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2668,8 +2686,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2668
2686
|
} & {
|
|
2669
2687
|
[x: `x-${string}`]: unknown;
|
|
2670
2688
|
}) | ({
|
|
2671
|
-
description?: string | undefined;
|
|
2672
2689
|
summary?: string | undefined;
|
|
2690
|
+
description?: string | undefined;
|
|
2673
2691
|
value?: any;
|
|
2674
2692
|
externalValue?: string | undefined;
|
|
2675
2693
|
} & {
|
|
@@ -2679,8 +2697,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2679
2697
|
style?: string | undefined;
|
|
2680
2698
|
explode?: boolean | undefined;
|
|
2681
2699
|
schema?: ({
|
|
2682
|
-
description?: string | undefined;
|
|
2683
2700
|
summary?: string | undefined;
|
|
2701
|
+
description?: string | undefined;
|
|
2684
2702
|
$ref: string;
|
|
2685
2703
|
} & {
|
|
2686
2704
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2727,7 +2745,7 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2727
2745
|
deprecated?: boolean | undefined;
|
|
2728
2746
|
allowEmptyValue?: boolean | undefined;
|
|
2729
2747
|
name: string;
|
|
2730
|
-
in: "
|
|
2748
|
+
in: "path" | "query" | "header" | "cookie";
|
|
2731
2749
|
} & {
|
|
2732
2750
|
[x: `x-${string}`]: unknown;
|
|
2733
2751
|
} & {
|
|
@@ -2736,15 +2754,15 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2736
2754
|
example?: any;
|
|
2737
2755
|
examples?: {
|
|
2738
2756
|
[x: string]: ({
|
|
2739
|
-
description?: string | undefined;
|
|
2740
2757
|
summary?: string | undefined;
|
|
2758
|
+
description?: string | undefined;
|
|
2741
2759
|
value?: any;
|
|
2742
2760
|
externalValue?: string | undefined;
|
|
2743
2761
|
} & {
|
|
2744
2762
|
[x: `x-${string}`]: unknown;
|
|
2745
2763
|
}) | ({
|
|
2746
|
-
description?: string | undefined;
|
|
2747
2764
|
summary?: string | undefined;
|
|
2765
|
+
description?: string | undefined;
|
|
2748
2766
|
$ref: string;
|
|
2749
2767
|
} & {
|
|
2750
2768
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2791,8 +2809,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2791
2809
|
contentType?: string | undefined;
|
|
2792
2810
|
headers?: {
|
|
2793
2811
|
[x: string]: ({
|
|
2794
|
-
description?: string | undefined;
|
|
2795
2812
|
summary?: string | undefined;
|
|
2813
|
+
description?: string | undefined;
|
|
2796
2814
|
$ref: string;
|
|
2797
2815
|
} & {
|
|
2798
2816
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2808,15 +2826,15 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2808
2826
|
} & {
|
|
2809
2827
|
examples?: {
|
|
2810
2828
|
[x: string]: ({
|
|
2811
|
-
description?: string | undefined;
|
|
2812
2829
|
summary?: string | undefined;
|
|
2830
|
+
description?: string | undefined;
|
|
2813
2831
|
value?: any;
|
|
2814
2832
|
externalValue?: string | undefined;
|
|
2815
2833
|
} & {
|
|
2816
2834
|
[x: `x-${string}`]: unknown;
|
|
2817
2835
|
}) | ({
|
|
2818
|
-
description?: string | undefined;
|
|
2819
2836
|
summary?: string | undefined;
|
|
2837
|
+
description?: string | undefined;
|
|
2820
2838
|
$ref: string;
|
|
2821
2839
|
} & {
|
|
2822
2840
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2828,8 +2846,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2828
2846
|
style?: string | undefined;
|
|
2829
2847
|
explode?: boolean | undefined;
|
|
2830
2848
|
schema?: ({
|
|
2831
|
-
description?: string | undefined;
|
|
2832
2849
|
summary?: string | undefined;
|
|
2850
|
+
description?: string | undefined;
|
|
2833
2851
|
$ref: string;
|
|
2834
2852
|
} & {
|
|
2835
2853
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2913,13 +2931,13 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2913
2931
|
[x: string]: {
|
|
2914
2932
|
name?: string | undefined;
|
|
2915
2933
|
parameters?: {
|
|
2916
|
-
|
|
2934
|
+
path?: {
|
|
2917
2935
|
[x: string]: string;
|
|
2918
2936
|
} | undefined;
|
|
2919
|
-
|
|
2937
|
+
query?: {
|
|
2920
2938
|
[x: string]: string;
|
|
2921
2939
|
} | undefined;
|
|
2922
|
-
|
|
2940
|
+
header?: {
|
|
2923
2941
|
[x: string]: string;
|
|
2924
2942
|
} | undefined;
|
|
2925
2943
|
cookie?: {
|
|
@@ -2941,8 +2959,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2941
2959
|
} & {
|
|
2942
2960
|
[x: `x-${string}`]: unknown;
|
|
2943
2961
|
}) | ({
|
|
2944
|
-
description?: string | undefined;
|
|
2945
2962
|
summary?: string | undefined;
|
|
2963
|
+
description?: string | undefined;
|
|
2946
2964
|
$ref: string;
|
|
2947
2965
|
} & {
|
|
2948
2966
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2955,13 +2973,13 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2955
2973
|
[x: string]: {
|
|
2956
2974
|
name?: string | undefined;
|
|
2957
2975
|
parameters?: {
|
|
2958
|
-
|
|
2976
|
+
path?: {
|
|
2959
2977
|
[x: string]: string;
|
|
2960
2978
|
} | undefined;
|
|
2961
|
-
|
|
2979
|
+
query?: {
|
|
2962
2980
|
[x: string]: string;
|
|
2963
2981
|
} | undefined;
|
|
2964
|
-
|
|
2982
|
+
header?: {
|
|
2965
2983
|
[x: string]: string;
|
|
2966
2984
|
} | undefined;
|
|
2967
2985
|
cookie?: {
|
|
@@ -2983,8 +3001,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2983
3001
|
} & {
|
|
2984
3002
|
[x: `x-${string}`]: unknown;
|
|
2985
3003
|
}) | ({
|
|
2986
|
-
description?: string | undefined;
|
|
2987
3004
|
summary?: string | undefined;
|
|
3005
|
+
description?: string | undefined;
|
|
2988
3006
|
$ref: string;
|
|
2989
3007
|
} & {
|
|
2990
3008
|
$status?: "loading" | "error" | undefined;
|
|
@@ -2997,13 +3015,13 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
2997
3015
|
[x: string]: {
|
|
2998
3016
|
name?: string | undefined;
|
|
2999
3017
|
parameters?: {
|
|
3000
|
-
|
|
3018
|
+
path?: {
|
|
3001
3019
|
[x: string]: string;
|
|
3002
3020
|
} | undefined;
|
|
3003
|
-
|
|
3021
|
+
query?: {
|
|
3004
3022
|
[x: string]: string;
|
|
3005
3023
|
} | undefined;
|
|
3006
|
-
|
|
3024
|
+
header?: {
|
|
3007
3025
|
[x: string]: string;
|
|
3008
3026
|
} | undefined;
|
|
3009
3027
|
cookie?: {
|
|
@@ -3025,8 +3043,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3025
3043
|
} & {
|
|
3026
3044
|
[x: `x-${string}`]: unknown;
|
|
3027
3045
|
}) | ({
|
|
3028
|
-
description?: string | undefined;
|
|
3029
3046
|
summary?: string | undefined;
|
|
3047
|
+
description?: string | undefined;
|
|
3030
3048
|
$ref: string;
|
|
3031
3049
|
} & {
|
|
3032
3050
|
$status?: "loading" | "error" | undefined;
|
|
@@ -3039,13 +3057,13 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3039
3057
|
[x: string]: {
|
|
3040
3058
|
name?: string | undefined;
|
|
3041
3059
|
parameters?: {
|
|
3042
|
-
|
|
3060
|
+
path?: {
|
|
3043
3061
|
[x: string]: string;
|
|
3044
3062
|
} | undefined;
|
|
3045
|
-
|
|
3063
|
+
query?: {
|
|
3046
3064
|
[x: string]: string;
|
|
3047
3065
|
} | undefined;
|
|
3048
|
-
|
|
3066
|
+
header?: {
|
|
3049
3067
|
[x: string]: string;
|
|
3050
3068
|
} | undefined;
|
|
3051
3069
|
cookie?: {
|
|
@@ -3067,8 +3085,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3067
3085
|
} & {
|
|
3068
3086
|
[x: `x-${string}`]: unknown;
|
|
3069
3087
|
}) | ({
|
|
3070
|
-
description?: string | undefined;
|
|
3071
3088
|
summary?: string | undefined;
|
|
3089
|
+
description?: string | undefined;
|
|
3072
3090
|
$ref: string;
|
|
3073
3091
|
} & {
|
|
3074
3092
|
$status?: "loading" | "error" | undefined;
|
|
@@ -3081,13 +3099,13 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3081
3099
|
[x: string]: {
|
|
3082
3100
|
name?: string | undefined;
|
|
3083
3101
|
parameters?: {
|
|
3084
|
-
|
|
3102
|
+
path?: {
|
|
3085
3103
|
[x: string]: string;
|
|
3086
3104
|
} | undefined;
|
|
3087
|
-
|
|
3105
|
+
query?: {
|
|
3088
3106
|
[x: string]: string;
|
|
3089
3107
|
} | undefined;
|
|
3090
|
-
|
|
3108
|
+
header?: {
|
|
3091
3109
|
[x: string]: string;
|
|
3092
3110
|
} | undefined;
|
|
3093
3111
|
cookie?: {
|
|
@@ -3109,8 +3127,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3109
3127
|
} & {
|
|
3110
3128
|
[x: `x-${string}`]: unknown;
|
|
3111
3129
|
}) | ({
|
|
3112
|
-
description?: string | undefined;
|
|
3113
3130
|
summary?: string | undefined;
|
|
3131
|
+
description?: string | undefined;
|
|
3114
3132
|
$ref: string;
|
|
3115
3133
|
} & {
|
|
3116
3134
|
$status?: "loading" | "error" | undefined;
|
|
@@ -3123,13 +3141,13 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3123
3141
|
[x: string]: {
|
|
3124
3142
|
name?: string | undefined;
|
|
3125
3143
|
parameters?: {
|
|
3126
|
-
|
|
3144
|
+
path?: {
|
|
3127
3145
|
[x: string]: string;
|
|
3128
3146
|
} | undefined;
|
|
3129
|
-
|
|
3147
|
+
query?: {
|
|
3130
3148
|
[x: string]: string;
|
|
3131
3149
|
} | undefined;
|
|
3132
|
-
|
|
3150
|
+
header?: {
|
|
3133
3151
|
[x: string]: string;
|
|
3134
3152
|
} | undefined;
|
|
3135
3153
|
cookie?: {
|
|
@@ -3151,8 +3169,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3151
3169
|
} & {
|
|
3152
3170
|
[x: `x-${string}`]: unknown;
|
|
3153
3171
|
}) | ({
|
|
3154
|
-
description?: string | undefined;
|
|
3155
3172
|
summary?: string | undefined;
|
|
3173
|
+
description?: string | undefined;
|
|
3156
3174
|
$ref: string;
|
|
3157
3175
|
} & {
|
|
3158
3176
|
$status?: "loading" | "error" | undefined;
|
|
@@ -3165,13 +3183,13 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3165
3183
|
[x: string]: {
|
|
3166
3184
|
name?: string | undefined;
|
|
3167
3185
|
parameters?: {
|
|
3168
|
-
|
|
3186
|
+
path?: {
|
|
3169
3187
|
[x: string]: string;
|
|
3170
3188
|
} | undefined;
|
|
3171
|
-
|
|
3189
|
+
query?: {
|
|
3172
3190
|
[x: string]: string;
|
|
3173
3191
|
} | undefined;
|
|
3174
|
-
|
|
3192
|
+
header?: {
|
|
3175
3193
|
[x: string]: string;
|
|
3176
3194
|
} | undefined;
|
|
3177
3195
|
cookie?: {
|
|
@@ -3193,8 +3211,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3193
3211
|
} & {
|
|
3194
3212
|
[x: `x-${string}`]: unknown;
|
|
3195
3213
|
}) | ({
|
|
3196
|
-
description?: string | undefined;
|
|
3197
3214
|
summary?: string | undefined;
|
|
3215
|
+
description?: string | undefined;
|
|
3198
3216
|
$ref: string;
|
|
3199
3217
|
} & {
|
|
3200
3218
|
$status?: "loading" | "error" | undefined;
|
|
@@ -3207,13 +3225,13 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3207
3225
|
[x: string]: {
|
|
3208
3226
|
name?: string | undefined;
|
|
3209
3227
|
parameters?: {
|
|
3210
|
-
|
|
3228
|
+
path?: {
|
|
3211
3229
|
[x: string]: string;
|
|
3212
3230
|
} | undefined;
|
|
3213
|
-
|
|
3231
|
+
query?: {
|
|
3214
3232
|
[x: string]: string;
|
|
3215
3233
|
} | undefined;
|
|
3216
|
-
|
|
3234
|
+
header?: {
|
|
3217
3235
|
[x: string]: string;
|
|
3218
3236
|
} | undefined;
|
|
3219
3237
|
cookie?: {
|
|
@@ -3235,8 +3253,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3235
3253
|
} & {
|
|
3236
3254
|
[x: `x-${string}`]: unknown;
|
|
3237
3255
|
}) | ({
|
|
3238
|
-
description?: string | undefined;
|
|
3239
3256
|
summary?: string | undefined;
|
|
3257
|
+
description?: string | undefined;
|
|
3240
3258
|
$ref: string;
|
|
3241
3259
|
} & {
|
|
3242
3260
|
$status?: "loading" | "error" | undefined;
|
|
@@ -3249,13 +3267,13 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3249
3267
|
[x: string]: {
|
|
3250
3268
|
name?: string | undefined;
|
|
3251
3269
|
parameters?: {
|
|
3252
|
-
|
|
3270
|
+
path?: {
|
|
3253
3271
|
[x: string]: string;
|
|
3254
3272
|
} | undefined;
|
|
3255
|
-
|
|
3273
|
+
query?: {
|
|
3256
3274
|
[x: string]: string;
|
|
3257
3275
|
} | undefined;
|
|
3258
|
-
|
|
3276
|
+
header?: {
|
|
3259
3277
|
[x: string]: string;
|
|
3260
3278
|
} | undefined;
|
|
3261
3279
|
cookie?: {
|
|
@@ -3277,8 +3295,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3277
3295
|
} & {
|
|
3278
3296
|
[x: `x-${string}`]: unknown;
|
|
3279
3297
|
}) | ({
|
|
3280
|
-
description?: string | undefined;
|
|
3281
3298
|
summary?: string | undefined;
|
|
3299
|
+
description?: string | undefined;
|
|
3282
3300
|
$ref: string;
|
|
3283
3301
|
} & {
|
|
3284
3302
|
$status?: "loading" | "error" | undefined;
|
|
@@ -3288,7 +3306,7 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3288
3306
|
}) | undefined;
|
|
3289
3307
|
} & {
|
|
3290
3308
|
[x: `x-${string}`]: unknown;
|
|
3291
|
-
};
|
|
3309
|
+
});
|
|
3292
3310
|
} & {
|
|
3293
3311
|
[x: `x-${string}`]: unknown;
|
|
3294
3312
|
});
|
|
@@ -3298,13 +3316,13 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3298
3316
|
[x: string]: {
|
|
3299
3317
|
name?: string | undefined;
|
|
3300
3318
|
parameters?: {
|
|
3301
|
-
|
|
3319
|
+
path?: {
|
|
3302
3320
|
[x: string]: string;
|
|
3303
3321
|
} | undefined;
|
|
3304
|
-
|
|
3322
|
+
query?: {
|
|
3305
3323
|
[x: string]: string;
|
|
3306
3324
|
} | undefined;
|
|
3307
|
-
|
|
3325
|
+
header?: {
|
|
3308
3326
|
[x: string]: string;
|
|
3309
3327
|
} | undefined;
|
|
3310
3328
|
cookie?: {
|
|
@@ -3326,8 +3344,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
|
|
|
3326
3344
|
} & {
|
|
3327
3345
|
[x: `x-${string}`]: unknown;
|
|
3328
3346
|
}) | ({
|
|
3329
|
-
description?: string | undefined;
|
|
3330
3347
|
summary?: string | undefined;
|
|
3348
|
+
description?: string | undefined;
|
|
3331
3349
|
$ref: string;
|
|
3332
3350
|
} & {
|
|
3333
3351
|
$status?: "loading" | "error" | undefined;
|
|
@@ -3392,7 +3410,7 @@ export declare function createServerWorkspaceStore(workspaceProps: CreateServerW
|
|
|
3392
3410
|
[extensions.document.navigation]: TraversedEntry[];
|
|
3393
3411
|
}>;
|
|
3394
3412
|
"x-scalar-dark-mode"?: boolean | undefined;
|
|
3395
|
-
"x-scalar-default-client"?:
|
|
3413
|
+
"x-scalar-default-client"?: "c/libcurl" | "clojure/clj_http" | "csharp/httpclient" | "csharp/restsharp" | "dart/http" | "go/native" | "http/http1.1" | "java/asynchttp" | "java/nethttp" | "java/okhttp" | "java/unirest" | "js/axios" | "js/fetch" | "js/jquery" | "js/ofetch" | "js/xhr" | "kotlin/okhttp" | "node/axios" | "node/fetch" | "node/ofetch" | "node/undici" | "objc/nsurlsession" | "ocaml/cohttp" | "php/curl" | "php/guzzle" | "powershell/restmethod" | "powershell/webrequest" | "python/python3" | "python/requests" | "python/httpx_sync" | "python/httpx_async" | "r/httr" | "ruby/native" | "rust/reqwest" | "shell/curl" | "shell/httpie" | "shell/wget" | "swift/nsurlsession" | undefined;
|
|
3396
3414
|
"x-scalar-active-document"?: string | undefined;
|
|
3397
3415
|
"x-scalar-theme"?: string | undefined;
|
|
3398
3416
|
};
|