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