@redocly/config 0.48.2 → 0.49.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +3360 -3308
- 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 +3022 -2993
- 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 +51975 -51520
- 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 +3360 -3308
- 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 +3022 -2993
- 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 +51975 -51520
- package/lib-esm/scorecards-config-schema.d.ts +405 -405
- package/package.json +9 -9
|
@@ -1,269 +1,269 @@
|
|
|
1
1
|
export declare const reasonsSettings: {
|
|
2
|
-
readonly type:
|
|
2
|
+
readonly type: 'object';
|
|
3
3
|
readonly properties: {
|
|
4
4
|
readonly hide: {
|
|
5
|
-
readonly type:
|
|
5
|
+
readonly type: 'boolean';
|
|
6
6
|
readonly default: false;
|
|
7
7
|
};
|
|
8
8
|
readonly component: {
|
|
9
|
-
readonly type:
|
|
10
|
-
readonly enum: readonly [
|
|
11
|
-
readonly default:
|
|
9
|
+
readonly type: 'string';
|
|
10
|
+
readonly enum: readonly ['radio', 'checkbox'];
|
|
11
|
+
readonly default: 'checkbox';
|
|
12
12
|
};
|
|
13
13
|
readonly label: {
|
|
14
|
-
readonly type:
|
|
14
|
+
readonly type: 'string';
|
|
15
15
|
};
|
|
16
16
|
readonly items: {
|
|
17
|
-
readonly type:
|
|
17
|
+
readonly type: 'array';
|
|
18
18
|
readonly items: {
|
|
19
|
-
readonly type:
|
|
19
|
+
readonly type: 'string';
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
22
|
};
|
|
23
23
|
readonly additionalProperties: false;
|
|
24
24
|
};
|
|
25
25
|
export declare const optionalEmailSettings: {
|
|
26
|
-
readonly type:
|
|
26
|
+
readonly type: 'object';
|
|
27
27
|
readonly properties: {
|
|
28
28
|
readonly hide: {
|
|
29
|
-
readonly type:
|
|
29
|
+
readonly type: 'boolean';
|
|
30
30
|
readonly default: false;
|
|
31
31
|
};
|
|
32
32
|
readonly label: {
|
|
33
|
-
readonly type:
|
|
33
|
+
readonly type: 'string';
|
|
34
34
|
};
|
|
35
35
|
readonly placeholder: {
|
|
36
|
-
readonly type:
|
|
36
|
+
readonly type: 'string';
|
|
37
37
|
};
|
|
38
38
|
};
|
|
39
39
|
readonly additionalProperties: false;
|
|
40
40
|
};
|
|
41
41
|
export declare const feedbackConfigSchema: {
|
|
42
|
-
readonly type:
|
|
42
|
+
readonly type: 'object';
|
|
43
43
|
readonly properties: {
|
|
44
44
|
readonly hide: {
|
|
45
|
-
readonly type:
|
|
45
|
+
readonly type: 'boolean';
|
|
46
46
|
readonly default: false;
|
|
47
47
|
};
|
|
48
48
|
readonly type: {
|
|
49
|
-
readonly type:
|
|
50
|
-
readonly enum: readonly [
|
|
51
|
-
readonly default:
|
|
49
|
+
readonly type: 'string';
|
|
50
|
+
readonly enum: readonly ['rating', 'sentiment', 'comment', 'reasons', 'mood', 'scale'];
|
|
51
|
+
readonly default: 'sentiment';
|
|
52
52
|
};
|
|
53
53
|
readonly settings: {
|
|
54
|
-
readonly type:
|
|
54
|
+
readonly type: 'object';
|
|
55
55
|
readonly properties: {
|
|
56
56
|
readonly label: {
|
|
57
|
-
readonly type:
|
|
57
|
+
readonly type: 'string';
|
|
58
58
|
};
|
|
59
59
|
readonly submitText: {
|
|
60
|
-
readonly type:
|
|
60
|
+
readonly type: 'string';
|
|
61
61
|
};
|
|
62
62
|
readonly buttonText: {
|
|
63
|
-
readonly type:
|
|
63
|
+
readonly type: 'string';
|
|
64
64
|
};
|
|
65
65
|
readonly component: {
|
|
66
|
-
readonly type:
|
|
67
|
-
readonly enum: readonly [
|
|
68
|
-
readonly default:
|
|
66
|
+
readonly type: 'string';
|
|
67
|
+
readonly enum: readonly ['radio', 'checkbox'];
|
|
68
|
+
readonly default: 'checkbox';
|
|
69
69
|
};
|
|
70
70
|
readonly items: {
|
|
71
|
-
readonly type:
|
|
71
|
+
readonly type: 'array';
|
|
72
72
|
readonly items: {
|
|
73
|
-
readonly type:
|
|
73
|
+
readonly type: 'string';
|
|
74
74
|
};
|
|
75
75
|
readonly minItems: 1;
|
|
76
76
|
};
|
|
77
77
|
readonly leftScaleLabel: {
|
|
78
|
-
readonly type:
|
|
78
|
+
readonly type: 'string';
|
|
79
79
|
};
|
|
80
80
|
readonly rightScaleLabel: {
|
|
81
|
-
readonly type:
|
|
81
|
+
readonly type: 'string';
|
|
82
82
|
};
|
|
83
83
|
readonly reasons: {
|
|
84
|
-
readonly type:
|
|
84
|
+
readonly type: 'object';
|
|
85
85
|
readonly properties: {
|
|
86
|
+
readonly hide: {
|
|
87
|
+
readonly type: 'boolean';
|
|
88
|
+
readonly default: false;
|
|
89
|
+
};
|
|
90
|
+
readonly component: {
|
|
91
|
+
readonly type: 'string';
|
|
92
|
+
readonly enum: readonly ['radio', 'checkbox'];
|
|
93
|
+
readonly default: 'checkbox';
|
|
94
|
+
};
|
|
95
|
+
readonly label: {
|
|
96
|
+
readonly type: 'string';
|
|
97
|
+
};
|
|
98
|
+
readonly items: {
|
|
99
|
+
readonly type: 'array';
|
|
100
|
+
readonly items: {
|
|
101
|
+
readonly type: 'string';
|
|
102
|
+
};
|
|
103
|
+
};
|
|
86
104
|
readonly like: {
|
|
87
|
-
readonly type:
|
|
105
|
+
readonly type: 'object';
|
|
88
106
|
readonly properties: {
|
|
89
107
|
readonly hide: {
|
|
90
|
-
readonly type:
|
|
108
|
+
readonly type: 'boolean';
|
|
91
109
|
readonly default: false;
|
|
92
110
|
};
|
|
93
111
|
readonly component: {
|
|
94
|
-
readonly type:
|
|
95
|
-
readonly enum: readonly [
|
|
96
|
-
readonly default:
|
|
112
|
+
readonly type: 'string';
|
|
113
|
+
readonly enum: readonly ['radio', 'checkbox'];
|
|
114
|
+
readonly default: 'checkbox';
|
|
97
115
|
};
|
|
98
116
|
readonly label: {
|
|
99
|
-
readonly type:
|
|
117
|
+
readonly type: 'string';
|
|
100
118
|
};
|
|
101
119
|
readonly items: {
|
|
102
|
-
readonly type:
|
|
120
|
+
readonly type: 'array';
|
|
103
121
|
readonly items: {
|
|
104
|
-
readonly type:
|
|
122
|
+
readonly type: 'string';
|
|
105
123
|
};
|
|
106
124
|
};
|
|
107
125
|
};
|
|
108
126
|
readonly additionalProperties: false;
|
|
109
127
|
};
|
|
110
128
|
readonly dislike: {
|
|
111
|
-
readonly type:
|
|
129
|
+
readonly type: 'object';
|
|
112
130
|
readonly properties: {
|
|
113
131
|
readonly hide: {
|
|
114
|
-
readonly type:
|
|
132
|
+
readonly type: 'boolean';
|
|
115
133
|
readonly default: false;
|
|
116
134
|
};
|
|
117
135
|
readonly component: {
|
|
118
|
-
readonly type:
|
|
119
|
-
readonly enum: readonly [
|
|
120
|
-
readonly default:
|
|
136
|
+
readonly type: 'string';
|
|
137
|
+
readonly enum: readonly ['radio', 'checkbox'];
|
|
138
|
+
readonly default: 'checkbox';
|
|
121
139
|
};
|
|
122
140
|
readonly label: {
|
|
123
|
-
readonly type:
|
|
141
|
+
readonly type: 'string';
|
|
124
142
|
};
|
|
125
143
|
readonly items: {
|
|
126
|
-
readonly type:
|
|
144
|
+
readonly type: 'array';
|
|
127
145
|
readonly items: {
|
|
128
|
-
readonly type:
|
|
146
|
+
readonly type: 'string';
|
|
129
147
|
};
|
|
130
148
|
};
|
|
131
149
|
};
|
|
132
150
|
readonly additionalProperties: false;
|
|
133
151
|
};
|
|
134
152
|
readonly satisfied: {
|
|
135
|
-
readonly type:
|
|
153
|
+
readonly type: 'object';
|
|
136
154
|
readonly properties: {
|
|
137
155
|
readonly hide: {
|
|
138
|
-
readonly type:
|
|
156
|
+
readonly type: 'boolean';
|
|
139
157
|
readonly default: false;
|
|
140
158
|
};
|
|
141
159
|
readonly component: {
|
|
142
|
-
readonly type:
|
|
143
|
-
readonly enum: readonly [
|
|
144
|
-
readonly default:
|
|
160
|
+
readonly type: 'string';
|
|
161
|
+
readonly enum: readonly ['radio', 'checkbox'];
|
|
162
|
+
readonly default: 'checkbox';
|
|
145
163
|
};
|
|
146
164
|
readonly label: {
|
|
147
|
-
readonly type:
|
|
165
|
+
readonly type: 'string';
|
|
148
166
|
};
|
|
149
167
|
readonly items: {
|
|
150
|
-
readonly type:
|
|
168
|
+
readonly type: 'array';
|
|
151
169
|
readonly items: {
|
|
152
|
-
readonly type:
|
|
170
|
+
readonly type: 'string';
|
|
153
171
|
};
|
|
154
172
|
};
|
|
155
173
|
};
|
|
156
174
|
readonly additionalProperties: false;
|
|
157
175
|
};
|
|
158
176
|
readonly neutral: {
|
|
159
|
-
readonly type:
|
|
177
|
+
readonly type: 'object';
|
|
160
178
|
readonly properties: {
|
|
161
179
|
readonly hide: {
|
|
162
|
-
readonly type:
|
|
180
|
+
readonly type: 'boolean';
|
|
163
181
|
readonly default: false;
|
|
164
182
|
};
|
|
165
183
|
readonly component: {
|
|
166
|
-
readonly type:
|
|
167
|
-
readonly enum: readonly [
|
|
168
|
-
readonly default:
|
|
184
|
+
readonly type: 'string';
|
|
185
|
+
readonly enum: readonly ['radio', 'checkbox'];
|
|
186
|
+
readonly default: 'checkbox';
|
|
169
187
|
};
|
|
170
188
|
readonly label: {
|
|
171
|
-
readonly type:
|
|
189
|
+
readonly type: 'string';
|
|
172
190
|
};
|
|
173
191
|
readonly items: {
|
|
174
|
-
readonly type:
|
|
192
|
+
readonly type: 'array';
|
|
175
193
|
readonly items: {
|
|
176
|
-
readonly type:
|
|
194
|
+
readonly type: 'string';
|
|
177
195
|
};
|
|
178
196
|
};
|
|
179
197
|
};
|
|
180
198
|
readonly additionalProperties: false;
|
|
181
199
|
};
|
|
182
200
|
readonly dissatisfied: {
|
|
183
|
-
readonly type:
|
|
201
|
+
readonly type: 'object';
|
|
184
202
|
readonly properties: {
|
|
185
203
|
readonly hide: {
|
|
186
|
-
readonly type:
|
|
204
|
+
readonly type: 'boolean';
|
|
187
205
|
readonly default: false;
|
|
188
206
|
};
|
|
189
207
|
readonly component: {
|
|
190
|
-
readonly type:
|
|
191
|
-
readonly enum: readonly [
|
|
192
|
-
readonly default:
|
|
208
|
+
readonly type: 'string';
|
|
209
|
+
readonly enum: readonly ['radio', 'checkbox'];
|
|
210
|
+
readonly default: 'checkbox';
|
|
193
211
|
};
|
|
194
212
|
readonly label: {
|
|
195
|
-
readonly type:
|
|
213
|
+
readonly type: 'string';
|
|
196
214
|
};
|
|
197
215
|
readonly items: {
|
|
198
|
-
readonly type:
|
|
216
|
+
readonly type: 'array';
|
|
199
217
|
readonly items: {
|
|
200
|
-
readonly type:
|
|
218
|
+
readonly type: 'string';
|
|
201
219
|
};
|
|
202
220
|
};
|
|
203
221
|
};
|
|
204
222
|
readonly additionalProperties: false;
|
|
205
223
|
};
|
|
206
|
-
readonly hide: {
|
|
207
|
-
readonly type: "boolean";
|
|
208
|
-
readonly default: false;
|
|
209
|
-
};
|
|
210
|
-
readonly component: {
|
|
211
|
-
readonly type: "string";
|
|
212
|
-
readonly enum: readonly ["radio", "checkbox"];
|
|
213
|
-
readonly default: "checkbox";
|
|
214
|
-
};
|
|
215
|
-
readonly label: {
|
|
216
|
-
readonly type: "string";
|
|
217
|
-
};
|
|
218
|
-
readonly items: {
|
|
219
|
-
readonly type: "array";
|
|
220
|
-
readonly items: {
|
|
221
|
-
readonly type: "string";
|
|
222
|
-
};
|
|
223
|
-
};
|
|
224
224
|
};
|
|
225
225
|
readonly additionalProperties: false;
|
|
226
226
|
};
|
|
227
227
|
readonly comment: {
|
|
228
|
-
readonly type:
|
|
228
|
+
readonly type: 'object';
|
|
229
229
|
readonly properties: {
|
|
230
230
|
readonly hide: {
|
|
231
|
-
readonly type:
|
|
231
|
+
readonly type: 'boolean';
|
|
232
232
|
readonly default: false;
|
|
233
233
|
};
|
|
234
234
|
readonly label: {
|
|
235
|
-
readonly type:
|
|
235
|
+
readonly type: 'string';
|
|
236
236
|
};
|
|
237
237
|
readonly likeLabel: {
|
|
238
|
-
readonly type:
|
|
238
|
+
readonly type: 'string';
|
|
239
239
|
};
|
|
240
240
|
readonly dislikeLabel: {
|
|
241
|
-
readonly type:
|
|
241
|
+
readonly type: 'string';
|
|
242
242
|
};
|
|
243
243
|
readonly satisfiedLabel: {
|
|
244
|
-
readonly type:
|
|
244
|
+
readonly type: 'string';
|
|
245
245
|
};
|
|
246
246
|
readonly neutralLabel: {
|
|
247
|
-
readonly type:
|
|
247
|
+
readonly type: 'string';
|
|
248
248
|
};
|
|
249
249
|
readonly dissatisfiedLabel: {
|
|
250
|
-
readonly type:
|
|
250
|
+
readonly type: 'string';
|
|
251
251
|
};
|
|
252
252
|
};
|
|
253
253
|
readonly additionalProperties: false;
|
|
254
254
|
};
|
|
255
255
|
readonly optionalEmail: {
|
|
256
|
-
readonly type:
|
|
256
|
+
readonly type: 'object';
|
|
257
257
|
readonly properties: {
|
|
258
258
|
readonly hide: {
|
|
259
|
-
readonly type:
|
|
259
|
+
readonly type: 'boolean';
|
|
260
260
|
readonly default: false;
|
|
261
261
|
};
|
|
262
262
|
readonly label: {
|
|
263
|
-
readonly type:
|
|
263
|
+
readonly type: 'string';
|
|
264
264
|
};
|
|
265
265
|
readonly placeholder: {
|
|
266
|
-
readonly type:
|
|
266
|
+
readonly type: 'string';
|
|
267
267
|
};
|
|
268
268
|
};
|
|
269
269
|
readonly additionalProperties: false;
|