@redocly/openapi-core 1.10.3 → 1.10.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/lib/bundle.d.ts +1 -1
- package/lib/config/types.d.ts +0 -10
- package/lib/config/types.js +0 -13
- package/lib/env.js +3 -1
- package/lib/oas-types.d.ts +1 -1
- package/lib/types/redocly-yaml.js +3 -3
- package/package.json +2 -1
- package/src/__tests__/lint.test.ts +2 -30
- package/src/config/types.ts +0 -13
- package/src/env.ts +3 -1
- package/src/types/redocly-yaml.ts +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/lib/types/portal-config-schema.d.ts +0 -5299
- package/lib/types/portal-config-schema.js +0 -338
- package/lib/types/theme-config.d.ts +0 -2541
- package/lib/types/theme-config.js +0 -637
- package/src/types/portal-config-schema.ts +0 -416
- package/src/types/theme-config.ts +0 -781
|
@@ -1,2541 +0,0 @@
|
|
|
1
|
-
import type { FromSchema } from 'json-schema-to-ts';
|
|
2
|
-
declare const markdownConfigSchema: {
|
|
3
|
-
readonly type: "object";
|
|
4
|
-
readonly properties: {
|
|
5
|
-
readonly frontMatterKeysToResolve: {
|
|
6
|
-
readonly type: "array";
|
|
7
|
-
readonly items: {
|
|
8
|
-
readonly type: "string";
|
|
9
|
-
};
|
|
10
|
-
readonly default: readonly ["image", "links"];
|
|
11
|
-
};
|
|
12
|
-
readonly partialsFolders: {
|
|
13
|
-
readonly type: "array";
|
|
14
|
-
readonly items: {
|
|
15
|
-
readonly type: "string";
|
|
16
|
-
};
|
|
17
|
-
readonly default: readonly ["_partials"];
|
|
18
|
-
};
|
|
19
|
-
readonly lastUpdatedBlock: {
|
|
20
|
-
readonly type: "object";
|
|
21
|
-
readonly properties: {
|
|
22
|
-
readonly hide: {
|
|
23
|
-
readonly type: "boolean";
|
|
24
|
-
};
|
|
25
|
-
readonly format: {
|
|
26
|
-
readonly type: "string";
|
|
27
|
-
readonly enum: readonly ["timeago", "iso", "long", "short"];
|
|
28
|
-
readonly default: "timeago";
|
|
29
|
-
};
|
|
30
|
-
readonly locale: {
|
|
31
|
-
readonly type: "string";
|
|
32
|
-
};
|
|
33
|
-
};
|
|
34
|
-
readonly additionalProperties: false;
|
|
35
|
-
readonly default: {};
|
|
36
|
-
};
|
|
37
|
-
readonly toc: {
|
|
38
|
-
readonly type: "object";
|
|
39
|
-
readonly properties: {
|
|
40
|
-
readonly hide: {
|
|
41
|
-
readonly type: "boolean";
|
|
42
|
-
};
|
|
43
|
-
readonly header: {
|
|
44
|
-
readonly type: "string";
|
|
45
|
-
readonly default: "On this page";
|
|
46
|
-
};
|
|
47
|
-
readonly depth: {
|
|
48
|
-
readonly type: "integer";
|
|
49
|
-
readonly default: 3;
|
|
50
|
-
readonly minimum: 1;
|
|
51
|
-
};
|
|
52
|
-
};
|
|
53
|
-
readonly additionalProperties: false;
|
|
54
|
-
readonly default: {};
|
|
55
|
-
};
|
|
56
|
-
readonly editPage: {
|
|
57
|
-
readonly type: "object";
|
|
58
|
-
readonly properties: {
|
|
59
|
-
readonly hide: {
|
|
60
|
-
readonly type: "boolean";
|
|
61
|
-
};
|
|
62
|
-
readonly baseUrl: {
|
|
63
|
-
readonly type: "string";
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
readonly additionalProperties: false;
|
|
67
|
-
readonly default: {};
|
|
68
|
-
};
|
|
69
|
-
};
|
|
70
|
-
readonly additionalProperties: false;
|
|
71
|
-
readonly default: {};
|
|
72
|
-
};
|
|
73
|
-
declare const amplitudeAnalyticsConfigSchema: {
|
|
74
|
-
readonly type: "object";
|
|
75
|
-
readonly properties: {
|
|
76
|
-
readonly includeInDevelopment: {
|
|
77
|
-
readonly type: "boolean";
|
|
78
|
-
};
|
|
79
|
-
readonly apiKey: {
|
|
80
|
-
readonly type: "string";
|
|
81
|
-
};
|
|
82
|
-
readonly head: {
|
|
83
|
-
readonly type: "boolean";
|
|
84
|
-
};
|
|
85
|
-
readonly respectDNT: {
|
|
86
|
-
readonly type: "boolean";
|
|
87
|
-
};
|
|
88
|
-
readonly exclude: {
|
|
89
|
-
readonly type: "array";
|
|
90
|
-
readonly items: {
|
|
91
|
-
readonly type: "string";
|
|
92
|
-
};
|
|
93
|
-
};
|
|
94
|
-
readonly outboundClickEventName: {
|
|
95
|
-
readonly type: "string";
|
|
96
|
-
};
|
|
97
|
-
readonly pageViewEventName: {
|
|
98
|
-
readonly type: "string";
|
|
99
|
-
};
|
|
100
|
-
readonly amplitudeConfig: {
|
|
101
|
-
readonly type: "object";
|
|
102
|
-
readonly additionalProperties: true;
|
|
103
|
-
};
|
|
104
|
-
};
|
|
105
|
-
readonly additionalProperties: false;
|
|
106
|
-
readonly required: readonly ["apiKey"];
|
|
107
|
-
};
|
|
108
|
-
declare const rudderstackAnalyticsConfigSchema: {
|
|
109
|
-
readonly type: "object";
|
|
110
|
-
readonly properties: {
|
|
111
|
-
readonly includeInDevelopment: {
|
|
112
|
-
readonly type: "boolean";
|
|
113
|
-
};
|
|
114
|
-
readonly writeKey: {
|
|
115
|
-
readonly type: "string";
|
|
116
|
-
readonly minLength: 10;
|
|
117
|
-
};
|
|
118
|
-
readonly trackPage: {
|
|
119
|
-
readonly type: "boolean";
|
|
120
|
-
};
|
|
121
|
-
readonly dataPlaneUrl: {
|
|
122
|
-
readonly type: "string";
|
|
123
|
-
};
|
|
124
|
-
readonly controlPlaneUrl: {
|
|
125
|
-
readonly type: "string";
|
|
126
|
-
};
|
|
127
|
-
readonly sdkUrl: {
|
|
128
|
-
readonly type: "string";
|
|
129
|
-
};
|
|
130
|
-
readonly loadOptions: {
|
|
131
|
-
readonly type: "object";
|
|
132
|
-
readonly additionalProperties: true;
|
|
133
|
-
};
|
|
134
|
-
};
|
|
135
|
-
readonly additionalProperties: false;
|
|
136
|
-
readonly required: readonly ["writeKey"];
|
|
137
|
-
};
|
|
138
|
-
declare const segmentAnalyticsConfigSchema: {
|
|
139
|
-
readonly type: "object";
|
|
140
|
-
readonly properties: {
|
|
141
|
-
readonly includeInDevelopment: {
|
|
142
|
-
readonly type: "boolean";
|
|
143
|
-
};
|
|
144
|
-
readonly writeKey: {
|
|
145
|
-
readonly type: "string";
|
|
146
|
-
readonly minLength: 10;
|
|
147
|
-
};
|
|
148
|
-
readonly trackPage: {
|
|
149
|
-
readonly type: "boolean";
|
|
150
|
-
};
|
|
151
|
-
readonly includeTitleInPageCall: {
|
|
152
|
-
readonly type: "boolean";
|
|
153
|
-
};
|
|
154
|
-
readonly host: {
|
|
155
|
-
readonly type: "string";
|
|
156
|
-
};
|
|
157
|
-
};
|
|
158
|
-
readonly additionalProperties: false;
|
|
159
|
-
readonly required: readonly ["writeKey"];
|
|
160
|
-
};
|
|
161
|
-
declare const gtmAnalyticsConfigSchema: {
|
|
162
|
-
readonly type: "object";
|
|
163
|
-
readonly properties: {
|
|
164
|
-
readonly includeInDevelopment: {
|
|
165
|
-
readonly type: "boolean";
|
|
166
|
-
};
|
|
167
|
-
readonly trackingId: {
|
|
168
|
-
readonly type: "string";
|
|
169
|
-
};
|
|
170
|
-
readonly gtmAuth: {
|
|
171
|
-
readonly type: "string";
|
|
172
|
-
};
|
|
173
|
-
readonly gtmPreview: {
|
|
174
|
-
readonly type: "string";
|
|
175
|
-
};
|
|
176
|
-
readonly defaultDataLayer: {};
|
|
177
|
-
readonly dataLayerName: {
|
|
178
|
-
readonly type: "string";
|
|
179
|
-
};
|
|
180
|
-
readonly enableWebVitalsTracking: {
|
|
181
|
-
readonly type: "boolean";
|
|
182
|
-
};
|
|
183
|
-
readonly selfHostedOrigin: {
|
|
184
|
-
readonly type: "string";
|
|
185
|
-
};
|
|
186
|
-
readonly pageViewEventName: {
|
|
187
|
-
readonly type: "string";
|
|
188
|
-
};
|
|
189
|
-
};
|
|
190
|
-
readonly additionalProperties: false;
|
|
191
|
-
readonly required: readonly ["trackingId"];
|
|
192
|
-
};
|
|
193
|
-
declare const productGoogleAnalyticsConfigSchema: {
|
|
194
|
-
readonly type: "object";
|
|
195
|
-
readonly properties: {
|
|
196
|
-
readonly includeInDevelopment: {
|
|
197
|
-
readonly type: "boolean";
|
|
198
|
-
};
|
|
199
|
-
readonly trackingId: {
|
|
200
|
-
readonly type: "string";
|
|
201
|
-
};
|
|
202
|
-
readonly conversionId: {
|
|
203
|
-
readonly type: "string";
|
|
204
|
-
};
|
|
205
|
-
readonly floodlightId: {
|
|
206
|
-
readonly type: "string";
|
|
207
|
-
};
|
|
208
|
-
readonly optimizeId: {
|
|
209
|
-
readonly type: "string";
|
|
210
|
-
};
|
|
211
|
-
readonly exclude: {
|
|
212
|
-
readonly type: "array";
|
|
213
|
-
readonly items: {
|
|
214
|
-
readonly type: "string";
|
|
215
|
-
};
|
|
216
|
-
};
|
|
217
|
-
};
|
|
218
|
-
readonly additionalProperties: false;
|
|
219
|
-
readonly required: readonly ["trackingId"];
|
|
220
|
-
};
|
|
221
|
-
declare const googleAnalyticsConfigSchema: {
|
|
222
|
-
readonly type: "object";
|
|
223
|
-
readonly properties: {
|
|
224
|
-
readonly includeInDevelopment: {
|
|
225
|
-
readonly type: "boolean";
|
|
226
|
-
};
|
|
227
|
-
readonly trackingId: {
|
|
228
|
-
readonly type: "string";
|
|
229
|
-
};
|
|
230
|
-
readonly conversionId: {
|
|
231
|
-
readonly type: "string";
|
|
232
|
-
};
|
|
233
|
-
readonly floodlightId: {
|
|
234
|
-
readonly type: "string";
|
|
235
|
-
};
|
|
236
|
-
readonly head: {
|
|
237
|
-
readonly type: "boolean";
|
|
238
|
-
};
|
|
239
|
-
readonly respectDNT: {
|
|
240
|
-
readonly type: "boolean";
|
|
241
|
-
};
|
|
242
|
-
readonly exclude: {
|
|
243
|
-
readonly type: "array";
|
|
244
|
-
readonly items: {
|
|
245
|
-
readonly type: "string";
|
|
246
|
-
};
|
|
247
|
-
};
|
|
248
|
-
readonly optimizeId: {
|
|
249
|
-
readonly type: "string";
|
|
250
|
-
};
|
|
251
|
-
readonly anonymizeIp: {
|
|
252
|
-
readonly type: "boolean";
|
|
253
|
-
};
|
|
254
|
-
readonly cookieExpires: {
|
|
255
|
-
readonly type: "number";
|
|
256
|
-
};
|
|
257
|
-
readonly trackers: {
|
|
258
|
-
readonly type: "object";
|
|
259
|
-
readonly additionalProperties: {
|
|
260
|
-
readonly type: "object";
|
|
261
|
-
readonly properties: {
|
|
262
|
-
readonly includeInDevelopment: {
|
|
263
|
-
readonly type: "boolean";
|
|
264
|
-
};
|
|
265
|
-
readonly trackingId: {
|
|
266
|
-
readonly type: "string";
|
|
267
|
-
};
|
|
268
|
-
readonly conversionId: {
|
|
269
|
-
readonly type: "string";
|
|
270
|
-
};
|
|
271
|
-
readonly floodlightId: {
|
|
272
|
-
readonly type: "string";
|
|
273
|
-
};
|
|
274
|
-
readonly optimizeId: {
|
|
275
|
-
readonly type: "string";
|
|
276
|
-
};
|
|
277
|
-
readonly exclude: {
|
|
278
|
-
readonly type: "array";
|
|
279
|
-
readonly items: {
|
|
280
|
-
readonly type: "string";
|
|
281
|
-
};
|
|
282
|
-
};
|
|
283
|
-
};
|
|
284
|
-
readonly additionalProperties: false;
|
|
285
|
-
readonly required: readonly ["trackingId"];
|
|
286
|
-
};
|
|
287
|
-
};
|
|
288
|
-
};
|
|
289
|
-
readonly additionalProperties: false;
|
|
290
|
-
readonly required: readonly ["trackingId"];
|
|
291
|
-
};
|
|
292
|
-
declare const productConfigSchema: {
|
|
293
|
-
readonly type: "object";
|
|
294
|
-
readonly properties: {
|
|
295
|
-
readonly name: {
|
|
296
|
-
readonly type: "string";
|
|
297
|
-
};
|
|
298
|
-
readonly icon: {
|
|
299
|
-
readonly type: "string";
|
|
300
|
-
};
|
|
301
|
-
readonly folder: {
|
|
302
|
-
readonly type: "string";
|
|
303
|
-
};
|
|
304
|
-
};
|
|
305
|
-
readonly additionalProperties: false;
|
|
306
|
-
readonly required: readonly ["name", "folder"];
|
|
307
|
-
};
|
|
308
|
-
declare const catalogFilterSchema: {
|
|
309
|
-
readonly type: "object";
|
|
310
|
-
readonly additionalProperties: false;
|
|
311
|
-
readonly required: readonly ["title", "property"];
|
|
312
|
-
readonly properties: {
|
|
313
|
-
readonly type: {
|
|
314
|
-
readonly type: "string";
|
|
315
|
-
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
316
|
-
};
|
|
317
|
-
readonly title: {
|
|
318
|
-
readonly type: "string";
|
|
319
|
-
};
|
|
320
|
-
readonly titleTranslationKey: {
|
|
321
|
-
readonly type: "string";
|
|
322
|
-
};
|
|
323
|
-
readonly property: {
|
|
324
|
-
readonly type: "string";
|
|
325
|
-
};
|
|
326
|
-
readonly parentFilter: {
|
|
327
|
-
readonly type: "string";
|
|
328
|
-
};
|
|
329
|
-
readonly valuesMapping: {
|
|
330
|
-
readonly type: "object";
|
|
331
|
-
readonly additionalProperties: {
|
|
332
|
-
readonly type: "string";
|
|
333
|
-
};
|
|
334
|
-
};
|
|
335
|
-
readonly missingCategoryName: {
|
|
336
|
-
readonly type: "string";
|
|
337
|
-
};
|
|
338
|
-
readonly missingCategoryNameTranslationKey: {
|
|
339
|
-
readonly type: "string";
|
|
340
|
-
};
|
|
341
|
-
readonly options: {
|
|
342
|
-
readonly type: "array";
|
|
343
|
-
readonly items: {
|
|
344
|
-
readonly type: "string";
|
|
345
|
-
};
|
|
346
|
-
};
|
|
347
|
-
};
|
|
348
|
-
};
|
|
349
|
-
declare const scorecardConfigSchema: {
|
|
350
|
-
readonly type: "object";
|
|
351
|
-
readonly additionalProperties: true;
|
|
352
|
-
readonly required: readonly [];
|
|
353
|
-
readonly properties: {
|
|
354
|
-
readonly ignoreNonCompliant: {
|
|
355
|
-
readonly type: "boolean";
|
|
356
|
-
readonly default: false;
|
|
357
|
-
};
|
|
358
|
-
readonly teamMetadataProperty: {
|
|
359
|
-
readonly type: "object";
|
|
360
|
-
readonly properties: {
|
|
361
|
-
readonly property: {
|
|
362
|
-
readonly type: "string";
|
|
363
|
-
};
|
|
364
|
-
readonly label: {
|
|
365
|
-
readonly type: "string";
|
|
366
|
-
};
|
|
367
|
-
readonly default: {
|
|
368
|
-
readonly type: "string";
|
|
369
|
-
};
|
|
370
|
-
};
|
|
371
|
-
};
|
|
372
|
-
readonly levels: {
|
|
373
|
-
readonly type: "array";
|
|
374
|
-
readonly items: {
|
|
375
|
-
readonly type: "object";
|
|
376
|
-
readonly required: readonly ["name"];
|
|
377
|
-
readonly properties: {
|
|
378
|
-
readonly name: {
|
|
379
|
-
readonly type: "string";
|
|
380
|
-
};
|
|
381
|
-
readonly color: {
|
|
382
|
-
readonly type: "string";
|
|
383
|
-
};
|
|
384
|
-
readonly extends: {
|
|
385
|
-
readonly type: "array";
|
|
386
|
-
readonly items: {
|
|
387
|
-
readonly type: "string";
|
|
388
|
-
};
|
|
389
|
-
};
|
|
390
|
-
readonly rules: {
|
|
391
|
-
readonly type: "object";
|
|
392
|
-
readonly additionalProperties: {
|
|
393
|
-
readonly oneOf: readonly [{
|
|
394
|
-
readonly type: "string";
|
|
395
|
-
}, {
|
|
396
|
-
readonly type: "object";
|
|
397
|
-
}];
|
|
398
|
-
};
|
|
399
|
-
};
|
|
400
|
-
};
|
|
401
|
-
readonly additionalProperties: false;
|
|
402
|
-
};
|
|
403
|
-
};
|
|
404
|
-
readonly targets: {
|
|
405
|
-
readonly type: "array";
|
|
406
|
-
readonly items: {
|
|
407
|
-
readonly type: "object";
|
|
408
|
-
readonly required: readonly ["where"];
|
|
409
|
-
readonly properties: {
|
|
410
|
-
readonly minimumLevel: {
|
|
411
|
-
readonly type: "string";
|
|
412
|
-
};
|
|
413
|
-
readonly where: {
|
|
414
|
-
readonly type: "object";
|
|
415
|
-
readonly required: readonly ["metadata"];
|
|
416
|
-
readonly properties: {
|
|
417
|
-
readonly metadata: {
|
|
418
|
-
readonly type: "object";
|
|
419
|
-
readonly additionalProperties: {
|
|
420
|
-
readonly type: "string";
|
|
421
|
-
};
|
|
422
|
-
};
|
|
423
|
-
};
|
|
424
|
-
readonly additionalProperties: false;
|
|
425
|
-
};
|
|
426
|
-
};
|
|
427
|
-
readonly additionalProperties: false;
|
|
428
|
-
};
|
|
429
|
-
};
|
|
430
|
-
};
|
|
431
|
-
};
|
|
432
|
-
declare const catalogSchema: {
|
|
433
|
-
readonly type: "object";
|
|
434
|
-
readonly additionalProperties: true;
|
|
435
|
-
readonly required: readonly ["slug", "items"];
|
|
436
|
-
readonly properties: {
|
|
437
|
-
readonly slug: {
|
|
438
|
-
readonly type: "string";
|
|
439
|
-
};
|
|
440
|
-
readonly filters: {
|
|
441
|
-
readonly type: "array";
|
|
442
|
-
readonly items: {
|
|
443
|
-
readonly type: "object";
|
|
444
|
-
readonly additionalProperties: false;
|
|
445
|
-
readonly required: readonly ["title", "property"];
|
|
446
|
-
readonly properties: {
|
|
447
|
-
readonly type: {
|
|
448
|
-
readonly type: "string";
|
|
449
|
-
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
450
|
-
};
|
|
451
|
-
readonly title: {
|
|
452
|
-
readonly type: "string";
|
|
453
|
-
};
|
|
454
|
-
readonly titleTranslationKey: {
|
|
455
|
-
readonly type: "string";
|
|
456
|
-
};
|
|
457
|
-
readonly property: {
|
|
458
|
-
readonly type: "string";
|
|
459
|
-
};
|
|
460
|
-
readonly parentFilter: {
|
|
461
|
-
readonly type: "string";
|
|
462
|
-
};
|
|
463
|
-
readonly valuesMapping: {
|
|
464
|
-
readonly type: "object";
|
|
465
|
-
readonly additionalProperties: {
|
|
466
|
-
readonly type: "string";
|
|
467
|
-
};
|
|
468
|
-
};
|
|
469
|
-
readonly missingCategoryName: {
|
|
470
|
-
readonly type: "string";
|
|
471
|
-
};
|
|
472
|
-
readonly missingCategoryNameTranslationKey: {
|
|
473
|
-
readonly type: "string";
|
|
474
|
-
};
|
|
475
|
-
readonly options: {
|
|
476
|
-
readonly type: "array";
|
|
477
|
-
readonly items: {
|
|
478
|
-
readonly type: "string";
|
|
479
|
-
};
|
|
480
|
-
};
|
|
481
|
-
};
|
|
482
|
-
};
|
|
483
|
-
};
|
|
484
|
-
readonly groupByFirstFilter: {
|
|
485
|
-
readonly type: "boolean";
|
|
486
|
-
};
|
|
487
|
-
readonly filterValuesCasing: {
|
|
488
|
-
readonly type: "string";
|
|
489
|
-
readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
|
|
490
|
-
};
|
|
491
|
-
readonly items: {
|
|
492
|
-
readonly type: "array";
|
|
493
|
-
readonly items: {
|
|
494
|
-
readonly properties: {
|
|
495
|
-
readonly items: {
|
|
496
|
-
readonly type: "array";
|
|
497
|
-
readonly items: {
|
|
498
|
-
readonly type: "object";
|
|
499
|
-
readonly properties: {
|
|
500
|
-
readonly page: {
|
|
501
|
-
readonly type: "string";
|
|
502
|
-
};
|
|
503
|
-
readonly directory: {
|
|
504
|
-
readonly type: "string";
|
|
505
|
-
};
|
|
506
|
-
readonly disconnect: {
|
|
507
|
-
readonly type: "boolean";
|
|
508
|
-
readonly default: false;
|
|
509
|
-
};
|
|
510
|
-
readonly group: {
|
|
511
|
-
readonly type: "string";
|
|
512
|
-
};
|
|
513
|
-
readonly label: {
|
|
514
|
-
readonly type: "string";
|
|
515
|
-
};
|
|
516
|
-
readonly separator: {
|
|
517
|
-
readonly type: "string";
|
|
518
|
-
};
|
|
519
|
-
readonly separatorLine: {
|
|
520
|
-
readonly type: "boolean";
|
|
521
|
-
};
|
|
522
|
-
readonly linePosition: {
|
|
523
|
-
readonly type: "string";
|
|
524
|
-
readonly enum: readonly ["top", "bottom"];
|
|
525
|
-
readonly default: "top";
|
|
526
|
-
};
|
|
527
|
-
readonly version: {
|
|
528
|
-
readonly type: "string";
|
|
529
|
-
};
|
|
530
|
-
readonly menuStyle: {
|
|
531
|
-
readonly type: "string";
|
|
532
|
-
readonly enum: readonly ["drilldown"];
|
|
533
|
-
};
|
|
534
|
-
readonly expanded: {
|
|
535
|
-
readonly type: "string";
|
|
536
|
-
readonly const: "always";
|
|
537
|
-
};
|
|
538
|
-
readonly selectFirstItemOnExpand: {
|
|
539
|
-
readonly type: "boolean";
|
|
540
|
-
};
|
|
541
|
-
readonly flatten: {
|
|
542
|
-
readonly type: "boolean";
|
|
543
|
-
};
|
|
544
|
-
readonly linkedSidebars: {
|
|
545
|
-
readonly type: "array";
|
|
546
|
-
readonly items: {
|
|
547
|
-
readonly type: "string";
|
|
548
|
-
};
|
|
549
|
-
};
|
|
550
|
-
};
|
|
551
|
-
};
|
|
552
|
-
};
|
|
553
|
-
readonly page: {
|
|
554
|
-
readonly type: "string";
|
|
555
|
-
};
|
|
556
|
-
readonly directory: {
|
|
557
|
-
readonly type: "string";
|
|
558
|
-
};
|
|
559
|
-
readonly disconnect: {
|
|
560
|
-
readonly type: "boolean";
|
|
561
|
-
readonly default: false;
|
|
562
|
-
};
|
|
563
|
-
readonly group: {
|
|
564
|
-
readonly type: "string";
|
|
565
|
-
};
|
|
566
|
-
readonly label: {
|
|
567
|
-
readonly type: "string";
|
|
568
|
-
};
|
|
569
|
-
readonly separator: {
|
|
570
|
-
readonly type: "string";
|
|
571
|
-
};
|
|
572
|
-
readonly separatorLine: {
|
|
573
|
-
readonly type: "boolean";
|
|
574
|
-
};
|
|
575
|
-
readonly linePosition: {
|
|
576
|
-
readonly type: "string";
|
|
577
|
-
readonly enum: readonly ["top", "bottom"];
|
|
578
|
-
readonly default: "top";
|
|
579
|
-
};
|
|
580
|
-
readonly version: {
|
|
581
|
-
readonly type: "string";
|
|
582
|
-
};
|
|
583
|
-
readonly menuStyle: {
|
|
584
|
-
readonly type: "string";
|
|
585
|
-
readonly enum: readonly ["drilldown"];
|
|
586
|
-
};
|
|
587
|
-
readonly expanded: {
|
|
588
|
-
readonly type: "string";
|
|
589
|
-
readonly const: "always";
|
|
590
|
-
};
|
|
591
|
-
readonly selectFirstItemOnExpand: {
|
|
592
|
-
readonly type: "boolean";
|
|
593
|
-
};
|
|
594
|
-
readonly flatten: {
|
|
595
|
-
readonly type: "boolean";
|
|
596
|
-
};
|
|
597
|
-
readonly linkedSidebars: {
|
|
598
|
-
readonly type: "array";
|
|
599
|
-
readonly items: {
|
|
600
|
-
readonly type: "string";
|
|
601
|
-
};
|
|
602
|
-
};
|
|
603
|
-
};
|
|
604
|
-
readonly type: "object";
|
|
605
|
-
};
|
|
606
|
-
};
|
|
607
|
-
readonly requiredPermission: {
|
|
608
|
-
readonly type: "string";
|
|
609
|
-
};
|
|
610
|
-
readonly separateVersions: {
|
|
611
|
-
readonly type: "boolean";
|
|
612
|
-
};
|
|
613
|
-
readonly title: {
|
|
614
|
-
readonly type: "string";
|
|
615
|
-
};
|
|
616
|
-
readonly titleTranslationKey: {
|
|
617
|
-
readonly type: "string";
|
|
618
|
-
};
|
|
619
|
-
readonly description: {
|
|
620
|
-
readonly type: "string";
|
|
621
|
-
};
|
|
622
|
-
readonly descriptionTranslationKey: {
|
|
623
|
-
readonly type: "string";
|
|
624
|
-
};
|
|
625
|
-
};
|
|
626
|
-
};
|
|
627
|
-
export declare const themeConfigSchema: {
|
|
628
|
-
readonly type: "object";
|
|
629
|
-
readonly properties: {
|
|
630
|
-
readonly imports: {
|
|
631
|
-
readonly type: "array";
|
|
632
|
-
readonly items: {
|
|
633
|
-
readonly type: "string";
|
|
634
|
-
};
|
|
635
|
-
readonly default: readonly [];
|
|
636
|
-
};
|
|
637
|
-
readonly logo: {
|
|
638
|
-
readonly type: "object";
|
|
639
|
-
readonly properties: {
|
|
640
|
-
readonly image: {
|
|
641
|
-
readonly type: "string";
|
|
642
|
-
};
|
|
643
|
-
readonly srcSet: {
|
|
644
|
-
readonly type: "string";
|
|
645
|
-
};
|
|
646
|
-
readonly altText: {
|
|
647
|
-
readonly type: "string";
|
|
648
|
-
};
|
|
649
|
-
readonly link: {
|
|
650
|
-
readonly type: "string";
|
|
651
|
-
};
|
|
652
|
-
readonly favicon: {
|
|
653
|
-
readonly type: "string";
|
|
654
|
-
};
|
|
655
|
-
};
|
|
656
|
-
readonly additionalProperties: false;
|
|
657
|
-
};
|
|
658
|
-
readonly navbar: {
|
|
659
|
-
readonly type: "object";
|
|
660
|
-
readonly properties: {
|
|
661
|
-
readonly hide: {
|
|
662
|
-
readonly type: "boolean";
|
|
663
|
-
};
|
|
664
|
-
readonly items: {
|
|
665
|
-
readonly type: "array";
|
|
666
|
-
readonly items: {
|
|
667
|
-
readonly properties: {
|
|
668
|
-
readonly items: {
|
|
669
|
-
readonly type: "array";
|
|
670
|
-
readonly items: {
|
|
671
|
-
readonly type: "object";
|
|
672
|
-
readonly properties: {
|
|
673
|
-
readonly page: {
|
|
674
|
-
readonly type: "string";
|
|
675
|
-
};
|
|
676
|
-
readonly directory: {
|
|
677
|
-
readonly type: "string";
|
|
678
|
-
};
|
|
679
|
-
readonly disconnect: {
|
|
680
|
-
readonly type: "boolean";
|
|
681
|
-
readonly default: false;
|
|
682
|
-
};
|
|
683
|
-
readonly group: {
|
|
684
|
-
readonly type: "string";
|
|
685
|
-
};
|
|
686
|
-
readonly label: {
|
|
687
|
-
readonly type: "string";
|
|
688
|
-
};
|
|
689
|
-
readonly separator: {
|
|
690
|
-
readonly type: "string";
|
|
691
|
-
};
|
|
692
|
-
readonly separatorLine: {
|
|
693
|
-
readonly type: "boolean";
|
|
694
|
-
};
|
|
695
|
-
readonly linePosition: {
|
|
696
|
-
readonly type: "string";
|
|
697
|
-
readonly enum: readonly ["top", "bottom"];
|
|
698
|
-
readonly default: "top";
|
|
699
|
-
};
|
|
700
|
-
readonly version: {
|
|
701
|
-
readonly type: "string";
|
|
702
|
-
};
|
|
703
|
-
readonly menuStyle: {
|
|
704
|
-
readonly type: "string";
|
|
705
|
-
readonly enum: readonly ["drilldown"];
|
|
706
|
-
};
|
|
707
|
-
readonly expanded: {
|
|
708
|
-
readonly type: "string";
|
|
709
|
-
readonly const: "always";
|
|
710
|
-
};
|
|
711
|
-
readonly selectFirstItemOnExpand: {
|
|
712
|
-
readonly type: "boolean";
|
|
713
|
-
};
|
|
714
|
-
readonly flatten: {
|
|
715
|
-
readonly type: "boolean";
|
|
716
|
-
};
|
|
717
|
-
readonly linkedSidebars: {
|
|
718
|
-
readonly type: "array";
|
|
719
|
-
readonly items: {
|
|
720
|
-
readonly type: "string";
|
|
721
|
-
};
|
|
722
|
-
};
|
|
723
|
-
};
|
|
724
|
-
};
|
|
725
|
-
};
|
|
726
|
-
readonly page: {
|
|
727
|
-
readonly type: "string";
|
|
728
|
-
};
|
|
729
|
-
readonly directory: {
|
|
730
|
-
readonly type: "string";
|
|
731
|
-
};
|
|
732
|
-
readonly disconnect: {
|
|
733
|
-
readonly type: "boolean";
|
|
734
|
-
readonly default: false;
|
|
735
|
-
};
|
|
736
|
-
readonly group: {
|
|
737
|
-
readonly type: "string";
|
|
738
|
-
};
|
|
739
|
-
readonly label: {
|
|
740
|
-
readonly type: "string";
|
|
741
|
-
};
|
|
742
|
-
readonly separator: {
|
|
743
|
-
readonly type: "string";
|
|
744
|
-
};
|
|
745
|
-
readonly separatorLine: {
|
|
746
|
-
readonly type: "boolean";
|
|
747
|
-
};
|
|
748
|
-
readonly linePosition: {
|
|
749
|
-
readonly type: "string";
|
|
750
|
-
readonly enum: readonly ["top", "bottom"];
|
|
751
|
-
readonly default: "top";
|
|
752
|
-
};
|
|
753
|
-
readonly version: {
|
|
754
|
-
readonly type: "string";
|
|
755
|
-
};
|
|
756
|
-
readonly menuStyle: {
|
|
757
|
-
readonly type: "string";
|
|
758
|
-
readonly enum: readonly ["drilldown"];
|
|
759
|
-
};
|
|
760
|
-
readonly expanded: {
|
|
761
|
-
readonly type: "string";
|
|
762
|
-
readonly const: "always";
|
|
763
|
-
};
|
|
764
|
-
readonly selectFirstItemOnExpand: {
|
|
765
|
-
readonly type: "boolean";
|
|
766
|
-
};
|
|
767
|
-
readonly flatten: {
|
|
768
|
-
readonly type: "boolean";
|
|
769
|
-
};
|
|
770
|
-
readonly linkedSidebars: {
|
|
771
|
-
readonly type: "array";
|
|
772
|
-
readonly items: {
|
|
773
|
-
readonly type: "string";
|
|
774
|
-
};
|
|
775
|
-
};
|
|
776
|
-
};
|
|
777
|
-
readonly type: "object";
|
|
778
|
-
};
|
|
779
|
-
};
|
|
780
|
-
};
|
|
781
|
-
readonly additionalProperties: false;
|
|
782
|
-
};
|
|
783
|
-
readonly products: {
|
|
784
|
-
readonly type: "object";
|
|
785
|
-
readonly additionalProperties: {
|
|
786
|
-
readonly type: "object";
|
|
787
|
-
readonly properties: {
|
|
788
|
-
readonly name: {
|
|
789
|
-
readonly type: "string";
|
|
790
|
-
};
|
|
791
|
-
readonly icon: {
|
|
792
|
-
readonly type: "string";
|
|
793
|
-
};
|
|
794
|
-
readonly folder: {
|
|
795
|
-
readonly type: "string";
|
|
796
|
-
};
|
|
797
|
-
};
|
|
798
|
-
readonly additionalProperties: false;
|
|
799
|
-
readonly required: readonly ["name", "folder"];
|
|
800
|
-
};
|
|
801
|
-
};
|
|
802
|
-
readonly footer: {
|
|
803
|
-
readonly type: "object";
|
|
804
|
-
readonly properties: {
|
|
805
|
-
readonly hide: {
|
|
806
|
-
readonly type: "boolean";
|
|
807
|
-
};
|
|
808
|
-
readonly items: {
|
|
809
|
-
readonly type: "array";
|
|
810
|
-
readonly items: {
|
|
811
|
-
readonly properties: {
|
|
812
|
-
readonly items: {
|
|
813
|
-
readonly type: "array";
|
|
814
|
-
readonly items: {
|
|
815
|
-
readonly type: "object";
|
|
816
|
-
readonly properties: {
|
|
817
|
-
readonly page: {
|
|
818
|
-
readonly type: "string";
|
|
819
|
-
};
|
|
820
|
-
readonly directory: {
|
|
821
|
-
readonly type: "string";
|
|
822
|
-
};
|
|
823
|
-
readonly disconnect: {
|
|
824
|
-
readonly type: "boolean";
|
|
825
|
-
readonly default: false;
|
|
826
|
-
};
|
|
827
|
-
readonly group: {
|
|
828
|
-
readonly type: "string";
|
|
829
|
-
};
|
|
830
|
-
readonly label: {
|
|
831
|
-
readonly type: "string";
|
|
832
|
-
};
|
|
833
|
-
readonly separator: {
|
|
834
|
-
readonly type: "string";
|
|
835
|
-
};
|
|
836
|
-
readonly separatorLine: {
|
|
837
|
-
readonly type: "boolean";
|
|
838
|
-
};
|
|
839
|
-
readonly linePosition: {
|
|
840
|
-
readonly type: "string";
|
|
841
|
-
readonly enum: readonly ["top", "bottom"];
|
|
842
|
-
readonly default: "top";
|
|
843
|
-
};
|
|
844
|
-
readonly version: {
|
|
845
|
-
readonly type: "string";
|
|
846
|
-
};
|
|
847
|
-
readonly menuStyle: {
|
|
848
|
-
readonly type: "string";
|
|
849
|
-
readonly enum: readonly ["drilldown"];
|
|
850
|
-
};
|
|
851
|
-
readonly expanded: {
|
|
852
|
-
readonly type: "string";
|
|
853
|
-
readonly const: "always";
|
|
854
|
-
};
|
|
855
|
-
readonly selectFirstItemOnExpand: {
|
|
856
|
-
readonly type: "boolean";
|
|
857
|
-
};
|
|
858
|
-
readonly flatten: {
|
|
859
|
-
readonly type: "boolean";
|
|
860
|
-
};
|
|
861
|
-
readonly linkedSidebars: {
|
|
862
|
-
readonly type: "array";
|
|
863
|
-
readonly items: {
|
|
864
|
-
readonly type: "string";
|
|
865
|
-
};
|
|
866
|
-
};
|
|
867
|
-
};
|
|
868
|
-
};
|
|
869
|
-
};
|
|
870
|
-
readonly page: {
|
|
871
|
-
readonly type: "string";
|
|
872
|
-
};
|
|
873
|
-
readonly directory: {
|
|
874
|
-
readonly type: "string";
|
|
875
|
-
};
|
|
876
|
-
readonly disconnect: {
|
|
877
|
-
readonly type: "boolean";
|
|
878
|
-
readonly default: false;
|
|
879
|
-
};
|
|
880
|
-
readonly group: {
|
|
881
|
-
readonly type: "string";
|
|
882
|
-
};
|
|
883
|
-
readonly label: {
|
|
884
|
-
readonly type: "string";
|
|
885
|
-
};
|
|
886
|
-
readonly separator: {
|
|
887
|
-
readonly type: "string";
|
|
888
|
-
};
|
|
889
|
-
readonly separatorLine: {
|
|
890
|
-
readonly type: "boolean";
|
|
891
|
-
};
|
|
892
|
-
readonly linePosition: {
|
|
893
|
-
readonly type: "string";
|
|
894
|
-
readonly enum: readonly ["top", "bottom"];
|
|
895
|
-
readonly default: "top";
|
|
896
|
-
};
|
|
897
|
-
readonly version: {
|
|
898
|
-
readonly type: "string";
|
|
899
|
-
};
|
|
900
|
-
readonly menuStyle: {
|
|
901
|
-
readonly type: "string";
|
|
902
|
-
readonly enum: readonly ["drilldown"];
|
|
903
|
-
};
|
|
904
|
-
readonly expanded: {
|
|
905
|
-
readonly type: "string";
|
|
906
|
-
readonly const: "always";
|
|
907
|
-
};
|
|
908
|
-
readonly selectFirstItemOnExpand: {
|
|
909
|
-
readonly type: "boolean";
|
|
910
|
-
};
|
|
911
|
-
readonly flatten: {
|
|
912
|
-
readonly type: "boolean";
|
|
913
|
-
};
|
|
914
|
-
readonly linkedSidebars: {
|
|
915
|
-
readonly type: "array";
|
|
916
|
-
readonly items: {
|
|
917
|
-
readonly type: "string";
|
|
918
|
-
};
|
|
919
|
-
};
|
|
920
|
-
};
|
|
921
|
-
readonly type: "object";
|
|
922
|
-
};
|
|
923
|
-
};
|
|
924
|
-
readonly copyrightText: {
|
|
925
|
-
readonly type: "string";
|
|
926
|
-
};
|
|
927
|
-
readonly logo: {
|
|
928
|
-
readonly type: "object";
|
|
929
|
-
readonly properties: {
|
|
930
|
-
readonly hide: {
|
|
931
|
-
readonly type: "boolean";
|
|
932
|
-
};
|
|
933
|
-
};
|
|
934
|
-
readonly additionalProperties: false;
|
|
935
|
-
};
|
|
936
|
-
};
|
|
937
|
-
readonly additionalProperties: false;
|
|
938
|
-
};
|
|
939
|
-
readonly sidebar: {
|
|
940
|
-
readonly type: "object";
|
|
941
|
-
readonly properties: {
|
|
942
|
-
readonly hide: {
|
|
943
|
-
readonly type: "boolean";
|
|
944
|
-
};
|
|
945
|
-
readonly separatorLine: {
|
|
946
|
-
readonly type: "boolean";
|
|
947
|
-
};
|
|
948
|
-
readonly linePosition: {
|
|
949
|
-
readonly type: "string";
|
|
950
|
-
readonly enum: readonly ["top", "bottom"];
|
|
951
|
-
readonly default: "bottom";
|
|
952
|
-
};
|
|
953
|
-
};
|
|
954
|
-
readonly additionalProperties: false;
|
|
955
|
-
};
|
|
956
|
-
readonly scripts: {
|
|
957
|
-
readonly type: "object";
|
|
958
|
-
readonly properties: {
|
|
959
|
-
readonly head: {
|
|
960
|
-
readonly type: "array";
|
|
961
|
-
readonly items: {
|
|
962
|
-
readonly type: "object";
|
|
963
|
-
readonly properties: {
|
|
964
|
-
readonly src: {
|
|
965
|
-
readonly type: "string";
|
|
966
|
-
};
|
|
967
|
-
readonly async: {
|
|
968
|
-
readonly type: "boolean";
|
|
969
|
-
};
|
|
970
|
-
readonly crossorigin: {
|
|
971
|
-
readonly type: "string";
|
|
972
|
-
};
|
|
973
|
-
readonly defer: {
|
|
974
|
-
readonly type: "boolean";
|
|
975
|
-
};
|
|
976
|
-
readonly fetchpriority: {
|
|
977
|
-
readonly type: "string";
|
|
978
|
-
};
|
|
979
|
-
readonly integrity: {
|
|
980
|
-
readonly type: "string";
|
|
981
|
-
};
|
|
982
|
-
readonly module: {
|
|
983
|
-
readonly type: "boolean";
|
|
984
|
-
};
|
|
985
|
-
readonly nomodule: {
|
|
986
|
-
readonly type: "boolean";
|
|
987
|
-
};
|
|
988
|
-
readonly nonce: {
|
|
989
|
-
readonly type: "string";
|
|
990
|
-
};
|
|
991
|
-
readonly referrerpolicy: {
|
|
992
|
-
readonly type: "string";
|
|
993
|
-
};
|
|
994
|
-
readonly type: {
|
|
995
|
-
readonly type: "string";
|
|
996
|
-
};
|
|
997
|
-
};
|
|
998
|
-
readonly required: readonly ["src"];
|
|
999
|
-
readonly additionalProperties: true;
|
|
1000
|
-
};
|
|
1001
|
-
};
|
|
1002
|
-
readonly body: {
|
|
1003
|
-
readonly type: "array";
|
|
1004
|
-
readonly items: {
|
|
1005
|
-
readonly type: "object";
|
|
1006
|
-
readonly properties: {
|
|
1007
|
-
readonly src: {
|
|
1008
|
-
readonly type: "string";
|
|
1009
|
-
};
|
|
1010
|
-
readonly async: {
|
|
1011
|
-
readonly type: "boolean";
|
|
1012
|
-
};
|
|
1013
|
-
readonly crossorigin: {
|
|
1014
|
-
readonly type: "string";
|
|
1015
|
-
};
|
|
1016
|
-
readonly defer: {
|
|
1017
|
-
readonly type: "boolean";
|
|
1018
|
-
};
|
|
1019
|
-
readonly fetchpriority: {
|
|
1020
|
-
readonly type: "string";
|
|
1021
|
-
};
|
|
1022
|
-
readonly integrity: {
|
|
1023
|
-
readonly type: "string";
|
|
1024
|
-
};
|
|
1025
|
-
readonly module: {
|
|
1026
|
-
readonly type: "boolean";
|
|
1027
|
-
};
|
|
1028
|
-
readonly nomodule: {
|
|
1029
|
-
readonly type: "boolean";
|
|
1030
|
-
};
|
|
1031
|
-
readonly nonce: {
|
|
1032
|
-
readonly type: "string";
|
|
1033
|
-
};
|
|
1034
|
-
readonly referrerpolicy: {
|
|
1035
|
-
readonly type: "string";
|
|
1036
|
-
};
|
|
1037
|
-
readonly type: {
|
|
1038
|
-
readonly type: "string";
|
|
1039
|
-
};
|
|
1040
|
-
};
|
|
1041
|
-
readonly required: readonly ["src"];
|
|
1042
|
-
readonly additionalProperties: true;
|
|
1043
|
-
};
|
|
1044
|
-
};
|
|
1045
|
-
};
|
|
1046
|
-
readonly additionalProperties: false;
|
|
1047
|
-
};
|
|
1048
|
-
readonly links: {
|
|
1049
|
-
readonly type: "array";
|
|
1050
|
-
readonly items: {
|
|
1051
|
-
readonly type: "object";
|
|
1052
|
-
readonly properties: {
|
|
1053
|
-
readonly href: {
|
|
1054
|
-
readonly type: "string";
|
|
1055
|
-
};
|
|
1056
|
-
readonly as: {
|
|
1057
|
-
readonly type: "string";
|
|
1058
|
-
};
|
|
1059
|
-
readonly crossorigin: {
|
|
1060
|
-
readonly type: "string";
|
|
1061
|
-
};
|
|
1062
|
-
readonly fetchpriority: {
|
|
1063
|
-
readonly type: "string";
|
|
1064
|
-
};
|
|
1065
|
-
readonly hreflang: {
|
|
1066
|
-
readonly type: "string";
|
|
1067
|
-
};
|
|
1068
|
-
readonly imagesizes: {
|
|
1069
|
-
readonly type: "string";
|
|
1070
|
-
};
|
|
1071
|
-
readonly imagesrcset: {
|
|
1072
|
-
readonly type: "string";
|
|
1073
|
-
};
|
|
1074
|
-
readonly integrity: {
|
|
1075
|
-
readonly type: "string";
|
|
1076
|
-
};
|
|
1077
|
-
readonly media: {
|
|
1078
|
-
readonly type: "string";
|
|
1079
|
-
};
|
|
1080
|
-
readonly prefetch: {
|
|
1081
|
-
readonly type: "string";
|
|
1082
|
-
};
|
|
1083
|
-
readonly referrerpolicy: {
|
|
1084
|
-
readonly type: "string";
|
|
1085
|
-
};
|
|
1086
|
-
readonly rel: {
|
|
1087
|
-
readonly type: "string";
|
|
1088
|
-
};
|
|
1089
|
-
readonly sizes: {
|
|
1090
|
-
readonly type: "string";
|
|
1091
|
-
};
|
|
1092
|
-
readonly title: {
|
|
1093
|
-
readonly type: "string";
|
|
1094
|
-
};
|
|
1095
|
-
readonly type: {
|
|
1096
|
-
readonly type: "string";
|
|
1097
|
-
};
|
|
1098
|
-
};
|
|
1099
|
-
readonly required: readonly ["href"];
|
|
1100
|
-
readonly additionalProperties: true;
|
|
1101
|
-
};
|
|
1102
|
-
};
|
|
1103
|
-
readonly feedback: {
|
|
1104
|
-
readonly type: "object";
|
|
1105
|
-
readonly properties: {
|
|
1106
|
-
readonly hide: {
|
|
1107
|
-
readonly type: "boolean";
|
|
1108
|
-
readonly default: false;
|
|
1109
|
-
};
|
|
1110
|
-
readonly type: {
|
|
1111
|
-
readonly type: "string";
|
|
1112
|
-
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
1113
|
-
readonly default: "sentiment";
|
|
1114
|
-
};
|
|
1115
|
-
readonly settings: {
|
|
1116
|
-
readonly hide: {
|
|
1117
|
-
readonly type: "boolean";
|
|
1118
|
-
};
|
|
1119
|
-
readonly type: "object";
|
|
1120
|
-
readonly properties: {
|
|
1121
|
-
readonly label: {
|
|
1122
|
-
readonly type: "string";
|
|
1123
|
-
};
|
|
1124
|
-
readonly submitText: {
|
|
1125
|
-
readonly type: "string";
|
|
1126
|
-
};
|
|
1127
|
-
readonly buttonText: {
|
|
1128
|
-
readonly type: "string";
|
|
1129
|
-
};
|
|
1130
|
-
readonly component: {
|
|
1131
|
-
readonly type: "string";
|
|
1132
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
1133
|
-
readonly default: "checkbox";
|
|
1134
|
-
};
|
|
1135
|
-
readonly items: {
|
|
1136
|
-
readonly type: "array";
|
|
1137
|
-
readonly items: {
|
|
1138
|
-
readonly type: "string";
|
|
1139
|
-
};
|
|
1140
|
-
readonly minItems: 1;
|
|
1141
|
-
};
|
|
1142
|
-
readonly leftScaleLabel: {
|
|
1143
|
-
readonly type: "string";
|
|
1144
|
-
};
|
|
1145
|
-
readonly rightScaleLabel: {
|
|
1146
|
-
readonly type: "string";
|
|
1147
|
-
};
|
|
1148
|
-
readonly reasons: {
|
|
1149
|
-
readonly type: "object";
|
|
1150
|
-
readonly properties: {
|
|
1151
|
-
readonly hide: {
|
|
1152
|
-
readonly type: "boolean";
|
|
1153
|
-
readonly default: false;
|
|
1154
|
-
};
|
|
1155
|
-
readonly component: {
|
|
1156
|
-
readonly type: "string";
|
|
1157
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
1158
|
-
readonly default: "checkbox";
|
|
1159
|
-
};
|
|
1160
|
-
readonly label: {
|
|
1161
|
-
readonly type: "string";
|
|
1162
|
-
};
|
|
1163
|
-
readonly items: {
|
|
1164
|
-
readonly type: "array";
|
|
1165
|
-
readonly items: {
|
|
1166
|
-
readonly type: "string";
|
|
1167
|
-
};
|
|
1168
|
-
};
|
|
1169
|
-
};
|
|
1170
|
-
readonly additionalProperties: false;
|
|
1171
|
-
};
|
|
1172
|
-
readonly comment: {
|
|
1173
|
-
readonly type: "object";
|
|
1174
|
-
readonly properties: {
|
|
1175
|
-
readonly hide: {
|
|
1176
|
-
readonly type: "boolean";
|
|
1177
|
-
readonly default: false;
|
|
1178
|
-
};
|
|
1179
|
-
readonly label: {
|
|
1180
|
-
readonly type: "string";
|
|
1181
|
-
};
|
|
1182
|
-
readonly likeLabel: {
|
|
1183
|
-
readonly type: "string";
|
|
1184
|
-
};
|
|
1185
|
-
readonly dislikeLabel: {
|
|
1186
|
-
readonly type: "string";
|
|
1187
|
-
};
|
|
1188
|
-
readonly satisfiedLabel: {
|
|
1189
|
-
readonly type: "string";
|
|
1190
|
-
};
|
|
1191
|
-
readonly neutralLabel: {
|
|
1192
|
-
readonly type: "string";
|
|
1193
|
-
};
|
|
1194
|
-
readonly dissatisfiedLabel: {
|
|
1195
|
-
readonly type: "string";
|
|
1196
|
-
};
|
|
1197
|
-
};
|
|
1198
|
-
readonly additionalProperties: false;
|
|
1199
|
-
};
|
|
1200
|
-
};
|
|
1201
|
-
readonly additionalProperties: false;
|
|
1202
|
-
};
|
|
1203
|
-
};
|
|
1204
|
-
readonly additionalProperties: false;
|
|
1205
|
-
readonly default: {};
|
|
1206
|
-
};
|
|
1207
|
-
readonly search: {
|
|
1208
|
-
readonly type: "object";
|
|
1209
|
-
readonly properties: {
|
|
1210
|
-
readonly hide: {
|
|
1211
|
-
readonly type: "boolean";
|
|
1212
|
-
};
|
|
1213
|
-
readonly placement: {
|
|
1214
|
-
readonly type: "string";
|
|
1215
|
-
readonly default: "navbar";
|
|
1216
|
-
};
|
|
1217
|
-
readonly shortcuts: {
|
|
1218
|
-
readonly type: "array";
|
|
1219
|
-
readonly items: {
|
|
1220
|
-
readonly type: "string";
|
|
1221
|
-
};
|
|
1222
|
-
readonly default: readonly ["/"];
|
|
1223
|
-
};
|
|
1224
|
-
readonly suggestedPages: {
|
|
1225
|
-
readonly type: "array";
|
|
1226
|
-
readonly items: {
|
|
1227
|
-
readonly type: "object";
|
|
1228
|
-
readonly properties: {
|
|
1229
|
-
readonly page: {
|
|
1230
|
-
readonly type: "string";
|
|
1231
|
-
};
|
|
1232
|
-
readonly label: {
|
|
1233
|
-
readonly type: "string";
|
|
1234
|
-
};
|
|
1235
|
-
readonly labelTranslationKey: {
|
|
1236
|
-
readonly type: "string";
|
|
1237
|
-
};
|
|
1238
|
-
};
|
|
1239
|
-
readonly required: readonly ["page"];
|
|
1240
|
-
};
|
|
1241
|
-
};
|
|
1242
|
-
};
|
|
1243
|
-
readonly additionalProperties: false;
|
|
1244
|
-
readonly default: {};
|
|
1245
|
-
};
|
|
1246
|
-
readonly colorMode: {
|
|
1247
|
-
readonly type: "object";
|
|
1248
|
-
readonly properties: {
|
|
1249
|
-
readonly hide: {
|
|
1250
|
-
readonly type: "boolean";
|
|
1251
|
-
};
|
|
1252
|
-
readonly ignoreDetection: {
|
|
1253
|
-
readonly type: "boolean";
|
|
1254
|
-
};
|
|
1255
|
-
readonly modes: {
|
|
1256
|
-
readonly type: "array";
|
|
1257
|
-
readonly items: {
|
|
1258
|
-
readonly type: "string";
|
|
1259
|
-
};
|
|
1260
|
-
readonly default: readonly ["light", "dark"];
|
|
1261
|
-
};
|
|
1262
|
-
};
|
|
1263
|
-
readonly additionalProperties: false;
|
|
1264
|
-
readonly default: {};
|
|
1265
|
-
};
|
|
1266
|
-
readonly navigation: {
|
|
1267
|
-
readonly type: "object";
|
|
1268
|
-
readonly properties: {
|
|
1269
|
-
readonly nextButton: {
|
|
1270
|
-
readonly type: "object";
|
|
1271
|
-
readonly properties: {
|
|
1272
|
-
readonly hide: {
|
|
1273
|
-
readonly type: "boolean";
|
|
1274
|
-
};
|
|
1275
|
-
readonly text: {
|
|
1276
|
-
readonly type: "string";
|
|
1277
|
-
readonly default: "Next to {{label}}";
|
|
1278
|
-
};
|
|
1279
|
-
};
|
|
1280
|
-
readonly additionalProperties: false;
|
|
1281
|
-
readonly default: {};
|
|
1282
|
-
};
|
|
1283
|
-
readonly previousButton: {
|
|
1284
|
-
readonly type: "object";
|
|
1285
|
-
readonly properties: {
|
|
1286
|
-
readonly hide: {
|
|
1287
|
-
readonly type: "boolean";
|
|
1288
|
-
};
|
|
1289
|
-
readonly text: {
|
|
1290
|
-
readonly type: "string";
|
|
1291
|
-
readonly default: "Back to {{label}}";
|
|
1292
|
-
};
|
|
1293
|
-
};
|
|
1294
|
-
readonly additionalProperties: false;
|
|
1295
|
-
readonly default: {};
|
|
1296
|
-
};
|
|
1297
|
-
};
|
|
1298
|
-
readonly additionalProperties: false;
|
|
1299
|
-
readonly default: {};
|
|
1300
|
-
};
|
|
1301
|
-
readonly codeSnippet: {
|
|
1302
|
-
readonly type: "object";
|
|
1303
|
-
readonly properties: {
|
|
1304
|
-
readonly elementFormat: {
|
|
1305
|
-
readonly type: "string";
|
|
1306
|
-
readonly default: "icon";
|
|
1307
|
-
};
|
|
1308
|
-
readonly copy: {
|
|
1309
|
-
readonly type: "object";
|
|
1310
|
-
readonly properties: {
|
|
1311
|
-
readonly hide: {
|
|
1312
|
-
readonly type: "boolean";
|
|
1313
|
-
};
|
|
1314
|
-
};
|
|
1315
|
-
readonly additionalProperties: false;
|
|
1316
|
-
readonly default: {
|
|
1317
|
-
readonly hide: false;
|
|
1318
|
-
};
|
|
1319
|
-
};
|
|
1320
|
-
readonly report: {
|
|
1321
|
-
readonly type: "object";
|
|
1322
|
-
readonly properties: {
|
|
1323
|
-
readonly hide: {
|
|
1324
|
-
readonly type: "boolean";
|
|
1325
|
-
};
|
|
1326
|
-
readonly tooltipText: {
|
|
1327
|
-
readonly type: "string";
|
|
1328
|
-
};
|
|
1329
|
-
readonly buttonText: {
|
|
1330
|
-
readonly type: "string";
|
|
1331
|
-
};
|
|
1332
|
-
readonly label: {
|
|
1333
|
-
readonly type: "string";
|
|
1334
|
-
};
|
|
1335
|
-
};
|
|
1336
|
-
readonly additionalProperties: false;
|
|
1337
|
-
readonly default: {
|
|
1338
|
-
readonly hide: false;
|
|
1339
|
-
};
|
|
1340
|
-
};
|
|
1341
|
-
readonly expand: {
|
|
1342
|
-
readonly type: "object";
|
|
1343
|
-
readonly properties: {
|
|
1344
|
-
readonly hide: {
|
|
1345
|
-
readonly type: "boolean";
|
|
1346
|
-
};
|
|
1347
|
-
};
|
|
1348
|
-
readonly additionalProperties: false;
|
|
1349
|
-
readonly default: {
|
|
1350
|
-
readonly hide: false;
|
|
1351
|
-
};
|
|
1352
|
-
};
|
|
1353
|
-
readonly collapse: {
|
|
1354
|
-
readonly type: "object";
|
|
1355
|
-
readonly properties: {
|
|
1356
|
-
readonly hide: {
|
|
1357
|
-
readonly type: "boolean";
|
|
1358
|
-
};
|
|
1359
|
-
};
|
|
1360
|
-
readonly additionalProperties: false;
|
|
1361
|
-
readonly default: {
|
|
1362
|
-
readonly hide: false;
|
|
1363
|
-
};
|
|
1364
|
-
};
|
|
1365
|
-
};
|
|
1366
|
-
readonly additionalProperties: false;
|
|
1367
|
-
readonly default: {};
|
|
1368
|
-
};
|
|
1369
|
-
readonly markdown: {
|
|
1370
|
-
readonly type: "object";
|
|
1371
|
-
readonly properties: {
|
|
1372
|
-
readonly frontMatterKeysToResolve: {
|
|
1373
|
-
readonly type: "array";
|
|
1374
|
-
readonly items: {
|
|
1375
|
-
readonly type: "string";
|
|
1376
|
-
};
|
|
1377
|
-
readonly default: readonly ["image", "links"];
|
|
1378
|
-
};
|
|
1379
|
-
readonly partialsFolders: {
|
|
1380
|
-
readonly type: "array";
|
|
1381
|
-
readonly items: {
|
|
1382
|
-
readonly type: "string";
|
|
1383
|
-
};
|
|
1384
|
-
readonly default: readonly ["_partials"];
|
|
1385
|
-
};
|
|
1386
|
-
readonly lastUpdatedBlock: {
|
|
1387
|
-
readonly type: "object";
|
|
1388
|
-
readonly properties: {
|
|
1389
|
-
readonly hide: {
|
|
1390
|
-
readonly type: "boolean";
|
|
1391
|
-
};
|
|
1392
|
-
readonly format: {
|
|
1393
|
-
readonly type: "string";
|
|
1394
|
-
readonly enum: readonly ["timeago", "iso", "long", "short"];
|
|
1395
|
-
readonly default: "timeago";
|
|
1396
|
-
};
|
|
1397
|
-
readonly locale: {
|
|
1398
|
-
readonly type: "string";
|
|
1399
|
-
};
|
|
1400
|
-
};
|
|
1401
|
-
readonly additionalProperties: false;
|
|
1402
|
-
readonly default: {};
|
|
1403
|
-
};
|
|
1404
|
-
readonly toc: {
|
|
1405
|
-
readonly type: "object";
|
|
1406
|
-
readonly properties: {
|
|
1407
|
-
readonly hide: {
|
|
1408
|
-
readonly type: "boolean";
|
|
1409
|
-
};
|
|
1410
|
-
readonly header: {
|
|
1411
|
-
readonly type: "string";
|
|
1412
|
-
readonly default: "On this page";
|
|
1413
|
-
};
|
|
1414
|
-
readonly depth: {
|
|
1415
|
-
readonly type: "integer";
|
|
1416
|
-
readonly default: 3;
|
|
1417
|
-
readonly minimum: 1;
|
|
1418
|
-
};
|
|
1419
|
-
};
|
|
1420
|
-
readonly additionalProperties: false;
|
|
1421
|
-
readonly default: {};
|
|
1422
|
-
};
|
|
1423
|
-
readonly editPage: {
|
|
1424
|
-
readonly type: "object";
|
|
1425
|
-
readonly properties: {
|
|
1426
|
-
readonly hide: {
|
|
1427
|
-
readonly type: "boolean";
|
|
1428
|
-
};
|
|
1429
|
-
readonly baseUrl: {
|
|
1430
|
-
readonly type: "string";
|
|
1431
|
-
};
|
|
1432
|
-
};
|
|
1433
|
-
readonly additionalProperties: false;
|
|
1434
|
-
readonly default: {};
|
|
1435
|
-
};
|
|
1436
|
-
};
|
|
1437
|
-
readonly additionalProperties: false;
|
|
1438
|
-
readonly default: {};
|
|
1439
|
-
};
|
|
1440
|
-
readonly openapi: {
|
|
1441
|
-
readonly type: "object";
|
|
1442
|
-
readonly additionalProperties: true;
|
|
1443
|
-
};
|
|
1444
|
-
readonly graphql: {
|
|
1445
|
-
readonly type: "object";
|
|
1446
|
-
readonly additionalProperties: true;
|
|
1447
|
-
};
|
|
1448
|
-
readonly analytics: {
|
|
1449
|
-
readonly type: "object";
|
|
1450
|
-
readonly properties: {
|
|
1451
|
-
readonly adobe: {
|
|
1452
|
-
readonly type: "object";
|
|
1453
|
-
readonly properties: {
|
|
1454
|
-
readonly includeInDevelopment: {
|
|
1455
|
-
readonly type: "boolean";
|
|
1456
|
-
};
|
|
1457
|
-
readonly scriptUrl: {
|
|
1458
|
-
readonly type: "string";
|
|
1459
|
-
};
|
|
1460
|
-
readonly pageViewEventName: {
|
|
1461
|
-
readonly type: "string";
|
|
1462
|
-
};
|
|
1463
|
-
};
|
|
1464
|
-
readonly additionalProperties: false;
|
|
1465
|
-
readonly required: readonly ["scriptUrl"];
|
|
1466
|
-
};
|
|
1467
|
-
readonly amplitude: {
|
|
1468
|
-
readonly type: "object";
|
|
1469
|
-
readonly properties: {
|
|
1470
|
-
readonly includeInDevelopment: {
|
|
1471
|
-
readonly type: "boolean";
|
|
1472
|
-
};
|
|
1473
|
-
readonly apiKey: {
|
|
1474
|
-
readonly type: "string";
|
|
1475
|
-
};
|
|
1476
|
-
readonly head: {
|
|
1477
|
-
readonly type: "boolean";
|
|
1478
|
-
};
|
|
1479
|
-
readonly respectDNT: {
|
|
1480
|
-
readonly type: "boolean";
|
|
1481
|
-
};
|
|
1482
|
-
readonly exclude: {
|
|
1483
|
-
readonly type: "array";
|
|
1484
|
-
readonly items: {
|
|
1485
|
-
readonly type: "string";
|
|
1486
|
-
};
|
|
1487
|
-
};
|
|
1488
|
-
readonly outboundClickEventName: {
|
|
1489
|
-
readonly type: "string";
|
|
1490
|
-
};
|
|
1491
|
-
readonly pageViewEventName: {
|
|
1492
|
-
readonly type: "string";
|
|
1493
|
-
};
|
|
1494
|
-
readonly amplitudeConfig: {
|
|
1495
|
-
readonly type: "object";
|
|
1496
|
-
readonly additionalProperties: true;
|
|
1497
|
-
};
|
|
1498
|
-
};
|
|
1499
|
-
readonly additionalProperties: false;
|
|
1500
|
-
readonly required: readonly ["apiKey"];
|
|
1501
|
-
};
|
|
1502
|
-
readonly fullstory: {
|
|
1503
|
-
readonly type: "object";
|
|
1504
|
-
readonly properties: {
|
|
1505
|
-
readonly includeInDevelopment: {
|
|
1506
|
-
readonly type: "boolean";
|
|
1507
|
-
};
|
|
1508
|
-
readonly orgId: {
|
|
1509
|
-
readonly type: "string";
|
|
1510
|
-
};
|
|
1511
|
-
};
|
|
1512
|
-
readonly additionalProperties: false;
|
|
1513
|
-
readonly required: readonly ["orgId"];
|
|
1514
|
-
};
|
|
1515
|
-
readonly heap: {
|
|
1516
|
-
readonly type: "object";
|
|
1517
|
-
readonly properties: {
|
|
1518
|
-
readonly includeInDevelopment: {
|
|
1519
|
-
readonly type: "boolean";
|
|
1520
|
-
};
|
|
1521
|
-
readonly appId: {
|
|
1522
|
-
readonly type: "string";
|
|
1523
|
-
};
|
|
1524
|
-
};
|
|
1525
|
-
readonly additionalProperties: false;
|
|
1526
|
-
readonly required: readonly ["appId"];
|
|
1527
|
-
};
|
|
1528
|
-
readonly rudderstack: {
|
|
1529
|
-
readonly type: "object";
|
|
1530
|
-
readonly properties: {
|
|
1531
|
-
readonly includeInDevelopment: {
|
|
1532
|
-
readonly type: "boolean";
|
|
1533
|
-
};
|
|
1534
|
-
readonly writeKey: {
|
|
1535
|
-
readonly type: "string";
|
|
1536
|
-
readonly minLength: 10;
|
|
1537
|
-
};
|
|
1538
|
-
readonly trackPage: {
|
|
1539
|
-
readonly type: "boolean";
|
|
1540
|
-
};
|
|
1541
|
-
readonly dataPlaneUrl: {
|
|
1542
|
-
readonly type: "string";
|
|
1543
|
-
};
|
|
1544
|
-
readonly controlPlaneUrl: {
|
|
1545
|
-
readonly type: "string";
|
|
1546
|
-
};
|
|
1547
|
-
readonly sdkUrl: {
|
|
1548
|
-
readonly type: "string";
|
|
1549
|
-
};
|
|
1550
|
-
readonly loadOptions: {
|
|
1551
|
-
readonly type: "object";
|
|
1552
|
-
readonly additionalProperties: true;
|
|
1553
|
-
};
|
|
1554
|
-
};
|
|
1555
|
-
readonly additionalProperties: false;
|
|
1556
|
-
readonly required: readonly ["writeKey"];
|
|
1557
|
-
};
|
|
1558
|
-
readonly segment: {
|
|
1559
|
-
readonly type: "object";
|
|
1560
|
-
readonly properties: {
|
|
1561
|
-
readonly includeInDevelopment: {
|
|
1562
|
-
readonly type: "boolean";
|
|
1563
|
-
};
|
|
1564
|
-
readonly writeKey: {
|
|
1565
|
-
readonly type: "string";
|
|
1566
|
-
readonly minLength: 10;
|
|
1567
|
-
};
|
|
1568
|
-
readonly trackPage: {
|
|
1569
|
-
readonly type: "boolean";
|
|
1570
|
-
};
|
|
1571
|
-
readonly includeTitleInPageCall: {
|
|
1572
|
-
readonly type: "boolean";
|
|
1573
|
-
};
|
|
1574
|
-
readonly host: {
|
|
1575
|
-
readonly type: "string";
|
|
1576
|
-
};
|
|
1577
|
-
};
|
|
1578
|
-
readonly additionalProperties: false;
|
|
1579
|
-
readonly required: readonly ["writeKey"];
|
|
1580
|
-
};
|
|
1581
|
-
readonly gtm: {
|
|
1582
|
-
readonly type: "object";
|
|
1583
|
-
readonly properties: {
|
|
1584
|
-
readonly includeInDevelopment: {
|
|
1585
|
-
readonly type: "boolean";
|
|
1586
|
-
};
|
|
1587
|
-
readonly trackingId: {
|
|
1588
|
-
readonly type: "string";
|
|
1589
|
-
};
|
|
1590
|
-
readonly gtmAuth: {
|
|
1591
|
-
readonly type: "string";
|
|
1592
|
-
};
|
|
1593
|
-
readonly gtmPreview: {
|
|
1594
|
-
readonly type: "string";
|
|
1595
|
-
};
|
|
1596
|
-
readonly defaultDataLayer: {};
|
|
1597
|
-
readonly dataLayerName: {
|
|
1598
|
-
readonly type: "string";
|
|
1599
|
-
};
|
|
1600
|
-
readonly enableWebVitalsTracking: {
|
|
1601
|
-
readonly type: "boolean";
|
|
1602
|
-
};
|
|
1603
|
-
readonly selfHostedOrigin: {
|
|
1604
|
-
readonly type: "string";
|
|
1605
|
-
};
|
|
1606
|
-
readonly pageViewEventName: {
|
|
1607
|
-
readonly type: "string";
|
|
1608
|
-
};
|
|
1609
|
-
};
|
|
1610
|
-
readonly additionalProperties: false;
|
|
1611
|
-
readonly required: readonly ["trackingId"];
|
|
1612
|
-
};
|
|
1613
|
-
readonly ga: {
|
|
1614
|
-
readonly type: "object";
|
|
1615
|
-
readonly properties: {
|
|
1616
|
-
readonly includeInDevelopment: {
|
|
1617
|
-
readonly type: "boolean";
|
|
1618
|
-
};
|
|
1619
|
-
readonly trackingId: {
|
|
1620
|
-
readonly type: "string";
|
|
1621
|
-
};
|
|
1622
|
-
readonly conversionId: {
|
|
1623
|
-
readonly type: "string";
|
|
1624
|
-
};
|
|
1625
|
-
readonly floodlightId: {
|
|
1626
|
-
readonly type: "string";
|
|
1627
|
-
};
|
|
1628
|
-
readonly head: {
|
|
1629
|
-
readonly type: "boolean";
|
|
1630
|
-
};
|
|
1631
|
-
readonly respectDNT: {
|
|
1632
|
-
readonly type: "boolean";
|
|
1633
|
-
};
|
|
1634
|
-
readonly exclude: {
|
|
1635
|
-
readonly type: "array";
|
|
1636
|
-
readonly items: {
|
|
1637
|
-
readonly type: "string";
|
|
1638
|
-
};
|
|
1639
|
-
};
|
|
1640
|
-
readonly optimizeId: {
|
|
1641
|
-
readonly type: "string";
|
|
1642
|
-
};
|
|
1643
|
-
readonly anonymizeIp: {
|
|
1644
|
-
readonly type: "boolean";
|
|
1645
|
-
};
|
|
1646
|
-
readonly cookieExpires: {
|
|
1647
|
-
readonly type: "number";
|
|
1648
|
-
};
|
|
1649
|
-
readonly trackers: {
|
|
1650
|
-
readonly type: "object";
|
|
1651
|
-
readonly additionalProperties: {
|
|
1652
|
-
readonly type: "object";
|
|
1653
|
-
readonly properties: {
|
|
1654
|
-
readonly includeInDevelopment: {
|
|
1655
|
-
readonly type: "boolean";
|
|
1656
|
-
};
|
|
1657
|
-
readonly trackingId: {
|
|
1658
|
-
readonly type: "string";
|
|
1659
|
-
};
|
|
1660
|
-
readonly conversionId: {
|
|
1661
|
-
readonly type: "string";
|
|
1662
|
-
};
|
|
1663
|
-
readonly floodlightId: {
|
|
1664
|
-
readonly type: "string";
|
|
1665
|
-
};
|
|
1666
|
-
readonly optimizeId: {
|
|
1667
|
-
readonly type: "string";
|
|
1668
|
-
};
|
|
1669
|
-
readonly exclude: {
|
|
1670
|
-
readonly type: "array";
|
|
1671
|
-
readonly items: {
|
|
1672
|
-
readonly type: "string";
|
|
1673
|
-
};
|
|
1674
|
-
};
|
|
1675
|
-
};
|
|
1676
|
-
readonly additionalProperties: false;
|
|
1677
|
-
readonly required: readonly ["trackingId"];
|
|
1678
|
-
};
|
|
1679
|
-
};
|
|
1680
|
-
};
|
|
1681
|
-
readonly additionalProperties: false;
|
|
1682
|
-
readonly required: readonly ["trackingId"];
|
|
1683
|
-
};
|
|
1684
|
-
};
|
|
1685
|
-
};
|
|
1686
|
-
readonly userProfile: {
|
|
1687
|
-
readonly type: "object";
|
|
1688
|
-
readonly properties: {
|
|
1689
|
-
readonly hide: {
|
|
1690
|
-
readonly type: "boolean";
|
|
1691
|
-
};
|
|
1692
|
-
readonly loginLabel: {
|
|
1693
|
-
readonly type: "string";
|
|
1694
|
-
readonly default: "Login";
|
|
1695
|
-
};
|
|
1696
|
-
readonly logoutLabel: {
|
|
1697
|
-
readonly type: "string";
|
|
1698
|
-
readonly default: "Logout";
|
|
1699
|
-
};
|
|
1700
|
-
readonly menu: {
|
|
1701
|
-
readonly type: "array";
|
|
1702
|
-
readonly items: {
|
|
1703
|
-
readonly type: "object";
|
|
1704
|
-
readonly properties: {
|
|
1705
|
-
readonly label: {
|
|
1706
|
-
readonly type: "string";
|
|
1707
|
-
};
|
|
1708
|
-
readonly external: {
|
|
1709
|
-
readonly type: "boolean";
|
|
1710
|
-
};
|
|
1711
|
-
readonly link: {
|
|
1712
|
-
readonly type: "string";
|
|
1713
|
-
};
|
|
1714
|
-
readonly separatorLine: {
|
|
1715
|
-
readonly type: "boolean";
|
|
1716
|
-
};
|
|
1717
|
-
};
|
|
1718
|
-
readonly additionalProperties: true;
|
|
1719
|
-
};
|
|
1720
|
-
readonly default: readonly [];
|
|
1721
|
-
};
|
|
1722
|
-
};
|
|
1723
|
-
readonly additionalProperties: false;
|
|
1724
|
-
readonly default: {};
|
|
1725
|
-
};
|
|
1726
|
-
readonly versionPicker: {
|
|
1727
|
-
readonly type: "object";
|
|
1728
|
-
readonly properties: {
|
|
1729
|
-
readonly hide: {
|
|
1730
|
-
readonly type: "boolean";
|
|
1731
|
-
};
|
|
1732
|
-
readonly showForUnversioned: {
|
|
1733
|
-
readonly type: "boolean";
|
|
1734
|
-
};
|
|
1735
|
-
};
|
|
1736
|
-
};
|
|
1737
|
-
readonly breadcrumbs: {
|
|
1738
|
-
readonly type: "object";
|
|
1739
|
-
readonly properties: {
|
|
1740
|
-
readonly hide: {
|
|
1741
|
-
readonly type: "boolean";
|
|
1742
|
-
};
|
|
1743
|
-
readonly prefixItems: {
|
|
1744
|
-
readonly type: "array";
|
|
1745
|
-
readonly items: {
|
|
1746
|
-
readonly type: "object";
|
|
1747
|
-
readonly properties: {
|
|
1748
|
-
readonly label: {
|
|
1749
|
-
readonly type: "string";
|
|
1750
|
-
};
|
|
1751
|
-
readonly labelTranslationKey: {
|
|
1752
|
-
readonly type: "string";
|
|
1753
|
-
};
|
|
1754
|
-
readonly page: {
|
|
1755
|
-
readonly type: "string";
|
|
1756
|
-
};
|
|
1757
|
-
};
|
|
1758
|
-
readonly additionalProperties: false;
|
|
1759
|
-
readonly default: {};
|
|
1760
|
-
};
|
|
1761
|
-
};
|
|
1762
|
-
};
|
|
1763
|
-
readonly additionalProperties: false;
|
|
1764
|
-
readonly default: {};
|
|
1765
|
-
};
|
|
1766
|
-
readonly catalog: {
|
|
1767
|
-
readonly type: "object";
|
|
1768
|
-
readonly patternProperties: {
|
|
1769
|
-
readonly '.*': {
|
|
1770
|
-
readonly type: "object";
|
|
1771
|
-
readonly additionalProperties: true;
|
|
1772
|
-
readonly required: readonly ["slug", "items"];
|
|
1773
|
-
readonly properties: {
|
|
1774
|
-
readonly slug: {
|
|
1775
|
-
readonly type: "string";
|
|
1776
|
-
};
|
|
1777
|
-
readonly filters: {
|
|
1778
|
-
readonly type: "array";
|
|
1779
|
-
readonly items: {
|
|
1780
|
-
readonly type: "object";
|
|
1781
|
-
readonly additionalProperties: false;
|
|
1782
|
-
readonly required: readonly ["title", "property"];
|
|
1783
|
-
readonly properties: {
|
|
1784
|
-
readonly type: {
|
|
1785
|
-
readonly type: "string";
|
|
1786
|
-
readonly enum: readonly ["select", "checkboxes", "date-range"];
|
|
1787
|
-
};
|
|
1788
|
-
readonly title: {
|
|
1789
|
-
readonly type: "string";
|
|
1790
|
-
};
|
|
1791
|
-
readonly titleTranslationKey: {
|
|
1792
|
-
readonly type: "string";
|
|
1793
|
-
};
|
|
1794
|
-
readonly property: {
|
|
1795
|
-
readonly type: "string";
|
|
1796
|
-
};
|
|
1797
|
-
readonly parentFilter: {
|
|
1798
|
-
readonly type: "string";
|
|
1799
|
-
};
|
|
1800
|
-
readonly valuesMapping: {
|
|
1801
|
-
readonly type: "object";
|
|
1802
|
-
readonly additionalProperties: {
|
|
1803
|
-
readonly type: "string";
|
|
1804
|
-
};
|
|
1805
|
-
};
|
|
1806
|
-
readonly missingCategoryName: {
|
|
1807
|
-
readonly type: "string";
|
|
1808
|
-
};
|
|
1809
|
-
readonly missingCategoryNameTranslationKey: {
|
|
1810
|
-
readonly type: "string";
|
|
1811
|
-
};
|
|
1812
|
-
readonly options: {
|
|
1813
|
-
readonly type: "array";
|
|
1814
|
-
readonly items: {
|
|
1815
|
-
readonly type: "string";
|
|
1816
|
-
};
|
|
1817
|
-
};
|
|
1818
|
-
};
|
|
1819
|
-
};
|
|
1820
|
-
};
|
|
1821
|
-
readonly groupByFirstFilter: {
|
|
1822
|
-
readonly type: "boolean";
|
|
1823
|
-
};
|
|
1824
|
-
readonly filterValuesCasing: {
|
|
1825
|
-
readonly type: "string";
|
|
1826
|
-
readonly enum: readonly ["sentence", "original", "lowercase", "uppercase"];
|
|
1827
|
-
};
|
|
1828
|
-
readonly items: {
|
|
1829
|
-
readonly type: "array";
|
|
1830
|
-
readonly items: {
|
|
1831
|
-
readonly properties: {
|
|
1832
|
-
readonly items: {
|
|
1833
|
-
readonly type: "array";
|
|
1834
|
-
readonly items: {
|
|
1835
|
-
readonly type: "object";
|
|
1836
|
-
readonly properties: {
|
|
1837
|
-
readonly page: {
|
|
1838
|
-
readonly type: "string";
|
|
1839
|
-
};
|
|
1840
|
-
readonly directory: {
|
|
1841
|
-
readonly type: "string";
|
|
1842
|
-
};
|
|
1843
|
-
readonly disconnect: {
|
|
1844
|
-
readonly type: "boolean";
|
|
1845
|
-
readonly default: false;
|
|
1846
|
-
};
|
|
1847
|
-
readonly group: {
|
|
1848
|
-
readonly type: "string";
|
|
1849
|
-
};
|
|
1850
|
-
readonly label: {
|
|
1851
|
-
readonly type: "string";
|
|
1852
|
-
};
|
|
1853
|
-
readonly separator: {
|
|
1854
|
-
readonly type: "string";
|
|
1855
|
-
};
|
|
1856
|
-
readonly separatorLine: {
|
|
1857
|
-
readonly type: "boolean";
|
|
1858
|
-
};
|
|
1859
|
-
readonly linePosition: {
|
|
1860
|
-
readonly type: "string";
|
|
1861
|
-
readonly enum: readonly ["top", "bottom"];
|
|
1862
|
-
readonly default: "top";
|
|
1863
|
-
};
|
|
1864
|
-
readonly version: {
|
|
1865
|
-
readonly type: "string";
|
|
1866
|
-
};
|
|
1867
|
-
readonly menuStyle: {
|
|
1868
|
-
readonly type: "string";
|
|
1869
|
-
readonly enum: readonly ["drilldown"];
|
|
1870
|
-
};
|
|
1871
|
-
readonly expanded: {
|
|
1872
|
-
readonly type: "string";
|
|
1873
|
-
readonly const: "always";
|
|
1874
|
-
};
|
|
1875
|
-
readonly selectFirstItemOnExpand: {
|
|
1876
|
-
readonly type: "boolean";
|
|
1877
|
-
};
|
|
1878
|
-
readonly flatten: {
|
|
1879
|
-
readonly type: "boolean";
|
|
1880
|
-
};
|
|
1881
|
-
readonly linkedSidebars: {
|
|
1882
|
-
readonly type: "array";
|
|
1883
|
-
readonly items: {
|
|
1884
|
-
readonly type: "string";
|
|
1885
|
-
};
|
|
1886
|
-
};
|
|
1887
|
-
};
|
|
1888
|
-
};
|
|
1889
|
-
};
|
|
1890
|
-
readonly page: {
|
|
1891
|
-
readonly type: "string";
|
|
1892
|
-
};
|
|
1893
|
-
readonly directory: {
|
|
1894
|
-
readonly type: "string";
|
|
1895
|
-
};
|
|
1896
|
-
readonly disconnect: {
|
|
1897
|
-
readonly type: "boolean";
|
|
1898
|
-
readonly default: false;
|
|
1899
|
-
};
|
|
1900
|
-
readonly group: {
|
|
1901
|
-
readonly type: "string";
|
|
1902
|
-
};
|
|
1903
|
-
readonly label: {
|
|
1904
|
-
readonly type: "string";
|
|
1905
|
-
};
|
|
1906
|
-
readonly separator: {
|
|
1907
|
-
readonly type: "string";
|
|
1908
|
-
};
|
|
1909
|
-
readonly separatorLine: {
|
|
1910
|
-
readonly type: "boolean";
|
|
1911
|
-
};
|
|
1912
|
-
readonly linePosition: {
|
|
1913
|
-
readonly type: "string";
|
|
1914
|
-
readonly enum: readonly ["top", "bottom"];
|
|
1915
|
-
readonly default: "top";
|
|
1916
|
-
};
|
|
1917
|
-
readonly version: {
|
|
1918
|
-
readonly type: "string";
|
|
1919
|
-
};
|
|
1920
|
-
readonly menuStyle: {
|
|
1921
|
-
readonly type: "string";
|
|
1922
|
-
readonly enum: readonly ["drilldown"];
|
|
1923
|
-
};
|
|
1924
|
-
readonly expanded: {
|
|
1925
|
-
readonly type: "string";
|
|
1926
|
-
readonly const: "always";
|
|
1927
|
-
};
|
|
1928
|
-
readonly selectFirstItemOnExpand: {
|
|
1929
|
-
readonly type: "boolean";
|
|
1930
|
-
};
|
|
1931
|
-
readonly flatten: {
|
|
1932
|
-
readonly type: "boolean";
|
|
1933
|
-
};
|
|
1934
|
-
readonly linkedSidebars: {
|
|
1935
|
-
readonly type: "array";
|
|
1936
|
-
readonly items: {
|
|
1937
|
-
readonly type: "string";
|
|
1938
|
-
};
|
|
1939
|
-
};
|
|
1940
|
-
};
|
|
1941
|
-
readonly type: "object";
|
|
1942
|
-
};
|
|
1943
|
-
};
|
|
1944
|
-
readonly requiredPermission: {
|
|
1945
|
-
readonly type: "string";
|
|
1946
|
-
};
|
|
1947
|
-
readonly separateVersions: {
|
|
1948
|
-
readonly type: "boolean";
|
|
1949
|
-
};
|
|
1950
|
-
readonly title: {
|
|
1951
|
-
readonly type: "string";
|
|
1952
|
-
};
|
|
1953
|
-
readonly titleTranslationKey: {
|
|
1954
|
-
readonly type: "string";
|
|
1955
|
-
};
|
|
1956
|
-
readonly description: {
|
|
1957
|
-
readonly type: "string";
|
|
1958
|
-
};
|
|
1959
|
-
readonly descriptionTranslationKey: {
|
|
1960
|
-
readonly type: "string";
|
|
1961
|
-
};
|
|
1962
|
-
};
|
|
1963
|
-
};
|
|
1964
|
-
};
|
|
1965
|
-
};
|
|
1966
|
-
readonly scorecard: {
|
|
1967
|
-
readonly type: "object";
|
|
1968
|
-
readonly additionalProperties: true;
|
|
1969
|
-
readonly required: readonly [];
|
|
1970
|
-
readonly properties: {
|
|
1971
|
-
readonly ignoreNonCompliant: {
|
|
1972
|
-
readonly type: "boolean";
|
|
1973
|
-
readonly default: false;
|
|
1974
|
-
};
|
|
1975
|
-
readonly teamMetadataProperty: {
|
|
1976
|
-
readonly type: "object";
|
|
1977
|
-
readonly properties: {
|
|
1978
|
-
readonly property: {
|
|
1979
|
-
readonly type: "string";
|
|
1980
|
-
};
|
|
1981
|
-
readonly label: {
|
|
1982
|
-
readonly type: "string";
|
|
1983
|
-
};
|
|
1984
|
-
readonly default: {
|
|
1985
|
-
readonly type: "string";
|
|
1986
|
-
};
|
|
1987
|
-
};
|
|
1988
|
-
};
|
|
1989
|
-
readonly levels: {
|
|
1990
|
-
readonly type: "array";
|
|
1991
|
-
readonly items: {
|
|
1992
|
-
readonly type: "object";
|
|
1993
|
-
readonly required: readonly ["name"];
|
|
1994
|
-
readonly properties: {
|
|
1995
|
-
readonly name: {
|
|
1996
|
-
readonly type: "string";
|
|
1997
|
-
};
|
|
1998
|
-
readonly color: {
|
|
1999
|
-
readonly type: "string";
|
|
2000
|
-
};
|
|
2001
|
-
readonly extends: {
|
|
2002
|
-
readonly type: "array";
|
|
2003
|
-
readonly items: {
|
|
2004
|
-
readonly type: "string";
|
|
2005
|
-
};
|
|
2006
|
-
};
|
|
2007
|
-
readonly rules: {
|
|
2008
|
-
readonly type: "object";
|
|
2009
|
-
readonly additionalProperties: {
|
|
2010
|
-
readonly oneOf: readonly [{
|
|
2011
|
-
readonly type: "string";
|
|
2012
|
-
}, {
|
|
2013
|
-
readonly type: "object";
|
|
2014
|
-
}];
|
|
2015
|
-
};
|
|
2016
|
-
};
|
|
2017
|
-
};
|
|
2018
|
-
readonly additionalProperties: false;
|
|
2019
|
-
};
|
|
2020
|
-
};
|
|
2021
|
-
readonly targets: {
|
|
2022
|
-
readonly type: "array";
|
|
2023
|
-
readonly items: {
|
|
2024
|
-
readonly type: "object";
|
|
2025
|
-
readonly required: readonly ["where"];
|
|
2026
|
-
readonly properties: {
|
|
2027
|
-
readonly minimumLevel: {
|
|
2028
|
-
readonly type: "string";
|
|
2029
|
-
};
|
|
2030
|
-
readonly where: {
|
|
2031
|
-
readonly type: "object";
|
|
2032
|
-
readonly required: readonly ["metadata"];
|
|
2033
|
-
readonly properties: {
|
|
2034
|
-
readonly metadata: {
|
|
2035
|
-
readonly type: "object";
|
|
2036
|
-
readonly additionalProperties: {
|
|
2037
|
-
readonly type: "string";
|
|
2038
|
-
};
|
|
2039
|
-
};
|
|
2040
|
-
};
|
|
2041
|
-
readonly additionalProperties: false;
|
|
2042
|
-
};
|
|
2043
|
-
};
|
|
2044
|
-
readonly additionalProperties: false;
|
|
2045
|
-
};
|
|
2046
|
-
};
|
|
2047
|
-
};
|
|
2048
|
-
};
|
|
2049
|
-
};
|
|
2050
|
-
readonly additionalProperties: true;
|
|
2051
|
-
readonly default: {};
|
|
2052
|
-
};
|
|
2053
|
-
export declare const productThemeOverrideSchema: {
|
|
2054
|
-
readonly type: "object";
|
|
2055
|
-
readonly properties: {
|
|
2056
|
-
readonly logo: {
|
|
2057
|
-
readonly type: "object";
|
|
2058
|
-
readonly properties: {
|
|
2059
|
-
readonly image: {
|
|
2060
|
-
readonly type: "string";
|
|
2061
|
-
};
|
|
2062
|
-
readonly srcSet: {
|
|
2063
|
-
readonly type: "string";
|
|
2064
|
-
};
|
|
2065
|
-
readonly altText: {
|
|
2066
|
-
readonly type: "string";
|
|
2067
|
-
};
|
|
2068
|
-
readonly link: {
|
|
2069
|
-
readonly type: "string";
|
|
2070
|
-
};
|
|
2071
|
-
readonly favicon: {
|
|
2072
|
-
readonly type: "string";
|
|
2073
|
-
};
|
|
2074
|
-
};
|
|
2075
|
-
readonly additionalProperties: false;
|
|
2076
|
-
};
|
|
2077
|
-
readonly navbar: {
|
|
2078
|
-
readonly type: "object";
|
|
2079
|
-
readonly properties: {
|
|
2080
|
-
readonly hide: {
|
|
2081
|
-
readonly type: "boolean";
|
|
2082
|
-
};
|
|
2083
|
-
readonly items: {
|
|
2084
|
-
readonly type: "array";
|
|
2085
|
-
readonly items: {
|
|
2086
|
-
readonly properties: {
|
|
2087
|
-
readonly items: {
|
|
2088
|
-
readonly type: "array";
|
|
2089
|
-
readonly items: {
|
|
2090
|
-
readonly type: "object";
|
|
2091
|
-
readonly properties: {
|
|
2092
|
-
readonly page: {
|
|
2093
|
-
readonly type: "string";
|
|
2094
|
-
};
|
|
2095
|
-
readonly directory: {
|
|
2096
|
-
readonly type: "string";
|
|
2097
|
-
};
|
|
2098
|
-
readonly disconnect: {
|
|
2099
|
-
readonly type: "boolean";
|
|
2100
|
-
readonly default: false;
|
|
2101
|
-
};
|
|
2102
|
-
readonly group: {
|
|
2103
|
-
readonly type: "string";
|
|
2104
|
-
};
|
|
2105
|
-
readonly label: {
|
|
2106
|
-
readonly type: "string";
|
|
2107
|
-
};
|
|
2108
|
-
readonly separator: {
|
|
2109
|
-
readonly type: "string";
|
|
2110
|
-
};
|
|
2111
|
-
readonly separatorLine: {
|
|
2112
|
-
readonly type: "boolean";
|
|
2113
|
-
};
|
|
2114
|
-
readonly linePosition: {
|
|
2115
|
-
readonly type: "string";
|
|
2116
|
-
readonly enum: readonly ["top", "bottom"];
|
|
2117
|
-
readonly default: "top";
|
|
2118
|
-
};
|
|
2119
|
-
readonly version: {
|
|
2120
|
-
readonly type: "string";
|
|
2121
|
-
};
|
|
2122
|
-
readonly menuStyle: {
|
|
2123
|
-
readonly type: "string";
|
|
2124
|
-
readonly enum: readonly ["drilldown"];
|
|
2125
|
-
};
|
|
2126
|
-
readonly expanded: {
|
|
2127
|
-
readonly type: "string";
|
|
2128
|
-
readonly const: "always";
|
|
2129
|
-
};
|
|
2130
|
-
readonly selectFirstItemOnExpand: {
|
|
2131
|
-
readonly type: "boolean";
|
|
2132
|
-
};
|
|
2133
|
-
readonly flatten: {
|
|
2134
|
-
readonly type: "boolean";
|
|
2135
|
-
};
|
|
2136
|
-
readonly linkedSidebars: {
|
|
2137
|
-
readonly type: "array";
|
|
2138
|
-
readonly items: {
|
|
2139
|
-
readonly type: "string";
|
|
2140
|
-
};
|
|
2141
|
-
};
|
|
2142
|
-
};
|
|
2143
|
-
};
|
|
2144
|
-
};
|
|
2145
|
-
readonly page: {
|
|
2146
|
-
readonly type: "string";
|
|
2147
|
-
};
|
|
2148
|
-
readonly directory: {
|
|
2149
|
-
readonly type: "string";
|
|
2150
|
-
};
|
|
2151
|
-
readonly disconnect: {
|
|
2152
|
-
readonly type: "boolean";
|
|
2153
|
-
readonly default: false;
|
|
2154
|
-
};
|
|
2155
|
-
readonly group: {
|
|
2156
|
-
readonly type: "string";
|
|
2157
|
-
};
|
|
2158
|
-
readonly label: {
|
|
2159
|
-
readonly type: "string";
|
|
2160
|
-
};
|
|
2161
|
-
readonly separator: {
|
|
2162
|
-
readonly type: "string";
|
|
2163
|
-
};
|
|
2164
|
-
readonly separatorLine: {
|
|
2165
|
-
readonly type: "boolean";
|
|
2166
|
-
};
|
|
2167
|
-
readonly linePosition: {
|
|
2168
|
-
readonly type: "string";
|
|
2169
|
-
readonly enum: readonly ["top", "bottom"];
|
|
2170
|
-
readonly default: "top";
|
|
2171
|
-
};
|
|
2172
|
-
readonly version: {
|
|
2173
|
-
readonly type: "string";
|
|
2174
|
-
};
|
|
2175
|
-
readonly menuStyle: {
|
|
2176
|
-
readonly type: "string";
|
|
2177
|
-
readonly enum: readonly ["drilldown"];
|
|
2178
|
-
};
|
|
2179
|
-
readonly expanded: {
|
|
2180
|
-
readonly type: "string";
|
|
2181
|
-
readonly const: "always";
|
|
2182
|
-
};
|
|
2183
|
-
readonly selectFirstItemOnExpand: {
|
|
2184
|
-
readonly type: "boolean";
|
|
2185
|
-
};
|
|
2186
|
-
readonly flatten: {
|
|
2187
|
-
readonly type: "boolean";
|
|
2188
|
-
};
|
|
2189
|
-
readonly linkedSidebars: {
|
|
2190
|
-
readonly type: "array";
|
|
2191
|
-
readonly items: {
|
|
2192
|
-
readonly type: "string";
|
|
2193
|
-
};
|
|
2194
|
-
};
|
|
2195
|
-
};
|
|
2196
|
-
readonly type: "object";
|
|
2197
|
-
};
|
|
2198
|
-
};
|
|
2199
|
-
};
|
|
2200
|
-
readonly additionalProperties: false;
|
|
2201
|
-
};
|
|
2202
|
-
readonly footer: {
|
|
2203
|
-
readonly type: "object";
|
|
2204
|
-
readonly properties: {
|
|
2205
|
-
readonly hide: {
|
|
2206
|
-
readonly type: "boolean";
|
|
2207
|
-
};
|
|
2208
|
-
readonly items: {
|
|
2209
|
-
readonly type: "array";
|
|
2210
|
-
readonly items: {
|
|
2211
|
-
readonly properties: {
|
|
2212
|
-
readonly items: {
|
|
2213
|
-
readonly type: "array";
|
|
2214
|
-
readonly items: {
|
|
2215
|
-
readonly type: "object";
|
|
2216
|
-
readonly properties: {
|
|
2217
|
-
readonly page: {
|
|
2218
|
-
readonly type: "string";
|
|
2219
|
-
};
|
|
2220
|
-
readonly directory: {
|
|
2221
|
-
readonly type: "string";
|
|
2222
|
-
};
|
|
2223
|
-
readonly disconnect: {
|
|
2224
|
-
readonly type: "boolean";
|
|
2225
|
-
readonly default: false;
|
|
2226
|
-
};
|
|
2227
|
-
readonly group: {
|
|
2228
|
-
readonly type: "string";
|
|
2229
|
-
};
|
|
2230
|
-
readonly label: {
|
|
2231
|
-
readonly type: "string";
|
|
2232
|
-
};
|
|
2233
|
-
readonly separator: {
|
|
2234
|
-
readonly type: "string";
|
|
2235
|
-
};
|
|
2236
|
-
readonly separatorLine: {
|
|
2237
|
-
readonly type: "boolean";
|
|
2238
|
-
};
|
|
2239
|
-
readonly linePosition: {
|
|
2240
|
-
readonly type: "string";
|
|
2241
|
-
readonly enum: readonly ["top", "bottom"];
|
|
2242
|
-
readonly default: "top";
|
|
2243
|
-
};
|
|
2244
|
-
readonly version: {
|
|
2245
|
-
readonly type: "string";
|
|
2246
|
-
};
|
|
2247
|
-
readonly menuStyle: {
|
|
2248
|
-
readonly type: "string";
|
|
2249
|
-
readonly enum: readonly ["drilldown"];
|
|
2250
|
-
};
|
|
2251
|
-
readonly expanded: {
|
|
2252
|
-
readonly type: "string";
|
|
2253
|
-
readonly const: "always";
|
|
2254
|
-
};
|
|
2255
|
-
readonly selectFirstItemOnExpand: {
|
|
2256
|
-
readonly type: "boolean";
|
|
2257
|
-
};
|
|
2258
|
-
readonly flatten: {
|
|
2259
|
-
readonly type: "boolean";
|
|
2260
|
-
};
|
|
2261
|
-
readonly linkedSidebars: {
|
|
2262
|
-
readonly type: "array";
|
|
2263
|
-
readonly items: {
|
|
2264
|
-
readonly type: "string";
|
|
2265
|
-
};
|
|
2266
|
-
};
|
|
2267
|
-
};
|
|
2268
|
-
};
|
|
2269
|
-
};
|
|
2270
|
-
readonly page: {
|
|
2271
|
-
readonly type: "string";
|
|
2272
|
-
};
|
|
2273
|
-
readonly directory: {
|
|
2274
|
-
readonly type: "string";
|
|
2275
|
-
};
|
|
2276
|
-
readonly disconnect: {
|
|
2277
|
-
readonly type: "boolean";
|
|
2278
|
-
readonly default: false;
|
|
2279
|
-
};
|
|
2280
|
-
readonly group: {
|
|
2281
|
-
readonly type: "string";
|
|
2282
|
-
};
|
|
2283
|
-
readonly label: {
|
|
2284
|
-
readonly type: "string";
|
|
2285
|
-
};
|
|
2286
|
-
readonly separator: {
|
|
2287
|
-
readonly type: "string";
|
|
2288
|
-
};
|
|
2289
|
-
readonly separatorLine: {
|
|
2290
|
-
readonly type: "boolean";
|
|
2291
|
-
};
|
|
2292
|
-
readonly linePosition: {
|
|
2293
|
-
readonly type: "string";
|
|
2294
|
-
readonly enum: readonly ["top", "bottom"];
|
|
2295
|
-
readonly default: "top";
|
|
2296
|
-
};
|
|
2297
|
-
readonly version: {
|
|
2298
|
-
readonly type: "string";
|
|
2299
|
-
};
|
|
2300
|
-
readonly menuStyle: {
|
|
2301
|
-
readonly type: "string";
|
|
2302
|
-
readonly enum: readonly ["drilldown"];
|
|
2303
|
-
};
|
|
2304
|
-
readonly expanded: {
|
|
2305
|
-
readonly type: "string";
|
|
2306
|
-
readonly const: "always";
|
|
2307
|
-
};
|
|
2308
|
-
readonly selectFirstItemOnExpand: {
|
|
2309
|
-
readonly type: "boolean";
|
|
2310
|
-
};
|
|
2311
|
-
readonly flatten: {
|
|
2312
|
-
readonly type: "boolean";
|
|
2313
|
-
};
|
|
2314
|
-
readonly linkedSidebars: {
|
|
2315
|
-
readonly type: "array";
|
|
2316
|
-
readonly items: {
|
|
2317
|
-
readonly type: "string";
|
|
2318
|
-
};
|
|
2319
|
-
};
|
|
2320
|
-
};
|
|
2321
|
-
readonly type: "object";
|
|
2322
|
-
};
|
|
2323
|
-
};
|
|
2324
|
-
readonly copyrightText: {
|
|
2325
|
-
readonly type: "string";
|
|
2326
|
-
};
|
|
2327
|
-
readonly logo: {
|
|
2328
|
-
readonly type: "object";
|
|
2329
|
-
readonly properties: {
|
|
2330
|
-
readonly hide: {
|
|
2331
|
-
readonly type: "boolean";
|
|
2332
|
-
};
|
|
2333
|
-
};
|
|
2334
|
-
readonly additionalProperties: false;
|
|
2335
|
-
};
|
|
2336
|
-
};
|
|
2337
|
-
readonly additionalProperties: false;
|
|
2338
|
-
};
|
|
2339
|
-
readonly sidebar: {
|
|
2340
|
-
readonly type: "object";
|
|
2341
|
-
readonly properties: {
|
|
2342
|
-
readonly hide: {
|
|
2343
|
-
readonly type: "boolean";
|
|
2344
|
-
};
|
|
2345
|
-
readonly separatorLine: {
|
|
2346
|
-
readonly type: "boolean";
|
|
2347
|
-
};
|
|
2348
|
-
readonly linePosition: {
|
|
2349
|
-
readonly type: "string";
|
|
2350
|
-
readonly enum: readonly ["top", "bottom"];
|
|
2351
|
-
readonly default: "bottom";
|
|
2352
|
-
};
|
|
2353
|
-
};
|
|
2354
|
-
readonly additionalProperties: false;
|
|
2355
|
-
};
|
|
2356
|
-
readonly search: {
|
|
2357
|
-
readonly type: "object";
|
|
2358
|
-
readonly properties: {
|
|
2359
|
-
readonly hide: {
|
|
2360
|
-
readonly type: "boolean";
|
|
2361
|
-
};
|
|
2362
|
-
readonly placement: {
|
|
2363
|
-
readonly type: "string";
|
|
2364
|
-
readonly default: "navbar";
|
|
2365
|
-
};
|
|
2366
|
-
readonly shortcuts: {
|
|
2367
|
-
readonly type: "array";
|
|
2368
|
-
readonly items: {
|
|
2369
|
-
readonly type: "string";
|
|
2370
|
-
};
|
|
2371
|
-
readonly default: readonly ["/"];
|
|
2372
|
-
};
|
|
2373
|
-
readonly suggestedPages: {
|
|
2374
|
-
readonly type: "array";
|
|
2375
|
-
readonly items: {
|
|
2376
|
-
readonly type: "object";
|
|
2377
|
-
readonly properties: {
|
|
2378
|
-
readonly page: {
|
|
2379
|
-
readonly type: "string";
|
|
2380
|
-
};
|
|
2381
|
-
readonly label: {
|
|
2382
|
-
readonly type: "string";
|
|
2383
|
-
};
|
|
2384
|
-
readonly labelTranslationKey: {
|
|
2385
|
-
readonly type: "string";
|
|
2386
|
-
};
|
|
2387
|
-
};
|
|
2388
|
-
readonly required: readonly ["page"];
|
|
2389
|
-
};
|
|
2390
|
-
};
|
|
2391
|
-
};
|
|
2392
|
-
readonly additionalProperties: false;
|
|
2393
|
-
readonly default: {};
|
|
2394
|
-
};
|
|
2395
|
-
readonly codeSnippet: {
|
|
2396
|
-
readonly type: "object";
|
|
2397
|
-
readonly properties: {
|
|
2398
|
-
readonly elementFormat: {
|
|
2399
|
-
readonly type: "string";
|
|
2400
|
-
readonly default: "icon";
|
|
2401
|
-
};
|
|
2402
|
-
readonly copy: {
|
|
2403
|
-
readonly type: "object";
|
|
2404
|
-
readonly properties: {
|
|
2405
|
-
readonly hide: {
|
|
2406
|
-
readonly type: "boolean";
|
|
2407
|
-
};
|
|
2408
|
-
};
|
|
2409
|
-
readonly additionalProperties: false;
|
|
2410
|
-
readonly default: {
|
|
2411
|
-
readonly hide: false;
|
|
2412
|
-
};
|
|
2413
|
-
};
|
|
2414
|
-
readonly report: {
|
|
2415
|
-
readonly type: "object";
|
|
2416
|
-
readonly properties: {
|
|
2417
|
-
readonly hide: {
|
|
2418
|
-
readonly type: "boolean";
|
|
2419
|
-
};
|
|
2420
|
-
readonly tooltipText: {
|
|
2421
|
-
readonly type: "string";
|
|
2422
|
-
};
|
|
2423
|
-
readonly buttonText: {
|
|
2424
|
-
readonly type: "string";
|
|
2425
|
-
};
|
|
2426
|
-
readonly label: {
|
|
2427
|
-
readonly type: "string";
|
|
2428
|
-
};
|
|
2429
|
-
};
|
|
2430
|
-
readonly additionalProperties: false;
|
|
2431
|
-
readonly default: {
|
|
2432
|
-
readonly hide: false;
|
|
2433
|
-
};
|
|
2434
|
-
};
|
|
2435
|
-
readonly expand: {
|
|
2436
|
-
readonly type: "object";
|
|
2437
|
-
readonly properties: {
|
|
2438
|
-
readonly hide: {
|
|
2439
|
-
readonly type: "boolean";
|
|
2440
|
-
};
|
|
2441
|
-
};
|
|
2442
|
-
readonly additionalProperties: false;
|
|
2443
|
-
readonly default: {
|
|
2444
|
-
readonly hide: false;
|
|
2445
|
-
};
|
|
2446
|
-
};
|
|
2447
|
-
readonly collapse: {
|
|
2448
|
-
readonly type: "object";
|
|
2449
|
-
readonly properties: {
|
|
2450
|
-
readonly hide: {
|
|
2451
|
-
readonly type: "boolean";
|
|
2452
|
-
};
|
|
2453
|
-
};
|
|
2454
|
-
readonly additionalProperties: false;
|
|
2455
|
-
readonly default: {
|
|
2456
|
-
readonly hide: false;
|
|
2457
|
-
};
|
|
2458
|
-
};
|
|
2459
|
-
};
|
|
2460
|
-
readonly additionalProperties: false;
|
|
2461
|
-
readonly default: {};
|
|
2462
|
-
};
|
|
2463
|
-
readonly breadcrumbs: {
|
|
2464
|
-
readonly type: "object";
|
|
2465
|
-
readonly properties: {
|
|
2466
|
-
readonly hide: {
|
|
2467
|
-
readonly type: "boolean";
|
|
2468
|
-
};
|
|
2469
|
-
readonly prefixItems: {
|
|
2470
|
-
readonly type: "array";
|
|
2471
|
-
readonly items: {
|
|
2472
|
-
readonly type: "object";
|
|
2473
|
-
readonly properties: {
|
|
2474
|
-
readonly label: {
|
|
2475
|
-
readonly type: "string";
|
|
2476
|
-
};
|
|
2477
|
-
readonly labelTranslationKey: {
|
|
2478
|
-
readonly type: "string";
|
|
2479
|
-
};
|
|
2480
|
-
readonly page: {
|
|
2481
|
-
readonly type: "string";
|
|
2482
|
-
};
|
|
2483
|
-
};
|
|
2484
|
-
readonly additionalProperties: false;
|
|
2485
|
-
readonly default: {};
|
|
2486
|
-
};
|
|
2487
|
-
};
|
|
2488
|
-
};
|
|
2489
|
-
readonly additionalProperties: false;
|
|
2490
|
-
readonly default: {};
|
|
2491
|
-
};
|
|
2492
|
-
readonly analytics: {
|
|
2493
|
-
readonly type: "object";
|
|
2494
|
-
readonly properties: {
|
|
2495
|
-
readonly ga: {
|
|
2496
|
-
readonly type: "object";
|
|
2497
|
-
readonly properties: {
|
|
2498
|
-
readonly includeInDevelopment: {
|
|
2499
|
-
readonly type: "boolean";
|
|
2500
|
-
};
|
|
2501
|
-
readonly trackingId: {
|
|
2502
|
-
readonly type: "string";
|
|
2503
|
-
};
|
|
2504
|
-
readonly conversionId: {
|
|
2505
|
-
readonly type: "string";
|
|
2506
|
-
};
|
|
2507
|
-
readonly floodlightId: {
|
|
2508
|
-
readonly type: "string";
|
|
2509
|
-
};
|
|
2510
|
-
readonly optimizeId: {
|
|
2511
|
-
readonly type: "string";
|
|
2512
|
-
};
|
|
2513
|
-
readonly exclude: {
|
|
2514
|
-
readonly type: "array";
|
|
2515
|
-
readonly items: {
|
|
2516
|
-
readonly type: "string";
|
|
2517
|
-
};
|
|
2518
|
-
};
|
|
2519
|
-
};
|
|
2520
|
-
readonly additionalProperties: false;
|
|
2521
|
-
readonly required: readonly ["trackingId"];
|
|
2522
|
-
};
|
|
2523
|
-
};
|
|
2524
|
-
};
|
|
2525
|
-
};
|
|
2526
|
-
readonly additionalProperties: true;
|
|
2527
|
-
readonly default: {};
|
|
2528
|
-
};
|
|
2529
|
-
export type ThemeConfig = FromSchema<typeof themeConfigSchema>;
|
|
2530
|
-
export type ProductConfig = FromSchema<typeof productConfigSchema>;
|
|
2531
|
-
export type ProductGoogleAnalyticsConfig = FromSchema<typeof productGoogleAnalyticsConfigSchema>;
|
|
2532
|
-
export type MarkdownConfig = FromSchema<typeof markdownConfigSchema>;
|
|
2533
|
-
export type AmplitudeAnalyticsConfig = FromSchema<typeof amplitudeAnalyticsConfigSchema>;
|
|
2534
|
-
export type RudderstackAnalyticsConfig = FromSchema<typeof rudderstackAnalyticsConfigSchema>;
|
|
2535
|
-
export type SegmentAnalyticsConfig = FromSchema<typeof segmentAnalyticsConfigSchema>;
|
|
2536
|
-
export type GtmAnalyticsConfig = FromSchema<typeof gtmAnalyticsConfigSchema>;
|
|
2537
|
-
export type GoogleAnalyticsConfig = FromSchema<typeof googleAnalyticsConfigSchema>;
|
|
2538
|
-
export type CatalogConfig = FromSchema<typeof catalogSchema>;
|
|
2539
|
-
export type CatalogFilterConfig = FromSchema<typeof catalogFilterSchema>;
|
|
2540
|
-
export type ScorecardConfig = FromSchema<typeof scorecardConfigSchema>;
|
|
2541
|
-
export {};
|