@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.
@@ -3670,6 +3670,9 @@ export declare const themeConfigSchema: {
3670
3670
  };
3671
3671
  readonly additionalProperties: false;
3672
3672
  };
3673
+ /**
3674
+ * @deprecated Should use `catalogClassic` instead
3675
+ */
3673
3676
  readonly catalog: {
3674
3677
  readonly type: "object";
3675
3678
  readonly patternProperties: {
@@ -3940,220 +3943,490 @@ export declare const themeConfigSchema: {
3940
3943
  };
3941
3944
  };
3942
3945
  };
3943
- readonly scorecard: {
3946
+ readonly catalogClassic: {
3944
3947
  readonly type: "object";
3945
- readonly additionalProperties: true;
3946
- readonly required: readonly [];
3947
- readonly properties: {
3948
- readonly ignoreNonCompliant: {
3949
- readonly type: "boolean";
3950
- readonly default: false;
3951
- };
3952
- readonly teamMetadataProperty: {
3948
+ readonly patternProperties: {
3949
+ readonly '.*': {
3953
3950
  readonly type: "object";
3951
+ readonly additionalProperties: true;
3952
+ readonly required: readonly ["slug", "items"];
3954
3953
  readonly properties: {
3955
- readonly property: {
3956
- readonly type: "string";
3957
- };
3958
- readonly label: {
3959
- readonly type: "string";
3960
- };
3961
- readonly default: {
3954
+ readonly slug: {
3962
3955
  readonly type: "string";
3963
3956
  };
3964
- };
3965
- };
3966
- readonly levels: {
3967
- readonly type: "array";
3968
- readonly items: {
3969
- readonly type: "object";
3970
- readonly required: readonly ["name"];
3971
- readonly properties: {
3972
- readonly name: {
3973
- readonly type: "string";
3974
- };
3975
- readonly color: {
3976
- readonly type: "string";
3977
- };
3978
- readonly extends: {
3979
- readonly type: "array";
3980
- readonly items: {
3981
- readonly type: "string";
3982
- };
3983
- };
3984
- readonly rules: {
3985
- readonly type: "object";
3986
- readonly additionalProperties: {
3987
- readonly oneOf: readonly [{
3988
- readonly type: "string";
3989
- }, {
3990
- readonly type: "object";
3991
- }];
3992
- };
3993
- };
3994
- };
3995
- readonly additionalProperties: false;
3996
- };
3997
- };
3998
- readonly targets: {
3999
- readonly type: "array";
4000
- readonly items: {
4001
- readonly type: "object";
4002
- readonly required: readonly ["where"];
4003
- readonly properties: {
4004
- readonly minimumLevel: {
4005
- readonly type: "string";
4006
- };
4007
- readonly rules: {
4008
- readonly type: "object";
4009
- readonly additionalProperties: true;
4010
- };
4011
- readonly where: {
3957
+ readonly filters: {
3958
+ readonly type: "array";
3959
+ readonly items: {
4012
3960
  readonly type: "object";
4013
- readonly required: readonly ["metadata"];
3961
+ readonly additionalProperties: false;
3962
+ readonly required: readonly ["title", "property"];
4014
3963
  readonly properties: {
4015
- readonly metadata: {
3964
+ readonly type: {
3965
+ readonly type: "string";
3966
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
3967
+ readonly default: "checkboxes";
3968
+ };
3969
+ readonly title: {
3970
+ readonly type: "string";
3971
+ };
3972
+ readonly titleTranslationKey: {
3973
+ readonly type: "string";
3974
+ };
3975
+ readonly property: {
3976
+ readonly type: "string";
3977
+ };
3978
+ readonly parentFilter: {
3979
+ readonly type: "string";
3980
+ };
3981
+ readonly valuesMapping: {
4016
3982
  readonly type: "object";
4017
3983
  readonly additionalProperties: {
4018
3984
  readonly type: "string";
4019
3985
  };
4020
3986
  };
3987
+ readonly missingCategoryName: {
3988
+ readonly type: "string";
3989
+ };
3990
+ readonly missingCategoryNameTranslationKey: {
3991
+ readonly type: "string";
3992
+ };
3993
+ readonly options: {
3994
+ readonly type: "array";
3995
+ readonly items: {
3996
+ readonly type: "string";
3997
+ };
3998
+ };
4021
3999
  };
4022
- readonly additionalProperties: false;
4023
4000
  };
4024
4001
  };
4025
- readonly additionalProperties: false;
4026
- };
4027
- };
4028
- readonly ignore: {
4029
- readonly type: "array";
4030
- readonly items: {
4031
- readonly type: "string";
4032
- };
4033
- };
4034
- };
4035
- };
4036
- };
4037
- readonly additionalProperties: true;
4038
- };
4039
- export declare const closedThemeConfigSchema: {
4040
- readonly additionalProperties: false;
4041
- readonly type: "object";
4042
- readonly properties: {
4043
- /**
4044
- * @deprecated Should use `plugins` instead
4045
- */
4046
- readonly imports: {
4047
- readonly type: "array";
4048
- readonly items: {
4049
- readonly type: "string";
4050
- };
4051
- };
4052
- readonly logo: {
4053
- readonly type: "object";
4054
- readonly properties: {
4055
- readonly image: {
4056
- readonly type: "string";
4057
- };
4058
- readonly srcSet: {
4059
- readonly type: "string";
4060
- };
4061
- readonly altText: {
4062
- readonly type: "string";
4063
- };
4064
- readonly link: {
4065
- readonly type: "string";
4066
- };
4067
- readonly favicon: {
4068
- readonly type: "string";
4069
- };
4070
- };
4071
- readonly additionalProperties: false;
4072
- };
4073
- readonly navbar: {
4074
- readonly type: "object";
4075
- readonly properties: {
4076
- readonly hide: {
4077
- readonly type: "boolean";
4078
- };
4079
- readonly items: {
4080
- readonly type: "array";
4081
- readonly items: {
4082
- readonly properties: {
4002
+ readonly groupByFirstFilter: {
4003
+ readonly type: "boolean";
4004
+ };
4005
+ readonly filterValuesCasing: {
4006
+ readonly type: "string";
4007
+ readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
4008
+ };
4009
+ readonly items: {
4010
+ readonly type: "array";
4083
4011
  readonly items: {
4084
- readonly type: "array";
4085
- readonly items: {
4086
- readonly type: "object";
4087
- readonly properties: {
4088
- readonly page: {
4089
- readonly type: "string";
4090
- };
4091
- readonly directory: {
4092
- readonly type: "string";
4093
- };
4094
- readonly disconnect: {
4095
- readonly type: "boolean";
4096
- readonly default: false;
4097
- };
4098
- readonly group: {
4099
- readonly type: "string";
4100
- };
4101
- readonly label: {
4102
- readonly type: "string";
4103
- };
4104
- readonly href: {
4105
- readonly type: "string";
4106
- };
4107
- readonly external: {
4108
- readonly type: "boolean";
4109
- };
4110
- readonly labelTranslationKey: {
4111
- readonly type: "string";
4112
- };
4113
- readonly groupTranslationKey: {
4114
- readonly type: "string";
4115
- };
4116
- readonly icon: {
4117
- readonly oneOf: readonly [{
4118
- readonly type: "string";
4119
- }, {
4120
- readonly type: "object";
4121
- readonly properties: {
4122
- readonly srcSet: {
4123
- readonly type: "string";
4124
- };
4012
+ readonly properties: {
4013
+ readonly items: {
4014
+ readonly type: "array";
4015
+ readonly items: {
4016
+ readonly type: "object";
4017
+ readonly properties: {
4018
+ readonly page: {
4019
+ readonly type: "string";
4125
4020
  };
4126
- readonly required: readonly ["srcSet"];
4127
- }];
4128
- };
4129
- readonly separator: {
4130
- readonly type: "string";
4131
- };
4132
- readonly separatorLine: {
4133
- readonly type: "boolean";
4134
- };
4135
- readonly linePosition: {
4136
- readonly type: "string";
4137
- readonly enum: readonly ["top", "bottom"];
4138
- readonly default: "top";
4139
- };
4140
- readonly version: {
4141
- readonly type: "string";
4142
- };
4143
- readonly menuStyle: {
4144
- readonly type: "string";
4145
- readonly enum: readonly ["drilldown"];
4146
- };
4147
- readonly expanded: {
4148
- readonly type: "string";
4149
- readonly const: "always";
4150
- };
4151
- readonly selectFirstItemOnExpand: {
4152
- readonly type: "boolean";
4153
- };
4154
- readonly flatten: {
4155
- readonly type: "boolean";
4156
- };
4021
+ readonly directory: {
4022
+ readonly type: "string";
4023
+ };
4024
+ readonly disconnect: {
4025
+ readonly type: "boolean";
4026
+ readonly default: false;
4027
+ };
4028
+ readonly group: {
4029
+ readonly type: "string";
4030
+ };
4031
+ readonly label: {
4032
+ readonly type: "string";
4033
+ };
4034
+ readonly href: {
4035
+ readonly type: "string";
4036
+ };
4037
+ readonly external: {
4038
+ readonly type: "boolean";
4039
+ };
4040
+ readonly labelTranslationKey: {
4041
+ readonly type: "string";
4042
+ };
4043
+ readonly groupTranslationKey: {
4044
+ readonly type: "string";
4045
+ };
4046
+ readonly icon: {
4047
+ readonly oneOf: readonly [{
4048
+ readonly type: "string";
4049
+ }, {
4050
+ readonly type: "object";
4051
+ readonly properties: {
4052
+ readonly srcSet: {
4053
+ readonly type: "string";
4054
+ };
4055
+ };
4056
+ readonly required: readonly ["srcSet"];
4057
+ }];
4058
+ };
4059
+ readonly separator: {
4060
+ readonly type: "string";
4061
+ };
4062
+ readonly separatorLine: {
4063
+ readonly type: "boolean";
4064
+ };
4065
+ readonly linePosition: {
4066
+ readonly type: "string";
4067
+ readonly enum: readonly ["top", "bottom"];
4068
+ readonly default: "top";
4069
+ };
4070
+ readonly version: {
4071
+ readonly type: "string";
4072
+ };
4073
+ readonly menuStyle: {
4074
+ readonly type: "string";
4075
+ readonly enum: readonly ["drilldown"];
4076
+ };
4077
+ readonly expanded: {
4078
+ readonly type: "string";
4079
+ readonly const: "always";
4080
+ };
4081
+ readonly selectFirstItemOnExpand: {
4082
+ readonly type: "boolean";
4083
+ };
4084
+ readonly flatten: {
4085
+ readonly type: "boolean";
4086
+ };
4087
+ readonly linkedSidebars: {
4088
+ readonly type: "array";
4089
+ readonly items: {
4090
+ readonly type: "string";
4091
+ };
4092
+ };
4093
+ readonly items: {
4094
+ readonly type: "array";
4095
+ readonly items: {
4096
+ readonly type: "object";
4097
+ readonly additionalProperties: true;
4098
+ };
4099
+ };
4100
+ readonly rbac: {
4101
+ readonly type: "object";
4102
+ readonly additionalProperties: {
4103
+ readonly type: "string";
4104
+ };
4105
+ };
4106
+ };
4107
+ };
4108
+ };
4109
+ readonly page: {
4110
+ readonly type: "string";
4111
+ };
4112
+ readonly directory: {
4113
+ readonly type: "string";
4114
+ };
4115
+ readonly disconnect: {
4116
+ readonly type: "boolean";
4117
+ readonly default: false;
4118
+ };
4119
+ readonly group: {
4120
+ readonly type: "string";
4121
+ };
4122
+ readonly label: {
4123
+ readonly type: "string";
4124
+ };
4125
+ readonly href: {
4126
+ readonly type: "string";
4127
+ };
4128
+ readonly external: {
4129
+ readonly type: "boolean";
4130
+ };
4131
+ readonly labelTranslationKey: {
4132
+ readonly type: "string";
4133
+ };
4134
+ readonly groupTranslationKey: {
4135
+ readonly type: "string";
4136
+ };
4137
+ readonly icon: {
4138
+ readonly oneOf: readonly [{
4139
+ readonly type: "string";
4140
+ }, {
4141
+ readonly type: "object";
4142
+ readonly properties: {
4143
+ readonly srcSet: {
4144
+ readonly type: "string";
4145
+ };
4146
+ };
4147
+ readonly required: readonly ["srcSet"];
4148
+ }];
4149
+ };
4150
+ readonly separator: {
4151
+ readonly type: "string";
4152
+ };
4153
+ readonly separatorLine: {
4154
+ readonly type: "boolean";
4155
+ };
4156
+ readonly linePosition: {
4157
+ readonly type: "string";
4158
+ readonly enum: readonly ["top", "bottom"];
4159
+ readonly default: "top";
4160
+ };
4161
+ readonly version: {
4162
+ readonly type: "string";
4163
+ };
4164
+ readonly menuStyle: {
4165
+ readonly type: "string";
4166
+ readonly enum: readonly ["drilldown"];
4167
+ };
4168
+ readonly expanded: {
4169
+ readonly type: "string";
4170
+ readonly const: "always";
4171
+ };
4172
+ readonly selectFirstItemOnExpand: {
4173
+ readonly type: "boolean";
4174
+ };
4175
+ readonly flatten: {
4176
+ readonly type: "boolean";
4177
+ };
4178
+ readonly linkedSidebars: {
4179
+ readonly type: "array";
4180
+ readonly items: {
4181
+ readonly type: "string";
4182
+ };
4183
+ };
4184
+ readonly rbac: {
4185
+ readonly type: "object";
4186
+ readonly additionalProperties: {
4187
+ readonly type: "string";
4188
+ };
4189
+ };
4190
+ };
4191
+ readonly type: "object";
4192
+ };
4193
+ };
4194
+ readonly requiredPermission: {
4195
+ readonly type: "string";
4196
+ };
4197
+ readonly separateVersions: {
4198
+ readonly type: "boolean";
4199
+ };
4200
+ readonly title: {
4201
+ readonly type: "string";
4202
+ };
4203
+ readonly titleTranslationKey: {
4204
+ readonly type: "string";
4205
+ };
4206
+ readonly description: {
4207
+ readonly type: "string";
4208
+ };
4209
+ readonly descriptionTranslationKey: {
4210
+ readonly type: "string";
4211
+ };
4212
+ };
4213
+ };
4214
+ };
4215
+ };
4216
+ readonly scorecard: {
4217
+ readonly type: "object";
4218
+ readonly additionalProperties: true;
4219
+ readonly required: readonly [];
4220
+ readonly properties: {
4221
+ readonly ignoreNonCompliant: {
4222
+ readonly type: "boolean";
4223
+ readonly default: false;
4224
+ };
4225
+ readonly teamMetadataProperty: {
4226
+ readonly type: "object";
4227
+ readonly properties: {
4228
+ readonly property: {
4229
+ readonly type: "string";
4230
+ };
4231
+ readonly label: {
4232
+ readonly type: "string";
4233
+ };
4234
+ readonly default: {
4235
+ readonly type: "string";
4236
+ };
4237
+ };
4238
+ };
4239
+ readonly levels: {
4240
+ readonly type: "array";
4241
+ readonly items: {
4242
+ readonly type: "object";
4243
+ readonly required: readonly ["name"];
4244
+ readonly properties: {
4245
+ readonly name: {
4246
+ readonly type: "string";
4247
+ };
4248
+ readonly color: {
4249
+ readonly type: "string";
4250
+ };
4251
+ readonly extends: {
4252
+ readonly type: "array";
4253
+ readonly items: {
4254
+ readonly type: "string";
4255
+ };
4256
+ };
4257
+ readonly rules: {
4258
+ readonly type: "object";
4259
+ readonly additionalProperties: {
4260
+ readonly oneOf: readonly [{
4261
+ readonly type: "string";
4262
+ }, {
4263
+ readonly type: "object";
4264
+ }];
4265
+ };
4266
+ };
4267
+ };
4268
+ readonly additionalProperties: false;
4269
+ };
4270
+ };
4271
+ readonly targets: {
4272
+ readonly type: "array";
4273
+ readonly items: {
4274
+ readonly type: "object";
4275
+ readonly required: readonly ["where"];
4276
+ readonly properties: {
4277
+ readonly minimumLevel: {
4278
+ readonly type: "string";
4279
+ };
4280
+ readonly rules: {
4281
+ readonly type: "object";
4282
+ readonly additionalProperties: true;
4283
+ };
4284
+ readonly where: {
4285
+ readonly type: "object";
4286
+ readonly required: readonly ["metadata"];
4287
+ readonly properties: {
4288
+ readonly metadata: {
4289
+ readonly type: "object";
4290
+ readonly additionalProperties: {
4291
+ readonly type: "string";
4292
+ };
4293
+ };
4294
+ };
4295
+ readonly additionalProperties: false;
4296
+ };
4297
+ };
4298
+ readonly additionalProperties: false;
4299
+ };
4300
+ };
4301
+ readonly ignore: {
4302
+ readonly type: "array";
4303
+ readonly items: {
4304
+ readonly type: "string";
4305
+ };
4306
+ };
4307
+ };
4308
+ };
4309
+ };
4310
+ readonly additionalProperties: true;
4311
+ };
4312
+ export declare const closedThemeConfigSchema: {
4313
+ readonly additionalProperties: false;
4314
+ readonly type: "object";
4315
+ readonly properties: {
4316
+ /**
4317
+ * @deprecated Should use `plugins` instead
4318
+ */
4319
+ readonly imports: {
4320
+ readonly type: "array";
4321
+ readonly items: {
4322
+ readonly type: "string";
4323
+ };
4324
+ };
4325
+ readonly logo: {
4326
+ readonly type: "object";
4327
+ readonly properties: {
4328
+ readonly image: {
4329
+ readonly type: "string";
4330
+ };
4331
+ readonly srcSet: {
4332
+ readonly type: "string";
4333
+ };
4334
+ readonly altText: {
4335
+ readonly type: "string";
4336
+ };
4337
+ readonly link: {
4338
+ readonly type: "string";
4339
+ };
4340
+ readonly favicon: {
4341
+ readonly type: "string";
4342
+ };
4343
+ };
4344
+ readonly additionalProperties: false;
4345
+ };
4346
+ readonly navbar: {
4347
+ readonly type: "object";
4348
+ readonly properties: {
4349
+ readonly hide: {
4350
+ readonly type: "boolean";
4351
+ };
4352
+ readonly items: {
4353
+ readonly type: "array";
4354
+ readonly items: {
4355
+ readonly properties: {
4356
+ readonly items: {
4357
+ readonly type: "array";
4358
+ readonly items: {
4359
+ readonly type: "object";
4360
+ readonly properties: {
4361
+ readonly page: {
4362
+ readonly type: "string";
4363
+ };
4364
+ readonly directory: {
4365
+ readonly type: "string";
4366
+ };
4367
+ readonly disconnect: {
4368
+ readonly type: "boolean";
4369
+ readonly default: false;
4370
+ };
4371
+ readonly group: {
4372
+ readonly type: "string";
4373
+ };
4374
+ readonly label: {
4375
+ readonly type: "string";
4376
+ };
4377
+ readonly href: {
4378
+ readonly type: "string";
4379
+ };
4380
+ readonly external: {
4381
+ readonly type: "boolean";
4382
+ };
4383
+ readonly labelTranslationKey: {
4384
+ readonly type: "string";
4385
+ };
4386
+ readonly groupTranslationKey: {
4387
+ readonly type: "string";
4388
+ };
4389
+ readonly icon: {
4390
+ readonly oneOf: readonly [{
4391
+ readonly type: "string";
4392
+ }, {
4393
+ readonly type: "object";
4394
+ readonly properties: {
4395
+ readonly srcSet: {
4396
+ readonly type: "string";
4397
+ };
4398
+ };
4399
+ readonly required: readonly ["srcSet"];
4400
+ }];
4401
+ };
4402
+ readonly separator: {
4403
+ readonly type: "string";
4404
+ };
4405
+ readonly separatorLine: {
4406
+ readonly type: "boolean";
4407
+ };
4408
+ readonly linePosition: {
4409
+ readonly type: "string";
4410
+ readonly enum: readonly ["top", "bottom"];
4411
+ readonly default: "top";
4412
+ };
4413
+ readonly version: {
4414
+ readonly type: "string";
4415
+ };
4416
+ readonly menuStyle: {
4417
+ readonly type: "string";
4418
+ readonly enum: readonly ["drilldown"];
4419
+ };
4420
+ readonly expanded: {
4421
+ readonly type: "string";
4422
+ readonly const: "always";
4423
+ };
4424
+ readonly selectFirstItemOnExpand: {
4425
+ readonly type: "boolean";
4426
+ };
4427
+ readonly flatten: {
4428
+ readonly type: "boolean";
4429
+ };
4157
4430
  readonly linkedSidebars: {
4158
4431
  readonly type: "array";
4159
4432
  readonly items: {
@@ -7607,109 +7880,382 @@ export declare const closedThemeConfigSchema: {
7607
7880
  readonly includeInDevelopment: {
7608
7881
  readonly type: "boolean";
7609
7882
  };
7610
- readonly trackingId: {
7883
+ readonly trackingId: {
7884
+ readonly type: "string";
7885
+ };
7886
+ readonly conversionId: {
7887
+ readonly type: "string";
7888
+ };
7889
+ readonly floodlightId: {
7890
+ readonly type: "string";
7891
+ };
7892
+ readonly optimizeId: {
7893
+ readonly type: "string";
7894
+ };
7895
+ readonly exclude: {
7896
+ readonly type: "array";
7897
+ readonly items: {
7898
+ readonly type: "string";
7899
+ };
7900
+ };
7901
+ };
7902
+ readonly additionalProperties: false;
7903
+ readonly required: readonly ["trackingId"];
7904
+ };
7905
+ };
7906
+ };
7907
+ readonly additionalProperties: false;
7908
+ readonly required: readonly ["trackingId"];
7909
+ };
7910
+ };
7911
+ };
7912
+ readonly userMenu: {
7913
+ readonly type: "object";
7914
+ readonly properties: {
7915
+ readonly hide: {
7916
+ readonly type: "boolean";
7917
+ };
7918
+ readonly items: {
7919
+ readonly type: "array";
7920
+ readonly items: {
7921
+ readonly type: "object";
7922
+ readonly properties: {
7923
+ readonly label: {
7924
+ readonly type: "string";
7925
+ };
7926
+ readonly external: {
7927
+ readonly type: "boolean";
7928
+ };
7929
+ readonly link: {
7930
+ readonly type: "string";
7931
+ };
7932
+ readonly separatorLine: {
7933
+ readonly type: "boolean";
7934
+ };
7935
+ };
7936
+ readonly additionalProperties: true;
7937
+ };
7938
+ readonly default: readonly [];
7939
+ };
7940
+ readonly hideLoginButton: {
7941
+ readonly type: "boolean";
7942
+ };
7943
+ };
7944
+ readonly additionalProperties: false;
7945
+ };
7946
+ readonly versionPicker: {
7947
+ readonly type: "object";
7948
+ readonly properties: {
7949
+ readonly hide: {
7950
+ readonly type: "boolean";
7951
+ };
7952
+ readonly showForUnversioned: {
7953
+ readonly type: "boolean";
7954
+ };
7955
+ };
7956
+ };
7957
+ readonly breadcrumbs: {
7958
+ readonly type: "object";
7959
+ readonly properties: {
7960
+ readonly hide: {
7961
+ readonly type: "boolean";
7962
+ };
7963
+ readonly prefixItems: {
7964
+ readonly type: "array";
7965
+ readonly items: {
7966
+ readonly type: "object";
7967
+ readonly properties: {
7968
+ readonly label: {
7969
+ readonly type: "string";
7970
+ };
7971
+ readonly labelTranslationKey: {
7972
+ readonly type: "string";
7973
+ };
7974
+ readonly page: {
7975
+ readonly type: "string";
7976
+ };
7977
+ };
7978
+ readonly additionalProperties: false;
7979
+ readonly default: {};
7980
+ };
7981
+ };
7982
+ };
7983
+ readonly additionalProperties: false;
7984
+ };
7985
+ /**
7986
+ * @deprecated Should use `catalogClassic` instead
7987
+ */
7988
+ readonly catalog: {
7989
+ readonly type: "object";
7990
+ readonly patternProperties: {
7991
+ readonly '.*': {
7992
+ readonly type: "object";
7993
+ readonly additionalProperties: true;
7994
+ readonly required: readonly ["slug", "items"];
7995
+ readonly properties: {
7996
+ readonly slug: {
7997
+ readonly type: "string";
7998
+ };
7999
+ readonly filters: {
8000
+ readonly type: "array";
8001
+ readonly items: {
8002
+ readonly type: "object";
8003
+ readonly additionalProperties: false;
8004
+ readonly required: readonly ["title", "property"];
8005
+ readonly properties: {
8006
+ readonly type: {
8007
+ readonly type: "string";
8008
+ readonly enum: readonly ["select", "checkboxes", "date-range"];
8009
+ readonly default: "checkboxes";
8010
+ };
8011
+ readonly title: {
8012
+ readonly type: "string";
8013
+ };
8014
+ readonly titleTranslationKey: {
8015
+ readonly type: "string";
8016
+ };
8017
+ readonly property: {
8018
+ readonly type: "string";
8019
+ };
8020
+ readonly parentFilter: {
8021
+ readonly type: "string";
8022
+ };
8023
+ readonly valuesMapping: {
8024
+ readonly type: "object";
8025
+ readonly additionalProperties: {
8026
+ readonly type: "string";
8027
+ };
8028
+ };
8029
+ readonly missingCategoryName: {
8030
+ readonly type: "string";
8031
+ };
8032
+ readonly missingCategoryNameTranslationKey: {
8033
+ readonly type: "string";
8034
+ };
8035
+ readonly options: {
8036
+ readonly type: "array";
8037
+ readonly items: {
8038
+ readonly type: "string";
8039
+ };
8040
+ };
8041
+ };
8042
+ };
8043
+ };
8044
+ readonly groupByFirstFilter: {
8045
+ readonly type: "boolean";
8046
+ };
8047
+ readonly filterValuesCasing: {
8048
+ readonly type: "string";
8049
+ readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
8050
+ };
8051
+ readonly items: {
8052
+ readonly type: "array";
8053
+ readonly items: {
8054
+ readonly properties: {
8055
+ readonly items: {
8056
+ readonly type: "array";
8057
+ readonly items: {
8058
+ readonly type: "object";
8059
+ readonly properties: {
8060
+ readonly page: {
8061
+ readonly type: "string";
8062
+ };
8063
+ readonly directory: {
8064
+ readonly type: "string";
8065
+ };
8066
+ readonly disconnect: {
8067
+ readonly type: "boolean";
8068
+ readonly default: false;
8069
+ };
8070
+ readonly group: {
8071
+ readonly type: "string";
8072
+ };
8073
+ readonly label: {
8074
+ readonly type: "string";
8075
+ };
8076
+ readonly href: {
8077
+ readonly type: "string";
8078
+ };
8079
+ readonly external: {
8080
+ readonly type: "boolean";
8081
+ };
8082
+ readonly labelTranslationKey: {
8083
+ readonly type: "string";
8084
+ };
8085
+ readonly groupTranslationKey: {
8086
+ readonly type: "string";
8087
+ };
8088
+ readonly icon: {
8089
+ readonly oneOf: readonly [{
8090
+ readonly type: "string";
8091
+ }, {
8092
+ readonly type: "object";
8093
+ readonly properties: {
8094
+ readonly srcSet: {
8095
+ readonly type: "string";
8096
+ };
8097
+ };
8098
+ readonly required: readonly ["srcSet"];
8099
+ }];
8100
+ };
8101
+ readonly separator: {
8102
+ readonly type: "string";
8103
+ };
8104
+ readonly separatorLine: {
8105
+ readonly type: "boolean";
8106
+ };
8107
+ readonly linePosition: {
8108
+ readonly type: "string";
8109
+ readonly enum: readonly ["top", "bottom"];
8110
+ readonly default: "top";
8111
+ };
8112
+ readonly version: {
8113
+ readonly type: "string";
8114
+ };
8115
+ readonly menuStyle: {
8116
+ readonly type: "string";
8117
+ readonly enum: readonly ["drilldown"];
8118
+ };
8119
+ readonly expanded: {
8120
+ readonly type: "string";
8121
+ readonly const: "always";
8122
+ };
8123
+ readonly selectFirstItemOnExpand: {
8124
+ readonly type: "boolean";
8125
+ };
8126
+ readonly flatten: {
8127
+ readonly type: "boolean";
8128
+ };
8129
+ readonly linkedSidebars: {
8130
+ readonly type: "array";
8131
+ readonly items: {
8132
+ readonly type: "string";
8133
+ };
8134
+ };
8135
+ readonly items: {
8136
+ readonly type: "array";
8137
+ readonly items: {
8138
+ readonly type: "object";
8139
+ readonly additionalProperties: true;
8140
+ };
8141
+ };
8142
+ readonly rbac: {
8143
+ readonly type: "object";
8144
+ readonly additionalProperties: {
8145
+ readonly type: "string";
8146
+ };
8147
+ };
8148
+ };
8149
+ };
8150
+ };
8151
+ readonly page: {
8152
+ readonly type: "string";
8153
+ };
8154
+ readonly directory: {
8155
+ readonly type: "string";
8156
+ };
8157
+ readonly disconnect: {
8158
+ readonly type: "boolean";
8159
+ readonly default: false;
8160
+ };
8161
+ readonly group: {
7611
8162
  readonly type: "string";
7612
8163
  };
7613
- readonly conversionId: {
8164
+ readonly label: {
7614
8165
  readonly type: "string";
7615
8166
  };
7616
- readonly floodlightId: {
8167
+ readonly href: {
7617
8168
  readonly type: "string";
7618
8169
  };
7619
- readonly optimizeId: {
8170
+ readonly external: {
8171
+ readonly type: "boolean";
8172
+ };
8173
+ readonly labelTranslationKey: {
7620
8174
  readonly type: "string";
7621
8175
  };
7622
- readonly exclude: {
8176
+ readonly groupTranslationKey: {
8177
+ readonly type: "string";
8178
+ };
8179
+ readonly icon: {
8180
+ readonly oneOf: readonly [{
8181
+ readonly type: "string";
8182
+ }, {
8183
+ readonly type: "object";
8184
+ readonly properties: {
8185
+ readonly srcSet: {
8186
+ readonly type: "string";
8187
+ };
8188
+ };
8189
+ readonly required: readonly ["srcSet"];
8190
+ }];
8191
+ };
8192
+ readonly separator: {
8193
+ readonly type: "string";
8194
+ };
8195
+ readonly separatorLine: {
8196
+ readonly type: "boolean";
8197
+ };
8198
+ readonly linePosition: {
8199
+ readonly type: "string";
8200
+ readonly enum: readonly ["top", "bottom"];
8201
+ readonly default: "top";
8202
+ };
8203
+ readonly version: {
8204
+ readonly type: "string";
8205
+ };
8206
+ readonly menuStyle: {
8207
+ readonly type: "string";
8208
+ readonly enum: readonly ["drilldown"];
8209
+ };
8210
+ readonly expanded: {
8211
+ readonly type: "string";
8212
+ readonly const: "always";
8213
+ };
8214
+ readonly selectFirstItemOnExpand: {
8215
+ readonly type: "boolean";
8216
+ };
8217
+ readonly flatten: {
8218
+ readonly type: "boolean";
8219
+ };
8220
+ readonly linkedSidebars: {
7623
8221
  readonly type: "array";
7624
8222
  readonly items: {
7625
8223
  readonly type: "string";
7626
8224
  };
7627
8225
  };
8226
+ readonly rbac: {
8227
+ readonly type: "object";
8228
+ readonly additionalProperties: {
8229
+ readonly type: "string";
8230
+ };
8231
+ };
7628
8232
  };
7629
- readonly additionalProperties: false;
7630
- readonly required: readonly ["trackingId"];
8233
+ readonly type: "object";
7631
8234
  };
7632
8235
  };
7633
- };
7634
- readonly additionalProperties: false;
7635
- readonly required: readonly ["trackingId"];
7636
- };
7637
- };
7638
- };
7639
- readonly userMenu: {
7640
- readonly type: "object";
7641
- readonly properties: {
7642
- readonly hide: {
7643
- readonly type: "boolean";
7644
- };
7645
- readonly items: {
7646
- readonly type: "array";
7647
- readonly items: {
7648
- readonly type: "object";
7649
- readonly properties: {
7650
- readonly label: {
7651
- readonly type: "string";
7652
- };
7653
- readonly external: {
7654
- readonly type: "boolean";
7655
- };
7656
- readonly link: {
7657
- readonly type: "string";
7658
- };
7659
- readonly separatorLine: {
7660
- readonly type: "boolean";
7661
- };
8236
+ readonly requiredPermission: {
8237
+ readonly type: "string";
7662
8238
  };
7663
- readonly additionalProperties: true;
7664
- };
7665
- readonly default: readonly [];
7666
- };
7667
- readonly hideLoginButton: {
7668
- readonly type: "boolean";
7669
- };
7670
- };
7671
- readonly additionalProperties: false;
7672
- };
7673
- readonly versionPicker: {
7674
- readonly type: "object";
7675
- readonly properties: {
7676
- readonly hide: {
7677
- readonly type: "boolean";
7678
- };
7679
- readonly showForUnversioned: {
7680
- readonly type: "boolean";
7681
- };
7682
- };
7683
- };
7684
- readonly breadcrumbs: {
7685
- readonly type: "object";
7686
- readonly properties: {
7687
- readonly hide: {
7688
- readonly type: "boolean";
7689
- };
7690
- readonly prefixItems: {
7691
- readonly type: "array";
7692
- readonly items: {
7693
- readonly type: "object";
7694
- readonly properties: {
7695
- readonly label: {
7696
- readonly type: "string";
7697
- };
7698
- readonly labelTranslationKey: {
7699
- readonly type: "string";
7700
- };
7701
- readonly page: {
7702
- readonly type: "string";
7703
- };
8239
+ readonly separateVersions: {
8240
+ readonly type: "boolean";
8241
+ };
8242
+ readonly title: {
8243
+ readonly type: "string";
8244
+ };
8245
+ readonly titleTranslationKey: {
8246
+ readonly type: "string";
8247
+ };
8248
+ readonly description: {
8249
+ readonly type: "string";
8250
+ };
8251
+ readonly descriptionTranslationKey: {
8252
+ readonly type: "string";
7704
8253
  };
7705
- readonly additionalProperties: false;
7706
- readonly default: {};
7707
8254
  };
7708
8255
  };
7709
8256
  };
7710
- readonly additionalProperties: false;
7711
8257
  };
7712
- readonly catalog: {
8258
+ readonly catalogClassic: {
7713
8259
  readonly type: "object";
7714
8260
  readonly patternProperties: {
7715
8261
  readonly '.*': {