@redocly/config 0.24.1 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/default-theme-config-schema.d.ts +824 -278
- package/lib/default-theme-config-schema.js +4 -0
- package/lib/root-config-schema.d.ts +1819 -0
- package/lib/root-config-schema.js +77 -1
- package/lib/types/api-functions-types.d.ts +17 -9
- package/lib/types/portal-shared-types.d.ts +2 -2
- package/lib-esm/default-theme-config-schema.d.ts +824 -278
- package/lib-esm/default-theme-config-schema.js +4 -0
- package/lib-esm/root-config-schema.d.ts +1819 -0
- package/lib-esm/root-config-schema.js +77 -1
- package/lib-esm/types/api-functions-types.d.ts +17 -9
- package/lib-esm/types/portal-shared-types.d.ts +2 -2
- package/package.json +4 -4
|
@@ -5036,6 +5036,95 @@ export declare const seoConfigSchema: {
|
|
|
5036
5036
|
readonly additionalProperties: false;
|
|
5037
5037
|
};
|
|
5038
5038
|
};
|
|
5039
|
+
readonly llmstxt: {
|
|
5040
|
+
readonly type: "object";
|
|
5041
|
+
readonly properties: {
|
|
5042
|
+
readonly hide: {
|
|
5043
|
+
readonly type: "boolean";
|
|
5044
|
+
readonly default: false;
|
|
5045
|
+
};
|
|
5046
|
+
readonly title: {
|
|
5047
|
+
readonly type: "string";
|
|
5048
|
+
};
|
|
5049
|
+
readonly description: {
|
|
5050
|
+
readonly type: "string";
|
|
5051
|
+
};
|
|
5052
|
+
readonly details: {
|
|
5053
|
+
readonly type: "object";
|
|
5054
|
+
readonly properties: {
|
|
5055
|
+
readonly path: {
|
|
5056
|
+
readonly type: "string";
|
|
5057
|
+
};
|
|
5058
|
+
readonly content: {
|
|
5059
|
+
readonly type: "string";
|
|
5060
|
+
};
|
|
5061
|
+
};
|
|
5062
|
+
readonly additionalProperties: false;
|
|
5063
|
+
};
|
|
5064
|
+
readonly excludeFiles: {
|
|
5065
|
+
readonly type: "array";
|
|
5066
|
+
readonly items: {
|
|
5067
|
+
readonly type: "string";
|
|
5068
|
+
};
|
|
5069
|
+
readonly default: readonly [];
|
|
5070
|
+
};
|
|
5071
|
+
readonly sections: {
|
|
5072
|
+
readonly type: "array";
|
|
5073
|
+
readonly items: {
|
|
5074
|
+
readonly type: "object";
|
|
5075
|
+
readonly properties: {
|
|
5076
|
+
readonly title: {
|
|
5077
|
+
readonly type: "string";
|
|
5078
|
+
};
|
|
5079
|
+
readonly description: {
|
|
5080
|
+
readonly type: "string";
|
|
5081
|
+
};
|
|
5082
|
+
readonly includeFiles: {
|
|
5083
|
+
readonly type: "array";
|
|
5084
|
+
readonly items: {
|
|
5085
|
+
readonly type: "string";
|
|
5086
|
+
};
|
|
5087
|
+
readonly default: readonly [];
|
|
5088
|
+
};
|
|
5089
|
+
readonly excludeFiles: {
|
|
5090
|
+
readonly type: "array";
|
|
5091
|
+
readonly items: {
|
|
5092
|
+
readonly type: "string";
|
|
5093
|
+
};
|
|
5094
|
+
readonly default: readonly [];
|
|
5095
|
+
};
|
|
5096
|
+
};
|
|
5097
|
+
readonly required: readonly ["title"];
|
|
5098
|
+
readonly additionalProperties: false;
|
|
5099
|
+
};
|
|
5100
|
+
};
|
|
5101
|
+
};
|
|
5102
|
+
readonly default: {
|
|
5103
|
+
readonly hide: false;
|
|
5104
|
+
readonly title: undefined;
|
|
5105
|
+
readonly description: undefined;
|
|
5106
|
+
readonly details: undefined;
|
|
5107
|
+
readonly sections: readonly [{
|
|
5108
|
+
readonly title: "Optional";
|
|
5109
|
+
readonly includeFiles: readonly ["**/*"];
|
|
5110
|
+
readonly excludeFiles: readonly [];
|
|
5111
|
+
}];
|
|
5112
|
+
};
|
|
5113
|
+
readonly additionalProperties: false;
|
|
5114
|
+
};
|
|
5115
|
+
};
|
|
5116
|
+
readonly default: {
|
|
5117
|
+
readonly llmstxt: {
|
|
5118
|
+
readonly hide: false;
|
|
5119
|
+
readonly title: undefined;
|
|
5120
|
+
readonly description: undefined;
|
|
5121
|
+
readonly details: undefined;
|
|
5122
|
+
readonly sections: readonly [{
|
|
5123
|
+
readonly title: "Optional";
|
|
5124
|
+
readonly includeFiles: readonly ["**/*"];
|
|
5125
|
+
readonly excludeFiles: readonly [];
|
|
5126
|
+
}];
|
|
5127
|
+
};
|
|
5039
5128
|
};
|
|
5040
5129
|
readonly additionalProperties: false;
|
|
5041
5130
|
};
|
|
@@ -5676,6 +5765,95 @@ export declare const redoclyConfigSchema: {
|
|
|
5676
5765
|
readonly additionalProperties: false;
|
|
5677
5766
|
};
|
|
5678
5767
|
};
|
|
5768
|
+
readonly llmstxt: {
|
|
5769
|
+
readonly type: "object";
|
|
5770
|
+
readonly properties: {
|
|
5771
|
+
readonly hide: {
|
|
5772
|
+
readonly type: "boolean";
|
|
5773
|
+
readonly default: false;
|
|
5774
|
+
};
|
|
5775
|
+
readonly title: {
|
|
5776
|
+
readonly type: "string";
|
|
5777
|
+
};
|
|
5778
|
+
readonly description: {
|
|
5779
|
+
readonly type: "string";
|
|
5780
|
+
};
|
|
5781
|
+
readonly details: {
|
|
5782
|
+
readonly type: "object";
|
|
5783
|
+
readonly properties: {
|
|
5784
|
+
readonly path: {
|
|
5785
|
+
readonly type: "string";
|
|
5786
|
+
};
|
|
5787
|
+
readonly content: {
|
|
5788
|
+
readonly type: "string";
|
|
5789
|
+
};
|
|
5790
|
+
};
|
|
5791
|
+
readonly additionalProperties: false;
|
|
5792
|
+
};
|
|
5793
|
+
readonly excludeFiles: {
|
|
5794
|
+
readonly type: "array";
|
|
5795
|
+
readonly items: {
|
|
5796
|
+
readonly type: "string";
|
|
5797
|
+
};
|
|
5798
|
+
readonly default: readonly [];
|
|
5799
|
+
};
|
|
5800
|
+
readonly sections: {
|
|
5801
|
+
readonly type: "array";
|
|
5802
|
+
readonly items: {
|
|
5803
|
+
readonly type: "object";
|
|
5804
|
+
readonly properties: {
|
|
5805
|
+
readonly title: {
|
|
5806
|
+
readonly type: "string";
|
|
5807
|
+
};
|
|
5808
|
+
readonly description: {
|
|
5809
|
+
readonly type: "string";
|
|
5810
|
+
};
|
|
5811
|
+
readonly includeFiles: {
|
|
5812
|
+
readonly type: "array";
|
|
5813
|
+
readonly items: {
|
|
5814
|
+
readonly type: "string";
|
|
5815
|
+
};
|
|
5816
|
+
readonly default: readonly [];
|
|
5817
|
+
};
|
|
5818
|
+
readonly excludeFiles: {
|
|
5819
|
+
readonly type: "array";
|
|
5820
|
+
readonly items: {
|
|
5821
|
+
readonly type: "string";
|
|
5822
|
+
};
|
|
5823
|
+
readonly default: readonly [];
|
|
5824
|
+
};
|
|
5825
|
+
};
|
|
5826
|
+
readonly required: readonly ["title"];
|
|
5827
|
+
readonly additionalProperties: false;
|
|
5828
|
+
};
|
|
5829
|
+
};
|
|
5830
|
+
};
|
|
5831
|
+
readonly default: {
|
|
5832
|
+
readonly hide: false;
|
|
5833
|
+
readonly title: undefined;
|
|
5834
|
+
readonly description: undefined;
|
|
5835
|
+
readonly details: undefined;
|
|
5836
|
+
readonly sections: readonly [{
|
|
5837
|
+
readonly title: "Optional";
|
|
5838
|
+
readonly includeFiles: readonly ["**/*"];
|
|
5839
|
+
readonly excludeFiles: readonly [];
|
|
5840
|
+
}];
|
|
5841
|
+
};
|
|
5842
|
+
readonly additionalProperties: false;
|
|
5843
|
+
};
|
|
5844
|
+
};
|
|
5845
|
+
readonly default: {
|
|
5846
|
+
readonly llmstxt: {
|
|
5847
|
+
readonly hide: false;
|
|
5848
|
+
readonly title: undefined;
|
|
5849
|
+
readonly description: undefined;
|
|
5850
|
+
readonly details: undefined;
|
|
5851
|
+
readonly sections: readonly [{
|
|
5852
|
+
readonly title: "Optional";
|
|
5853
|
+
readonly includeFiles: readonly ["**/*"];
|
|
5854
|
+
readonly excludeFiles: readonly [];
|
|
5855
|
+
}];
|
|
5856
|
+
};
|
|
5679
5857
|
};
|
|
5680
5858
|
readonly additionalProperties: false;
|
|
5681
5859
|
};
|
|
@@ -14711,6 +14889,276 @@ export declare const redoclyConfigSchema: {
|
|
|
14711
14889
|
};
|
|
14712
14890
|
};
|
|
14713
14891
|
};
|
|
14892
|
+
readonly catalogClassic: {
|
|
14893
|
+
readonly type: "object";
|
|
14894
|
+
readonly patternProperties: {
|
|
14895
|
+
readonly '.*': {
|
|
14896
|
+
readonly type: "object";
|
|
14897
|
+
readonly additionalProperties: true;
|
|
14898
|
+
readonly required: readonly ["slug", "items"];
|
|
14899
|
+
readonly properties: {
|
|
14900
|
+
readonly slug: {
|
|
14901
|
+
readonly type: "string";
|
|
14902
|
+
};
|
|
14903
|
+
readonly filters: {
|
|
14904
|
+
readonly type: "array";
|
|
14905
|
+
readonly items: {
|
|
14906
|
+
readonly type: "object";
|
|
14907
|
+
readonly additionalProperties: false;
|
|
14908
|
+
readonly required: readonly ["title", "property"];
|
|
14909
|
+
readonly properties: {
|
|
14910
|
+
readonly type: {
|
|
14911
|
+
readonly type: "string";
|
|
14912
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
14913
|
+
readonly default: "checkboxes";
|
|
14914
|
+
};
|
|
14915
|
+
readonly title: {
|
|
14916
|
+
readonly type: "string";
|
|
14917
|
+
};
|
|
14918
|
+
readonly titleTranslationKey: {
|
|
14919
|
+
readonly type: "string";
|
|
14920
|
+
};
|
|
14921
|
+
readonly property: {
|
|
14922
|
+
readonly type: "string";
|
|
14923
|
+
};
|
|
14924
|
+
readonly parentFilter: {
|
|
14925
|
+
readonly type: "string";
|
|
14926
|
+
};
|
|
14927
|
+
readonly valuesMapping: {
|
|
14928
|
+
readonly type: "object";
|
|
14929
|
+
readonly additionalProperties: {
|
|
14930
|
+
readonly type: "string";
|
|
14931
|
+
};
|
|
14932
|
+
};
|
|
14933
|
+
readonly missingCategoryName: {
|
|
14934
|
+
readonly type: "string";
|
|
14935
|
+
};
|
|
14936
|
+
readonly missingCategoryNameTranslationKey: {
|
|
14937
|
+
readonly type: "string";
|
|
14938
|
+
};
|
|
14939
|
+
readonly options: {
|
|
14940
|
+
readonly type: "array";
|
|
14941
|
+
readonly items: {
|
|
14942
|
+
readonly type: "string";
|
|
14943
|
+
};
|
|
14944
|
+
};
|
|
14945
|
+
};
|
|
14946
|
+
};
|
|
14947
|
+
};
|
|
14948
|
+
readonly groupByFirstFilter: {
|
|
14949
|
+
readonly type: "boolean";
|
|
14950
|
+
};
|
|
14951
|
+
readonly filterValuesCasing: {
|
|
14952
|
+
readonly type: "string";
|
|
14953
|
+
readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
|
|
14954
|
+
};
|
|
14955
|
+
readonly items: {
|
|
14956
|
+
readonly type: "array";
|
|
14957
|
+
readonly items: {
|
|
14958
|
+
readonly properties: {
|
|
14959
|
+
readonly items: {
|
|
14960
|
+
readonly type: "array";
|
|
14961
|
+
readonly items: {
|
|
14962
|
+
readonly type: "object";
|
|
14963
|
+
readonly properties: {
|
|
14964
|
+
readonly page: {
|
|
14965
|
+
readonly type: "string";
|
|
14966
|
+
};
|
|
14967
|
+
readonly directory: {
|
|
14968
|
+
readonly type: "string";
|
|
14969
|
+
};
|
|
14970
|
+
readonly disconnect: {
|
|
14971
|
+
readonly type: "boolean";
|
|
14972
|
+
readonly default: false;
|
|
14973
|
+
};
|
|
14974
|
+
readonly group: {
|
|
14975
|
+
readonly type: "string";
|
|
14976
|
+
};
|
|
14977
|
+
readonly label: {
|
|
14978
|
+
readonly type: "string";
|
|
14979
|
+
};
|
|
14980
|
+
readonly href: {
|
|
14981
|
+
readonly type: "string";
|
|
14982
|
+
};
|
|
14983
|
+
readonly external: {
|
|
14984
|
+
readonly type: "boolean";
|
|
14985
|
+
};
|
|
14986
|
+
readonly labelTranslationKey: {
|
|
14987
|
+
readonly type: "string";
|
|
14988
|
+
};
|
|
14989
|
+
readonly groupTranslationKey: {
|
|
14990
|
+
readonly type: "string";
|
|
14991
|
+
};
|
|
14992
|
+
readonly icon: {
|
|
14993
|
+
readonly oneOf: readonly [{
|
|
14994
|
+
readonly type: "string";
|
|
14995
|
+
}, {
|
|
14996
|
+
readonly type: "object";
|
|
14997
|
+
readonly properties: {
|
|
14998
|
+
readonly srcSet: {
|
|
14999
|
+
readonly type: "string";
|
|
15000
|
+
};
|
|
15001
|
+
};
|
|
15002
|
+
readonly required: readonly ["srcSet"];
|
|
15003
|
+
}];
|
|
15004
|
+
};
|
|
15005
|
+
readonly separator: {
|
|
15006
|
+
readonly type: "string";
|
|
15007
|
+
};
|
|
15008
|
+
readonly separatorLine: {
|
|
15009
|
+
readonly type: "boolean";
|
|
15010
|
+
};
|
|
15011
|
+
readonly linePosition: {
|
|
15012
|
+
readonly type: "string";
|
|
15013
|
+
readonly enum: readonly ["top", "bottom"];
|
|
15014
|
+
readonly default: "top";
|
|
15015
|
+
};
|
|
15016
|
+
readonly version: {
|
|
15017
|
+
readonly type: "string";
|
|
15018
|
+
};
|
|
15019
|
+
readonly menuStyle: {
|
|
15020
|
+
readonly type: "string";
|
|
15021
|
+
readonly enum: readonly ["drilldown"];
|
|
15022
|
+
};
|
|
15023
|
+
readonly expanded: {
|
|
15024
|
+
readonly type: "string";
|
|
15025
|
+
readonly const: "always";
|
|
15026
|
+
};
|
|
15027
|
+
readonly selectFirstItemOnExpand: {
|
|
15028
|
+
readonly type: "boolean";
|
|
15029
|
+
};
|
|
15030
|
+
readonly flatten: {
|
|
15031
|
+
readonly type: "boolean";
|
|
15032
|
+
};
|
|
15033
|
+
readonly linkedSidebars: {
|
|
15034
|
+
readonly type: "array";
|
|
15035
|
+
readonly items: {
|
|
15036
|
+
readonly type: "string";
|
|
15037
|
+
};
|
|
15038
|
+
};
|
|
15039
|
+
readonly items: {
|
|
15040
|
+
readonly type: "array";
|
|
15041
|
+
readonly items: {
|
|
15042
|
+
readonly type: "object";
|
|
15043
|
+
readonly additionalProperties: true;
|
|
15044
|
+
};
|
|
15045
|
+
};
|
|
15046
|
+
readonly rbac: {
|
|
15047
|
+
readonly type: "object";
|
|
15048
|
+
readonly additionalProperties: {
|
|
15049
|
+
readonly type: "string";
|
|
15050
|
+
};
|
|
15051
|
+
};
|
|
15052
|
+
};
|
|
15053
|
+
};
|
|
15054
|
+
};
|
|
15055
|
+
readonly page: {
|
|
15056
|
+
readonly type: "string";
|
|
15057
|
+
};
|
|
15058
|
+
readonly directory: {
|
|
15059
|
+
readonly type: "string";
|
|
15060
|
+
};
|
|
15061
|
+
readonly disconnect: {
|
|
15062
|
+
readonly type: "boolean";
|
|
15063
|
+
readonly default: false;
|
|
15064
|
+
};
|
|
15065
|
+
readonly group: {
|
|
15066
|
+
readonly type: "string";
|
|
15067
|
+
};
|
|
15068
|
+
readonly label: {
|
|
15069
|
+
readonly type: "string";
|
|
15070
|
+
};
|
|
15071
|
+
readonly href: {
|
|
15072
|
+
readonly type: "string";
|
|
15073
|
+
};
|
|
15074
|
+
readonly external: {
|
|
15075
|
+
readonly type: "boolean";
|
|
15076
|
+
};
|
|
15077
|
+
readonly labelTranslationKey: {
|
|
15078
|
+
readonly type: "string";
|
|
15079
|
+
};
|
|
15080
|
+
readonly groupTranslationKey: {
|
|
15081
|
+
readonly type: "string";
|
|
15082
|
+
};
|
|
15083
|
+
readonly icon: {
|
|
15084
|
+
readonly oneOf: readonly [{
|
|
15085
|
+
readonly type: "string";
|
|
15086
|
+
}, {
|
|
15087
|
+
readonly type: "object";
|
|
15088
|
+
readonly properties: {
|
|
15089
|
+
readonly srcSet: {
|
|
15090
|
+
readonly type: "string";
|
|
15091
|
+
};
|
|
15092
|
+
};
|
|
15093
|
+
readonly required: readonly ["srcSet"];
|
|
15094
|
+
}];
|
|
15095
|
+
};
|
|
15096
|
+
readonly separator: {
|
|
15097
|
+
readonly type: "string";
|
|
15098
|
+
};
|
|
15099
|
+
readonly separatorLine: {
|
|
15100
|
+
readonly type: "boolean";
|
|
15101
|
+
};
|
|
15102
|
+
readonly linePosition: {
|
|
15103
|
+
readonly type: "string";
|
|
15104
|
+
readonly enum: readonly ["top", "bottom"];
|
|
15105
|
+
readonly default: "top";
|
|
15106
|
+
};
|
|
15107
|
+
readonly version: {
|
|
15108
|
+
readonly type: "string";
|
|
15109
|
+
};
|
|
15110
|
+
readonly menuStyle: {
|
|
15111
|
+
readonly type: "string";
|
|
15112
|
+
readonly enum: readonly ["drilldown"];
|
|
15113
|
+
};
|
|
15114
|
+
readonly expanded: {
|
|
15115
|
+
readonly type: "string";
|
|
15116
|
+
readonly const: "always";
|
|
15117
|
+
};
|
|
15118
|
+
readonly selectFirstItemOnExpand: {
|
|
15119
|
+
readonly type: "boolean";
|
|
15120
|
+
};
|
|
15121
|
+
readonly flatten: {
|
|
15122
|
+
readonly type: "boolean";
|
|
15123
|
+
};
|
|
15124
|
+
readonly linkedSidebars: {
|
|
15125
|
+
readonly type: "array";
|
|
15126
|
+
readonly items: {
|
|
15127
|
+
readonly type: "string";
|
|
15128
|
+
};
|
|
15129
|
+
};
|
|
15130
|
+
readonly rbac: {
|
|
15131
|
+
readonly type: "object";
|
|
15132
|
+
readonly additionalProperties: {
|
|
15133
|
+
readonly type: "string";
|
|
15134
|
+
};
|
|
15135
|
+
};
|
|
15136
|
+
};
|
|
15137
|
+
readonly type: "object";
|
|
15138
|
+
};
|
|
15139
|
+
};
|
|
15140
|
+
readonly requiredPermission: {
|
|
15141
|
+
readonly type: "string";
|
|
15142
|
+
};
|
|
15143
|
+
readonly separateVersions: {
|
|
15144
|
+
readonly type: "boolean";
|
|
15145
|
+
};
|
|
15146
|
+
readonly title: {
|
|
15147
|
+
readonly type: "string";
|
|
15148
|
+
};
|
|
15149
|
+
readonly titleTranslationKey: {
|
|
15150
|
+
readonly type: "string";
|
|
15151
|
+
};
|
|
15152
|
+
readonly description: {
|
|
15153
|
+
readonly type: "string";
|
|
15154
|
+
};
|
|
15155
|
+
readonly descriptionTranslationKey: {
|
|
15156
|
+
readonly type: "string";
|
|
15157
|
+
};
|
|
15158
|
+
};
|
|
15159
|
+
};
|
|
15160
|
+
};
|
|
15161
|
+
};
|
|
14714
15162
|
readonly scorecard: {
|
|
14715
15163
|
readonly type: "object";
|
|
14716
15164
|
readonly additionalProperties: true;
|
|
@@ -18573,6 +19021,9 @@ export declare const redoclyConfigSchema: {
|
|
|
18573
19021
|
};
|
|
18574
19022
|
readonly additionalProperties: false;
|
|
18575
19023
|
};
|
|
19024
|
+
/**
|
|
19025
|
+
* @deprecated Should use `catalogClassic` instead
|
|
19026
|
+
*/
|
|
18576
19027
|
readonly catalog: {
|
|
18577
19028
|
readonly type: "object";
|
|
18578
19029
|
readonly patternProperties: {
|
|
@@ -18843,6 +19294,276 @@ export declare const redoclyConfigSchema: {
|
|
|
18843
19294
|
};
|
|
18844
19295
|
};
|
|
18845
19296
|
};
|
|
19297
|
+
readonly catalogClassic: {
|
|
19298
|
+
readonly type: "object";
|
|
19299
|
+
readonly patternProperties: {
|
|
19300
|
+
readonly '.*': {
|
|
19301
|
+
readonly type: "object";
|
|
19302
|
+
readonly additionalProperties: true;
|
|
19303
|
+
readonly required: readonly ["slug", "items"];
|
|
19304
|
+
readonly properties: {
|
|
19305
|
+
readonly slug: {
|
|
19306
|
+
readonly type: "string";
|
|
19307
|
+
};
|
|
19308
|
+
readonly filters: {
|
|
19309
|
+
readonly type: "array";
|
|
19310
|
+
readonly items: {
|
|
19311
|
+
readonly type: "object";
|
|
19312
|
+
readonly additionalProperties: false;
|
|
19313
|
+
readonly required: readonly ["title", "property"];
|
|
19314
|
+
readonly properties: {
|
|
19315
|
+
readonly type: {
|
|
19316
|
+
readonly type: "string";
|
|
19317
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
19318
|
+
readonly default: "checkboxes";
|
|
19319
|
+
};
|
|
19320
|
+
readonly title: {
|
|
19321
|
+
readonly type: "string";
|
|
19322
|
+
};
|
|
19323
|
+
readonly titleTranslationKey: {
|
|
19324
|
+
readonly type: "string";
|
|
19325
|
+
};
|
|
19326
|
+
readonly property: {
|
|
19327
|
+
readonly type: "string";
|
|
19328
|
+
};
|
|
19329
|
+
readonly parentFilter: {
|
|
19330
|
+
readonly type: "string";
|
|
19331
|
+
};
|
|
19332
|
+
readonly valuesMapping: {
|
|
19333
|
+
readonly type: "object";
|
|
19334
|
+
readonly additionalProperties: {
|
|
19335
|
+
readonly type: "string";
|
|
19336
|
+
};
|
|
19337
|
+
};
|
|
19338
|
+
readonly missingCategoryName: {
|
|
19339
|
+
readonly type: "string";
|
|
19340
|
+
};
|
|
19341
|
+
readonly missingCategoryNameTranslationKey: {
|
|
19342
|
+
readonly type: "string";
|
|
19343
|
+
};
|
|
19344
|
+
readonly options: {
|
|
19345
|
+
readonly type: "array";
|
|
19346
|
+
readonly items: {
|
|
19347
|
+
readonly type: "string";
|
|
19348
|
+
};
|
|
19349
|
+
};
|
|
19350
|
+
};
|
|
19351
|
+
};
|
|
19352
|
+
};
|
|
19353
|
+
readonly groupByFirstFilter: {
|
|
19354
|
+
readonly type: "boolean";
|
|
19355
|
+
};
|
|
19356
|
+
readonly filterValuesCasing: {
|
|
19357
|
+
readonly type: "string";
|
|
19358
|
+
readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
|
|
19359
|
+
};
|
|
19360
|
+
readonly items: {
|
|
19361
|
+
readonly type: "array";
|
|
19362
|
+
readonly items: {
|
|
19363
|
+
readonly properties: {
|
|
19364
|
+
readonly items: {
|
|
19365
|
+
readonly type: "array";
|
|
19366
|
+
readonly items: {
|
|
19367
|
+
readonly type: "object";
|
|
19368
|
+
readonly properties: {
|
|
19369
|
+
readonly page: {
|
|
19370
|
+
readonly type: "string";
|
|
19371
|
+
};
|
|
19372
|
+
readonly directory: {
|
|
19373
|
+
readonly type: "string";
|
|
19374
|
+
};
|
|
19375
|
+
readonly disconnect: {
|
|
19376
|
+
readonly type: "boolean";
|
|
19377
|
+
readonly default: false;
|
|
19378
|
+
};
|
|
19379
|
+
readonly group: {
|
|
19380
|
+
readonly type: "string";
|
|
19381
|
+
};
|
|
19382
|
+
readonly label: {
|
|
19383
|
+
readonly type: "string";
|
|
19384
|
+
};
|
|
19385
|
+
readonly href: {
|
|
19386
|
+
readonly type: "string";
|
|
19387
|
+
};
|
|
19388
|
+
readonly external: {
|
|
19389
|
+
readonly type: "boolean";
|
|
19390
|
+
};
|
|
19391
|
+
readonly labelTranslationKey: {
|
|
19392
|
+
readonly type: "string";
|
|
19393
|
+
};
|
|
19394
|
+
readonly groupTranslationKey: {
|
|
19395
|
+
readonly type: "string";
|
|
19396
|
+
};
|
|
19397
|
+
readonly icon: {
|
|
19398
|
+
readonly oneOf: readonly [{
|
|
19399
|
+
readonly type: "string";
|
|
19400
|
+
}, {
|
|
19401
|
+
readonly type: "object";
|
|
19402
|
+
readonly properties: {
|
|
19403
|
+
readonly srcSet: {
|
|
19404
|
+
readonly type: "string";
|
|
19405
|
+
};
|
|
19406
|
+
};
|
|
19407
|
+
readonly required: readonly ["srcSet"];
|
|
19408
|
+
}];
|
|
19409
|
+
};
|
|
19410
|
+
readonly separator: {
|
|
19411
|
+
readonly type: "string";
|
|
19412
|
+
};
|
|
19413
|
+
readonly separatorLine: {
|
|
19414
|
+
readonly type: "boolean";
|
|
19415
|
+
};
|
|
19416
|
+
readonly linePosition: {
|
|
19417
|
+
readonly type: "string";
|
|
19418
|
+
readonly enum: readonly ["top", "bottom"];
|
|
19419
|
+
readonly default: "top";
|
|
19420
|
+
};
|
|
19421
|
+
readonly version: {
|
|
19422
|
+
readonly type: "string";
|
|
19423
|
+
};
|
|
19424
|
+
readonly menuStyle: {
|
|
19425
|
+
readonly type: "string";
|
|
19426
|
+
readonly enum: readonly ["drilldown"];
|
|
19427
|
+
};
|
|
19428
|
+
readonly expanded: {
|
|
19429
|
+
readonly type: "string";
|
|
19430
|
+
readonly const: "always";
|
|
19431
|
+
};
|
|
19432
|
+
readonly selectFirstItemOnExpand: {
|
|
19433
|
+
readonly type: "boolean";
|
|
19434
|
+
};
|
|
19435
|
+
readonly flatten: {
|
|
19436
|
+
readonly type: "boolean";
|
|
19437
|
+
};
|
|
19438
|
+
readonly linkedSidebars: {
|
|
19439
|
+
readonly type: "array";
|
|
19440
|
+
readonly items: {
|
|
19441
|
+
readonly type: "string";
|
|
19442
|
+
};
|
|
19443
|
+
};
|
|
19444
|
+
readonly items: {
|
|
19445
|
+
readonly type: "array";
|
|
19446
|
+
readonly items: {
|
|
19447
|
+
readonly type: "object";
|
|
19448
|
+
readonly additionalProperties: true;
|
|
19449
|
+
};
|
|
19450
|
+
};
|
|
19451
|
+
readonly rbac: {
|
|
19452
|
+
readonly type: "object";
|
|
19453
|
+
readonly additionalProperties: {
|
|
19454
|
+
readonly type: "string";
|
|
19455
|
+
};
|
|
19456
|
+
};
|
|
19457
|
+
};
|
|
19458
|
+
};
|
|
19459
|
+
};
|
|
19460
|
+
readonly page: {
|
|
19461
|
+
readonly type: "string";
|
|
19462
|
+
};
|
|
19463
|
+
readonly directory: {
|
|
19464
|
+
readonly type: "string";
|
|
19465
|
+
};
|
|
19466
|
+
readonly disconnect: {
|
|
19467
|
+
readonly type: "boolean";
|
|
19468
|
+
readonly default: false;
|
|
19469
|
+
};
|
|
19470
|
+
readonly group: {
|
|
19471
|
+
readonly type: "string";
|
|
19472
|
+
};
|
|
19473
|
+
readonly label: {
|
|
19474
|
+
readonly type: "string";
|
|
19475
|
+
};
|
|
19476
|
+
readonly href: {
|
|
19477
|
+
readonly type: "string";
|
|
19478
|
+
};
|
|
19479
|
+
readonly external: {
|
|
19480
|
+
readonly type: "boolean";
|
|
19481
|
+
};
|
|
19482
|
+
readonly labelTranslationKey: {
|
|
19483
|
+
readonly type: "string";
|
|
19484
|
+
};
|
|
19485
|
+
readonly groupTranslationKey: {
|
|
19486
|
+
readonly type: "string";
|
|
19487
|
+
};
|
|
19488
|
+
readonly icon: {
|
|
19489
|
+
readonly oneOf: readonly [{
|
|
19490
|
+
readonly type: "string";
|
|
19491
|
+
}, {
|
|
19492
|
+
readonly type: "object";
|
|
19493
|
+
readonly properties: {
|
|
19494
|
+
readonly srcSet: {
|
|
19495
|
+
readonly type: "string";
|
|
19496
|
+
};
|
|
19497
|
+
};
|
|
19498
|
+
readonly required: readonly ["srcSet"];
|
|
19499
|
+
}];
|
|
19500
|
+
};
|
|
19501
|
+
readonly separator: {
|
|
19502
|
+
readonly type: "string";
|
|
19503
|
+
};
|
|
19504
|
+
readonly separatorLine: {
|
|
19505
|
+
readonly type: "boolean";
|
|
19506
|
+
};
|
|
19507
|
+
readonly linePosition: {
|
|
19508
|
+
readonly type: "string";
|
|
19509
|
+
readonly enum: readonly ["top", "bottom"];
|
|
19510
|
+
readonly default: "top";
|
|
19511
|
+
};
|
|
19512
|
+
readonly version: {
|
|
19513
|
+
readonly type: "string";
|
|
19514
|
+
};
|
|
19515
|
+
readonly menuStyle: {
|
|
19516
|
+
readonly type: "string";
|
|
19517
|
+
readonly enum: readonly ["drilldown"];
|
|
19518
|
+
};
|
|
19519
|
+
readonly expanded: {
|
|
19520
|
+
readonly type: "string";
|
|
19521
|
+
readonly const: "always";
|
|
19522
|
+
};
|
|
19523
|
+
readonly selectFirstItemOnExpand: {
|
|
19524
|
+
readonly type: "boolean";
|
|
19525
|
+
};
|
|
19526
|
+
readonly flatten: {
|
|
19527
|
+
readonly type: "boolean";
|
|
19528
|
+
};
|
|
19529
|
+
readonly linkedSidebars: {
|
|
19530
|
+
readonly type: "array";
|
|
19531
|
+
readonly items: {
|
|
19532
|
+
readonly type: "string";
|
|
19533
|
+
};
|
|
19534
|
+
};
|
|
19535
|
+
readonly rbac: {
|
|
19536
|
+
readonly type: "object";
|
|
19537
|
+
readonly additionalProperties: {
|
|
19538
|
+
readonly type: "string";
|
|
19539
|
+
};
|
|
19540
|
+
};
|
|
19541
|
+
};
|
|
19542
|
+
readonly type: "object";
|
|
19543
|
+
};
|
|
19544
|
+
};
|
|
19545
|
+
readonly requiredPermission: {
|
|
19546
|
+
readonly type: "string";
|
|
19547
|
+
};
|
|
19548
|
+
readonly separateVersions: {
|
|
19549
|
+
readonly type: "boolean";
|
|
19550
|
+
};
|
|
19551
|
+
readonly title: {
|
|
19552
|
+
readonly type: "string";
|
|
19553
|
+
};
|
|
19554
|
+
readonly titleTranslationKey: {
|
|
19555
|
+
readonly type: "string";
|
|
19556
|
+
};
|
|
19557
|
+
readonly description: {
|
|
19558
|
+
readonly type: "string";
|
|
19559
|
+
};
|
|
19560
|
+
readonly descriptionTranslationKey: {
|
|
19561
|
+
readonly type: "string";
|
|
19562
|
+
};
|
|
19563
|
+
};
|
|
19564
|
+
};
|
|
19565
|
+
};
|
|
19566
|
+
};
|
|
18846
19567
|
readonly scorecard: {
|
|
18847
19568
|
readonly type: "object";
|
|
18848
19569
|
readonly additionalProperties: true;
|
|
@@ -18939,6 +19660,19 @@ export declare const redoclyConfigSchema: {
|
|
|
18939
19660
|
};
|
|
18940
19661
|
readonly default: {
|
|
18941
19662
|
readonly redirects: {};
|
|
19663
|
+
readonly seo: {
|
|
19664
|
+
readonly llmstxt: {
|
|
19665
|
+
readonly hide: false;
|
|
19666
|
+
readonly title: undefined;
|
|
19667
|
+
readonly description: undefined;
|
|
19668
|
+
readonly details: undefined;
|
|
19669
|
+
readonly sections: readonly [{
|
|
19670
|
+
readonly title: "Optional";
|
|
19671
|
+
readonly includeFiles: readonly ["**/*"];
|
|
19672
|
+
readonly excludeFiles: readonly [];
|
|
19673
|
+
}];
|
|
19674
|
+
};
|
|
19675
|
+
};
|
|
18942
19676
|
};
|
|
18943
19677
|
readonly additionalProperties: true;
|
|
18944
19678
|
};
|
|
@@ -22124,6 +22858,202 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22124
22858
|
};
|
|
22125
22859
|
type: "object";
|
|
22126
22860
|
};
|
|
22861
|
+
catalogClassic: {
|
|
22862
|
+
patternProperties: {
|
|
22863
|
+
".*": {
|
|
22864
|
+
properties: {
|
|
22865
|
+
items: {
|
|
22866
|
+
items: {
|
|
22867
|
+
properties: {
|
|
22868
|
+
label: {
|
|
22869
|
+
type: "string";
|
|
22870
|
+
};
|
|
22871
|
+
items: {
|
|
22872
|
+
items: {
|
|
22873
|
+
properties: {
|
|
22874
|
+
label: {
|
|
22875
|
+
type: "string";
|
|
22876
|
+
};
|
|
22877
|
+
items: any;
|
|
22878
|
+
page: any;
|
|
22879
|
+
href: any;
|
|
22880
|
+
icon: any;
|
|
22881
|
+
rbac: any;
|
|
22882
|
+
directory: any;
|
|
22883
|
+
disconnect: any;
|
|
22884
|
+
group: any;
|
|
22885
|
+
external: any;
|
|
22886
|
+
labelTranslationKey: any;
|
|
22887
|
+
groupTranslationKey: any;
|
|
22888
|
+
separator: any;
|
|
22889
|
+
separatorLine: any;
|
|
22890
|
+
linePosition: any;
|
|
22891
|
+
version: any;
|
|
22892
|
+
menuStyle: any;
|
|
22893
|
+
expanded: any;
|
|
22894
|
+
selectFirstItemOnExpand: any;
|
|
22895
|
+
flatten: any;
|
|
22896
|
+
linkedSidebars: any;
|
|
22897
|
+
};
|
|
22898
|
+
type: "object";
|
|
22899
|
+
};
|
|
22900
|
+
type: "array";
|
|
22901
|
+
};
|
|
22902
|
+
page: {
|
|
22903
|
+
type: "string";
|
|
22904
|
+
};
|
|
22905
|
+
href: {
|
|
22906
|
+
type: "string";
|
|
22907
|
+
};
|
|
22908
|
+
icon: {
|
|
22909
|
+
oneOf: ({
|
|
22910
|
+
type: "string";
|
|
22911
|
+
} | {
|
|
22912
|
+
properties: {
|
|
22913
|
+
srcSet: any;
|
|
22914
|
+
};
|
|
22915
|
+
type: "object";
|
|
22916
|
+
required: "srcSet"[];
|
|
22917
|
+
})[];
|
|
22918
|
+
};
|
|
22919
|
+
rbac: {
|
|
22920
|
+
additionalProperties: {
|
|
22921
|
+
type: "string";
|
|
22922
|
+
};
|
|
22923
|
+
type: "object";
|
|
22924
|
+
};
|
|
22925
|
+
directory: {
|
|
22926
|
+
type: "string";
|
|
22927
|
+
};
|
|
22928
|
+
disconnect: {
|
|
22929
|
+
type: "boolean";
|
|
22930
|
+
};
|
|
22931
|
+
group: {
|
|
22932
|
+
type: "string";
|
|
22933
|
+
};
|
|
22934
|
+
external: {
|
|
22935
|
+
type: "boolean";
|
|
22936
|
+
};
|
|
22937
|
+
labelTranslationKey: {
|
|
22938
|
+
type: "string";
|
|
22939
|
+
};
|
|
22940
|
+
groupTranslationKey: {
|
|
22941
|
+
type: "string";
|
|
22942
|
+
};
|
|
22943
|
+
separator: {
|
|
22944
|
+
type: "string";
|
|
22945
|
+
};
|
|
22946
|
+
separatorLine: {
|
|
22947
|
+
type: "boolean";
|
|
22948
|
+
};
|
|
22949
|
+
linePosition: {
|
|
22950
|
+
enum: ("top" | "bottom")[];
|
|
22951
|
+
type: "string";
|
|
22952
|
+
};
|
|
22953
|
+
version: {
|
|
22954
|
+
type: "string";
|
|
22955
|
+
};
|
|
22956
|
+
menuStyle: {
|
|
22957
|
+
enum: "drilldown"[];
|
|
22958
|
+
type: "string";
|
|
22959
|
+
};
|
|
22960
|
+
expanded: {
|
|
22961
|
+
const: "always";
|
|
22962
|
+
type: "string";
|
|
22963
|
+
};
|
|
22964
|
+
selectFirstItemOnExpand: {
|
|
22965
|
+
type: "boolean";
|
|
22966
|
+
};
|
|
22967
|
+
flatten: {
|
|
22968
|
+
type: "boolean";
|
|
22969
|
+
};
|
|
22970
|
+
linkedSidebars: {
|
|
22971
|
+
items: {
|
|
22972
|
+
type: "string";
|
|
22973
|
+
};
|
|
22974
|
+
type: "array";
|
|
22975
|
+
};
|
|
22976
|
+
};
|
|
22977
|
+
type: "object";
|
|
22978
|
+
};
|
|
22979
|
+
type: "array";
|
|
22980
|
+
};
|
|
22981
|
+
title: {
|
|
22982
|
+
type: "string";
|
|
22983
|
+
};
|
|
22984
|
+
description: {
|
|
22985
|
+
type: "string";
|
|
22986
|
+
};
|
|
22987
|
+
slug: {
|
|
22988
|
+
type: "string";
|
|
22989
|
+
};
|
|
22990
|
+
filters: {
|
|
22991
|
+
items: {
|
|
22992
|
+
properties: {
|
|
22993
|
+
type: {
|
|
22994
|
+
enum: ("select" | "checkboxes" | "date-range")[];
|
|
22995
|
+
type: "string";
|
|
22996
|
+
};
|
|
22997
|
+
title: {
|
|
22998
|
+
type: "string";
|
|
22999
|
+
};
|
|
23000
|
+
options: {
|
|
23001
|
+
items: any;
|
|
23002
|
+
type: "array";
|
|
23003
|
+
};
|
|
23004
|
+
property: {
|
|
23005
|
+
type: "string";
|
|
23006
|
+
};
|
|
23007
|
+
titleTranslationKey: {
|
|
23008
|
+
type: "string";
|
|
23009
|
+
};
|
|
23010
|
+
parentFilter: {
|
|
23011
|
+
type: "string";
|
|
23012
|
+
};
|
|
23013
|
+
valuesMapping: {
|
|
23014
|
+
additionalProperties: any;
|
|
23015
|
+
type: "object";
|
|
23016
|
+
};
|
|
23017
|
+
missingCategoryName: {
|
|
23018
|
+
type: "string";
|
|
23019
|
+
};
|
|
23020
|
+
missingCategoryNameTranslationKey: {
|
|
23021
|
+
type: "string";
|
|
23022
|
+
};
|
|
23023
|
+
};
|
|
23024
|
+
additionalProperties: false;
|
|
23025
|
+
type: "object";
|
|
23026
|
+
required: ("title" | "property")[];
|
|
23027
|
+
};
|
|
23028
|
+
type: "array";
|
|
23029
|
+
};
|
|
23030
|
+
groupByFirstFilter: {
|
|
23031
|
+
type: "boolean";
|
|
23032
|
+
};
|
|
23033
|
+
filterValuesCasing: {
|
|
23034
|
+
enum: ("sentence" | "original" | "lowercase" | "uppercase")[];
|
|
23035
|
+
type: "string";
|
|
23036
|
+
};
|
|
23037
|
+
requiredPermission: {
|
|
23038
|
+
type: "string";
|
|
23039
|
+
};
|
|
23040
|
+
separateVersions: {
|
|
23041
|
+
type: "boolean";
|
|
23042
|
+
};
|
|
23043
|
+
titleTranslationKey: {
|
|
23044
|
+
type: "string";
|
|
23045
|
+
};
|
|
23046
|
+
descriptionTranslationKey: {
|
|
23047
|
+
type: "string";
|
|
23048
|
+
};
|
|
23049
|
+
};
|
|
23050
|
+
additionalProperties: true;
|
|
23051
|
+
type: "object";
|
|
23052
|
+
required: ("items" | "slug")[];
|
|
23053
|
+
};
|
|
23054
|
+
};
|
|
23055
|
+
type: "object";
|
|
23056
|
+
};
|
|
22127
23057
|
scorecard: {
|
|
22128
23058
|
properties: {
|
|
22129
23059
|
ignore: {
|
|
@@ -22506,6 +23436,67 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
22506
23436
|
};
|
|
22507
23437
|
type: "array";
|
|
22508
23438
|
};
|
|
23439
|
+
llmstxt: {
|
|
23440
|
+
properties: {
|
|
23441
|
+
title: {
|
|
23442
|
+
type: "string";
|
|
23443
|
+
};
|
|
23444
|
+
description: {
|
|
23445
|
+
type: "string";
|
|
23446
|
+
};
|
|
23447
|
+
hide: {
|
|
23448
|
+
type: "boolean";
|
|
23449
|
+
};
|
|
23450
|
+
details: {
|
|
23451
|
+
properties: {
|
|
23452
|
+
path: {
|
|
23453
|
+
type: "string";
|
|
23454
|
+
};
|
|
23455
|
+
content: {
|
|
23456
|
+
type: "string";
|
|
23457
|
+
};
|
|
23458
|
+
};
|
|
23459
|
+
additionalProperties: false;
|
|
23460
|
+
type: "object";
|
|
23461
|
+
};
|
|
23462
|
+
excludeFiles: {
|
|
23463
|
+
items: {
|
|
23464
|
+
type: "string";
|
|
23465
|
+
};
|
|
23466
|
+
type: "array";
|
|
23467
|
+
};
|
|
23468
|
+
sections: {
|
|
23469
|
+
items: {
|
|
23470
|
+
properties: {
|
|
23471
|
+
title: {
|
|
23472
|
+
type: "string";
|
|
23473
|
+
};
|
|
23474
|
+
description: {
|
|
23475
|
+
type: "string";
|
|
23476
|
+
};
|
|
23477
|
+
excludeFiles: {
|
|
23478
|
+
items: {
|
|
23479
|
+
type: "string";
|
|
23480
|
+
};
|
|
23481
|
+
type: "array";
|
|
23482
|
+
};
|
|
23483
|
+
includeFiles: {
|
|
23484
|
+
items: {
|
|
23485
|
+
type: "string";
|
|
23486
|
+
};
|
|
23487
|
+
type: "array";
|
|
23488
|
+
};
|
|
23489
|
+
};
|
|
23490
|
+
additionalProperties: false;
|
|
23491
|
+
type: "object";
|
|
23492
|
+
required: "title"[];
|
|
23493
|
+
};
|
|
23494
|
+
type: "array";
|
|
23495
|
+
};
|
|
23496
|
+
};
|
|
23497
|
+
additionalProperties: false;
|
|
23498
|
+
type: "object";
|
|
23499
|
+
};
|
|
22509
23500
|
};
|
|
22510
23501
|
additionalProperties: false;
|
|
22511
23502
|
type: "object";
|
|
@@ -29642,6 +30633,202 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29642
30633
|
};
|
|
29643
30634
|
type: "object";
|
|
29644
30635
|
};
|
|
30636
|
+
catalogClassic: {
|
|
30637
|
+
patternProperties: {
|
|
30638
|
+
".*": {
|
|
30639
|
+
properties: {
|
|
30640
|
+
items: {
|
|
30641
|
+
items: {
|
|
30642
|
+
properties: {
|
|
30643
|
+
label: {
|
|
30644
|
+
type: "string";
|
|
30645
|
+
};
|
|
30646
|
+
items: {
|
|
30647
|
+
items: {
|
|
30648
|
+
properties: {
|
|
30649
|
+
label: {
|
|
30650
|
+
type: "string";
|
|
30651
|
+
};
|
|
30652
|
+
items: any;
|
|
30653
|
+
page: any;
|
|
30654
|
+
href: any;
|
|
30655
|
+
icon: any;
|
|
30656
|
+
rbac: any;
|
|
30657
|
+
directory: any;
|
|
30658
|
+
disconnect: any;
|
|
30659
|
+
group: any;
|
|
30660
|
+
external: any;
|
|
30661
|
+
labelTranslationKey: any;
|
|
30662
|
+
groupTranslationKey: any;
|
|
30663
|
+
separator: any;
|
|
30664
|
+
separatorLine: any;
|
|
30665
|
+
linePosition: any;
|
|
30666
|
+
version: any;
|
|
30667
|
+
menuStyle: any;
|
|
30668
|
+
expanded: any;
|
|
30669
|
+
selectFirstItemOnExpand: any;
|
|
30670
|
+
flatten: any;
|
|
30671
|
+
linkedSidebars: any;
|
|
30672
|
+
};
|
|
30673
|
+
type: "object";
|
|
30674
|
+
};
|
|
30675
|
+
type: "array";
|
|
30676
|
+
};
|
|
30677
|
+
page: {
|
|
30678
|
+
type: "string";
|
|
30679
|
+
};
|
|
30680
|
+
href: {
|
|
30681
|
+
type: "string";
|
|
30682
|
+
};
|
|
30683
|
+
icon: {
|
|
30684
|
+
oneOf: ({
|
|
30685
|
+
type: "string";
|
|
30686
|
+
} | {
|
|
30687
|
+
properties: {
|
|
30688
|
+
srcSet: any;
|
|
30689
|
+
};
|
|
30690
|
+
type: "object";
|
|
30691
|
+
required: "srcSet"[];
|
|
30692
|
+
})[];
|
|
30693
|
+
};
|
|
30694
|
+
rbac: {
|
|
30695
|
+
additionalProperties: {
|
|
30696
|
+
type: "string";
|
|
30697
|
+
};
|
|
30698
|
+
type: "object";
|
|
30699
|
+
};
|
|
30700
|
+
directory: {
|
|
30701
|
+
type: "string";
|
|
30702
|
+
};
|
|
30703
|
+
disconnect: {
|
|
30704
|
+
type: "boolean";
|
|
30705
|
+
};
|
|
30706
|
+
group: {
|
|
30707
|
+
type: "string";
|
|
30708
|
+
};
|
|
30709
|
+
external: {
|
|
30710
|
+
type: "boolean";
|
|
30711
|
+
};
|
|
30712
|
+
labelTranslationKey: {
|
|
30713
|
+
type: "string";
|
|
30714
|
+
};
|
|
30715
|
+
groupTranslationKey: {
|
|
30716
|
+
type: "string";
|
|
30717
|
+
};
|
|
30718
|
+
separator: {
|
|
30719
|
+
type: "string";
|
|
30720
|
+
};
|
|
30721
|
+
separatorLine: {
|
|
30722
|
+
type: "boolean";
|
|
30723
|
+
};
|
|
30724
|
+
linePosition: {
|
|
30725
|
+
enum: ("top" | "bottom")[];
|
|
30726
|
+
type: "string";
|
|
30727
|
+
};
|
|
30728
|
+
version: {
|
|
30729
|
+
type: "string";
|
|
30730
|
+
};
|
|
30731
|
+
menuStyle: {
|
|
30732
|
+
enum: "drilldown"[];
|
|
30733
|
+
type: "string";
|
|
30734
|
+
};
|
|
30735
|
+
expanded: {
|
|
30736
|
+
const: "always";
|
|
30737
|
+
type: "string";
|
|
30738
|
+
};
|
|
30739
|
+
selectFirstItemOnExpand: {
|
|
30740
|
+
type: "boolean";
|
|
30741
|
+
};
|
|
30742
|
+
flatten: {
|
|
30743
|
+
type: "boolean";
|
|
30744
|
+
};
|
|
30745
|
+
linkedSidebars: {
|
|
30746
|
+
items: {
|
|
30747
|
+
type: "string";
|
|
30748
|
+
};
|
|
30749
|
+
type: "array";
|
|
30750
|
+
};
|
|
30751
|
+
};
|
|
30752
|
+
type: "object";
|
|
30753
|
+
};
|
|
30754
|
+
type: "array";
|
|
30755
|
+
};
|
|
30756
|
+
title: {
|
|
30757
|
+
type: "string";
|
|
30758
|
+
};
|
|
30759
|
+
description: {
|
|
30760
|
+
type: "string";
|
|
30761
|
+
};
|
|
30762
|
+
slug: {
|
|
30763
|
+
type: "string";
|
|
30764
|
+
};
|
|
30765
|
+
filters: {
|
|
30766
|
+
items: {
|
|
30767
|
+
properties: {
|
|
30768
|
+
type: {
|
|
30769
|
+
enum: ("select" | "checkboxes" | "date-range")[];
|
|
30770
|
+
type: "string";
|
|
30771
|
+
};
|
|
30772
|
+
title: {
|
|
30773
|
+
type: "string";
|
|
30774
|
+
};
|
|
30775
|
+
options: {
|
|
30776
|
+
items: any;
|
|
30777
|
+
type: "array";
|
|
30778
|
+
};
|
|
30779
|
+
property: {
|
|
30780
|
+
type: "string";
|
|
30781
|
+
};
|
|
30782
|
+
titleTranslationKey: {
|
|
30783
|
+
type: "string";
|
|
30784
|
+
};
|
|
30785
|
+
parentFilter: {
|
|
30786
|
+
type: "string";
|
|
30787
|
+
};
|
|
30788
|
+
valuesMapping: {
|
|
30789
|
+
additionalProperties: any;
|
|
30790
|
+
type: "object";
|
|
30791
|
+
};
|
|
30792
|
+
missingCategoryName: {
|
|
30793
|
+
type: "string";
|
|
30794
|
+
};
|
|
30795
|
+
missingCategoryNameTranslationKey: {
|
|
30796
|
+
type: "string";
|
|
30797
|
+
};
|
|
30798
|
+
};
|
|
30799
|
+
additionalProperties: false;
|
|
30800
|
+
type: "object";
|
|
30801
|
+
required: ("title" | "property")[];
|
|
30802
|
+
};
|
|
30803
|
+
type: "array";
|
|
30804
|
+
};
|
|
30805
|
+
groupByFirstFilter: {
|
|
30806
|
+
type: "boolean";
|
|
30807
|
+
};
|
|
30808
|
+
filterValuesCasing: {
|
|
30809
|
+
enum: ("sentence" | "original" | "lowercase" | "uppercase")[];
|
|
30810
|
+
type: "string";
|
|
30811
|
+
};
|
|
30812
|
+
requiredPermission: {
|
|
30813
|
+
type: "string";
|
|
30814
|
+
};
|
|
30815
|
+
separateVersions: {
|
|
30816
|
+
type: "boolean";
|
|
30817
|
+
};
|
|
30818
|
+
titleTranslationKey: {
|
|
30819
|
+
type: "string";
|
|
30820
|
+
};
|
|
30821
|
+
descriptionTranslationKey: {
|
|
30822
|
+
type: "string";
|
|
30823
|
+
};
|
|
30824
|
+
};
|
|
30825
|
+
additionalProperties: true;
|
|
30826
|
+
type: "object";
|
|
30827
|
+
required: ("items" | "slug")[];
|
|
30828
|
+
};
|
|
30829
|
+
};
|
|
30830
|
+
type: "object";
|
|
30831
|
+
};
|
|
29645
30832
|
scorecard: {
|
|
29646
30833
|
properties: {
|
|
29647
30834
|
ignore: {
|
|
@@ -29809,6 +30996,95 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
29809
30996
|
readonly additionalProperties: false;
|
|
29810
30997
|
};
|
|
29811
30998
|
};
|
|
30999
|
+
readonly llmstxt: {
|
|
31000
|
+
readonly type: "object";
|
|
31001
|
+
readonly properties: {
|
|
31002
|
+
readonly hide: {
|
|
31003
|
+
readonly type: "boolean";
|
|
31004
|
+
readonly default: false;
|
|
31005
|
+
};
|
|
31006
|
+
readonly title: {
|
|
31007
|
+
readonly type: "string";
|
|
31008
|
+
};
|
|
31009
|
+
readonly description: {
|
|
31010
|
+
readonly type: "string";
|
|
31011
|
+
};
|
|
31012
|
+
readonly details: {
|
|
31013
|
+
readonly type: "object";
|
|
31014
|
+
readonly properties: {
|
|
31015
|
+
readonly path: {
|
|
31016
|
+
readonly type: "string";
|
|
31017
|
+
};
|
|
31018
|
+
readonly content: {
|
|
31019
|
+
readonly type: "string";
|
|
31020
|
+
};
|
|
31021
|
+
};
|
|
31022
|
+
readonly additionalProperties: false;
|
|
31023
|
+
};
|
|
31024
|
+
readonly excludeFiles: {
|
|
31025
|
+
readonly type: "array";
|
|
31026
|
+
readonly items: {
|
|
31027
|
+
readonly type: "string";
|
|
31028
|
+
};
|
|
31029
|
+
readonly default: readonly [];
|
|
31030
|
+
};
|
|
31031
|
+
readonly sections: {
|
|
31032
|
+
readonly type: "array";
|
|
31033
|
+
readonly items: {
|
|
31034
|
+
readonly type: "object";
|
|
31035
|
+
readonly properties: {
|
|
31036
|
+
readonly title: {
|
|
31037
|
+
readonly type: "string";
|
|
31038
|
+
};
|
|
31039
|
+
readonly description: {
|
|
31040
|
+
readonly type: "string";
|
|
31041
|
+
};
|
|
31042
|
+
readonly includeFiles: {
|
|
31043
|
+
readonly type: "array";
|
|
31044
|
+
readonly items: {
|
|
31045
|
+
readonly type: "string";
|
|
31046
|
+
};
|
|
31047
|
+
readonly default: readonly [];
|
|
31048
|
+
};
|
|
31049
|
+
readonly excludeFiles: {
|
|
31050
|
+
readonly type: "array";
|
|
31051
|
+
readonly items: {
|
|
31052
|
+
readonly type: "string";
|
|
31053
|
+
};
|
|
31054
|
+
readonly default: readonly [];
|
|
31055
|
+
};
|
|
31056
|
+
};
|
|
31057
|
+
readonly required: readonly ["title"];
|
|
31058
|
+
readonly additionalProperties: false;
|
|
31059
|
+
};
|
|
31060
|
+
};
|
|
31061
|
+
};
|
|
31062
|
+
readonly default: {
|
|
31063
|
+
readonly hide: false;
|
|
31064
|
+
readonly title: undefined;
|
|
31065
|
+
readonly description: undefined;
|
|
31066
|
+
readonly details: undefined;
|
|
31067
|
+
readonly sections: readonly [{
|
|
31068
|
+
readonly title: "Optional";
|
|
31069
|
+
readonly includeFiles: readonly ["**/*"];
|
|
31070
|
+
readonly excludeFiles: readonly [];
|
|
31071
|
+
}];
|
|
31072
|
+
};
|
|
31073
|
+
readonly additionalProperties: false;
|
|
31074
|
+
};
|
|
31075
|
+
};
|
|
31076
|
+
readonly default: {
|
|
31077
|
+
readonly llmstxt: {
|
|
31078
|
+
readonly hide: false;
|
|
31079
|
+
readonly title: undefined;
|
|
31080
|
+
readonly description: undefined;
|
|
31081
|
+
readonly details: undefined;
|
|
31082
|
+
readonly sections: readonly [{
|
|
31083
|
+
readonly title: "Optional";
|
|
31084
|
+
readonly includeFiles: readonly ["**/*"];
|
|
31085
|
+
readonly excludeFiles: readonly [];
|
|
31086
|
+
}];
|
|
31087
|
+
};
|
|
29812
31088
|
};
|
|
29813
31089
|
readonly additionalProperties: false;
|
|
29814
31090
|
};
|
|
@@ -38844,6 +40120,276 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
38844
40120
|
};
|
|
38845
40121
|
};
|
|
38846
40122
|
};
|
|
40123
|
+
readonly catalogClassic: {
|
|
40124
|
+
readonly type: "object";
|
|
40125
|
+
readonly patternProperties: {
|
|
40126
|
+
readonly '.*': {
|
|
40127
|
+
readonly type: "object";
|
|
40128
|
+
readonly additionalProperties: true;
|
|
40129
|
+
readonly required: readonly ["slug", "items"];
|
|
40130
|
+
readonly properties: {
|
|
40131
|
+
readonly slug: {
|
|
40132
|
+
readonly type: "string";
|
|
40133
|
+
};
|
|
40134
|
+
readonly filters: {
|
|
40135
|
+
readonly type: "array";
|
|
40136
|
+
readonly items: {
|
|
40137
|
+
readonly type: "object";
|
|
40138
|
+
readonly additionalProperties: false;
|
|
40139
|
+
readonly required: readonly ["title", "property"];
|
|
40140
|
+
readonly properties: {
|
|
40141
|
+
readonly type: {
|
|
40142
|
+
readonly type: "string";
|
|
40143
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
40144
|
+
readonly default: "checkboxes";
|
|
40145
|
+
};
|
|
40146
|
+
readonly title: {
|
|
40147
|
+
readonly type: "string";
|
|
40148
|
+
};
|
|
40149
|
+
readonly titleTranslationKey: {
|
|
40150
|
+
readonly type: "string";
|
|
40151
|
+
};
|
|
40152
|
+
readonly property: {
|
|
40153
|
+
readonly type: "string";
|
|
40154
|
+
};
|
|
40155
|
+
readonly parentFilter: {
|
|
40156
|
+
readonly type: "string";
|
|
40157
|
+
};
|
|
40158
|
+
readonly valuesMapping: {
|
|
40159
|
+
readonly type: "object";
|
|
40160
|
+
readonly additionalProperties: {
|
|
40161
|
+
readonly type: "string";
|
|
40162
|
+
};
|
|
40163
|
+
};
|
|
40164
|
+
readonly missingCategoryName: {
|
|
40165
|
+
readonly type: "string";
|
|
40166
|
+
};
|
|
40167
|
+
readonly missingCategoryNameTranslationKey: {
|
|
40168
|
+
readonly type: "string";
|
|
40169
|
+
};
|
|
40170
|
+
readonly options: {
|
|
40171
|
+
readonly type: "array";
|
|
40172
|
+
readonly items: {
|
|
40173
|
+
readonly type: "string";
|
|
40174
|
+
};
|
|
40175
|
+
};
|
|
40176
|
+
};
|
|
40177
|
+
};
|
|
40178
|
+
};
|
|
40179
|
+
readonly groupByFirstFilter: {
|
|
40180
|
+
readonly type: "boolean";
|
|
40181
|
+
};
|
|
40182
|
+
readonly filterValuesCasing: {
|
|
40183
|
+
readonly type: "string";
|
|
40184
|
+
readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
|
|
40185
|
+
};
|
|
40186
|
+
readonly items: {
|
|
40187
|
+
readonly type: "array";
|
|
40188
|
+
readonly items: {
|
|
40189
|
+
readonly properties: {
|
|
40190
|
+
readonly items: {
|
|
40191
|
+
readonly type: "array";
|
|
40192
|
+
readonly items: {
|
|
40193
|
+
readonly type: "object";
|
|
40194
|
+
readonly properties: {
|
|
40195
|
+
readonly page: {
|
|
40196
|
+
readonly type: "string";
|
|
40197
|
+
};
|
|
40198
|
+
readonly directory: {
|
|
40199
|
+
readonly type: "string";
|
|
40200
|
+
};
|
|
40201
|
+
readonly disconnect: {
|
|
40202
|
+
readonly type: "boolean";
|
|
40203
|
+
readonly default: false;
|
|
40204
|
+
};
|
|
40205
|
+
readonly group: {
|
|
40206
|
+
readonly type: "string";
|
|
40207
|
+
};
|
|
40208
|
+
readonly label: {
|
|
40209
|
+
readonly type: "string";
|
|
40210
|
+
};
|
|
40211
|
+
readonly href: {
|
|
40212
|
+
readonly type: "string";
|
|
40213
|
+
};
|
|
40214
|
+
readonly external: {
|
|
40215
|
+
readonly type: "boolean";
|
|
40216
|
+
};
|
|
40217
|
+
readonly labelTranslationKey: {
|
|
40218
|
+
readonly type: "string";
|
|
40219
|
+
};
|
|
40220
|
+
readonly groupTranslationKey: {
|
|
40221
|
+
readonly type: "string";
|
|
40222
|
+
};
|
|
40223
|
+
readonly icon: {
|
|
40224
|
+
readonly oneOf: readonly [{
|
|
40225
|
+
readonly type: "string";
|
|
40226
|
+
}, {
|
|
40227
|
+
readonly type: "object";
|
|
40228
|
+
readonly properties: {
|
|
40229
|
+
readonly srcSet: {
|
|
40230
|
+
readonly type: "string";
|
|
40231
|
+
};
|
|
40232
|
+
};
|
|
40233
|
+
readonly required: readonly ["srcSet"];
|
|
40234
|
+
}];
|
|
40235
|
+
};
|
|
40236
|
+
readonly separator: {
|
|
40237
|
+
readonly type: "string";
|
|
40238
|
+
};
|
|
40239
|
+
readonly separatorLine: {
|
|
40240
|
+
readonly type: "boolean";
|
|
40241
|
+
};
|
|
40242
|
+
readonly linePosition: {
|
|
40243
|
+
readonly type: "string";
|
|
40244
|
+
readonly enum: readonly ["top", "bottom"];
|
|
40245
|
+
readonly default: "top";
|
|
40246
|
+
};
|
|
40247
|
+
readonly version: {
|
|
40248
|
+
readonly type: "string";
|
|
40249
|
+
};
|
|
40250
|
+
readonly menuStyle: {
|
|
40251
|
+
readonly type: "string";
|
|
40252
|
+
readonly enum: readonly ["drilldown"];
|
|
40253
|
+
};
|
|
40254
|
+
readonly expanded: {
|
|
40255
|
+
readonly type: "string";
|
|
40256
|
+
readonly const: "always";
|
|
40257
|
+
};
|
|
40258
|
+
readonly selectFirstItemOnExpand: {
|
|
40259
|
+
readonly type: "boolean";
|
|
40260
|
+
};
|
|
40261
|
+
readonly flatten: {
|
|
40262
|
+
readonly type: "boolean";
|
|
40263
|
+
};
|
|
40264
|
+
readonly linkedSidebars: {
|
|
40265
|
+
readonly type: "array";
|
|
40266
|
+
readonly items: {
|
|
40267
|
+
readonly type: "string";
|
|
40268
|
+
};
|
|
40269
|
+
};
|
|
40270
|
+
readonly items: {
|
|
40271
|
+
readonly type: "array";
|
|
40272
|
+
readonly items: {
|
|
40273
|
+
readonly type: "object";
|
|
40274
|
+
readonly additionalProperties: true;
|
|
40275
|
+
};
|
|
40276
|
+
};
|
|
40277
|
+
readonly rbac: {
|
|
40278
|
+
readonly type: "object";
|
|
40279
|
+
readonly additionalProperties: {
|
|
40280
|
+
readonly type: "string";
|
|
40281
|
+
};
|
|
40282
|
+
};
|
|
40283
|
+
};
|
|
40284
|
+
};
|
|
40285
|
+
};
|
|
40286
|
+
readonly page: {
|
|
40287
|
+
readonly type: "string";
|
|
40288
|
+
};
|
|
40289
|
+
readonly directory: {
|
|
40290
|
+
readonly type: "string";
|
|
40291
|
+
};
|
|
40292
|
+
readonly disconnect: {
|
|
40293
|
+
readonly type: "boolean";
|
|
40294
|
+
readonly default: false;
|
|
40295
|
+
};
|
|
40296
|
+
readonly group: {
|
|
40297
|
+
readonly type: "string";
|
|
40298
|
+
};
|
|
40299
|
+
readonly label: {
|
|
40300
|
+
readonly type: "string";
|
|
40301
|
+
};
|
|
40302
|
+
readonly href: {
|
|
40303
|
+
readonly type: "string";
|
|
40304
|
+
};
|
|
40305
|
+
readonly external: {
|
|
40306
|
+
readonly type: "boolean";
|
|
40307
|
+
};
|
|
40308
|
+
readonly labelTranslationKey: {
|
|
40309
|
+
readonly type: "string";
|
|
40310
|
+
};
|
|
40311
|
+
readonly groupTranslationKey: {
|
|
40312
|
+
readonly type: "string";
|
|
40313
|
+
};
|
|
40314
|
+
readonly icon: {
|
|
40315
|
+
readonly oneOf: readonly [{
|
|
40316
|
+
readonly type: "string";
|
|
40317
|
+
}, {
|
|
40318
|
+
readonly type: "object";
|
|
40319
|
+
readonly properties: {
|
|
40320
|
+
readonly srcSet: {
|
|
40321
|
+
readonly type: "string";
|
|
40322
|
+
};
|
|
40323
|
+
};
|
|
40324
|
+
readonly required: readonly ["srcSet"];
|
|
40325
|
+
}];
|
|
40326
|
+
};
|
|
40327
|
+
readonly separator: {
|
|
40328
|
+
readonly type: "string";
|
|
40329
|
+
};
|
|
40330
|
+
readonly separatorLine: {
|
|
40331
|
+
readonly type: "boolean";
|
|
40332
|
+
};
|
|
40333
|
+
readonly linePosition: {
|
|
40334
|
+
readonly type: "string";
|
|
40335
|
+
readonly enum: readonly ["top", "bottom"];
|
|
40336
|
+
readonly default: "top";
|
|
40337
|
+
};
|
|
40338
|
+
readonly version: {
|
|
40339
|
+
readonly type: "string";
|
|
40340
|
+
};
|
|
40341
|
+
readonly menuStyle: {
|
|
40342
|
+
readonly type: "string";
|
|
40343
|
+
readonly enum: readonly ["drilldown"];
|
|
40344
|
+
};
|
|
40345
|
+
readonly expanded: {
|
|
40346
|
+
readonly type: "string";
|
|
40347
|
+
readonly const: "always";
|
|
40348
|
+
};
|
|
40349
|
+
readonly selectFirstItemOnExpand: {
|
|
40350
|
+
readonly type: "boolean";
|
|
40351
|
+
};
|
|
40352
|
+
readonly flatten: {
|
|
40353
|
+
readonly type: "boolean";
|
|
40354
|
+
};
|
|
40355
|
+
readonly linkedSidebars: {
|
|
40356
|
+
readonly type: "array";
|
|
40357
|
+
readonly items: {
|
|
40358
|
+
readonly type: "string";
|
|
40359
|
+
};
|
|
40360
|
+
};
|
|
40361
|
+
readonly rbac: {
|
|
40362
|
+
readonly type: "object";
|
|
40363
|
+
readonly additionalProperties: {
|
|
40364
|
+
readonly type: "string";
|
|
40365
|
+
};
|
|
40366
|
+
};
|
|
40367
|
+
};
|
|
40368
|
+
readonly type: "object";
|
|
40369
|
+
};
|
|
40370
|
+
};
|
|
40371
|
+
readonly requiredPermission: {
|
|
40372
|
+
readonly type: "string";
|
|
40373
|
+
};
|
|
40374
|
+
readonly separateVersions: {
|
|
40375
|
+
readonly type: "boolean";
|
|
40376
|
+
};
|
|
40377
|
+
readonly title: {
|
|
40378
|
+
readonly type: "string";
|
|
40379
|
+
};
|
|
40380
|
+
readonly titleTranslationKey: {
|
|
40381
|
+
readonly type: "string";
|
|
40382
|
+
};
|
|
40383
|
+
readonly description: {
|
|
40384
|
+
readonly type: "string";
|
|
40385
|
+
};
|
|
40386
|
+
readonly descriptionTranslationKey: {
|
|
40387
|
+
readonly type: "string";
|
|
40388
|
+
};
|
|
40389
|
+
};
|
|
40390
|
+
};
|
|
40391
|
+
};
|
|
40392
|
+
};
|
|
38847
40393
|
readonly scorecard: {
|
|
38848
40394
|
readonly type: "object";
|
|
38849
40395
|
readonly additionalProperties: true;
|
|
@@ -42706,6 +44252,9 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
42706
44252
|
};
|
|
42707
44253
|
readonly additionalProperties: false;
|
|
42708
44254
|
};
|
|
44255
|
+
/**
|
|
44256
|
+
* @deprecated Should use `catalogClassic` instead
|
|
44257
|
+
*/
|
|
42709
44258
|
readonly catalog: {
|
|
42710
44259
|
readonly type: "object";
|
|
42711
44260
|
readonly patternProperties: {
|
|
@@ -42976,6 +44525,276 @@ export declare const rootRedoclyConfigSchema: {
|
|
|
42976
44525
|
};
|
|
42977
44526
|
};
|
|
42978
44527
|
};
|
|
44528
|
+
readonly catalogClassic: {
|
|
44529
|
+
readonly type: "object";
|
|
44530
|
+
readonly patternProperties: {
|
|
44531
|
+
readonly '.*': {
|
|
44532
|
+
readonly type: "object";
|
|
44533
|
+
readonly additionalProperties: true;
|
|
44534
|
+
readonly required: readonly ["slug", "items"];
|
|
44535
|
+
readonly properties: {
|
|
44536
|
+
readonly slug: {
|
|
44537
|
+
readonly type: "string";
|
|
44538
|
+
};
|
|
44539
|
+
readonly filters: {
|
|
44540
|
+
readonly type: "array";
|
|
44541
|
+
readonly items: {
|
|
44542
|
+
readonly type: "object";
|
|
44543
|
+
readonly additionalProperties: false;
|
|
44544
|
+
readonly required: readonly ["title", "property"];
|
|
44545
|
+
readonly properties: {
|
|
44546
|
+
readonly type: {
|
|
44547
|
+
readonly type: "string";
|
|
44548
|
+
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
44549
|
+
readonly default: "checkboxes";
|
|
44550
|
+
};
|
|
44551
|
+
readonly title: {
|
|
44552
|
+
readonly type: "string";
|
|
44553
|
+
};
|
|
44554
|
+
readonly titleTranslationKey: {
|
|
44555
|
+
readonly type: "string";
|
|
44556
|
+
};
|
|
44557
|
+
readonly property: {
|
|
44558
|
+
readonly type: "string";
|
|
44559
|
+
};
|
|
44560
|
+
readonly parentFilter: {
|
|
44561
|
+
readonly type: "string";
|
|
44562
|
+
};
|
|
44563
|
+
readonly valuesMapping: {
|
|
44564
|
+
readonly type: "object";
|
|
44565
|
+
readonly additionalProperties: {
|
|
44566
|
+
readonly type: "string";
|
|
44567
|
+
};
|
|
44568
|
+
};
|
|
44569
|
+
readonly missingCategoryName: {
|
|
44570
|
+
readonly type: "string";
|
|
44571
|
+
};
|
|
44572
|
+
readonly missingCategoryNameTranslationKey: {
|
|
44573
|
+
readonly type: "string";
|
|
44574
|
+
};
|
|
44575
|
+
readonly options: {
|
|
44576
|
+
readonly type: "array";
|
|
44577
|
+
readonly items: {
|
|
44578
|
+
readonly type: "string";
|
|
44579
|
+
};
|
|
44580
|
+
};
|
|
44581
|
+
};
|
|
44582
|
+
};
|
|
44583
|
+
};
|
|
44584
|
+
readonly groupByFirstFilter: {
|
|
44585
|
+
readonly type: "boolean";
|
|
44586
|
+
};
|
|
44587
|
+
readonly filterValuesCasing: {
|
|
44588
|
+
readonly type: "string";
|
|
44589
|
+
readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
|
|
44590
|
+
};
|
|
44591
|
+
readonly items: {
|
|
44592
|
+
readonly type: "array";
|
|
44593
|
+
readonly items: {
|
|
44594
|
+
readonly properties: {
|
|
44595
|
+
readonly items: {
|
|
44596
|
+
readonly type: "array";
|
|
44597
|
+
readonly items: {
|
|
44598
|
+
readonly type: "object";
|
|
44599
|
+
readonly properties: {
|
|
44600
|
+
readonly page: {
|
|
44601
|
+
readonly type: "string";
|
|
44602
|
+
};
|
|
44603
|
+
readonly directory: {
|
|
44604
|
+
readonly type: "string";
|
|
44605
|
+
};
|
|
44606
|
+
readonly disconnect: {
|
|
44607
|
+
readonly type: "boolean";
|
|
44608
|
+
readonly default: false;
|
|
44609
|
+
};
|
|
44610
|
+
readonly group: {
|
|
44611
|
+
readonly type: "string";
|
|
44612
|
+
};
|
|
44613
|
+
readonly label: {
|
|
44614
|
+
readonly type: "string";
|
|
44615
|
+
};
|
|
44616
|
+
readonly href: {
|
|
44617
|
+
readonly type: "string";
|
|
44618
|
+
};
|
|
44619
|
+
readonly external: {
|
|
44620
|
+
readonly type: "boolean";
|
|
44621
|
+
};
|
|
44622
|
+
readonly labelTranslationKey: {
|
|
44623
|
+
readonly type: "string";
|
|
44624
|
+
};
|
|
44625
|
+
readonly groupTranslationKey: {
|
|
44626
|
+
readonly type: "string";
|
|
44627
|
+
};
|
|
44628
|
+
readonly icon: {
|
|
44629
|
+
readonly oneOf: readonly [{
|
|
44630
|
+
readonly type: "string";
|
|
44631
|
+
}, {
|
|
44632
|
+
readonly type: "object";
|
|
44633
|
+
readonly properties: {
|
|
44634
|
+
readonly srcSet: {
|
|
44635
|
+
readonly type: "string";
|
|
44636
|
+
};
|
|
44637
|
+
};
|
|
44638
|
+
readonly required: readonly ["srcSet"];
|
|
44639
|
+
}];
|
|
44640
|
+
};
|
|
44641
|
+
readonly separator: {
|
|
44642
|
+
readonly type: "string";
|
|
44643
|
+
};
|
|
44644
|
+
readonly separatorLine: {
|
|
44645
|
+
readonly type: "boolean";
|
|
44646
|
+
};
|
|
44647
|
+
readonly linePosition: {
|
|
44648
|
+
readonly type: "string";
|
|
44649
|
+
readonly enum: readonly ["top", "bottom"];
|
|
44650
|
+
readonly default: "top";
|
|
44651
|
+
};
|
|
44652
|
+
readonly version: {
|
|
44653
|
+
readonly type: "string";
|
|
44654
|
+
};
|
|
44655
|
+
readonly menuStyle: {
|
|
44656
|
+
readonly type: "string";
|
|
44657
|
+
readonly enum: readonly ["drilldown"];
|
|
44658
|
+
};
|
|
44659
|
+
readonly expanded: {
|
|
44660
|
+
readonly type: "string";
|
|
44661
|
+
readonly const: "always";
|
|
44662
|
+
};
|
|
44663
|
+
readonly selectFirstItemOnExpand: {
|
|
44664
|
+
readonly type: "boolean";
|
|
44665
|
+
};
|
|
44666
|
+
readonly flatten: {
|
|
44667
|
+
readonly type: "boolean";
|
|
44668
|
+
};
|
|
44669
|
+
readonly linkedSidebars: {
|
|
44670
|
+
readonly type: "array";
|
|
44671
|
+
readonly items: {
|
|
44672
|
+
readonly type: "string";
|
|
44673
|
+
};
|
|
44674
|
+
};
|
|
44675
|
+
readonly items: {
|
|
44676
|
+
readonly type: "array";
|
|
44677
|
+
readonly items: {
|
|
44678
|
+
readonly type: "object";
|
|
44679
|
+
readonly additionalProperties: true;
|
|
44680
|
+
};
|
|
44681
|
+
};
|
|
44682
|
+
readonly rbac: {
|
|
44683
|
+
readonly type: "object";
|
|
44684
|
+
readonly additionalProperties: {
|
|
44685
|
+
readonly type: "string";
|
|
44686
|
+
};
|
|
44687
|
+
};
|
|
44688
|
+
};
|
|
44689
|
+
};
|
|
44690
|
+
};
|
|
44691
|
+
readonly page: {
|
|
44692
|
+
readonly type: "string";
|
|
44693
|
+
};
|
|
44694
|
+
readonly directory: {
|
|
44695
|
+
readonly type: "string";
|
|
44696
|
+
};
|
|
44697
|
+
readonly disconnect: {
|
|
44698
|
+
readonly type: "boolean";
|
|
44699
|
+
readonly default: false;
|
|
44700
|
+
};
|
|
44701
|
+
readonly group: {
|
|
44702
|
+
readonly type: "string";
|
|
44703
|
+
};
|
|
44704
|
+
readonly label: {
|
|
44705
|
+
readonly type: "string";
|
|
44706
|
+
};
|
|
44707
|
+
readonly href: {
|
|
44708
|
+
readonly type: "string";
|
|
44709
|
+
};
|
|
44710
|
+
readonly external: {
|
|
44711
|
+
readonly type: "boolean";
|
|
44712
|
+
};
|
|
44713
|
+
readonly labelTranslationKey: {
|
|
44714
|
+
readonly type: "string";
|
|
44715
|
+
};
|
|
44716
|
+
readonly groupTranslationKey: {
|
|
44717
|
+
readonly type: "string";
|
|
44718
|
+
};
|
|
44719
|
+
readonly icon: {
|
|
44720
|
+
readonly oneOf: readonly [{
|
|
44721
|
+
readonly type: "string";
|
|
44722
|
+
}, {
|
|
44723
|
+
readonly type: "object";
|
|
44724
|
+
readonly properties: {
|
|
44725
|
+
readonly srcSet: {
|
|
44726
|
+
readonly type: "string";
|
|
44727
|
+
};
|
|
44728
|
+
};
|
|
44729
|
+
readonly required: readonly ["srcSet"];
|
|
44730
|
+
}];
|
|
44731
|
+
};
|
|
44732
|
+
readonly separator: {
|
|
44733
|
+
readonly type: "string";
|
|
44734
|
+
};
|
|
44735
|
+
readonly separatorLine: {
|
|
44736
|
+
readonly type: "boolean";
|
|
44737
|
+
};
|
|
44738
|
+
readonly linePosition: {
|
|
44739
|
+
readonly type: "string";
|
|
44740
|
+
readonly enum: readonly ["top", "bottom"];
|
|
44741
|
+
readonly default: "top";
|
|
44742
|
+
};
|
|
44743
|
+
readonly version: {
|
|
44744
|
+
readonly type: "string";
|
|
44745
|
+
};
|
|
44746
|
+
readonly menuStyle: {
|
|
44747
|
+
readonly type: "string";
|
|
44748
|
+
readonly enum: readonly ["drilldown"];
|
|
44749
|
+
};
|
|
44750
|
+
readonly expanded: {
|
|
44751
|
+
readonly type: "string";
|
|
44752
|
+
readonly const: "always";
|
|
44753
|
+
};
|
|
44754
|
+
readonly selectFirstItemOnExpand: {
|
|
44755
|
+
readonly type: "boolean";
|
|
44756
|
+
};
|
|
44757
|
+
readonly flatten: {
|
|
44758
|
+
readonly type: "boolean";
|
|
44759
|
+
};
|
|
44760
|
+
readonly linkedSidebars: {
|
|
44761
|
+
readonly type: "array";
|
|
44762
|
+
readonly items: {
|
|
44763
|
+
readonly type: "string";
|
|
44764
|
+
};
|
|
44765
|
+
};
|
|
44766
|
+
readonly rbac: {
|
|
44767
|
+
readonly type: "object";
|
|
44768
|
+
readonly additionalProperties: {
|
|
44769
|
+
readonly type: "string";
|
|
44770
|
+
};
|
|
44771
|
+
};
|
|
44772
|
+
};
|
|
44773
|
+
readonly type: "object";
|
|
44774
|
+
};
|
|
44775
|
+
};
|
|
44776
|
+
readonly requiredPermission: {
|
|
44777
|
+
readonly type: "string";
|
|
44778
|
+
};
|
|
44779
|
+
readonly separateVersions: {
|
|
44780
|
+
readonly type: "boolean";
|
|
44781
|
+
};
|
|
44782
|
+
readonly title: {
|
|
44783
|
+
readonly type: "string";
|
|
44784
|
+
};
|
|
44785
|
+
readonly titleTranslationKey: {
|
|
44786
|
+
readonly type: "string";
|
|
44787
|
+
};
|
|
44788
|
+
readonly description: {
|
|
44789
|
+
readonly type: "string";
|
|
44790
|
+
};
|
|
44791
|
+
readonly descriptionTranslationKey: {
|
|
44792
|
+
readonly type: "string";
|
|
44793
|
+
};
|
|
44794
|
+
};
|
|
44795
|
+
};
|
|
44796
|
+
};
|
|
44797
|
+
};
|
|
42979
44798
|
readonly scorecard: {
|
|
42980
44799
|
readonly type: "object";
|
|
42981
44800
|
readonly additionalProperties: true;
|