@redocly/config 0.10.0 → 0.11.0-rc.1
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 +60 -2141
- package/lib/default-theme-config-schema.js +2 -34
- package/lib/ex-theme-config-schemas.d.ts +43 -4
- package/lib/ex-theme-config-schemas.js +23 -7
- package/lib/index.d.ts +1 -1
- package/lib/index.js +4 -4
- package/lib/product-override-schema.d.ts +11119 -0
- package/lib/product-override-schema.js +42 -0
- package/lib/root-config-schema.d.ts +158 -38
- package/lib/types.d.ts +4 -2
- package/lib-esm/apis-config.schema.d.ts +34513 -0
- package/lib-esm/apis-config.schema.js +390 -0
- package/lib-esm/default-theme-config-schema.d.ts +60 -2141
- package/lib-esm/default-theme-config-schema.js +2 -34
- package/lib-esm/ex-theme-config-schemas.d.ts +43 -4
- package/lib-esm/ex-theme-config-schemas.js +22 -6
- package/lib-esm/index.d.ts +1 -1
- package/lib-esm/index.js +1 -1
- package/lib-esm/product-override-schema.d.ts +11119 -0
- package/lib-esm/product-override-schema.js +39 -0
- package/lib-esm/root-config-schema.d.ts +225 -105
- package/lib-esm/root-config-types.d.ts +22809 -0
- package/lib-esm/root-config-types.js +383 -0
- package/lib-esm/types.d.ts +4 -2
- package/package.json +1 -1
|
@@ -486,9 +486,6 @@ export declare const themeConfigSchema: {
|
|
|
486
486
|
};
|
|
487
487
|
};
|
|
488
488
|
readonly required: readonly ["src"];
|
|
489
|
-
/**
|
|
490
|
-
* @deprecated Should use `plugins` instead
|
|
491
|
-
*/
|
|
492
489
|
readonly additionalProperties: true;
|
|
493
490
|
};
|
|
494
491
|
};
|
|
@@ -532,9 +529,6 @@ export declare const themeConfigSchema: {
|
|
|
532
529
|
};
|
|
533
530
|
};
|
|
534
531
|
readonly required: readonly ["src"];
|
|
535
|
-
/**
|
|
536
|
-
* @deprecated Should use `plugins` instead
|
|
537
|
-
*/
|
|
538
532
|
readonly additionalProperties: true;
|
|
539
533
|
};
|
|
540
534
|
};
|
|
@@ -636,9 +630,7 @@ export declare const themeConfigSchema: {
|
|
|
636
630
|
readonly type: "string";
|
|
637
631
|
};
|
|
638
632
|
readonly rightScaleLabel: {
|
|
639
|
-
readonly type: "string";
|
|
640
|
-
* @deprecated Should use `plugins` instead
|
|
641
|
-
*/
|
|
633
|
+
readonly type: "string";
|
|
642
634
|
};
|
|
643
635
|
readonly reasons: {
|
|
644
636
|
readonly type: "object";
|
|
@@ -704,6 +696,30 @@ export declare const themeConfigSchema: {
|
|
|
704
696
|
readonly hide: {
|
|
705
697
|
readonly type: "boolean";
|
|
706
698
|
};
|
|
699
|
+
readonly engine: {
|
|
700
|
+
readonly type: "string";
|
|
701
|
+
readonly enum: readonly ["flexsearch", "typesense"];
|
|
702
|
+
readonly default: "flexsearch";
|
|
703
|
+
};
|
|
704
|
+
readonly facets: {
|
|
705
|
+
readonly type: "array";
|
|
706
|
+
readonly items: {
|
|
707
|
+
readonly type: "object";
|
|
708
|
+
readonly required: readonly ["name", "field", "type"];
|
|
709
|
+
readonly properties: {
|
|
710
|
+
readonly name: {
|
|
711
|
+
readonly type: "string";
|
|
712
|
+
};
|
|
713
|
+
readonly field: {
|
|
714
|
+
readonly type: "string";
|
|
715
|
+
};
|
|
716
|
+
readonly type: {
|
|
717
|
+
readonly type: "string";
|
|
718
|
+
readonly enum: readonly ["input", "multi-select", "select", "tags", "switch", "radio", "checkbox"];
|
|
719
|
+
};
|
|
720
|
+
};
|
|
721
|
+
};
|
|
722
|
+
};
|
|
707
723
|
readonly placement: {
|
|
708
724
|
readonly type: "string";
|
|
709
725
|
readonly default: "navbar";
|
|
@@ -730,16 +746,9 @@ export declare const themeConfigSchema: {
|
|
|
730
746
|
readonly type: "string";
|
|
731
747
|
};
|
|
732
748
|
};
|
|
733
|
-
/**
|
|
734
|
-
* @deprecated left for backwards compatibility
|
|
735
|
-
*/
|
|
736
749
|
readonly required: readonly ["page"];
|
|
737
750
|
};
|
|
738
751
|
};
|
|
739
|
-
readonly fuzzy: {
|
|
740
|
-
readonly type: "boolean";
|
|
741
|
-
readonly default: false;
|
|
742
|
-
};
|
|
743
752
|
};
|
|
744
753
|
readonly additionalProperties: false;
|
|
745
754
|
};
|
|
@@ -2085,6 +2094,9 @@ export declare const themeConfigSchema: {
|
|
|
2085
2094
|
readonly type: "string";
|
|
2086
2095
|
};
|
|
2087
2096
|
readonly enumSingleValue: {
|
|
2097
|
+
/**
|
|
2098
|
+
* @deprecated Should use `plugins` instead
|
|
2099
|
+
*/
|
|
2088
2100
|
readonly type: "string";
|
|
2089
2101
|
};
|
|
2090
2102
|
readonly enumArray: {
|
|
@@ -2363,9 +2375,7 @@ export declare const themeConfigSchema: {
|
|
|
2363
2375
|
readonly type: "string";
|
|
2364
2376
|
};
|
|
2365
2377
|
readonly rightScaleLabel: {
|
|
2366
|
-
readonly type: "string";
|
|
2367
|
-
* @deprecated Should use `plugins` instead
|
|
2368
|
-
*/
|
|
2378
|
+
readonly type: "string";
|
|
2369
2379
|
};
|
|
2370
2380
|
readonly reasons: {
|
|
2371
2381
|
readonly type: "object";
|
|
@@ -2493,9 +2503,6 @@ export declare const themeConfigSchema: {
|
|
|
2493
2503
|
}];
|
|
2494
2504
|
};
|
|
2495
2505
|
readonly schemasExpansionLevel: {
|
|
2496
|
-
/**
|
|
2497
|
-
* @deprecated left for backwards compatibility
|
|
2498
|
-
*/
|
|
2499
2506
|
readonly oneOf: readonly [{
|
|
2500
2507
|
readonly type: "number";
|
|
2501
2508
|
}, {
|
|
@@ -2834,9 +2841,7 @@ export declare const themeConfigSchema: {
|
|
|
2834
2841
|
readonly type: "string";
|
|
2835
2842
|
};
|
|
2836
2843
|
readonly rightScaleLabel: {
|
|
2837
|
-
readonly type: "string";
|
|
2838
|
-
* @deprecated Should use `plugins` instead
|
|
2839
|
-
*/
|
|
2844
|
+
readonly type: "string";
|
|
2840
2845
|
};
|
|
2841
2846
|
readonly reasons: {
|
|
2842
2847
|
readonly type: "object";
|
|
@@ -4043,9 +4048,6 @@ export declare const closedThemeConfigSchema: {
|
|
|
4043
4048
|
};
|
|
4044
4049
|
};
|
|
4045
4050
|
readonly required: readonly ["src"];
|
|
4046
|
-
/**
|
|
4047
|
-
* @deprecated Should use `plugins` instead
|
|
4048
|
-
*/
|
|
4049
4051
|
readonly additionalProperties: true;
|
|
4050
4052
|
};
|
|
4051
4053
|
};
|
|
@@ -4089,9 +4091,6 @@ export declare const closedThemeConfigSchema: {
|
|
|
4089
4091
|
};
|
|
4090
4092
|
};
|
|
4091
4093
|
readonly required: readonly ["src"];
|
|
4092
|
-
/**
|
|
4093
|
-
* @deprecated Should use `plugins` instead
|
|
4094
|
-
*/
|
|
4095
4094
|
readonly additionalProperties: true;
|
|
4096
4095
|
};
|
|
4097
4096
|
};
|
|
@@ -4193,9 +4192,7 @@ export declare const closedThemeConfigSchema: {
|
|
|
4193
4192
|
readonly type: "string";
|
|
4194
4193
|
};
|
|
4195
4194
|
readonly rightScaleLabel: {
|
|
4196
|
-
readonly type: "string";
|
|
4197
|
-
* @deprecated Should use `plugins` instead
|
|
4198
|
-
*/
|
|
4195
|
+
readonly type: "string";
|
|
4199
4196
|
};
|
|
4200
4197
|
readonly reasons: {
|
|
4201
4198
|
readonly type: "object";
|
|
@@ -4261,6 +4258,30 @@ export declare const closedThemeConfigSchema: {
|
|
|
4261
4258
|
readonly hide: {
|
|
4262
4259
|
readonly type: "boolean";
|
|
4263
4260
|
};
|
|
4261
|
+
readonly engine: {
|
|
4262
|
+
readonly type: "string";
|
|
4263
|
+
readonly enum: readonly ["flexsearch", "typesense"];
|
|
4264
|
+
readonly default: "flexsearch";
|
|
4265
|
+
};
|
|
4266
|
+
readonly facets: {
|
|
4267
|
+
readonly type: "array";
|
|
4268
|
+
readonly items: {
|
|
4269
|
+
readonly type: "object";
|
|
4270
|
+
readonly required: readonly ["name", "field", "type"];
|
|
4271
|
+
readonly properties: {
|
|
4272
|
+
readonly name: {
|
|
4273
|
+
readonly type: "string";
|
|
4274
|
+
};
|
|
4275
|
+
readonly field: {
|
|
4276
|
+
readonly type: "string";
|
|
4277
|
+
};
|
|
4278
|
+
readonly type: {
|
|
4279
|
+
readonly type: "string";
|
|
4280
|
+
readonly enum: readonly ["input", "multi-select", "select", "tags", "switch", "radio", "checkbox"];
|
|
4281
|
+
};
|
|
4282
|
+
};
|
|
4283
|
+
};
|
|
4284
|
+
};
|
|
4264
4285
|
readonly placement: {
|
|
4265
4286
|
readonly type: "string";
|
|
4266
4287
|
readonly default: "navbar";
|
|
@@ -4287,16 +4308,9 @@ export declare const closedThemeConfigSchema: {
|
|
|
4287
4308
|
readonly type: "string";
|
|
4288
4309
|
};
|
|
4289
4310
|
};
|
|
4290
|
-
/**
|
|
4291
|
-
* @deprecated left for backwards compatibility
|
|
4292
|
-
*/
|
|
4293
4311
|
readonly required: readonly ["page"];
|
|
4294
4312
|
};
|
|
4295
4313
|
};
|
|
4296
|
-
readonly fuzzy: {
|
|
4297
|
-
readonly type: "boolean";
|
|
4298
|
-
readonly default: false;
|
|
4299
|
-
};
|
|
4300
4314
|
};
|
|
4301
4315
|
readonly additionalProperties: false;
|
|
4302
4316
|
};
|
|
@@ -5642,6 +5656,9 @@ export declare const closedThemeConfigSchema: {
|
|
|
5642
5656
|
readonly type: "string";
|
|
5643
5657
|
};
|
|
5644
5658
|
readonly enumSingleValue: {
|
|
5659
|
+
/**
|
|
5660
|
+
* @deprecated Should use `plugins` instead
|
|
5661
|
+
*/
|
|
5645
5662
|
readonly type: "string";
|
|
5646
5663
|
};
|
|
5647
5664
|
readonly enumArray: {
|
|
@@ -5920,9 +5937,7 @@ export declare const closedThemeConfigSchema: {
|
|
|
5920
5937
|
readonly type: "string";
|
|
5921
5938
|
};
|
|
5922
5939
|
readonly rightScaleLabel: {
|
|
5923
|
-
readonly type: "string";
|
|
5924
|
-
* @deprecated Should use `plugins` instead
|
|
5925
|
-
*/
|
|
5940
|
+
readonly type: "string";
|
|
5926
5941
|
};
|
|
5927
5942
|
readonly reasons: {
|
|
5928
5943
|
readonly type: "object";
|
|
@@ -6050,9 +6065,6 @@ export declare const closedThemeConfigSchema: {
|
|
|
6050
6065
|
}];
|
|
6051
6066
|
};
|
|
6052
6067
|
readonly schemasExpansionLevel: {
|
|
6053
|
-
/**
|
|
6054
|
-
* @deprecated left for backwards compatibility
|
|
6055
|
-
*/
|
|
6056
6068
|
readonly oneOf: readonly [{
|
|
6057
6069
|
readonly type: "number";
|
|
6058
6070
|
}, {
|
|
@@ -6391,9 +6403,7 @@ export declare const closedThemeConfigSchema: {
|
|
|
6391
6403
|
readonly type: "string";
|
|
6392
6404
|
};
|
|
6393
6405
|
readonly rightScaleLabel: {
|
|
6394
|
-
readonly type: "string";
|
|
6395
|
-
* @deprecated Should use `plugins` instead
|
|
6396
|
-
*/
|
|
6406
|
+
readonly type: "string";
|
|
6397
6407
|
};
|
|
6398
6408
|
readonly reasons: {
|
|
6399
6409
|
readonly type: "object";
|
|
@@ -7110,2094 +7120,3 @@ export declare const closedThemeConfigSchema: {
|
|
|
7110
7120
|
};
|
|
7111
7121
|
};
|
|
7112
7122
|
};
|
|
7113
|
-
export declare const productThemeOverrideSchema: {
|
|
7114
|
-
readonly type: "object";
|
|
7115
|
-
readonly properties: {
|
|
7116
|
-
readonly logo: {
|
|
7117
|
-
readonly type: "object";
|
|
7118
|
-
readonly properties: {
|
|
7119
|
-
readonly image: {
|
|
7120
|
-
readonly type: "string";
|
|
7121
|
-
};
|
|
7122
|
-
readonly srcSet: {
|
|
7123
|
-
readonly type: "string";
|
|
7124
|
-
};
|
|
7125
|
-
readonly altText: {
|
|
7126
|
-
readonly type: "string";
|
|
7127
|
-
};
|
|
7128
|
-
readonly link: {
|
|
7129
|
-
readonly type: "string";
|
|
7130
|
-
};
|
|
7131
|
-
readonly favicon: {
|
|
7132
|
-
readonly type: "string";
|
|
7133
|
-
};
|
|
7134
|
-
};
|
|
7135
|
-
readonly additionalProperties: false;
|
|
7136
|
-
};
|
|
7137
|
-
readonly navbar: {
|
|
7138
|
-
readonly type: "object";
|
|
7139
|
-
readonly properties: {
|
|
7140
|
-
readonly hide: {
|
|
7141
|
-
readonly type: "boolean";
|
|
7142
|
-
};
|
|
7143
|
-
readonly items: {
|
|
7144
|
-
readonly type: "array";
|
|
7145
|
-
readonly items: {
|
|
7146
|
-
readonly properties: {
|
|
7147
|
-
readonly items: {
|
|
7148
|
-
readonly type: "array";
|
|
7149
|
-
readonly items: {
|
|
7150
|
-
readonly type: "object";
|
|
7151
|
-
readonly properties: {
|
|
7152
|
-
readonly page: {
|
|
7153
|
-
readonly type: "string";
|
|
7154
|
-
};
|
|
7155
|
-
readonly directory: {
|
|
7156
|
-
readonly type: "string";
|
|
7157
|
-
};
|
|
7158
|
-
readonly disconnect: {
|
|
7159
|
-
readonly type: "boolean";
|
|
7160
|
-
readonly default: false;
|
|
7161
|
-
};
|
|
7162
|
-
readonly group: {
|
|
7163
|
-
readonly type: "string";
|
|
7164
|
-
};
|
|
7165
|
-
readonly label: {
|
|
7166
|
-
readonly type: "string";
|
|
7167
|
-
};
|
|
7168
|
-
readonly href: {
|
|
7169
|
-
readonly type: "string";
|
|
7170
|
-
};
|
|
7171
|
-
readonly external: {
|
|
7172
|
-
readonly type: "boolean";
|
|
7173
|
-
};
|
|
7174
|
-
readonly labelTranslationKey: {
|
|
7175
|
-
readonly type: "string";
|
|
7176
|
-
};
|
|
7177
|
-
readonly groupTranslationKey: {
|
|
7178
|
-
readonly type: "string";
|
|
7179
|
-
};
|
|
7180
|
-
readonly icon: {
|
|
7181
|
-
readonly oneOf: readonly [{
|
|
7182
|
-
readonly type: "string";
|
|
7183
|
-
}, {
|
|
7184
|
-
readonly type: "object";
|
|
7185
|
-
readonly properties: {
|
|
7186
|
-
readonly srcSet: {
|
|
7187
|
-
readonly type: "string";
|
|
7188
|
-
};
|
|
7189
|
-
};
|
|
7190
|
-
readonly required: readonly ["srcSet"];
|
|
7191
|
-
}];
|
|
7192
|
-
};
|
|
7193
|
-
readonly separator: {
|
|
7194
|
-
readonly type: "string";
|
|
7195
|
-
};
|
|
7196
|
-
readonly separatorLine: {
|
|
7197
|
-
readonly type: "boolean";
|
|
7198
|
-
};
|
|
7199
|
-
readonly linePosition: {
|
|
7200
|
-
readonly type: "string";
|
|
7201
|
-
readonly enum: readonly ["top", "bottom"];
|
|
7202
|
-
readonly default: "top";
|
|
7203
|
-
};
|
|
7204
|
-
readonly version: {
|
|
7205
|
-
readonly type: "string";
|
|
7206
|
-
};
|
|
7207
|
-
readonly menuStyle: {
|
|
7208
|
-
readonly type: "string";
|
|
7209
|
-
readonly enum: readonly ["drilldown"];
|
|
7210
|
-
};
|
|
7211
|
-
readonly expanded: {
|
|
7212
|
-
readonly type: "string";
|
|
7213
|
-
readonly const: "always";
|
|
7214
|
-
};
|
|
7215
|
-
readonly selectFirstItemOnExpand: {
|
|
7216
|
-
readonly type: "boolean";
|
|
7217
|
-
};
|
|
7218
|
-
readonly flatten: {
|
|
7219
|
-
readonly type: "boolean";
|
|
7220
|
-
};
|
|
7221
|
-
readonly linkedSidebars: {
|
|
7222
|
-
readonly type: "array";
|
|
7223
|
-
readonly items: {
|
|
7224
|
-
readonly type: "string";
|
|
7225
|
-
};
|
|
7226
|
-
};
|
|
7227
|
-
readonly items: {
|
|
7228
|
-
readonly type: "array";
|
|
7229
|
-
readonly items: {
|
|
7230
|
-
readonly type: "object";
|
|
7231
|
-
readonly additionalProperties: true;
|
|
7232
|
-
};
|
|
7233
|
-
};
|
|
7234
|
-
};
|
|
7235
|
-
};
|
|
7236
|
-
};
|
|
7237
|
-
readonly page: {
|
|
7238
|
-
readonly type: "string";
|
|
7239
|
-
};
|
|
7240
|
-
readonly directory: {
|
|
7241
|
-
readonly type: "string";
|
|
7242
|
-
};
|
|
7243
|
-
readonly disconnect: {
|
|
7244
|
-
readonly type: "boolean";
|
|
7245
|
-
readonly default: false;
|
|
7246
|
-
};
|
|
7247
|
-
readonly group: {
|
|
7248
|
-
readonly type: "string";
|
|
7249
|
-
};
|
|
7250
|
-
readonly label: {
|
|
7251
|
-
readonly type: "string";
|
|
7252
|
-
};
|
|
7253
|
-
readonly href: {
|
|
7254
|
-
readonly type: "string";
|
|
7255
|
-
};
|
|
7256
|
-
readonly external: {
|
|
7257
|
-
readonly type: "boolean";
|
|
7258
|
-
};
|
|
7259
|
-
readonly labelTranslationKey: {
|
|
7260
|
-
readonly type: "string";
|
|
7261
|
-
};
|
|
7262
|
-
readonly groupTranslationKey: {
|
|
7263
|
-
readonly type: "string";
|
|
7264
|
-
};
|
|
7265
|
-
readonly icon: {
|
|
7266
|
-
readonly oneOf: readonly [{
|
|
7267
|
-
readonly type: "string";
|
|
7268
|
-
}, {
|
|
7269
|
-
readonly type: "object";
|
|
7270
|
-
readonly properties: {
|
|
7271
|
-
readonly srcSet: {
|
|
7272
|
-
readonly type: "string";
|
|
7273
|
-
};
|
|
7274
|
-
};
|
|
7275
|
-
readonly required: readonly ["srcSet"];
|
|
7276
|
-
}];
|
|
7277
|
-
};
|
|
7278
|
-
readonly separator: {
|
|
7279
|
-
readonly type: "string";
|
|
7280
|
-
};
|
|
7281
|
-
readonly separatorLine: {
|
|
7282
|
-
readonly type: "boolean";
|
|
7283
|
-
};
|
|
7284
|
-
readonly linePosition: {
|
|
7285
|
-
readonly type: "string";
|
|
7286
|
-
readonly enum: readonly ["top", "bottom"];
|
|
7287
|
-
readonly default: "top";
|
|
7288
|
-
};
|
|
7289
|
-
readonly version: {
|
|
7290
|
-
readonly type: "string";
|
|
7291
|
-
};
|
|
7292
|
-
readonly menuStyle: {
|
|
7293
|
-
readonly type: "string";
|
|
7294
|
-
readonly enum: readonly ["drilldown"];
|
|
7295
|
-
};
|
|
7296
|
-
readonly expanded: {
|
|
7297
|
-
readonly type: "string";
|
|
7298
|
-
readonly const: "always";
|
|
7299
|
-
};
|
|
7300
|
-
readonly selectFirstItemOnExpand: {
|
|
7301
|
-
readonly type: "boolean";
|
|
7302
|
-
};
|
|
7303
|
-
readonly flatten: {
|
|
7304
|
-
readonly type: "boolean";
|
|
7305
|
-
};
|
|
7306
|
-
readonly linkedSidebars: {
|
|
7307
|
-
readonly type: "array";
|
|
7308
|
-
readonly items: {
|
|
7309
|
-
readonly type: "string";
|
|
7310
|
-
};
|
|
7311
|
-
};
|
|
7312
|
-
};
|
|
7313
|
-
readonly type: "object";
|
|
7314
|
-
};
|
|
7315
|
-
};
|
|
7316
|
-
};
|
|
7317
|
-
readonly additionalProperties: false;
|
|
7318
|
-
};
|
|
7319
|
-
readonly footer: {
|
|
7320
|
-
readonly type: "object";
|
|
7321
|
-
readonly properties: {
|
|
7322
|
-
readonly hide: {
|
|
7323
|
-
readonly type: "boolean";
|
|
7324
|
-
};
|
|
7325
|
-
readonly items: {
|
|
7326
|
-
readonly type: "array";
|
|
7327
|
-
readonly items: {
|
|
7328
|
-
readonly properties: {
|
|
7329
|
-
readonly items: {
|
|
7330
|
-
readonly type: "array";
|
|
7331
|
-
readonly items: {
|
|
7332
|
-
readonly type: "object";
|
|
7333
|
-
readonly properties: {
|
|
7334
|
-
readonly page: {
|
|
7335
|
-
readonly type: "string";
|
|
7336
|
-
};
|
|
7337
|
-
readonly directory: {
|
|
7338
|
-
readonly type: "string";
|
|
7339
|
-
};
|
|
7340
|
-
readonly disconnect: {
|
|
7341
|
-
readonly type: "boolean";
|
|
7342
|
-
readonly default: false;
|
|
7343
|
-
};
|
|
7344
|
-
readonly group: {
|
|
7345
|
-
readonly type: "string";
|
|
7346
|
-
};
|
|
7347
|
-
readonly label: {
|
|
7348
|
-
readonly type: "string";
|
|
7349
|
-
};
|
|
7350
|
-
readonly href: {
|
|
7351
|
-
readonly type: "string";
|
|
7352
|
-
};
|
|
7353
|
-
readonly external: {
|
|
7354
|
-
readonly type: "boolean";
|
|
7355
|
-
};
|
|
7356
|
-
readonly labelTranslationKey: {
|
|
7357
|
-
readonly type: "string";
|
|
7358
|
-
};
|
|
7359
|
-
readonly groupTranslationKey: {
|
|
7360
|
-
readonly type: "string";
|
|
7361
|
-
};
|
|
7362
|
-
readonly icon: {
|
|
7363
|
-
readonly oneOf: readonly [{
|
|
7364
|
-
readonly type: "string";
|
|
7365
|
-
}, {
|
|
7366
|
-
readonly type: "object";
|
|
7367
|
-
readonly properties: {
|
|
7368
|
-
readonly srcSet: {
|
|
7369
|
-
readonly type: "string";
|
|
7370
|
-
};
|
|
7371
|
-
};
|
|
7372
|
-
readonly required: readonly ["srcSet"];
|
|
7373
|
-
}];
|
|
7374
|
-
};
|
|
7375
|
-
readonly separator: {
|
|
7376
|
-
readonly type: "string";
|
|
7377
|
-
};
|
|
7378
|
-
readonly separatorLine: {
|
|
7379
|
-
readonly type: "boolean";
|
|
7380
|
-
};
|
|
7381
|
-
readonly linePosition: {
|
|
7382
|
-
readonly type: "string";
|
|
7383
|
-
readonly enum: readonly ["top", "bottom"];
|
|
7384
|
-
readonly default: "top";
|
|
7385
|
-
};
|
|
7386
|
-
readonly version: {
|
|
7387
|
-
readonly type: "string";
|
|
7388
|
-
};
|
|
7389
|
-
readonly menuStyle: {
|
|
7390
|
-
readonly type: "string";
|
|
7391
|
-
readonly enum: readonly ["drilldown"];
|
|
7392
|
-
};
|
|
7393
|
-
readonly expanded: {
|
|
7394
|
-
readonly type: "string";
|
|
7395
|
-
readonly const: "always";
|
|
7396
|
-
};
|
|
7397
|
-
readonly selectFirstItemOnExpand: {
|
|
7398
|
-
readonly type: "boolean";
|
|
7399
|
-
};
|
|
7400
|
-
readonly flatten: {
|
|
7401
|
-
readonly type: "boolean";
|
|
7402
|
-
};
|
|
7403
|
-
readonly linkedSidebars: {
|
|
7404
|
-
readonly type: "array";
|
|
7405
|
-
readonly items: {
|
|
7406
|
-
readonly type: "string";
|
|
7407
|
-
};
|
|
7408
|
-
};
|
|
7409
|
-
readonly items: {
|
|
7410
|
-
readonly type: "array";
|
|
7411
|
-
readonly items: {
|
|
7412
|
-
readonly type: "object";
|
|
7413
|
-
readonly additionalProperties: true;
|
|
7414
|
-
};
|
|
7415
|
-
};
|
|
7416
|
-
};
|
|
7417
|
-
};
|
|
7418
|
-
};
|
|
7419
|
-
readonly page: {
|
|
7420
|
-
readonly type: "string";
|
|
7421
|
-
};
|
|
7422
|
-
readonly directory: {
|
|
7423
|
-
readonly type: "string";
|
|
7424
|
-
};
|
|
7425
|
-
readonly disconnect: {
|
|
7426
|
-
readonly type: "boolean";
|
|
7427
|
-
readonly default: false;
|
|
7428
|
-
};
|
|
7429
|
-
readonly group: {
|
|
7430
|
-
readonly type: "string";
|
|
7431
|
-
};
|
|
7432
|
-
readonly label: {
|
|
7433
|
-
readonly type: "string";
|
|
7434
|
-
};
|
|
7435
|
-
readonly href: {
|
|
7436
|
-
readonly type: "string";
|
|
7437
|
-
};
|
|
7438
|
-
readonly external: {
|
|
7439
|
-
readonly type: "boolean";
|
|
7440
|
-
};
|
|
7441
|
-
readonly labelTranslationKey: {
|
|
7442
|
-
readonly type: "string";
|
|
7443
|
-
};
|
|
7444
|
-
readonly groupTranslationKey: {
|
|
7445
|
-
readonly type: "string";
|
|
7446
|
-
};
|
|
7447
|
-
readonly icon: {
|
|
7448
|
-
readonly oneOf: readonly [{
|
|
7449
|
-
readonly type: "string";
|
|
7450
|
-
}, {
|
|
7451
|
-
readonly type: "object";
|
|
7452
|
-
readonly properties: {
|
|
7453
|
-
readonly srcSet: {
|
|
7454
|
-
readonly type: "string";
|
|
7455
|
-
};
|
|
7456
|
-
};
|
|
7457
|
-
readonly required: readonly ["srcSet"];
|
|
7458
|
-
}];
|
|
7459
|
-
};
|
|
7460
|
-
readonly separator: {
|
|
7461
|
-
readonly type: "string";
|
|
7462
|
-
};
|
|
7463
|
-
readonly separatorLine: {
|
|
7464
|
-
readonly type: "boolean";
|
|
7465
|
-
};
|
|
7466
|
-
readonly linePosition: {
|
|
7467
|
-
readonly type: "string";
|
|
7468
|
-
readonly enum: readonly ["top", "bottom"];
|
|
7469
|
-
readonly default: "top";
|
|
7470
|
-
};
|
|
7471
|
-
readonly version: {
|
|
7472
|
-
readonly type: "string";
|
|
7473
|
-
};
|
|
7474
|
-
readonly menuStyle: {
|
|
7475
|
-
readonly type: "string";
|
|
7476
|
-
readonly enum: readonly ["drilldown"];
|
|
7477
|
-
};
|
|
7478
|
-
readonly expanded: {
|
|
7479
|
-
readonly type: "string";
|
|
7480
|
-
readonly const: "always";
|
|
7481
|
-
};
|
|
7482
|
-
readonly selectFirstItemOnExpand: {
|
|
7483
|
-
readonly type: "boolean";
|
|
7484
|
-
};
|
|
7485
|
-
readonly flatten: {
|
|
7486
|
-
readonly type: "boolean";
|
|
7487
|
-
};
|
|
7488
|
-
readonly linkedSidebars: {
|
|
7489
|
-
readonly type: "array";
|
|
7490
|
-
readonly items: {
|
|
7491
|
-
readonly type: "string";
|
|
7492
|
-
};
|
|
7493
|
-
};
|
|
7494
|
-
};
|
|
7495
|
-
readonly type: "object";
|
|
7496
|
-
};
|
|
7497
|
-
};
|
|
7498
|
-
readonly copyrightText: {
|
|
7499
|
-
readonly type: "string";
|
|
7500
|
-
};
|
|
7501
|
-
readonly logo: {
|
|
7502
|
-
readonly type: "object";
|
|
7503
|
-
readonly properties: {
|
|
7504
|
-
readonly hide: {
|
|
7505
|
-
readonly type: "boolean";
|
|
7506
|
-
};
|
|
7507
|
-
};
|
|
7508
|
-
readonly additionalProperties: false;
|
|
7509
|
-
};
|
|
7510
|
-
};
|
|
7511
|
-
readonly additionalProperties: false;
|
|
7512
|
-
};
|
|
7513
|
-
readonly sidebar: {
|
|
7514
|
-
readonly type: "object";
|
|
7515
|
-
readonly properties: {
|
|
7516
|
-
readonly hide: {
|
|
7517
|
-
readonly type: "boolean";
|
|
7518
|
-
};
|
|
7519
|
-
readonly separatorLine: {
|
|
7520
|
-
readonly type: "boolean";
|
|
7521
|
-
};
|
|
7522
|
-
readonly linePosition: {
|
|
7523
|
-
readonly type: "string";
|
|
7524
|
-
readonly enum: readonly ["top", "bottom"];
|
|
7525
|
-
readonly default: "bottom";
|
|
7526
|
-
};
|
|
7527
|
-
};
|
|
7528
|
-
readonly additionalProperties: false;
|
|
7529
|
-
};
|
|
7530
|
-
readonly search: {
|
|
7531
|
-
readonly type: "object";
|
|
7532
|
-
readonly properties: {
|
|
7533
|
-
readonly hide: {
|
|
7534
|
-
readonly type: "boolean";
|
|
7535
|
-
};
|
|
7536
|
-
readonly placement: {
|
|
7537
|
-
readonly type: "string";
|
|
7538
|
-
readonly default: "navbar";
|
|
7539
|
-
};
|
|
7540
|
-
readonly shortcuts: {
|
|
7541
|
-
readonly type: "array";
|
|
7542
|
-
readonly items: {
|
|
7543
|
-
readonly type: "string";
|
|
7544
|
-
};
|
|
7545
|
-
readonly default: readonly ["/"];
|
|
7546
|
-
};
|
|
7547
|
-
readonly suggestedPages: {
|
|
7548
|
-
readonly type: "array";
|
|
7549
|
-
readonly items: {
|
|
7550
|
-
readonly type: "object";
|
|
7551
|
-
readonly properties: {
|
|
7552
|
-
readonly page: {
|
|
7553
|
-
readonly type: "string";
|
|
7554
|
-
};
|
|
7555
|
-
readonly label: {
|
|
7556
|
-
readonly type: "string";
|
|
7557
|
-
};
|
|
7558
|
-
readonly labelTranslationKey: {
|
|
7559
|
-
readonly type: "string";
|
|
7560
|
-
};
|
|
7561
|
-
};
|
|
7562
|
-
/**
|
|
7563
|
-
* @deprecated left for backwards compatibility
|
|
7564
|
-
*/
|
|
7565
|
-
readonly required: readonly ["page"];
|
|
7566
|
-
};
|
|
7567
|
-
};
|
|
7568
|
-
readonly fuzzy: {
|
|
7569
|
-
readonly type: "boolean";
|
|
7570
|
-
readonly default: false;
|
|
7571
|
-
};
|
|
7572
|
-
};
|
|
7573
|
-
readonly additionalProperties: false;
|
|
7574
|
-
};
|
|
7575
|
-
readonly codeSnippet: {
|
|
7576
|
-
readonly type: "object";
|
|
7577
|
-
readonly properties: {
|
|
7578
|
-
readonly elementFormat: {
|
|
7579
|
-
readonly type: "string";
|
|
7580
|
-
readonly default: "icon";
|
|
7581
|
-
};
|
|
7582
|
-
readonly copy: {
|
|
7583
|
-
readonly type: "object";
|
|
7584
|
-
readonly properties: {
|
|
7585
|
-
readonly hide: {
|
|
7586
|
-
readonly type: "boolean";
|
|
7587
|
-
};
|
|
7588
|
-
};
|
|
7589
|
-
readonly additionalProperties: false;
|
|
7590
|
-
readonly default: {
|
|
7591
|
-
readonly hide: false;
|
|
7592
|
-
};
|
|
7593
|
-
};
|
|
7594
|
-
readonly report: {
|
|
7595
|
-
readonly type: "object";
|
|
7596
|
-
readonly properties: {
|
|
7597
|
-
readonly hide: {
|
|
7598
|
-
readonly type: "boolean";
|
|
7599
|
-
};
|
|
7600
|
-
readonly tooltipText: {
|
|
7601
|
-
readonly type: "string";
|
|
7602
|
-
};
|
|
7603
|
-
readonly buttonText: {
|
|
7604
|
-
readonly type: "string";
|
|
7605
|
-
};
|
|
7606
|
-
readonly label: {
|
|
7607
|
-
readonly type: "string";
|
|
7608
|
-
};
|
|
7609
|
-
};
|
|
7610
|
-
readonly additionalProperties: false;
|
|
7611
|
-
readonly default: {
|
|
7612
|
-
readonly hide: false;
|
|
7613
|
-
};
|
|
7614
|
-
};
|
|
7615
|
-
readonly expand: {
|
|
7616
|
-
readonly type: "object";
|
|
7617
|
-
readonly properties: {
|
|
7618
|
-
readonly hide: {
|
|
7619
|
-
readonly type: "boolean";
|
|
7620
|
-
};
|
|
7621
|
-
};
|
|
7622
|
-
readonly additionalProperties: false;
|
|
7623
|
-
readonly default: {
|
|
7624
|
-
readonly hide: false;
|
|
7625
|
-
};
|
|
7626
|
-
};
|
|
7627
|
-
readonly collapse: {
|
|
7628
|
-
readonly type: "object";
|
|
7629
|
-
readonly properties: {
|
|
7630
|
-
readonly hide: {
|
|
7631
|
-
readonly type: "boolean";
|
|
7632
|
-
};
|
|
7633
|
-
};
|
|
7634
|
-
readonly additionalProperties: false;
|
|
7635
|
-
readonly default: {
|
|
7636
|
-
readonly hide: false;
|
|
7637
|
-
};
|
|
7638
|
-
};
|
|
7639
|
-
};
|
|
7640
|
-
readonly additionalProperties: false;
|
|
7641
|
-
};
|
|
7642
|
-
readonly breadcrumbs: {
|
|
7643
|
-
readonly type: "object";
|
|
7644
|
-
readonly properties: {
|
|
7645
|
-
readonly hide: {
|
|
7646
|
-
readonly type: "boolean";
|
|
7647
|
-
};
|
|
7648
|
-
readonly prefixItems: {
|
|
7649
|
-
readonly type: "array";
|
|
7650
|
-
readonly items: {
|
|
7651
|
-
readonly type: "object";
|
|
7652
|
-
readonly properties: {
|
|
7653
|
-
readonly label: {
|
|
7654
|
-
readonly type: "string";
|
|
7655
|
-
};
|
|
7656
|
-
readonly labelTranslationKey: {
|
|
7657
|
-
readonly type: "string";
|
|
7658
|
-
};
|
|
7659
|
-
readonly page: {
|
|
7660
|
-
readonly type: "string";
|
|
7661
|
-
};
|
|
7662
|
-
};
|
|
7663
|
-
readonly additionalProperties: false;
|
|
7664
|
-
readonly default: {};
|
|
7665
|
-
};
|
|
7666
|
-
};
|
|
7667
|
-
};
|
|
7668
|
-
readonly additionalProperties: false;
|
|
7669
|
-
};
|
|
7670
|
-
readonly feedback: {
|
|
7671
|
-
readonly type: "object";
|
|
7672
|
-
readonly properties: {
|
|
7673
|
-
readonly hide: {
|
|
7674
|
-
readonly type: "boolean";
|
|
7675
|
-
readonly default: false;
|
|
7676
|
-
};
|
|
7677
|
-
readonly type: {
|
|
7678
|
-
readonly type: "string";
|
|
7679
|
-
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
7680
|
-
readonly default: "sentiment";
|
|
7681
|
-
};
|
|
7682
|
-
readonly settings: {
|
|
7683
|
-
readonly type: "object";
|
|
7684
|
-
readonly properties: {
|
|
7685
|
-
readonly label: {
|
|
7686
|
-
readonly type: "string";
|
|
7687
|
-
};
|
|
7688
|
-
readonly submitText: {
|
|
7689
|
-
readonly type: "string";
|
|
7690
|
-
};
|
|
7691
|
-
readonly buttonText: {
|
|
7692
|
-
readonly type: "string";
|
|
7693
|
-
};
|
|
7694
|
-
readonly component: {
|
|
7695
|
-
readonly type: "string";
|
|
7696
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
7697
|
-
readonly default: "checkbox";
|
|
7698
|
-
};
|
|
7699
|
-
readonly items: {
|
|
7700
|
-
readonly type: "array";
|
|
7701
|
-
readonly items: {
|
|
7702
|
-
readonly type: "string";
|
|
7703
|
-
};
|
|
7704
|
-
readonly minItems: 1;
|
|
7705
|
-
};
|
|
7706
|
-
readonly leftScaleLabel: {
|
|
7707
|
-
readonly type: "string";
|
|
7708
|
-
};
|
|
7709
|
-
readonly rightScaleLabel: {
|
|
7710
|
-
readonly type: "string"; /**
|
|
7711
|
-
* @deprecated Should use `plugins` instead
|
|
7712
|
-
*/
|
|
7713
|
-
};
|
|
7714
|
-
readonly reasons: {
|
|
7715
|
-
readonly type: "object";
|
|
7716
|
-
readonly properties: {
|
|
7717
|
-
readonly hide: {
|
|
7718
|
-
readonly type: "boolean";
|
|
7719
|
-
readonly default: false;
|
|
7720
|
-
};
|
|
7721
|
-
readonly component: {
|
|
7722
|
-
readonly type: "string";
|
|
7723
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
7724
|
-
readonly default: "checkbox";
|
|
7725
|
-
};
|
|
7726
|
-
readonly label: {
|
|
7727
|
-
readonly type: "string";
|
|
7728
|
-
};
|
|
7729
|
-
readonly items: {
|
|
7730
|
-
readonly type: "array";
|
|
7731
|
-
readonly items: {
|
|
7732
|
-
readonly type: "string";
|
|
7733
|
-
};
|
|
7734
|
-
};
|
|
7735
|
-
};
|
|
7736
|
-
readonly additionalProperties: false;
|
|
7737
|
-
};
|
|
7738
|
-
readonly comment: {
|
|
7739
|
-
readonly type: "object";
|
|
7740
|
-
readonly properties: {
|
|
7741
|
-
readonly hide: {
|
|
7742
|
-
readonly type: "boolean";
|
|
7743
|
-
readonly default: false;
|
|
7744
|
-
};
|
|
7745
|
-
readonly label: {
|
|
7746
|
-
readonly type: "string";
|
|
7747
|
-
};
|
|
7748
|
-
readonly likeLabel: {
|
|
7749
|
-
readonly type: "string";
|
|
7750
|
-
};
|
|
7751
|
-
readonly dislikeLabel: {
|
|
7752
|
-
readonly type: "string";
|
|
7753
|
-
};
|
|
7754
|
-
readonly satisfiedLabel: {
|
|
7755
|
-
readonly type: "string";
|
|
7756
|
-
};
|
|
7757
|
-
readonly neutralLabel: {
|
|
7758
|
-
readonly type: "string";
|
|
7759
|
-
};
|
|
7760
|
-
readonly dissatisfiedLabel: {
|
|
7761
|
-
readonly type: "string";
|
|
7762
|
-
};
|
|
7763
|
-
};
|
|
7764
|
-
readonly additionalProperties: false;
|
|
7765
|
-
};
|
|
7766
|
-
};
|
|
7767
|
-
readonly additionalProperties: false;
|
|
7768
|
-
};
|
|
7769
|
-
};
|
|
7770
|
-
readonly additionalProperties: false;
|
|
7771
|
-
};
|
|
7772
|
-
readonly analytics: {
|
|
7773
|
-
readonly type: "object";
|
|
7774
|
-
readonly properties: {
|
|
7775
|
-
readonly ga: {
|
|
7776
|
-
readonly type: "object";
|
|
7777
|
-
readonly properties: {
|
|
7778
|
-
readonly includeInDevelopment: {
|
|
7779
|
-
readonly type: "boolean";
|
|
7780
|
-
};
|
|
7781
|
-
readonly trackingId: {
|
|
7782
|
-
readonly type: "string";
|
|
7783
|
-
};
|
|
7784
|
-
readonly conversionId: {
|
|
7785
|
-
readonly type: "string";
|
|
7786
|
-
};
|
|
7787
|
-
readonly floodlightId: {
|
|
7788
|
-
readonly type: "string";
|
|
7789
|
-
};
|
|
7790
|
-
readonly optimizeId: {
|
|
7791
|
-
readonly type: "string";
|
|
7792
|
-
};
|
|
7793
|
-
readonly exclude: {
|
|
7794
|
-
readonly type: "array";
|
|
7795
|
-
readonly items: {
|
|
7796
|
-
readonly type: "string";
|
|
7797
|
-
};
|
|
7798
|
-
};
|
|
7799
|
-
};
|
|
7800
|
-
readonly additionalProperties: false;
|
|
7801
|
-
readonly required: readonly ["trackingId"];
|
|
7802
|
-
};
|
|
7803
|
-
};
|
|
7804
|
-
};
|
|
7805
|
-
};
|
|
7806
|
-
readonly additionalProperties: true;
|
|
7807
|
-
readonly default: {};
|
|
7808
|
-
};
|
|
7809
|
-
export declare const productConfigOverrideSchema: {
|
|
7810
|
-
readonly $id: "product-config-override";
|
|
7811
|
-
readonly type: "object";
|
|
7812
|
-
readonly properties: {
|
|
7813
|
-
/**
|
|
7814
|
-
* @deprecated left for backwards compatibility
|
|
7815
|
-
*/
|
|
7816
|
-
readonly theme: {
|
|
7817
|
-
readonly type: "object";
|
|
7818
|
-
readonly properties: {
|
|
7819
|
-
readonly logo: {
|
|
7820
|
-
readonly type: "object";
|
|
7821
|
-
readonly properties: {
|
|
7822
|
-
readonly image: {
|
|
7823
|
-
readonly type: "string";
|
|
7824
|
-
};
|
|
7825
|
-
readonly srcSet: {
|
|
7826
|
-
readonly type: "string";
|
|
7827
|
-
};
|
|
7828
|
-
readonly altText: {
|
|
7829
|
-
readonly type: "string";
|
|
7830
|
-
};
|
|
7831
|
-
readonly link: {
|
|
7832
|
-
readonly type: "string";
|
|
7833
|
-
};
|
|
7834
|
-
readonly favicon: {
|
|
7835
|
-
readonly type: "string";
|
|
7836
|
-
};
|
|
7837
|
-
};
|
|
7838
|
-
readonly additionalProperties: false;
|
|
7839
|
-
};
|
|
7840
|
-
readonly navbar: {
|
|
7841
|
-
readonly type: "object";
|
|
7842
|
-
readonly properties: {
|
|
7843
|
-
readonly hide: {
|
|
7844
|
-
readonly type: "boolean";
|
|
7845
|
-
};
|
|
7846
|
-
readonly items: {
|
|
7847
|
-
readonly type: "array";
|
|
7848
|
-
readonly items: {
|
|
7849
|
-
readonly properties: {
|
|
7850
|
-
readonly items: {
|
|
7851
|
-
readonly type: "array";
|
|
7852
|
-
readonly items: {
|
|
7853
|
-
readonly type: "object";
|
|
7854
|
-
readonly properties: {
|
|
7855
|
-
readonly page: {
|
|
7856
|
-
readonly type: "string";
|
|
7857
|
-
};
|
|
7858
|
-
readonly directory: {
|
|
7859
|
-
readonly type: "string";
|
|
7860
|
-
};
|
|
7861
|
-
readonly disconnect: {
|
|
7862
|
-
readonly type: "boolean";
|
|
7863
|
-
readonly default: false;
|
|
7864
|
-
};
|
|
7865
|
-
readonly group: {
|
|
7866
|
-
readonly type: "string";
|
|
7867
|
-
};
|
|
7868
|
-
readonly label: {
|
|
7869
|
-
readonly type: "string";
|
|
7870
|
-
};
|
|
7871
|
-
readonly href: {
|
|
7872
|
-
readonly type: "string";
|
|
7873
|
-
};
|
|
7874
|
-
readonly external: {
|
|
7875
|
-
readonly type: "boolean";
|
|
7876
|
-
};
|
|
7877
|
-
readonly labelTranslationKey: {
|
|
7878
|
-
readonly type: "string";
|
|
7879
|
-
};
|
|
7880
|
-
readonly groupTranslationKey: {
|
|
7881
|
-
readonly type: "string";
|
|
7882
|
-
};
|
|
7883
|
-
readonly icon: {
|
|
7884
|
-
readonly oneOf: readonly [{
|
|
7885
|
-
readonly type: "string";
|
|
7886
|
-
}, {
|
|
7887
|
-
readonly type: "object";
|
|
7888
|
-
readonly properties: {
|
|
7889
|
-
readonly srcSet: {
|
|
7890
|
-
readonly type: "string";
|
|
7891
|
-
};
|
|
7892
|
-
};
|
|
7893
|
-
readonly required: readonly ["srcSet"];
|
|
7894
|
-
}];
|
|
7895
|
-
};
|
|
7896
|
-
readonly separator: {
|
|
7897
|
-
readonly type: "string";
|
|
7898
|
-
};
|
|
7899
|
-
readonly separatorLine: {
|
|
7900
|
-
readonly type: "boolean";
|
|
7901
|
-
};
|
|
7902
|
-
readonly linePosition: {
|
|
7903
|
-
readonly type: "string";
|
|
7904
|
-
readonly enum: readonly ["top", "bottom"];
|
|
7905
|
-
readonly default: "top";
|
|
7906
|
-
};
|
|
7907
|
-
readonly version: {
|
|
7908
|
-
readonly type: "string";
|
|
7909
|
-
};
|
|
7910
|
-
readonly menuStyle: {
|
|
7911
|
-
readonly type: "string";
|
|
7912
|
-
readonly enum: readonly ["drilldown"];
|
|
7913
|
-
};
|
|
7914
|
-
readonly expanded: {
|
|
7915
|
-
readonly type: "string";
|
|
7916
|
-
readonly const: "always";
|
|
7917
|
-
};
|
|
7918
|
-
readonly selectFirstItemOnExpand: {
|
|
7919
|
-
readonly type: "boolean";
|
|
7920
|
-
};
|
|
7921
|
-
readonly flatten: {
|
|
7922
|
-
readonly type: "boolean";
|
|
7923
|
-
};
|
|
7924
|
-
readonly linkedSidebars: {
|
|
7925
|
-
readonly type: "array";
|
|
7926
|
-
readonly items: {
|
|
7927
|
-
readonly type: "string";
|
|
7928
|
-
};
|
|
7929
|
-
};
|
|
7930
|
-
readonly items: {
|
|
7931
|
-
readonly type: "array";
|
|
7932
|
-
readonly items: {
|
|
7933
|
-
readonly type: "object";
|
|
7934
|
-
readonly additionalProperties: true;
|
|
7935
|
-
};
|
|
7936
|
-
};
|
|
7937
|
-
};
|
|
7938
|
-
};
|
|
7939
|
-
};
|
|
7940
|
-
readonly page: {
|
|
7941
|
-
readonly type: "string";
|
|
7942
|
-
};
|
|
7943
|
-
readonly directory: {
|
|
7944
|
-
readonly type: "string";
|
|
7945
|
-
};
|
|
7946
|
-
readonly disconnect: {
|
|
7947
|
-
readonly type: "boolean";
|
|
7948
|
-
readonly default: false;
|
|
7949
|
-
};
|
|
7950
|
-
readonly group: {
|
|
7951
|
-
readonly type: "string";
|
|
7952
|
-
};
|
|
7953
|
-
readonly label: {
|
|
7954
|
-
readonly type: "string";
|
|
7955
|
-
};
|
|
7956
|
-
readonly href: {
|
|
7957
|
-
readonly type: "string";
|
|
7958
|
-
};
|
|
7959
|
-
readonly external: {
|
|
7960
|
-
readonly type: "boolean";
|
|
7961
|
-
};
|
|
7962
|
-
readonly labelTranslationKey: {
|
|
7963
|
-
readonly type: "string";
|
|
7964
|
-
};
|
|
7965
|
-
readonly groupTranslationKey: {
|
|
7966
|
-
readonly type: "string";
|
|
7967
|
-
};
|
|
7968
|
-
readonly icon: {
|
|
7969
|
-
readonly oneOf: readonly [{
|
|
7970
|
-
readonly type: "string";
|
|
7971
|
-
}, {
|
|
7972
|
-
readonly type: "object";
|
|
7973
|
-
readonly properties: {
|
|
7974
|
-
readonly srcSet: {
|
|
7975
|
-
readonly type: "string";
|
|
7976
|
-
};
|
|
7977
|
-
};
|
|
7978
|
-
readonly required: readonly ["srcSet"];
|
|
7979
|
-
}];
|
|
7980
|
-
};
|
|
7981
|
-
readonly separator: {
|
|
7982
|
-
readonly type: "string";
|
|
7983
|
-
};
|
|
7984
|
-
readonly separatorLine: {
|
|
7985
|
-
readonly type: "boolean";
|
|
7986
|
-
};
|
|
7987
|
-
readonly linePosition: {
|
|
7988
|
-
readonly type: "string";
|
|
7989
|
-
readonly enum: readonly ["top", "bottom"];
|
|
7990
|
-
readonly default: "top";
|
|
7991
|
-
};
|
|
7992
|
-
readonly version: {
|
|
7993
|
-
readonly type: "string";
|
|
7994
|
-
};
|
|
7995
|
-
readonly menuStyle: {
|
|
7996
|
-
readonly type: "string";
|
|
7997
|
-
readonly enum: readonly ["drilldown"];
|
|
7998
|
-
};
|
|
7999
|
-
readonly expanded: {
|
|
8000
|
-
readonly type: "string";
|
|
8001
|
-
readonly const: "always";
|
|
8002
|
-
};
|
|
8003
|
-
readonly selectFirstItemOnExpand: {
|
|
8004
|
-
readonly type: "boolean";
|
|
8005
|
-
};
|
|
8006
|
-
readonly flatten: {
|
|
8007
|
-
readonly type: "boolean";
|
|
8008
|
-
};
|
|
8009
|
-
readonly linkedSidebars: {
|
|
8010
|
-
readonly type: "array";
|
|
8011
|
-
readonly items: {
|
|
8012
|
-
readonly type: "string";
|
|
8013
|
-
};
|
|
8014
|
-
};
|
|
8015
|
-
};
|
|
8016
|
-
readonly type: "object";
|
|
8017
|
-
};
|
|
8018
|
-
};
|
|
8019
|
-
};
|
|
8020
|
-
readonly additionalProperties: false;
|
|
8021
|
-
};
|
|
8022
|
-
readonly footer: {
|
|
8023
|
-
readonly type: "object";
|
|
8024
|
-
readonly properties: {
|
|
8025
|
-
readonly hide: {
|
|
8026
|
-
readonly type: "boolean";
|
|
8027
|
-
};
|
|
8028
|
-
readonly items: {
|
|
8029
|
-
readonly type: "array";
|
|
8030
|
-
readonly items: {
|
|
8031
|
-
readonly properties: {
|
|
8032
|
-
readonly items: {
|
|
8033
|
-
readonly type: "array";
|
|
8034
|
-
readonly items: {
|
|
8035
|
-
readonly type: "object";
|
|
8036
|
-
readonly properties: {
|
|
8037
|
-
readonly page: {
|
|
8038
|
-
readonly type: "string";
|
|
8039
|
-
};
|
|
8040
|
-
readonly directory: {
|
|
8041
|
-
readonly type: "string";
|
|
8042
|
-
};
|
|
8043
|
-
readonly disconnect: {
|
|
8044
|
-
readonly type: "boolean";
|
|
8045
|
-
readonly default: false;
|
|
8046
|
-
};
|
|
8047
|
-
readonly group: {
|
|
8048
|
-
readonly type: "string";
|
|
8049
|
-
};
|
|
8050
|
-
readonly label: {
|
|
8051
|
-
readonly type: "string";
|
|
8052
|
-
};
|
|
8053
|
-
readonly href: {
|
|
8054
|
-
readonly type: "string";
|
|
8055
|
-
};
|
|
8056
|
-
readonly external: {
|
|
8057
|
-
readonly type: "boolean";
|
|
8058
|
-
};
|
|
8059
|
-
readonly labelTranslationKey: {
|
|
8060
|
-
readonly type: "string";
|
|
8061
|
-
};
|
|
8062
|
-
readonly groupTranslationKey: {
|
|
8063
|
-
readonly type: "string";
|
|
8064
|
-
};
|
|
8065
|
-
readonly icon: {
|
|
8066
|
-
readonly oneOf: readonly [{
|
|
8067
|
-
readonly type: "string";
|
|
8068
|
-
}, {
|
|
8069
|
-
readonly type: "object";
|
|
8070
|
-
readonly properties: {
|
|
8071
|
-
readonly srcSet: {
|
|
8072
|
-
readonly type: "string";
|
|
8073
|
-
};
|
|
8074
|
-
};
|
|
8075
|
-
readonly required: readonly ["srcSet"];
|
|
8076
|
-
}];
|
|
8077
|
-
};
|
|
8078
|
-
readonly separator: {
|
|
8079
|
-
readonly type: "string";
|
|
8080
|
-
};
|
|
8081
|
-
readonly separatorLine: {
|
|
8082
|
-
readonly type: "boolean";
|
|
8083
|
-
};
|
|
8084
|
-
readonly linePosition: {
|
|
8085
|
-
readonly type: "string";
|
|
8086
|
-
readonly enum: readonly ["top", "bottom"];
|
|
8087
|
-
readonly default: "top";
|
|
8088
|
-
};
|
|
8089
|
-
readonly version: {
|
|
8090
|
-
readonly type: "string";
|
|
8091
|
-
};
|
|
8092
|
-
readonly menuStyle: {
|
|
8093
|
-
readonly type: "string";
|
|
8094
|
-
readonly enum: readonly ["drilldown"];
|
|
8095
|
-
};
|
|
8096
|
-
readonly expanded: {
|
|
8097
|
-
readonly type: "string";
|
|
8098
|
-
readonly const: "always";
|
|
8099
|
-
};
|
|
8100
|
-
readonly selectFirstItemOnExpand: {
|
|
8101
|
-
readonly type: "boolean";
|
|
8102
|
-
};
|
|
8103
|
-
readonly flatten: {
|
|
8104
|
-
readonly type: "boolean";
|
|
8105
|
-
};
|
|
8106
|
-
readonly linkedSidebars: {
|
|
8107
|
-
readonly type: "array";
|
|
8108
|
-
readonly items: {
|
|
8109
|
-
readonly type: "string";
|
|
8110
|
-
};
|
|
8111
|
-
};
|
|
8112
|
-
readonly items: {
|
|
8113
|
-
readonly type: "array";
|
|
8114
|
-
readonly items: {
|
|
8115
|
-
readonly type: "object";
|
|
8116
|
-
readonly additionalProperties: true;
|
|
8117
|
-
};
|
|
8118
|
-
};
|
|
8119
|
-
};
|
|
8120
|
-
};
|
|
8121
|
-
};
|
|
8122
|
-
readonly page: {
|
|
8123
|
-
readonly type: "string";
|
|
8124
|
-
};
|
|
8125
|
-
readonly directory: {
|
|
8126
|
-
readonly type: "string";
|
|
8127
|
-
};
|
|
8128
|
-
readonly disconnect: {
|
|
8129
|
-
readonly type: "boolean";
|
|
8130
|
-
readonly default: false;
|
|
8131
|
-
};
|
|
8132
|
-
readonly group: {
|
|
8133
|
-
readonly type: "string";
|
|
8134
|
-
};
|
|
8135
|
-
readonly label: {
|
|
8136
|
-
readonly type: "string";
|
|
8137
|
-
};
|
|
8138
|
-
readonly href: {
|
|
8139
|
-
readonly type: "string";
|
|
8140
|
-
};
|
|
8141
|
-
readonly external: {
|
|
8142
|
-
readonly type: "boolean";
|
|
8143
|
-
};
|
|
8144
|
-
readonly labelTranslationKey: {
|
|
8145
|
-
readonly type: "string";
|
|
8146
|
-
};
|
|
8147
|
-
readonly groupTranslationKey: {
|
|
8148
|
-
readonly type: "string";
|
|
8149
|
-
};
|
|
8150
|
-
readonly icon: {
|
|
8151
|
-
readonly oneOf: readonly [{
|
|
8152
|
-
readonly type: "string";
|
|
8153
|
-
}, {
|
|
8154
|
-
readonly type: "object";
|
|
8155
|
-
readonly properties: {
|
|
8156
|
-
readonly srcSet: {
|
|
8157
|
-
readonly type: "string";
|
|
8158
|
-
};
|
|
8159
|
-
};
|
|
8160
|
-
readonly required: readonly ["srcSet"];
|
|
8161
|
-
}];
|
|
8162
|
-
};
|
|
8163
|
-
readonly separator: {
|
|
8164
|
-
readonly type: "string";
|
|
8165
|
-
};
|
|
8166
|
-
readonly separatorLine: {
|
|
8167
|
-
readonly type: "boolean";
|
|
8168
|
-
};
|
|
8169
|
-
readonly linePosition: {
|
|
8170
|
-
readonly type: "string";
|
|
8171
|
-
readonly enum: readonly ["top", "bottom"];
|
|
8172
|
-
readonly default: "top";
|
|
8173
|
-
};
|
|
8174
|
-
readonly version: {
|
|
8175
|
-
readonly type: "string";
|
|
8176
|
-
};
|
|
8177
|
-
readonly menuStyle: {
|
|
8178
|
-
readonly type: "string";
|
|
8179
|
-
readonly enum: readonly ["drilldown"];
|
|
8180
|
-
};
|
|
8181
|
-
readonly expanded: {
|
|
8182
|
-
readonly type: "string";
|
|
8183
|
-
readonly const: "always";
|
|
8184
|
-
};
|
|
8185
|
-
readonly selectFirstItemOnExpand: {
|
|
8186
|
-
readonly type: "boolean";
|
|
8187
|
-
};
|
|
8188
|
-
readonly flatten: {
|
|
8189
|
-
readonly type: "boolean";
|
|
8190
|
-
};
|
|
8191
|
-
readonly linkedSidebars: {
|
|
8192
|
-
readonly type: "array";
|
|
8193
|
-
readonly items: {
|
|
8194
|
-
readonly type: "string";
|
|
8195
|
-
};
|
|
8196
|
-
};
|
|
8197
|
-
};
|
|
8198
|
-
readonly type: "object";
|
|
8199
|
-
};
|
|
8200
|
-
};
|
|
8201
|
-
readonly copyrightText: {
|
|
8202
|
-
readonly type: "string";
|
|
8203
|
-
};
|
|
8204
|
-
readonly logo: {
|
|
8205
|
-
readonly type: "object";
|
|
8206
|
-
readonly properties: {
|
|
8207
|
-
readonly hide: {
|
|
8208
|
-
readonly type: "boolean";
|
|
8209
|
-
};
|
|
8210
|
-
};
|
|
8211
|
-
readonly additionalProperties: false;
|
|
8212
|
-
};
|
|
8213
|
-
};
|
|
8214
|
-
readonly additionalProperties: false;
|
|
8215
|
-
};
|
|
8216
|
-
readonly sidebar: {
|
|
8217
|
-
readonly type: "object";
|
|
8218
|
-
readonly properties: {
|
|
8219
|
-
readonly hide: {
|
|
8220
|
-
readonly type: "boolean";
|
|
8221
|
-
};
|
|
8222
|
-
readonly separatorLine: {
|
|
8223
|
-
readonly type: "boolean";
|
|
8224
|
-
};
|
|
8225
|
-
readonly linePosition: {
|
|
8226
|
-
readonly type: "string";
|
|
8227
|
-
readonly enum: readonly ["top", "bottom"];
|
|
8228
|
-
readonly default: "bottom";
|
|
8229
|
-
};
|
|
8230
|
-
};
|
|
8231
|
-
readonly additionalProperties: false;
|
|
8232
|
-
};
|
|
8233
|
-
readonly search: {
|
|
8234
|
-
readonly type: "object";
|
|
8235
|
-
readonly properties: {
|
|
8236
|
-
readonly hide: {
|
|
8237
|
-
readonly type: "boolean";
|
|
8238
|
-
};
|
|
8239
|
-
readonly placement: {
|
|
8240
|
-
readonly type: "string";
|
|
8241
|
-
readonly default: "navbar";
|
|
8242
|
-
};
|
|
8243
|
-
readonly shortcuts: {
|
|
8244
|
-
readonly type: "array";
|
|
8245
|
-
readonly items: {
|
|
8246
|
-
readonly type: "string";
|
|
8247
|
-
};
|
|
8248
|
-
readonly default: readonly ["/"];
|
|
8249
|
-
};
|
|
8250
|
-
readonly suggestedPages: {
|
|
8251
|
-
readonly type: "array";
|
|
8252
|
-
readonly items: {
|
|
8253
|
-
readonly type: "object";
|
|
8254
|
-
readonly properties: {
|
|
8255
|
-
readonly page: {
|
|
8256
|
-
readonly type: "string";
|
|
8257
|
-
};
|
|
8258
|
-
readonly label: {
|
|
8259
|
-
readonly type: "string";
|
|
8260
|
-
};
|
|
8261
|
-
readonly labelTranslationKey: {
|
|
8262
|
-
readonly type: "string";
|
|
8263
|
-
};
|
|
8264
|
-
};
|
|
8265
|
-
/**
|
|
8266
|
-
* @deprecated left for backwards compatibility
|
|
8267
|
-
*/
|
|
8268
|
-
readonly required: readonly ["page"];
|
|
8269
|
-
};
|
|
8270
|
-
};
|
|
8271
|
-
readonly fuzzy: {
|
|
8272
|
-
readonly type: "boolean";
|
|
8273
|
-
readonly default: false;
|
|
8274
|
-
};
|
|
8275
|
-
};
|
|
8276
|
-
readonly additionalProperties: false;
|
|
8277
|
-
};
|
|
8278
|
-
readonly codeSnippet: {
|
|
8279
|
-
readonly type: "object";
|
|
8280
|
-
readonly properties: {
|
|
8281
|
-
readonly elementFormat: {
|
|
8282
|
-
readonly type: "string";
|
|
8283
|
-
readonly default: "icon";
|
|
8284
|
-
};
|
|
8285
|
-
readonly copy: {
|
|
8286
|
-
readonly type: "object";
|
|
8287
|
-
readonly properties: {
|
|
8288
|
-
readonly hide: {
|
|
8289
|
-
readonly type: "boolean";
|
|
8290
|
-
};
|
|
8291
|
-
};
|
|
8292
|
-
readonly additionalProperties: false;
|
|
8293
|
-
readonly default: {
|
|
8294
|
-
readonly hide: false;
|
|
8295
|
-
};
|
|
8296
|
-
};
|
|
8297
|
-
readonly report: {
|
|
8298
|
-
readonly type: "object";
|
|
8299
|
-
readonly properties: {
|
|
8300
|
-
readonly hide: {
|
|
8301
|
-
readonly type: "boolean";
|
|
8302
|
-
};
|
|
8303
|
-
readonly tooltipText: {
|
|
8304
|
-
readonly type: "string";
|
|
8305
|
-
};
|
|
8306
|
-
readonly buttonText: {
|
|
8307
|
-
readonly type: "string";
|
|
8308
|
-
};
|
|
8309
|
-
readonly label: {
|
|
8310
|
-
readonly type: "string";
|
|
8311
|
-
};
|
|
8312
|
-
};
|
|
8313
|
-
readonly additionalProperties: false;
|
|
8314
|
-
readonly default: {
|
|
8315
|
-
readonly hide: false;
|
|
8316
|
-
};
|
|
8317
|
-
};
|
|
8318
|
-
readonly expand: {
|
|
8319
|
-
readonly type: "object";
|
|
8320
|
-
readonly properties: {
|
|
8321
|
-
readonly hide: {
|
|
8322
|
-
readonly type: "boolean";
|
|
8323
|
-
};
|
|
8324
|
-
};
|
|
8325
|
-
readonly additionalProperties: false;
|
|
8326
|
-
readonly default: {
|
|
8327
|
-
readonly hide: false;
|
|
8328
|
-
};
|
|
8329
|
-
};
|
|
8330
|
-
readonly collapse: {
|
|
8331
|
-
readonly type: "object";
|
|
8332
|
-
readonly properties: {
|
|
8333
|
-
readonly hide: {
|
|
8334
|
-
readonly type: "boolean";
|
|
8335
|
-
};
|
|
8336
|
-
};
|
|
8337
|
-
readonly additionalProperties: false;
|
|
8338
|
-
readonly default: {
|
|
8339
|
-
readonly hide: false;
|
|
8340
|
-
};
|
|
8341
|
-
};
|
|
8342
|
-
};
|
|
8343
|
-
readonly additionalProperties: false;
|
|
8344
|
-
};
|
|
8345
|
-
readonly breadcrumbs: {
|
|
8346
|
-
readonly type: "object";
|
|
8347
|
-
readonly properties: {
|
|
8348
|
-
readonly hide: {
|
|
8349
|
-
readonly type: "boolean";
|
|
8350
|
-
};
|
|
8351
|
-
readonly prefixItems: {
|
|
8352
|
-
readonly type: "array";
|
|
8353
|
-
readonly items: {
|
|
8354
|
-
readonly type: "object";
|
|
8355
|
-
readonly properties: {
|
|
8356
|
-
readonly label: {
|
|
8357
|
-
readonly type: "string";
|
|
8358
|
-
};
|
|
8359
|
-
readonly labelTranslationKey: {
|
|
8360
|
-
readonly type: "string";
|
|
8361
|
-
};
|
|
8362
|
-
readonly page: {
|
|
8363
|
-
readonly type: "string";
|
|
8364
|
-
};
|
|
8365
|
-
};
|
|
8366
|
-
readonly additionalProperties: false;
|
|
8367
|
-
readonly default: {};
|
|
8368
|
-
};
|
|
8369
|
-
};
|
|
8370
|
-
};
|
|
8371
|
-
readonly additionalProperties: false;
|
|
8372
|
-
};
|
|
8373
|
-
readonly feedback: {
|
|
8374
|
-
readonly type: "object";
|
|
8375
|
-
readonly properties: {
|
|
8376
|
-
readonly hide: {
|
|
8377
|
-
readonly type: "boolean";
|
|
8378
|
-
readonly default: false;
|
|
8379
|
-
};
|
|
8380
|
-
readonly type: {
|
|
8381
|
-
readonly type: "string";
|
|
8382
|
-
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
8383
|
-
readonly default: "sentiment";
|
|
8384
|
-
};
|
|
8385
|
-
readonly settings: {
|
|
8386
|
-
readonly type: "object";
|
|
8387
|
-
readonly properties: {
|
|
8388
|
-
readonly label: {
|
|
8389
|
-
readonly type: "string";
|
|
8390
|
-
};
|
|
8391
|
-
readonly submitText: {
|
|
8392
|
-
readonly type: "string";
|
|
8393
|
-
};
|
|
8394
|
-
readonly buttonText: {
|
|
8395
|
-
readonly type: "string";
|
|
8396
|
-
};
|
|
8397
|
-
readonly component: {
|
|
8398
|
-
readonly type: "string";
|
|
8399
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
8400
|
-
readonly default: "checkbox";
|
|
8401
|
-
};
|
|
8402
|
-
readonly items: {
|
|
8403
|
-
readonly type: "array";
|
|
8404
|
-
readonly items: {
|
|
8405
|
-
readonly type: "string";
|
|
8406
|
-
};
|
|
8407
|
-
readonly minItems: 1;
|
|
8408
|
-
};
|
|
8409
|
-
readonly leftScaleLabel: {
|
|
8410
|
-
readonly type: "string";
|
|
8411
|
-
};
|
|
8412
|
-
readonly rightScaleLabel: {
|
|
8413
|
-
readonly type: "string"; /**
|
|
8414
|
-
* @deprecated Should use `plugins` instead
|
|
8415
|
-
*/
|
|
8416
|
-
};
|
|
8417
|
-
readonly reasons: {
|
|
8418
|
-
readonly type: "object";
|
|
8419
|
-
readonly properties: {
|
|
8420
|
-
readonly hide: {
|
|
8421
|
-
readonly type: "boolean";
|
|
8422
|
-
readonly default: false;
|
|
8423
|
-
};
|
|
8424
|
-
readonly component: {
|
|
8425
|
-
readonly type: "string";
|
|
8426
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
8427
|
-
readonly default: "checkbox";
|
|
8428
|
-
};
|
|
8429
|
-
readonly label: {
|
|
8430
|
-
readonly type: "string";
|
|
8431
|
-
};
|
|
8432
|
-
readonly items: {
|
|
8433
|
-
readonly type: "array";
|
|
8434
|
-
readonly items: {
|
|
8435
|
-
readonly type: "string";
|
|
8436
|
-
};
|
|
8437
|
-
};
|
|
8438
|
-
};
|
|
8439
|
-
readonly additionalProperties: false;
|
|
8440
|
-
};
|
|
8441
|
-
readonly comment: {
|
|
8442
|
-
readonly type: "object";
|
|
8443
|
-
readonly properties: {
|
|
8444
|
-
readonly hide: {
|
|
8445
|
-
readonly type: "boolean";
|
|
8446
|
-
readonly default: false;
|
|
8447
|
-
};
|
|
8448
|
-
readonly label: {
|
|
8449
|
-
readonly type: "string";
|
|
8450
|
-
};
|
|
8451
|
-
readonly likeLabel: {
|
|
8452
|
-
readonly type: "string";
|
|
8453
|
-
};
|
|
8454
|
-
readonly dislikeLabel: {
|
|
8455
|
-
readonly type: "string";
|
|
8456
|
-
};
|
|
8457
|
-
readonly satisfiedLabel: {
|
|
8458
|
-
readonly type: "string";
|
|
8459
|
-
};
|
|
8460
|
-
readonly neutralLabel: {
|
|
8461
|
-
readonly type: "string";
|
|
8462
|
-
};
|
|
8463
|
-
readonly dissatisfiedLabel: {
|
|
8464
|
-
readonly type: "string";
|
|
8465
|
-
};
|
|
8466
|
-
};
|
|
8467
|
-
readonly additionalProperties: false;
|
|
8468
|
-
};
|
|
8469
|
-
};
|
|
8470
|
-
readonly additionalProperties: false;
|
|
8471
|
-
};
|
|
8472
|
-
};
|
|
8473
|
-
readonly additionalProperties: false;
|
|
8474
|
-
};
|
|
8475
|
-
readonly analytics: {
|
|
8476
|
-
readonly type: "object";
|
|
8477
|
-
readonly properties: {
|
|
8478
|
-
readonly ga: {
|
|
8479
|
-
readonly type: "object";
|
|
8480
|
-
readonly properties: {
|
|
8481
|
-
readonly includeInDevelopment: {
|
|
8482
|
-
readonly type: "boolean";
|
|
8483
|
-
};
|
|
8484
|
-
readonly trackingId: {
|
|
8485
|
-
readonly type: "string";
|
|
8486
|
-
};
|
|
8487
|
-
readonly conversionId: {
|
|
8488
|
-
readonly type: "string";
|
|
8489
|
-
};
|
|
8490
|
-
readonly floodlightId: {
|
|
8491
|
-
readonly type: "string";
|
|
8492
|
-
};
|
|
8493
|
-
readonly optimizeId: {
|
|
8494
|
-
readonly type: "string";
|
|
8495
|
-
};
|
|
8496
|
-
readonly exclude: {
|
|
8497
|
-
readonly type: "array";
|
|
8498
|
-
readonly items: {
|
|
8499
|
-
readonly type: "string";
|
|
8500
|
-
};
|
|
8501
|
-
};
|
|
8502
|
-
};
|
|
8503
|
-
readonly additionalProperties: false;
|
|
8504
|
-
readonly required: readonly ["trackingId"];
|
|
8505
|
-
};
|
|
8506
|
-
};
|
|
8507
|
-
};
|
|
8508
|
-
};
|
|
8509
|
-
readonly additionalProperties: true;
|
|
8510
|
-
readonly default: {};
|
|
8511
|
-
};
|
|
8512
|
-
readonly logo: {
|
|
8513
|
-
readonly type: "object";
|
|
8514
|
-
readonly properties: {
|
|
8515
|
-
readonly image: {
|
|
8516
|
-
readonly type: "string";
|
|
8517
|
-
};
|
|
8518
|
-
readonly srcSet: {
|
|
8519
|
-
readonly type: "string";
|
|
8520
|
-
};
|
|
8521
|
-
readonly altText: {
|
|
8522
|
-
readonly type: "string";
|
|
8523
|
-
};
|
|
8524
|
-
readonly link: {
|
|
8525
|
-
readonly type: "string";
|
|
8526
|
-
};
|
|
8527
|
-
readonly favicon: {
|
|
8528
|
-
readonly type: "string";
|
|
8529
|
-
};
|
|
8530
|
-
};
|
|
8531
|
-
readonly additionalProperties: false;
|
|
8532
|
-
};
|
|
8533
|
-
readonly navbar: {
|
|
8534
|
-
readonly type: "object";
|
|
8535
|
-
readonly properties: {
|
|
8536
|
-
readonly hide: {
|
|
8537
|
-
readonly type: "boolean";
|
|
8538
|
-
};
|
|
8539
|
-
readonly items: {
|
|
8540
|
-
readonly type: "array";
|
|
8541
|
-
readonly items: {
|
|
8542
|
-
readonly properties: {
|
|
8543
|
-
readonly items: {
|
|
8544
|
-
readonly type: "array";
|
|
8545
|
-
readonly items: {
|
|
8546
|
-
readonly type: "object";
|
|
8547
|
-
readonly properties: {
|
|
8548
|
-
readonly page: {
|
|
8549
|
-
readonly type: "string";
|
|
8550
|
-
};
|
|
8551
|
-
readonly directory: {
|
|
8552
|
-
readonly type: "string";
|
|
8553
|
-
};
|
|
8554
|
-
readonly disconnect: {
|
|
8555
|
-
readonly type: "boolean";
|
|
8556
|
-
readonly default: false;
|
|
8557
|
-
};
|
|
8558
|
-
readonly group: {
|
|
8559
|
-
readonly type: "string";
|
|
8560
|
-
};
|
|
8561
|
-
readonly label: {
|
|
8562
|
-
readonly type: "string";
|
|
8563
|
-
};
|
|
8564
|
-
readonly href: {
|
|
8565
|
-
readonly type: "string";
|
|
8566
|
-
};
|
|
8567
|
-
readonly external: {
|
|
8568
|
-
readonly type: "boolean";
|
|
8569
|
-
};
|
|
8570
|
-
readonly labelTranslationKey: {
|
|
8571
|
-
readonly type: "string";
|
|
8572
|
-
};
|
|
8573
|
-
readonly groupTranslationKey: {
|
|
8574
|
-
readonly type: "string";
|
|
8575
|
-
};
|
|
8576
|
-
readonly icon: {
|
|
8577
|
-
readonly oneOf: readonly [{
|
|
8578
|
-
readonly type: "string";
|
|
8579
|
-
}, {
|
|
8580
|
-
readonly type: "object";
|
|
8581
|
-
readonly properties: {
|
|
8582
|
-
readonly srcSet: {
|
|
8583
|
-
readonly type: "string";
|
|
8584
|
-
};
|
|
8585
|
-
};
|
|
8586
|
-
readonly required: readonly ["srcSet"];
|
|
8587
|
-
}];
|
|
8588
|
-
};
|
|
8589
|
-
readonly separator: {
|
|
8590
|
-
readonly type: "string";
|
|
8591
|
-
};
|
|
8592
|
-
readonly separatorLine: {
|
|
8593
|
-
readonly type: "boolean";
|
|
8594
|
-
};
|
|
8595
|
-
readonly linePosition: {
|
|
8596
|
-
readonly type: "string";
|
|
8597
|
-
readonly enum: readonly ["top", "bottom"];
|
|
8598
|
-
readonly default: "top";
|
|
8599
|
-
};
|
|
8600
|
-
readonly version: {
|
|
8601
|
-
readonly type: "string";
|
|
8602
|
-
};
|
|
8603
|
-
readonly menuStyle: {
|
|
8604
|
-
readonly type: "string";
|
|
8605
|
-
readonly enum: readonly ["drilldown"];
|
|
8606
|
-
};
|
|
8607
|
-
readonly expanded: {
|
|
8608
|
-
readonly type: "string";
|
|
8609
|
-
readonly const: "always";
|
|
8610
|
-
};
|
|
8611
|
-
readonly selectFirstItemOnExpand: {
|
|
8612
|
-
readonly type: "boolean";
|
|
8613
|
-
};
|
|
8614
|
-
readonly flatten: {
|
|
8615
|
-
readonly type: "boolean";
|
|
8616
|
-
};
|
|
8617
|
-
readonly linkedSidebars: {
|
|
8618
|
-
readonly type: "array";
|
|
8619
|
-
readonly items: {
|
|
8620
|
-
readonly type: "string";
|
|
8621
|
-
};
|
|
8622
|
-
};
|
|
8623
|
-
readonly items: {
|
|
8624
|
-
readonly type: "array";
|
|
8625
|
-
readonly items: {
|
|
8626
|
-
readonly type: "object";
|
|
8627
|
-
readonly additionalProperties: true;
|
|
8628
|
-
};
|
|
8629
|
-
};
|
|
8630
|
-
};
|
|
8631
|
-
};
|
|
8632
|
-
};
|
|
8633
|
-
readonly page: {
|
|
8634
|
-
readonly type: "string";
|
|
8635
|
-
};
|
|
8636
|
-
readonly directory: {
|
|
8637
|
-
readonly type: "string";
|
|
8638
|
-
};
|
|
8639
|
-
readonly disconnect: {
|
|
8640
|
-
readonly type: "boolean";
|
|
8641
|
-
readonly default: false;
|
|
8642
|
-
};
|
|
8643
|
-
readonly group: {
|
|
8644
|
-
readonly type: "string";
|
|
8645
|
-
};
|
|
8646
|
-
readonly label: {
|
|
8647
|
-
readonly type: "string";
|
|
8648
|
-
};
|
|
8649
|
-
readonly href: {
|
|
8650
|
-
readonly type: "string";
|
|
8651
|
-
};
|
|
8652
|
-
readonly external: {
|
|
8653
|
-
readonly type: "boolean";
|
|
8654
|
-
};
|
|
8655
|
-
readonly labelTranslationKey: {
|
|
8656
|
-
readonly type: "string";
|
|
8657
|
-
};
|
|
8658
|
-
readonly groupTranslationKey: {
|
|
8659
|
-
readonly type: "string";
|
|
8660
|
-
};
|
|
8661
|
-
readonly icon: {
|
|
8662
|
-
readonly oneOf: readonly [{
|
|
8663
|
-
readonly type: "string";
|
|
8664
|
-
}, {
|
|
8665
|
-
readonly type: "object";
|
|
8666
|
-
readonly properties: {
|
|
8667
|
-
readonly srcSet: {
|
|
8668
|
-
readonly type: "string";
|
|
8669
|
-
};
|
|
8670
|
-
};
|
|
8671
|
-
readonly required: readonly ["srcSet"];
|
|
8672
|
-
}];
|
|
8673
|
-
};
|
|
8674
|
-
readonly separator: {
|
|
8675
|
-
readonly type: "string";
|
|
8676
|
-
};
|
|
8677
|
-
readonly separatorLine: {
|
|
8678
|
-
readonly type: "boolean";
|
|
8679
|
-
};
|
|
8680
|
-
readonly linePosition: {
|
|
8681
|
-
readonly type: "string";
|
|
8682
|
-
readonly enum: readonly ["top", "bottom"];
|
|
8683
|
-
readonly default: "top";
|
|
8684
|
-
};
|
|
8685
|
-
readonly version: {
|
|
8686
|
-
readonly type: "string";
|
|
8687
|
-
};
|
|
8688
|
-
readonly menuStyle: {
|
|
8689
|
-
readonly type: "string";
|
|
8690
|
-
readonly enum: readonly ["drilldown"];
|
|
8691
|
-
};
|
|
8692
|
-
readonly expanded: {
|
|
8693
|
-
readonly type: "string";
|
|
8694
|
-
readonly const: "always";
|
|
8695
|
-
};
|
|
8696
|
-
readonly selectFirstItemOnExpand: {
|
|
8697
|
-
readonly type: "boolean";
|
|
8698
|
-
};
|
|
8699
|
-
readonly flatten: {
|
|
8700
|
-
readonly type: "boolean";
|
|
8701
|
-
};
|
|
8702
|
-
readonly linkedSidebars: {
|
|
8703
|
-
readonly type: "array";
|
|
8704
|
-
readonly items: {
|
|
8705
|
-
readonly type: "string";
|
|
8706
|
-
};
|
|
8707
|
-
};
|
|
8708
|
-
};
|
|
8709
|
-
readonly type: "object";
|
|
8710
|
-
};
|
|
8711
|
-
};
|
|
8712
|
-
};
|
|
8713
|
-
readonly additionalProperties: false;
|
|
8714
|
-
};
|
|
8715
|
-
readonly footer: {
|
|
8716
|
-
readonly type: "object";
|
|
8717
|
-
readonly properties: {
|
|
8718
|
-
readonly hide: {
|
|
8719
|
-
readonly type: "boolean";
|
|
8720
|
-
};
|
|
8721
|
-
readonly items: {
|
|
8722
|
-
readonly type: "array";
|
|
8723
|
-
readonly items: {
|
|
8724
|
-
readonly properties: {
|
|
8725
|
-
readonly items: {
|
|
8726
|
-
readonly type: "array";
|
|
8727
|
-
readonly items: {
|
|
8728
|
-
readonly type: "object";
|
|
8729
|
-
readonly properties: {
|
|
8730
|
-
readonly page: {
|
|
8731
|
-
readonly type: "string";
|
|
8732
|
-
};
|
|
8733
|
-
readonly directory: {
|
|
8734
|
-
readonly type: "string";
|
|
8735
|
-
};
|
|
8736
|
-
readonly disconnect: {
|
|
8737
|
-
readonly type: "boolean";
|
|
8738
|
-
readonly default: false;
|
|
8739
|
-
};
|
|
8740
|
-
readonly group: {
|
|
8741
|
-
readonly type: "string";
|
|
8742
|
-
};
|
|
8743
|
-
readonly label: {
|
|
8744
|
-
readonly type: "string";
|
|
8745
|
-
};
|
|
8746
|
-
readonly href: {
|
|
8747
|
-
readonly type: "string";
|
|
8748
|
-
};
|
|
8749
|
-
readonly external: {
|
|
8750
|
-
readonly type: "boolean";
|
|
8751
|
-
};
|
|
8752
|
-
readonly labelTranslationKey: {
|
|
8753
|
-
readonly type: "string";
|
|
8754
|
-
};
|
|
8755
|
-
readonly groupTranslationKey: {
|
|
8756
|
-
readonly type: "string";
|
|
8757
|
-
};
|
|
8758
|
-
readonly icon: {
|
|
8759
|
-
readonly oneOf: readonly [{
|
|
8760
|
-
readonly type: "string";
|
|
8761
|
-
}, {
|
|
8762
|
-
readonly type: "object";
|
|
8763
|
-
readonly properties: {
|
|
8764
|
-
readonly srcSet: {
|
|
8765
|
-
readonly type: "string";
|
|
8766
|
-
};
|
|
8767
|
-
};
|
|
8768
|
-
readonly required: readonly ["srcSet"];
|
|
8769
|
-
}];
|
|
8770
|
-
};
|
|
8771
|
-
readonly separator: {
|
|
8772
|
-
readonly type: "string";
|
|
8773
|
-
};
|
|
8774
|
-
readonly separatorLine: {
|
|
8775
|
-
readonly type: "boolean";
|
|
8776
|
-
};
|
|
8777
|
-
readonly linePosition: {
|
|
8778
|
-
readonly type: "string";
|
|
8779
|
-
readonly enum: readonly ["top", "bottom"];
|
|
8780
|
-
readonly default: "top";
|
|
8781
|
-
};
|
|
8782
|
-
readonly version: {
|
|
8783
|
-
readonly type: "string";
|
|
8784
|
-
};
|
|
8785
|
-
readonly menuStyle: {
|
|
8786
|
-
readonly type: "string";
|
|
8787
|
-
readonly enum: readonly ["drilldown"];
|
|
8788
|
-
};
|
|
8789
|
-
readonly expanded: {
|
|
8790
|
-
readonly type: "string";
|
|
8791
|
-
readonly const: "always";
|
|
8792
|
-
};
|
|
8793
|
-
readonly selectFirstItemOnExpand: {
|
|
8794
|
-
readonly type: "boolean";
|
|
8795
|
-
};
|
|
8796
|
-
readonly flatten: {
|
|
8797
|
-
readonly type: "boolean";
|
|
8798
|
-
};
|
|
8799
|
-
readonly linkedSidebars: {
|
|
8800
|
-
readonly type: "array";
|
|
8801
|
-
readonly items: {
|
|
8802
|
-
readonly type: "string";
|
|
8803
|
-
};
|
|
8804
|
-
};
|
|
8805
|
-
readonly items: {
|
|
8806
|
-
readonly type: "array";
|
|
8807
|
-
readonly items: {
|
|
8808
|
-
readonly type: "object";
|
|
8809
|
-
readonly additionalProperties: true;
|
|
8810
|
-
};
|
|
8811
|
-
};
|
|
8812
|
-
};
|
|
8813
|
-
};
|
|
8814
|
-
};
|
|
8815
|
-
readonly page: {
|
|
8816
|
-
readonly type: "string";
|
|
8817
|
-
};
|
|
8818
|
-
readonly directory: {
|
|
8819
|
-
readonly type: "string";
|
|
8820
|
-
};
|
|
8821
|
-
readonly disconnect: {
|
|
8822
|
-
readonly type: "boolean";
|
|
8823
|
-
readonly default: false;
|
|
8824
|
-
};
|
|
8825
|
-
readonly group: {
|
|
8826
|
-
readonly type: "string";
|
|
8827
|
-
};
|
|
8828
|
-
readonly label: {
|
|
8829
|
-
readonly type: "string";
|
|
8830
|
-
};
|
|
8831
|
-
readonly href: {
|
|
8832
|
-
readonly type: "string";
|
|
8833
|
-
};
|
|
8834
|
-
readonly external: {
|
|
8835
|
-
readonly type: "boolean";
|
|
8836
|
-
};
|
|
8837
|
-
readonly labelTranslationKey: {
|
|
8838
|
-
readonly type: "string";
|
|
8839
|
-
};
|
|
8840
|
-
readonly groupTranslationKey: {
|
|
8841
|
-
readonly type: "string";
|
|
8842
|
-
};
|
|
8843
|
-
readonly icon: {
|
|
8844
|
-
readonly oneOf: readonly [{
|
|
8845
|
-
readonly type: "string";
|
|
8846
|
-
}, {
|
|
8847
|
-
readonly type: "object";
|
|
8848
|
-
readonly properties: {
|
|
8849
|
-
readonly srcSet: {
|
|
8850
|
-
readonly type: "string";
|
|
8851
|
-
};
|
|
8852
|
-
};
|
|
8853
|
-
readonly required: readonly ["srcSet"];
|
|
8854
|
-
}];
|
|
8855
|
-
};
|
|
8856
|
-
readonly separator: {
|
|
8857
|
-
readonly type: "string";
|
|
8858
|
-
};
|
|
8859
|
-
readonly separatorLine: {
|
|
8860
|
-
readonly type: "boolean";
|
|
8861
|
-
};
|
|
8862
|
-
readonly linePosition: {
|
|
8863
|
-
readonly type: "string";
|
|
8864
|
-
readonly enum: readonly ["top", "bottom"];
|
|
8865
|
-
readonly default: "top";
|
|
8866
|
-
};
|
|
8867
|
-
readonly version: {
|
|
8868
|
-
readonly type: "string";
|
|
8869
|
-
};
|
|
8870
|
-
readonly menuStyle: {
|
|
8871
|
-
readonly type: "string";
|
|
8872
|
-
readonly enum: readonly ["drilldown"];
|
|
8873
|
-
};
|
|
8874
|
-
readonly expanded: {
|
|
8875
|
-
readonly type: "string";
|
|
8876
|
-
readonly const: "always";
|
|
8877
|
-
};
|
|
8878
|
-
readonly selectFirstItemOnExpand: {
|
|
8879
|
-
readonly type: "boolean";
|
|
8880
|
-
};
|
|
8881
|
-
readonly flatten: {
|
|
8882
|
-
readonly type: "boolean";
|
|
8883
|
-
};
|
|
8884
|
-
readonly linkedSidebars: {
|
|
8885
|
-
readonly type: "array";
|
|
8886
|
-
readonly items: {
|
|
8887
|
-
readonly type: "string";
|
|
8888
|
-
};
|
|
8889
|
-
};
|
|
8890
|
-
};
|
|
8891
|
-
readonly type: "object";
|
|
8892
|
-
};
|
|
8893
|
-
};
|
|
8894
|
-
readonly copyrightText: {
|
|
8895
|
-
readonly type: "string";
|
|
8896
|
-
};
|
|
8897
|
-
readonly logo: {
|
|
8898
|
-
readonly type: "object";
|
|
8899
|
-
readonly properties: {
|
|
8900
|
-
readonly hide: {
|
|
8901
|
-
readonly type: "boolean";
|
|
8902
|
-
};
|
|
8903
|
-
};
|
|
8904
|
-
readonly additionalProperties: false;
|
|
8905
|
-
};
|
|
8906
|
-
};
|
|
8907
|
-
readonly additionalProperties: false;
|
|
8908
|
-
};
|
|
8909
|
-
readonly sidebar: {
|
|
8910
|
-
readonly type: "object";
|
|
8911
|
-
readonly properties: {
|
|
8912
|
-
readonly hide: {
|
|
8913
|
-
readonly type: "boolean";
|
|
8914
|
-
};
|
|
8915
|
-
readonly separatorLine: {
|
|
8916
|
-
readonly type: "boolean";
|
|
8917
|
-
};
|
|
8918
|
-
readonly linePosition: {
|
|
8919
|
-
readonly type: "string";
|
|
8920
|
-
readonly enum: readonly ["top", "bottom"];
|
|
8921
|
-
readonly default: "bottom";
|
|
8922
|
-
};
|
|
8923
|
-
};
|
|
8924
|
-
readonly additionalProperties: false;
|
|
8925
|
-
};
|
|
8926
|
-
readonly search: {
|
|
8927
|
-
readonly type: "object";
|
|
8928
|
-
readonly properties: {
|
|
8929
|
-
readonly hide: {
|
|
8930
|
-
readonly type: "boolean";
|
|
8931
|
-
};
|
|
8932
|
-
readonly placement: {
|
|
8933
|
-
readonly type: "string";
|
|
8934
|
-
readonly default: "navbar";
|
|
8935
|
-
};
|
|
8936
|
-
readonly shortcuts: {
|
|
8937
|
-
readonly type: "array";
|
|
8938
|
-
readonly items: {
|
|
8939
|
-
readonly type: "string";
|
|
8940
|
-
};
|
|
8941
|
-
readonly default: readonly ["/"];
|
|
8942
|
-
};
|
|
8943
|
-
readonly suggestedPages: {
|
|
8944
|
-
readonly type: "array";
|
|
8945
|
-
readonly items: {
|
|
8946
|
-
readonly type: "object";
|
|
8947
|
-
readonly properties: {
|
|
8948
|
-
readonly page: {
|
|
8949
|
-
readonly type: "string";
|
|
8950
|
-
};
|
|
8951
|
-
readonly label: {
|
|
8952
|
-
readonly type: "string";
|
|
8953
|
-
};
|
|
8954
|
-
readonly labelTranslationKey: {
|
|
8955
|
-
readonly type: "string";
|
|
8956
|
-
};
|
|
8957
|
-
};
|
|
8958
|
-
/**
|
|
8959
|
-
* @deprecated left for backwards compatibility
|
|
8960
|
-
*/
|
|
8961
|
-
readonly required: readonly ["page"];
|
|
8962
|
-
};
|
|
8963
|
-
};
|
|
8964
|
-
readonly fuzzy: {
|
|
8965
|
-
readonly type: "boolean";
|
|
8966
|
-
readonly default: false;
|
|
8967
|
-
};
|
|
8968
|
-
};
|
|
8969
|
-
readonly additionalProperties: false;
|
|
8970
|
-
};
|
|
8971
|
-
readonly codeSnippet: {
|
|
8972
|
-
readonly type: "object";
|
|
8973
|
-
readonly properties: {
|
|
8974
|
-
readonly elementFormat: {
|
|
8975
|
-
readonly type: "string";
|
|
8976
|
-
readonly default: "icon";
|
|
8977
|
-
};
|
|
8978
|
-
readonly copy: {
|
|
8979
|
-
readonly type: "object";
|
|
8980
|
-
readonly properties: {
|
|
8981
|
-
readonly hide: {
|
|
8982
|
-
readonly type: "boolean";
|
|
8983
|
-
};
|
|
8984
|
-
};
|
|
8985
|
-
readonly additionalProperties: false;
|
|
8986
|
-
readonly default: {
|
|
8987
|
-
readonly hide: false;
|
|
8988
|
-
};
|
|
8989
|
-
};
|
|
8990
|
-
readonly report: {
|
|
8991
|
-
readonly type: "object";
|
|
8992
|
-
readonly properties: {
|
|
8993
|
-
readonly hide: {
|
|
8994
|
-
readonly type: "boolean";
|
|
8995
|
-
};
|
|
8996
|
-
readonly tooltipText: {
|
|
8997
|
-
readonly type: "string";
|
|
8998
|
-
};
|
|
8999
|
-
readonly buttonText: {
|
|
9000
|
-
readonly type: "string";
|
|
9001
|
-
};
|
|
9002
|
-
readonly label: {
|
|
9003
|
-
readonly type: "string";
|
|
9004
|
-
};
|
|
9005
|
-
};
|
|
9006
|
-
readonly additionalProperties: false;
|
|
9007
|
-
readonly default: {
|
|
9008
|
-
readonly hide: false;
|
|
9009
|
-
};
|
|
9010
|
-
};
|
|
9011
|
-
readonly expand: {
|
|
9012
|
-
readonly type: "object";
|
|
9013
|
-
readonly properties: {
|
|
9014
|
-
readonly hide: {
|
|
9015
|
-
readonly type: "boolean";
|
|
9016
|
-
};
|
|
9017
|
-
};
|
|
9018
|
-
readonly additionalProperties: false;
|
|
9019
|
-
readonly default: {
|
|
9020
|
-
readonly hide: false;
|
|
9021
|
-
};
|
|
9022
|
-
};
|
|
9023
|
-
readonly collapse: {
|
|
9024
|
-
readonly type: "object";
|
|
9025
|
-
readonly properties: {
|
|
9026
|
-
readonly hide: {
|
|
9027
|
-
readonly type: "boolean";
|
|
9028
|
-
};
|
|
9029
|
-
};
|
|
9030
|
-
readonly additionalProperties: false;
|
|
9031
|
-
readonly default: {
|
|
9032
|
-
readonly hide: false;
|
|
9033
|
-
};
|
|
9034
|
-
};
|
|
9035
|
-
};
|
|
9036
|
-
readonly additionalProperties: false;
|
|
9037
|
-
};
|
|
9038
|
-
readonly breadcrumbs: {
|
|
9039
|
-
readonly type: "object";
|
|
9040
|
-
readonly properties: {
|
|
9041
|
-
readonly hide: {
|
|
9042
|
-
readonly type: "boolean";
|
|
9043
|
-
};
|
|
9044
|
-
readonly prefixItems: {
|
|
9045
|
-
readonly type: "array";
|
|
9046
|
-
readonly items: {
|
|
9047
|
-
readonly type: "object";
|
|
9048
|
-
readonly properties: {
|
|
9049
|
-
readonly label: {
|
|
9050
|
-
readonly type: "string";
|
|
9051
|
-
};
|
|
9052
|
-
readonly labelTranslationKey: {
|
|
9053
|
-
readonly type: "string";
|
|
9054
|
-
};
|
|
9055
|
-
readonly page: {
|
|
9056
|
-
readonly type: "string";
|
|
9057
|
-
};
|
|
9058
|
-
};
|
|
9059
|
-
readonly additionalProperties: false;
|
|
9060
|
-
readonly default: {};
|
|
9061
|
-
};
|
|
9062
|
-
};
|
|
9063
|
-
};
|
|
9064
|
-
readonly additionalProperties: false;
|
|
9065
|
-
};
|
|
9066
|
-
readonly feedback: {
|
|
9067
|
-
readonly type: "object";
|
|
9068
|
-
readonly properties: {
|
|
9069
|
-
readonly hide: {
|
|
9070
|
-
readonly type: "boolean";
|
|
9071
|
-
readonly default: false;
|
|
9072
|
-
};
|
|
9073
|
-
readonly type: {
|
|
9074
|
-
readonly type: "string";
|
|
9075
|
-
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
9076
|
-
readonly default: "sentiment";
|
|
9077
|
-
};
|
|
9078
|
-
readonly settings: {
|
|
9079
|
-
readonly type: "object";
|
|
9080
|
-
readonly properties: {
|
|
9081
|
-
readonly label: {
|
|
9082
|
-
readonly type: "string";
|
|
9083
|
-
};
|
|
9084
|
-
readonly submitText: {
|
|
9085
|
-
readonly type: "string";
|
|
9086
|
-
};
|
|
9087
|
-
readonly buttonText: {
|
|
9088
|
-
readonly type: "string";
|
|
9089
|
-
};
|
|
9090
|
-
readonly component: {
|
|
9091
|
-
readonly type: "string";
|
|
9092
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
9093
|
-
readonly default: "checkbox";
|
|
9094
|
-
};
|
|
9095
|
-
readonly items: {
|
|
9096
|
-
readonly type: "array";
|
|
9097
|
-
readonly items: {
|
|
9098
|
-
readonly type: "string";
|
|
9099
|
-
};
|
|
9100
|
-
readonly minItems: 1;
|
|
9101
|
-
};
|
|
9102
|
-
readonly leftScaleLabel: {
|
|
9103
|
-
readonly type: "string";
|
|
9104
|
-
};
|
|
9105
|
-
readonly rightScaleLabel: {
|
|
9106
|
-
readonly type: "string"; /**
|
|
9107
|
-
* @deprecated Should use `plugins` instead
|
|
9108
|
-
*/
|
|
9109
|
-
};
|
|
9110
|
-
readonly reasons: {
|
|
9111
|
-
readonly type: "object";
|
|
9112
|
-
readonly properties: {
|
|
9113
|
-
readonly hide: {
|
|
9114
|
-
readonly type: "boolean";
|
|
9115
|
-
readonly default: false;
|
|
9116
|
-
};
|
|
9117
|
-
readonly component: {
|
|
9118
|
-
readonly type: "string";
|
|
9119
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
9120
|
-
readonly default: "checkbox";
|
|
9121
|
-
};
|
|
9122
|
-
readonly label: {
|
|
9123
|
-
readonly type: "string";
|
|
9124
|
-
};
|
|
9125
|
-
readonly items: {
|
|
9126
|
-
readonly type: "array";
|
|
9127
|
-
readonly items: {
|
|
9128
|
-
readonly type: "string";
|
|
9129
|
-
};
|
|
9130
|
-
};
|
|
9131
|
-
};
|
|
9132
|
-
readonly additionalProperties: false;
|
|
9133
|
-
};
|
|
9134
|
-
readonly comment: {
|
|
9135
|
-
readonly type: "object";
|
|
9136
|
-
readonly properties: {
|
|
9137
|
-
readonly hide: {
|
|
9138
|
-
readonly type: "boolean";
|
|
9139
|
-
readonly default: false;
|
|
9140
|
-
};
|
|
9141
|
-
readonly label: {
|
|
9142
|
-
readonly type: "string";
|
|
9143
|
-
};
|
|
9144
|
-
readonly likeLabel: {
|
|
9145
|
-
readonly type: "string";
|
|
9146
|
-
};
|
|
9147
|
-
readonly dislikeLabel: {
|
|
9148
|
-
readonly type: "string";
|
|
9149
|
-
};
|
|
9150
|
-
readonly satisfiedLabel: {
|
|
9151
|
-
readonly type: "string";
|
|
9152
|
-
};
|
|
9153
|
-
readonly neutralLabel: {
|
|
9154
|
-
readonly type: "string";
|
|
9155
|
-
};
|
|
9156
|
-
readonly dissatisfiedLabel: {
|
|
9157
|
-
readonly type: "string";
|
|
9158
|
-
};
|
|
9159
|
-
};
|
|
9160
|
-
readonly additionalProperties: false;
|
|
9161
|
-
};
|
|
9162
|
-
};
|
|
9163
|
-
readonly additionalProperties: false;
|
|
9164
|
-
};
|
|
9165
|
-
};
|
|
9166
|
-
readonly additionalProperties: false;
|
|
9167
|
-
};
|
|
9168
|
-
readonly analytics: {
|
|
9169
|
-
readonly type: "object";
|
|
9170
|
-
readonly properties: {
|
|
9171
|
-
readonly ga: {
|
|
9172
|
-
readonly type: "object";
|
|
9173
|
-
readonly properties: {
|
|
9174
|
-
readonly includeInDevelopment: {
|
|
9175
|
-
readonly type: "boolean";
|
|
9176
|
-
};
|
|
9177
|
-
readonly trackingId: {
|
|
9178
|
-
readonly type: "string";
|
|
9179
|
-
};
|
|
9180
|
-
readonly conversionId: {
|
|
9181
|
-
readonly type: "string";
|
|
9182
|
-
};
|
|
9183
|
-
readonly floodlightId: {
|
|
9184
|
-
readonly type: "string";
|
|
9185
|
-
};
|
|
9186
|
-
readonly optimizeId: {
|
|
9187
|
-
readonly type: "string";
|
|
9188
|
-
};
|
|
9189
|
-
readonly exclude: {
|
|
9190
|
-
readonly type: "array";
|
|
9191
|
-
readonly items: {
|
|
9192
|
-
readonly type: "string";
|
|
9193
|
-
};
|
|
9194
|
-
};
|
|
9195
|
-
};
|
|
9196
|
-
readonly additionalProperties: false;
|
|
9197
|
-
readonly required: readonly ["trackingId"];
|
|
9198
|
-
};
|
|
9199
|
-
};
|
|
9200
|
-
};
|
|
9201
|
-
};
|
|
9202
|
-
readonly additionalProperties: false;
|
|
9203
|
-
};
|