@scalar/workspace-store 0.9.0 → 0.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist/client.d.ts +2 -2
  3. package/dist/client.d.ts.map +1 -1
  4. package/dist/client.js +24 -12
  5. package/dist/client.js.map +2 -2
  6. package/dist/helpers/proxy.d.ts +1 -1
  7. package/dist/helpers/proxy.d.ts.map +1 -1
  8. package/dist/helpers/proxy.js +2 -2
  9. package/dist/helpers/proxy.js.map +2 -2
  10. package/dist/mutators/helpers.d.ts +1699 -1447
  11. package/dist/mutators/helpers.d.ts.map +1 -1
  12. package/dist/navigation/helpers/traverse-paths.d.ts.map +1 -1
  13. package/dist/navigation/helpers/traverse-paths.js +3 -2
  14. package/dist/navigation/helpers/traverse-paths.js.map +2 -2
  15. package/dist/navigation/helpers/traverse-schemas.d.ts.map +1 -1
  16. package/dist/navigation/helpers/traverse-schemas.js +6 -5
  17. package/dist/navigation/helpers/traverse-schemas.js.map +2 -2
  18. package/dist/navigation/helpers/traverse-tags.js +2 -2
  19. package/dist/navigation/helpers/traverse-tags.js.map +2 -2
  20. package/dist/navigation/types.d.ts +2 -0
  21. package/dist/navigation/types.d.ts.map +1 -1
  22. package/dist/schemas/inmemory-workspace.d.ts +1 -1
  23. package/dist/schemas/v3.1/strict/callback.d.ts +8 -1
  24. package/dist/schemas/v3.1/strict/callback.d.ts.map +1 -1
  25. package/dist/schemas/v3.1/strict/callback.js +2 -1
  26. package/dist/schemas/v3.1/strict/callback.js.map +2 -2
  27. package/dist/schemas/v3.1/strict/path-operations.d.ts +90 -13
  28. package/dist/schemas/v3.1/strict/path-operations.d.ts.map +1 -1
  29. package/dist/schemas/v3.1/strict/paths.d.ts +72 -9
  30. package/dist/schemas/v3.1/strict/paths.d.ts.map +1 -1
  31. package/dist/schemas/workspace-specification/index.d.ts +1 -1
  32. package/dist/schemas/workspace.d.ts +2 -2
  33. package/dist/schemas/workspace.d.ts.map +1 -1
  34. package/dist/schemas/workspace.js +2 -1
  35. package/dist/schemas/workspace.js.map +2 -2
  36. package/dist/server.d.ts +137 -119
  37. package/dist/server.d.ts.map +1 -1
  38. package/package.json +6 -6
package/dist/server.d.ts CHANGED
@@ -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;
@@ -86,8 +86,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
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;
@@ -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,8 +518,8 @@ 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;
522
+ description?: string | undefined;
523
523
  $ref: string;
524
524
  } & {
525
525
  $status?: "loading" | "error" | undefined;
@@ -527,8 +527,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
527
527
  } & {
528
528
  [x: `x-${string}`]: unknown;
529
529
  }) | ({
530
- description?: string | undefined;
531
530
  summary?: string | undefined;
531
+ description?: string | undefined;
532
532
  value?: any;
533
533
  externalValue?: string | undefined;
534
534
  } & {
@@ -570,8 +570,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
570
570
  } & {
571
571
  [x: string]: unknown;
572
572
  }) | ({
573
- description?: string | undefined;
574
573
  summary?: string | undefined;
574
+ description?: string | undefined;
575
575
  $ref: string;
576
576
  } & {
577
577
  $status?: "loading" | "error" | undefined;
@@ -592,8 +592,8 @@ 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;
596
+ description?: string | undefined;
597
597
  $ref: string;
598
598
  } & {
599
599
  $status?: "loading" | "error" | undefined;
@@ -601,8 +601,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
601
601
  } & {
602
602
  [x: `x-${string}`]: unknown;
603
603
  }) | ({
604
- description?: string | undefined;
605
604
  summary?: string | undefined;
605
+ description?: string | undefined;
606
606
  value?: any;
607
607
  externalValue?: string | undefined;
608
608
  } & {
@@ -655,8 +655,8 @@ 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;
659
+ description?: string | undefined;
660
660
  $ref: string;
661
661
  } & {
662
662
  $status?: "loading" | "error" | undefined;
@@ -664,8 +664,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
664
664
  } & {
665
665
  [x: `x-${string}`]: unknown;
666
666
  }) | ({
667
- description?: string | undefined;
668
667
  summary?: string | undefined;
668
+ description?: string | undefined;
669
669
  value?: any;
670
670
  externalValue?: string | undefined;
671
671
  } & {
@@ -707,8 +707,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
707
707
  } & {
708
708
  [x: string]: unknown;
709
709
  }) | ({
710
- description?: string | undefined;
711
710
  summary?: string | undefined;
711
+ description?: string | undefined;
712
712
  $ref: string;
713
713
  } & {
714
714
  $status?: "loading" | "error" | undefined;
@@ -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;
@@ -1014,8 +1023,8 @@ export declare function filterHttpMethodsOnly(paths: PathsObject): Record<string
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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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
  });
@@ -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;
@@ -1731,8 +1740,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
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;
@@ -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,8 +2172,8 @@ 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;
2176
+ description?: string | undefined;
2168
2177
  $ref: string;
2169
2178
  } & {
2170
2179
  $status?: "loading" | "error" | undefined;
@@ -2172,8 +2181,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
2172
2181
  } & {
2173
2182
  [x: `x-${string}`]: unknown;
2174
2183
  }) | ({
2175
- description?: string | undefined;
2176
2184
  summary?: string | undefined;
2185
+ description?: string | undefined;
2177
2186
  value?: any;
2178
2187
  externalValue?: string | undefined;
2179
2188
  } & {
@@ -2215,8 +2224,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
2215
2224
  } & {
2216
2225
  [x: string]: unknown;
2217
2226
  }) | ({
2218
- description?: string | undefined;
2219
2227
  summary?: string | undefined;
2228
+ description?: string | undefined;
2220
2229
  $ref: string;
2221
2230
  } & {
2222
2231
  $status?: "loading" | "error" | undefined;
@@ -2237,8 +2246,8 @@ 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;
2250
+ description?: string | undefined;
2242
2251
  $ref: string;
2243
2252
  } & {
2244
2253
  $status?: "loading" | "error" | undefined;
@@ -2246,8 +2255,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
2246
2255
  } & {
2247
2256
  [x: `x-${string}`]: unknown;
2248
2257
  }) | ({
2249
- description?: string | undefined;
2250
2258
  summary?: string | undefined;
2259
+ description?: string | undefined;
2251
2260
  value?: any;
2252
2261
  externalValue?: string | undefined;
2253
2262
  } & {
@@ -2300,8 +2309,8 @@ 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;
2313
+ description?: string | undefined;
2305
2314
  $ref: string;
2306
2315
  } & {
2307
2316
  $status?: "loading" | "error" | undefined;
@@ -2309,8 +2318,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
2309
2318
  } & {
2310
2319
  [x: `x-${string}`]: unknown;
2311
2320
  }) | ({
2312
- description?: string | undefined;
2313
2321
  summary?: string | undefined;
2322
+ description?: string | undefined;
2314
2323
  value?: any;
2315
2324
  externalValue?: string | undefined;
2316
2325
  } & {
@@ -2352,8 +2361,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
2352
2361
  } & {
2353
2362
  [x: string]: unknown;
2354
2363
  }) | ({
2355
- description?: string | undefined;
2356
2364
  summary?: string | undefined;
2365
+ description?: string | undefined;
2357
2366
  $ref: string;
2358
2367
  } & {
2359
2368
  $status?: "loading" | "error" | undefined;
@@ -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;
@@ -2659,8 +2677,8 @@ export declare function escapePaths(paths: Record<string, Record<string, Operati
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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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;
@@ -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
  });
@@ -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"?: string | undefined;
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
  };