@redocly/config 0.5.0 → 0.82.2-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/lib/.tsbuildinfo +1 -1
- package/lib/default-theme-config-schema.d.ts +7 -12
- package/lib/default-theme-config-schema.js +9 -5
- package/lib/default-theme-config-schema.js.map +1 -1
- package/lib/portal-shared-types.d.ts +18 -7
- package/lib/remove-property-recursively.d.ts +5 -0
- package/lib/remove-property-recursively.js +26 -0
- package/lib/remove-property-recursively.js.map +1 -0
- package/lib/root-config-schema.d.ts +1532 -1787
- package/lib/root-config-schema.js +8 -1
- package/lib/root-config-schema.js.map +1 -1
- package/lib-esm/.tsbuildinfo +1 -1
- package/lib-esm/default-theme-config-schema.d.ts +7 -12
- package/lib-esm/default-theme-config-schema.js +9 -5
- package/lib-esm/default-theme-config-schema.js.map +1 -1
- package/lib-esm/portal-shared-types.d.ts +18 -7
- package/lib-esm/remove-property-recursively.d.ts +5 -0
- package/lib-esm/remove-property-recursively.js +22 -0
- package/lib-esm/remove-property-recursively.js.map +1 -0
- package/lib-esm/root-config-schema.d.ts +1556 -1781
- package/lib-esm/root-config-schema.js +8 -1
- package/lib-esm/root-config-schema.js.map +1 -1
- package/package.json +1 -1
- package/src/default-theme-config-schema.ts +9 -7
- package/src/portal-shared-types.ts +21 -11
- package/src/remove-property-recursively.ts +39 -0
- package/src/root-config-schema.ts +10 -1
|
@@ -1417,6 +1417,16 @@ export declare const redoclyConfigSchema: {
|
|
|
1417
1417
|
readonly required: readonly ["root"];
|
|
1418
1418
|
};
|
|
1419
1419
|
};
|
|
1420
|
+
readonly rules: {
|
|
1421
|
+
readonly type: "object";
|
|
1422
|
+
readonly additionalProperties: {
|
|
1423
|
+
readonly oneOf: readonly [{
|
|
1424
|
+
readonly type: "string";
|
|
1425
|
+
}, {
|
|
1426
|
+
readonly type: "object";
|
|
1427
|
+
}];
|
|
1428
|
+
};
|
|
1429
|
+
};
|
|
1420
1430
|
readonly ssoOnPrem: {
|
|
1421
1431
|
readonly type: "object";
|
|
1422
1432
|
readonly additionalProperties: {
|
|
@@ -2615,7 +2625,7 @@ export declare const redoclyConfigSchema: {
|
|
|
2615
2625
|
};
|
|
2616
2626
|
readonly text: {
|
|
2617
2627
|
readonly type: "string";
|
|
2618
|
-
readonly default: "Next
|
|
2628
|
+
readonly default: "Next page";
|
|
2619
2629
|
};
|
|
2620
2630
|
};
|
|
2621
2631
|
readonly additionalProperties: false;
|
|
@@ -2629,7 +2639,7 @@ export declare const redoclyConfigSchema: {
|
|
|
2629
2639
|
};
|
|
2630
2640
|
readonly text: {
|
|
2631
2641
|
readonly type: "string";
|
|
2632
|
-
readonly default: "
|
|
2642
|
+
readonly default: "Previous page";
|
|
2633
2643
|
};
|
|
2634
2644
|
};
|
|
2635
2645
|
readonly additionalProperties: false;
|
|
@@ -3024,21 +3034,13 @@ export declare const redoclyConfigSchema: {
|
|
|
3024
3034
|
};
|
|
3025
3035
|
};
|
|
3026
3036
|
};
|
|
3027
|
-
readonly
|
|
3037
|
+
readonly userMenu: {
|
|
3028
3038
|
readonly type: "object";
|
|
3029
3039
|
readonly properties: {
|
|
3030
3040
|
readonly hide: {
|
|
3031
3041
|
readonly type: "boolean";
|
|
3032
3042
|
};
|
|
3033
|
-
readonly
|
|
3034
|
-
readonly type: "string";
|
|
3035
|
-
readonly default: "Login";
|
|
3036
|
-
};
|
|
3037
|
-
readonly logoutLabel: {
|
|
3038
|
-
readonly type: "string";
|
|
3039
|
-
readonly default: "Logout";
|
|
3040
|
-
};
|
|
3041
|
-
readonly menu: {
|
|
3043
|
+
readonly items: {
|
|
3042
3044
|
readonly type: "array";
|
|
3043
3045
|
readonly items: {
|
|
3044
3046
|
readonly type: "object";
|
|
@@ -3125,6 +3127,7 @@ export declare const redoclyConfigSchema: {
|
|
|
3125
3127
|
readonly type: {
|
|
3126
3128
|
readonly type: "string";
|
|
3127
3129
|
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
3130
|
+
readonly default: "checkboxes";
|
|
3128
3131
|
};
|
|
3129
3132
|
readonly title: {
|
|
3130
3133
|
readonly type: "string";
|
|
@@ -3471,2275 +3474,2014 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
3471
3474
|
readonly additionalProperties: false;
|
|
3472
3475
|
readonly type: "object";
|
|
3473
3476
|
readonly properties: {
|
|
3474
|
-
|
|
3475
|
-
|
|
3477
|
+
metadata: {
|
|
3478
|
+
type: "object";
|
|
3479
|
+
additionalProperties: true;
|
|
3476
3480
|
};
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3481
|
+
licenseKey: {
|
|
3482
|
+
type: "string";
|
|
3483
|
+
};
|
|
3484
|
+
redirects: {
|
|
3485
|
+
type: "object";
|
|
3486
|
+
additionalProperties: {
|
|
3487
|
+
type: "object";
|
|
3488
|
+
properties: {
|
|
3489
|
+
type: {
|
|
3490
|
+
type: "number";
|
|
3484
3491
|
};
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
readonly default: 301;
|
|
3492
|
+
to: {
|
|
3493
|
+
type: "string";
|
|
3488
3494
|
};
|
|
3489
3495
|
};
|
|
3490
|
-
|
|
3496
|
+
additionalProperties: false;
|
|
3491
3497
|
};
|
|
3492
|
-
readonly default: {};
|
|
3493
3498
|
};
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
+
seo: {
|
|
3500
|
+
type: "object";
|
|
3501
|
+
properties: {
|
|
3502
|
+
image: {
|
|
3503
|
+
type: "string";
|
|
3499
3504
|
};
|
|
3500
|
-
|
|
3501
|
-
|
|
3505
|
+
title: {
|
|
3506
|
+
type: "string";
|
|
3502
3507
|
};
|
|
3503
|
-
|
|
3504
|
-
|
|
3508
|
+
description: {
|
|
3509
|
+
type: "string";
|
|
3505
3510
|
};
|
|
3506
|
-
|
|
3507
|
-
|
|
3511
|
+
siteUrl: {
|
|
3512
|
+
type: "string";
|
|
3508
3513
|
};
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
readonly type: "string";
|
|
3514
|
+
keywords: {
|
|
3515
|
+
oneOf: ({
|
|
3516
|
+
items: {
|
|
3517
|
+
type: "string";
|
|
3514
3518
|
};
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3519
|
+
type: "array";
|
|
3520
|
+
} | {
|
|
3521
|
+
type: "string";
|
|
3522
|
+
})[];
|
|
3518
3523
|
};
|
|
3519
|
-
|
|
3520
|
-
|
|
3524
|
+
lang: {
|
|
3525
|
+
type: "string";
|
|
3521
3526
|
};
|
|
3522
|
-
|
|
3523
|
-
|
|
3527
|
+
jsonLd: {
|
|
3528
|
+
type: "object";
|
|
3524
3529
|
};
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
readonly type: "string";
|
|
3530
|
+
meta: {
|
|
3531
|
+
items: {
|
|
3532
|
+
type: "object";
|
|
3533
|
+
properties: {
|
|
3534
|
+
name: {
|
|
3535
|
+
type: "string";
|
|
3532
3536
|
};
|
|
3533
|
-
|
|
3534
|
-
|
|
3537
|
+
content: {
|
|
3538
|
+
type: "string";
|
|
3535
3539
|
};
|
|
3536
3540
|
};
|
|
3537
|
-
|
|
3538
|
-
|
|
3541
|
+
additionalProperties: false;
|
|
3542
|
+
required: ("name" | "content")[];
|
|
3539
3543
|
};
|
|
3544
|
+
type: "array";
|
|
3540
3545
|
};
|
|
3541
3546
|
};
|
|
3542
|
-
|
|
3547
|
+
additionalProperties: false;
|
|
3543
3548
|
};
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3549
|
+
rbac: {
|
|
3550
|
+
type: "object";
|
|
3551
|
+
properties: {
|
|
3552
|
+
content: {
|
|
3553
|
+
type: "object";
|
|
3554
|
+
properties: {
|
|
3555
|
+
"**": {
|
|
3556
|
+
type: "object";
|
|
3557
|
+
additionalProperties: {
|
|
3558
|
+
type: "string";
|
|
3559
|
+
};
|
|
3560
|
+
};
|
|
3551
3561
|
};
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3562
|
+
additionalProperties: {
|
|
3563
|
+
type: "object";
|
|
3564
|
+
additionalProperties: {
|
|
3565
|
+
type: "string";
|
|
3566
|
+
};
|
|
3557
3567
|
};
|
|
3558
3568
|
};
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3569
|
+
reunite: {
|
|
3570
|
+
type: "object";
|
|
3571
|
+
additionalProperties: {
|
|
3572
|
+
type: "string";
|
|
3563
3573
|
};
|
|
3564
3574
|
};
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
readonly type: "string";
|
|
3575
|
+
teamNamePatterns: {
|
|
3576
|
+
items: {
|
|
3577
|
+
type: "string";
|
|
3569
3578
|
};
|
|
3579
|
+
type: "array";
|
|
3570
3580
|
};
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
readonly type: "string";
|
|
3581
|
+
teamFolders: {
|
|
3582
|
+
items: {
|
|
3583
|
+
type: "string";
|
|
3575
3584
|
};
|
|
3585
|
+
type: "array";
|
|
3576
3586
|
};
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
readonly type: "object";
|
|
3582
|
-
readonly additionalProperties: {
|
|
3583
|
-
readonly type: "string";
|
|
3584
|
-
};
|
|
3585
|
-
};
|
|
3587
|
+
teamFoldersBaseRoles: {
|
|
3588
|
+
type: "object";
|
|
3589
|
+
additionalProperties: {
|
|
3590
|
+
type: "string";
|
|
3586
3591
|
};
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
+
};
|
|
3593
|
+
cms: {
|
|
3594
|
+
type: "object";
|
|
3595
|
+
additionalProperties: {
|
|
3596
|
+
type: "string";
|
|
3592
3597
|
};
|
|
3593
3598
|
};
|
|
3594
3599
|
};
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3600
|
+
additionalProperties: {
|
|
3601
|
+
type: "object";
|
|
3602
|
+
additionalProperties: {
|
|
3603
|
+
type: "string";
|
|
3599
3604
|
};
|
|
3600
3605
|
};
|
|
3601
3606
|
};
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
readonly type: "string";
|
|
3607
|
+
responseHeaders: {
|
|
3608
|
+
type: "object";
|
|
3609
|
+
additionalProperties: {
|
|
3610
|
+
items: {
|
|
3611
|
+
type: "object";
|
|
3612
|
+
properties: {
|
|
3613
|
+
name: {
|
|
3614
|
+
type: "string";
|
|
3611
3615
|
};
|
|
3612
|
-
|
|
3613
|
-
|
|
3616
|
+
value: {
|
|
3617
|
+
type: "string";
|
|
3614
3618
|
};
|
|
3615
3619
|
};
|
|
3616
|
-
|
|
3617
|
-
|
|
3620
|
+
additionalProperties: false;
|
|
3621
|
+
required: ("name" | "value")[];
|
|
3618
3622
|
};
|
|
3623
|
+
type: "array";
|
|
3619
3624
|
};
|
|
3620
3625
|
};
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
readonly default: false;
|
|
3626
|
+
mockServer: {
|
|
3627
|
+
type: "object";
|
|
3628
|
+
properties: {
|
|
3629
|
+
off: {
|
|
3630
|
+
type: "boolean";
|
|
3627
3631
|
};
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
readonly enum: readonly ["first", "last", "replace", "off"];
|
|
3631
|
-
readonly default: "first";
|
|
3632
|
+
description: {
|
|
3633
|
+
type: "string";
|
|
3632
3634
|
};
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3635
|
+
position: {
|
|
3636
|
+
type: "string";
|
|
3637
|
+
enum: ("first" | "last" | "replace" | "off")[];
|
|
3636
3638
|
};
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
readonly default: false;
|
|
3639
|
+
strictExamples: {
|
|
3640
|
+
type: "boolean";
|
|
3640
3641
|
};
|
|
3641
|
-
|
|
3642
|
-
|
|
3642
|
+
errorIfForcedExampleNotFound: {
|
|
3643
|
+
type: "boolean";
|
|
3643
3644
|
};
|
|
3644
3645
|
};
|
|
3645
3646
|
};
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3647
|
+
apis: {
|
|
3648
|
+
type: "object";
|
|
3649
|
+
additionalProperties: {
|
|
3650
|
+
type: "object";
|
|
3651
|
+
properties: {
|
|
3652
|
+
title: {
|
|
3653
|
+
type: "string";
|
|
3653
3654
|
};
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3655
|
+
metadata: {
|
|
3656
|
+
type: "object";
|
|
3657
|
+
additionalProperties: true;
|
|
3657
3658
|
};
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
readonly additionalProperties: true;
|
|
3659
|
+
root: {
|
|
3660
|
+
type: "string";
|
|
3661
3661
|
};
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3662
|
+
rbac: {
|
|
3663
|
+
type: "object";
|
|
3664
|
+
additionalProperties: true;
|
|
3665
|
+
};
|
|
3666
|
+
rules: {
|
|
3667
|
+
type: "object";
|
|
3668
|
+
additionalProperties: true;
|
|
3669
|
+
};
|
|
3670
|
+
theme: {
|
|
3671
|
+
type: "object";
|
|
3672
|
+
properties: {
|
|
3673
|
+
openapi: {
|
|
3674
|
+
type: "object";
|
|
3675
|
+
additionalProperties: true;
|
|
3668
3676
|
};
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3677
|
+
graphql: {
|
|
3678
|
+
type: "object";
|
|
3679
|
+
additionalProperties: true;
|
|
3672
3680
|
};
|
|
3673
3681
|
};
|
|
3674
|
-
|
|
3675
|
-
};
|
|
3676
|
-
readonly title: {
|
|
3677
|
-
readonly type: "string";
|
|
3678
|
-
};
|
|
3679
|
-
readonly metadata: {
|
|
3680
|
-
readonly type: "object";
|
|
3681
|
-
readonly additionalProperties: true;
|
|
3682
|
+
additionalProperties: false;
|
|
3682
3683
|
};
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3684
|
+
output: {
|
|
3685
|
+
type: "string";
|
|
3686
|
+
pattern: "(.ya?ml|.json)$";
|
|
3686
3687
|
};
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3688
|
+
decorators: {
|
|
3689
|
+
type: "object";
|
|
3690
|
+
additionalProperties: true;
|
|
3690
3691
|
};
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3692
|
+
preprocessors: {
|
|
3693
|
+
type: "object";
|
|
3694
|
+
additionalProperties: true;
|
|
3694
3695
|
};
|
|
3695
3696
|
};
|
|
3696
|
-
|
|
3697
|
+
required: "root"[];
|
|
3697
3698
|
};
|
|
3698
3699
|
};
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3700
|
+
rules: {
|
|
3701
|
+
type: "object";
|
|
3702
|
+
additionalProperties: {
|
|
3703
|
+
oneOf: ({
|
|
3704
|
+
type: "string";
|
|
3705
|
+
} | {
|
|
3706
|
+
type: "object";
|
|
3707
|
+
})[];
|
|
3708
|
+
};
|
|
3709
|
+
};
|
|
3710
|
+
ssoOnPrem: {
|
|
3711
|
+
type: "object";
|
|
3712
|
+
additionalProperties: {
|
|
3713
|
+
oneOf: ({
|
|
3714
|
+
type: "object";
|
|
3715
|
+
properties: {
|
|
3716
|
+
title: {
|
|
3717
|
+
type: "string";
|
|
3708
3718
|
};
|
|
3709
|
-
|
|
3710
|
-
|
|
3719
|
+
type: {
|
|
3720
|
+
type: "string";
|
|
3721
|
+
const: AuthProviderType.OIDC;
|
|
3711
3722
|
};
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3723
|
+
clientId: {
|
|
3724
|
+
type: "string";
|
|
3725
|
+
minLength: 1;
|
|
3715
3726
|
};
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3727
|
+
configurationUrl: {
|
|
3728
|
+
type: "string";
|
|
3729
|
+
minLength: 1;
|
|
3719
3730
|
};
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3731
|
+
configuration: {
|
|
3732
|
+
type: "object";
|
|
3733
|
+
properties: {
|
|
3734
|
+
token_endpoint: {
|
|
3735
|
+
type: "string";
|
|
3725
3736
|
};
|
|
3726
|
-
|
|
3727
|
-
|
|
3737
|
+
authorization_endpoint: {
|
|
3738
|
+
type: "string";
|
|
3728
3739
|
};
|
|
3729
|
-
|
|
3730
|
-
|
|
3740
|
+
end_session_endpoint: {
|
|
3741
|
+
type: "string";
|
|
3731
3742
|
};
|
|
3732
|
-
|
|
3733
|
-
|
|
3743
|
+
jwks_uri: {
|
|
3744
|
+
type: "string";
|
|
3734
3745
|
};
|
|
3735
3746
|
};
|
|
3736
|
-
|
|
3737
|
-
|
|
3747
|
+
additionalProperties: true;
|
|
3748
|
+
required: ("token_endpoint" | "authorization_endpoint")[];
|
|
3738
3749
|
};
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3750
|
+
clientSecret: {
|
|
3751
|
+
type: "string";
|
|
3752
|
+
minLength: 0;
|
|
3742
3753
|
};
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
readonly minLength: 0;
|
|
3754
|
+
pkce: {
|
|
3755
|
+
type: "boolean";
|
|
3746
3756
|
};
|
|
3747
|
-
|
|
3748
|
-
|
|
3757
|
+
teamsClaimName: {
|
|
3758
|
+
type: "string";
|
|
3749
3759
|
};
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3760
|
+
teamsClaimMap: {
|
|
3761
|
+
type: "object";
|
|
3762
|
+
additionalProperties: {
|
|
3763
|
+
type: "string";
|
|
3754
3764
|
};
|
|
3755
3765
|
};
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
readonly type: "string";
|
|
3766
|
+
defaultTeams: {
|
|
3767
|
+
items: {
|
|
3768
|
+
type: "string";
|
|
3760
3769
|
};
|
|
3770
|
+
type: "array";
|
|
3761
3771
|
};
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
readonly type: "string";
|
|
3772
|
+
scopes: {
|
|
3773
|
+
items: {
|
|
3774
|
+
type: "string";
|
|
3766
3775
|
};
|
|
3776
|
+
type: "array";
|
|
3767
3777
|
};
|
|
3768
|
-
|
|
3769
|
-
|
|
3778
|
+
tokenExpirationTime: {
|
|
3779
|
+
type: "number";
|
|
3770
3780
|
};
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3781
|
+
authorizationRequestCustomParams: {
|
|
3782
|
+
type: "object";
|
|
3783
|
+
additionalProperties: {
|
|
3784
|
+
type: "string";
|
|
3775
3785
|
};
|
|
3776
3786
|
};
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3787
|
+
tokenRequestCustomParams: {
|
|
3788
|
+
type: "object";
|
|
3789
|
+
additionalProperties: {
|
|
3790
|
+
type: "string";
|
|
3781
3791
|
};
|
|
3782
3792
|
};
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
readonly type: "string";
|
|
3793
|
+
audience: {
|
|
3794
|
+
items: {
|
|
3795
|
+
type: "string";
|
|
3787
3796
|
};
|
|
3797
|
+
type: "array";
|
|
3788
3798
|
};
|
|
3789
3799
|
};
|
|
3790
|
-
|
|
3791
|
-
|
|
3792
|
-
|
|
3793
|
-
}
|
|
3794
|
-
|
|
3795
|
-
}];
|
|
3796
|
-
|
|
3797
|
-
}
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
readonly const: AuthProviderType.SAML2;
|
|
3800
|
+
additionalProperties: false;
|
|
3801
|
+
oneOf: ({
|
|
3802
|
+
required: "configurationUrl"[];
|
|
3803
|
+
} | {
|
|
3804
|
+
required: "configuration"[];
|
|
3805
|
+
})[];
|
|
3806
|
+
required: ("type" | "clientId")[];
|
|
3807
|
+
} | {
|
|
3808
|
+
type: "object";
|
|
3809
|
+
properties: {
|
|
3810
|
+
title: {
|
|
3811
|
+
type: "string";
|
|
3803
3812
|
};
|
|
3804
|
-
|
|
3805
|
-
|
|
3813
|
+
type: {
|
|
3814
|
+
type: "string";
|
|
3815
|
+
const: AuthProviderType.SAML2;
|
|
3806
3816
|
};
|
|
3807
|
-
|
|
3808
|
-
|
|
3817
|
+
issuerId: {
|
|
3818
|
+
type: "string";
|
|
3809
3819
|
};
|
|
3810
|
-
|
|
3811
|
-
|
|
3820
|
+
ssoUrl: {
|
|
3821
|
+
type: "string";
|
|
3812
3822
|
};
|
|
3813
|
-
|
|
3814
|
-
|
|
3823
|
+
x509PublicCert: {
|
|
3824
|
+
type: "string";
|
|
3815
3825
|
};
|
|
3816
|
-
|
|
3817
|
-
|
|
3826
|
+
defaultTeams: {
|
|
3827
|
+
items: {
|
|
3828
|
+
type: "string";
|
|
3829
|
+
};
|
|
3830
|
+
type: "array";
|
|
3818
3831
|
};
|
|
3819
|
-
|
|
3820
|
-
|
|
3821
|
-
readonly default: "https://redocly.com/sso/teams";
|
|
3832
|
+
entityId: {
|
|
3833
|
+
type: "string";
|
|
3822
3834
|
};
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
readonly additionalProperties: {
|
|
3826
|
-
readonly type: "string";
|
|
3827
|
-
};
|
|
3835
|
+
teamsAttributeName: {
|
|
3836
|
+
type: "string";
|
|
3828
3837
|
};
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3838
|
+
teamsAttributeMap: {
|
|
3839
|
+
type: "object";
|
|
3840
|
+
additionalProperties: {
|
|
3841
|
+
type: "string";
|
|
3833
3842
|
};
|
|
3834
3843
|
};
|
|
3835
3844
|
};
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
}
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
readonly const: AuthProviderType.BASIC;
|
|
3845
|
+
additionalProperties: false;
|
|
3846
|
+
required: ("type" | "issuerId" | "ssoUrl" | "x509PublicCert")[];
|
|
3847
|
+
} | {
|
|
3848
|
+
type: "object";
|
|
3849
|
+
properties: {
|
|
3850
|
+
title: {
|
|
3851
|
+
type: "string";
|
|
3844
3852
|
};
|
|
3845
|
-
|
|
3846
|
-
|
|
3853
|
+
type: {
|
|
3854
|
+
type: "string";
|
|
3855
|
+
const: AuthProviderType.BASIC;
|
|
3847
3856
|
};
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
readonly type: "string";
|
|
3857
|
+
credentials: {
|
|
3858
|
+
items: {
|
|
3859
|
+
type: "object";
|
|
3860
|
+
properties: {
|
|
3861
|
+
username: {
|
|
3862
|
+
type: "string";
|
|
3855
3863
|
};
|
|
3856
|
-
|
|
3857
|
-
|
|
3864
|
+
password: {
|
|
3865
|
+
type: "string";
|
|
3858
3866
|
};
|
|
3859
|
-
|
|
3860
|
-
|
|
3867
|
+
passwordHash: {
|
|
3868
|
+
type: "string";
|
|
3861
3869
|
};
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
readonly type: "string";
|
|
3870
|
+
teams: {
|
|
3871
|
+
items: {
|
|
3872
|
+
type: "string";
|
|
3866
3873
|
};
|
|
3874
|
+
type: "array";
|
|
3867
3875
|
};
|
|
3868
3876
|
};
|
|
3869
|
-
|
|
3870
|
-
|
|
3877
|
+
additionalProperties: false;
|
|
3878
|
+
required: "username"[];
|
|
3871
3879
|
};
|
|
3880
|
+
type: "array";
|
|
3872
3881
|
};
|
|
3873
3882
|
};
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
}];
|
|
3877
|
-
|
|
3878
|
-
|
|
3883
|
+
additionalProperties: false;
|
|
3884
|
+
required: ("type" | "credentials")[];
|
|
3885
|
+
})[];
|
|
3886
|
+
discriminator: {
|
|
3887
|
+
propertyName: "type";
|
|
3879
3888
|
};
|
|
3880
3889
|
};
|
|
3881
3890
|
};
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
readonly enum: readonly ["REDOCLY", "CORPORATE", "GUEST"];
|
|
3891
|
+
sso: {
|
|
3892
|
+
oneOf: ({
|
|
3893
|
+
items: {
|
|
3894
|
+
type: "string";
|
|
3895
|
+
enum: ("REDOCLY" | "CORPORATE" | "GUEST")[];
|
|
3888
3896
|
};
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3897
|
+
type: "array";
|
|
3898
|
+
uniqueItems: true;
|
|
3899
|
+
} | {
|
|
3900
|
+
type: "string";
|
|
3901
|
+
enum: ("REDOCLY" | "CORPORATE" | "GUEST")[];
|
|
3902
|
+
})[];
|
|
3894
3903
|
};
|
|
3895
|
-
|
|
3896
|
-
|
|
3904
|
+
residency: {
|
|
3905
|
+
type: "string";
|
|
3897
3906
|
};
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
readonly type: {
|
|
3911
|
-
readonly type: "string";
|
|
3912
|
-
readonly const: "APIGEE_X";
|
|
3907
|
+
developerOnboarding: {
|
|
3908
|
+
type: "object";
|
|
3909
|
+
properties: {
|
|
3910
|
+
adapters: {
|
|
3911
|
+
items: {
|
|
3912
|
+
type: "object";
|
|
3913
|
+
oneOf: ({
|
|
3914
|
+
type: "object";
|
|
3915
|
+
properties: {
|
|
3916
|
+
type: {
|
|
3917
|
+
type: "string";
|
|
3918
|
+
const: "GRAVITEE";
|
|
3913
3919
|
};
|
|
3914
|
-
|
|
3915
|
-
|
|
3920
|
+
apiBaseUrl: {
|
|
3921
|
+
type: "string";
|
|
3916
3922
|
};
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3923
|
+
auth: {
|
|
3924
|
+
type: "object";
|
|
3925
|
+
properties: {
|
|
3926
|
+
static: {
|
|
3927
|
+
type: "string";
|
|
3928
|
+
};
|
|
3929
|
+
};
|
|
3920
3930
|
};
|
|
3921
|
-
|
|
3922
|
-
|
|
3931
|
+
env: {
|
|
3932
|
+
type: "string";
|
|
3923
3933
|
};
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
readonly items: {
|
|
3927
|
-
readonly type: "string";
|
|
3928
|
-
};
|
|
3934
|
+
stage: {
|
|
3935
|
+
type: "string";
|
|
3929
3936
|
};
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
readonly default: false;
|
|
3937
|
+
allowApiProductsOutsideCatalog: {
|
|
3938
|
+
type: "boolean";
|
|
3933
3939
|
};
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3938
|
-
|
|
3939
|
-
|
|
3940
|
-
|
|
3941
|
-
|
|
3940
|
+
};
|
|
3941
|
+
additionalProperties: false;
|
|
3942
|
+
required: ("type" | "apiBaseUrl")[];
|
|
3943
|
+
} | {
|
|
3944
|
+
type: "object";
|
|
3945
|
+
properties: {
|
|
3946
|
+
type: {
|
|
3947
|
+
type: "string";
|
|
3948
|
+
const: "APIGEE_X";
|
|
3949
|
+
};
|
|
3950
|
+
organizationName: {
|
|
3951
|
+
type: "string";
|
|
3952
|
+
};
|
|
3953
|
+
auth: {
|
|
3954
|
+
type: "object";
|
|
3955
|
+
oneOf: ({
|
|
3956
|
+
type: "object";
|
|
3957
|
+
properties: {
|
|
3958
|
+
type: {
|
|
3959
|
+
type: "string";
|
|
3960
|
+
const: ApigeeDevOnboardingIntegrationAuthType.OAUTH2;
|
|
3942
3961
|
};
|
|
3943
|
-
|
|
3944
|
-
|
|
3962
|
+
clientId: {
|
|
3963
|
+
type: "string";
|
|
3945
3964
|
};
|
|
3946
|
-
|
|
3947
|
-
|
|
3965
|
+
tokenEndpoint: {
|
|
3966
|
+
type: "string";
|
|
3948
3967
|
};
|
|
3949
|
-
|
|
3950
|
-
|
|
3968
|
+
clientSecret: {
|
|
3969
|
+
type: "string";
|
|
3951
3970
|
};
|
|
3952
3971
|
};
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
}
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3960
|
-
|
|
3972
|
+
additionalProperties: false;
|
|
3973
|
+
required: ("type" | "clientId" | "tokenEndpoint" | "clientSecret")[];
|
|
3974
|
+
} | {
|
|
3975
|
+
type: "object";
|
|
3976
|
+
properties: {
|
|
3977
|
+
type: {
|
|
3978
|
+
type: "string";
|
|
3979
|
+
const: ApigeeDevOnboardingIntegrationAuthType.SERVICE_ACCOUNT;
|
|
3961
3980
|
};
|
|
3962
|
-
|
|
3963
|
-
|
|
3981
|
+
serviceAccountEmail: {
|
|
3982
|
+
type: "string";
|
|
3964
3983
|
};
|
|
3965
|
-
|
|
3966
|
-
|
|
3984
|
+
serviceAccountPrivateKey: {
|
|
3985
|
+
type: "string";
|
|
3967
3986
|
};
|
|
3968
3987
|
};
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
}];
|
|
3972
|
-
|
|
3973
|
-
|
|
3988
|
+
additionalProperties: false;
|
|
3989
|
+
required: ("type" | "serviceAccountEmail" | "serviceAccountPrivateKey")[];
|
|
3990
|
+
})[];
|
|
3991
|
+
discriminator: {
|
|
3992
|
+
propertyName: "type";
|
|
3974
3993
|
};
|
|
3975
3994
|
};
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
readonly required: readonly ["type", "organizationName", "auth"];
|
|
3979
|
-
}, {
|
|
3980
|
-
readonly properties: {
|
|
3981
|
-
readonly type: {
|
|
3982
|
-
readonly type: "string";
|
|
3983
|
-
readonly const: "APIGEE_EDGE";
|
|
3995
|
+
apiUrl: {
|
|
3996
|
+
type: "string";
|
|
3984
3997
|
};
|
|
3985
|
-
|
|
3986
|
-
|
|
3998
|
+
stage: {
|
|
3999
|
+
type: "string";
|
|
3987
4000
|
};
|
|
3988
|
-
|
|
3989
|
-
|
|
3990
|
-
|
|
4001
|
+
ignoreApiProducts: {
|
|
4002
|
+
items: {
|
|
4003
|
+
type: "string";
|
|
4004
|
+
};
|
|
4005
|
+
type: "array";
|
|
3991
4006
|
};
|
|
3992
|
-
|
|
3993
|
-
|
|
4007
|
+
allowApiProductsOutsideCatalog: {
|
|
4008
|
+
type: "boolean";
|
|
3994
4009
|
};
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
|
|
3998
|
-
|
|
3999
|
-
|
|
4010
|
+
};
|
|
4011
|
+
additionalProperties: false;
|
|
4012
|
+
required: ("type" | "organizationName" | "auth")[];
|
|
4013
|
+
} | {
|
|
4014
|
+
type: "object";
|
|
4015
|
+
properties: {
|
|
4016
|
+
type: {
|
|
4017
|
+
type: "string";
|
|
4018
|
+
const: "APIGEE_EDGE";
|
|
4000
4019
|
};
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
readonly default: false;
|
|
4020
|
+
organizationName: {
|
|
4021
|
+
type: "string";
|
|
4004
4022
|
};
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
|
|
4012
|
-
|
|
4023
|
+
auth: {
|
|
4024
|
+
type: "object";
|
|
4025
|
+
oneOf: ({
|
|
4026
|
+
type: "object";
|
|
4027
|
+
properties: {
|
|
4028
|
+
type: {
|
|
4029
|
+
type: "string";
|
|
4030
|
+
const: ApigeeDevOnboardingIntegrationAuthType.OAUTH2;
|
|
4013
4031
|
};
|
|
4014
|
-
|
|
4015
|
-
|
|
4032
|
+
clientId: {
|
|
4033
|
+
type: "string";
|
|
4016
4034
|
};
|
|
4017
|
-
|
|
4018
|
-
|
|
4035
|
+
tokenEndpoint: {
|
|
4036
|
+
type: "string";
|
|
4019
4037
|
};
|
|
4020
|
-
|
|
4021
|
-
|
|
4038
|
+
clientSecret: {
|
|
4039
|
+
type: "string";
|
|
4022
4040
|
};
|
|
4023
4041
|
};
|
|
4024
|
-
|
|
4025
|
-
|
|
4026
|
-
}
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4042
|
+
additionalProperties: false;
|
|
4043
|
+
required: ("type" | "clientId" | "tokenEndpoint" | "clientSecret")[];
|
|
4044
|
+
} | {
|
|
4045
|
+
type: "object";
|
|
4046
|
+
properties: {
|
|
4047
|
+
type: {
|
|
4048
|
+
type: "string";
|
|
4049
|
+
const: ApigeeDevOnboardingIntegrationAuthType.SERVICE_ACCOUNT;
|
|
4032
4050
|
};
|
|
4033
|
-
|
|
4034
|
-
|
|
4051
|
+
serviceAccountEmail: {
|
|
4052
|
+
type: "string";
|
|
4035
4053
|
};
|
|
4036
|
-
|
|
4037
|
-
|
|
4054
|
+
serviceAccountPrivateKey: {
|
|
4055
|
+
type: "string";
|
|
4038
4056
|
};
|
|
4039
4057
|
};
|
|
4040
|
-
|
|
4041
|
-
|
|
4042
|
-
}];
|
|
4043
|
-
|
|
4044
|
-
|
|
4058
|
+
additionalProperties: false;
|
|
4059
|
+
required: ("type" | "serviceAccountEmail" | "serviceAccountPrivateKey")[];
|
|
4060
|
+
})[];
|
|
4061
|
+
discriminator: {
|
|
4062
|
+
propertyName: "type";
|
|
4045
4063
|
};
|
|
4046
4064
|
};
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
readonly additionalProperties: false;
|
|
4050
|
-
readonly required: readonly ["type", "organizationName", "auth"];
|
|
4051
|
-
}, {
|
|
4052
|
-
readonly type: "object";
|
|
4053
|
-
readonly properties: {
|
|
4054
|
-
readonly type: {
|
|
4055
|
-
readonly type: "string";
|
|
4056
|
-
readonly const: "GRAVITEE";
|
|
4057
|
-
};
|
|
4058
|
-
readonly apiBaseUrl: {
|
|
4059
|
-
readonly type: "string";
|
|
4065
|
+
apiUrl: {
|
|
4066
|
+
type: "string";
|
|
4060
4067
|
};
|
|
4061
|
-
|
|
4062
|
-
|
|
4068
|
+
stage: {
|
|
4069
|
+
type: "string";
|
|
4063
4070
|
};
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
};
|
|
4068
|
-
readonly stage: {
|
|
4069
|
-
readonly type: "string";
|
|
4070
|
-
readonly default: "non-production";
|
|
4071
|
-
};
|
|
4072
|
-
readonly auth: {
|
|
4073
|
-
readonly type: "object";
|
|
4074
|
-
readonly properties: {
|
|
4075
|
-
readonly static: {
|
|
4076
|
-
readonly type: "string";
|
|
4077
|
-
};
|
|
4071
|
+
ignoreApiProducts: {
|
|
4072
|
+
items: {
|
|
4073
|
+
type: "string";
|
|
4078
4074
|
};
|
|
4075
|
+
type: "array";
|
|
4076
|
+
};
|
|
4077
|
+
allowApiProductsOutsideCatalog: {
|
|
4078
|
+
type: "boolean";
|
|
4079
4079
|
};
|
|
4080
4080
|
};
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
}];
|
|
4084
|
-
|
|
4085
|
-
|
|
4081
|
+
additionalProperties: false;
|
|
4082
|
+
required: ("type" | "organizationName" | "auth")[];
|
|
4083
|
+
})[];
|
|
4084
|
+
discriminator: {
|
|
4085
|
+
propertyName: "type";
|
|
4086
4086
|
};
|
|
4087
4087
|
};
|
|
4088
|
+
type: "array";
|
|
4088
4089
|
};
|
|
4089
4090
|
};
|
|
4091
|
+
additionalProperties: false;
|
|
4092
|
+
required: "adapters"[];
|
|
4090
4093
|
};
|
|
4091
|
-
|
|
4092
|
-
|
|
4094
|
+
removeAttribution: {
|
|
4095
|
+
type: "boolean";
|
|
4093
4096
|
};
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4097
|
+
i18n: {
|
|
4098
|
+
type: "object";
|
|
4099
|
+
properties: {
|
|
4100
|
+
defaultLocale: {
|
|
4101
|
+
type: "string";
|
|
4099
4102
|
};
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
|
|
4105
|
-
|
|
4106
|
-
readonly type: "string";
|
|
4103
|
+
locales: {
|
|
4104
|
+
items: {
|
|
4105
|
+
type: "object";
|
|
4106
|
+
properties: {
|
|
4107
|
+
name: {
|
|
4108
|
+
type: "string";
|
|
4107
4109
|
};
|
|
4108
|
-
|
|
4109
|
-
|
|
4110
|
+
code: {
|
|
4111
|
+
type: "string";
|
|
4110
4112
|
};
|
|
4111
4113
|
};
|
|
4112
|
-
|
|
4114
|
+
required: "code"[];
|
|
4113
4115
|
};
|
|
4116
|
+
type: "array";
|
|
4114
4117
|
};
|
|
4115
4118
|
};
|
|
4116
|
-
|
|
4117
|
-
|
|
4119
|
+
additionalProperties: false;
|
|
4120
|
+
required: "defaultLocale"[];
|
|
4118
4121
|
};
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
};
|
|
4123
|
-
readonly ignore: {
|
|
4124
|
-
readonly type: "array";
|
|
4125
|
-
readonly items: {
|
|
4126
|
-
readonly type: "string";
|
|
4122
|
+
ignore: {
|
|
4123
|
+
items: {
|
|
4124
|
+
type: "string";
|
|
4127
4125
|
};
|
|
4126
|
+
type: "array";
|
|
4128
4127
|
};
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4128
|
+
theme: {
|
|
4129
|
+
type: "object";
|
|
4130
|
+
properties: {
|
|
4131
|
+
links: {
|
|
4132
|
+
items: {
|
|
4133
|
+
type: "object";
|
|
4134
|
+
properties: {
|
|
4135
|
+
href: {
|
|
4136
|
+
type: "string";
|
|
4137
|
+
};
|
|
4138
|
+
title: {
|
|
4139
|
+
type: "string";
|
|
4140
|
+
};
|
|
4141
|
+
type: {
|
|
4142
|
+
type: "string";
|
|
4143
|
+
};
|
|
4144
|
+
crossorigin: {
|
|
4145
|
+
type: "string";
|
|
4146
|
+
};
|
|
4147
|
+
fetchpriority: {
|
|
4148
|
+
type: "string";
|
|
4149
|
+
};
|
|
4150
|
+
integrity: {
|
|
4151
|
+
type: "string";
|
|
4152
|
+
};
|
|
4153
|
+
referrerpolicy: {
|
|
4154
|
+
type: "string";
|
|
4155
|
+
};
|
|
4156
|
+
as: {
|
|
4157
|
+
type: "string";
|
|
4158
|
+
};
|
|
4159
|
+
hreflang: {
|
|
4160
|
+
type: "string";
|
|
4161
|
+
};
|
|
4162
|
+
imagesizes: {
|
|
4163
|
+
type: "string";
|
|
4164
|
+
};
|
|
4165
|
+
imagesrcset: {
|
|
4166
|
+
type: "string";
|
|
4167
|
+
};
|
|
4168
|
+
media: {
|
|
4169
|
+
type: "string";
|
|
4170
|
+
};
|
|
4171
|
+
prefetch: {
|
|
4172
|
+
type: "string";
|
|
4173
|
+
};
|
|
4174
|
+
rel: {
|
|
4175
|
+
type: "string";
|
|
4176
|
+
};
|
|
4177
|
+
sizes: {
|
|
4178
|
+
type: "string";
|
|
4179
|
+
};
|
|
4156
4180
|
};
|
|
4181
|
+
additionalProperties: true;
|
|
4182
|
+
required: "href"[];
|
|
4157
4183
|
};
|
|
4158
|
-
|
|
4184
|
+
type: "array";
|
|
4159
4185
|
};
|
|
4160
|
-
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
|
|
4165
|
-
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4179
|
-
readonly type: "string";
|
|
4180
|
-
};
|
|
4181
|
-
readonly disconnect: {
|
|
4182
|
-
readonly type: "boolean";
|
|
4183
|
-
readonly default: false;
|
|
4184
|
-
};
|
|
4185
|
-
readonly group: {
|
|
4186
|
-
readonly type: "string";
|
|
4187
|
-
};
|
|
4188
|
-
readonly label: {
|
|
4189
|
-
readonly type: "string";
|
|
4190
|
-
};
|
|
4191
|
-
readonly href: {
|
|
4192
|
-
readonly type: "string";
|
|
4193
|
-
};
|
|
4194
|
-
readonly external: {
|
|
4195
|
-
readonly type: "boolean";
|
|
4196
|
-
};
|
|
4197
|
-
readonly labelTranslationKey: {
|
|
4198
|
-
readonly type: "string";
|
|
4199
|
-
};
|
|
4200
|
-
readonly groupTranslationKey: {
|
|
4201
|
-
readonly type: "string";
|
|
4202
|
-
};
|
|
4203
|
-
readonly icon: {
|
|
4204
|
-
readonly oneOf: readonly [{
|
|
4205
|
-
readonly type: "string";
|
|
4206
|
-
}, {
|
|
4207
|
-
readonly type: "object";
|
|
4208
|
-
readonly properties: {
|
|
4209
|
-
readonly srcSet: {
|
|
4210
|
-
readonly type: "string";
|
|
4211
|
-
};
|
|
4212
|
-
};
|
|
4213
|
-
readonly required: readonly ["srcSet"];
|
|
4214
|
-
}];
|
|
4215
|
-
};
|
|
4216
|
-
readonly separator: {
|
|
4217
|
-
readonly type: "string";
|
|
4218
|
-
};
|
|
4219
|
-
readonly separatorLine: {
|
|
4220
|
-
readonly type: "boolean";
|
|
4221
|
-
};
|
|
4222
|
-
readonly linePosition: {
|
|
4223
|
-
readonly type: "string";
|
|
4224
|
-
readonly enum: readonly ["top", "bottom"];
|
|
4225
|
-
readonly default: "top";
|
|
4226
|
-
};
|
|
4227
|
-
readonly version: {
|
|
4228
|
-
readonly type: "string";
|
|
4229
|
-
};
|
|
4230
|
-
readonly menuStyle: {
|
|
4231
|
-
readonly type: "string";
|
|
4232
|
-
readonly enum: readonly ["drilldown"];
|
|
4233
|
-
};
|
|
4234
|
-
readonly expanded: {
|
|
4235
|
-
readonly type: "string";
|
|
4236
|
-
readonly const: "always";
|
|
4237
|
-
};
|
|
4238
|
-
readonly selectFirstItemOnExpand: {
|
|
4239
|
-
readonly type: "boolean";
|
|
4240
|
-
};
|
|
4241
|
-
readonly flatten: {
|
|
4242
|
-
readonly type: "boolean";
|
|
4243
|
-
};
|
|
4244
|
-
readonly linkedSidebars: {
|
|
4245
|
-
readonly type: "array";
|
|
4246
|
-
readonly items: {
|
|
4247
|
-
readonly type: "string";
|
|
4248
|
-
};
|
|
4186
|
+
navbar: {
|
|
4187
|
+
type: "object";
|
|
4188
|
+
properties: {
|
|
4189
|
+
items: {
|
|
4190
|
+
items: {
|
|
4191
|
+
type: "object";
|
|
4192
|
+
properties: {
|
|
4193
|
+
href: {
|
|
4194
|
+
type: "string";
|
|
4195
|
+
};
|
|
4196
|
+
page: {
|
|
4197
|
+
type: "string";
|
|
4198
|
+
};
|
|
4199
|
+
items: {
|
|
4200
|
+
items: {
|
|
4201
|
+
type: "object";
|
|
4202
|
+
properties: {
|
|
4203
|
+
href: {
|
|
4204
|
+
type: "string";
|
|
4249
4205
|
};
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
readonly items: {
|
|
4253
|
-
readonly type: "object";
|
|
4254
|
-
readonly additionalProperties: true;
|
|
4255
|
-
};
|
|
4206
|
+
page: {
|
|
4207
|
+
type: "string";
|
|
4256
4208
|
};
|
|
4209
|
+
items: any;
|
|
4210
|
+
icon: any;
|
|
4211
|
+
separatorLine: any;
|
|
4212
|
+
linePosition: any;
|
|
4213
|
+
directory: any;
|
|
4214
|
+
disconnect: any;
|
|
4215
|
+
group: any;
|
|
4216
|
+
label: any;
|
|
4217
|
+
external: any;
|
|
4218
|
+
labelTranslationKey: any;
|
|
4219
|
+
groupTranslationKey: any;
|
|
4220
|
+
separator: any;
|
|
4221
|
+
version: any;
|
|
4222
|
+
menuStyle: any;
|
|
4223
|
+
expanded: any;
|
|
4224
|
+
selectFirstItemOnExpand: any;
|
|
4225
|
+
flatten: any;
|
|
4226
|
+
linkedSidebars: any;
|
|
4257
4227
|
};
|
|
4258
4228
|
};
|
|
4229
|
+
type: "array";
|
|
4230
|
+
};
|
|
4231
|
+
icon: {
|
|
4232
|
+
oneOf: ({
|
|
4233
|
+
type: "string";
|
|
4234
|
+
} | {
|
|
4235
|
+
type: "object";
|
|
4236
|
+
properties: {
|
|
4237
|
+
srcSet: any;
|
|
4238
|
+
};
|
|
4239
|
+
required: "srcSet"[];
|
|
4240
|
+
})[];
|
|
4259
4241
|
};
|
|
4260
|
-
|
|
4261
|
-
|
|
4242
|
+
separatorLine: {
|
|
4243
|
+
type: "boolean";
|
|
4262
4244
|
};
|
|
4263
|
-
|
|
4264
|
-
|
|
4245
|
+
linePosition: {
|
|
4246
|
+
type: "string";
|
|
4247
|
+
enum: ("top" | "bottom")[];
|
|
4265
4248
|
};
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
readonly default: false;
|
|
4249
|
+
directory: {
|
|
4250
|
+
type: "string";
|
|
4269
4251
|
};
|
|
4270
|
-
|
|
4271
|
-
|
|
4252
|
+
disconnect: {
|
|
4253
|
+
type: "boolean";
|
|
4272
4254
|
};
|
|
4273
|
-
|
|
4274
|
-
|
|
4255
|
+
group: {
|
|
4256
|
+
type: "string";
|
|
4275
4257
|
};
|
|
4276
|
-
|
|
4277
|
-
|
|
4258
|
+
label: {
|
|
4259
|
+
type: "string";
|
|
4278
4260
|
};
|
|
4279
|
-
|
|
4280
|
-
|
|
4261
|
+
external: {
|
|
4262
|
+
type: "boolean";
|
|
4281
4263
|
};
|
|
4282
|
-
|
|
4283
|
-
|
|
4264
|
+
labelTranslationKey: {
|
|
4265
|
+
type: "string";
|
|
4284
4266
|
};
|
|
4285
|
-
|
|
4286
|
-
|
|
4267
|
+
groupTranslationKey: {
|
|
4268
|
+
type: "string";
|
|
4287
4269
|
};
|
|
4288
|
-
|
|
4289
|
-
|
|
4290
|
-
readonly type: "string";
|
|
4291
|
-
}, {
|
|
4292
|
-
readonly type: "object";
|
|
4293
|
-
readonly properties: {
|
|
4294
|
-
readonly srcSet: {
|
|
4295
|
-
readonly type: "string";
|
|
4296
|
-
};
|
|
4297
|
-
};
|
|
4298
|
-
readonly required: readonly ["srcSet"];
|
|
4299
|
-
}];
|
|
4300
|
-
};
|
|
4301
|
-
readonly separator: {
|
|
4302
|
-
readonly type: "string";
|
|
4303
|
-
};
|
|
4304
|
-
readonly separatorLine: {
|
|
4305
|
-
readonly type: "boolean";
|
|
4306
|
-
};
|
|
4307
|
-
readonly linePosition: {
|
|
4308
|
-
readonly type: "string";
|
|
4309
|
-
readonly enum: readonly ["top", "bottom"];
|
|
4310
|
-
readonly default: "top";
|
|
4270
|
+
separator: {
|
|
4271
|
+
type: "string";
|
|
4311
4272
|
};
|
|
4312
|
-
|
|
4313
|
-
|
|
4273
|
+
version: {
|
|
4274
|
+
type: "string";
|
|
4314
4275
|
};
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4276
|
+
menuStyle: {
|
|
4277
|
+
type: "string";
|
|
4278
|
+
enum: "drilldown"[];
|
|
4318
4279
|
};
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4280
|
+
expanded: {
|
|
4281
|
+
type: "string";
|
|
4282
|
+
const: "always";
|
|
4322
4283
|
};
|
|
4323
|
-
|
|
4324
|
-
|
|
4284
|
+
selectFirstItemOnExpand: {
|
|
4285
|
+
type: "boolean";
|
|
4325
4286
|
};
|
|
4326
|
-
|
|
4327
|
-
|
|
4287
|
+
flatten: {
|
|
4288
|
+
type: "boolean";
|
|
4328
4289
|
};
|
|
4329
|
-
|
|
4330
|
-
|
|
4331
|
-
|
|
4332
|
-
readonly type: "string";
|
|
4290
|
+
linkedSidebars: {
|
|
4291
|
+
items: {
|
|
4292
|
+
type: "string";
|
|
4333
4293
|
};
|
|
4294
|
+
type: "array";
|
|
4334
4295
|
};
|
|
4335
4296
|
};
|
|
4336
|
-
readonly type: "object";
|
|
4337
4297
|
};
|
|
4298
|
+
type: "array";
|
|
4299
|
+
};
|
|
4300
|
+
hide: {
|
|
4301
|
+
type: "boolean";
|
|
4338
4302
|
};
|
|
4339
4303
|
};
|
|
4340
|
-
|
|
4304
|
+
additionalProperties: false;
|
|
4341
4305
|
};
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4345
|
-
|
|
4346
|
-
|
|
4347
|
-
|
|
4348
|
-
|
|
4306
|
+
imports: {
|
|
4307
|
+
items: {
|
|
4308
|
+
type: "string";
|
|
4309
|
+
};
|
|
4310
|
+
type: "array";
|
|
4311
|
+
};
|
|
4312
|
+
logo: {
|
|
4313
|
+
type: "object";
|
|
4314
|
+
properties: {
|
|
4315
|
+
image: {
|
|
4316
|
+
type: "string";
|
|
4317
|
+
};
|
|
4318
|
+
srcSet: {
|
|
4319
|
+
type: "string";
|
|
4320
|
+
};
|
|
4321
|
+
altText: {
|
|
4322
|
+
type: "string";
|
|
4323
|
+
};
|
|
4324
|
+
link: {
|
|
4325
|
+
type: "string";
|
|
4326
|
+
};
|
|
4327
|
+
favicon: {
|
|
4328
|
+
type: "string";
|
|
4329
|
+
};
|
|
4330
|
+
};
|
|
4331
|
+
additionalProperties: false;
|
|
4332
|
+
};
|
|
4333
|
+
products: {
|
|
4334
|
+
type: "object";
|
|
4335
|
+
additionalProperties: {
|
|
4336
|
+
type: "object";
|
|
4337
|
+
properties: {
|
|
4338
|
+
name: {
|
|
4339
|
+
type: "string";
|
|
4349
4340
|
};
|
|
4350
|
-
|
|
4351
|
-
|
|
4341
|
+
folder: {
|
|
4342
|
+
type: "string";
|
|
4352
4343
|
};
|
|
4353
|
-
|
|
4354
|
-
|
|
4344
|
+
icon: {
|
|
4345
|
+
type: "string";
|
|
4355
4346
|
};
|
|
4356
4347
|
};
|
|
4357
|
-
|
|
4358
|
-
|
|
4348
|
+
additionalProperties: false;
|
|
4349
|
+
required: ("name" | "folder")[];
|
|
4359
4350
|
};
|
|
4360
4351
|
};
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
|
|
4364
|
-
|
|
4365
|
-
|
|
4366
|
-
|
|
4367
|
-
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
|
-
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
readonly type: "string";
|
|
4381
|
-
};
|
|
4382
|
-
readonly disconnect: {
|
|
4383
|
-
readonly type: "boolean";
|
|
4384
|
-
readonly default: false;
|
|
4385
|
-
};
|
|
4386
|
-
readonly group: {
|
|
4387
|
-
readonly type: "string";
|
|
4388
|
-
};
|
|
4389
|
-
readonly label: {
|
|
4390
|
-
readonly type: "string";
|
|
4391
|
-
};
|
|
4392
|
-
readonly href: {
|
|
4393
|
-
readonly type: "string";
|
|
4394
|
-
};
|
|
4395
|
-
readonly external: {
|
|
4396
|
-
readonly type: "boolean";
|
|
4397
|
-
};
|
|
4398
|
-
readonly labelTranslationKey: {
|
|
4399
|
-
readonly type: "string";
|
|
4400
|
-
};
|
|
4401
|
-
readonly groupTranslationKey: {
|
|
4402
|
-
readonly type: "string";
|
|
4403
|
-
};
|
|
4404
|
-
readonly icon: {
|
|
4405
|
-
readonly oneOf: readonly [{
|
|
4406
|
-
readonly type: "string";
|
|
4407
|
-
}, {
|
|
4408
|
-
readonly type: "object";
|
|
4409
|
-
readonly properties: {
|
|
4410
|
-
readonly srcSet: {
|
|
4411
|
-
readonly type: "string";
|
|
4412
|
-
};
|
|
4413
|
-
};
|
|
4414
|
-
readonly required: readonly ["srcSet"];
|
|
4415
|
-
}];
|
|
4416
|
-
};
|
|
4417
|
-
readonly separator: {
|
|
4418
|
-
readonly type: "string";
|
|
4419
|
-
};
|
|
4420
|
-
readonly separatorLine: {
|
|
4421
|
-
readonly type: "boolean";
|
|
4422
|
-
};
|
|
4423
|
-
readonly linePosition: {
|
|
4424
|
-
readonly type: "string";
|
|
4425
|
-
readonly enum: readonly ["top", "bottom"];
|
|
4426
|
-
readonly default: "top";
|
|
4427
|
-
};
|
|
4428
|
-
readonly version: {
|
|
4429
|
-
readonly type: "string";
|
|
4430
|
-
};
|
|
4431
|
-
readonly menuStyle: {
|
|
4432
|
-
readonly type: "string";
|
|
4433
|
-
readonly enum: readonly ["drilldown"];
|
|
4434
|
-
};
|
|
4435
|
-
readonly expanded: {
|
|
4436
|
-
readonly type: "string";
|
|
4437
|
-
readonly const: "always";
|
|
4438
|
-
};
|
|
4439
|
-
readonly selectFirstItemOnExpand: {
|
|
4440
|
-
readonly type: "boolean";
|
|
4441
|
-
};
|
|
4442
|
-
readonly flatten: {
|
|
4443
|
-
readonly type: "boolean";
|
|
4352
|
+
footer: {
|
|
4353
|
+
type: "object";
|
|
4354
|
+
properties: {
|
|
4355
|
+
items: {
|
|
4356
|
+
items: {
|
|
4357
|
+
type: "object";
|
|
4358
|
+
properties: {
|
|
4359
|
+
href: {
|
|
4360
|
+
type: "string";
|
|
4361
|
+
};
|
|
4362
|
+
page: {
|
|
4363
|
+
type: "string";
|
|
4364
|
+
};
|
|
4365
|
+
items: {
|
|
4366
|
+
items: {
|
|
4367
|
+
type: "object";
|
|
4368
|
+
properties: {
|
|
4369
|
+
href: {
|
|
4370
|
+
type: "string";
|
|
4444
4371
|
};
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
readonly items: {
|
|
4448
|
-
readonly type: "string";
|
|
4449
|
-
};
|
|
4450
|
-
};
|
|
4451
|
-
readonly items: {
|
|
4452
|
-
readonly type: "array";
|
|
4453
|
-
readonly items: {
|
|
4454
|
-
readonly type: "object";
|
|
4455
|
-
readonly additionalProperties: true;
|
|
4456
|
-
};
|
|
4372
|
+
page: {
|
|
4373
|
+
type: "string";
|
|
4457
4374
|
};
|
|
4375
|
+
items: any;
|
|
4376
|
+
icon: any;
|
|
4377
|
+
separatorLine: any;
|
|
4378
|
+
linePosition: any;
|
|
4379
|
+
directory: any;
|
|
4380
|
+
disconnect: any;
|
|
4381
|
+
group: any;
|
|
4382
|
+
label: any;
|
|
4383
|
+
external: any;
|
|
4384
|
+
labelTranslationKey: any;
|
|
4385
|
+
groupTranslationKey: any;
|
|
4386
|
+
separator: any;
|
|
4387
|
+
version: any;
|
|
4388
|
+
menuStyle: any;
|
|
4389
|
+
expanded: any;
|
|
4390
|
+
selectFirstItemOnExpand: any;
|
|
4391
|
+
flatten: any;
|
|
4392
|
+
linkedSidebars: any;
|
|
4458
4393
|
};
|
|
4459
4394
|
};
|
|
4395
|
+
type: "array";
|
|
4396
|
+
};
|
|
4397
|
+
icon: {
|
|
4398
|
+
oneOf: ({
|
|
4399
|
+
type: "string";
|
|
4400
|
+
} | {
|
|
4401
|
+
type: "object";
|
|
4402
|
+
properties: {
|
|
4403
|
+
srcSet: any;
|
|
4404
|
+
};
|
|
4405
|
+
required: "srcSet"[];
|
|
4406
|
+
})[];
|
|
4460
4407
|
};
|
|
4461
|
-
|
|
4462
|
-
|
|
4408
|
+
separatorLine: {
|
|
4409
|
+
type: "boolean";
|
|
4463
4410
|
};
|
|
4464
|
-
|
|
4465
|
-
|
|
4411
|
+
linePosition: {
|
|
4412
|
+
type: "string";
|
|
4413
|
+
enum: ("top" | "bottom")[];
|
|
4466
4414
|
};
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
|
-
readonly default: false;
|
|
4415
|
+
directory: {
|
|
4416
|
+
type: "string";
|
|
4470
4417
|
};
|
|
4471
|
-
|
|
4472
|
-
|
|
4418
|
+
disconnect: {
|
|
4419
|
+
type: "boolean";
|
|
4473
4420
|
};
|
|
4474
|
-
|
|
4475
|
-
|
|
4421
|
+
group: {
|
|
4422
|
+
type: "string";
|
|
4476
4423
|
};
|
|
4477
|
-
|
|
4478
|
-
|
|
4424
|
+
label: {
|
|
4425
|
+
type: "string";
|
|
4479
4426
|
};
|
|
4480
|
-
|
|
4481
|
-
|
|
4427
|
+
external: {
|
|
4428
|
+
type: "boolean";
|
|
4482
4429
|
};
|
|
4483
|
-
|
|
4484
|
-
|
|
4430
|
+
labelTranslationKey: {
|
|
4431
|
+
type: "string";
|
|
4485
4432
|
};
|
|
4486
|
-
|
|
4487
|
-
|
|
4433
|
+
groupTranslationKey: {
|
|
4434
|
+
type: "string";
|
|
4488
4435
|
};
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
readonly type: "string";
|
|
4492
|
-
}, {
|
|
4493
|
-
readonly type: "object";
|
|
4494
|
-
readonly properties: {
|
|
4495
|
-
readonly srcSet: {
|
|
4496
|
-
readonly type: "string";
|
|
4497
|
-
};
|
|
4498
|
-
};
|
|
4499
|
-
readonly required: readonly ["srcSet"];
|
|
4500
|
-
}];
|
|
4501
|
-
};
|
|
4502
|
-
readonly separator: {
|
|
4503
|
-
readonly type: "string";
|
|
4436
|
+
separator: {
|
|
4437
|
+
type: "string";
|
|
4504
4438
|
};
|
|
4505
|
-
|
|
4506
|
-
|
|
4439
|
+
version: {
|
|
4440
|
+
type: "string";
|
|
4507
4441
|
};
|
|
4508
|
-
|
|
4509
|
-
|
|
4510
|
-
|
|
4511
|
-
readonly default: "top";
|
|
4442
|
+
menuStyle: {
|
|
4443
|
+
type: "string";
|
|
4444
|
+
enum: "drilldown"[];
|
|
4512
4445
|
};
|
|
4513
|
-
|
|
4514
|
-
|
|
4446
|
+
expanded: {
|
|
4447
|
+
type: "string";
|
|
4448
|
+
const: "always";
|
|
4515
4449
|
};
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
readonly enum: readonly ["drilldown"];
|
|
4450
|
+
selectFirstItemOnExpand: {
|
|
4451
|
+
type: "boolean";
|
|
4519
4452
|
};
|
|
4520
|
-
|
|
4521
|
-
|
|
4522
|
-
readonly const: "always";
|
|
4453
|
+
flatten: {
|
|
4454
|
+
type: "boolean";
|
|
4523
4455
|
};
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
readonly flatten: {
|
|
4528
|
-
readonly type: "boolean";
|
|
4529
|
-
};
|
|
4530
|
-
readonly linkedSidebars: {
|
|
4531
|
-
readonly type: "array";
|
|
4532
|
-
readonly items: {
|
|
4533
|
-
readonly type: "string";
|
|
4456
|
+
linkedSidebars: {
|
|
4457
|
+
items: {
|
|
4458
|
+
type: "string";
|
|
4534
4459
|
};
|
|
4460
|
+
type: "array";
|
|
4535
4461
|
};
|
|
4536
4462
|
};
|
|
4537
|
-
readonly type: "object";
|
|
4538
4463
|
};
|
|
4464
|
+
type: "array";
|
|
4539
4465
|
};
|
|
4540
|
-
|
|
4541
|
-
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
readonly properties: {
|
|
4546
|
-
readonly hide: {
|
|
4547
|
-
readonly type: "boolean";
|
|
4466
|
+
logo: {
|
|
4467
|
+
type: "object";
|
|
4468
|
+
properties: {
|
|
4469
|
+
hide: {
|
|
4470
|
+
type: "boolean";
|
|
4548
4471
|
};
|
|
4549
4472
|
};
|
|
4550
|
-
|
|
4473
|
+
additionalProperties: false;
|
|
4474
|
+
};
|
|
4475
|
+
hide: {
|
|
4476
|
+
type: "boolean";
|
|
4477
|
+
};
|
|
4478
|
+
copyrightText: {
|
|
4479
|
+
type: "string";
|
|
4551
4480
|
};
|
|
4552
4481
|
};
|
|
4553
|
-
|
|
4482
|
+
additionalProperties: false;
|
|
4554
4483
|
};
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
|
|
4559
|
-
|
|
4484
|
+
sidebar: {
|
|
4485
|
+
type: "object";
|
|
4486
|
+
properties: {
|
|
4487
|
+
hide: {
|
|
4488
|
+
type: "boolean";
|
|
4560
4489
|
};
|
|
4561
|
-
|
|
4562
|
-
|
|
4490
|
+
separatorLine: {
|
|
4491
|
+
type: "boolean";
|
|
4563
4492
|
};
|
|
4564
|
-
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
readonly default: "bottom";
|
|
4493
|
+
linePosition: {
|
|
4494
|
+
type: "string";
|
|
4495
|
+
enum: ("top" | "bottom")[];
|
|
4568
4496
|
};
|
|
4569
4497
|
};
|
|
4570
|
-
|
|
4498
|
+
additionalProperties: false;
|
|
4571
4499
|
};
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
|
|
4581
|
-
readonly type: "string";
|
|
4582
|
-
};
|
|
4583
|
-
readonly async: {
|
|
4584
|
-
readonly type: "boolean";
|
|
4585
|
-
};
|
|
4586
|
-
readonly crossorigin: {
|
|
4587
|
-
readonly type: "string";
|
|
4588
|
-
};
|
|
4589
|
-
readonly defer: {
|
|
4590
|
-
readonly type: "boolean";
|
|
4591
|
-
};
|
|
4592
|
-
readonly fetchpriority: {
|
|
4593
|
-
readonly type: "string";
|
|
4594
|
-
};
|
|
4595
|
-
readonly integrity: {
|
|
4596
|
-
readonly type: "string";
|
|
4500
|
+
scripts: {
|
|
4501
|
+
type: "object";
|
|
4502
|
+
properties: {
|
|
4503
|
+
head: {
|
|
4504
|
+
items: {
|
|
4505
|
+
type: "object";
|
|
4506
|
+
properties: {
|
|
4507
|
+
src: {
|
|
4508
|
+
type: "string";
|
|
4597
4509
|
};
|
|
4598
|
-
|
|
4599
|
-
|
|
4510
|
+
type: {
|
|
4511
|
+
type: "string";
|
|
4600
4512
|
};
|
|
4601
|
-
|
|
4602
|
-
|
|
4513
|
+
async: {
|
|
4514
|
+
type: "boolean";
|
|
4603
4515
|
};
|
|
4604
|
-
|
|
4605
|
-
|
|
4516
|
+
crossorigin: {
|
|
4517
|
+
type: "string";
|
|
4606
4518
|
};
|
|
4607
|
-
|
|
4608
|
-
|
|
4519
|
+
defer: {
|
|
4520
|
+
type: "boolean";
|
|
4609
4521
|
};
|
|
4610
|
-
|
|
4611
|
-
|
|
4522
|
+
fetchpriority: {
|
|
4523
|
+
type: "string";
|
|
4612
4524
|
};
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
readonly additionalProperties: true;
|
|
4616
|
-
};
|
|
4617
|
-
};
|
|
4618
|
-
readonly body: {
|
|
4619
|
-
readonly type: "array";
|
|
4620
|
-
readonly items: {
|
|
4621
|
-
readonly type: "object";
|
|
4622
|
-
readonly properties: {
|
|
4623
|
-
readonly src: {
|
|
4624
|
-
readonly type: "string";
|
|
4525
|
+
integrity: {
|
|
4526
|
+
type: "string";
|
|
4625
4527
|
};
|
|
4626
|
-
|
|
4627
|
-
|
|
4528
|
+
module: {
|
|
4529
|
+
type: "boolean";
|
|
4628
4530
|
};
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
};
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
};
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
};
|
|
4638
|
-
readonly integrity: {
|
|
4639
|
-
readonly type: "string";
|
|
4640
|
-
};
|
|
4641
|
-
readonly module: {
|
|
4642
|
-
readonly type: "boolean";
|
|
4643
|
-
};
|
|
4644
|
-
readonly nomodule: {
|
|
4645
|
-
readonly type: "boolean";
|
|
4646
|
-
};
|
|
4647
|
-
readonly nonce: {
|
|
4648
|
-
readonly type: "string";
|
|
4649
|
-
};
|
|
4650
|
-
readonly referrerpolicy: {
|
|
4651
|
-
readonly type: "string";
|
|
4652
|
-
};
|
|
4653
|
-
readonly type: {
|
|
4654
|
-
readonly type: "string";
|
|
4655
|
-
};
|
|
4656
|
-
};
|
|
4657
|
-
readonly required: readonly ["src"];
|
|
4658
|
-
readonly additionalProperties: true;
|
|
4659
|
-
};
|
|
4660
|
-
};
|
|
4661
|
-
};
|
|
4662
|
-
readonly additionalProperties: false;
|
|
4663
|
-
};
|
|
4664
|
-
readonly links: {
|
|
4665
|
-
readonly type: "array";
|
|
4666
|
-
readonly items: {
|
|
4667
|
-
readonly type: "object";
|
|
4668
|
-
readonly properties: {
|
|
4669
|
-
readonly href: {
|
|
4670
|
-
readonly type: "string";
|
|
4671
|
-
};
|
|
4672
|
-
readonly as: {
|
|
4673
|
-
readonly type: "string";
|
|
4674
|
-
};
|
|
4675
|
-
readonly crossorigin: {
|
|
4676
|
-
readonly type: "string";
|
|
4677
|
-
};
|
|
4678
|
-
readonly fetchpriority: {
|
|
4679
|
-
readonly type: "string";
|
|
4680
|
-
};
|
|
4681
|
-
readonly hreflang: {
|
|
4682
|
-
readonly type: "string";
|
|
4683
|
-
};
|
|
4684
|
-
readonly imagesizes: {
|
|
4685
|
-
readonly type: "string";
|
|
4686
|
-
};
|
|
4687
|
-
readonly imagesrcset: {
|
|
4688
|
-
readonly type: "string";
|
|
4689
|
-
};
|
|
4690
|
-
readonly integrity: {
|
|
4691
|
-
readonly type: "string";
|
|
4692
|
-
};
|
|
4693
|
-
readonly media: {
|
|
4694
|
-
readonly type: "string";
|
|
4695
|
-
};
|
|
4696
|
-
readonly prefetch: {
|
|
4697
|
-
readonly type: "string";
|
|
4698
|
-
};
|
|
4699
|
-
readonly referrerpolicy: {
|
|
4700
|
-
readonly type: "string";
|
|
4701
|
-
};
|
|
4702
|
-
readonly rel: {
|
|
4703
|
-
readonly type: "string";
|
|
4704
|
-
};
|
|
4705
|
-
readonly sizes: {
|
|
4706
|
-
readonly type: "string";
|
|
4707
|
-
};
|
|
4708
|
-
readonly title: {
|
|
4709
|
-
readonly type: "string";
|
|
4710
|
-
};
|
|
4711
|
-
readonly type: {
|
|
4712
|
-
readonly type: "string";
|
|
4713
|
-
};
|
|
4714
|
-
};
|
|
4715
|
-
readonly required: readonly ["href"];
|
|
4716
|
-
readonly additionalProperties: true;
|
|
4717
|
-
};
|
|
4718
|
-
};
|
|
4719
|
-
readonly feedback: {
|
|
4720
|
-
readonly type: "object";
|
|
4721
|
-
readonly properties: {
|
|
4722
|
-
readonly hide: {
|
|
4723
|
-
readonly type: "boolean";
|
|
4724
|
-
readonly default: false;
|
|
4725
|
-
};
|
|
4726
|
-
readonly type: {
|
|
4727
|
-
readonly type: "string";
|
|
4728
|
-
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
4729
|
-
readonly default: "sentiment";
|
|
4730
|
-
};
|
|
4731
|
-
readonly settings: {
|
|
4732
|
-
readonly hide: {
|
|
4733
|
-
readonly type: "boolean";
|
|
4734
|
-
};
|
|
4735
|
-
readonly type: "object";
|
|
4736
|
-
readonly properties: {
|
|
4737
|
-
readonly label: {
|
|
4738
|
-
readonly type: "string";
|
|
4739
|
-
};
|
|
4740
|
-
readonly submitText: {
|
|
4741
|
-
readonly type: "string";
|
|
4742
|
-
};
|
|
4743
|
-
readonly buttonText: {
|
|
4744
|
-
readonly type: "string";
|
|
4745
|
-
};
|
|
4746
|
-
readonly component: {
|
|
4747
|
-
readonly type: "string";
|
|
4748
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
4749
|
-
readonly default: "checkbox";
|
|
4750
|
-
};
|
|
4751
|
-
readonly items: {
|
|
4752
|
-
readonly type: "array";
|
|
4753
|
-
readonly items: {
|
|
4754
|
-
readonly type: "string";
|
|
4531
|
+
nomodule: {
|
|
4532
|
+
type: "boolean";
|
|
4533
|
+
};
|
|
4534
|
+
nonce: {
|
|
4535
|
+
type: "string";
|
|
4536
|
+
};
|
|
4537
|
+
referrerpolicy: {
|
|
4538
|
+
type: "string";
|
|
4755
4539
|
};
|
|
4756
|
-
readonly minItems: 1;
|
|
4757
4540
|
};
|
|
4758
|
-
|
|
4759
|
-
|
|
4541
|
+
additionalProperties: true;
|
|
4542
|
+
required: "src"[];
|
|
4543
|
+
};
|
|
4544
|
+
type: "array";
|
|
4545
|
+
};
|
|
4546
|
+
body: {
|
|
4547
|
+
items: {
|
|
4548
|
+
type: "object";
|
|
4549
|
+
properties: {
|
|
4550
|
+
src: {
|
|
4551
|
+
type: "string";
|
|
4552
|
+
};
|
|
4553
|
+
type: {
|
|
4554
|
+
type: "string";
|
|
4555
|
+
};
|
|
4556
|
+
async: {
|
|
4557
|
+
type: "boolean";
|
|
4558
|
+
};
|
|
4559
|
+
crossorigin: {
|
|
4560
|
+
type: "string";
|
|
4561
|
+
};
|
|
4562
|
+
defer: {
|
|
4563
|
+
type: "boolean";
|
|
4564
|
+
};
|
|
4565
|
+
fetchpriority: {
|
|
4566
|
+
type: "string";
|
|
4567
|
+
};
|
|
4568
|
+
integrity: {
|
|
4569
|
+
type: "string";
|
|
4570
|
+
};
|
|
4571
|
+
module: {
|
|
4572
|
+
type: "boolean";
|
|
4573
|
+
};
|
|
4574
|
+
nomodule: {
|
|
4575
|
+
type: "boolean";
|
|
4576
|
+
};
|
|
4577
|
+
nonce: {
|
|
4578
|
+
type: "string";
|
|
4579
|
+
};
|
|
4580
|
+
referrerpolicy: {
|
|
4581
|
+
type: "string";
|
|
4582
|
+
};
|
|
4760
4583
|
};
|
|
4761
|
-
|
|
4762
|
-
|
|
4584
|
+
additionalProperties: true;
|
|
4585
|
+
required: "src"[];
|
|
4586
|
+
};
|
|
4587
|
+
type: "array";
|
|
4588
|
+
};
|
|
4589
|
+
};
|
|
4590
|
+
additionalProperties: false;
|
|
4591
|
+
};
|
|
4592
|
+
feedback: {
|
|
4593
|
+
type: "object";
|
|
4594
|
+
properties: {
|
|
4595
|
+
type: {
|
|
4596
|
+
type: "string";
|
|
4597
|
+
enum: ("rating" | "sentiment" | "comment" | "reasons" | "mood" | "scale")[];
|
|
4598
|
+
};
|
|
4599
|
+
hide: {
|
|
4600
|
+
type: "boolean";
|
|
4601
|
+
};
|
|
4602
|
+
settings: {
|
|
4603
|
+
type: "object";
|
|
4604
|
+
properties: {
|
|
4605
|
+
items: {
|
|
4606
|
+
items: {
|
|
4607
|
+
type: "string";
|
|
4608
|
+
};
|
|
4609
|
+
type: "array";
|
|
4610
|
+
minItems: 1;
|
|
4763
4611
|
};
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
readonly default: false;
|
|
4612
|
+
comment: {
|
|
4613
|
+
type: "object";
|
|
4614
|
+
properties: {
|
|
4615
|
+
hide: {
|
|
4616
|
+
type: "boolean";
|
|
4770
4617
|
};
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
4774
|
-
readonly default: "checkbox";
|
|
4618
|
+
label: {
|
|
4619
|
+
type: "string";
|
|
4775
4620
|
};
|
|
4776
|
-
|
|
4777
|
-
|
|
4621
|
+
likeLabel: {
|
|
4622
|
+
type: "string";
|
|
4778
4623
|
};
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
readonly items: {
|
|
4782
|
-
readonly type: "string";
|
|
4783
|
-
};
|
|
4624
|
+
dislikeLabel: {
|
|
4625
|
+
type: "string";
|
|
4784
4626
|
};
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
};
|
|
4788
|
-
readonly comment: {
|
|
4789
|
-
readonly type: "object";
|
|
4790
|
-
readonly properties: {
|
|
4791
|
-
readonly hide: {
|
|
4792
|
-
readonly type: "boolean";
|
|
4793
|
-
readonly default: false;
|
|
4627
|
+
satisfiedLabel: {
|
|
4628
|
+
type: "string";
|
|
4794
4629
|
};
|
|
4795
|
-
|
|
4796
|
-
|
|
4630
|
+
neutralLabel: {
|
|
4631
|
+
type: "string";
|
|
4797
4632
|
};
|
|
4798
|
-
|
|
4799
|
-
|
|
4633
|
+
dissatisfiedLabel: {
|
|
4634
|
+
type: "string";
|
|
4800
4635
|
};
|
|
4801
|
-
|
|
4802
|
-
|
|
4636
|
+
};
|
|
4637
|
+
additionalProperties: false;
|
|
4638
|
+
};
|
|
4639
|
+
reasons: {
|
|
4640
|
+
type: "object";
|
|
4641
|
+
properties: {
|
|
4642
|
+
items: {
|
|
4643
|
+
items: {
|
|
4644
|
+
type: "string";
|
|
4645
|
+
};
|
|
4646
|
+
type: "array";
|
|
4803
4647
|
};
|
|
4804
|
-
|
|
4805
|
-
|
|
4648
|
+
hide: {
|
|
4649
|
+
type: "boolean";
|
|
4806
4650
|
};
|
|
4807
|
-
|
|
4808
|
-
|
|
4651
|
+
label: {
|
|
4652
|
+
type: "string";
|
|
4809
4653
|
};
|
|
4810
|
-
|
|
4811
|
-
|
|
4654
|
+
component: {
|
|
4655
|
+
type: "string";
|
|
4656
|
+
enum: ("radio" | "checkbox")[];
|
|
4812
4657
|
};
|
|
4813
4658
|
};
|
|
4814
|
-
|
|
4659
|
+
additionalProperties: false;
|
|
4660
|
+
};
|
|
4661
|
+
label: {
|
|
4662
|
+
type: "string";
|
|
4663
|
+
};
|
|
4664
|
+
submitText: {
|
|
4665
|
+
type: "string";
|
|
4666
|
+
};
|
|
4667
|
+
buttonText: {
|
|
4668
|
+
type: "string";
|
|
4669
|
+
};
|
|
4670
|
+
component: {
|
|
4671
|
+
type: "string";
|
|
4672
|
+
enum: ("radio" | "checkbox")[];
|
|
4673
|
+
};
|
|
4674
|
+
leftScaleLabel: {
|
|
4675
|
+
type: "string";
|
|
4676
|
+
};
|
|
4677
|
+
rightScaleLabel: {
|
|
4678
|
+
type: "string";
|
|
4815
4679
|
};
|
|
4816
4680
|
};
|
|
4817
|
-
|
|
4681
|
+
additionalProperties: false;
|
|
4682
|
+
hide: {
|
|
4683
|
+
type: "boolean";
|
|
4684
|
+
};
|
|
4818
4685
|
};
|
|
4819
4686
|
};
|
|
4820
|
-
|
|
4821
|
-
readonly default: {};
|
|
4687
|
+
additionalProperties: false;
|
|
4822
4688
|
};
|
|
4823
|
-
|
|
4824
|
-
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4689
|
+
search: {
|
|
4690
|
+
type: "object";
|
|
4691
|
+
properties: {
|
|
4692
|
+
hide: {
|
|
4693
|
+
type: "boolean";
|
|
4828
4694
|
};
|
|
4829
|
-
|
|
4830
|
-
|
|
4831
|
-
readonly default: "navbar";
|
|
4695
|
+
placement: {
|
|
4696
|
+
type: "string";
|
|
4832
4697
|
};
|
|
4833
|
-
|
|
4834
|
-
|
|
4835
|
-
|
|
4836
|
-
readonly type: "string";
|
|
4698
|
+
shortcuts: {
|
|
4699
|
+
items: {
|
|
4700
|
+
type: "string";
|
|
4837
4701
|
};
|
|
4838
|
-
|
|
4702
|
+
type: "array";
|
|
4839
4703
|
};
|
|
4840
|
-
|
|
4841
|
-
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
readonly type: "string";
|
|
4704
|
+
suggestedPages: {
|
|
4705
|
+
items: {
|
|
4706
|
+
type: "object";
|
|
4707
|
+
properties: {
|
|
4708
|
+
page: {
|
|
4709
|
+
type: "string";
|
|
4847
4710
|
};
|
|
4848
|
-
|
|
4849
|
-
|
|
4711
|
+
label: {
|
|
4712
|
+
type: "string";
|
|
4850
4713
|
};
|
|
4851
|
-
|
|
4852
|
-
|
|
4714
|
+
labelTranslationKey: {
|
|
4715
|
+
type: "string";
|
|
4853
4716
|
};
|
|
4854
4717
|
};
|
|
4855
|
-
|
|
4718
|
+
required: "page"[];
|
|
4856
4719
|
};
|
|
4720
|
+
type: "array";
|
|
4857
4721
|
};
|
|
4858
|
-
|
|
4859
|
-
|
|
4860
|
-
readonly default: false;
|
|
4722
|
+
fuzzy: {
|
|
4723
|
+
type: "boolean";
|
|
4861
4724
|
};
|
|
4862
4725
|
};
|
|
4863
|
-
|
|
4864
|
-
readonly default: {};
|
|
4726
|
+
additionalProperties: false;
|
|
4865
4727
|
};
|
|
4866
|
-
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
4870
|
-
|
|
4728
|
+
colorMode: {
|
|
4729
|
+
type: "object";
|
|
4730
|
+
properties: {
|
|
4731
|
+
hide: {
|
|
4732
|
+
type: "boolean";
|
|
4871
4733
|
};
|
|
4872
|
-
|
|
4873
|
-
|
|
4734
|
+
ignoreDetection: {
|
|
4735
|
+
type: "boolean";
|
|
4874
4736
|
};
|
|
4875
|
-
|
|
4876
|
-
|
|
4877
|
-
|
|
4878
|
-
readonly type: "string";
|
|
4737
|
+
modes: {
|
|
4738
|
+
items: {
|
|
4739
|
+
type: "string";
|
|
4879
4740
|
};
|
|
4880
|
-
|
|
4741
|
+
type: "array";
|
|
4881
4742
|
};
|
|
4882
4743
|
};
|
|
4883
|
-
|
|
4884
|
-
readonly default: {};
|
|
4744
|
+
additionalProperties: false;
|
|
4885
4745
|
};
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4893
|
-
|
|
4746
|
+
navigation: {
|
|
4747
|
+
type: "object";
|
|
4748
|
+
properties: {
|
|
4749
|
+
nextButton: {
|
|
4750
|
+
type: "object";
|
|
4751
|
+
properties: {
|
|
4752
|
+
hide: {
|
|
4753
|
+
type: "boolean";
|
|
4894
4754
|
};
|
|
4895
|
-
|
|
4896
|
-
|
|
4897
|
-
readonly default: "Next to {{label}}";
|
|
4755
|
+
text: {
|
|
4756
|
+
type: "string";
|
|
4898
4757
|
};
|
|
4899
4758
|
};
|
|
4900
|
-
|
|
4901
|
-
readonly default: {};
|
|
4759
|
+
additionalProperties: false;
|
|
4902
4760
|
};
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
|
|
4906
|
-
|
|
4907
|
-
|
|
4761
|
+
previousButton: {
|
|
4762
|
+
type: "object";
|
|
4763
|
+
properties: {
|
|
4764
|
+
hide: {
|
|
4765
|
+
type: "boolean";
|
|
4908
4766
|
};
|
|
4909
|
-
|
|
4910
|
-
|
|
4911
|
-
readonly default: "Back to {{label}}";
|
|
4767
|
+
text: {
|
|
4768
|
+
type: "string";
|
|
4912
4769
|
};
|
|
4913
4770
|
};
|
|
4914
|
-
|
|
4915
|
-
readonly default: {};
|
|
4771
|
+
additionalProperties: false;
|
|
4916
4772
|
};
|
|
4917
4773
|
};
|
|
4918
|
-
|
|
4919
|
-
readonly default: {};
|
|
4774
|
+
additionalProperties: false;
|
|
4920
4775
|
};
|
|
4921
|
-
|
|
4922
|
-
|
|
4923
|
-
|
|
4924
|
-
|
|
4925
|
-
|
|
4926
|
-
readonly default: "icon";
|
|
4776
|
+
codeSnippet: {
|
|
4777
|
+
type: "object";
|
|
4778
|
+
properties: {
|
|
4779
|
+
elementFormat: {
|
|
4780
|
+
type: "string";
|
|
4927
4781
|
};
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
|
|
4931
|
-
|
|
4932
|
-
|
|
4782
|
+
copy: {
|
|
4783
|
+
type: "object";
|
|
4784
|
+
properties: {
|
|
4785
|
+
hide: {
|
|
4786
|
+
type: "boolean";
|
|
4933
4787
|
};
|
|
4934
4788
|
};
|
|
4935
|
-
|
|
4936
|
-
readonly default: {
|
|
4937
|
-
readonly hide: false;
|
|
4938
|
-
};
|
|
4789
|
+
additionalProperties: false;
|
|
4939
4790
|
};
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
|
|
4944
|
-
|
|
4791
|
+
report: {
|
|
4792
|
+
type: "object";
|
|
4793
|
+
properties: {
|
|
4794
|
+
hide: {
|
|
4795
|
+
type: "boolean";
|
|
4945
4796
|
};
|
|
4946
|
-
|
|
4947
|
-
|
|
4797
|
+
label: {
|
|
4798
|
+
type: "string";
|
|
4948
4799
|
};
|
|
4949
|
-
|
|
4950
|
-
|
|
4800
|
+
buttonText: {
|
|
4801
|
+
type: "string";
|
|
4951
4802
|
};
|
|
4952
|
-
|
|
4953
|
-
|
|
4803
|
+
tooltipText: {
|
|
4804
|
+
type: "string";
|
|
4954
4805
|
};
|
|
4955
4806
|
};
|
|
4956
|
-
|
|
4957
|
-
readonly default: {
|
|
4958
|
-
readonly hide: false;
|
|
4959
|
-
};
|
|
4807
|
+
additionalProperties: false;
|
|
4960
4808
|
};
|
|
4961
|
-
|
|
4962
|
-
|
|
4963
|
-
|
|
4964
|
-
|
|
4965
|
-
|
|
4809
|
+
expand: {
|
|
4810
|
+
type: "object";
|
|
4811
|
+
properties: {
|
|
4812
|
+
hide: {
|
|
4813
|
+
type: "boolean";
|
|
4966
4814
|
};
|
|
4967
4815
|
};
|
|
4968
|
-
|
|
4969
|
-
readonly default: {
|
|
4970
|
-
readonly hide: false;
|
|
4971
|
-
};
|
|
4816
|
+
additionalProperties: false;
|
|
4972
4817
|
};
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
|
|
4818
|
+
collapse: {
|
|
4819
|
+
type: "object";
|
|
4820
|
+
properties: {
|
|
4821
|
+
hide: {
|
|
4822
|
+
type: "boolean";
|
|
4978
4823
|
};
|
|
4979
4824
|
};
|
|
4980
|
-
|
|
4981
|
-
readonly default: {
|
|
4982
|
-
readonly hide: false;
|
|
4983
|
-
};
|
|
4825
|
+
additionalProperties: false;
|
|
4984
4826
|
};
|
|
4985
4827
|
};
|
|
4986
|
-
|
|
4987
|
-
readonly default: {};
|
|
4828
|
+
additionalProperties: false;
|
|
4988
4829
|
};
|
|
4989
|
-
|
|
4990
|
-
|
|
4991
|
-
|
|
4992
|
-
|
|
4993
|
-
|
|
4994
|
-
|
|
4995
|
-
readonly type: "string";
|
|
4830
|
+
markdown: {
|
|
4831
|
+
type: "object";
|
|
4832
|
+
properties: {
|
|
4833
|
+
frontMatterKeysToResolve: {
|
|
4834
|
+
items: {
|
|
4835
|
+
type: "string";
|
|
4996
4836
|
};
|
|
4997
|
-
|
|
4837
|
+
type: "array";
|
|
4998
4838
|
};
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
readonly type: "string";
|
|
4839
|
+
partialsFolders: {
|
|
4840
|
+
items: {
|
|
4841
|
+
type: "string";
|
|
5003
4842
|
};
|
|
5004
|
-
|
|
4843
|
+
type: "array";
|
|
5005
4844
|
};
|
|
5006
|
-
|
|
5007
|
-
|
|
5008
|
-
|
|
5009
|
-
|
|
5010
|
-
|
|
4845
|
+
lastUpdatedBlock: {
|
|
4846
|
+
type: "object";
|
|
4847
|
+
properties: {
|
|
4848
|
+
format: {
|
|
4849
|
+
type: "string";
|
|
4850
|
+
enum: ("timeago" | "iso" | "long" | "short")[];
|
|
5011
4851
|
};
|
|
5012
|
-
|
|
5013
|
-
|
|
5014
|
-
readonly enum: readonly ["timeago", "iso", "long", "short"];
|
|
5015
|
-
readonly default: "timeago";
|
|
4852
|
+
hide: {
|
|
4853
|
+
type: "boolean";
|
|
5016
4854
|
};
|
|
5017
|
-
|
|
5018
|
-
|
|
4855
|
+
locale: {
|
|
4856
|
+
type: "string";
|
|
5019
4857
|
};
|
|
5020
4858
|
};
|
|
5021
|
-
|
|
5022
|
-
readonly default: {};
|
|
4859
|
+
additionalProperties: false;
|
|
5023
4860
|
};
|
|
5024
|
-
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
|
|
4861
|
+
toc: {
|
|
4862
|
+
type: "object";
|
|
4863
|
+
properties: {
|
|
4864
|
+
hide: {
|
|
4865
|
+
type: "boolean";
|
|
5029
4866
|
};
|
|
5030
|
-
|
|
5031
|
-
|
|
5032
|
-
readonly default: "On this page";
|
|
4867
|
+
header: {
|
|
4868
|
+
type: "string";
|
|
5033
4869
|
};
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
readonly minimum: 1;
|
|
4870
|
+
depth: {
|
|
4871
|
+
type: "integer";
|
|
4872
|
+
minimum: 1;
|
|
5038
4873
|
};
|
|
5039
4874
|
};
|
|
5040
|
-
|
|
5041
|
-
readonly default: {};
|
|
4875
|
+
additionalProperties: false;
|
|
5042
4876
|
};
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
-
|
|
4877
|
+
editPage: {
|
|
4878
|
+
type: "object";
|
|
4879
|
+
properties: {
|
|
4880
|
+
hide: {
|
|
4881
|
+
type: "boolean";
|
|
5048
4882
|
};
|
|
5049
|
-
|
|
5050
|
-
|
|
4883
|
+
baseUrl: {
|
|
4884
|
+
type: "string";
|
|
5051
4885
|
};
|
|
5052
4886
|
};
|
|
5053
|
-
|
|
5054
|
-
readonly default: {};
|
|
4887
|
+
additionalProperties: false;
|
|
5055
4888
|
};
|
|
5056
4889
|
};
|
|
5057
|
-
|
|
5058
|
-
readonly default: {};
|
|
4890
|
+
additionalProperties: false;
|
|
5059
4891
|
};
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
4892
|
+
openapi: {
|
|
4893
|
+
type: "object";
|
|
4894
|
+
additionalProperties: true;
|
|
5063
4895
|
};
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
4896
|
+
graphql: {
|
|
4897
|
+
type: "object";
|
|
4898
|
+
additionalProperties: true;
|
|
5067
4899
|
};
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
4900
|
+
analytics: {
|
|
4901
|
+
type: "object";
|
|
4902
|
+
properties: {
|
|
4903
|
+
adobe: {
|
|
4904
|
+
type: "object";
|
|
4905
|
+
properties: {
|
|
4906
|
+
scriptUrl: {
|
|
4907
|
+
type: "string";
|
|
5076
4908
|
};
|
|
5077
|
-
|
|
5078
|
-
|
|
4909
|
+
includeInDevelopment: {
|
|
4910
|
+
type: "boolean";
|
|
5079
4911
|
};
|
|
5080
|
-
|
|
5081
|
-
|
|
4912
|
+
pageViewEventName: {
|
|
4913
|
+
type: "string";
|
|
5082
4914
|
};
|
|
5083
4915
|
};
|
|
5084
|
-
|
|
5085
|
-
|
|
4916
|
+
additionalProperties: false;
|
|
4917
|
+
required: "scriptUrl"[];
|
|
5086
4918
|
};
|
|
5087
|
-
|
|
5088
|
-
|
|
5089
|
-
|
|
5090
|
-
|
|
5091
|
-
|
|
4919
|
+
amplitude: {
|
|
4920
|
+
type: "object";
|
|
4921
|
+
properties: {
|
|
4922
|
+
apiKey: {
|
|
4923
|
+
type: "string";
|
|
5092
4924
|
};
|
|
5093
|
-
|
|
5094
|
-
|
|
4925
|
+
head: {
|
|
4926
|
+
type: "boolean";
|
|
5095
4927
|
};
|
|
5096
|
-
|
|
5097
|
-
|
|
4928
|
+
includeInDevelopment: {
|
|
4929
|
+
type: "boolean";
|
|
5098
4930
|
};
|
|
5099
|
-
|
|
5100
|
-
|
|
4931
|
+
pageViewEventName: {
|
|
4932
|
+
type: "string";
|
|
5101
4933
|
};
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
readonly items: {
|
|
5105
|
-
readonly type: "string";
|
|
5106
|
-
};
|
|
4934
|
+
respectDNT: {
|
|
4935
|
+
type: "boolean";
|
|
5107
4936
|
};
|
|
5108
|
-
|
|
5109
|
-
|
|
4937
|
+
exclude: {
|
|
4938
|
+
items: {
|
|
4939
|
+
type: "string";
|
|
4940
|
+
};
|
|
4941
|
+
type: "array";
|
|
5110
4942
|
};
|
|
5111
|
-
|
|
5112
|
-
|
|
4943
|
+
outboundClickEventName: {
|
|
4944
|
+
type: "string";
|
|
5113
4945
|
};
|
|
5114
|
-
|
|
5115
|
-
|
|
5116
|
-
|
|
4946
|
+
amplitudeConfig: {
|
|
4947
|
+
type: "object";
|
|
4948
|
+
additionalProperties: true;
|
|
5117
4949
|
};
|
|
5118
4950
|
};
|
|
5119
|
-
|
|
5120
|
-
|
|
4951
|
+
additionalProperties: false;
|
|
4952
|
+
required: "apiKey"[];
|
|
5121
4953
|
};
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
4954
|
+
fullstory: {
|
|
4955
|
+
type: "object";
|
|
4956
|
+
properties: {
|
|
4957
|
+
orgId: {
|
|
4958
|
+
type: "string";
|
|
5127
4959
|
};
|
|
5128
|
-
|
|
5129
|
-
|
|
4960
|
+
includeInDevelopment: {
|
|
4961
|
+
type: "boolean";
|
|
5130
4962
|
};
|
|
5131
4963
|
};
|
|
5132
|
-
|
|
5133
|
-
|
|
4964
|
+
additionalProperties: false;
|
|
4965
|
+
required: "orgId"[];
|
|
5134
4966
|
};
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
4967
|
+
heap: {
|
|
4968
|
+
type: "object";
|
|
4969
|
+
properties: {
|
|
4970
|
+
appId: {
|
|
4971
|
+
type: "string";
|
|
5140
4972
|
};
|
|
5141
|
-
|
|
5142
|
-
|
|
4973
|
+
includeInDevelopment: {
|
|
4974
|
+
type: "boolean";
|
|
5143
4975
|
};
|
|
5144
4976
|
};
|
|
5145
|
-
|
|
5146
|
-
|
|
4977
|
+
additionalProperties: false;
|
|
4978
|
+
required: "appId"[];
|
|
5147
4979
|
};
|
|
5148
|
-
|
|
5149
|
-
|
|
5150
|
-
|
|
5151
|
-
|
|
5152
|
-
|
|
4980
|
+
rudderstack: {
|
|
4981
|
+
type: "object";
|
|
4982
|
+
properties: {
|
|
4983
|
+
writeKey: {
|
|
4984
|
+
type: "string";
|
|
4985
|
+
minLength: 10;
|
|
5153
4986
|
};
|
|
5154
|
-
|
|
5155
|
-
|
|
5156
|
-
readonly minLength: 10;
|
|
4987
|
+
includeInDevelopment: {
|
|
4988
|
+
type: "boolean";
|
|
5157
4989
|
};
|
|
5158
|
-
|
|
5159
|
-
|
|
4990
|
+
trackPage: {
|
|
4991
|
+
type: "boolean";
|
|
5160
4992
|
};
|
|
5161
|
-
|
|
5162
|
-
|
|
4993
|
+
dataPlaneUrl: {
|
|
4994
|
+
type: "string";
|
|
5163
4995
|
};
|
|
5164
|
-
|
|
5165
|
-
|
|
4996
|
+
controlPlaneUrl: {
|
|
4997
|
+
type: "string";
|
|
5166
4998
|
};
|
|
5167
|
-
|
|
5168
|
-
|
|
4999
|
+
sdkUrl: {
|
|
5000
|
+
type: "string";
|
|
5169
5001
|
};
|
|
5170
|
-
|
|
5171
|
-
|
|
5172
|
-
|
|
5002
|
+
loadOptions: {
|
|
5003
|
+
type: "object";
|
|
5004
|
+
additionalProperties: true;
|
|
5173
5005
|
};
|
|
5174
5006
|
};
|
|
5175
|
-
|
|
5176
|
-
|
|
5007
|
+
additionalProperties: false;
|
|
5008
|
+
required: "writeKey"[];
|
|
5177
5009
|
};
|
|
5178
|
-
|
|
5179
|
-
|
|
5180
|
-
|
|
5181
|
-
|
|
5182
|
-
|
|
5010
|
+
segment: {
|
|
5011
|
+
type: "object";
|
|
5012
|
+
properties: {
|
|
5013
|
+
writeKey: {
|
|
5014
|
+
type: "string";
|
|
5015
|
+
minLength: 10;
|
|
5183
5016
|
};
|
|
5184
|
-
|
|
5185
|
-
|
|
5186
|
-
readonly minLength: 10;
|
|
5017
|
+
includeInDevelopment: {
|
|
5018
|
+
type: "boolean";
|
|
5187
5019
|
};
|
|
5188
|
-
|
|
5189
|
-
|
|
5020
|
+
trackPage: {
|
|
5021
|
+
type: "boolean";
|
|
5190
5022
|
};
|
|
5191
|
-
|
|
5192
|
-
|
|
5023
|
+
includeTitleInPageCall: {
|
|
5024
|
+
type: "boolean";
|
|
5193
5025
|
};
|
|
5194
|
-
|
|
5195
|
-
|
|
5026
|
+
host: {
|
|
5027
|
+
type: "string";
|
|
5196
5028
|
};
|
|
5197
5029
|
};
|
|
5198
|
-
|
|
5199
|
-
|
|
5030
|
+
additionalProperties: false;
|
|
5031
|
+
required: "writeKey"[];
|
|
5200
5032
|
};
|
|
5201
|
-
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5033
|
+
gtm: {
|
|
5034
|
+
type: "object";
|
|
5035
|
+
properties: {
|
|
5036
|
+
trackingId: {
|
|
5037
|
+
type: "string";
|
|
5206
5038
|
};
|
|
5207
|
-
|
|
5208
|
-
|
|
5039
|
+
includeInDevelopment: {
|
|
5040
|
+
type: "boolean";
|
|
5209
5041
|
};
|
|
5210
|
-
|
|
5211
|
-
|
|
5042
|
+
pageViewEventName: {
|
|
5043
|
+
type: "string";
|
|
5212
5044
|
};
|
|
5213
|
-
|
|
5214
|
-
|
|
5045
|
+
gtmAuth: {
|
|
5046
|
+
type: "string";
|
|
5215
5047
|
};
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
readonly type: "string";
|
|
5048
|
+
gtmPreview: {
|
|
5049
|
+
type: "string";
|
|
5219
5050
|
};
|
|
5220
|
-
|
|
5221
|
-
|
|
5051
|
+
defaultDataLayer: {};
|
|
5052
|
+
dataLayerName: {
|
|
5053
|
+
type: "string";
|
|
5222
5054
|
};
|
|
5223
|
-
|
|
5224
|
-
|
|
5055
|
+
enableWebVitalsTracking: {
|
|
5056
|
+
type: "boolean";
|
|
5225
5057
|
};
|
|
5226
|
-
|
|
5227
|
-
|
|
5058
|
+
selfHostedOrigin: {
|
|
5059
|
+
type: "string";
|
|
5228
5060
|
};
|
|
5229
5061
|
};
|
|
5230
|
-
|
|
5231
|
-
|
|
5062
|
+
additionalProperties: false;
|
|
5063
|
+
required: "trackingId"[];
|
|
5232
5064
|
};
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5065
|
+
ga: {
|
|
5066
|
+
type: "object";
|
|
5067
|
+
properties: {
|
|
5068
|
+
trackingId: {
|
|
5069
|
+
type: "string";
|
|
5238
5070
|
};
|
|
5239
|
-
|
|
5240
|
-
|
|
5071
|
+
head: {
|
|
5072
|
+
type: "boolean";
|
|
5241
5073
|
};
|
|
5242
|
-
|
|
5243
|
-
|
|
5074
|
+
includeInDevelopment: {
|
|
5075
|
+
type: "boolean";
|
|
5244
5076
|
};
|
|
5245
|
-
|
|
5246
|
-
|
|
5077
|
+
respectDNT: {
|
|
5078
|
+
type: "boolean";
|
|
5247
5079
|
};
|
|
5248
|
-
|
|
5249
|
-
|
|
5080
|
+
exclude: {
|
|
5081
|
+
items: {
|
|
5082
|
+
type: "string";
|
|
5083
|
+
};
|
|
5084
|
+
type: "array";
|
|
5250
5085
|
};
|
|
5251
|
-
|
|
5252
|
-
|
|
5086
|
+
conversionId: {
|
|
5087
|
+
type: "string";
|
|
5253
5088
|
};
|
|
5254
|
-
|
|
5255
|
-
|
|
5256
|
-
readonly items: {
|
|
5257
|
-
readonly type: "string";
|
|
5258
|
-
};
|
|
5089
|
+
floodlightId: {
|
|
5090
|
+
type: "string";
|
|
5259
5091
|
};
|
|
5260
|
-
|
|
5261
|
-
|
|
5092
|
+
optimizeId: {
|
|
5093
|
+
type: "string";
|
|
5262
5094
|
};
|
|
5263
|
-
|
|
5264
|
-
|
|
5095
|
+
anonymizeIp: {
|
|
5096
|
+
type: "boolean";
|
|
5265
5097
|
};
|
|
5266
|
-
|
|
5267
|
-
|
|
5098
|
+
cookieExpires: {
|
|
5099
|
+
type: "number";
|
|
5268
5100
|
};
|
|
5269
|
-
|
|
5270
|
-
|
|
5271
|
-
|
|
5272
|
-
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
|
|
5101
|
+
trackers: {
|
|
5102
|
+
type: "object";
|
|
5103
|
+
additionalProperties: {
|
|
5104
|
+
type: "object";
|
|
5105
|
+
properties: {
|
|
5106
|
+
trackingId: {
|
|
5107
|
+
type: "string";
|
|
5276
5108
|
};
|
|
5277
|
-
|
|
5278
|
-
|
|
5109
|
+
includeInDevelopment: {
|
|
5110
|
+
type: "boolean";
|
|
5279
5111
|
};
|
|
5280
|
-
|
|
5281
|
-
|
|
5112
|
+
exclude: {
|
|
5113
|
+
items: any;
|
|
5114
|
+
type: "array";
|
|
5282
5115
|
};
|
|
5283
|
-
|
|
5284
|
-
|
|
5116
|
+
conversionId: {
|
|
5117
|
+
type: "string";
|
|
5285
5118
|
};
|
|
5286
|
-
|
|
5287
|
-
|
|
5119
|
+
floodlightId: {
|
|
5120
|
+
type: "string";
|
|
5288
5121
|
};
|
|
5289
|
-
|
|
5290
|
-
|
|
5291
|
-
readonly items: {
|
|
5292
|
-
readonly type: "string";
|
|
5293
|
-
};
|
|
5122
|
+
optimizeId: {
|
|
5123
|
+
type: "string";
|
|
5294
5124
|
};
|
|
5295
5125
|
};
|
|
5296
|
-
|
|
5297
|
-
|
|
5126
|
+
additionalProperties: false;
|
|
5127
|
+
required: "trackingId"[];
|
|
5298
5128
|
};
|
|
5299
5129
|
};
|
|
5300
5130
|
};
|
|
5301
|
-
|
|
5302
|
-
|
|
5131
|
+
additionalProperties: false;
|
|
5132
|
+
required: "trackingId"[];
|
|
5303
5133
|
};
|
|
5304
5134
|
};
|
|
5305
5135
|
};
|
|
5306
|
-
|
|
5307
|
-
|
|
5308
|
-
|
|
5309
|
-
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
|
|
5313
|
-
|
|
5314
|
-
|
|
5315
|
-
};
|
|
5316
|
-
readonly logoutLabel: {
|
|
5317
|
-
readonly type: "string";
|
|
5318
|
-
readonly default: "Logout";
|
|
5319
|
-
};
|
|
5320
|
-
readonly menu: {
|
|
5321
|
-
readonly type: "array";
|
|
5322
|
-
readonly items: {
|
|
5323
|
-
readonly type: "object";
|
|
5324
|
-
readonly properties: {
|
|
5325
|
-
readonly label: {
|
|
5326
|
-
readonly type: "string";
|
|
5136
|
+
userMenu: {
|
|
5137
|
+
type: "object";
|
|
5138
|
+
properties: {
|
|
5139
|
+
items: {
|
|
5140
|
+
items: {
|
|
5141
|
+
type: "object";
|
|
5142
|
+
properties: {
|
|
5143
|
+
link: {
|
|
5144
|
+
type: "string";
|
|
5327
5145
|
};
|
|
5328
|
-
|
|
5329
|
-
|
|
5146
|
+
separatorLine: {
|
|
5147
|
+
type: "boolean";
|
|
5330
5148
|
};
|
|
5331
|
-
|
|
5332
|
-
|
|
5149
|
+
label: {
|
|
5150
|
+
type: "string";
|
|
5333
5151
|
};
|
|
5334
|
-
|
|
5335
|
-
|
|
5152
|
+
external: {
|
|
5153
|
+
type: "boolean";
|
|
5336
5154
|
};
|
|
5337
5155
|
};
|
|
5338
|
-
|
|
5156
|
+
additionalProperties: true;
|
|
5339
5157
|
};
|
|
5340
|
-
|
|
5158
|
+
type: "array";
|
|
5159
|
+
};
|
|
5160
|
+
hide: {
|
|
5161
|
+
type: "boolean";
|
|
5341
5162
|
};
|
|
5342
5163
|
};
|
|
5343
|
-
|
|
5344
|
-
readonly default: {};
|
|
5164
|
+
additionalProperties: false;
|
|
5345
5165
|
};
|
|
5346
|
-
|
|
5347
|
-
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5166
|
+
versionPicker: {
|
|
5167
|
+
type: "object";
|
|
5168
|
+
properties: {
|
|
5169
|
+
hide: {
|
|
5170
|
+
type: "boolean";
|
|
5351
5171
|
};
|
|
5352
|
-
|
|
5353
|
-
|
|
5172
|
+
showForUnversioned: {
|
|
5173
|
+
type: "boolean";
|
|
5354
5174
|
};
|
|
5355
5175
|
};
|
|
5356
5176
|
};
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
5361
|
-
|
|
5177
|
+
breadcrumbs: {
|
|
5178
|
+
type: "object";
|
|
5179
|
+
properties: {
|
|
5180
|
+
hide: {
|
|
5181
|
+
type: "boolean";
|
|
5362
5182
|
};
|
|
5363
|
-
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5368
|
-
|
|
5369
|
-
readonly type: "string";
|
|
5183
|
+
prefixItems: {
|
|
5184
|
+
items: {
|
|
5185
|
+
type: "object";
|
|
5186
|
+
properties: {
|
|
5187
|
+
page: {
|
|
5188
|
+
type: "string";
|
|
5370
5189
|
};
|
|
5371
|
-
|
|
5372
|
-
|
|
5190
|
+
label: {
|
|
5191
|
+
type: "string";
|
|
5373
5192
|
};
|
|
5374
|
-
|
|
5375
|
-
|
|
5193
|
+
labelTranslationKey: {
|
|
5194
|
+
type: "string";
|
|
5376
5195
|
};
|
|
5377
5196
|
};
|
|
5378
|
-
|
|
5379
|
-
readonly default: {};
|
|
5197
|
+
additionalProperties: false;
|
|
5380
5198
|
};
|
|
5199
|
+
type: "array";
|
|
5381
5200
|
};
|
|
5382
5201
|
};
|
|
5383
|
-
|
|
5384
|
-
readonly default: {};
|
|
5202
|
+
additionalProperties: false;
|
|
5385
5203
|
};
|
|
5386
|
-
|
|
5387
|
-
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
readonly slug: {
|
|
5395
|
-
readonly type: "string";
|
|
5204
|
+
catalog: {
|
|
5205
|
+
type: "object";
|
|
5206
|
+
patternProperties: {
|
|
5207
|
+
".*": {
|
|
5208
|
+
type: "object";
|
|
5209
|
+
properties: {
|
|
5210
|
+
title: {
|
|
5211
|
+
type: "string";
|
|
5396
5212
|
};
|
|
5397
|
-
|
|
5398
|
-
|
|
5399
|
-
|
|
5400
|
-
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
|
|
5406
|
-
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
5213
|
+
slug: {
|
|
5214
|
+
type: "string";
|
|
5215
|
+
};
|
|
5216
|
+
items: {
|
|
5217
|
+
items: {
|
|
5218
|
+
type: "object";
|
|
5219
|
+
properties: {
|
|
5220
|
+
href: {
|
|
5221
|
+
type: "string";
|
|
5407
5222
|
};
|
|
5408
|
-
|
|
5409
|
-
|
|
5223
|
+
page: {
|
|
5224
|
+
type: "string";
|
|
5410
5225
|
};
|
|
5411
|
-
|
|
5412
|
-
|
|
5226
|
+
items: {
|
|
5227
|
+
items: {
|
|
5228
|
+
type: "object";
|
|
5229
|
+
properties: {
|
|
5230
|
+
href: {
|
|
5231
|
+
type: "string";
|
|
5232
|
+
};
|
|
5233
|
+
page: {
|
|
5234
|
+
type: "string";
|
|
5235
|
+
};
|
|
5236
|
+
items: any;
|
|
5237
|
+
icon: any;
|
|
5238
|
+
separatorLine: any;
|
|
5239
|
+
linePosition: any;
|
|
5240
|
+
directory: any;
|
|
5241
|
+
disconnect: any;
|
|
5242
|
+
group: any;
|
|
5243
|
+
label: any;
|
|
5244
|
+
external: any;
|
|
5245
|
+
labelTranslationKey: any;
|
|
5246
|
+
groupTranslationKey: any;
|
|
5247
|
+
separator: any;
|
|
5248
|
+
version: any;
|
|
5249
|
+
menuStyle: any;
|
|
5250
|
+
expanded: any;
|
|
5251
|
+
selectFirstItemOnExpand: any;
|
|
5252
|
+
flatten: any;
|
|
5253
|
+
linkedSidebars: any;
|
|
5254
|
+
};
|
|
5255
|
+
};
|
|
5256
|
+
type: "array";
|
|
5413
5257
|
};
|
|
5414
|
-
|
|
5415
|
-
|
|
5258
|
+
icon: {
|
|
5259
|
+
oneOf: ({
|
|
5260
|
+
type: "string";
|
|
5261
|
+
} | {
|
|
5262
|
+
type: "object";
|
|
5263
|
+
properties: {
|
|
5264
|
+
srcSet: any;
|
|
5265
|
+
};
|
|
5266
|
+
required: "srcSet"[];
|
|
5267
|
+
})[];
|
|
5416
5268
|
};
|
|
5417
|
-
|
|
5418
|
-
|
|
5269
|
+
separatorLine: {
|
|
5270
|
+
type: "boolean";
|
|
5419
5271
|
};
|
|
5420
|
-
|
|
5421
|
-
|
|
5422
|
-
|
|
5423
|
-
readonly type: "string";
|
|
5424
|
-
};
|
|
5272
|
+
linePosition: {
|
|
5273
|
+
type: "string";
|
|
5274
|
+
enum: ("top" | "bottom")[];
|
|
5425
5275
|
};
|
|
5426
|
-
|
|
5427
|
-
|
|
5276
|
+
directory: {
|
|
5277
|
+
type: "string";
|
|
5428
5278
|
};
|
|
5429
|
-
|
|
5430
|
-
|
|
5279
|
+
disconnect: {
|
|
5280
|
+
type: "boolean";
|
|
5431
5281
|
};
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
readonly items: {
|
|
5435
|
-
readonly type: "string";
|
|
5436
|
-
};
|
|
5282
|
+
group: {
|
|
5283
|
+
type: "string";
|
|
5437
5284
|
};
|
|
5438
|
-
|
|
5439
|
-
|
|
5440
|
-
};
|
|
5441
|
-
readonly groupByFirstFilter: {
|
|
5442
|
-
readonly type: "boolean";
|
|
5443
|
-
};
|
|
5444
|
-
readonly filterValuesCasing: {
|
|
5445
|
-
readonly type: "string";
|
|
5446
|
-
readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
|
|
5447
|
-
};
|
|
5448
|
-
readonly items: {
|
|
5449
|
-
readonly type: "array";
|
|
5450
|
-
readonly items: {
|
|
5451
|
-
readonly properties: {
|
|
5452
|
-
readonly items: {
|
|
5453
|
-
readonly type: "array";
|
|
5454
|
-
readonly items: {
|
|
5455
|
-
readonly type: "object";
|
|
5456
|
-
readonly properties: {
|
|
5457
|
-
readonly page: {
|
|
5458
|
-
readonly type: "string";
|
|
5459
|
-
};
|
|
5460
|
-
readonly directory: {
|
|
5461
|
-
readonly type: "string";
|
|
5462
|
-
};
|
|
5463
|
-
readonly disconnect: {
|
|
5464
|
-
readonly type: "boolean";
|
|
5465
|
-
readonly default: false;
|
|
5466
|
-
};
|
|
5467
|
-
readonly group: {
|
|
5468
|
-
readonly type: "string";
|
|
5469
|
-
};
|
|
5470
|
-
readonly label: {
|
|
5471
|
-
readonly type: "string";
|
|
5472
|
-
};
|
|
5473
|
-
readonly href: {
|
|
5474
|
-
readonly type: "string";
|
|
5475
|
-
};
|
|
5476
|
-
readonly external: {
|
|
5477
|
-
readonly type: "boolean";
|
|
5478
|
-
};
|
|
5479
|
-
readonly labelTranslationKey: {
|
|
5480
|
-
readonly type: "string";
|
|
5481
|
-
};
|
|
5482
|
-
readonly groupTranslationKey: {
|
|
5483
|
-
readonly type: "string";
|
|
5484
|
-
};
|
|
5485
|
-
readonly icon: {
|
|
5486
|
-
readonly oneOf: readonly [{
|
|
5487
|
-
readonly type: "string";
|
|
5488
|
-
}, {
|
|
5489
|
-
readonly type: "object";
|
|
5490
|
-
readonly properties: {
|
|
5491
|
-
readonly srcSet: {
|
|
5492
|
-
readonly type: "string";
|
|
5493
|
-
};
|
|
5494
|
-
};
|
|
5495
|
-
readonly required: readonly ["srcSet"];
|
|
5496
|
-
}];
|
|
5497
|
-
};
|
|
5498
|
-
readonly separator: {
|
|
5499
|
-
readonly type: "string";
|
|
5500
|
-
};
|
|
5501
|
-
readonly separatorLine: {
|
|
5502
|
-
readonly type: "boolean";
|
|
5503
|
-
};
|
|
5504
|
-
readonly linePosition: {
|
|
5505
|
-
readonly type: "string";
|
|
5506
|
-
readonly enum: readonly ["top", "bottom"];
|
|
5507
|
-
readonly default: "top";
|
|
5508
|
-
};
|
|
5509
|
-
readonly version: {
|
|
5510
|
-
readonly type: "string";
|
|
5511
|
-
};
|
|
5512
|
-
readonly menuStyle: {
|
|
5513
|
-
readonly type: "string";
|
|
5514
|
-
readonly enum: readonly ["drilldown"];
|
|
5515
|
-
};
|
|
5516
|
-
readonly expanded: {
|
|
5517
|
-
readonly type: "string";
|
|
5518
|
-
readonly const: "always";
|
|
5519
|
-
};
|
|
5520
|
-
readonly selectFirstItemOnExpand: {
|
|
5521
|
-
readonly type: "boolean";
|
|
5522
|
-
};
|
|
5523
|
-
readonly flatten: {
|
|
5524
|
-
readonly type: "boolean";
|
|
5525
|
-
};
|
|
5526
|
-
readonly linkedSidebars: {
|
|
5527
|
-
readonly type: "array";
|
|
5528
|
-
readonly items: {
|
|
5529
|
-
readonly type: "string";
|
|
5530
|
-
};
|
|
5531
|
-
};
|
|
5532
|
-
readonly items: {
|
|
5533
|
-
readonly type: "array";
|
|
5534
|
-
readonly items: {
|
|
5535
|
-
readonly type: "object";
|
|
5536
|
-
readonly additionalProperties: true;
|
|
5537
|
-
};
|
|
5538
|
-
};
|
|
5539
|
-
};
|
|
5540
|
-
};
|
|
5285
|
+
label: {
|
|
5286
|
+
type: "string";
|
|
5541
5287
|
};
|
|
5542
|
-
|
|
5543
|
-
|
|
5288
|
+
external: {
|
|
5289
|
+
type: "boolean";
|
|
5544
5290
|
};
|
|
5545
|
-
|
|
5546
|
-
|
|
5291
|
+
labelTranslationKey: {
|
|
5292
|
+
type: "string";
|
|
5547
5293
|
};
|
|
5548
|
-
|
|
5549
|
-
|
|
5550
|
-
readonly default: false;
|
|
5294
|
+
groupTranslationKey: {
|
|
5295
|
+
type: "string";
|
|
5551
5296
|
};
|
|
5552
|
-
|
|
5553
|
-
|
|
5297
|
+
separator: {
|
|
5298
|
+
type: "string";
|
|
5554
5299
|
};
|
|
5555
|
-
|
|
5556
|
-
|
|
5300
|
+
version: {
|
|
5301
|
+
type: "string";
|
|
5557
5302
|
};
|
|
5558
|
-
|
|
5559
|
-
|
|
5303
|
+
menuStyle: {
|
|
5304
|
+
type: "string";
|
|
5305
|
+
enum: "drilldown"[];
|
|
5560
5306
|
};
|
|
5561
|
-
|
|
5562
|
-
|
|
5307
|
+
expanded: {
|
|
5308
|
+
type: "string";
|
|
5309
|
+
const: "always";
|
|
5563
5310
|
};
|
|
5564
|
-
|
|
5565
|
-
|
|
5311
|
+
selectFirstItemOnExpand: {
|
|
5312
|
+
type: "boolean";
|
|
5566
5313
|
};
|
|
5567
|
-
|
|
5568
|
-
|
|
5314
|
+
flatten: {
|
|
5315
|
+
type: "boolean";
|
|
5569
5316
|
};
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
}
|
|
5574
|
-
|
|
5575
|
-
readonly properties: {
|
|
5576
|
-
readonly srcSet: {
|
|
5577
|
-
readonly type: "string";
|
|
5578
|
-
};
|
|
5579
|
-
};
|
|
5580
|
-
readonly required: readonly ["srcSet"];
|
|
5581
|
-
}];
|
|
5317
|
+
linkedSidebars: {
|
|
5318
|
+
items: {
|
|
5319
|
+
type: "string";
|
|
5320
|
+
};
|
|
5321
|
+
type: "array";
|
|
5582
5322
|
};
|
|
5583
|
-
|
|
5584
|
-
|
|
5323
|
+
};
|
|
5324
|
+
};
|
|
5325
|
+
type: "array";
|
|
5326
|
+
};
|
|
5327
|
+
description: {
|
|
5328
|
+
type: "string";
|
|
5329
|
+
};
|
|
5330
|
+
filters: {
|
|
5331
|
+
items: {
|
|
5332
|
+
type: "object";
|
|
5333
|
+
properties: {
|
|
5334
|
+
title: {
|
|
5335
|
+
type: "string";
|
|
5585
5336
|
};
|
|
5586
|
-
|
|
5587
|
-
|
|
5337
|
+
property: {
|
|
5338
|
+
type: "string";
|
|
5588
5339
|
};
|
|
5589
|
-
|
|
5590
|
-
|
|
5591
|
-
|
|
5592
|
-
readonly default: "top";
|
|
5340
|
+
type: {
|
|
5341
|
+
type: "string";
|
|
5342
|
+
enum: ("select" | "checkboxes" | "date-range")[];
|
|
5593
5343
|
};
|
|
5594
|
-
|
|
5595
|
-
|
|
5344
|
+
titleTranslationKey: {
|
|
5345
|
+
type: "string";
|
|
5596
5346
|
};
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
readonly enum: readonly ["drilldown"];
|
|
5347
|
+
parentFilter: {
|
|
5348
|
+
type: "string";
|
|
5600
5349
|
};
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
|
|
5350
|
+
valuesMapping: {
|
|
5351
|
+
type: "object";
|
|
5352
|
+
additionalProperties: any;
|
|
5604
5353
|
};
|
|
5605
|
-
|
|
5606
|
-
|
|
5354
|
+
missingCategoryName: {
|
|
5355
|
+
type: "string";
|
|
5607
5356
|
};
|
|
5608
|
-
|
|
5609
|
-
|
|
5357
|
+
missingCategoryNameTranslationKey: {
|
|
5358
|
+
type: "string";
|
|
5610
5359
|
};
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
|
|
5614
|
-
readonly type: "string";
|
|
5615
|
-
};
|
|
5360
|
+
options: {
|
|
5361
|
+
items: any;
|
|
5362
|
+
type: "array";
|
|
5616
5363
|
};
|
|
5617
5364
|
};
|
|
5618
|
-
|
|
5365
|
+
additionalProperties: false;
|
|
5366
|
+
required: ("title" | "property")[];
|
|
5619
5367
|
};
|
|
5368
|
+
type: "array";
|
|
5620
5369
|
};
|
|
5621
|
-
|
|
5622
|
-
|
|
5370
|
+
groupByFirstFilter: {
|
|
5371
|
+
type: "boolean";
|
|
5623
5372
|
};
|
|
5624
|
-
|
|
5625
|
-
|
|
5373
|
+
filterValuesCasing: {
|
|
5374
|
+
type: "string";
|
|
5375
|
+
enum: ("sentence" | "original" | "lowercase" | "uppercase")[];
|
|
5626
5376
|
};
|
|
5627
|
-
|
|
5628
|
-
|
|
5377
|
+
requiredPermission: {
|
|
5378
|
+
type: "string";
|
|
5629
5379
|
};
|
|
5630
|
-
|
|
5631
|
-
|
|
5380
|
+
separateVersions: {
|
|
5381
|
+
type: "boolean";
|
|
5632
5382
|
};
|
|
5633
|
-
|
|
5634
|
-
|
|
5383
|
+
titleTranslationKey: {
|
|
5384
|
+
type: "string";
|
|
5635
5385
|
};
|
|
5636
|
-
|
|
5637
|
-
|
|
5386
|
+
descriptionTranslationKey: {
|
|
5387
|
+
type: "string";
|
|
5638
5388
|
};
|
|
5639
5389
|
};
|
|
5390
|
+
additionalProperties: true;
|
|
5391
|
+
required: ("slug" | "items")[];
|
|
5640
5392
|
};
|
|
5641
5393
|
};
|
|
5642
5394
|
};
|
|
5643
|
-
|
|
5644
|
-
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
|
|
5648
|
-
readonly ignoreNonCompliant: {
|
|
5649
|
-
readonly type: "boolean";
|
|
5650
|
-
readonly default: false;
|
|
5395
|
+
scorecard: {
|
|
5396
|
+
type: "object";
|
|
5397
|
+
properties: {
|
|
5398
|
+
ignoreNonCompliant: {
|
|
5399
|
+
type: "boolean";
|
|
5651
5400
|
};
|
|
5652
|
-
|
|
5653
|
-
|
|
5654
|
-
|
|
5655
|
-
|
|
5656
|
-
|
|
5657
|
-
};
|
|
5658
|
-
readonly label: {
|
|
5659
|
-
readonly type: "string";
|
|
5401
|
+
teamMetadataProperty: {
|
|
5402
|
+
type: "object";
|
|
5403
|
+
properties: {
|
|
5404
|
+
property: {
|
|
5405
|
+
type: "string";
|
|
5660
5406
|
};
|
|
5661
|
-
|
|
5662
|
-
|
|
5407
|
+
label: {
|
|
5408
|
+
type: "string";
|
|
5663
5409
|
};
|
|
5664
5410
|
};
|
|
5665
5411
|
};
|
|
5666
|
-
|
|
5667
|
-
|
|
5668
|
-
|
|
5669
|
-
|
|
5670
|
-
|
|
5671
|
-
|
|
5672
|
-
readonly name: {
|
|
5673
|
-
readonly type: "string";
|
|
5412
|
+
levels: {
|
|
5413
|
+
items: {
|
|
5414
|
+
type: "object";
|
|
5415
|
+
properties: {
|
|
5416
|
+
name: {
|
|
5417
|
+
type: "string";
|
|
5674
5418
|
};
|
|
5675
|
-
|
|
5676
|
-
|
|
5677
|
-
|
|
5678
|
-
|
|
5679
|
-
|
|
5680
|
-
|
|
5681
|
-
|
|
5419
|
+
rules: {
|
|
5420
|
+
type: "object";
|
|
5421
|
+
additionalProperties: {
|
|
5422
|
+
oneOf: ({
|
|
5423
|
+
type: "string";
|
|
5424
|
+
} | {
|
|
5425
|
+
type: "object";
|
|
5426
|
+
})[];
|
|
5682
5427
|
};
|
|
5683
5428
|
};
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
|
|
5687
|
-
|
|
5688
|
-
|
|
5689
|
-
|
|
5690
|
-
readonly type: "object";
|
|
5691
|
-
}];
|
|
5429
|
+
color: {
|
|
5430
|
+
type: "string";
|
|
5431
|
+
};
|
|
5432
|
+
extends: {
|
|
5433
|
+
items: {
|
|
5434
|
+
type: "string";
|
|
5692
5435
|
};
|
|
5436
|
+
type: "array";
|
|
5693
5437
|
};
|
|
5694
5438
|
};
|
|
5695
|
-
|
|
5439
|
+
additionalProperties: false;
|
|
5440
|
+
required: "name"[];
|
|
5696
5441
|
};
|
|
5442
|
+
type: "array";
|
|
5697
5443
|
};
|
|
5698
|
-
|
|
5699
|
-
|
|
5700
|
-
|
|
5701
|
-
|
|
5702
|
-
|
|
5703
|
-
|
|
5704
|
-
|
|
5705
|
-
|
|
5706
|
-
|
|
5707
|
-
|
|
5708
|
-
readonly type: "object";
|
|
5709
|
-
readonly required: readonly ["metadata"];
|
|
5710
|
-
readonly properties: {
|
|
5711
|
-
readonly metadata: {
|
|
5712
|
-
readonly type: "object";
|
|
5713
|
-
readonly additionalProperties: {
|
|
5714
|
-
readonly type: "string";
|
|
5715
|
-
};
|
|
5444
|
+
targets: {
|
|
5445
|
+
items: {
|
|
5446
|
+
type: "object";
|
|
5447
|
+
properties: {
|
|
5448
|
+
where: {
|
|
5449
|
+
type: "object";
|
|
5450
|
+
properties: {
|
|
5451
|
+
metadata: {
|
|
5452
|
+
type: "object";
|
|
5453
|
+
additionalProperties: any;
|
|
5716
5454
|
};
|
|
5717
5455
|
};
|
|
5718
|
-
|
|
5456
|
+
additionalProperties: false;
|
|
5457
|
+
required: "metadata"[];
|
|
5458
|
+
};
|
|
5459
|
+
minimumLevel: {
|
|
5460
|
+
type: "string";
|
|
5719
5461
|
};
|
|
5720
5462
|
};
|
|
5721
|
-
|
|
5463
|
+
additionalProperties: false;
|
|
5464
|
+
required: "where"[];
|
|
5722
5465
|
};
|
|
5466
|
+
type: "array";
|
|
5723
5467
|
};
|
|
5724
5468
|
};
|
|
5469
|
+
additionalProperties: true;
|
|
5470
|
+
required: never[];
|
|
5725
5471
|
};
|
|
5726
5472
|
};
|
|
5727
|
-
|
|
5728
|
-
readonly default: {};
|
|
5473
|
+
additionalProperties: true;
|
|
5729
5474
|
};
|
|
5730
|
-
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
|
|
5475
|
+
reunite: {
|
|
5476
|
+
type: "object";
|
|
5477
|
+
properties: {
|
|
5478
|
+
ignoreLinkChecker: {
|
|
5479
|
+
type: "boolean";
|
|
5735
5480
|
};
|
|
5736
5481
|
};
|
|
5737
|
-
|
|
5482
|
+
additionalProperties: false;
|
|
5738
5483
|
};
|
|
5739
5484
|
};
|
|
5740
|
-
readonly default: {
|
|
5741
|
-
readonly redirects: {};
|
|
5742
|
-
};
|
|
5743
5485
|
};
|
|
5744
5486
|
};
|
|
5745
5487
|
readonly licenseKey: {
|
|
@@ -5967,6 +5709,16 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
5967
5709
|
readonly required: readonly ["root"];
|
|
5968
5710
|
};
|
|
5969
5711
|
};
|
|
5712
|
+
readonly rules: {
|
|
5713
|
+
readonly type: "object";
|
|
5714
|
+
readonly additionalProperties: {
|
|
5715
|
+
readonly oneOf: readonly [{
|
|
5716
|
+
readonly type: "string";
|
|
5717
|
+
}, {
|
|
5718
|
+
readonly type: "object";
|
|
5719
|
+
}];
|
|
5720
|
+
};
|
|
5721
|
+
};
|
|
5970
5722
|
readonly ssoOnPrem: {
|
|
5971
5723
|
readonly type: "object";
|
|
5972
5724
|
readonly additionalProperties: {
|
|
@@ -7165,7 +6917,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
7165
6917
|
};
|
|
7166
6918
|
readonly text: {
|
|
7167
6919
|
readonly type: "string";
|
|
7168
|
-
readonly default: "Next
|
|
6920
|
+
readonly default: "Next page";
|
|
7169
6921
|
};
|
|
7170
6922
|
};
|
|
7171
6923
|
readonly additionalProperties: false;
|
|
@@ -7179,7 +6931,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
7179
6931
|
};
|
|
7180
6932
|
readonly text: {
|
|
7181
6933
|
readonly type: "string";
|
|
7182
|
-
readonly default: "
|
|
6934
|
+
readonly default: "Previous page";
|
|
7183
6935
|
};
|
|
7184
6936
|
};
|
|
7185
6937
|
readonly additionalProperties: false;
|
|
@@ -7574,21 +7326,13 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
7574
7326
|
};
|
|
7575
7327
|
};
|
|
7576
7328
|
};
|
|
7577
|
-
readonly
|
|
7329
|
+
readonly userMenu: {
|
|
7578
7330
|
readonly type: "object";
|
|
7579
7331
|
readonly properties: {
|
|
7580
7332
|
readonly hide: {
|
|
7581
7333
|
readonly type: "boolean";
|
|
7582
7334
|
};
|
|
7583
|
-
readonly
|
|
7584
|
-
readonly type: "string";
|
|
7585
|
-
readonly default: "Login";
|
|
7586
|
-
};
|
|
7587
|
-
readonly logoutLabel: {
|
|
7588
|
-
readonly type: "string";
|
|
7589
|
-
readonly default: "Logout";
|
|
7590
|
-
};
|
|
7591
|
-
readonly menu: {
|
|
7335
|
+
readonly items: {
|
|
7592
7336
|
readonly type: "array";
|
|
7593
7337
|
readonly items: {
|
|
7594
7338
|
readonly type: "object";
|
|
@@ -7675,6 +7419,7 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
7675
7419
|
readonly type: {
|
|
7676
7420
|
readonly type: "string";
|
|
7677
7421
|
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
7422
|
+
readonly default: "checkboxes";
|
|
7678
7423
|
};
|
|
7679
7424
|
readonly title: {
|
|
7680
7425
|
readonly type: "string";
|