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