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