@redocly/config 0.6.2 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/constants.d.ts +1 -2
- package/lib/constants.js +0 -1
- package/lib/default-theme-config-schema.d.ts +4992 -50
- package/lib/default-theme-config-schema.js +2 -1
- package/lib/redoc-config-schema.d.ts +1376 -0
- package/lib/redoc-config-schema.js +6 -36
- package/lib/redoc-types.d.ts +2 -1
- package/lib/reference-docs-config-schema.d.ts +1383 -0
- package/lib/reference-docs-config-schema.js +519 -0
- package/lib/root-config-schema.d.ts +15721 -6738
- package/lib/root-config-schema.js +2 -25
- package/lib/types.d.ts +15 -6
- package/lib-esm/constants.d.ts +1 -2
- package/lib-esm/constants.js +0 -1
- package/lib-esm/default-theme-config-schema.d.ts +4992 -50
- package/lib-esm/default-theme-config-schema.js +1 -0
- package/lib-esm/redoc-config-schema.d.ts +1376 -0
- package/lib-esm/redoc-config-schema.js +6 -36
- package/lib-esm/redoc-types.d.ts +2 -1
- package/lib-esm/reference-docs-config-schema.d.ts +1383 -0
- package/lib-esm/reference-docs-config-schema.js +516 -0
- package/lib-esm/root-config-schema.d.ts +15721 -6738
- package/lib-esm/root-config-schema.js +1 -24
- package/lib-esm/types.d.ts +15 -6
- package/package.json +1 -1
|
@@ -0,0 +1,1383 @@
|
|
|
1
|
+
import type { FromSchema } from 'json-schema-to-ts';
|
|
2
|
+
export declare const deprecatedRefDocsSchema: {
|
|
3
|
+
readonly type: "object";
|
|
4
|
+
readonly properties: {
|
|
5
|
+
readonly theme: {
|
|
6
|
+
readonly type: "object";
|
|
7
|
+
readonly properties: {
|
|
8
|
+
readonly breakpoints: {
|
|
9
|
+
readonly type: "object";
|
|
10
|
+
readonly properties: {
|
|
11
|
+
readonly small: {
|
|
12
|
+
readonly type: "string";
|
|
13
|
+
};
|
|
14
|
+
readonly medium: {
|
|
15
|
+
readonly type: "string";
|
|
16
|
+
};
|
|
17
|
+
readonly large: {
|
|
18
|
+
readonly type: "string";
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
readonly codeBlock: {
|
|
23
|
+
readonly type: "object";
|
|
24
|
+
readonly properties: {
|
|
25
|
+
readonly backgroundColor: {
|
|
26
|
+
readonly type: "string";
|
|
27
|
+
};
|
|
28
|
+
readonly borderRadius: {
|
|
29
|
+
readonly type: "string";
|
|
30
|
+
};
|
|
31
|
+
readonly tokens: {
|
|
32
|
+
readonly type: "object";
|
|
33
|
+
readonly properties: {
|
|
34
|
+
readonly fontFamily: {
|
|
35
|
+
readonly type: "string";
|
|
36
|
+
};
|
|
37
|
+
readonly fontSize: {
|
|
38
|
+
readonly type: "string";
|
|
39
|
+
};
|
|
40
|
+
readonly fontWeight: {
|
|
41
|
+
readonly type: "string";
|
|
42
|
+
};
|
|
43
|
+
readonly lineHeight: {
|
|
44
|
+
readonly type: "string";
|
|
45
|
+
};
|
|
46
|
+
readonly color: {
|
|
47
|
+
readonly type: "string";
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
readonly colors: {
|
|
54
|
+
readonly type: "object";
|
|
55
|
+
readonly properties: {
|
|
56
|
+
readonly accent: {
|
|
57
|
+
readonly type: "object";
|
|
58
|
+
readonly properties: {
|
|
59
|
+
readonly main: {
|
|
60
|
+
readonly type: "string";
|
|
61
|
+
};
|
|
62
|
+
readonly light: {
|
|
63
|
+
readonly type: "string";
|
|
64
|
+
};
|
|
65
|
+
readonly dark: {
|
|
66
|
+
readonly type: "string";
|
|
67
|
+
};
|
|
68
|
+
readonly contrastText: {
|
|
69
|
+
readonly type: "string";
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
readonly border: {
|
|
74
|
+
readonly type: "object";
|
|
75
|
+
readonly properties: {
|
|
76
|
+
readonly main: {
|
|
77
|
+
readonly type: "string";
|
|
78
|
+
};
|
|
79
|
+
readonly light: {
|
|
80
|
+
readonly type: "string";
|
|
81
|
+
};
|
|
82
|
+
readonly dark: {
|
|
83
|
+
readonly type: "string";
|
|
84
|
+
};
|
|
85
|
+
readonly contrastText: {
|
|
86
|
+
readonly type: "string";
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
readonly error: {
|
|
91
|
+
readonly type: "object";
|
|
92
|
+
readonly properties: {
|
|
93
|
+
readonly main: {
|
|
94
|
+
readonly type: "string";
|
|
95
|
+
};
|
|
96
|
+
readonly light: {
|
|
97
|
+
readonly type: "string";
|
|
98
|
+
};
|
|
99
|
+
readonly dark: {
|
|
100
|
+
readonly type: "string";
|
|
101
|
+
};
|
|
102
|
+
readonly contrastText: {
|
|
103
|
+
readonly type: "string";
|
|
104
|
+
};
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
readonly http: {
|
|
108
|
+
readonly type: "object";
|
|
109
|
+
readonly properties: {
|
|
110
|
+
readonly basic: {
|
|
111
|
+
readonly type: "string";
|
|
112
|
+
};
|
|
113
|
+
readonly delete: {
|
|
114
|
+
readonly type: "string";
|
|
115
|
+
};
|
|
116
|
+
readonly get: {
|
|
117
|
+
readonly type: "string";
|
|
118
|
+
};
|
|
119
|
+
readonly head: {
|
|
120
|
+
readonly type: "string";
|
|
121
|
+
};
|
|
122
|
+
readonly link: {
|
|
123
|
+
readonly type: "string";
|
|
124
|
+
};
|
|
125
|
+
readonly options: {
|
|
126
|
+
readonly type: "string";
|
|
127
|
+
};
|
|
128
|
+
readonly patch: {
|
|
129
|
+
readonly type: "string";
|
|
130
|
+
};
|
|
131
|
+
readonly post: {
|
|
132
|
+
readonly type: "string";
|
|
133
|
+
};
|
|
134
|
+
readonly put: {
|
|
135
|
+
readonly type: "string";
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
readonly primary: {
|
|
140
|
+
readonly type: "object";
|
|
141
|
+
readonly properties: {
|
|
142
|
+
readonly main: {
|
|
143
|
+
readonly type: "string";
|
|
144
|
+
};
|
|
145
|
+
readonly light: {
|
|
146
|
+
readonly type: "string";
|
|
147
|
+
};
|
|
148
|
+
readonly dark: {
|
|
149
|
+
readonly type: "string";
|
|
150
|
+
};
|
|
151
|
+
readonly contrastText: {
|
|
152
|
+
readonly type: "string";
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
readonly responses: {
|
|
157
|
+
readonly type: "object";
|
|
158
|
+
readonly properties: {
|
|
159
|
+
readonly error: {
|
|
160
|
+
readonly type: "object";
|
|
161
|
+
readonly properties: {
|
|
162
|
+
readonly backgroundColor: {
|
|
163
|
+
readonly type: "string";
|
|
164
|
+
};
|
|
165
|
+
readonly borderColor: {
|
|
166
|
+
readonly type: "string";
|
|
167
|
+
};
|
|
168
|
+
readonly color: {
|
|
169
|
+
readonly type: "string";
|
|
170
|
+
};
|
|
171
|
+
readonly tabTextColor: {
|
|
172
|
+
readonly type: "string";
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
readonly info: {
|
|
177
|
+
readonly type: "object";
|
|
178
|
+
readonly properties: {
|
|
179
|
+
readonly backgroundColor: {
|
|
180
|
+
readonly type: "string";
|
|
181
|
+
};
|
|
182
|
+
readonly borderColor: {
|
|
183
|
+
readonly type: "string";
|
|
184
|
+
};
|
|
185
|
+
readonly color: {
|
|
186
|
+
readonly type: "string";
|
|
187
|
+
};
|
|
188
|
+
readonly tabTextColor: {
|
|
189
|
+
readonly type: "string";
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
readonly redirect: {
|
|
194
|
+
readonly type: "object";
|
|
195
|
+
readonly properties: {
|
|
196
|
+
readonly backgroundColor: {
|
|
197
|
+
readonly type: "string";
|
|
198
|
+
};
|
|
199
|
+
readonly borderColor: {
|
|
200
|
+
readonly type: "string";
|
|
201
|
+
};
|
|
202
|
+
readonly color: {
|
|
203
|
+
readonly type: "string";
|
|
204
|
+
};
|
|
205
|
+
readonly tabTextColor: {
|
|
206
|
+
readonly type: "string";
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
readonly success: {
|
|
211
|
+
readonly type: "object";
|
|
212
|
+
readonly properties: {
|
|
213
|
+
readonly backgroundColor: {
|
|
214
|
+
readonly type: "string";
|
|
215
|
+
};
|
|
216
|
+
readonly borderColor: {
|
|
217
|
+
readonly type: "string";
|
|
218
|
+
};
|
|
219
|
+
readonly color: {
|
|
220
|
+
readonly type: "string";
|
|
221
|
+
};
|
|
222
|
+
readonly tabTextColor: {
|
|
223
|
+
readonly type: "string";
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
};
|
|
228
|
+
};
|
|
229
|
+
readonly secondary: {
|
|
230
|
+
readonly type: "object";
|
|
231
|
+
readonly properties: {
|
|
232
|
+
readonly main: {
|
|
233
|
+
readonly type: "string";
|
|
234
|
+
};
|
|
235
|
+
readonly light: {
|
|
236
|
+
readonly type: "string";
|
|
237
|
+
};
|
|
238
|
+
readonly dark: {
|
|
239
|
+
readonly type: "string";
|
|
240
|
+
};
|
|
241
|
+
readonly contrastText: {
|
|
242
|
+
readonly type: "string";
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
};
|
|
246
|
+
readonly success: {
|
|
247
|
+
readonly type: "object";
|
|
248
|
+
readonly properties: {
|
|
249
|
+
readonly main: {
|
|
250
|
+
readonly type: "string";
|
|
251
|
+
};
|
|
252
|
+
readonly light: {
|
|
253
|
+
readonly type: "string";
|
|
254
|
+
};
|
|
255
|
+
readonly dark: {
|
|
256
|
+
readonly type: "string";
|
|
257
|
+
};
|
|
258
|
+
readonly contrastText: {
|
|
259
|
+
readonly type: "string";
|
|
260
|
+
};
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
readonly text: {
|
|
264
|
+
readonly type: "object";
|
|
265
|
+
readonly properties: {
|
|
266
|
+
readonly primary: {
|
|
267
|
+
readonly type: "string";
|
|
268
|
+
};
|
|
269
|
+
readonly secondary: {
|
|
270
|
+
readonly type: "string";
|
|
271
|
+
};
|
|
272
|
+
readonly light: {
|
|
273
|
+
readonly type: "string";
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
readonly tonalOffset: {
|
|
278
|
+
readonly type: "number";
|
|
279
|
+
};
|
|
280
|
+
readonly warning: {
|
|
281
|
+
readonly type: "object";
|
|
282
|
+
readonly properties: {
|
|
283
|
+
readonly main: {
|
|
284
|
+
readonly type: "string";
|
|
285
|
+
};
|
|
286
|
+
readonly light: {
|
|
287
|
+
readonly type: "string";
|
|
288
|
+
};
|
|
289
|
+
readonly dark: {
|
|
290
|
+
readonly type: "string";
|
|
291
|
+
};
|
|
292
|
+
readonly contrastText: {
|
|
293
|
+
readonly type: "string";
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
};
|
|
298
|
+
};
|
|
299
|
+
readonly components: {
|
|
300
|
+
readonly type: "object";
|
|
301
|
+
readonly properties: {
|
|
302
|
+
readonly buttons: {
|
|
303
|
+
readonly type: "object";
|
|
304
|
+
readonly properties: {
|
|
305
|
+
readonly borderRadius: {
|
|
306
|
+
readonly type: "string";
|
|
307
|
+
};
|
|
308
|
+
readonly hoverStyle: {
|
|
309
|
+
readonly type: "string";
|
|
310
|
+
};
|
|
311
|
+
readonly boxShadow: {
|
|
312
|
+
readonly type: "string";
|
|
313
|
+
};
|
|
314
|
+
readonly hoverBoxShadow: {
|
|
315
|
+
readonly type: "string";
|
|
316
|
+
};
|
|
317
|
+
readonly sizes: {
|
|
318
|
+
readonly type: "object";
|
|
319
|
+
readonly properties: {
|
|
320
|
+
readonly small: {
|
|
321
|
+
readonly type: "object";
|
|
322
|
+
readonly properties: {
|
|
323
|
+
readonly fontSize: {
|
|
324
|
+
readonly type: "string";
|
|
325
|
+
};
|
|
326
|
+
readonly padding: {
|
|
327
|
+
readonly type: "string";
|
|
328
|
+
};
|
|
329
|
+
readonly minWidth: {
|
|
330
|
+
readonly type: "string";
|
|
331
|
+
};
|
|
332
|
+
};
|
|
333
|
+
};
|
|
334
|
+
readonly medium: {
|
|
335
|
+
readonly type: "object";
|
|
336
|
+
readonly properties: {
|
|
337
|
+
readonly fontSize: {
|
|
338
|
+
readonly type: "string";
|
|
339
|
+
};
|
|
340
|
+
readonly padding: {
|
|
341
|
+
readonly type: "string";
|
|
342
|
+
};
|
|
343
|
+
readonly minWidth: {
|
|
344
|
+
readonly type: "string";
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
};
|
|
348
|
+
readonly large: {
|
|
349
|
+
readonly type: "object";
|
|
350
|
+
readonly properties: {
|
|
351
|
+
readonly fontSize: {
|
|
352
|
+
readonly type: "string";
|
|
353
|
+
};
|
|
354
|
+
readonly padding: {
|
|
355
|
+
readonly type: "string";
|
|
356
|
+
};
|
|
357
|
+
readonly minWidth: {
|
|
358
|
+
readonly type: "string";
|
|
359
|
+
};
|
|
360
|
+
};
|
|
361
|
+
};
|
|
362
|
+
readonly xlarge: {
|
|
363
|
+
readonly type: "object";
|
|
364
|
+
readonly properties: {
|
|
365
|
+
readonly fontSize: {
|
|
366
|
+
readonly type: "string";
|
|
367
|
+
};
|
|
368
|
+
readonly padding: {
|
|
369
|
+
readonly type: "string";
|
|
370
|
+
};
|
|
371
|
+
readonly minWidth: {
|
|
372
|
+
readonly type: "string";
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
readonly fontFamily: {
|
|
379
|
+
readonly type: "string";
|
|
380
|
+
};
|
|
381
|
+
readonly fontSize: {
|
|
382
|
+
readonly type: "string";
|
|
383
|
+
};
|
|
384
|
+
readonly fontWeight: {
|
|
385
|
+
readonly type: "string";
|
|
386
|
+
};
|
|
387
|
+
readonly lineHeight: {
|
|
388
|
+
readonly type: "string";
|
|
389
|
+
};
|
|
390
|
+
};
|
|
391
|
+
};
|
|
392
|
+
readonly httpBadges: {
|
|
393
|
+
readonly type: "object";
|
|
394
|
+
readonly properties: {
|
|
395
|
+
readonly borderRadius: {
|
|
396
|
+
readonly type: "string";
|
|
397
|
+
};
|
|
398
|
+
readonly color: {
|
|
399
|
+
readonly type: "string";
|
|
400
|
+
};
|
|
401
|
+
readonly sizes: {
|
|
402
|
+
readonly type: "object";
|
|
403
|
+
readonly properties: {
|
|
404
|
+
readonly medium: {
|
|
405
|
+
readonly type: "object";
|
|
406
|
+
readonly properties: {
|
|
407
|
+
readonly fontFamily: {
|
|
408
|
+
readonly type: "string";
|
|
409
|
+
};
|
|
410
|
+
readonly fontSize: {
|
|
411
|
+
readonly type: "string";
|
|
412
|
+
};
|
|
413
|
+
readonly fontWeight: {
|
|
414
|
+
readonly type: "string";
|
|
415
|
+
};
|
|
416
|
+
readonly lineHeight: {
|
|
417
|
+
readonly type: "string";
|
|
418
|
+
};
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
readonly small: {
|
|
422
|
+
readonly type: "object";
|
|
423
|
+
readonly properties: {
|
|
424
|
+
readonly fontFamily: {
|
|
425
|
+
readonly type: "string";
|
|
426
|
+
};
|
|
427
|
+
readonly fontSize: {
|
|
428
|
+
readonly type: "string";
|
|
429
|
+
};
|
|
430
|
+
readonly fontWeight: {
|
|
431
|
+
readonly type: "string";
|
|
432
|
+
};
|
|
433
|
+
readonly lineHeight: {
|
|
434
|
+
readonly type: "string";
|
|
435
|
+
};
|
|
436
|
+
};
|
|
437
|
+
};
|
|
438
|
+
};
|
|
439
|
+
};
|
|
440
|
+
readonly fontFamily: {
|
|
441
|
+
readonly type: "string";
|
|
442
|
+
};
|
|
443
|
+
readonly fontSize: {
|
|
444
|
+
readonly type: "string";
|
|
445
|
+
};
|
|
446
|
+
readonly fontWeight: {
|
|
447
|
+
readonly type: "string";
|
|
448
|
+
};
|
|
449
|
+
readonly lineHeight: {
|
|
450
|
+
readonly type: "string";
|
|
451
|
+
};
|
|
452
|
+
};
|
|
453
|
+
};
|
|
454
|
+
readonly layoutControls: {
|
|
455
|
+
readonly type: "object";
|
|
456
|
+
readonly properties: {
|
|
457
|
+
readonly top: {
|
|
458
|
+
readonly type: "string";
|
|
459
|
+
};
|
|
460
|
+
readonly width: {
|
|
461
|
+
readonly type: "string";
|
|
462
|
+
};
|
|
463
|
+
readonly height: {
|
|
464
|
+
readonly type: "string";
|
|
465
|
+
};
|
|
466
|
+
};
|
|
467
|
+
};
|
|
468
|
+
readonly panels: {
|
|
469
|
+
readonly type: "object";
|
|
470
|
+
readonly properties: {
|
|
471
|
+
readonly borderRadius: {
|
|
472
|
+
readonly type: "string";
|
|
473
|
+
};
|
|
474
|
+
readonly backgroundColor: {
|
|
475
|
+
readonly type: "string";
|
|
476
|
+
};
|
|
477
|
+
};
|
|
478
|
+
};
|
|
479
|
+
readonly tryItButton: {
|
|
480
|
+
readonly type: "object";
|
|
481
|
+
readonly properties: {
|
|
482
|
+
readonly fullWidth: {
|
|
483
|
+
readonly type: "boolean";
|
|
484
|
+
};
|
|
485
|
+
};
|
|
486
|
+
};
|
|
487
|
+
readonly tryItSendButton: {
|
|
488
|
+
readonly type: "object";
|
|
489
|
+
readonly properties: {
|
|
490
|
+
readonly fullWidth: {
|
|
491
|
+
readonly type: "boolean";
|
|
492
|
+
};
|
|
493
|
+
};
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
};
|
|
497
|
+
readonly layout: {
|
|
498
|
+
readonly type: "object";
|
|
499
|
+
readonly properties: {
|
|
500
|
+
readonly showDarkRightPanel: {
|
|
501
|
+
readonly type: "boolean";
|
|
502
|
+
};
|
|
503
|
+
readonly stacked: {
|
|
504
|
+
readonly type: "object";
|
|
505
|
+
readonly properties: {
|
|
506
|
+
readonly maxWidth: {
|
|
507
|
+
readonly type: "object";
|
|
508
|
+
readonly properties: {
|
|
509
|
+
readonly small: {
|
|
510
|
+
readonly type: "string";
|
|
511
|
+
};
|
|
512
|
+
readonly medium: {
|
|
513
|
+
readonly type: "string";
|
|
514
|
+
};
|
|
515
|
+
readonly large: {
|
|
516
|
+
readonly type: "string";
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
};
|
|
522
|
+
readonly 'three-panel': {
|
|
523
|
+
readonly type: "object";
|
|
524
|
+
readonly properties: {
|
|
525
|
+
readonly maxWidth: {
|
|
526
|
+
readonly type: "object";
|
|
527
|
+
readonly properties: {
|
|
528
|
+
readonly small: {
|
|
529
|
+
readonly type: "string";
|
|
530
|
+
};
|
|
531
|
+
readonly medium: {
|
|
532
|
+
readonly type: "string";
|
|
533
|
+
};
|
|
534
|
+
readonly large: {
|
|
535
|
+
readonly type: "string";
|
|
536
|
+
};
|
|
537
|
+
};
|
|
538
|
+
};
|
|
539
|
+
readonly middlePanelMaxWidth: {
|
|
540
|
+
readonly type: "object";
|
|
541
|
+
readonly properties: {
|
|
542
|
+
readonly small: {
|
|
543
|
+
readonly type: "string";
|
|
544
|
+
};
|
|
545
|
+
readonly medium: {
|
|
546
|
+
readonly type: "string";
|
|
547
|
+
};
|
|
548
|
+
readonly large: {
|
|
549
|
+
readonly type: "string";
|
|
550
|
+
};
|
|
551
|
+
};
|
|
552
|
+
};
|
|
553
|
+
};
|
|
554
|
+
};
|
|
555
|
+
};
|
|
556
|
+
};
|
|
557
|
+
readonly logo: {
|
|
558
|
+
readonly type: "object";
|
|
559
|
+
readonly properties: {
|
|
560
|
+
readonly gutter: {
|
|
561
|
+
readonly type: "string";
|
|
562
|
+
};
|
|
563
|
+
readonly maxHeight: {
|
|
564
|
+
readonly type: "string";
|
|
565
|
+
};
|
|
566
|
+
readonly maxWidth: {
|
|
567
|
+
readonly type: "string";
|
|
568
|
+
};
|
|
569
|
+
};
|
|
570
|
+
};
|
|
571
|
+
readonly fab: {
|
|
572
|
+
readonly type: "object";
|
|
573
|
+
readonly properties: {
|
|
574
|
+
readonly backgroundColor: {
|
|
575
|
+
readonly type: "string";
|
|
576
|
+
};
|
|
577
|
+
readonly color: {
|
|
578
|
+
readonly type: "string";
|
|
579
|
+
};
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
readonly overrides: {
|
|
583
|
+
readonly type: "object";
|
|
584
|
+
readonly properties: {
|
|
585
|
+
readonly DownloadButton: {
|
|
586
|
+
readonly type: "object";
|
|
587
|
+
readonly properties: {
|
|
588
|
+
readonly custom: {
|
|
589
|
+
readonly type: "string";
|
|
590
|
+
};
|
|
591
|
+
};
|
|
592
|
+
};
|
|
593
|
+
readonly NextSectionButton: {
|
|
594
|
+
readonly type: "object";
|
|
595
|
+
readonly properties: {
|
|
596
|
+
readonly custom: {
|
|
597
|
+
readonly type: "string";
|
|
598
|
+
};
|
|
599
|
+
};
|
|
600
|
+
};
|
|
601
|
+
};
|
|
602
|
+
};
|
|
603
|
+
readonly rightPanel: {
|
|
604
|
+
readonly type: "object";
|
|
605
|
+
readonly properties: {
|
|
606
|
+
readonly backgroundColor: {
|
|
607
|
+
readonly type: "string";
|
|
608
|
+
};
|
|
609
|
+
readonly panelBackgroundColor: {
|
|
610
|
+
readonly type: "string";
|
|
611
|
+
};
|
|
612
|
+
readonly panelControlsBackgroundColor: {
|
|
613
|
+
readonly type: "string";
|
|
614
|
+
};
|
|
615
|
+
readonly showAtBreakpoint: {
|
|
616
|
+
readonly type: "string";
|
|
617
|
+
};
|
|
618
|
+
readonly textColor: {
|
|
619
|
+
readonly type: "string";
|
|
620
|
+
};
|
|
621
|
+
readonly width: {
|
|
622
|
+
readonly type: "string";
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
};
|
|
626
|
+
readonly schema: {
|
|
627
|
+
readonly type: "object";
|
|
628
|
+
readonly properties: {
|
|
629
|
+
readonly breakFieldNames: {
|
|
630
|
+
readonly type: "boolean";
|
|
631
|
+
};
|
|
632
|
+
readonly caretColor: {
|
|
633
|
+
readonly type: "string";
|
|
634
|
+
};
|
|
635
|
+
readonly caretSize: {
|
|
636
|
+
readonly type: "string";
|
|
637
|
+
};
|
|
638
|
+
readonly constraints: {
|
|
639
|
+
readonly type: "object";
|
|
640
|
+
readonly properties: {
|
|
641
|
+
readonly backgroundColor: {
|
|
642
|
+
readonly type: "string";
|
|
643
|
+
};
|
|
644
|
+
readonly border: {
|
|
645
|
+
readonly type: "string";
|
|
646
|
+
};
|
|
647
|
+
};
|
|
648
|
+
};
|
|
649
|
+
readonly defaultDetailsWidth: {
|
|
650
|
+
readonly type: "string";
|
|
651
|
+
};
|
|
652
|
+
readonly examples: {
|
|
653
|
+
readonly type: "object";
|
|
654
|
+
readonly properties: {
|
|
655
|
+
readonly backgroundColor: {
|
|
656
|
+
readonly type: "string";
|
|
657
|
+
};
|
|
658
|
+
readonly border: {
|
|
659
|
+
readonly type: "string";
|
|
660
|
+
};
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
readonly labelsTextSize: {
|
|
664
|
+
readonly type: "string";
|
|
665
|
+
};
|
|
666
|
+
readonly linesColor: {
|
|
667
|
+
readonly type: "string";
|
|
668
|
+
};
|
|
669
|
+
readonly nestedBackground: {
|
|
670
|
+
readonly type: "string";
|
|
671
|
+
};
|
|
672
|
+
readonly nestingSpacing: {
|
|
673
|
+
readonly type: "string";
|
|
674
|
+
};
|
|
675
|
+
readonly requireLabelColor: {
|
|
676
|
+
readonly type: "string";
|
|
677
|
+
};
|
|
678
|
+
readonly typeNameColor: {
|
|
679
|
+
readonly type: "string";
|
|
680
|
+
};
|
|
681
|
+
readonly typeTitleColor: {
|
|
682
|
+
readonly type: "string";
|
|
683
|
+
};
|
|
684
|
+
};
|
|
685
|
+
};
|
|
686
|
+
readonly shape: {
|
|
687
|
+
readonly type: "object";
|
|
688
|
+
readonly properties: {
|
|
689
|
+
readonly borderRadius: {
|
|
690
|
+
readonly type: "string";
|
|
691
|
+
};
|
|
692
|
+
};
|
|
693
|
+
};
|
|
694
|
+
readonly sidebar: {
|
|
695
|
+
readonly type: "object";
|
|
696
|
+
readonly properties: {
|
|
697
|
+
readonly activeBgColor: {
|
|
698
|
+
readonly type: "string";
|
|
699
|
+
};
|
|
700
|
+
readonly activeTextColor: {
|
|
701
|
+
readonly type: "string";
|
|
702
|
+
};
|
|
703
|
+
readonly backgroundColor: {
|
|
704
|
+
readonly type: "string";
|
|
705
|
+
};
|
|
706
|
+
readonly borderRadius: {
|
|
707
|
+
readonly type: "string";
|
|
708
|
+
};
|
|
709
|
+
readonly breakPath: {
|
|
710
|
+
readonly type: "boolean";
|
|
711
|
+
};
|
|
712
|
+
readonly caretColor: {
|
|
713
|
+
readonly type: "string";
|
|
714
|
+
};
|
|
715
|
+
readonly caretSize: {
|
|
716
|
+
readonly type: "string";
|
|
717
|
+
};
|
|
718
|
+
readonly groupItems: {
|
|
719
|
+
readonly type: "object";
|
|
720
|
+
readonly properties: {
|
|
721
|
+
readonly subItemsColor: {
|
|
722
|
+
readonly type: "string";
|
|
723
|
+
};
|
|
724
|
+
readonly textTransform: {
|
|
725
|
+
readonly type: "string";
|
|
726
|
+
};
|
|
727
|
+
readonly fontWeight: {
|
|
728
|
+
readonly type: "string";
|
|
729
|
+
};
|
|
730
|
+
};
|
|
731
|
+
};
|
|
732
|
+
readonly level1items: {
|
|
733
|
+
readonly type: "object";
|
|
734
|
+
readonly properties: {
|
|
735
|
+
readonly subItemsColor: {
|
|
736
|
+
readonly type: "string";
|
|
737
|
+
};
|
|
738
|
+
readonly textTransform: {
|
|
739
|
+
readonly type: "string";
|
|
740
|
+
};
|
|
741
|
+
readonly fontWeight: {
|
|
742
|
+
readonly type: "string";
|
|
743
|
+
};
|
|
744
|
+
};
|
|
745
|
+
};
|
|
746
|
+
readonly rightLineColor: {
|
|
747
|
+
readonly type: "string";
|
|
748
|
+
};
|
|
749
|
+
readonly separatorLabelColor: {
|
|
750
|
+
readonly type: "string";
|
|
751
|
+
};
|
|
752
|
+
readonly showAtBreakpoint: {
|
|
753
|
+
readonly type: "string";
|
|
754
|
+
};
|
|
755
|
+
readonly spacing: {
|
|
756
|
+
readonly type: "object";
|
|
757
|
+
readonly properties: {
|
|
758
|
+
readonly unit: {
|
|
759
|
+
readonly type: "number";
|
|
760
|
+
};
|
|
761
|
+
readonly paddingHorizontal: {
|
|
762
|
+
readonly type: "string";
|
|
763
|
+
};
|
|
764
|
+
readonly paddingVertical: {
|
|
765
|
+
readonly type: "string";
|
|
766
|
+
};
|
|
767
|
+
readonly offsetTop: {
|
|
768
|
+
readonly type: "string";
|
|
769
|
+
};
|
|
770
|
+
readonly offsetLeft: {
|
|
771
|
+
readonly type: "string";
|
|
772
|
+
};
|
|
773
|
+
readonly offsetNesting: {
|
|
774
|
+
readonly type: "string";
|
|
775
|
+
};
|
|
776
|
+
};
|
|
777
|
+
};
|
|
778
|
+
readonly textColor: {
|
|
779
|
+
readonly type: "string";
|
|
780
|
+
};
|
|
781
|
+
readonly width: {
|
|
782
|
+
readonly type: "string";
|
|
783
|
+
};
|
|
784
|
+
readonly fontFamily: {
|
|
785
|
+
readonly type: "string";
|
|
786
|
+
};
|
|
787
|
+
readonly fontSize: {
|
|
788
|
+
readonly type: "string";
|
|
789
|
+
};
|
|
790
|
+
readonly fontWeight: {
|
|
791
|
+
readonly type: "string";
|
|
792
|
+
};
|
|
793
|
+
readonly lineHeight: {
|
|
794
|
+
readonly type: "string";
|
|
795
|
+
};
|
|
796
|
+
};
|
|
797
|
+
};
|
|
798
|
+
readonly spacing: {
|
|
799
|
+
readonly type: "object";
|
|
800
|
+
readonly properties: {
|
|
801
|
+
readonly sectionHorizontal: {
|
|
802
|
+
readonly type: "number";
|
|
803
|
+
};
|
|
804
|
+
readonly sectionVertical: {
|
|
805
|
+
readonly type: "number";
|
|
806
|
+
};
|
|
807
|
+
readonly unit: {
|
|
808
|
+
readonly type: "number";
|
|
809
|
+
};
|
|
810
|
+
};
|
|
811
|
+
};
|
|
812
|
+
readonly typography: {
|
|
813
|
+
readonly type: "object";
|
|
814
|
+
readonly properties: {
|
|
815
|
+
readonly fontWeightBold: {
|
|
816
|
+
readonly type: "string";
|
|
817
|
+
};
|
|
818
|
+
readonly fontWeightLight: {
|
|
819
|
+
readonly type: "string";
|
|
820
|
+
};
|
|
821
|
+
readonly fontWeightRegular: {
|
|
822
|
+
readonly type: "string";
|
|
823
|
+
};
|
|
824
|
+
readonly heading1: {
|
|
825
|
+
readonly type: "object";
|
|
826
|
+
readonly properties: {
|
|
827
|
+
readonly color: {
|
|
828
|
+
readonly type: "string";
|
|
829
|
+
};
|
|
830
|
+
readonly transform: {
|
|
831
|
+
readonly type: "string";
|
|
832
|
+
};
|
|
833
|
+
readonly fontFamily: {
|
|
834
|
+
readonly type: "string";
|
|
835
|
+
};
|
|
836
|
+
readonly fontSize: {
|
|
837
|
+
readonly type: "string";
|
|
838
|
+
};
|
|
839
|
+
readonly fontWeight: {
|
|
840
|
+
readonly type: "string";
|
|
841
|
+
};
|
|
842
|
+
readonly lineHeight: {
|
|
843
|
+
readonly type: "string";
|
|
844
|
+
};
|
|
845
|
+
};
|
|
846
|
+
};
|
|
847
|
+
readonly heading2: {
|
|
848
|
+
readonly type: "object";
|
|
849
|
+
readonly properties: {
|
|
850
|
+
readonly color: {
|
|
851
|
+
readonly type: "string";
|
|
852
|
+
};
|
|
853
|
+
readonly transform: {
|
|
854
|
+
readonly type: "string";
|
|
855
|
+
};
|
|
856
|
+
readonly fontFamily: {
|
|
857
|
+
readonly type: "string";
|
|
858
|
+
};
|
|
859
|
+
readonly fontSize: {
|
|
860
|
+
readonly type: "string";
|
|
861
|
+
};
|
|
862
|
+
readonly fontWeight: {
|
|
863
|
+
readonly type: "string";
|
|
864
|
+
};
|
|
865
|
+
readonly lineHeight: {
|
|
866
|
+
readonly type: "string";
|
|
867
|
+
};
|
|
868
|
+
};
|
|
869
|
+
};
|
|
870
|
+
readonly heading3: {
|
|
871
|
+
readonly type: "object";
|
|
872
|
+
readonly properties: {
|
|
873
|
+
readonly color: {
|
|
874
|
+
readonly type: "string";
|
|
875
|
+
};
|
|
876
|
+
readonly transform: {
|
|
877
|
+
readonly type: "string";
|
|
878
|
+
};
|
|
879
|
+
readonly fontFamily: {
|
|
880
|
+
readonly type: "string";
|
|
881
|
+
};
|
|
882
|
+
readonly fontSize: {
|
|
883
|
+
readonly type: "string";
|
|
884
|
+
};
|
|
885
|
+
readonly fontWeight: {
|
|
886
|
+
readonly type: "string";
|
|
887
|
+
};
|
|
888
|
+
readonly lineHeight: {
|
|
889
|
+
readonly type: "string";
|
|
890
|
+
};
|
|
891
|
+
};
|
|
892
|
+
};
|
|
893
|
+
readonly headings: {
|
|
894
|
+
readonly type: "object";
|
|
895
|
+
readonly properties: {
|
|
896
|
+
readonly fontFamily: {
|
|
897
|
+
readonly type: "string";
|
|
898
|
+
};
|
|
899
|
+
readonly fontSize: {
|
|
900
|
+
readonly type: "string";
|
|
901
|
+
};
|
|
902
|
+
readonly fontWeight: {
|
|
903
|
+
readonly type: "string";
|
|
904
|
+
};
|
|
905
|
+
readonly lineHeight: {
|
|
906
|
+
readonly type: "string";
|
|
907
|
+
};
|
|
908
|
+
};
|
|
909
|
+
};
|
|
910
|
+
readonly lineHeight: {
|
|
911
|
+
readonly type: "string";
|
|
912
|
+
};
|
|
913
|
+
readonly links: {
|
|
914
|
+
readonly type: "object";
|
|
915
|
+
readonly properties: {
|
|
916
|
+
readonly color: {
|
|
917
|
+
readonly type: "string";
|
|
918
|
+
};
|
|
919
|
+
readonly hover: {
|
|
920
|
+
readonly type: "string";
|
|
921
|
+
};
|
|
922
|
+
readonly textDecoration: {
|
|
923
|
+
readonly type: "string";
|
|
924
|
+
};
|
|
925
|
+
readonly hoverTextDecoration: {
|
|
926
|
+
readonly type: "string";
|
|
927
|
+
};
|
|
928
|
+
readonly visited: {
|
|
929
|
+
readonly type: "string";
|
|
930
|
+
};
|
|
931
|
+
};
|
|
932
|
+
};
|
|
933
|
+
readonly optimizeSpeed: {
|
|
934
|
+
readonly type: "boolean";
|
|
935
|
+
};
|
|
936
|
+
readonly rightPanelHeading: {
|
|
937
|
+
readonly type: "object";
|
|
938
|
+
readonly properties: {
|
|
939
|
+
readonly color: {
|
|
940
|
+
readonly type: "string";
|
|
941
|
+
};
|
|
942
|
+
readonly transform: {
|
|
943
|
+
readonly type: "string";
|
|
944
|
+
};
|
|
945
|
+
readonly fontFamily: {
|
|
946
|
+
readonly type: "string";
|
|
947
|
+
};
|
|
948
|
+
readonly fontSize: {
|
|
949
|
+
readonly type: "string";
|
|
950
|
+
};
|
|
951
|
+
readonly fontWeight: {
|
|
952
|
+
readonly type: "string";
|
|
953
|
+
};
|
|
954
|
+
readonly lineHeight: {
|
|
955
|
+
readonly type: "string";
|
|
956
|
+
};
|
|
957
|
+
};
|
|
958
|
+
};
|
|
959
|
+
readonly smoothing: {
|
|
960
|
+
readonly type: "string";
|
|
961
|
+
readonly enum: readonly ["auto", "none", "antialiased", "subpixel-antialiased", "grayscale"];
|
|
962
|
+
};
|
|
963
|
+
readonly fontFamily: {
|
|
964
|
+
readonly type: "string";
|
|
965
|
+
};
|
|
966
|
+
readonly fontSize: {
|
|
967
|
+
readonly type: "string";
|
|
968
|
+
};
|
|
969
|
+
readonly fontWeight: {
|
|
970
|
+
readonly type: "string";
|
|
971
|
+
};
|
|
972
|
+
readonly code: {
|
|
973
|
+
readonly type: "object";
|
|
974
|
+
readonly properties: {
|
|
975
|
+
readonly backgroundColor: {
|
|
976
|
+
readonly type: "string";
|
|
977
|
+
};
|
|
978
|
+
readonly color: {
|
|
979
|
+
readonly type: "string";
|
|
980
|
+
};
|
|
981
|
+
readonly wordBreak: {
|
|
982
|
+
readonly type: "string";
|
|
983
|
+
readonly enum: readonly ["break-all", "break-word", "keep-all", "normal", "revert", "unset", "inherit", "initial"];
|
|
984
|
+
};
|
|
985
|
+
readonly wrap: {
|
|
986
|
+
readonly type: "boolean";
|
|
987
|
+
};
|
|
988
|
+
readonly fontFamily: {
|
|
989
|
+
readonly type: "string";
|
|
990
|
+
};
|
|
991
|
+
readonly fontSize: {
|
|
992
|
+
readonly type: "string";
|
|
993
|
+
};
|
|
994
|
+
readonly fontWeight: {
|
|
995
|
+
readonly type: "string";
|
|
996
|
+
};
|
|
997
|
+
readonly lineHeight: {
|
|
998
|
+
readonly type: "string";
|
|
999
|
+
};
|
|
1000
|
+
};
|
|
1001
|
+
};
|
|
1002
|
+
readonly fieldName: {
|
|
1003
|
+
readonly type: "object";
|
|
1004
|
+
readonly properties: {
|
|
1005
|
+
readonly fontFamily: {
|
|
1006
|
+
readonly type: "string";
|
|
1007
|
+
};
|
|
1008
|
+
readonly fontSize: {
|
|
1009
|
+
readonly type: "string";
|
|
1010
|
+
};
|
|
1011
|
+
readonly fontWeight: {
|
|
1012
|
+
readonly type: "string";
|
|
1013
|
+
};
|
|
1014
|
+
readonly lineHeight: {
|
|
1015
|
+
readonly type: "string";
|
|
1016
|
+
};
|
|
1017
|
+
};
|
|
1018
|
+
};
|
|
1019
|
+
};
|
|
1020
|
+
};
|
|
1021
|
+
readonly links: {
|
|
1022
|
+
readonly properties: {
|
|
1023
|
+
readonly color: {
|
|
1024
|
+
readonly type: "string";
|
|
1025
|
+
};
|
|
1026
|
+
};
|
|
1027
|
+
};
|
|
1028
|
+
readonly codeSample: {
|
|
1029
|
+
readonly properties: {
|
|
1030
|
+
readonly backgroundColor: {
|
|
1031
|
+
readonly type: "string";
|
|
1032
|
+
};
|
|
1033
|
+
};
|
|
1034
|
+
};
|
|
1035
|
+
};
|
|
1036
|
+
};
|
|
1037
|
+
readonly ctrlFHijack: {
|
|
1038
|
+
readonly type: "boolean";
|
|
1039
|
+
};
|
|
1040
|
+
readonly defaultSampleLanguage: {
|
|
1041
|
+
readonly type: "string";
|
|
1042
|
+
};
|
|
1043
|
+
readonly disableDeepLinks: {
|
|
1044
|
+
readonly type: "boolean";
|
|
1045
|
+
};
|
|
1046
|
+
readonly disableSearch: {
|
|
1047
|
+
readonly type: "boolean";
|
|
1048
|
+
};
|
|
1049
|
+
readonly disableSidebar: {
|
|
1050
|
+
readonly type: "boolean";
|
|
1051
|
+
};
|
|
1052
|
+
readonly downloadDefinitionUrl: {
|
|
1053
|
+
readonly type: "string";
|
|
1054
|
+
};
|
|
1055
|
+
readonly expandDefaultServerVariables: {
|
|
1056
|
+
readonly type: "boolean";
|
|
1057
|
+
};
|
|
1058
|
+
readonly enumSkipQuotes: {
|
|
1059
|
+
readonly type: "boolean";
|
|
1060
|
+
};
|
|
1061
|
+
readonly expandDefaultRequest: {
|
|
1062
|
+
readonly type: "boolean";
|
|
1063
|
+
};
|
|
1064
|
+
readonly expandDefaultResponse: {
|
|
1065
|
+
readonly type: "boolean";
|
|
1066
|
+
};
|
|
1067
|
+
readonly expandResponses: {
|
|
1068
|
+
readonly type: "string";
|
|
1069
|
+
};
|
|
1070
|
+
readonly expandSingleSchemaField: {
|
|
1071
|
+
readonly type: "boolean";
|
|
1072
|
+
};
|
|
1073
|
+
readonly generateCodeSamples: {
|
|
1074
|
+
readonly type: "object";
|
|
1075
|
+
readonly properties: {
|
|
1076
|
+
readonly skipOptionalParameters: {
|
|
1077
|
+
readonly type: "boolean";
|
|
1078
|
+
};
|
|
1079
|
+
readonly languages: {
|
|
1080
|
+
readonly type: "array";
|
|
1081
|
+
readonly items: {
|
|
1082
|
+
readonly type: "object";
|
|
1083
|
+
readonly properties: {
|
|
1084
|
+
readonly label: {
|
|
1085
|
+
readonly type: "string";
|
|
1086
|
+
};
|
|
1087
|
+
readonly lang: {
|
|
1088
|
+
readonly enum: readonly ["curl", "C#", "Go", "Java", "Java8+Apache", "JavaScript", "Node.js", "PHP", "Python", "R", "Ruby"];
|
|
1089
|
+
};
|
|
1090
|
+
};
|
|
1091
|
+
readonly required: readonly ["lang"];
|
|
1092
|
+
};
|
|
1093
|
+
};
|
|
1094
|
+
};
|
|
1095
|
+
readonly required: readonly ["languages"];
|
|
1096
|
+
};
|
|
1097
|
+
readonly generatedPayloadSamplesMaxDepth: {
|
|
1098
|
+
readonly type: "number";
|
|
1099
|
+
};
|
|
1100
|
+
readonly hideDownloadButton: {
|
|
1101
|
+
readonly type: "boolean";
|
|
1102
|
+
};
|
|
1103
|
+
readonly hideHostname: {
|
|
1104
|
+
readonly type: "boolean";
|
|
1105
|
+
};
|
|
1106
|
+
readonly hideInfoSection: {
|
|
1107
|
+
readonly type: "boolean";
|
|
1108
|
+
};
|
|
1109
|
+
readonly hideLogo: {
|
|
1110
|
+
readonly type: "boolean";
|
|
1111
|
+
};
|
|
1112
|
+
readonly hideRequestPayloadSample: {
|
|
1113
|
+
readonly type: "boolean";
|
|
1114
|
+
};
|
|
1115
|
+
readonly hideRightPanel: {
|
|
1116
|
+
readonly type: "boolean";
|
|
1117
|
+
};
|
|
1118
|
+
readonly hideSchemaPattern: {
|
|
1119
|
+
readonly type: "boolean";
|
|
1120
|
+
};
|
|
1121
|
+
readonly hideSingleRequestSampleTab: {
|
|
1122
|
+
readonly type: "boolean";
|
|
1123
|
+
};
|
|
1124
|
+
readonly hideSecuritySection: {
|
|
1125
|
+
readonly type: "boolean";
|
|
1126
|
+
};
|
|
1127
|
+
readonly hideTryItPanel: {
|
|
1128
|
+
readonly type: "boolean";
|
|
1129
|
+
};
|
|
1130
|
+
readonly hideFab: {
|
|
1131
|
+
readonly type: "boolean";
|
|
1132
|
+
};
|
|
1133
|
+
readonly hideOneOfDescription: {
|
|
1134
|
+
readonly type: "boolean";
|
|
1135
|
+
};
|
|
1136
|
+
readonly htmlTemplate: {
|
|
1137
|
+
readonly type: "string";
|
|
1138
|
+
};
|
|
1139
|
+
readonly jsonSampleExpandLevel: {
|
|
1140
|
+
readonly oneOf: readonly [{
|
|
1141
|
+
readonly type: "number";
|
|
1142
|
+
readonly minimum: 1;
|
|
1143
|
+
}, {
|
|
1144
|
+
readonly type: "string";
|
|
1145
|
+
}];
|
|
1146
|
+
};
|
|
1147
|
+
readonly labels: {
|
|
1148
|
+
readonly type: "object";
|
|
1149
|
+
readonly properties: {
|
|
1150
|
+
readonly enum: {
|
|
1151
|
+
readonly type: "string";
|
|
1152
|
+
};
|
|
1153
|
+
readonly enumSingleValue: {
|
|
1154
|
+
readonly type: "string";
|
|
1155
|
+
};
|
|
1156
|
+
readonly enumArray: {
|
|
1157
|
+
readonly type: "string";
|
|
1158
|
+
};
|
|
1159
|
+
readonly default: {
|
|
1160
|
+
readonly type: "string";
|
|
1161
|
+
};
|
|
1162
|
+
readonly deprecated: {
|
|
1163
|
+
readonly type: "string";
|
|
1164
|
+
};
|
|
1165
|
+
readonly example: {
|
|
1166
|
+
readonly type: "string";
|
|
1167
|
+
};
|
|
1168
|
+
readonly examples: {
|
|
1169
|
+
readonly type: "string";
|
|
1170
|
+
};
|
|
1171
|
+
readonly nullable: {
|
|
1172
|
+
readonly type: "string";
|
|
1173
|
+
};
|
|
1174
|
+
readonly recursive: {
|
|
1175
|
+
readonly type: "string";
|
|
1176
|
+
};
|
|
1177
|
+
readonly arrayOf: {
|
|
1178
|
+
readonly type: "string";
|
|
1179
|
+
};
|
|
1180
|
+
readonly webhook: {
|
|
1181
|
+
readonly type: "string";
|
|
1182
|
+
};
|
|
1183
|
+
readonly authorizations: {
|
|
1184
|
+
readonly type: "string";
|
|
1185
|
+
};
|
|
1186
|
+
readonly tryItAuthBasicUsername: {
|
|
1187
|
+
readonly type: "string";
|
|
1188
|
+
};
|
|
1189
|
+
readonly tryItAuthBasicPassword: {
|
|
1190
|
+
readonly type: "string";
|
|
1191
|
+
};
|
|
1192
|
+
};
|
|
1193
|
+
};
|
|
1194
|
+
readonly menuToggle: {
|
|
1195
|
+
readonly type: "boolean";
|
|
1196
|
+
};
|
|
1197
|
+
readonly nativeScrollbars: {
|
|
1198
|
+
readonly type: "boolean";
|
|
1199
|
+
};
|
|
1200
|
+
readonly noAutoAuth: {
|
|
1201
|
+
readonly type: "boolean";
|
|
1202
|
+
};
|
|
1203
|
+
readonly onDeepLinkClick: {
|
|
1204
|
+
readonly type: "object";
|
|
1205
|
+
};
|
|
1206
|
+
readonly pagination: {
|
|
1207
|
+
readonly enum: readonly ["none", "section", "item"];
|
|
1208
|
+
};
|
|
1209
|
+
readonly pathInMiddlePanel: {
|
|
1210
|
+
readonly type: "boolean";
|
|
1211
|
+
};
|
|
1212
|
+
readonly payloadSampleIdx: {
|
|
1213
|
+
readonly type: "number";
|
|
1214
|
+
readonly minimum: 0;
|
|
1215
|
+
};
|
|
1216
|
+
readonly requestInterceptor: {
|
|
1217
|
+
readonly type: "object";
|
|
1218
|
+
};
|
|
1219
|
+
readonly requiredPropsFirst: {
|
|
1220
|
+
readonly type: "boolean";
|
|
1221
|
+
};
|
|
1222
|
+
readonly routingStrategy: {
|
|
1223
|
+
readonly type: "string";
|
|
1224
|
+
};
|
|
1225
|
+
readonly samplesTabsMaxCount: {
|
|
1226
|
+
readonly type: "number";
|
|
1227
|
+
};
|
|
1228
|
+
readonly schemaExpansionLevel: {
|
|
1229
|
+
readonly oneOf: readonly [{
|
|
1230
|
+
readonly type: "number";
|
|
1231
|
+
readonly minimum: 0;
|
|
1232
|
+
}, {
|
|
1233
|
+
readonly type: "string";
|
|
1234
|
+
}];
|
|
1235
|
+
};
|
|
1236
|
+
readonly minCharacterLengthToInitSearch: {
|
|
1237
|
+
readonly type: "number";
|
|
1238
|
+
readonly minimum: 1;
|
|
1239
|
+
};
|
|
1240
|
+
readonly maxResponseHeadersToShowInTryIt: {
|
|
1241
|
+
readonly type: "number";
|
|
1242
|
+
readonly minimum: 0;
|
|
1243
|
+
};
|
|
1244
|
+
readonly scrollYOffset: {
|
|
1245
|
+
readonly oneOf: readonly [{
|
|
1246
|
+
readonly type: "number";
|
|
1247
|
+
}, {
|
|
1248
|
+
readonly type: "string";
|
|
1249
|
+
}];
|
|
1250
|
+
};
|
|
1251
|
+
readonly searchAutoExpand: {
|
|
1252
|
+
readonly type: "boolean";
|
|
1253
|
+
};
|
|
1254
|
+
readonly searchFieldLevelBoost: {
|
|
1255
|
+
readonly type: "number";
|
|
1256
|
+
readonly minimum: 0;
|
|
1257
|
+
};
|
|
1258
|
+
readonly searchMaxDepth: {
|
|
1259
|
+
readonly type: "number";
|
|
1260
|
+
readonly minimum: 1;
|
|
1261
|
+
};
|
|
1262
|
+
readonly searchMode: {
|
|
1263
|
+
readonly type: "string";
|
|
1264
|
+
readonly enum: readonly ["default", "path-only"];
|
|
1265
|
+
};
|
|
1266
|
+
readonly searchOperationTitleBoost: {
|
|
1267
|
+
readonly type: "number";
|
|
1268
|
+
};
|
|
1269
|
+
readonly searchTagTitleBoost: {
|
|
1270
|
+
readonly type: "number";
|
|
1271
|
+
};
|
|
1272
|
+
readonly sendXUserAgentInTryIt: {
|
|
1273
|
+
readonly type: "boolean";
|
|
1274
|
+
};
|
|
1275
|
+
readonly showChangeLayoutButton: {
|
|
1276
|
+
readonly type: "boolean";
|
|
1277
|
+
};
|
|
1278
|
+
readonly showConsole: {
|
|
1279
|
+
readonly type: "boolean";
|
|
1280
|
+
};
|
|
1281
|
+
readonly showNextButton: {
|
|
1282
|
+
readonly type: "boolean";
|
|
1283
|
+
};
|
|
1284
|
+
readonly showRightPanelToggle: {
|
|
1285
|
+
readonly type: "boolean";
|
|
1286
|
+
};
|
|
1287
|
+
readonly showSecuritySchemeType: {
|
|
1288
|
+
readonly type: "boolean";
|
|
1289
|
+
};
|
|
1290
|
+
readonly showWebhookVerb: {
|
|
1291
|
+
readonly type: "boolean";
|
|
1292
|
+
};
|
|
1293
|
+
readonly showObjectSchemaExamples: {
|
|
1294
|
+
readonly type: "boolean";
|
|
1295
|
+
};
|
|
1296
|
+
readonly disableTryItRequestUrlEncoding: {
|
|
1297
|
+
readonly type: "boolean";
|
|
1298
|
+
};
|
|
1299
|
+
readonly sidebarLinks: {
|
|
1300
|
+
readonly type: "object";
|
|
1301
|
+
readonly properties: {
|
|
1302
|
+
readonly beforeInfo: {
|
|
1303
|
+
readonly type: "array";
|
|
1304
|
+
readonly items: {
|
|
1305
|
+
readonly type: "object";
|
|
1306
|
+
readonly properties: {
|
|
1307
|
+
readonly label: {
|
|
1308
|
+
readonly type: "string";
|
|
1309
|
+
};
|
|
1310
|
+
readonly link: {
|
|
1311
|
+
readonly type: "string";
|
|
1312
|
+
};
|
|
1313
|
+
readonly target: {
|
|
1314
|
+
readonly type: "string";
|
|
1315
|
+
};
|
|
1316
|
+
};
|
|
1317
|
+
readonly required: readonly ["label", "link"];
|
|
1318
|
+
};
|
|
1319
|
+
};
|
|
1320
|
+
readonly end: {
|
|
1321
|
+
readonly type: "array";
|
|
1322
|
+
readonly items: {
|
|
1323
|
+
readonly type: "object";
|
|
1324
|
+
readonly properties: {
|
|
1325
|
+
readonly label: {
|
|
1326
|
+
readonly type: "string";
|
|
1327
|
+
};
|
|
1328
|
+
readonly link: {
|
|
1329
|
+
readonly type: "string";
|
|
1330
|
+
};
|
|
1331
|
+
readonly target: {
|
|
1332
|
+
readonly type: "string";
|
|
1333
|
+
};
|
|
1334
|
+
};
|
|
1335
|
+
readonly required: readonly ["label", "link"];
|
|
1336
|
+
};
|
|
1337
|
+
};
|
|
1338
|
+
};
|
|
1339
|
+
};
|
|
1340
|
+
readonly sideNavStyle: {
|
|
1341
|
+
readonly type: "string";
|
|
1342
|
+
readonly enum: readonly ["summary-only", "path-first", "id-only"];
|
|
1343
|
+
};
|
|
1344
|
+
readonly simpleOneOfTypeLabel: {
|
|
1345
|
+
readonly type: "boolean";
|
|
1346
|
+
};
|
|
1347
|
+
readonly sortEnumValuesAlphabetically: {
|
|
1348
|
+
readonly type: "boolean";
|
|
1349
|
+
};
|
|
1350
|
+
readonly sortOperationsAlphabetically: {
|
|
1351
|
+
readonly type: "boolean";
|
|
1352
|
+
};
|
|
1353
|
+
readonly sortPropsAlphabetically: {
|
|
1354
|
+
readonly type: "boolean";
|
|
1355
|
+
};
|
|
1356
|
+
readonly sortTagsAlphabetically: {
|
|
1357
|
+
readonly type: "boolean";
|
|
1358
|
+
};
|
|
1359
|
+
readonly suppressWarnings: {
|
|
1360
|
+
readonly type: "boolean";
|
|
1361
|
+
};
|
|
1362
|
+
readonly unstable_externalDescription: {
|
|
1363
|
+
readonly type: "boolean";
|
|
1364
|
+
};
|
|
1365
|
+
readonly unstable_ignoreMimeParameters: {
|
|
1366
|
+
readonly type: "boolean";
|
|
1367
|
+
};
|
|
1368
|
+
readonly untrustedDefinition: {
|
|
1369
|
+
readonly type: "boolean";
|
|
1370
|
+
};
|
|
1371
|
+
readonly showAccessMode: {
|
|
1372
|
+
readonly type: "boolean";
|
|
1373
|
+
};
|
|
1374
|
+
readonly preserveOriginalExtensionsName: {
|
|
1375
|
+
readonly type: "boolean";
|
|
1376
|
+
};
|
|
1377
|
+
readonly markdownHeadingsAnchorLevel: {
|
|
1378
|
+
readonly type: "number";
|
|
1379
|
+
};
|
|
1380
|
+
};
|
|
1381
|
+
readonly additionalProperties: false;
|
|
1382
|
+
};
|
|
1383
|
+
export type DeprecatedRefDocsConfig = FromSchema<typeof deprecatedRefDocsSchema>;
|