@redocly/config 0.37.0 → 0.38.0-custom.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/lib/default-theme-config-schema.d.ts +79 -3
- package/lib/default-theme-config-schema.js +1 -0
- package/lib/ex-theme-config-schemas.d.ts +15 -3
- package/lib/ex-theme-config-schemas.js +11 -2
- package/lib/graphql-config-schema.d.ts +64 -0
- package/lib/graphql-config-schema.js +64 -0
- package/lib/product-override-schema.d.ts +128 -0
- package/lib/root-config-schema.d.ts +1011 -55
- package/lib/root-config-schema.js +2 -1
- package/lib/types/api-functions-types.d.ts +49 -1
- package/lib/types/config-types.d.ts +2 -1
- package/lib/types/portal-shared-types.d.ts +2 -2
- package/lib/types/scorecards-types.d.ts +3 -0
- package/lib/types/scorecards-types.js +3 -0
- package/lib-esm/default-theme-config-schema.d.ts +79 -3
- package/lib-esm/default-theme-config-schema.js +2 -1
- package/lib-esm/ex-theme-config-schemas.d.ts +15 -3
- package/lib-esm/ex-theme-config-schemas.js +10 -1
- package/lib-esm/graphql-config-schema.d.ts +64 -0
- package/lib-esm/graphql-config-schema.js +64 -0
- package/lib-esm/product-override-schema.d.ts +128 -0
- package/lib-esm/root-config-schema.d.ts +1162 -206
- package/lib-esm/root-config-schema.js +3 -2
- package/lib-esm/types/api-functions-types.d.ts +49 -1
- package/lib-esm/types/config-types.d.ts +2 -1
- package/lib-esm/types/portal-shared-types.d.ts +2 -2
- package/lib-esm/types/scorecards-types.d.ts +3 -0
- package/lib-esm/types/scorecards-types.js +2 -0
- package/package.json +1 -1
|
@@ -2620,6 +2620,70 @@ export declare const apiConfigSchema: {
|
|
|
2620
2620
|
};
|
|
2621
2621
|
readonly additionalProperties: false;
|
|
2622
2622
|
};
|
|
2623
|
+
readonly servers: {
|
|
2624
|
+
readonly type: "array";
|
|
2625
|
+
readonly items: {
|
|
2626
|
+
readonly type: "object";
|
|
2627
|
+
readonly properties: {
|
|
2628
|
+
readonly url: {
|
|
2629
|
+
readonly type: "string";
|
|
2630
|
+
};
|
|
2631
|
+
readonly description: {
|
|
2632
|
+
readonly type: "string";
|
|
2633
|
+
};
|
|
2634
|
+
readonly variables: {
|
|
2635
|
+
readonly type: "object";
|
|
2636
|
+
readonly additionalProperties: true;
|
|
2637
|
+
};
|
|
2638
|
+
};
|
|
2639
|
+
readonly required: readonly ["url"];
|
|
2640
|
+
};
|
|
2641
|
+
};
|
|
2642
|
+
readonly info: {
|
|
2643
|
+
readonly type: "object";
|
|
2644
|
+
readonly properties: {
|
|
2645
|
+
readonly title: {
|
|
2646
|
+
readonly type: "string";
|
|
2647
|
+
};
|
|
2648
|
+
readonly description: {
|
|
2649
|
+
readonly type: "string";
|
|
2650
|
+
};
|
|
2651
|
+
readonly summary: {
|
|
2652
|
+
readonly type: "string";
|
|
2653
|
+
};
|
|
2654
|
+
readonly version: {
|
|
2655
|
+
readonly type: "string";
|
|
2656
|
+
};
|
|
2657
|
+
readonly termsOfService: {
|
|
2658
|
+
readonly type: "string";
|
|
2659
|
+
};
|
|
2660
|
+
readonly contact: {
|
|
2661
|
+
readonly type: "object";
|
|
2662
|
+
readonly properties: {
|
|
2663
|
+
readonly name: {
|
|
2664
|
+
readonly type: "string";
|
|
2665
|
+
};
|
|
2666
|
+
readonly email: {
|
|
2667
|
+
readonly type: "string";
|
|
2668
|
+
};
|
|
2669
|
+
readonly url: {
|
|
2670
|
+
readonly type: "string";
|
|
2671
|
+
};
|
|
2672
|
+
};
|
|
2673
|
+
};
|
|
2674
|
+
readonly license: {
|
|
2675
|
+
readonly type: "object";
|
|
2676
|
+
readonly properties: {
|
|
2677
|
+
readonly name: {
|
|
2678
|
+
readonly type: "string";
|
|
2679
|
+
};
|
|
2680
|
+
readonly url: {
|
|
2681
|
+
readonly type: "string";
|
|
2682
|
+
};
|
|
2683
|
+
};
|
|
2684
|
+
};
|
|
2685
|
+
};
|
|
2686
|
+
};
|
|
2623
2687
|
readonly sidebar: {
|
|
2624
2688
|
readonly type: "object";
|
|
2625
2689
|
readonly properties: {
|
|
@@ -4883,6 +4947,70 @@ export declare const apiConfigSchema: {
|
|
|
4883
4947
|
};
|
|
4884
4948
|
readonly additionalProperties: false;
|
|
4885
4949
|
};
|
|
4950
|
+
readonly servers: {
|
|
4951
|
+
readonly type: "array";
|
|
4952
|
+
readonly items: {
|
|
4953
|
+
readonly type: "object";
|
|
4954
|
+
readonly properties: {
|
|
4955
|
+
readonly url: {
|
|
4956
|
+
readonly type: "string";
|
|
4957
|
+
};
|
|
4958
|
+
readonly description: {
|
|
4959
|
+
readonly type: "string";
|
|
4960
|
+
};
|
|
4961
|
+
readonly variables: {
|
|
4962
|
+
readonly type: "object";
|
|
4963
|
+
readonly additionalProperties: true;
|
|
4964
|
+
};
|
|
4965
|
+
};
|
|
4966
|
+
readonly required: readonly ["url"];
|
|
4967
|
+
};
|
|
4968
|
+
};
|
|
4969
|
+
readonly info: {
|
|
4970
|
+
readonly type: "object";
|
|
4971
|
+
readonly properties: {
|
|
4972
|
+
readonly title: {
|
|
4973
|
+
readonly type: "string";
|
|
4974
|
+
};
|
|
4975
|
+
readonly description: {
|
|
4976
|
+
readonly type: "string";
|
|
4977
|
+
};
|
|
4978
|
+
readonly summary: {
|
|
4979
|
+
readonly type: "string";
|
|
4980
|
+
};
|
|
4981
|
+
readonly version: {
|
|
4982
|
+
readonly type: "string";
|
|
4983
|
+
};
|
|
4984
|
+
readonly termsOfService: {
|
|
4985
|
+
readonly type: "string";
|
|
4986
|
+
};
|
|
4987
|
+
readonly contact: {
|
|
4988
|
+
readonly type: "object";
|
|
4989
|
+
readonly properties: {
|
|
4990
|
+
readonly name: {
|
|
4991
|
+
readonly type: "string";
|
|
4992
|
+
};
|
|
4993
|
+
readonly email: {
|
|
4994
|
+
readonly type: "string";
|
|
4995
|
+
};
|
|
4996
|
+
readonly url: {
|
|
4997
|
+
readonly type: "string";
|
|
4998
|
+
};
|
|
4999
|
+
};
|
|
5000
|
+
};
|
|
5001
|
+
readonly license: {
|
|
5002
|
+
readonly type: "object";
|
|
5003
|
+
readonly properties: {
|
|
5004
|
+
readonly name: {
|
|
5005
|
+
readonly type: "string";
|
|
5006
|
+
};
|
|
5007
|
+
readonly url: {
|
|
5008
|
+
readonly type: "string";
|
|
5009
|
+
};
|
|
5010
|
+
};
|
|
5011
|
+
};
|
|
5012
|
+
};
|
|
5013
|
+
};
|
|
4886
5014
|
readonly sidebar: {
|
|
4887
5015
|
readonly type: "object";
|
|
4888
5016
|
readonly properties: {
|
|
@@ -5216,6 +5344,9 @@ export declare const seoConfigSchema: {
|
|
|
5216
5344
|
readonly title: {
|
|
5217
5345
|
readonly type: "string";
|
|
5218
5346
|
};
|
|
5347
|
+
readonly projectTitle: {
|
|
5348
|
+
readonly type: "string";
|
|
5349
|
+
};
|
|
5219
5350
|
readonly description: {
|
|
5220
5351
|
readonly type: "string";
|
|
5221
5352
|
};
|
|
@@ -9499,6 +9630,70 @@ export declare const redoclyConfigSchema: {
|
|
|
9499
9630
|
};
|
|
9500
9631
|
readonly additionalProperties: false;
|
|
9501
9632
|
};
|
|
9633
|
+
readonly servers: {
|
|
9634
|
+
readonly type: "array";
|
|
9635
|
+
readonly items: {
|
|
9636
|
+
readonly type: "object";
|
|
9637
|
+
readonly properties: {
|
|
9638
|
+
readonly url: {
|
|
9639
|
+
readonly type: "string";
|
|
9640
|
+
};
|
|
9641
|
+
readonly description: {
|
|
9642
|
+
readonly type: "string";
|
|
9643
|
+
};
|
|
9644
|
+
readonly variables: {
|
|
9645
|
+
readonly type: "object";
|
|
9646
|
+
readonly additionalProperties: true;
|
|
9647
|
+
};
|
|
9648
|
+
};
|
|
9649
|
+
readonly required: readonly ["url"];
|
|
9650
|
+
};
|
|
9651
|
+
};
|
|
9652
|
+
readonly info: {
|
|
9653
|
+
readonly type: "object";
|
|
9654
|
+
readonly properties: {
|
|
9655
|
+
readonly title: {
|
|
9656
|
+
readonly type: "string";
|
|
9657
|
+
};
|
|
9658
|
+
readonly description: {
|
|
9659
|
+
readonly type: "string";
|
|
9660
|
+
};
|
|
9661
|
+
readonly summary: {
|
|
9662
|
+
readonly type: "string";
|
|
9663
|
+
};
|
|
9664
|
+
readonly version: {
|
|
9665
|
+
readonly type: "string";
|
|
9666
|
+
};
|
|
9667
|
+
readonly termsOfService: {
|
|
9668
|
+
readonly type: "string";
|
|
9669
|
+
};
|
|
9670
|
+
readonly contact: {
|
|
9671
|
+
readonly type: "object";
|
|
9672
|
+
readonly properties: {
|
|
9673
|
+
readonly name: {
|
|
9674
|
+
readonly type: "string";
|
|
9675
|
+
};
|
|
9676
|
+
readonly email: {
|
|
9677
|
+
readonly type: "string";
|
|
9678
|
+
};
|
|
9679
|
+
readonly url: {
|
|
9680
|
+
readonly type: "string";
|
|
9681
|
+
};
|
|
9682
|
+
};
|
|
9683
|
+
};
|
|
9684
|
+
readonly license: {
|
|
9685
|
+
readonly type: "object";
|
|
9686
|
+
readonly properties: {
|
|
9687
|
+
readonly name: {
|
|
9688
|
+
readonly type: "string";
|
|
9689
|
+
};
|
|
9690
|
+
readonly url: {
|
|
9691
|
+
readonly type: "string";
|
|
9692
|
+
};
|
|
9693
|
+
};
|
|
9694
|
+
};
|
|
9695
|
+
};
|
|
9696
|
+
};
|
|
9502
9697
|
readonly sidebar: {
|
|
9503
9698
|
readonly type: "object";
|
|
9504
9699
|
readonly properties: {
|
|
@@ -11855,15 +12050,16 @@ export declare const redoclyConfigSchema: {
|
|
|
11855
12050
|
readonly type: "object";
|
|
11856
12051
|
readonly additionalProperties: true;
|
|
11857
12052
|
};
|
|
12053
|
+
readonly ignore: {
|
|
12054
|
+
readonly type: "boolean";
|
|
12055
|
+
};
|
|
11858
12056
|
readonly where: {
|
|
11859
12057
|
readonly type: "object";
|
|
11860
12058
|
readonly required: readonly ["metadata"];
|
|
11861
12059
|
readonly properties: {
|
|
11862
12060
|
readonly metadata: {
|
|
11863
12061
|
readonly type: "object";
|
|
11864
|
-
readonly additionalProperties: {
|
|
11865
|
-
readonly type: "string";
|
|
11866
|
-
};
|
|
12062
|
+
readonly additionalProperties: {};
|
|
11867
12063
|
};
|
|
11868
12064
|
};
|
|
11869
12065
|
readonly additionalProperties: false;
|
|
@@ -11884,6 +12080,17 @@ export declare const redoclyConfigSchema: {
|
|
|
11884
12080
|
};
|
|
11885
12081
|
};
|
|
11886
12082
|
};
|
|
12083
|
+
readonly scorecards: {
|
|
12084
|
+
readonly type: "object";
|
|
12085
|
+
readonly additionalProperties: true;
|
|
12086
|
+
readonly required: readonly [];
|
|
12087
|
+
readonly properties: {
|
|
12088
|
+
readonly test: {
|
|
12089
|
+
readonly type: "boolean";
|
|
12090
|
+
readonly default: true;
|
|
12091
|
+
};
|
|
12092
|
+
};
|
|
12093
|
+
};
|
|
11887
12094
|
};
|
|
11888
12095
|
readonly additionalProperties: true;
|
|
11889
12096
|
};
|
|
@@ -15144,6 +15351,70 @@ export declare const redoclyConfigSchema: {
|
|
|
15144
15351
|
};
|
|
15145
15352
|
readonly additionalProperties: false;
|
|
15146
15353
|
};
|
|
15354
|
+
readonly servers: {
|
|
15355
|
+
readonly type: "array";
|
|
15356
|
+
readonly items: {
|
|
15357
|
+
readonly type: "object";
|
|
15358
|
+
readonly properties: {
|
|
15359
|
+
readonly url: {
|
|
15360
|
+
readonly type: "string";
|
|
15361
|
+
};
|
|
15362
|
+
readonly description: {
|
|
15363
|
+
readonly type: "string";
|
|
15364
|
+
};
|
|
15365
|
+
readonly variables: {
|
|
15366
|
+
readonly type: "object";
|
|
15367
|
+
readonly additionalProperties: true;
|
|
15368
|
+
};
|
|
15369
|
+
};
|
|
15370
|
+
readonly required: readonly ["url"];
|
|
15371
|
+
};
|
|
15372
|
+
};
|
|
15373
|
+
readonly info: {
|
|
15374
|
+
readonly type: "object";
|
|
15375
|
+
readonly properties: {
|
|
15376
|
+
readonly title: {
|
|
15377
|
+
readonly type: "string";
|
|
15378
|
+
};
|
|
15379
|
+
readonly description: {
|
|
15380
|
+
readonly type: "string";
|
|
15381
|
+
};
|
|
15382
|
+
readonly summary: {
|
|
15383
|
+
readonly type: "string";
|
|
15384
|
+
};
|
|
15385
|
+
readonly version: {
|
|
15386
|
+
readonly type: "string";
|
|
15387
|
+
};
|
|
15388
|
+
readonly termsOfService: {
|
|
15389
|
+
readonly type: "string";
|
|
15390
|
+
};
|
|
15391
|
+
readonly contact: {
|
|
15392
|
+
readonly type: "object";
|
|
15393
|
+
readonly properties: {
|
|
15394
|
+
readonly name: {
|
|
15395
|
+
readonly type: "string";
|
|
15396
|
+
};
|
|
15397
|
+
readonly email: {
|
|
15398
|
+
readonly type: "string";
|
|
15399
|
+
};
|
|
15400
|
+
readonly url: {
|
|
15401
|
+
readonly type: "string";
|
|
15402
|
+
};
|
|
15403
|
+
};
|
|
15404
|
+
};
|
|
15405
|
+
readonly license: {
|
|
15406
|
+
readonly type: "object";
|
|
15407
|
+
readonly properties: {
|
|
15408
|
+
readonly name: {
|
|
15409
|
+
readonly type: "string";
|
|
15410
|
+
};
|
|
15411
|
+
readonly url: {
|
|
15412
|
+
readonly type: "string";
|
|
15413
|
+
};
|
|
15414
|
+
};
|
|
15415
|
+
};
|
|
15416
|
+
};
|
|
15417
|
+
};
|
|
15147
15418
|
readonly sidebar: {
|
|
15148
15419
|
readonly type: "object";
|
|
15149
15420
|
readonly properties: {
|
|
@@ -17503,15 +17774,16 @@ export declare const redoclyConfigSchema: {
|
|
|
17503
17774
|
readonly type: "object";
|
|
17504
17775
|
readonly additionalProperties: true;
|
|
17505
17776
|
};
|
|
17777
|
+
readonly ignore: {
|
|
17778
|
+
readonly type: "boolean";
|
|
17779
|
+
};
|
|
17506
17780
|
readonly where: {
|
|
17507
17781
|
readonly type: "object";
|
|
17508
17782
|
readonly required: readonly ["metadata"];
|
|
17509
17783
|
readonly properties: {
|
|
17510
17784
|
readonly metadata: {
|
|
17511
17785
|
readonly type: "object";
|
|
17512
|
-
readonly additionalProperties: {
|
|
17513
|
-
readonly type: "string";
|
|
17514
|
-
};
|
|
17786
|
+
readonly additionalProperties: {};
|
|
17515
17787
|
};
|
|
17516
17788
|
};
|
|
17517
17789
|
readonly additionalProperties: false;
|
|
@@ -17532,6 +17804,17 @@ export declare const redoclyConfigSchema: {
|
|
|
17532
17804
|
};
|
|
17533
17805
|
};
|
|
17534
17806
|
};
|
|
17807
|
+
readonly scorecards: {
|
|
17808
|
+
readonly type: "object";
|
|
17809
|
+
readonly additionalProperties: true;
|
|
17810
|
+
readonly required: readonly [];
|
|
17811
|
+
readonly properties: {
|
|
17812
|
+
readonly test: {
|
|
17813
|
+
readonly type: "boolean";
|
|
17814
|
+
readonly default: true;
|
|
17815
|
+
};
|
|
17816
|
+
};
|
|
17817
|
+
};
|
|
17535
17818
|
readonly mcp: {
|
|
17536
17819
|
readonly type: "object";
|
|
17537
17820
|
readonly properties: {
|
|
@@ -17768,6 +18051,9 @@ export declare const redoclyConfigSchema: {
|
|
|
17768
18051
|
readonly title: {
|
|
17769
18052
|
readonly type: "string";
|
|
17770
18053
|
};
|
|
18054
|
+
readonly projectTitle: {
|
|
18055
|
+
readonly type: "string";
|
|
18056
|
+
};
|
|
17771
18057
|
readonly description: {
|
|
17772
18058
|
readonly type: "string";
|
|
17773
18059
|
};
|
|
@@ -20157,6 +20443,70 @@ export declare const redoclyConfigSchema: {
|
|
|
20157
20443
|
};
|
|
20158
20444
|
readonly additionalProperties: false;
|
|
20159
20445
|
};
|
|
20446
|
+
readonly servers: {
|
|
20447
|
+
readonly type: "array";
|
|
20448
|
+
readonly items: {
|
|
20449
|
+
readonly type: "object";
|
|
20450
|
+
readonly properties: {
|
|
20451
|
+
readonly url: {
|
|
20452
|
+
readonly type: "string";
|
|
20453
|
+
};
|
|
20454
|
+
readonly description: {
|
|
20455
|
+
readonly type: "string";
|
|
20456
|
+
};
|
|
20457
|
+
readonly variables: {
|
|
20458
|
+
readonly type: "object";
|
|
20459
|
+
readonly additionalProperties: true;
|
|
20460
|
+
};
|
|
20461
|
+
};
|
|
20462
|
+
readonly required: readonly ["url"];
|
|
20463
|
+
};
|
|
20464
|
+
};
|
|
20465
|
+
readonly info: {
|
|
20466
|
+
readonly type: "object";
|
|
20467
|
+
readonly properties: {
|
|
20468
|
+
readonly title: {
|
|
20469
|
+
readonly type: "string";
|
|
20470
|
+
};
|
|
20471
|
+
readonly description: {
|
|
20472
|
+
readonly type: "string";
|
|
20473
|
+
};
|
|
20474
|
+
readonly summary: {
|
|
20475
|
+
readonly type: "string";
|
|
20476
|
+
};
|
|
20477
|
+
readonly version: {
|
|
20478
|
+
readonly type: "string";
|
|
20479
|
+
};
|
|
20480
|
+
readonly termsOfService: {
|
|
20481
|
+
readonly type: "string";
|
|
20482
|
+
};
|
|
20483
|
+
readonly contact: {
|
|
20484
|
+
readonly type: "object";
|
|
20485
|
+
readonly properties: {
|
|
20486
|
+
readonly name: {
|
|
20487
|
+
readonly type: "string";
|
|
20488
|
+
};
|
|
20489
|
+
readonly email: {
|
|
20490
|
+
readonly type: "string";
|
|
20491
|
+
};
|
|
20492
|
+
readonly url: {
|
|
20493
|
+
readonly type: "string";
|
|
20494
|
+
};
|
|
20495
|
+
};
|
|
20496
|
+
};
|
|
20497
|
+
readonly license: {
|
|
20498
|
+
readonly type: "object";
|
|
20499
|
+
readonly properties: {
|
|
20500
|
+
readonly name: {
|
|
20501
|
+
readonly type: "string";
|
|
20502
|
+
};
|
|
20503
|
+
readonly url: {
|
|
20504
|
+
readonly type: "string";
|
|
20505
|
+
};
|
|
20506
|
+
};
|
|
20507
|
+
};
|
|
20508
|
+
};
|
|
20509
|
+
};
|
|
20160
20510
|
readonly sidebar: {
|
|
20161
20511
|
readonly type: "object";
|
|
20162
20512
|
readonly properties: {
|
|
@@ -22420,6 +22770,70 @@ export declare const redoclyConfigSchema: {
|
|
|
22420
22770
|
};
|
|
22421
22771
|
readonly additionalProperties: false;
|
|
22422
22772
|
};
|
|
22773
|
+
readonly servers: {
|
|
22774
|
+
readonly type: "array";
|
|
22775
|
+
readonly items: {
|
|
22776
|
+
readonly type: "object";
|
|
22777
|
+
readonly properties: {
|
|
22778
|
+
readonly url: {
|
|
22779
|
+
readonly type: "string";
|
|
22780
|
+
};
|
|
22781
|
+
readonly description: {
|
|
22782
|
+
readonly type: "string";
|
|
22783
|
+
};
|
|
22784
|
+
readonly variables: {
|
|
22785
|
+
readonly type: "object";
|
|
22786
|
+
readonly additionalProperties: true;
|
|
22787
|
+
};
|
|
22788
|
+
};
|
|
22789
|
+
readonly required: readonly ["url"];
|
|
22790
|
+
};
|
|
22791
|
+
};
|
|
22792
|
+
readonly info: {
|
|
22793
|
+
readonly type: "object";
|
|
22794
|
+
readonly properties: {
|
|
22795
|
+
readonly title: {
|
|
22796
|
+
readonly type: "string";
|
|
22797
|
+
};
|
|
22798
|
+
readonly description: {
|
|
22799
|
+
readonly type: "string";
|
|
22800
|
+
};
|
|
22801
|
+
readonly summary: {
|
|
22802
|
+
readonly type: "string";
|
|
22803
|
+
};
|
|
22804
|
+
readonly version: {
|
|
22805
|
+
readonly type: "string";
|
|
22806
|
+
};
|
|
22807
|
+
readonly termsOfService: {
|
|
22808
|
+
readonly type: "string";
|
|
22809
|
+
};
|
|
22810
|
+
readonly contact: {
|
|
22811
|
+
readonly type: "object";
|
|
22812
|
+
readonly properties: {
|
|
22813
|
+
readonly name: {
|
|
22814
|
+
readonly type: "string";
|
|
22815
|
+
};
|
|
22816
|
+
readonly email: {
|
|
22817
|
+
readonly type: "string";
|
|
22818
|
+
};
|
|
22819
|
+
readonly url: {
|
|
22820
|
+
readonly type: "string";
|
|
22821
|
+
};
|
|
22822
|
+
};
|
|
22823
|
+
};
|
|
22824
|
+
readonly license: {
|
|
22825
|
+
readonly type: "object";
|
|
22826
|
+
readonly properties: {
|
|
22827
|
+
readonly name: {
|
|
22828
|
+
readonly type: "string";
|
|
22829
|
+
};
|
|
22830
|
+
readonly url: {
|
|
22831
|
+
readonly type: "string";
|
|
22832
|
+
};
|
|
22833
|
+
};
|
|
22834
|
+
};
|
|
22835
|
+
};
|
|
22836
|
+
};
|
|
22423
22837
|
readonly sidebar: {
|
|
22424
22838
|
readonly type: "object";
|
|
22425
22839
|
readonly properties: {
|
|
@@ -23002,19 +23416,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23002
23416
|
href: {
|
|
23003
23417
|
type: "string";
|
|
23004
23418
|
};
|
|
23005
|
-
|
|
23006
|
-
type: "string";
|
|
23007
|
-
};
|
|
23008
|
-
fetchpriority: {
|
|
23009
|
-
type: "string";
|
|
23010
|
-
};
|
|
23011
|
-
integrity: {
|
|
23419
|
+
as: {
|
|
23012
23420
|
type: "string";
|
|
23013
23421
|
};
|
|
23014
|
-
|
|
23422
|
+
crossorigin: {
|
|
23015
23423
|
type: "string";
|
|
23016
23424
|
};
|
|
23017
|
-
|
|
23425
|
+
fetchpriority: {
|
|
23018
23426
|
type: "string";
|
|
23019
23427
|
};
|
|
23020
23428
|
hreflang: {
|
|
@@ -23026,12 +23434,18 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23026
23434
|
imagesrcset: {
|
|
23027
23435
|
type: "string";
|
|
23028
23436
|
};
|
|
23437
|
+
integrity: {
|
|
23438
|
+
type: "string";
|
|
23439
|
+
};
|
|
23029
23440
|
media: {
|
|
23030
23441
|
type: "string";
|
|
23031
23442
|
};
|
|
23032
23443
|
prefetch: {
|
|
23033
23444
|
type: "string";
|
|
23034
23445
|
};
|
|
23446
|
+
referrerpolicy: {
|
|
23447
|
+
type: "string";
|
|
23448
|
+
};
|
|
23035
23449
|
rel: {
|
|
23036
23450
|
type: "string";
|
|
23037
23451
|
};
|
|
@@ -23055,10 +23469,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23055
23469
|
properties: {
|
|
23056
23470
|
label: /*elided*/ any;
|
|
23057
23471
|
items: /*elided*/ any;
|
|
23058
|
-
page: /*elided*/ any;
|
|
23059
23472
|
href: /*elided*/ any;
|
|
23473
|
+
page: /*elided*/ any;
|
|
23060
23474
|
icon: /*elided*/ any;
|
|
23061
23475
|
rbac: /*elided*/ any;
|
|
23476
|
+
separatorLine: /*elided*/ any;
|
|
23477
|
+
linePosition: /*elided*/ any;
|
|
23062
23478
|
directory: /*elided*/ any;
|
|
23063
23479
|
disconnect: /*elided*/ any;
|
|
23064
23480
|
group: /*elided*/ any;
|
|
@@ -23066,8 +23482,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23066
23482
|
labelTranslationKey: /*elided*/ any;
|
|
23067
23483
|
groupTranslationKey: /*elided*/ any;
|
|
23068
23484
|
separator: /*elided*/ any;
|
|
23069
|
-
separatorLine: /*elided*/ any;
|
|
23070
|
-
linePosition: /*elided*/ any;
|
|
23071
23485
|
version: /*elided*/ any;
|
|
23072
23486
|
menuStyle: /*elided*/ any;
|
|
23073
23487
|
expanded: /*elided*/ any;
|
|
@@ -23080,10 +23494,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23080
23494
|
};
|
|
23081
23495
|
type: "array";
|
|
23082
23496
|
};
|
|
23083
|
-
|
|
23497
|
+
href: {
|
|
23084
23498
|
type: "string";
|
|
23085
23499
|
};
|
|
23086
|
-
|
|
23500
|
+
page: {
|
|
23087
23501
|
type: "string";
|
|
23088
23502
|
};
|
|
23089
23503
|
icon: {
|
|
@@ -23103,6 +23517,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23103
23517
|
};
|
|
23104
23518
|
type: "object";
|
|
23105
23519
|
};
|
|
23520
|
+
separatorLine: {
|
|
23521
|
+
type: "boolean";
|
|
23522
|
+
};
|
|
23523
|
+
linePosition: {
|
|
23524
|
+
enum: ("top" | "bottom")[];
|
|
23525
|
+
type: "string";
|
|
23526
|
+
};
|
|
23106
23527
|
directory: {
|
|
23107
23528
|
type: "string";
|
|
23108
23529
|
};
|
|
@@ -23124,13 +23545,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
23124
23545
|
separator: {
|
|
23125
23546
|
type: "string";
|
|
23126
23547
|
};
|
|
23127
|
-
separatorLine: {
|
|
23128
|
-
type: "boolean";
|
|
23129
|
-
};
|
|
23130
|
-
linePosition: {
|
|
23131
|
-
enum: ("top" | "bottom")[];
|
|
23132
|
-
type: "string";
|
|
23133
|
-
};
|
|
23134
23548
|
version: {
|
|
23135
23549
|
type: "string";
|
|
23136
23550
|
};
|
|
@@ -24357,6 +24771,51 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24357
24771
|
};
|
|
24358
24772
|
type: "object";
|
|
24359
24773
|
};
|
|
24774
|
+
info: {
|
|
24775
|
+
properties: {
|
|
24776
|
+
title: {
|
|
24777
|
+
type: "string";
|
|
24778
|
+
};
|
|
24779
|
+
description: {
|
|
24780
|
+
type: "string";
|
|
24781
|
+
};
|
|
24782
|
+
version: {
|
|
24783
|
+
type: "string";
|
|
24784
|
+
};
|
|
24785
|
+
summary: {
|
|
24786
|
+
type: "string";
|
|
24787
|
+
};
|
|
24788
|
+
termsOfService: {
|
|
24789
|
+
type: "string";
|
|
24790
|
+
};
|
|
24791
|
+
contact: {
|
|
24792
|
+
properties: {
|
|
24793
|
+
url: {
|
|
24794
|
+
type: "string";
|
|
24795
|
+
};
|
|
24796
|
+
name: {
|
|
24797
|
+
type: "string";
|
|
24798
|
+
};
|
|
24799
|
+
email: {
|
|
24800
|
+
type: "string";
|
|
24801
|
+
};
|
|
24802
|
+
};
|
|
24803
|
+
type: "object";
|
|
24804
|
+
};
|
|
24805
|
+
license: {
|
|
24806
|
+
properties: {
|
|
24807
|
+
url: {
|
|
24808
|
+
type: "string";
|
|
24809
|
+
};
|
|
24810
|
+
name: {
|
|
24811
|
+
type: "string";
|
|
24812
|
+
};
|
|
24813
|
+
};
|
|
24814
|
+
type: "object";
|
|
24815
|
+
};
|
|
24816
|
+
};
|
|
24817
|
+
type: "object";
|
|
24818
|
+
};
|
|
24360
24819
|
metadata: {
|
|
24361
24820
|
properties: {
|
|
24362
24821
|
apiId: {
|
|
@@ -24522,6 +24981,25 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24522
24981
|
additionalProperties: false;
|
|
24523
24982
|
type: "object";
|
|
24524
24983
|
};
|
|
24984
|
+
servers: {
|
|
24985
|
+
items: {
|
|
24986
|
+
properties: {
|
|
24987
|
+
url: {
|
|
24988
|
+
type: "string";
|
|
24989
|
+
};
|
|
24990
|
+
description: {
|
|
24991
|
+
type: "string";
|
|
24992
|
+
};
|
|
24993
|
+
variables: {
|
|
24994
|
+
additionalProperties: true;
|
|
24995
|
+
type: "object";
|
|
24996
|
+
};
|
|
24997
|
+
};
|
|
24998
|
+
type: "object";
|
|
24999
|
+
required: "url"[];
|
|
25000
|
+
};
|
|
25001
|
+
type: "array";
|
|
25002
|
+
};
|
|
24525
25003
|
apiLogo: {
|
|
24526
25004
|
properties: {
|
|
24527
25005
|
backgroundColor: {
|
|
@@ -24530,10 +25008,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24530
25008
|
href: {
|
|
24531
25009
|
type: "string";
|
|
24532
25010
|
};
|
|
24533
|
-
|
|
25011
|
+
altText: {
|
|
24534
25012
|
type: "string";
|
|
24535
25013
|
};
|
|
24536
|
-
|
|
25014
|
+
imageUrl: {
|
|
24537
25015
|
type: "string";
|
|
24538
25016
|
};
|
|
24539
25017
|
};
|
|
@@ -24593,10 +25071,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24593
25071
|
properties: {
|
|
24594
25072
|
label: /*elided*/ any;
|
|
24595
25073
|
items: /*elided*/ any;
|
|
24596
|
-
page: /*elided*/ any;
|
|
24597
25074
|
href: /*elided*/ any;
|
|
25075
|
+
page: /*elided*/ any;
|
|
24598
25076
|
icon: /*elided*/ any;
|
|
24599
25077
|
rbac: /*elided*/ any;
|
|
25078
|
+
separatorLine: /*elided*/ any;
|
|
25079
|
+
linePosition: /*elided*/ any;
|
|
24600
25080
|
directory: /*elided*/ any;
|
|
24601
25081
|
disconnect: /*elided*/ any;
|
|
24602
25082
|
group: /*elided*/ any;
|
|
@@ -24604,8 +25084,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24604
25084
|
labelTranslationKey: /*elided*/ any;
|
|
24605
25085
|
groupTranslationKey: /*elided*/ any;
|
|
24606
25086
|
separator: /*elided*/ any;
|
|
24607
|
-
separatorLine: /*elided*/ any;
|
|
24608
|
-
linePosition: /*elided*/ any;
|
|
24609
25087
|
version: /*elided*/ any;
|
|
24610
25088
|
menuStyle: /*elided*/ any;
|
|
24611
25089
|
expanded: /*elided*/ any;
|
|
@@ -24618,10 +25096,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24618
25096
|
};
|
|
24619
25097
|
type: "array";
|
|
24620
25098
|
};
|
|
24621
|
-
|
|
25099
|
+
href: {
|
|
24622
25100
|
type: "string";
|
|
24623
25101
|
};
|
|
24624
|
-
|
|
25102
|
+
page: {
|
|
24625
25103
|
type: "string";
|
|
24626
25104
|
};
|
|
24627
25105
|
icon: {
|
|
@@ -24641,6 +25119,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24641
25119
|
};
|
|
24642
25120
|
type: "object";
|
|
24643
25121
|
};
|
|
25122
|
+
separatorLine: {
|
|
25123
|
+
type: "boolean";
|
|
25124
|
+
};
|
|
25125
|
+
linePosition: {
|
|
25126
|
+
enum: ("top" | "bottom")[];
|
|
25127
|
+
type: "string";
|
|
25128
|
+
};
|
|
24644
25129
|
directory: {
|
|
24645
25130
|
type: "string";
|
|
24646
25131
|
};
|
|
@@ -24662,13 +25147,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24662
25147
|
separator: {
|
|
24663
25148
|
type: "string";
|
|
24664
25149
|
};
|
|
24665
|
-
separatorLine: {
|
|
24666
|
-
type: "boolean";
|
|
24667
|
-
};
|
|
24668
|
-
linePosition: {
|
|
24669
|
-
enum: ("top" | "bottom")[];
|
|
24670
|
-
type: "string";
|
|
24671
|
-
};
|
|
24672
25150
|
version: {
|
|
24673
25151
|
type: "string";
|
|
24674
25152
|
};
|
|
@@ -24731,21 +25209,24 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24731
25209
|
src: {
|
|
24732
25210
|
type: "string";
|
|
24733
25211
|
};
|
|
24734
|
-
async: {
|
|
24735
|
-
type: "boolean";
|
|
24736
|
-
};
|
|
24737
25212
|
crossorigin: {
|
|
24738
25213
|
type: "string";
|
|
24739
25214
|
};
|
|
24740
|
-
defer: {
|
|
24741
|
-
type: "boolean";
|
|
24742
|
-
};
|
|
24743
25215
|
fetchpriority: {
|
|
24744
25216
|
type: "string";
|
|
24745
25217
|
};
|
|
24746
25218
|
integrity: {
|
|
24747
25219
|
type: "string";
|
|
24748
25220
|
};
|
|
25221
|
+
referrerpolicy: {
|
|
25222
|
+
type: "string";
|
|
25223
|
+
};
|
|
25224
|
+
async: {
|
|
25225
|
+
type: "boolean";
|
|
25226
|
+
};
|
|
25227
|
+
defer: {
|
|
25228
|
+
type: "boolean";
|
|
25229
|
+
};
|
|
24749
25230
|
module: {
|
|
24750
25231
|
type: "boolean";
|
|
24751
25232
|
};
|
|
@@ -24755,9 +25236,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24755
25236
|
nonce: {
|
|
24756
25237
|
type: "string";
|
|
24757
25238
|
};
|
|
24758
|
-
referrerpolicy: {
|
|
24759
|
-
type: "string";
|
|
24760
|
-
};
|
|
24761
25239
|
};
|
|
24762
25240
|
additionalProperties: true;
|
|
24763
25241
|
type: "object";
|
|
@@ -24774,21 +25252,24 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24774
25252
|
src: {
|
|
24775
25253
|
type: "string";
|
|
24776
25254
|
};
|
|
24777
|
-
async: {
|
|
24778
|
-
type: "boolean";
|
|
24779
|
-
};
|
|
24780
25255
|
crossorigin: {
|
|
24781
25256
|
type: "string";
|
|
24782
25257
|
};
|
|
24783
|
-
defer: {
|
|
24784
|
-
type: "boolean";
|
|
24785
|
-
};
|
|
24786
25258
|
fetchpriority: {
|
|
24787
25259
|
type: "string";
|
|
24788
25260
|
};
|
|
24789
25261
|
integrity: {
|
|
24790
25262
|
type: "string";
|
|
24791
25263
|
};
|
|
25264
|
+
referrerpolicy: {
|
|
25265
|
+
type: "string";
|
|
25266
|
+
};
|
|
25267
|
+
async: {
|
|
25268
|
+
type: "boolean";
|
|
25269
|
+
};
|
|
25270
|
+
defer: {
|
|
25271
|
+
type: "boolean";
|
|
25272
|
+
};
|
|
24792
25273
|
module: {
|
|
24793
25274
|
type: "boolean";
|
|
24794
25275
|
};
|
|
@@ -24798,9 +25279,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
24798
25279
|
nonce: {
|
|
24799
25280
|
type: "string";
|
|
24800
25281
|
};
|
|
24801
|
-
referrerpolicy: {
|
|
24802
|
-
type: "string";
|
|
24803
|
-
};
|
|
24804
25282
|
};
|
|
24805
25283
|
additionalProperties: true;
|
|
24806
25284
|
type: "object";
|
|
@@ -25520,10 +25998,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25520
25998
|
link: {
|
|
25521
25999
|
type: "string";
|
|
25522
26000
|
};
|
|
25523
|
-
|
|
26001
|
+
separatorLine: {
|
|
25524
26002
|
type: "boolean";
|
|
25525
26003
|
};
|
|
25526
|
-
|
|
26004
|
+
external: {
|
|
25527
26005
|
type: "boolean";
|
|
25528
26006
|
};
|
|
25529
26007
|
};
|
|
@@ -25597,10 +26075,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25597
26075
|
items: /*elided*/ any;
|
|
25598
26076
|
type: "array";
|
|
25599
26077
|
};
|
|
25600
|
-
|
|
26078
|
+
href: {
|
|
25601
26079
|
type: "string";
|
|
25602
26080
|
};
|
|
25603
|
-
|
|
26081
|
+
page: {
|
|
25604
26082
|
type: "string";
|
|
25605
26083
|
};
|
|
25606
26084
|
icon: {
|
|
@@ -25610,6 +26088,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25610
26088
|
additionalProperties: /*elided*/ any;
|
|
25611
26089
|
type: "object";
|
|
25612
26090
|
};
|
|
26091
|
+
separatorLine: {
|
|
26092
|
+
type: "boolean";
|
|
26093
|
+
};
|
|
26094
|
+
linePosition: {
|
|
26095
|
+
enum: ("top" | "bottom")[];
|
|
26096
|
+
type: "string";
|
|
26097
|
+
};
|
|
25613
26098
|
directory: {
|
|
25614
26099
|
type: "string";
|
|
25615
26100
|
};
|
|
@@ -25631,13 +26116,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25631
26116
|
separator: {
|
|
25632
26117
|
type: "string";
|
|
25633
26118
|
};
|
|
25634
|
-
separatorLine: {
|
|
25635
|
-
type: "boolean";
|
|
25636
|
-
};
|
|
25637
|
-
linePosition: {
|
|
25638
|
-
enum: ("top" | "bottom")[];
|
|
25639
|
-
type: "string";
|
|
25640
|
-
};
|
|
25641
26119
|
version: {
|
|
25642
26120
|
type: "string";
|
|
25643
26121
|
};
|
|
@@ -25765,10 +26243,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
25765
26243
|
};
|
|
25766
26244
|
icon: {
|
|
25767
26245
|
properties: {
|
|
25768
|
-
|
|
26246
|
+
srcSet: {
|
|
25769
26247
|
type: "string";
|
|
25770
26248
|
};
|
|
25771
|
-
|
|
26249
|
+
src: {
|
|
25772
26250
|
type: "string";
|
|
25773
26251
|
};
|
|
25774
26252
|
};
|
|
@@ -26276,10 +26754,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26276
26754
|
items: /*elided*/ any;
|
|
26277
26755
|
type: "array";
|
|
26278
26756
|
};
|
|
26279
|
-
|
|
26757
|
+
href: {
|
|
26280
26758
|
type: "string";
|
|
26281
26759
|
};
|
|
26282
|
-
|
|
26760
|
+
page: {
|
|
26283
26761
|
type: "string";
|
|
26284
26762
|
};
|
|
26285
26763
|
icon: {
|
|
@@ -26289,6 +26767,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26289
26767
|
additionalProperties: /*elided*/ any;
|
|
26290
26768
|
type: "object";
|
|
26291
26769
|
};
|
|
26770
|
+
separatorLine: {
|
|
26771
|
+
type: "boolean";
|
|
26772
|
+
};
|
|
26773
|
+
linePosition: {
|
|
26774
|
+
enum: ("top" | "bottom")[];
|
|
26775
|
+
type: "string";
|
|
26776
|
+
};
|
|
26292
26777
|
directory: {
|
|
26293
26778
|
type: "string";
|
|
26294
26779
|
};
|
|
@@ -26310,13 +26795,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26310
26795
|
separator: {
|
|
26311
26796
|
type: "string";
|
|
26312
26797
|
};
|
|
26313
|
-
separatorLine: {
|
|
26314
|
-
type: "boolean";
|
|
26315
|
-
};
|
|
26316
|
-
linePosition: {
|
|
26317
|
-
enum: ("top" | "bottom")[];
|
|
26318
|
-
type: "string";
|
|
26319
|
-
};
|
|
26320
26798
|
version: {
|
|
26321
26799
|
type: "string";
|
|
26322
26800
|
};
|
|
@@ -26650,6 +27128,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26650
27128
|
type: "object";
|
|
26651
27129
|
required: "metadata"[];
|
|
26652
27130
|
};
|
|
27131
|
+
ignore: {
|
|
27132
|
+
type: "boolean";
|
|
27133
|
+
};
|
|
26653
27134
|
minimumLevel: {
|
|
26654
27135
|
type: "string";
|
|
26655
27136
|
};
|
|
@@ -26669,6 +27150,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26669
27150
|
type: "object";
|
|
26670
27151
|
required: never[];
|
|
26671
27152
|
};
|
|
27153
|
+
scorecards: {
|
|
27154
|
+
properties: {
|
|
27155
|
+
test: {
|
|
27156
|
+
type: "boolean";
|
|
27157
|
+
};
|
|
27158
|
+
};
|
|
27159
|
+
additionalProperties: true;
|
|
27160
|
+
type: "object";
|
|
27161
|
+
required: never[];
|
|
27162
|
+
};
|
|
26672
27163
|
imports: {
|
|
26673
27164
|
items: {
|
|
26674
27165
|
type: "string";
|
|
@@ -26731,19 +27222,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26731
27222
|
href: {
|
|
26732
27223
|
type: "string";
|
|
26733
27224
|
};
|
|
26734
|
-
|
|
26735
|
-
type: "string";
|
|
26736
|
-
};
|
|
26737
|
-
fetchpriority: {
|
|
26738
|
-
type: "string";
|
|
26739
|
-
};
|
|
26740
|
-
integrity: {
|
|
27225
|
+
as: {
|
|
26741
27226
|
type: "string";
|
|
26742
27227
|
};
|
|
26743
|
-
|
|
27228
|
+
crossorigin: {
|
|
26744
27229
|
type: "string";
|
|
26745
27230
|
};
|
|
26746
|
-
|
|
27231
|
+
fetchpriority: {
|
|
26747
27232
|
type: "string";
|
|
26748
27233
|
};
|
|
26749
27234
|
hreflang: {
|
|
@@ -26755,12 +27240,18 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26755
27240
|
imagesrcset: {
|
|
26756
27241
|
type: "string";
|
|
26757
27242
|
};
|
|
27243
|
+
integrity: {
|
|
27244
|
+
type: "string";
|
|
27245
|
+
};
|
|
26758
27246
|
media: {
|
|
26759
27247
|
type: "string";
|
|
26760
27248
|
};
|
|
26761
27249
|
prefetch: {
|
|
26762
27250
|
type: "string";
|
|
26763
27251
|
};
|
|
27252
|
+
referrerpolicy: {
|
|
27253
|
+
type: "string";
|
|
27254
|
+
};
|
|
26764
27255
|
rel: {
|
|
26765
27256
|
type: "string";
|
|
26766
27257
|
};
|
|
@@ -26792,10 +27283,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26792
27283
|
};
|
|
26793
27284
|
type: "array";
|
|
26794
27285
|
};
|
|
26795
|
-
|
|
27286
|
+
href: {
|
|
26796
27287
|
type: "string";
|
|
26797
27288
|
};
|
|
26798
|
-
|
|
27289
|
+
page: {
|
|
26799
27290
|
type: "string";
|
|
26800
27291
|
};
|
|
26801
27292
|
icon: {
|
|
@@ -26813,6 +27304,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26813
27304
|
};
|
|
26814
27305
|
type: "object";
|
|
26815
27306
|
};
|
|
27307
|
+
separatorLine: {
|
|
27308
|
+
type: "boolean";
|
|
27309
|
+
};
|
|
27310
|
+
linePosition: {
|
|
27311
|
+
enum: ("top" | "bottom")[];
|
|
27312
|
+
type: "string";
|
|
27313
|
+
};
|
|
26816
27314
|
directory: {
|
|
26817
27315
|
type: "string";
|
|
26818
27316
|
};
|
|
@@ -26834,13 +27332,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26834
27332
|
separator: {
|
|
26835
27333
|
type: "string";
|
|
26836
27334
|
};
|
|
26837
|
-
separatorLine: {
|
|
26838
|
-
type: "boolean";
|
|
26839
|
-
};
|
|
26840
|
-
linePosition: {
|
|
26841
|
-
enum: ("top" | "bottom")[];
|
|
26842
|
-
type: "string";
|
|
26843
|
-
};
|
|
26844
27335
|
version: {
|
|
26845
27336
|
type: "string";
|
|
26846
27337
|
};
|
|
@@ -26873,10 +27364,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26873
27364
|
};
|
|
26874
27365
|
type: "array";
|
|
26875
27366
|
};
|
|
26876
|
-
|
|
27367
|
+
href: {
|
|
26877
27368
|
type: "string";
|
|
26878
27369
|
};
|
|
26879
|
-
|
|
27370
|
+
page: {
|
|
26880
27371
|
type: "string";
|
|
26881
27372
|
};
|
|
26882
27373
|
icon: {
|
|
@@ -26898,6 +27389,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26898
27389
|
};
|
|
26899
27390
|
type: "object";
|
|
26900
27391
|
};
|
|
27392
|
+
separatorLine: {
|
|
27393
|
+
type: "boolean";
|
|
27394
|
+
};
|
|
27395
|
+
linePosition: {
|
|
27396
|
+
enum: ("top" | "bottom")[];
|
|
27397
|
+
type: "string";
|
|
27398
|
+
};
|
|
26901
27399
|
directory: {
|
|
26902
27400
|
type: "string";
|
|
26903
27401
|
};
|
|
@@ -26919,13 +27417,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
26919
27417
|
separator: {
|
|
26920
27418
|
type: "string";
|
|
26921
27419
|
};
|
|
26922
|
-
separatorLine: {
|
|
26923
|
-
type: "boolean";
|
|
26924
|
-
};
|
|
26925
|
-
linePosition: {
|
|
26926
|
-
enum: ("top" | "bottom")[];
|
|
26927
|
-
type: "string";
|
|
26928
|
-
};
|
|
26929
27420
|
version: {
|
|
26930
27421
|
type: "string";
|
|
26931
27422
|
};
|
|
@@ -28576,6 +29067,51 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28576
29067
|
};
|
|
28577
29068
|
type: "object";
|
|
28578
29069
|
};
|
|
29070
|
+
info: {
|
|
29071
|
+
properties: {
|
|
29072
|
+
title: {
|
|
29073
|
+
type: "string";
|
|
29074
|
+
};
|
|
29075
|
+
description: {
|
|
29076
|
+
type: "string";
|
|
29077
|
+
};
|
|
29078
|
+
version: {
|
|
29079
|
+
type: "string";
|
|
29080
|
+
};
|
|
29081
|
+
summary: {
|
|
29082
|
+
type: "string";
|
|
29083
|
+
};
|
|
29084
|
+
termsOfService: {
|
|
29085
|
+
type: "string";
|
|
29086
|
+
};
|
|
29087
|
+
contact: {
|
|
29088
|
+
properties: {
|
|
29089
|
+
url: {
|
|
29090
|
+
type: "string";
|
|
29091
|
+
};
|
|
29092
|
+
name: {
|
|
29093
|
+
type: "string";
|
|
29094
|
+
};
|
|
29095
|
+
email: {
|
|
29096
|
+
type: "string";
|
|
29097
|
+
};
|
|
29098
|
+
};
|
|
29099
|
+
type: "object";
|
|
29100
|
+
};
|
|
29101
|
+
license: {
|
|
29102
|
+
properties: {
|
|
29103
|
+
url: {
|
|
29104
|
+
type: "string";
|
|
29105
|
+
};
|
|
29106
|
+
name: {
|
|
29107
|
+
type: "string";
|
|
29108
|
+
};
|
|
29109
|
+
};
|
|
29110
|
+
type: "object";
|
|
29111
|
+
};
|
|
29112
|
+
};
|
|
29113
|
+
type: "object";
|
|
29114
|
+
};
|
|
28579
29115
|
metadata: {
|
|
28580
29116
|
properties: {
|
|
28581
29117
|
apiId: {
|
|
@@ -28872,6 +29408,25 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28872
29408
|
additionalProperties: false;
|
|
28873
29409
|
type: "object";
|
|
28874
29410
|
};
|
|
29411
|
+
servers: {
|
|
29412
|
+
items: {
|
|
29413
|
+
properties: {
|
|
29414
|
+
url: {
|
|
29415
|
+
type: "string";
|
|
29416
|
+
};
|
|
29417
|
+
description: {
|
|
29418
|
+
type: "string";
|
|
29419
|
+
};
|
|
29420
|
+
variables: {
|
|
29421
|
+
additionalProperties: true;
|
|
29422
|
+
type: "object";
|
|
29423
|
+
};
|
|
29424
|
+
};
|
|
29425
|
+
type: "object";
|
|
29426
|
+
required: "url"[];
|
|
29427
|
+
};
|
|
29428
|
+
type: "array";
|
|
29429
|
+
};
|
|
28875
29430
|
apiLogo: {
|
|
28876
29431
|
properties: {
|
|
28877
29432
|
backgroundColor: {
|
|
@@ -28880,10 +29435,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28880
29435
|
href: {
|
|
28881
29436
|
type: "string";
|
|
28882
29437
|
};
|
|
28883
|
-
|
|
29438
|
+
altText: {
|
|
28884
29439
|
type: "string";
|
|
28885
29440
|
};
|
|
28886
|
-
|
|
29441
|
+
imageUrl: {
|
|
28887
29442
|
type: "string";
|
|
28888
29443
|
};
|
|
28889
29444
|
};
|
|
@@ -29111,12 +29666,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29111
29666
|
env: {
|
|
29112
29667
|
type: "string";
|
|
29113
29668
|
};
|
|
29114
|
-
stage: {
|
|
29115
|
-
type: "string";
|
|
29116
|
-
};
|
|
29117
29669
|
allowApiProductsOutsideCatalog: {
|
|
29118
29670
|
type: "boolean";
|
|
29119
29671
|
};
|
|
29672
|
+
stage: {
|
|
29673
|
+
type: "string";
|
|
29674
|
+
};
|
|
29120
29675
|
};
|
|
29121
29676
|
additionalProperties: false;
|
|
29122
29677
|
type: "object";
|
|
@@ -29172,21 +29727,21 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29172
29727
|
propertyName: "type";
|
|
29173
29728
|
};
|
|
29174
29729
|
};
|
|
29175
|
-
|
|
29176
|
-
type: "
|
|
29730
|
+
allowApiProductsOutsideCatalog: {
|
|
29731
|
+
type: "boolean";
|
|
29177
29732
|
};
|
|
29178
29733
|
stage: {
|
|
29179
29734
|
type: "string";
|
|
29180
29735
|
};
|
|
29736
|
+
apiUrl: {
|
|
29737
|
+
type: "string";
|
|
29738
|
+
};
|
|
29181
29739
|
ignoreApiProducts: {
|
|
29182
29740
|
items: {
|
|
29183
29741
|
type: "string";
|
|
29184
29742
|
};
|
|
29185
29743
|
type: "array";
|
|
29186
29744
|
};
|
|
29187
|
-
allowApiProductsOutsideCatalog: {
|
|
29188
|
-
type: "boolean";
|
|
29189
|
-
};
|
|
29190
29745
|
};
|
|
29191
29746
|
additionalProperties: false;
|
|
29192
29747
|
type: "object";
|
|
@@ -29242,21 +29797,21 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29242
29797
|
propertyName: "type";
|
|
29243
29798
|
};
|
|
29244
29799
|
};
|
|
29245
|
-
|
|
29246
|
-
type: "
|
|
29800
|
+
allowApiProductsOutsideCatalog: {
|
|
29801
|
+
type: "boolean";
|
|
29247
29802
|
};
|
|
29248
29803
|
stage: {
|
|
29249
29804
|
type: "string";
|
|
29250
29805
|
};
|
|
29806
|
+
apiUrl: {
|
|
29807
|
+
type: "string";
|
|
29808
|
+
};
|
|
29251
29809
|
ignoreApiProducts: {
|
|
29252
29810
|
items: {
|
|
29253
29811
|
type: "string";
|
|
29254
29812
|
};
|
|
29255
29813
|
type: "array";
|
|
29256
29814
|
};
|
|
29257
|
-
allowApiProductsOutsideCatalog: {
|
|
29258
|
-
type: "boolean";
|
|
29259
|
-
};
|
|
29260
29815
|
};
|
|
29261
29816
|
additionalProperties: false;
|
|
29262
29817
|
type: "object";
|
|
@@ -29399,12 +29954,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29399
29954
|
enum: "respect"[];
|
|
29400
29955
|
type: "string";
|
|
29401
29956
|
};
|
|
29402
|
-
inputs: {
|
|
29403
|
-
additionalProperties: {
|
|
29404
|
-
type: "string";
|
|
29405
|
-
};
|
|
29406
|
-
type: "object";
|
|
29407
|
-
};
|
|
29408
29957
|
servers: {
|
|
29409
29958
|
patternProperties: {
|
|
29410
29959
|
"^[a-zA-Z0-9_-]+$": {
|
|
@@ -29415,6 +29964,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29415
29964
|
additionalProperties: false;
|
|
29416
29965
|
type: "object";
|
|
29417
29966
|
};
|
|
29967
|
+
inputs: {
|
|
29968
|
+
additionalProperties: {
|
|
29969
|
+
type: "string";
|
|
29970
|
+
};
|
|
29971
|
+
type: "object";
|
|
29972
|
+
};
|
|
29418
29973
|
severity: {
|
|
29419
29974
|
properties: {
|
|
29420
29975
|
schemaCheck: {
|
|
@@ -29500,10 +30055,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29500
30055
|
};
|
|
29501
30056
|
type: "array";
|
|
29502
30057
|
};
|
|
29503
|
-
|
|
30058
|
+
href: {
|
|
29504
30059
|
type: "string";
|
|
29505
30060
|
};
|
|
29506
|
-
|
|
30061
|
+
page: {
|
|
29507
30062
|
type: "string";
|
|
29508
30063
|
};
|
|
29509
30064
|
icon: {
|
|
@@ -29521,6 +30076,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29521
30076
|
};
|
|
29522
30077
|
type: "object";
|
|
29523
30078
|
};
|
|
30079
|
+
separatorLine: {
|
|
30080
|
+
type: "boolean";
|
|
30081
|
+
};
|
|
30082
|
+
linePosition: {
|
|
30083
|
+
enum: ("top" | "bottom")[];
|
|
30084
|
+
type: "string";
|
|
30085
|
+
};
|
|
29524
30086
|
directory: {
|
|
29525
30087
|
type: "string";
|
|
29526
30088
|
};
|
|
@@ -29542,13 +30104,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29542
30104
|
separator: {
|
|
29543
30105
|
type: "string";
|
|
29544
30106
|
};
|
|
29545
|
-
separatorLine: {
|
|
29546
|
-
type: "boolean";
|
|
29547
|
-
};
|
|
29548
|
-
linePosition: {
|
|
29549
|
-
enum: ("top" | "bottom")[];
|
|
29550
|
-
type: "string";
|
|
29551
|
-
};
|
|
29552
30107
|
version: {
|
|
29553
30108
|
type: "string";
|
|
29554
30109
|
};
|
|
@@ -29581,10 +30136,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29581
30136
|
};
|
|
29582
30137
|
type: "array";
|
|
29583
30138
|
};
|
|
29584
|
-
|
|
30139
|
+
href: {
|
|
29585
30140
|
type: "string";
|
|
29586
30141
|
};
|
|
29587
|
-
|
|
30142
|
+
page: {
|
|
29588
30143
|
type: "string";
|
|
29589
30144
|
};
|
|
29590
30145
|
icon: {
|
|
@@ -29606,6 +30161,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29606
30161
|
};
|
|
29607
30162
|
type: "object";
|
|
29608
30163
|
};
|
|
30164
|
+
separatorLine: {
|
|
30165
|
+
type: "boolean";
|
|
30166
|
+
};
|
|
30167
|
+
linePosition: {
|
|
30168
|
+
enum: ("top" | "bottom")[];
|
|
30169
|
+
type: "string";
|
|
30170
|
+
};
|
|
29609
30171
|
directory: {
|
|
29610
30172
|
type: "string";
|
|
29611
30173
|
};
|
|
@@ -29627,13 +30189,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29627
30189
|
separator: {
|
|
29628
30190
|
type: "string";
|
|
29629
30191
|
};
|
|
29630
|
-
separatorLine: {
|
|
29631
|
-
type: "boolean";
|
|
29632
|
-
};
|
|
29633
|
-
linePosition: {
|
|
29634
|
-
enum: ("top" | "bottom")[];
|
|
29635
|
-
type: "string";
|
|
29636
|
-
};
|
|
29637
30192
|
version: {
|
|
29638
30193
|
type: "string";
|
|
29639
30194
|
};
|
|
@@ -29696,21 +30251,24 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29696
30251
|
src: {
|
|
29697
30252
|
type: "string";
|
|
29698
30253
|
};
|
|
29699
|
-
async: {
|
|
29700
|
-
type: "boolean";
|
|
29701
|
-
};
|
|
29702
30254
|
crossorigin: {
|
|
29703
30255
|
type: "string";
|
|
29704
30256
|
};
|
|
29705
|
-
defer: {
|
|
29706
|
-
type: "boolean";
|
|
29707
|
-
};
|
|
29708
30257
|
fetchpriority: {
|
|
29709
30258
|
type: "string";
|
|
29710
30259
|
};
|
|
29711
30260
|
integrity: {
|
|
29712
30261
|
type: "string";
|
|
29713
30262
|
};
|
|
30263
|
+
referrerpolicy: {
|
|
30264
|
+
type: "string";
|
|
30265
|
+
};
|
|
30266
|
+
async: {
|
|
30267
|
+
type: "boolean";
|
|
30268
|
+
};
|
|
30269
|
+
defer: {
|
|
30270
|
+
type: "boolean";
|
|
30271
|
+
};
|
|
29714
30272
|
module: {
|
|
29715
30273
|
type: "boolean";
|
|
29716
30274
|
};
|
|
@@ -29720,9 +30278,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29720
30278
|
nonce: {
|
|
29721
30279
|
type: "string";
|
|
29722
30280
|
};
|
|
29723
|
-
referrerpolicy: {
|
|
29724
|
-
type: "string";
|
|
29725
|
-
};
|
|
29726
30281
|
};
|
|
29727
30282
|
additionalProperties: true;
|
|
29728
30283
|
type: "object";
|
|
@@ -29739,21 +30294,24 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29739
30294
|
src: {
|
|
29740
30295
|
type: "string";
|
|
29741
30296
|
};
|
|
29742
|
-
async: {
|
|
29743
|
-
type: "boolean";
|
|
29744
|
-
};
|
|
29745
30297
|
crossorigin: {
|
|
29746
30298
|
type: "string";
|
|
29747
30299
|
};
|
|
29748
|
-
defer: {
|
|
29749
|
-
type: "boolean";
|
|
29750
|
-
};
|
|
29751
30300
|
fetchpriority: {
|
|
29752
30301
|
type: "string";
|
|
29753
30302
|
};
|
|
29754
30303
|
integrity: {
|
|
29755
30304
|
type: "string";
|
|
29756
30305
|
};
|
|
30306
|
+
referrerpolicy: {
|
|
30307
|
+
type: "string";
|
|
30308
|
+
};
|
|
30309
|
+
async: {
|
|
30310
|
+
type: "boolean";
|
|
30311
|
+
};
|
|
30312
|
+
defer: {
|
|
30313
|
+
type: "boolean";
|
|
30314
|
+
};
|
|
29757
30315
|
module: {
|
|
29758
30316
|
type: "boolean";
|
|
29759
30317
|
};
|
|
@@ -29763,9 +30321,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29763
30321
|
nonce: {
|
|
29764
30322
|
type: "string";
|
|
29765
30323
|
};
|
|
29766
|
-
referrerpolicy: {
|
|
29767
|
-
type: "string";
|
|
29768
|
-
};
|
|
29769
30324
|
};
|
|
29770
30325
|
additionalProperties: true;
|
|
29771
30326
|
type: "object";
|
|
@@ -30547,10 +31102,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30547
31102
|
link: {
|
|
30548
31103
|
type: "string";
|
|
30549
31104
|
};
|
|
30550
|
-
|
|
31105
|
+
separatorLine: {
|
|
30551
31106
|
type: "boolean";
|
|
30552
31107
|
};
|
|
30553
|
-
|
|
31108
|
+
external: {
|
|
30554
31109
|
type: "boolean";
|
|
30555
31110
|
};
|
|
30556
31111
|
};
|
|
@@ -30625,10 +31180,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30625
31180
|
properties: {
|
|
30626
31181
|
label: /*elided*/ any;
|
|
30627
31182
|
items: /*elided*/ any;
|
|
30628
|
-
page: /*elided*/ any;
|
|
30629
31183
|
href: /*elided*/ any;
|
|
31184
|
+
page: /*elided*/ any;
|
|
30630
31185
|
icon: /*elided*/ any;
|
|
30631
31186
|
rbac: /*elided*/ any;
|
|
31187
|
+
separatorLine: /*elided*/ any;
|
|
31188
|
+
linePosition: /*elided*/ any;
|
|
30632
31189
|
directory: /*elided*/ any;
|
|
30633
31190
|
disconnect: /*elided*/ any;
|
|
30634
31191
|
group: /*elided*/ any;
|
|
@@ -30636,8 +31193,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30636
31193
|
labelTranslationKey: /*elided*/ any;
|
|
30637
31194
|
groupTranslationKey: /*elided*/ any;
|
|
30638
31195
|
separator: /*elided*/ any;
|
|
30639
|
-
separatorLine: /*elided*/ any;
|
|
30640
|
-
linePosition: /*elided*/ any;
|
|
30641
31196
|
version: /*elided*/ any;
|
|
30642
31197
|
menuStyle: /*elided*/ any;
|
|
30643
31198
|
expanded: /*elided*/ any;
|
|
@@ -30650,10 +31205,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30650
31205
|
};
|
|
30651
31206
|
type: "array";
|
|
30652
31207
|
};
|
|
30653
|
-
|
|
31208
|
+
href: {
|
|
30654
31209
|
type: "string";
|
|
30655
31210
|
};
|
|
30656
|
-
|
|
31211
|
+
page: {
|
|
30657
31212
|
type: "string";
|
|
30658
31213
|
};
|
|
30659
31214
|
icon: {
|
|
@@ -30673,6 +31228,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30673
31228
|
};
|
|
30674
31229
|
type: "object";
|
|
30675
31230
|
};
|
|
31231
|
+
separatorLine: {
|
|
31232
|
+
type: "boolean";
|
|
31233
|
+
};
|
|
31234
|
+
linePosition: {
|
|
31235
|
+
enum: ("top" | "bottom")[];
|
|
31236
|
+
type: "string";
|
|
31237
|
+
};
|
|
30676
31238
|
directory: {
|
|
30677
31239
|
type: "string";
|
|
30678
31240
|
};
|
|
@@ -30694,13 +31256,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30694
31256
|
separator: {
|
|
30695
31257
|
type: "string";
|
|
30696
31258
|
};
|
|
30697
|
-
separatorLine: {
|
|
30698
|
-
type: "boolean";
|
|
30699
|
-
};
|
|
30700
|
-
linePosition: {
|
|
30701
|
-
enum: ("top" | "bottom")[];
|
|
30702
|
-
type: "string";
|
|
30703
|
-
};
|
|
30704
31259
|
version: {
|
|
30705
31260
|
type: "string";
|
|
30706
31261
|
};
|
|
@@ -30834,10 +31389,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
30834
31389
|
};
|
|
30835
31390
|
icon: {
|
|
30836
31391
|
properties: {
|
|
30837
|
-
|
|
31392
|
+
srcSet: {
|
|
30838
31393
|
type: "string";
|
|
30839
31394
|
};
|
|
30840
|
-
|
|
31395
|
+
src: {
|
|
30841
31396
|
type: "string";
|
|
30842
31397
|
};
|
|
30843
31398
|
};
|
|
@@ -31703,10 +32258,12 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
31703
32258
|
properties: {
|
|
31704
32259
|
label: /*elided*/ any;
|
|
31705
32260
|
items: /*elided*/ any;
|
|
31706
|
-
page: /*elided*/ any;
|
|
31707
32261
|
href: /*elided*/ any;
|
|
32262
|
+
page: /*elided*/ any;
|
|
31708
32263
|
icon: /*elided*/ any;
|
|
31709
32264
|
rbac: /*elided*/ any;
|
|
32265
|
+
separatorLine: /*elided*/ any;
|
|
32266
|
+
linePosition: /*elided*/ any;
|
|
31710
32267
|
directory: /*elided*/ any;
|
|
31711
32268
|
disconnect: /*elided*/ any;
|
|
31712
32269
|
group: /*elided*/ any;
|
|
@@ -31714,8 +32271,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
31714
32271
|
labelTranslationKey: /*elided*/ any;
|
|
31715
32272
|
groupTranslationKey: /*elided*/ any;
|
|
31716
32273
|
separator: /*elided*/ any;
|
|
31717
|
-
separatorLine: /*elided*/ any;
|
|
31718
|
-
linePosition: /*elided*/ any;
|
|
31719
32274
|
version: /*elided*/ any;
|
|
31720
32275
|
menuStyle: /*elided*/ any;
|
|
31721
32276
|
expanded: /*elided*/ any;
|
|
@@ -31728,10 +32283,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
31728
32283
|
};
|
|
31729
32284
|
type: "array";
|
|
31730
32285
|
};
|
|
31731
|
-
|
|
32286
|
+
href: {
|
|
31732
32287
|
type: "string";
|
|
31733
32288
|
};
|
|
31734
|
-
|
|
32289
|
+
page: {
|
|
31735
32290
|
type: "string";
|
|
31736
32291
|
};
|
|
31737
32292
|
icon: {
|
|
@@ -31751,6 +32306,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
31751
32306
|
};
|
|
31752
32307
|
type: "object";
|
|
31753
32308
|
};
|
|
32309
|
+
separatorLine: {
|
|
32310
|
+
type: "boolean";
|
|
32311
|
+
};
|
|
32312
|
+
linePosition: {
|
|
32313
|
+
enum: ("top" | "bottom")[];
|
|
32314
|
+
type: "string";
|
|
32315
|
+
};
|
|
31754
32316
|
directory: {
|
|
31755
32317
|
type: "string";
|
|
31756
32318
|
};
|
|
@@ -31772,13 +32334,6 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
31772
32334
|
separator: {
|
|
31773
32335
|
type: "string";
|
|
31774
32336
|
};
|
|
31775
|
-
separatorLine: {
|
|
31776
|
-
type: "boolean";
|
|
31777
|
-
};
|
|
31778
|
-
linePosition: {
|
|
31779
|
-
enum: ("top" | "bottom")[];
|
|
31780
|
-
type: "string";
|
|
31781
|
-
};
|
|
31782
32337
|
version: {
|
|
31783
32338
|
type: "string";
|
|
31784
32339
|
};
|
|
@@ -32110,9 +32665,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
32110
32665
|
where: {
|
|
32111
32666
|
properties: {
|
|
32112
32667
|
metadata: {
|
|
32113
|
-
additionalProperties: {
|
|
32114
|
-
type: "string";
|
|
32115
|
-
};
|
|
32668
|
+
additionalProperties: {};
|
|
32116
32669
|
type: "object";
|
|
32117
32670
|
};
|
|
32118
32671
|
};
|
|
@@ -32120,6 +32673,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
32120
32673
|
type: "object";
|
|
32121
32674
|
required: "metadata"[];
|
|
32122
32675
|
};
|
|
32676
|
+
ignore: {
|
|
32677
|
+
type: "boolean";
|
|
32678
|
+
};
|
|
32123
32679
|
minimumLevel: {
|
|
32124
32680
|
type: "string";
|
|
32125
32681
|
};
|
|
@@ -32139,6 +32695,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
32139
32695
|
type: "object";
|
|
32140
32696
|
required: never[];
|
|
32141
32697
|
};
|
|
32698
|
+
scorecards: {
|
|
32699
|
+
properties: {
|
|
32700
|
+
test: {
|
|
32701
|
+
type: "boolean";
|
|
32702
|
+
};
|
|
32703
|
+
};
|
|
32704
|
+
additionalProperties: true;
|
|
32705
|
+
type: "object";
|
|
32706
|
+
required: never[];
|
|
32707
|
+
};
|
|
32142
32708
|
mcp: {
|
|
32143
32709
|
properties: {
|
|
32144
32710
|
hide: {
|
|
@@ -32204,6 +32770,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
32204
32770
|
image: {
|
|
32205
32771
|
type: "string";
|
|
32206
32772
|
};
|
|
32773
|
+
projectTitle: {
|
|
32774
|
+
type: "string";
|
|
32775
|
+
};
|
|
32207
32776
|
siteUrl: {
|
|
32208
32777
|
type: "string";
|
|
32209
32778
|
};
|
|
@@ -33159,6 +33728,34 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
33159
33728
|
};
|
|
33160
33729
|
type: "object";
|
|
33161
33730
|
};
|
|
33731
|
+
info: {
|
|
33732
|
+
properties: {
|
|
33733
|
+
title: {
|
|
33734
|
+
type: "string";
|
|
33735
|
+
};
|
|
33736
|
+
description: {
|
|
33737
|
+
type: "string";
|
|
33738
|
+
};
|
|
33739
|
+
version: {
|
|
33740
|
+
type: "string";
|
|
33741
|
+
};
|
|
33742
|
+
summary: {
|
|
33743
|
+
type: "string";
|
|
33744
|
+
};
|
|
33745
|
+
termsOfService: {
|
|
33746
|
+
type: "string";
|
|
33747
|
+
};
|
|
33748
|
+
contact: {
|
|
33749
|
+
properties: /*elided*/ any;
|
|
33750
|
+
type: "object";
|
|
33751
|
+
};
|
|
33752
|
+
license: {
|
|
33753
|
+
properties: /*elided*/ any;
|
|
33754
|
+
type: "object";
|
|
33755
|
+
};
|
|
33756
|
+
};
|
|
33757
|
+
type: "object";
|
|
33758
|
+
};
|
|
33162
33759
|
metadata: {
|
|
33163
33760
|
properties: {
|
|
33164
33761
|
apiId: {
|
|
@@ -33217,6 +33814,18 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
33217
33814
|
additionalProperties: false;
|
|
33218
33815
|
type: "object";
|
|
33219
33816
|
};
|
|
33817
|
+
servers: {
|
|
33818
|
+
items: {
|
|
33819
|
+
properties: {
|
|
33820
|
+
url: /*elided*/ any;
|
|
33821
|
+
description: /*elided*/ any;
|
|
33822
|
+
variables: /*elided*/ any;
|
|
33823
|
+
};
|
|
33824
|
+
type: "object";
|
|
33825
|
+
required: "url"[];
|
|
33826
|
+
};
|
|
33827
|
+
type: "array";
|
|
33828
|
+
};
|
|
33220
33829
|
apiLogo: {
|
|
33221
33830
|
properties: {
|
|
33222
33831
|
backgroundColor: {
|
|
@@ -33225,10 +33834,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
33225
33834
|
href: {
|
|
33226
33835
|
type: "string";
|
|
33227
33836
|
};
|
|
33228
|
-
|
|
33837
|
+
altText: {
|
|
33229
33838
|
type: "string";
|
|
33230
33839
|
};
|
|
33231
|
-
|
|
33840
|
+
imageUrl: {
|
|
33232
33841
|
type: "string";
|
|
33233
33842
|
};
|
|
33234
33843
|
};
|
|
@@ -34230,6 +34839,51 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
34230
34839
|
};
|
|
34231
34840
|
type: "object";
|
|
34232
34841
|
};
|
|
34842
|
+
info: {
|
|
34843
|
+
properties: {
|
|
34844
|
+
title: {
|
|
34845
|
+
type: "string";
|
|
34846
|
+
};
|
|
34847
|
+
description: {
|
|
34848
|
+
type: "string";
|
|
34849
|
+
};
|
|
34850
|
+
version: {
|
|
34851
|
+
type: "string";
|
|
34852
|
+
};
|
|
34853
|
+
summary: {
|
|
34854
|
+
type: "string";
|
|
34855
|
+
};
|
|
34856
|
+
termsOfService: {
|
|
34857
|
+
type: "string";
|
|
34858
|
+
};
|
|
34859
|
+
contact: {
|
|
34860
|
+
properties: {
|
|
34861
|
+
url: {
|
|
34862
|
+
type: "string";
|
|
34863
|
+
};
|
|
34864
|
+
name: {
|
|
34865
|
+
type: "string";
|
|
34866
|
+
};
|
|
34867
|
+
email: {
|
|
34868
|
+
type: "string";
|
|
34869
|
+
};
|
|
34870
|
+
};
|
|
34871
|
+
type: "object";
|
|
34872
|
+
};
|
|
34873
|
+
license: {
|
|
34874
|
+
properties: {
|
|
34875
|
+
url: {
|
|
34876
|
+
type: "string";
|
|
34877
|
+
};
|
|
34878
|
+
name: {
|
|
34879
|
+
type: "string";
|
|
34880
|
+
};
|
|
34881
|
+
};
|
|
34882
|
+
type: "object";
|
|
34883
|
+
};
|
|
34884
|
+
};
|
|
34885
|
+
type: "object";
|
|
34886
|
+
};
|
|
34233
34887
|
metadata: {
|
|
34234
34888
|
properties: {
|
|
34235
34889
|
apiId: {
|
|
@@ -34345,6 +34999,25 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
34345
34999
|
additionalProperties: false;
|
|
34346
35000
|
type: "object";
|
|
34347
35001
|
};
|
|
35002
|
+
servers: {
|
|
35003
|
+
items: {
|
|
35004
|
+
properties: {
|
|
35005
|
+
url: {
|
|
35006
|
+
type: "string";
|
|
35007
|
+
};
|
|
35008
|
+
description: {
|
|
35009
|
+
type: "string";
|
|
35010
|
+
};
|
|
35011
|
+
variables: {
|
|
35012
|
+
additionalProperties: true;
|
|
35013
|
+
type: "object";
|
|
35014
|
+
};
|
|
35015
|
+
};
|
|
35016
|
+
type: "object";
|
|
35017
|
+
required: "url"[];
|
|
35018
|
+
};
|
|
35019
|
+
type: "array";
|
|
35020
|
+
};
|
|
34348
35021
|
apiLogo: {
|
|
34349
35022
|
properties: {
|
|
34350
35023
|
backgroundColor: {
|
|
@@ -34353,10 +35026,10 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
34353
35026
|
href: {
|
|
34354
35027
|
type: "string";
|
|
34355
35028
|
};
|
|
34356
|
-
|
|
35029
|
+
altText: {
|
|
34357
35030
|
type: "string";
|
|
34358
35031
|
};
|
|
34359
|
-
|
|
35032
|
+
imageUrl: {
|
|
34360
35033
|
type: "string";
|
|
34361
35034
|
};
|
|
34362
35035
|
};
|
|
@@ -37994,6 +38667,70 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
37994
38667
|
};
|
|
37995
38668
|
readonly additionalProperties: false;
|
|
37996
38669
|
};
|
|
38670
|
+
readonly servers: {
|
|
38671
|
+
readonly type: "array";
|
|
38672
|
+
readonly items: {
|
|
38673
|
+
readonly type: "object";
|
|
38674
|
+
readonly properties: {
|
|
38675
|
+
readonly url: {
|
|
38676
|
+
readonly type: "string";
|
|
38677
|
+
};
|
|
38678
|
+
readonly description: {
|
|
38679
|
+
readonly type: "string";
|
|
38680
|
+
};
|
|
38681
|
+
readonly variables: {
|
|
38682
|
+
readonly type: "object";
|
|
38683
|
+
readonly additionalProperties: true;
|
|
38684
|
+
};
|
|
38685
|
+
};
|
|
38686
|
+
readonly required: readonly ["url"];
|
|
38687
|
+
};
|
|
38688
|
+
};
|
|
38689
|
+
readonly info: {
|
|
38690
|
+
readonly type: "object";
|
|
38691
|
+
readonly properties: {
|
|
38692
|
+
readonly title: {
|
|
38693
|
+
readonly type: "string";
|
|
38694
|
+
};
|
|
38695
|
+
readonly description: {
|
|
38696
|
+
readonly type: "string";
|
|
38697
|
+
};
|
|
38698
|
+
readonly summary: {
|
|
38699
|
+
readonly type: "string";
|
|
38700
|
+
};
|
|
38701
|
+
readonly version: {
|
|
38702
|
+
readonly type: "string";
|
|
38703
|
+
};
|
|
38704
|
+
readonly termsOfService: {
|
|
38705
|
+
readonly type: "string";
|
|
38706
|
+
};
|
|
38707
|
+
readonly contact: {
|
|
38708
|
+
readonly type: "object";
|
|
38709
|
+
readonly properties: {
|
|
38710
|
+
readonly name: {
|
|
38711
|
+
readonly type: "string";
|
|
38712
|
+
};
|
|
38713
|
+
readonly email: {
|
|
38714
|
+
readonly type: "string";
|
|
38715
|
+
};
|
|
38716
|
+
readonly url: {
|
|
38717
|
+
readonly type: "string";
|
|
38718
|
+
};
|
|
38719
|
+
};
|
|
38720
|
+
};
|
|
38721
|
+
readonly license: {
|
|
38722
|
+
readonly type: "object";
|
|
38723
|
+
readonly properties: {
|
|
38724
|
+
readonly name: {
|
|
38725
|
+
readonly type: "string";
|
|
38726
|
+
};
|
|
38727
|
+
readonly url: {
|
|
38728
|
+
readonly type: "string";
|
|
38729
|
+
};
|
|
38730
|
+
};
|
|
38731
|
+
};
|
|
38732
|
+
};
|
|
38733
|
+
};
|
|
37997
38734
|
readonly sidebar: {
|
|
37998
38735
|
readonly type: "object";
|
|
37999
38736
|
readonly properties: {
|
|
@@ -40350,15 +41087,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
40350
41087
|
readonly type: "object";
|
|
40351
41088
|
readonly additionalProperties: true;
|
|
40352
41089
|
};
|
|
41090
|
+
readonly ignore: {
|
|
41091
|
+
readonly type: "boolean";
|
|
41092
|
+
};
|
|
40353
41093
|
readonly where: {
|
|
40354
41094
|
readonly type: "object";
|
|
40355
41095
|
readonly required: readonly ["metadata"];
|
|
40356
41096
|
readonly properties: {
|
|
40357
41097
|
readonly metadata: {
|
|
40358
41098
|
readonly type: "object";
|
|
40359
|
-
readonly additionalProperties: {
|
|
40360
|
-
readonly type: "string";
|
|
40361
|
-
};
|
|
41099
|
+
readonly additionalProperties: {};
|
|
40362
41100
|
};
|
|
40363
41101
|
};
|
|
40364
41102
|
readonly additionalProperties: false;
|
|
@@ -40379,6 +41117,17 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
40379
41117
|
};
|
|
40380
41118
|
};
|
|
40381
41119
|
};
|
|
41120
|
+
readonly scorecards: {
|
|
41121
|
+
readonly type: "object";
|
|
41122
|
+
readonly additionalProperties: true;
|
|
41123
|
+
readonly required: readonly [];
|
|
41124
|
+
readonly properties: {
|
|
41125
|
+
readonly test: {
|
|
41126
|
+
readonly type: "boolean";
|
|
41127
|
+
readonly default: true;
|
|
41128
|
+
};
|
|
41129
|
+
};
|
|
41130
|
+
};
|
|
40382
41131
|
};
|
|
40383
41132
|
readonly additionalProperties: true;
|
|
40384
41133
|
};
|
|
@@ -43639,6 +44388,70 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
43639
44388
|
};
|
|
43640
44389
|
readonly additionalProperties: false;
|
|
43641
44390
|
};
|
|
44391
|
+
readonly servers: {
|
|
44392
|
+
readonly type: "array";
|
|
44393
|
+
readonly items: {
|
|
44394
|
+
readonly type: "object";
|
|
44395
|
+
readonly properties: {
|
|
44396
|
+
readonly url: {
|
|
44397
|
+
readonly type: "string";
|
|
44398
|
+
};
|
|
44399
|
+
readonly description: {
|
|
44400
|
+
readonly type: "string";
|
|
44401
|
+
};
|
|
44402
|
+
readonly variables: {
|
|
44403
|
+
readonly type: "object";
|
|
44404
|
+
readonly additionalProperties: true;
|
|
44405
|
+
};
|
|
44406
|
+
};
|
|
44407
|
+
readonly required: readonly ["url"];
|
|
44408
|
+
};
|
|
44409
|
+
};
|
|
44410
|
+
readonly info: {
|
|
44411
|
+
readonly type: "object";
|
|
44412
|
+
readonly properties: {
|
|
44413
|
+
readonly title: {
|
|
44414
|
+
readonly type: "string";
|
|
44415
|
+
};
|
|
44416
|
+
readonly description: {
|
|
44417
|
+
readonly type: "string";
|
|
44418
|
+
};
|
|
44419
|
+
readonly summary: {
|
|
44420
|
+
readonly type: "string";
|
|
44421
|
+
};
|
|
44422
|
+
readonly version: {
|
|
44423
|
+
readonly type: "string";
|
|
44424
|
+
};
|
|
44425
|
+
readonly termsOfService: {
|
|
44426
|
+
readonly type: "string";
|
|
44427
|
+
};
|
|
44428
|
+
readonly contact: {
|
|
44429
|
+
readonly type: "object";
|
|
44430
|
+
readonly properties: {
|
|
44431
|
+
readonly name: {
|
|
44432
|
+
readonly type: "string";
|
|
44433
|
+
};
|
|
44434
|
+
readonly email: {
|
|
44435
|
+
readonly type: "string";
|
|
44436
|
+
};
|
|
44437
|
+
readonly url: {
|
|
44438
|
+
readonly type: "string";
|
|
44439
|
+
};
|
|
44440
|
+
};
|
|
44441
|
+
};
|
|
44442
|
+
readonly license: {
|
|
44443
|
+
readonly type: "object";
|
|
44444
|
+
readonly properties: {
|
|
44445
|
+
readonly name: {
|
|
44446
|
+
readonly type: "string";
|
|
44447
|
+
};
|
|
44448
|
+
readonly url: {
|
|
44449
|
+
readonly type: "string";
|
|
44450
|
+
};
|
|
44451
|
+
};
|
|
44452
|
+
};
|
|
44453
|
+
};
|
|
44454
|
+
};
|
|
43642
44455
|
readonly sidebar: {
|
|
43643
44456
|
readonly type: "object";
|
|
43644
44457
|
readonly properties: {
|
|
@@ -45998,15 +46811,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
45998
46811
|
readonly type: "object";
|
|
45999
46812
|
readonly additionalProperties: true;
|
|
46000
46813
|
};
|
|
46814
|
+
readonly ignore: {
|
|
46815
|
+
readonly type: "boolean";
|
|
46816
|
+
};
|
|
46001
46817
|
readonly where: {
|
|
46002
46818
|
readonly type: "object";
|
|
46003
46819
|
readonly required: readonly ["metadata"];
|
|
46004
46820
|
readonly properties: {
|
|
46005
46821
|
readonly metadata: {
|
|
46006
46822
|
readonly type: "object";
|
|
46007
|
-
readonly additionalProperties: {
|
|
46008
|
-
readonly type: "string";
|
|
46009
|
-
};
|
|
46823
|
+
readonly additionalProperties: {};
|
|
46010
46824
|
};
|
|
46011
46825
|
};
|
|
46012
46826
|
readonly additionalProperties: false;
|
|
@@ -46027,6 +46841,17 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
46027
46841
|
};
|
|
46028
46842
|
};
|
|
46029
46843
|
};
|
|
46844
|
+
readonly scorecards: {
|
|
46845
|
+
readonly type: "object";
|
|
46846
|
+
readonly additionalProperties: true;
|
|
46847
|
+
readonly required: readonly [];
|
|
46848
|
+
readonly properties: {
|
|
46849
|
+
readonly test: {
|
|
46850
|
+
readonly type: "boolean";
|
|
46851
|
+
readonly default: true;
|
|
46852
|
+
};
|
|
46853
|
+
};
|
|
46854
|
+
};
|
|
46030
46855
|
readonly mcp: {
|
|
46031
46856
|
readonly type: "object";
|
|
46032
46857
|
readonly properties: {
|
|
@@ -46263,6 +47088,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
46263
47088
|
readonly title: {
|
|
46264
47089
|
readonly type: "string";
|
|
46265
47090
|
};
|
|
47091
|
+
readonly projectTitle: {
|
|
47092
|
+
readonly type: "string";
|
|
47093
|
+
};
|
|
46266
47094
|
readonly description: {
|
|
46267
47095
|
readonly type: "string";
|
|
46268
47096
|
};
|
|
@@ -48652,6 +49480,70 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
48652
49480
|
};
|
|
48653
49481
|
readonly additionalProperties: false;
|
|
48654
49482
|
};
|
|
49483
|
+
readonly servers: {
|
|
49484
|
+
readonly type: "array";
|
|
49485
|
+
readonly items: {
|
|
49486
|
+
readonly type: "object";
|
|
49487
|
+
readonly properties: {
|
|
49488
|
+
readonly url: {
|
|
49489
|
+
readonly type: "string";
|
|
49490
|
+
};
|
|
49491
|
+
readonly description: {
|
|
49492
|
+
readonly type: "string";
|
|
49493
|
+
};
|
|
49494
|
+
readonly variables: {
|
|
49495
|
+
readonly type: "object";
|
|
49496
|
+
readonly additionalProperties: true;
|
|
49497
|
+
};
|
|
49498
|
+
};
|
|
49499
|
+
readonly required: readonly ["url"];
|
|
49500
|
+
};
|
|
49501
|
+
};
|
|
49502
|
+
readonly info: {
|
|
49503
|
+
readonly type: "object";
|
|
49504
|
+
readonly properties: {
|
|
49505
|
+
readonly title: {
|
|
49506
|
+
readonly type: "string";
|
|
49507
|
+
};
|
|
49508
|
+
readonly description: {
|
|
49509
|
+
readonly type: "string";
|
|
49510
|
+
};
|
|
49511
|
+
readonly summary: {
|
|
49512
|
+
readonly type: "string";
|
|
49513
|
+
};
|
|
49514
|
+
readonly version: {
|
|
49515
|
+
readonly type: "string";
|
|
49516
|
+
};
|
|
49517
|
+
readonly termsOfService: {
|
|
49518
|
+
readonly type: "string";
|
|
49519
|
+
};
|
|
49520
|
+
readonly contact: {
|
|
49521
|
+
readonly type: "object";
|
|
49522
|
+
readonly properties: {
|
|
49523
|
+
readonly name: {
|
|
49524
|
+
readonly type: "string";
|
|
49525
|
+
};
|
|
49526
|
+
readonly email: {
|
|
49527
|
+
readonly type: "string";
|
|
49528
|
+
};
|
|
49529
|
+
readonly url: {
|
|
49530
|
+
readonly type: "string";
|
|
49531
|
+
};
|
|
49532
|
+
};
|
|
49533
|
+
};
|
|
49534
|
+
readonly license: {
|
|
49535
|
+
readonly type: "object";
|
|
49536
|
+
readonly properties: {
|
|
49537
|
+
readonly name: {
|
|
49538
|
+
readonly type: "string";
|
|
49539
|
+
};
|
|
49540
|
+
readonly url: {
|
|
49541
|
+
readonly type: "string";
|
|
49542
|
+
};
|
|
49543
|
+
};
|
|
49544
|
+
};
|
|
49545
|
+
};
|
|
49546
|
+
};
|
|
48655
49547
|
readonly sidebar: {
|
|
48656
49548
|
readonly type: "object";
|
|
48657
49549
|
readonly properties: {
|
|
@@ -50915,6 +51807,70 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
50915
51807
|
};
|
|
50916
51808
|
readonly additionalProperties: false;
|
|
50917
51809
|
};
|
|
51810
|
+
readonly servers: {
|
|
51811
|
+
readonly type: "array";
|
|
51812
|
+
readonly items: {
|
|
51813
|
+
readonly type: "object";
|
|
51814
|
+
readonly properties: {
|
|
51815
|
+
readonly url: {
|
|
51816
|
+
readonly type: "string";
|
|
51817
|
+
};
|
|
51818
|
+
readonly description: {
|
|
51819
|
+
readonly type: "string";
|
|
51820
|
+
};
|
|
51821
|
+
readonly variables: {
|
|
51822
|
+
readonly type: "object";
|
|
51823
|
+
readonly additionalProperties: true;
|
|
51824
|
+
};
|
|
51825
|
+
};
|
|
51826
|
+
readonly required: readonly ["url"];
|
|
51827
|
+
};
|
|
51828
|
+
};
|
|
51829
|
+
readonly info: {
|
|
51830
|
+
readonly type: "object";
|
|
51831
|
+
readonly properties: {
|
|
51832
|
+
readonly title: {
|
|
51833
|
+
readonly type: "string";
|
|
51834
|
+
};
|
|
51835
|
+
readonly description: {
|
|
51836
|
+
readonly type: "string";
|
|
51837
|
+
};
|
|
51838
|
+
readonly summary: {
|
|
51839
|
+
readonly type: "string";
|
|
51840
|
+
};
|
|
51841
|
+
readonly version: {
|
|
51842
|
+
readonly type: "string";
|
|
51843
|
+
};
|
|
51844
|
+
readonly termsOfService: {
|
|
51845
|
+
readonly type: "string";
|
|
51846
|
+
};
|
|
51847
|
+
readonly contact: {
|
|
51848
|
+
readonly type: "object";
|
|
51849
|
+
readonly properties: {
|
|
51850
|
+
readonly name: {
|
|
51851
|
+
readonly type: "string";
|
|
51852
|
+
};
|
|
51853
|
+
readonly email: {
|
|
51854
|
+
readonly type: "string";
|
|
51855
|
+
};
|
|
51856
|
+
readonly url: {
|
|
51857
|
+
readonly type: "string";
|
|
51858
|
+
};
|
|
51859
|
+
};
|
|
51860
|
+
};
|
|
51861
|
+
readonly license: {
|
|
51862
|
+
readonly type: "object";
|
|
51863
|
+
readonly properties: {
|
|
51864
|
+
readonly name: {
|
|
51865
|
+
readonly type: "string";
|
|
51866
|
+
};
|
|
51867
|
+
readonly url: {
|
|
51868
|
+
readonly type: "string";
|
|
51869
|
+
};
|
|
51870
|
+
};
|
|
51871
|
+
};
|
|
51872
|
+
};
|
|
51873
|
+
};
|
|
50918
51874
|
readonly sidebar: {
|
|
50919
51875
|
readonly type: "object";
|
|
50920
51876
|
readonly properties: {
|