@redocly/config 0.44.0 → 0.44.2
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/asyncapi-config-schema.d.ts +300 -0
- package/lib/asyncapi-config-schema.js +53 -0
- package/lib/default-theme-config-schema.d.ts +300 -0
- package/lib/default-theme-config-schema.js +2 -0
- package/lib/ex-theme-config-schemas.d.ts +1807 -0
- package/lib/ex-theme-config-schemas.js +2 -1
- package/lib/remove-property-recursively.d.ts +1 -1
- package/lib/remove-property-recursively.js +7 -4
- package/lib/root-config-schema.d.ts +776 -0
- package/lib/root-config-schema.js +22 -2
- package/lib/types/asyncapi-types.d.ts +14 -0
- package/lib/types/asyncapi-types.js +3 -0
- package/lib/types/config-types.d.ts +24 -1
- package/lib/types/portal-shared-types.d.ts +6 -2
- package/lib-esm/asyncapi-config-schema.d.ts +300 -0
- package/lib-esm/asyncapi-config-schema.js +50 -0
- package/lib-esm/default-theme-config-schema.d.ts +300 -0
- package/lib-esm/default-theme-config-schema.js +2 -0
- package/lib-esm/ex-theme-config-schemas.d.ts +1807 -0
- package/lib-esm/ex-theme-config-schemas.js +1 -0
- package/lib-esm/remove-property-recursively.d.ts +1 -1
- package/lib-esm/remove-property-recursively.js +7 -4
- package/lib-esm/root-config-schema.d.ts +776 -0
- package/lib-esm/root-config-schema.js +22 -2
- package/lib-esm/types/asyncapi-types.d.ts +14 -0
- package/lib-esm/types/asyncapi-types.js +2 -0
- package/lib-esm/types/config-types.d.ts +24 -1
- package/lib-esm/types/portal-shared-types.d.ts +6 -2
- package/package.json +2 -2
|
@@ -6878,6 +6878,9 @@ export declare const redoclyConfigSchema: {
|
|
|
6878
6878
|
};
|
|
6879
6879
|
};
|
|
6880
6880
|
};
|
|
6881
|
+
/**
|
|
6882
|
+
* @deprecated Should use `access.sso` instead
|
|
6883
|
+
*/
|
|
6881
6884
|
readonly sso: {
|
|
6882
6885
|
readonly oneOf: readonly [{
|
|
6883
6886
|
readonly type: "array";
|
|
@@ -6891,10 +6894,16 @@ export declare const redoclyConfigSchema: {
|
|
|
6891
6894
|
readonly enum: readonly ["REDOCLY", "CORPORATE", "GUEST"];
|
|
6892
6895
|
}];
|
|
6893
6896
|
};
|
|
6897
|
+
/**
|
|
6898
|
+
* @deprecated Should use `access.residency` instead
|
|
6899
|
+
*/
|
|
6894
6900
|
readonly residency: {
|
|
6895
6901
|
readonly type: "string";
|
|
6896
6902
|
readonly pattern: "^https?://.*";
|
|
6897
6903
|
};
|
|
6904
|
+
/**
|
|
6905
|
+
* @deprecated Should use `access.logoutReturnUrl` instead
|
|
6906
|
+
*/
|
|
6898
6907
|
readonly logoutReturnUrl: {
|
|
6899
6908
|
readonly type: "string";
|
|
6900
6909
|
readonly pattern: "^https?://.*";
|
|
@@ -10443,6 +10452,306 @@ export declare const redoclyConfigSchema: {
|
|
|
10443
10452
|
readonly type: "object";
|
|
10444
10453
|
readonly additionalProperties: false;
|
|
10445
10454
|
};
|
|
10455
|
+
readonly asyncapi: {
|
|
10456
|
+
readonly type: "object";
|
|
10457
|
+
readonly properties: {
|
|
10458
|
+
readonly downloadUrls: {
|
|
10459
|
+
readonly type: "array";
|
|
10460
|
+
readonly items: {
|
|
10461
|
+
readonly type: "object";
|
|
10462
|
+
readonly properties: {
|
|
10463
|
+
readonly title: {
|
|
10464
|
+
readonly type: "string";
|
|
10465
|
+
};
|
|
10466
|
+
readonly url: {
|
|
10467
|
+
readonly type: "string";
|
|
10468
|
+
};
|
|
10469
|
+
};
|
|
10470
|
+
readonly required: readonly ["url"];
|
|
10471
|
+
readonly additionalProperties: false;
|
|
10472
|
+
};
|
|
10473
|
+
};
|
|
10474
|
+
readonly apiLogo: {
|
|
10475
|
+
readonly type: "object";
|
|
10476
|
+
readonly properties: {
|
|
10477
|
+
readonly imageUrl: {
|
|
10478
|
+
readonly type: "string";
|
|
10479
|
+
};
|
|
10480
|
+
readonly href: {
|
|
10481
|
+
readonly type: "string";
|
|
10482
|
+
};
|
|
10483
|
+
readonly altText: {
|
|
10484
|
+
readonly type: "string";
|
|
10485
|
+
};
|
|
10486
|
+
readonly backgroundColor: {
|
|
10487
|
+
readonly type: "string";
|
|
10488
|
+
};
|
|
10489
|
+
};
|
|
10490
|
+
};
|
|
10491
|
+
readonly jsonSamplesDepth: {
|
|
10492
|
+
readonly type: "number";
|
|
10493
|
+
};
|
|
10494
|
+
readonly samplesMaxInlineArgs: {
|
|
10495
|
+
readonly type: "number";
|
|
10496
|
+
};
|
|
10497
|
+
readonly fieldExpandLevel: {
|
|
10498
|
+
readonly type: "number";
|
|
10499
|
+
};
|
|
10500
|
+
readonly baseUrlPath: {
|
|
10501
|
+
readonly type: "string";
|
|
10502
|
+
};
|
|
10503
|
+
readonly metadata: {
|
|
10504
|
+
readonly type: "object";
|
|
10505
|
+
readonly properties: {
|
|
10506
|
+
readonly apiId: {
|
|
10507
|
+
readonly type: "string";
|
|
10508
|
+
};
|
|
10509
|
+
};
|
|
10510
|
+
readonly additionalProperties: true;
|
|
10511
|
+
};
|
|
10512
|
+
readonly feedback: {
|
|
10513
|
+
readonly type: "object";
|
|
10514
|
+
readonly properties: {
|
|
10515
|
+
readonly hide: {
|
|
10516
|
+
readonly type: "boolean";
|
|
10517
|
+
readonly default: false;
|
|
10518
|
+
};
|
|
10519
|
+
readonly type: {
|
|
10520
|
+
readonly type: "string";
|
|
10521
|
+
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
10522
|
+
readonly default: "sentiment";
|
|
10523
|
+
};
|
|
10524
|
+
readonly settings: {
|
|
10525
|
+
readonly type: "object";
|
|
10526
|
+
readonly properties: {
|
|
10527
|
+
readonly label: {
|
|
10528
|
+
readonly type: "string";
|
|
10529
|
+
};
|
|
10530
|
+
readonly submitText: {
|
|
10531
|
+
readonly type: "string";
|
|
10532
|
+
};
|
|
10533
|
+
readonly buttonText: {
|
|
10534
|
+
readonly type: "string";
|
|
10535
|
+
};
|
|
10536
|
+
readonly component: {
|
|
10537
|
+
readonly type: "string";
|
|
10538
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10539
|
+
readonly default: "checkbox";
|
|
10540
|
+
};
|
|
10541
|
+
readonly items: {
|
|
10542
|
+
readonly type: "array";
|
|
10543
|
+
readonly items: {
|
|
10544
|
+
readonly type: "string";
|
|
10545
|
+
};
|
|
10546
|
+
readonly minItems: 1;
|
|
10547
|
+
};
|
|
10548
|
+
readonly leftScaleLabel: {
|
|
10549
|
+
readonly type: "string";
|
|
10550
|
+
};
|
|
10551
|
+
readonly rightScaleLabel: {
|
|
10552
|
+
readonly type: "string";
|
|
10553
|
+
};
|
|
10554
|
+
readonly reasons: {
|
|
10555
|
+
readonly type: "object";
|
|
10556
|
+
readonly properties: {
|
|
10557
|
+
readonly like: {
|
|
10558
|
+
readonly type: "object";
|
|
10559
|
+
readonly properties: {
|
|
10560
|
+
readonly hide: {
|
|
10561
|
+
readonly type: "boolean";
|
|
10562
|
+
readonly default: false;
|
|
10563
|
+
};
|
|
10564
|
+
readonly component: {
|
|
10565
|
+
readonly type: "string";
|
|
10566
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10567
|
+
readonly default: "checkbox";
|
|
10568
|
+
};
|
|
10569
|
+
readonly label: {
|
|
10570
|
+
readonly type: "string";
|
|
10571
|
+
};
|
|
10572
|
+
readonly items: {
|
|
10573
|
+
readonly type: "array";
|
|
10574
|
+
readonly items: {
|
|
10575
|
+
readonly type: "string";
|
|
10576
|
+
};
|
|
10577
|
+
};
|
|
10578
|
+
};
|
|
10579
|
+
readonly additionalProperties: false;
|
|
10580
|
+
};
|
|
10581
|
+
readonly dislike: {
|
|
10582
|
+
readonly type: "object";
|
|
10583
|
+
readonly properties: {
|
|
10584
|
+
readonly hide: {
|
|
10585
|
+
readonly type: "boolean";
|
|
10586
|
+
readonly default: false;
|
|
10587
|
+
};
|
|
10588
|
+
readonly component: {
|
|
10589
|
+
readonly type: "string";
|
|
10590
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10591
|
+
readonly default: "checkbox";
|
|
10592
|
+
};
|
|
10593
|
+
readonly label: {
|
|
10594
|
+
readonly type: "string";
|
|
10595
|
+
};
|
|
10596
|
+
readonly items: {
|
|
10597
|
+
readonly type: "array";
|
|
10598
|
+
readonly items: {
|
|
10599
|
+
readonly type: "string";
|
|
10600
|
+
};
|
|
10601
|
+
};
|
|
10602
|
+
};
|
|
10603
|
+
readonly additionalProperties: false;
|
|
10604
|
+
};
|
|
10605
|
+
readonly satisfied: {
|
|
10606
|
+
readonly type: "object";
|
|
10607
|
+
readonly properties: {
|
|
10608
|
+
readonly hide: {
|
|
10609
|
+
readonly type: "boolean";
|
|
10610
|
+
readonly default: false;
|
|
10611
|
+
};
|
|
10612
|
+
readonly component: {
|
|
10613
|
+
readonly type: "string";
|
|
10614
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10615
|
+
readonly default: "checkbox";
|
|
10616
|
+
};
|
|
10617
|
+
readonly label: {
|
|
10618
|
+
readonly type: "string";
|
|
10619
|
+
};
|
|
10620
|
+
readonly items: {
|
|
10621
|
+
readonly type: "array";
|
|
10622
|
+
readonly items: {
|
|
10623
|
+
readonly type: "string";
|
|
10624
|
+
};
|
|
10625
|
+
};
|
|
10626
|
+
};
|
|
10627
|
+
readonly additionalProperties: false;
|
|
10628
|
+
};
|
|
10629
|
+
readonly neutral: {
|
|
10630
|
+
readonly type: "object";
|
|
10631
|
+
readonly properties: {
|
|
10632
|
+
readonly hide: {
|
|
10633
|
+
readonly type: "boolean";
|
|
10634
|
+
readonly default: false;
|
|
10635
|
+
};
|
|
10636
|
+
readonly component: {
|
|
10637
|
+
readonly type: "string";
|
|
10638
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10639
|
+
readonly default: "checkbox";
|
|
10640
|
+
};
|
|
10641
|
+
readonly label: {
|
|
10642
|
+
readonly type: "string";
|
|
10643
|
+
};
|
|
10644
|
+
readonly items: {
|
|
10645
|
+
readonly type: "array";
|
|
10646
|
+
readonly items: {
|
|
10647
|
+
readonly type: "string";
|
|
10648
|
+
};
|
|
10649
|
+
};
|
|
10650
|
+
};
|
|
10651
|
+
readonly additionalProperties: false;
|
|
10652
|
+
};
|
|
10653
|
+
readonly dissatisfied: {
|
|
10654
|
+
readonly type: "object";
|
|
10655
|
+
readonly properties: {
|
|
10656
|
+
readonly hide: {
|
|
10657
|
+
readonly type: "boolean";
|
|
10658
|
+
readonly default: false;
|
|
10659
|
+
};
|
|
10660
|
+
readonly component: {
|
|
10661
|
+
readonly type: "string";
|
|
10662
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10663
|
+
readonly default: "checkbox";
|
|
10664
|
+
};
|
|
10665
|
+
readonly label: {
|
|
10666
|
+
readonly type: "string";
|
|
10667
|
+
};
|
|
10668
|
+
readonly items: {
|
|
10669
|
+
readonly type: "array";
|
|
10670
|
+
readonly items: {
|
|
10671
|
+
readonly type: "string";
|
|
10672
|
+
};
|
|
10673
|
+
};
|
|
10674
|
+
};
|
|
10675
|
+
readonly additionalProperties: false;
|
|
10676
|
+
};
|
|
10677
|
+
readonly hide: {
|
|
10678
|
+
readonly type: "boolean";
|
|
10679
|
+
readonly default: false;
|
|
10680
|
+
};
|
|
10681
|
+
readonly component: {
|
|
10682
|
+
readonly type: "string";
|
|
10683
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
10684
|
+
readonly default: "checkbox";
|
|
10685
|
+
};
|
|
10686
|
+
readonly label: {
|
|
10687
|
+
readonly type: "string";
|
|
10688
|
+
};
|
|
10689
|
+
readonly items: {
|
|
10690
|
+
readonly type: "array";
|
|
10691
|
+
readonly items: {
|
|
10692
|
+
readonly type: "string";
|
|
10693
|
+
};
|
|
10694
|
+
};
|
|
10695
|
+
};
|
|
10696
|
+
readonly additionalProperties: false;
|
|
10697
|
+
};
|
|
10698
|
+
readonly comment: {
|
|
10699
|
+
readonly type: "object";
|
|
10700
|
+
readonly properties: {
|
|
10701
|
+
readonly hide: {
|
|
10702
|
+
readonly type: "boolean";
|
|
10703
|
+
readonly default: false;
|
|
10704
|
+
};
|
|
10705
|
+
readonly label: {
|
|
10706
|
+
readonly type: "string";
|
|
10707
|
+
};
|
|
10708
|
+
readonly likeLabel: {
|
|
10709
|
+
readonly type: "string";
|
|
10710
|
+
};
|
|
10711
|
+
readonly dislikeLabel: {
|
|
10712
|
+
readonly type: "string";
|
|
10713
|
+
};
|
|
10714
|
+
readonly satisfiedLabel: {
|
|
10715
|
+
readonly type: "string";
|
|
10716
|
+
};
|
|
10717
|
+
readonly neutralLabel: {
|
|
10718
|
+
readonly type: "string";
|
|
10719
|
+
};
|
|
10720
|
+
readonly dissatisfiedLabel: {
|
|
10721
|
+
readonly type: "string";
|
|
10722
|
+
};
|
|
10723
|
+
};
|
|
10724
|
+
readonly additionalProperties: false;
|
|
10725
|
+
};
|
|
10726
|
+
readonly optionalEmail: {
|
|
10727
|
+
readonly type: "object";
|
|
10728
|
+
readonly properties: {
|
|
10729
|
+
readonly hide: {
|
|
10730
|
+
readonly type: "boolean";
|
|
10731
|
+
readonly default: false;
|
|
10732
|
+
};
|
|
10733
|
+
readonly label: {
|
|
10734
|
+
readonly type: "string";
|
|
10735
|
+
};
|
|
10736
|
+
readonly placeholder: {
|
|
10737
|
+
readonly type: "string";
|
|
10738
|
+
};
|
|
10739
|
+
};
|
|
10740
|
+
readonly additionalProperties: false;
|
|
10741
|
+
};
|
|
10742
|
+
};
|
|
10743
|
+
readonly additionalProperties: false;
|
|
10744
|
+
};
|
|
10745
|
+
};
|
|
10746
|
+
readonly additionalProperties: false;
|
|
10747
|
+
};
|
|
10748
|
+
readonly layout: {
|
|
10749
|
+
readonly type: "string";
|
|
10750
|
+
readonly enum: readonly ["stacked", "three-panel"];
|
|
10751
|
+
};
|
|
10752
|
+
};
|
|
10753
|
+
readonly additionalProperties: false;
|
|
10754
|
+
};
|
|
10446
10755
|
readonly graphql: {
|
|
10447
10756
|
readonly type: "object";
|
|
10448
10757
|
readonly properties: {
|
|
@@ -21246,6 +21555,9 @@ export declare const redoclyConfigSchema: {
|
|
|
21246
21555
|
};
|
|
21247
21556
|
readonly additionalProperties: false;
|
|
21248
21557
|
};
|
|
21558
|
+
/**
|
|
21559
|
+
* @deprecated Should use `access.rbac` instead
|
|
21560
|
+
*/
|
|
21249
21561
|
readonly rbac: {
|
|
21250
21562
|
readonly type: "object";
|
|
21251
21563
|
readonly properties: {
|
|
@@ -21484,6 +21796,9 @@ export declare const redoclyConfigSchema: {
|
|
|
21484
21796
|
};
|
|
21485
21797
|
readonly additionalProperties: false;
|
|
21486
21798
|
};
|
|
21799
|
+
/**
|
|
21800
|
+
* @deprecated Should use `access.requiresLogin` instead
|
|
21801
|
+
*/
|
|
21487
21802
|
readonly requiresLogin: {
|
|
21488
21803
|
readonly type: "boolean";
|
|
21489
21804
|
};
|
|
@@ -28075,6 +28390,152 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
28075
28390
|
additionalProperties: false;
|
|
28076
28391
|
type: "object";
|
|
28077
28392
|
};
|
|
28393
|
+
asyncapi: {
|
|
28394
|
+
properties: {
|
|
28395
|
+
layout: {
|
|
28396
|
+
enum: ("stacked" | "three-panel")[];
|
|
28397
|
+
type: "string";
|
|
28398
|
+
};
|
|
28399
|
+
metadata: {
|
|
28400
|
+
properties: {
|
|
28401
|
+
apiId: {
|
|
28402
|
+
type: "string";
|
|
28403
|
+
};
|
|
28404
|
+
};
|
|
28405
|
+
additionalProperties: true;
|
|
28406
|
+
type: "object";
|
|
28407
|
+
};
|
|
28408
|
+
feedback: {
|
|
28409
|
+
properties: {
|
|
28410
|
+
type: {
|
|
28411
|
+
enum: ("rating" | "sentiment" | "comment" | "reasons" | "mood" | "scale")[];
|
|
28412
|
+
type: "string";
|
|
28413
|
+
};
|
|
28414
|
+
hide: {
|
|
28415
|
+
type: "boolean";
|
|
28416
|
+
};
|
|
28417
|
+
settings: {
|
|
28418
|
+
properties: {
|
|
28419
|
+
comment: {
|
|
28420
|
+
properties: {
|
|
28421
|
+
label: /*elided*/ any;
|
|
28422
|
+
hide: /*elided*/ any;
|
|
28423
|
+
likeLabel: /*elided*/ any;
|
|
28424
|
+
dislikeLabel: /*elided*/ any;
|
|
28425
|
+
satisfiedLabel: /*elided*/ any;
|
|
28426
|
+
neutralLabel: /*elided*/ any;
|
|
28427
|
+
dissatisfiedLabel: /*elided*/ any;
|
|
28428
|
+
};
|
|
28429
|
+
additionalProperties: false;
|
|
28430
|
+
type: "object";
|
|
28431
|
+
};
|
|
28432
|
+
reasons: {
|
|
28433
|
+
properties: {
|
|
28434
|
+
label: /*elided*/ any;
|
|
28435
|
+
items: /*elided*/ any;
|
|
28436
|
+
hide: /*elided*/ any;
|
|
28437
|
+
component: /*elided*/ any;
|
|
28438
|
+
like: /*elided*/ any;
|
|
28439
|
+
dislike: /*elided*/ any;
|
|
28440
|
+
satisfied: /*elided*/ any;
|
|
28441
|
+
neutral: /*elided*/ any;
|
|
28442
|
+
dissatisfied: /*elided*/ any;
|
|
28443
|
+
};
|
|
28444
|
+
additionalProperties: false;
|
|
28445
|
+
type: "object";
|
|
28446
|
+
};
|
|
28447
|
+
label: {
|
|
28448
|
+
type: "string";
|
|
28449
|
+
};
|
|
28450
|
+
items: {
|
|
28451
|
+
items: {
|
|
28452
|
+
type: "string";
|
|
28453
|
+
};
|
|
28454
|
+
type: "array";
|
|
28455
|
+
minItems: 1;
|
|
28456
|
+
};
|
|
28457
|
+
submitText: {
|
|
28458
|
+
type: "string";
|
|
28459
|
+
};
|
|
28460
|
+
buttonText: {
|
|
28461
|
+
type: "string";
|
|
28462
|
+
};
|
|
28463
|
+
component: {
|
|
28464
|
+
enum: ("radio" | "checkbox")[];
|
|
28465
|
+
type: "string";
|
|
28466
|
+
};
|
|
28467
|
+
leftScaleLabel: {
|
|
28468
|
+
type: "string";
|
|
28469
|
+
};
|
|
28470
|
+
rightScaleLabel: {
|
|
28471
|
+
type: "string";
|
|
28472
|
+
};
|
|
28473
|
+
optionalEmail: {
|
|
28474
|
+
properties: {
|
|
28475
|
+
label: /*elided*/ any;
|
|
28476
|
+
hide: /*elided*/ any;
|
|
28477
|
+
placeholder: /*elided*/ any;
|
|
28478
|
+
};
|
|
28479
|
+
additionalProperties: false;
|
|
28480
|
+
type: "object";
|
|
28481
|
+
};
|
|
28482
|
+
};
|
|
28483
|
+
additionalProperties: false;
|
|
28484
|
+
type: "object";
|
|
28485
|
+
};
|
|
28486
|
+
};
|
|
28487
|
+
additionalProperties: false;
|
|
28488
|
+
type: "object";
|
|
28489
|
+
};
|
|
28490
|
+
downloadUrls: {
|
|
28491
|
+
items: {
|
|
28492
|
+
properties: {
|
|
28493
|
+
url: {
|
|
28494
|
+
type: "string";
|
|
28495
|
+
};
|
|
28496
|
+
title: {
|
|
28497
|
+
type: "string";
|
|
28498
|
+
};
|
|
28499
|
+
};
|
|
28500
|
+
additionalProperties: false;
|
|
28501
|
+
type: "object";
|
|
28502
|
+
required: "url"[];
|
|
28503
|
+
};
|
|
28504
|
+
type: "array";
|
|
28505
|
+
};
|
|
28506
|
+
apiLogo: {
|
|
28507
|
+
properties: {
|
|
28508
|
+
backgroundColor: {
|
|
28509
|
+
type: "string";
|
|
28510
|
+
};
|
|
28511
|
+
href: {
|
|
28512
|
+
type: "string";
|
|
28513
|
+
};
|
|
28514
|
+
imageUrl: {
|
|
28515
|
+
type: "string";
|
|
28516
|
+
};
|
|
28517
|
+
altText: {
|
|
28518
|
+
type: "string";
|
|
28519
|
+
};
|
|
28520
|
+
};
|
|
28521
|
+
type: "object";
|
|
28522
|
+
};
|
|
28523
|
+
jsonSamplesDepth: {
|
|
28524
|
+
type: "number";
|
|
28525
|
+
};
|
|
28526
|
+
samplesMaxInlineArgs: {
|
|
28527
|
+
type: "number";
|
|
28528
|
+
};
|
|
28529
|
+
fieldExpandLevel: {
|
|
28530
|
+
type: "number";
|
|
28531
|
+
};
|
|
28532
|
+
baseUrlPath: {
|
|
28533
|
+
type: "string";
|
|
28534
|
+
};
|
|
28535
|
+
};
|
|
28536
|
+
additionalProperties: false;
|
|
28537
|
+
type: "object";
|
|
28538
|
+
};
|
|
28078
28539
|
graphql: {
|
|
28079
28540
|
properties: {
|
|
28080
28541
|
layout: {
|
|
@@ -40139,6 +40600,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
40139
40600
|
};
|
|
40140
40601
|
};
|
|
40141
40602
|
};
|
|
40603
|
+
/**
|
|
40604
|
+
* @deprecated Should use `access.sso` instead
|
|
40605
|
+
*/
|
|
40142
40606
|
readonly sso: {
|
|
40143
40607
|
readonly oneOf: readonly [{
|
|
40144
40608
|
readonly type: "array";
|
|
@@ -40152,10 +40616,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
40152
40616
|
readonly enum: readonly ["REDOCLY", "CORPORATE", "GUEST"];
|
|
40153
40617
|
}];
|
|
40154
40618
|
};
|
|
40619
|
+
/**
|
|
40620
|
+
* @deprecated Should use `access.residency` instead
|
|
40621
|
+
*/
|
|
40155
40622
|
readonly residency: {
|
|
40156
40623
|
readonly type: "string";
|
|
40157
40624
|
readonly pattern: "^https?://.*";
|
|
40158
40625
|
};
|
|
40626
|
+
/**
|
|
40627
|
+
* @deprecated Should use `access.logoutReturnUrl` instead
|
|
40628
|
+
*/
|
|
40159
40629
|
readonly logoutReturnUrl: {
|
|
40160
40630
|
readonly type: "string";
|
|
40161
40631
|
readonly pattern: "^https?://.*";
|
|
@@ -43704,6 +44174,306 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
43704
44174
|
readonly type: "object";
|
|
43705
44175
|
readonly additionalProperties: false;
|
|
43706
44176
|
};
|
|
44177
|
+
readonly asyncapi: {
|
|
44178
|
+
readonly type: "object";
|
|
44179
|
+
readonly properties: {
|
|
44180
|
+
readonly downloadUrls: {
|
|
44181
|
+
readonly type: "array";
|
|
44182
|
+
readonly items: {
|
|
44183
|
+
readonly type: "object";
|
|
44184
|
+
readonly properties: {
|
|
44185
|
+
readonly title: {
|
|
44186
|
+
readonly type: "string";
|
|
44187
|
+
};
|
|
44188
|
+
readonly url: {
|
|
44189
|
+
readonly type: "string";
|
|
44190
|
+
};
|
|
44191
|
+
};
|
|
44192
|
+
readonly required: readonly ["url"];
|
|
44193
|
+
readonly additionalProperties: false;
|
|
44194
|
+
};
|
|
44195
|
+
};
|
|
44196
|
+
readonly apiLogo: {
|
|
44197
|
+
readonly type: "object";
|
|
44198
|
+
readonly properties: {
|
|
44199
|
+
readonly imageUrl: {
|
|
44200
|
+
readonly type: "string";
|
|
44201
|
+
};
|
|
44202
|
+
readonly href: {
|
|
44203
|
+
readonly type: "string";
|
|
44204
|
+
};
|
|
44205
|
+
readonly altText: {
|
|
44206
|
+
readonly type: "string";
|
|
44207
|
+
};
|
|
44208
|
+
readonly backgroundColor: {
|
|
44209
|
+
readonly type: "string";
|
|
44210
|
+
};
|
|
44211
|
+
};
|
|
44212
|
+
};
|
|
44213
|
+
readonly jsonSamplesDepth: {
|
|
44214
|
+
readonly type: "number";
|
|
44215
|
+
};
|
|
44216
|
+
readonly samplesMaxInlineArgs: {
|
|
44217
|
+
readonly type: "number";
|
|
44218
|
+
};
|
|
44219
|
+
readonly fieldExpandLevel: {
|
|
44220
|
+
readonly type: "number";
|
|
44221
|
+
};
|
|
44222
|
+
readonly baseUrlPath: {
|
|
44223
|
+
readonly type: "string";
|
|
44224
|
+
};
|
|
44225
|
+
readonly metadata: {
|
|
44226
|
+
readonly type: "object";
|
|
44227
|
+
readonly properties: {
|
|
44228
|
+
readonly apiId: {
|
|
44229
|
+
readonly type: "string";
|
|
44230
|
+
};
|
|
44231
|
+
};
|
|
44232
|
+
readonly additionalProperties: true;
|
|
44233
|
+
};
|
|
44234
|
+
readonly feedback: {
|
|
44235
|
+
readonly type: "object";
|
|
44236
|
+
readonly properties: {
|
|
44237
|
+
readonly hide: {
|
|
44238
|
+
readonly type: "boolean";
|
|
44239
|
+
readonly default: false;
|
|
44240
|
+
};
|
|
44241
|
+
readonly type: {
|
|
44242
|
+
readonly type: "string";
|
|
44243
|
+
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
44244
|
+
readonly default: "sentiment";
|
|
44245
|
+
};
|
|
44246
|
+
readonly settings: {
|
|
44247
|
+
readonly type: "object";
|
|
44248
|
+
readonly properties: {
|
|
44249
|
+
readonly label: {
|
|
44250
|
+
readonly type: "string";
|
|
44251
|
+
};
|
|
44252
|
+
readonly submitText: {
|
|
44253
|
+
readonly type: "string";
|
|
44254
|
+
};
|
|
44255
|
+
readonly buttonText: {
|
|
44256
|
+
readonly type: "string";
|
|
44257
|
+
};
|
|
44258
|
+
readonly component: {
|
|
44259
|
+
readonly type: "string";
|
|
44260
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44261
|
+
readonly default: "checkbox";
|
|
44262
|
+
};
|
|
44263
|
+
readonly items: {
|
|
44264
|
+
readonly type: "array";
|
|
44265
|
+
readonly items: {
|
|
44266
|
+
readonly type: "string";
|
|
44267
|
+
};
|
|
44268
|
+
readonly minItems: 1;
|
|
44269
|
+
};
|
|
44270
|
+
readonly leftScaleLabel: {
|
|
44271
|
+
readonly type: "string";
|
|
44272
|
+
};
|
|
44273
|
+
readonly rightScaleLabel: {
|
|
44274
|
+
readonly type: "string";
|
|
44275
|
+
};
|
|
44276
|
+
readonly reasons: {
|
|
44277
|
+
readonly type: "object";
|
|
44278
|
+
readonly properties: {
|
|
44279
|
+
readonly like: {
|
|
44280
|
+
readonly type: "object";
|
|
44281
|
+
readonly properties: {
|
|
44282
|
+
readonly hide: {
|
|
44283
|
+
readonly type: "boolean";
|
|
44284
|
+
readonly default: false;
|
|
44285
|
+
};
|
|
44286
|
+
readonly component: {
|
|
44287
|
+
readonly type: "string";
|
|
44288
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44289
|
+
readonly default: "checkbox";
|
|
44290
|
+
};
|
|
44291
|
+
readonly label: {
|
|
44292
|
+
readonly type: "string";
|
|
44293
|
+
};
|
|
44294
|
+
readonly items: {
|
|
44295
|
+
readonly type: "array";
|
|
44296
|
+
readonly items: {
|
|
44297
|
+
readonly type: "string";
|
|
44298
|
+
};
|
|
44299
|
+
};
|
|
44300
|
+
};
|
|
44301
|
+
readonly additionalProperties: false;
|
|
44302
|
+
};
|
|
44303
|
+
readonly dislike: {
|
|
44304
|
+
readonly type: "object";
|
|
44305
|
+
readonly properties: {
|
|
44306
|
+
readonly hide: {
|
|
44307
|
+
readonly type: "boolean";
|
|
44308
|
+
readonly default: false;
|
|
44309
|
+
};
|
|
44310
|
+
readonly component: {
|
|
44311
|
+
readonly type: "string";
|
|
44312
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44313
|
+
readonly default: "checkbox";
|
|
44314
|
+
};
|
|
44315
|
+
readonly label: {
|
|
44316
|
+
readonly type: "string";
|
|
44317
|
+
};
|
|
44318
|
+
readonly items: {
|
|
44319
|
+
readonly type: "array";
|
|
44320
|
+
readonly items: {
|
|
44321
|
+
readonly type: "string";
|
|
44322
|
+
};
|
|
44323
|
+
};
|
|
44324
|
+
};
|
|
44325
|
+
readonly additionalProperties: false;
|
|
44326
|
+
};
|
|
44327
|
+
readonly satisfied: {
|
|
44328
|
+
readonly type: "object";
|
|
44329
|
+
readonly properties: {
|
|
44330
|
+
readonly hide: {
|
|
44331
|
+
readonly type: "boolean";
|
|
44332
|
+
readonly default: false;
|
|
44333
|
+
};
|
|
44334
|
+
readonly component: {
|
|
44335
|
+
readonly type: "string";
|
|
44336
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44337
|
+
readonly default: "checkbox";
|
|
44338
|
+
};
|
|
44339
|
+
readonly label: {
|
|
44340
|
+
readonly type: "string";
|
|
44341
|
+
};
|
|
44342
|
+
readonly items: {
|
|
44343
|
+
readonly type: "array";
|
|
44344
|
+
readonly items: {
|
|
44345
|
+
readonly type: "string";
|
|
44346
|
+
};
|
|
44347
|
+
};
|
|
44348
|
+
};
|
|
44349
|
+
readonly additionalProperties: false;
|
|
44350
|
+
};
|
|
44351
|
+
readonly neutral: {
|
|
44352
|
+
readonly type: "object";
|
|
44353
|
+
readonly properties: {
|
|
44354
|
+
readonly hide: {
|
|
44355
|
+
readonly type: "boolean";
|
|
44356
|
+
readonly default: false;
|
|
44357
|
+
};
|
|
44358
|
+
readonly component: {
|
|
44359
|
+
readonly type: "string";
|
|
44360
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44361
|
+
readonly default: "checkbox";
|
|
44362
|
+
};
|
|
44363
|
+
readonly label: {
|
|
44364
|
+
readonly type: "string";
|
|
44365
|
+
};
|
|
44366
|
+
readonly items: {
|
|
44367
|
+
readonly type: "array";
|
|
44368
|
+
readonly items: {
|
|
44369
|
+
readonly type: "string";
|
|
44370
|
+
};
|
|
44371
|
+
};
|
|
44372
|
+
};
|
|
44373
|
+
readonly additionalProperties: false;
|
|
44374
|
+
};
|
|
44375
|
+
readonly dissatisfied: {
|
|
44376
|
+
readonly type: "object";
|
|
44377
|
+
readonly properties: {
|
|
44378
|
+
readonly hide: {
|
|
44379
|
+
readonly type: "boolean";
|
|
44380
|
+
readonly default: false;
|
|
44381
|
+
};
|
|
44382
|
+
readonly component: {
|
|
44383
|
+
readonly type: "string";
|
|
44384
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44385
|
+
readonly default: "checkbox";
|
|
44386
|
+
};
|
|
44387
|
+
readonly label: {
|
|
44388
|
+
readonly type: "string";
|
|
44389
|
+
};
|
|
44390
|
+
readonly items: {
|
|
44391
|
+
readonly type: "array";
|
|
44392
|
+
readonly items: {
|
|
44393
|
+
readonly type: "string";
|
|
44394
|
+
};
|
|
44395
|
+
};
|
|
44396
|
+
};
|
|
44397
|
+
readonly additionalProperties: false;
|
|
44398
|
+
};
|
|
44399
|
+
readonly hide: {
|
|
44400
|
+
readonly type: "boolean";
|
|
44401
|
+
readonly default: false;
|
|
44402
|
+
};
|
|
44403
|
+
readonly component: {
|
|
44404
|
+
readonly type: "string";
|
|
44405
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
44406
|
+
readonly default: "checkbox";
|
|
44407
|
+
};
|
|
44408
|
+
readonly label: {
|
|
44409
|
+
readonly type: "string";
|
|
44410
|
+
};
|
|
44411
|
+
readonly items: {
|
|
44412
|
+
readonly type: "array";
|
|
44413
|
+
readonly items: {
|
|
44414
|
+
readonly type: "string";
|
|
44415
|
+
};
|
|
44416
|
+
};
|
|
44417
|
+
};
|
|
44418
|
+
readonly additionalProperties: false;
|
|
44419
|
+
};
|
|
44420
|
+
readonly comment: {
|
|
44421
|
+
readonly type: "object";
|
|
44422
|
+
readonly properties: {
|
|
44423
|
+
readonly hide: {
|
|
44424
|
+
readonly type: "boolean";
|
|
44425
|
+
readonly default: false;
|
|
44426
|
+
};
|
|
44427
|
+
readonly label: {
|
|
44428
|
+
readonly type: "string";
|
|
44429
|
+
};
|
|
44430
|
+
readonly likeLabel: {
|
|
44431
|
+
readonly type: "string";
|
|
44432
|
+
};
|
|
44433
|
+
readonly dislikeLabel: {
|
|
44434
|
+
readonly type: "string";
|
|
44435
|
+
};
|
|
44436
|
+
readonly satisfiedLabel: {
|
|
44437
|
+
readonly type: "string";
|
|
44438
|
+
};
|
|
44439
|
+
readonly neutralLabel: {
|
|
44440
|
+
readonly type: "string";
|
|
44441
|
+
};
|
|
44442
|
+
readonly dissatisfiedLabel: {
|
|
44443
|
+
readonly type: "string";
|
|
44444
|
+
};
|
|
44445
|
+
};
|
|
44446
|
+
readonly additionalProperties: false;
|
|
44447
|
+
};
|
|
44448
|
+
readonly optionalEmail: {
|
|
44449
|
+
readonly type: "object";
|
|
44450
|
+
readonly properties: {
|
|
44451
|
+
readonly hide: {
|
|
44452
|
+
readonly type: "boolean";
|
|
44453
|
+
readonly default: false;
|
|
44454
|
+
};
|
|
44455
|
+
readonly label: {
|
|
44456
|
+
readonly type: "string";
|
|
44457
|
+
};
|
|
44458
|
+
readonly placeholder: {
|
|
44459
|
+
readonly type: "string";
|
|
44460
|
+
};
|
|
44461
|
+
};
|
|
44462
|
+
readonly additionalProperties: false;
|
|
44463
|
+
};
|
|
44464
|
+
};
|
|
44465
|
+
readonly additionalProperties: false;
|
|
44466
|
+
};
|
|
44467
|
+
};
|
|
44468
|
+
readonly additionalProperties: false;
|
|
44469
|
+
};
|
|
44470
|
+
readonly layout: {
|
|
44471
|
+
readonly type: "string";
|
|
44472
|
+
readonly enum: readonly ["stacked", "three-panel"];
|
|
44473
|
+
};
|
|
44474
|
+
};
|
|
44475
|
+
readonly additionalProperties: false;
|
|
44476
|
+
};
|
|
43707
44477
|
readonly graphql: {
|
|
43708
44478
|
readonly type: "object";
|
|
43709
44479
|
readonly properties: {
|
|
@@ -54507,6 +55277,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
54507
55277
|
};
|
|
54508
55278
|
readonly additionalProperties: false;
|
|
54509
55279
|
};
|
|
55280
|
+
/**
|
|
55281
|
+
* @deprecated Should use `access.rbac` instead
|
|
55282
|
+
*/
|
|
54510
55283
|
readonly rbac: {
|
|
54511
55284
|
readonly type: "object";
|
|
54512
55285
|
readonly properties: {
|
|
@@ -54745,6 +55518,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
54745
55518
|
};
|
|
54746
55519
|
readonly additionalProperties: false;
|
|
54747
55520
|
};
|
|
55521
|
+
/**
|
|
55522
|
+
* @deprecated Should use `access.requiresLogin` instead
|
|
55523
|
+
*/
|
|
54748
55524
|
readonly requiresLogin: {
|
|
54749
55525
|
readonly type: "boolean";
|
|
54750
55526
|
};
|