@redocly/config 0.48.2 → 0.49.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.
Files changed (35) hide show
  1. package/lib/asyncapi-config-schema.d.ts +106 -106
  2. package/lib/common.d.ts +158 -135
  3. package/lib/constants/config.d.ts +10 -10
  4. package/lib/constants/entities.d.ts +21 -43
  5. package/lib/default-theme-config-schema.d.ts +3360 -3308
  6. package/lib/entities-catalog-config-schema.d.ts +469 -469
  7. package/lib/entities-catalog-entity-file-schema.d.ts +441 -441
  8. package/lib/ex-theme-config-schemas.d.ts +3022 -2993
  9. package/lib/feedback-config-schema.d.ts +99 -99
  10. package/lib/graphql-config-schema.d.ts +165 -165
  11. package/lib/index.js +1 -1
  12. package/lib/product-override-schema.d.ts +11541 -11518
  13. package/lib/redoc-config-schema.d.ts +155 -155
  14. package/lib/reference-docs-config-schema.d.ts +481 -481
  15. package/lib/reunite-config-schema.d.ts +41 -41
  16. package/lib/root-config-schema.d.ts +51975 -51520
  17. package/lib/scorecards-config-schema.d.ts +405 -405
  18. package/lib-esm/asyncapi-config-schema.d.ts +106 -106
  19. package/lib-esm/common.d.ts +158 -135
  20. package/lib-esm/constants/config.d.ts +10 -10
  21. package/lib-esm/constants/entities.d.ts +21 -43
  22. package/lib-esm/default-theme-config-schema.d.ts +3360 -3308
  23. package/lib-esm/entities-catalog-config-schema.d.ts +469 -469
  24. package/lib-esm/entities-catalog-entity-file-schema.d.ts +441 -441
  25. package/lib-esm/ex-theme-config-schemas.d.ts +3022 -2993
  26. package/lib-esm/feedback-config-schema.d.ts +99 -99
  27. package/lib-esm/graphql-config-schema.d.ts +165 -165
  28. package/lib-esm/index.js +1 -1
  29. package/lib-esm/product-override-schema.d.ts +11541 -11518
  30. package/lib-esm/redoc-config-schema.d.ts +155 -155
  31. package/lib-esm/reference-docs-config-schema.d.ts +481 -481
  32. package/lib-esm/reunite-config-schema.d.ts +41 -41
  33. package/lib-esm/root-config-schema.d.ts +51975 -51520
  34. package/lib-esm/scorecards-config-schema.d.ts +405 -405
  35. package/package.json +9 -9
@@ -1,430 +1,430 @@
1
1
  export declare const graphqlConfigSchema: {
2
- readonly type: "object";
2
+ readonly type: 'object';
3
3
  readonly properties: {
4
4
  readonly menu: {
5
- readonly type: "object";
5
+ readonly type: 'object';
6
6
  readonly properties: {
7
7
  readonly requireExactGroups: {
8
- readonly type: "boolean";
8
+ readonly type: 'boolean';
9
9
  };
10
10
  readonly groups: {
11
- readonly type: "array";
11
+ readonly type: 'array';
12
12
  readonly items: {
13
- readonly type: "object";
13
+ readonly type: 'object';
14
14
  readonly properties: {
15
15
  readonly name: {
16
- readonly type: "string";
16
+ readonly type: 'string';
17
17
  };
18
18
  readonly items: {
19
- readonly type: "object";
19
+ readonly type: 'object';
20
20
  readonly properties: {
21
21
  readonly includeByName: {
22
- readonly type: "array";
22
+ readonly type: 'array';
23
23
  readonly items: {
24
- readonly type: "string";
24
+ readonly type: 'string';
25
25
  };
26
26
  };
27
27
  readonly excludeByName: {
28
- readonly type: "array";
28
+ readonly type: 'array';
29
29
  readonly items: {
30
- readonly type: "string";
30
+ readonly type: 'string';
31
31
  };
32
32
  };
33
33
  };
34
34
  readonly additionalProperties: false;
35
35
  };
36
36
  readonly queries: {
37
- readonly type: "object";
37
+ readonly type: 'object';
38
38
  readonly properties: {
39
39
  readonly includeByName: {
40
- readonly type: "array";
40
+ readonly type: 'array';
41
41
  readonly items: {
42
- readonly type: "string";
42
+ readonly type: 'string';
43
43
  };
44
44
  };
45
45
  readonly excludeByName: {
46
- readonly type: "array";
46
+ readonly type: 'array';
47
47
  readonly items: {
48
- readonly type: "string";
48
+ readonly type: 'string';
49
49
  };
50
50
  };
51
51
  };
52
52
  readonly additionalProperties: false;
53
53
  };
54
54
  readonly mutations: {
55
- readonly type: "object";
55
+ readonly type: 'object';
56
56
  readonly properties: {
57
57
  readonly includeByName: {
58
- readonly type: "array";
58
+ readonly type: 'array';
59
59
  readonly items: {
60
- readonly type: "string";
60
+ readonly type: 'string';
61
61
  };
62
62
  };
63
63
  readonly excludeByName: {
64
- readonly type: "array";
64
+ readonly type: 'array';
65
65
  readonly items: {
66
- readonly type: "string";
66
+ readonly type: 'string';
67
67
  };
68
68
  };
69
69
  };
70
70
  readonly additionalProperties: false;
71
71
  };
72
72
  readonly subscriptions: {
73
- readonly type: "object";
73
+ readonly type: 'object';
74
74
  readonly properties: {
75
75
  readonly includeByName: {
76
- readonly type: "array";
76
+ readonly type: 'array';
77
77
  readonly items: {
78
- readonly type: "string";
78
+ readonly type: 'string';
79
79
  };
80
80
  };
81
81
  readonly excludeByName: {
82
- readonly type: "array";
82
+ readonly type: 'array';
83
83
  readonly items: {
84
- readonly type: "string";
84
+ readonly type: 'string';
85
85
  };
86
86
  };
87
87
  };
88
88
  readonly additionalProperties: false;
89
89
  };
90
90
  readonly types: {
91
- readonly type: "object";
91
+ readonly type: 'object';
92
92
  readonly properties: {
93
93
  readonly includeByName: {
94
- readonly type: "array";
94
+ readonly type: 'array';
95
95
  readonly items: {
96
- readonly type: "string";
96
+ readonly type: 'string';
97
97
  };
98
98
  };
99
99
  readonly excludeByName: {
100
- readonly type: "array";
100
+ readonly type: 'array';
101
101
  readonly items: {
102
- readonly type: "string";
102
+ readonly type: 'string';
103
103
  };
104
104
  };
105
105
  };
106
106
  readonly additionalProperties: false;
107
107
  };
108
108
  readonly directives: {
109
- readonly type: "object";
109
+ readonly type: 'object';
110
110
  readonly properties: {
111
111
  readonly includeByName: {
112
- readonly type: "array";
112
+ readonly type: 'array';
113
113
  readonly items: {
114
- readonly type: "string";
114
+ readonly type: 'string';
115
115
  };
116
116
  };
117
117
  readonly excludeByName: {
118
- readonly type: "array";
118
+ readonly type: 'array';
119
119
  readonly items: {
120
- readonly type: "string";
120
+ readonly type: 'string';
121
121
  };
122
122
  };
123
123
  };
124
124
  readonly additionalProperties: false;
125
125
  };
126
126
  };
127
- readonly required: readonly ["name"];
127
+ readonly required: readonly ['name'];
128
128
  readonly additionalProperties: false;
129
129
  };
130
130
  };
131
131
  readonly otherItemsGroupName: {
132
- readonly type: "string";
132
+ readonly type: 'string';
133
133
  };
134
134
  };
135
135
  readonly additionalProperties: false;
136
136
  };
137
137
  readonly sidebar: {
138
- readonly type: "object";
138
+ readonly type: 'object';
139
139
  readonly properties: {
140
140
  readonly hide: {
141
- readonly type: "boolean";
141
+ readonly type: 'boolean';
142
142
  };
143
143
  };
144
144
  };
145
145
  readonly downloadUrls: {
146
- readonly type: "array";
146
+ readonly type: 'array';
147
147
  readonly items: {
148
- readonly type: "object";
148
+ readonly type: 'object';
149
149
  readonly properties: {
150
150
  readonly title: {
151
- readonly type: "string";
151
+ readonly type: 'string';
152
152
  };
153
153
  readonly url: {
154
- readonly type: "string";
154
+ readonly type: 'string';
155
155
  };
156
156
  };
157
- readonly required: readonly ["url"];
157
+ readonly required: readonly ['url'];
158
158
  readonly additionalProperties: false;
159
159
  };
160
160
  };
161
161
  readonly apiLogo: {
162
- readonly type: "object";
162
+ readonly type: 'object';
163
163
  readonly properties: {
164
164
  readonly imageUrl: {
165
- readonly type: "string";
165
+ readonly type: 'string';
166
166
  };
167
167
  readonly href: {
168
- readonly type: "string";
168
+ readonly type: 'string';
169
169
  };
170
170
  readonly altText: {
171
- readonly type: "string";
171
+ readonly type: 'string';
172
172
  };
173
173
  readonly backgroundColor: {
174
- readonly type: "string";
174
+ readonly type: 'string';
175
175
  };
176
176
  };
177
177
  };
178
178
  readonly jsonSamplesDepth: {
179
- readonly type: "number";
179
+ readonly type: 'number';
180
180
  };
181
181
  readonly samplesMaxInlineArgs: {
182
- readonly type: "number";
182
+ readonly type: 'number';
183
183
  };
184
184
  readonly licenseKey: {
185
- readonly type: "string";
185
+ readonly type: 'string';
186
186
  };
187
187
  readonly fieldExpandLevel: {
188
- readonly type: "number";
188
+ readonly type: 'number';
189
189
  };
190
190
  readonly baseUrlPath: {
191
- readonly type: "string";
191
+ readonly type: 'string';
192
192
  };
193
193
  readonly metadata: {
194
- readonly type: "object";
194
+ readonly type: 'object';
195
195
  readonly properties: {
196
196
  readonly apiId: {
197
- readonly type: "string";
197
+ readonly type: 'string';
198
198
  };
199
199
  };
200
200
  readonly additionalProperties: true;
201
201
  };
202
202
  readonly feedback: {
203
- readonly type: "object";
203
+ readonly type: 'object';
204
204
  readonly properties: {
205
205
  readonly hide: {
206
- readonly type: "boolean";
206
+ readonly type: 'boolean';
207
207
  readonly default: false;
208
208
  };
209
209
  readonly type: {
210
- readonly type: "string";
211
- readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
212
- readonly default: "sentiment";
210
+ readonly type: 'string';
211
+ readonly enum: readonly ['rating', 'sentiment', 'comment', 'reasons', 'mood', 'scale'];
212
+ readonly default: 'sentiment';
213
213
  };
214
214
  readonly settings: {
215
- readonly type: "object";
215
+ readonly type: 'object';
216
216
  readonly properties: {
217
217
  readonly label: {
218
- readonly type: "string";
218
+ readonly type: 'string';
219
219
  };
220
220
  readonly submitText: {
221
- readonly type: "string";
221
+ readonly type: 'string';
222
222
  };
223
223
  readonly buttonText: {
224
- readonly type: "string";
224
+ readonly type: 'string';
225
225
  };
226
226
  readonly component: {
227
- readonly type: "string";
228
- readonly enum: readonly ["radio", "checkbox"];
229
- readonly default: "checkbox";
227
+ readonly type: 'string';
228
+ readonly enum: readonly ['radio', 'checkbox'];
229
+ readonly default: 'checkbox';
230
230
  };
231
231
  readonly items: {
232
- readonly type: "array";
232
+ readonly type: 'array';
233
233
  readonly items: {
234
- readonly type: "string";
234
+ readonly type: 'string';
235
235
  };
236
236
  readonly minItems: 1;
237
237
  };
238
238
  readonly leftScaleLabel: {
239
- readonly type: "string";
239
+ readonly type: 'string';
240
240
  };
241
241
  readonly rightScaleLabel: {
242
- readonly type: "string";
242
+ readonly type: 'string';
243
243
  };
244
244
  readonly reasons: {
245
- readonly type: "object";
245
+ readonly type: 'object';
246
246
  readonly properties: {
247
+ readonly hide: {
248
+ readonly type: 'boolean';
249
+ readonly default: false;
250
+ };
251
+ readonly component: {
252
+ readonly type: 'string';
253
+ readonly enum: readonly ['radio', 'checkbox'];
254
+ readonly default: 'checkbox';
255
+ };
256
+ readonly label: {
257
+ readonly type: 'string';
258
+ };
259
+ readonly items: {
260
+ readonly type: 'array';
261
+ readonly items: {
262
+ readonly type: 'string';
263
+ };
264
+ };
247
265
  readonly like: {
248
- readonly type: "object";
266
+ readonly type: 'object';
249
267
  readonly properties: {
250
268
  readonly hide: {
251
- readonly type: "boolean";
269
+ readonly type: 'boolean';
252
270
  readonly default: false;
253
271
  };
254
272
  readonly component: {
255
- readonly type: "string";
256
- readonly enum: readonly ["radio", "checkbox"];
257
- readonly default: "checkbox";
273
+ readonly type: 'string';
274
+ readonly enum: readonly ['radio', 'checkbox'];
275
+ readonly default: 'checkbox';
258
276
  };
259
277
  readonly label: {
260
- readonly type: "string";
278
+ readonly type: 'string';
261
279
  };
262
280
  readonly items: {
263
- readonly type: "array";
281
+ readonly type: 'array';
264
282
  readonly items: {
265
- readonly type: "string";
283
+ readonly type: 'string';
266
284
  };
267
285
  };
268
286
  };
269
287
  readonly additionalProperties: false;
270
288
  };
271
289
  readonly dislike: {
272
- readonly type: "object";
290
+ readonly type: 'object';
273
291
  readonly properties: {
274
292
  readonly hide: {
275
- readonly type: "boolean";
293
+ readonly type: 'boolean';
276
294
  readonly default: false;
277
295
  };
278
296
  readonly component: {
279
- readonly type: "string";
280
- readonly enum: readonly ["radio", "checkbox"];
281
- readonly default: "checkbox";
297
+ readonly type: 'string';
298
+ readonly enum: readonly ['radio', 'checkbox'];
299
+ readonly default: 'checkbox';
282
300
  };
283
301
  readonly label: {
284
- readonly type: "string";
302
+ readonly type: 'string';
285
303
  };
286
304
  readonly items: {
287
- readonly type: "array";
305
+ readonly type: 'array';
288
306
  readonly items: {
289
- readonly type: "string";
307
+ readonly type: 'string';
290
308
  };
291
309
  };
292
310
  };
293
311
  readonly additionalProperties: false;
294
312
  };
295
313
  readonly satisfied: {
296
- readonly type: "object";
314
+ readonly type: 'object';
297
315
  readonly properties: {
298
316
  readonly hide: {
299
- readonly type: "boolean";
317
+ readonly type: 'boolean';
300
318
  readonly default: false;
301
319
  };
302
320
  readonly component: {
303
- readonly type: "string";
304
- readonly enum: readonly ["radio", "checkbox"];
305
- readonly default: "checkbox";
321
+ readonly type: 'string';
322
+ readonly enum: readonly ['radio', 'checkbox'];
323
+ readonly default: 'checkbox';
306
324
  };
307
325
  readonly label: {
308
- readonly type: "string";
326
+ readonly type: 'string';
309
327
  };
310
328
  readonly items: {
311
- readonly type: "array";
329
+ readonly type: 'array';
312
330
  readonly items: {
313
- readonly type: "string";
331
+ readonly type: 'string';
314
332
  };
315
333
  };
316
334
  };
317
335
  readonly additionalProperties: false;
318
336
  };
319
337
  readonly neutral: {
320
- readonly type: "object";
338
+ readonly type: 'object';
321
339
  readonly properties: {
322
340
  readonly hide: {
323
- readonly type: "boolean";
341
+ readonly type: 'boolean';
324
342
  readonly default: false;
325
343
  };
326
344
  readonly component: {
327
- readonly type: "string";
328
- readonly enum: readonly ["radio", "checkbox"];
329
- readonly default: "checkbox";
345
+ readonly type: 'string';
346
+ readonly enum: readonly ['radio', 'checkbox'];
347
+ readonly default: 'checkbox';
330
348
  };
331
349
  readonly label: {
332
- readonly type: "string";
350
+ readonly type: 'string';
333
351
  };
334
352
  readonly items: {
335
- readonly type: "array";
353
+ readonly type: 'array';
336
354
  readonly items: {
337
- readonly type: "string";
355
+ readonly type: 'string';
338
356
  };
339
357
  };
340
358
  };
341
359
  readonly additionalProperties: false;
342
360
  };
343
361
  readonly dissatisfied: {
344
- readonly type: "object";
362
+ readonly type: 'object';
345
363
  readonly properties: {
346
364
  readonly hide: {
347
- readonly type: "boolean";
365
+ readonly type: 'boolean';
348
366
  readonly default: false;
349
367
  };
350
368
  readonly component: {
351
- readonly type: "string";
352
- readonly enum: readonly ["radio", "checkbox"];
353
- readonly default: "checkbox";
369
+ readonly type: 'string';
370
+ readonly enum: readonly ['radio', 'checkbox'];
371
+ readonly default: 'checkbox';
354
372
  };
355
373
  readonly label: {
356
- readonly type: "string";
374
+ readonly type: 'string';
357
375
  };
358
376
  readonly items: {
359
- readonly type: "array";
377
+ readonly type: 'array';
360
378
  readonly items: {
361
- readonly type: "string";
379
+ readonly type: 'string';
362
380
  };
363
381
  };
364
382
  };
365
383
  readonly additionalProperties: false;
366
384
  };
367
- readonly hide: {
368
- readonly type: "boolean";
369
- readonly default: false;
370
- };
371
- readonly component: {
372
- readonly type: "string";
373
- readonly enum: readonly ["radio", "checkbox"];
374
- readonly default: "checkbox";
375
- };
376
- readonly label: {
377
- readonly type: "string";
378
- };
379
- readonly items: {
380
- readonly type: "array";
381
- readonly items: {
382
- readonly type: "string";
383
- };
384
- };
385
385
  };
386
386
  readonly additionalProperties: false;
387
387
  };
388
388
  readonly comment: {
389
- readonly type: "object";
389
+ readonly type: 'object';
390
390
  readonly properties: {
391
391
  readonly hide: {
392
- readonly type: "boolean";
392
+ readonly type: 'boolean';
393
393
  readonly default: false;
394
394
  };
395
395
  readonly label: {
396
- readonly type: "string";
396
+ readonly type: 'string';
397
397
  };
398
398
  readonly likeLabel: {
399
- readonly type: "string";
399
+ readonly type: 'string';
400
400
  };
401
401
  readonly dislikeLabel: {
402
- readonly type: "string";
402
+ readonly type: 'string';
403
403
  };
404
404
  readonly satisfiedLabel: {
405
- readonly type: "string";
405
+ readonly type: 'string';
406
406
  };
407
407
  readonly neutralLabel: {
408
- readonly type: "string";
408
+ readonly type: 'string';
409
409
  };
410
410
  readonly dissatisfiedLabel: {
411
- readonly type: "string";
411
+ readonly type: 'string';
412
412
  };
413
413
  };
414
414
  readonly additionalProperties: false;
415
415
  };
416
416
  readonly optionalEmail: {
417
- readonly type: "object";
417
+ readonly type: 'object';
418
418
  readonly properties: {
419
419
  readonly hide: {
420
- readonly type: "boolean";
420
+ readonly type: 'boolean';
421
421
  readonly default: false;
422
422
  };
423
423
  readonly label: {
424
- readonly type: "string";
424
+ readonly type: 'string';
425
425
  };
426
426
  readonly placeholder: {
427
- readonly type: "string";
427
+ readonly type: 'string';
428
428
  };
429
429
  };
430
430
  readonly additionalProperties: false;
@@ -436,60 +436,60 @@ export declare const graphqlConfigSchema: {
436
436
  readonly additionalProperties: false;
437
437
  };
438
438
  readonly layout: {
439
- readonly type: "string";
440
- readonly enum: readonly ["stacked", "three-panel"];
439
+ readonly type: 'string';
440
+ readonly enum: readonly ['stacked', 'three-panel'];
441
441
  };
442
442
  readonly showBuiltInScalars: {
443
- readonly type: "boolean";
443
+ readonly type: 'boolean';
444
444
  };
445
445
  readonly showBuiltInDirectives: {
446
- readonly type: "boolean";
446
+ readonly type: 'boolean';
447
447
  };
448
448
  readonly info: {
449
- readonly type: "object";
449
+ readonly type: 'object';
450
450
  readonly properties: {
451
451
  readonly title: {
452
- readonly type: "string";
452
+ readonly type: 'string';
453
453
  };
454
454
  readonly version: {
455
- readonly type: "string";
455
+ readonly type: 'string';
456
456
  };
457
457
  readonly description: {
458
- readonly type: "string";
458
+ readonly type: 'string';
459
459
  };
460
460
  readonly termsOfService: {
461
- readonly type: "string";
462
- readonly format: "uri";
461
+ readonly type: 'string';
462
+ readonly format: 'uri';
463
463
  };
464
464
  readonly contact: {
465
- readonly type: "object";
465
+ readonly type: 'object';
466
466
  readonly properties: {
467
467
  readonly name: {
468
- readonly type: "string";
468
+ readonly type: 'string';
469
469
  };
470
470
  readonly url: {
471
- readonly type: "string";
472
- readonly format: "uri";
471
+ readonly type: 'string';
472
+ readonly format: 'uri';
473
473
  };
474
474
  readonly email: {
475
- readonly type: "string";
476
- readonly format: "email";
475
+ readonly type: 'string';
476
+ readonly format: 'email';
477
477
  };
478
478
  };
479
479
  readonly additionalProperties: false;
480
480
  };
481
481
  readonly license: {
482
- readonly type: "object";
482
+ readonly type: 'object';
483
483
  readonly properties: {
484
484
  readonly name: {
485
- readonly type: "string";
485
+ readonly type: 'string';
486
486
  };
487
487
  readonly url: {
488
- readonly type: "string";
489
- readonly format: "uri";
488
+ readonly type: 'string';
489
+ readonly format: 'uri';
490
490
  };
491
491
  readonly identifier: {
492
- readonly type: "string";
492
+ readonly type: 'string';
493
493
  };
494
494
  };
495
495
  readonly additionalProperties: false;