@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.
Files changed (41) hide show
  1. package/lib/asyncapi-config-schema.d.ts +106 -106
  2. package/lib/common.d.ts +158 -135
  3. package/lib/constants/config.d.ts +10 -10
  4. package/lib/constants/entities.d.ts +21 -43
  5. package/lib/constants/identity-provider-slug.d.ts +8 -0
  6. package/lib/default-theme-config-schema.d.ts +3534 -3488
  7. package/lib/entities-catalog-config-schema.d.ts +469 -469
  8. package/lib/entities-catalog-entity-file-schema.d.ts +441 -441
  9. package/lib/ex-theme-config-schemas.d.ts +3020 -2997
  10. package/lib/feedback-config-schema.d.ts +99 -99
  11. package/lib/graphql-config-schema.d.ts +165 -165
  12. package/lib/index.d.ts +1 -0
  13. package/lib/index.js +1 -1
  14. package/lib/product-override-schema.d.ts +11541 -11518
  15. package/lib/redoc-config-schema.d.ts +155 -155
  16. package/lib/reference-docs-config-schema.d.ts +481 -481
  17. package/lib/reunite-config-schema.d.ts +41 -41
  18. package/lib/root-config-schema.d.ts +52200 -51598
  19. package/lib/scorecards-config-schema.d.ts +405 -405
  20. package/lib/types/config-types.d.ts +5 -1
  21. package/lib-esm/asyncapi-config-schema.d.ts +106 -106
  22. package/lib-esm/common.d.ts +158 -135
  23. package/lib-esm/constants/config.d.ts +10 -10
  24. package/lib-esm/constants/entities.d.ts +21 -43
  25. package/lib-esm/constants/identity-provider-slug.d.ts +8 -0
  26. package/lib-esm/default-theme-config-schema.d.ts +3534 -3488
  27. package/lib-esm/entities-catalog-config-schema.d.ts +469 -469
  28. package/lib-esm/entities-catalog-entity-file-schema.d.ts +441 -441
  29. package/lib-esm/ex-theme-config-schemas.d.ts +3020 -2997
  30. package/lib-esm/feedback-config-schema.d.ts +99 -99
  31. package/lib-esm/graphql-config-schema.d.ts +165 -165
  32. package/lib-esm/index.d.ts +1 -0
  33. package/lib-esm/index.js +1 -1
  34. package/lib-esm/product-override-schema.d.ts +11541 -11518
  35. package/lib-esm/redoc-config-schema.d.ts +155 -155
  36. package/lib-esm/reference-docs-config-schema.d.ts +481 -481
  37. package/lib-esm/reunite-config-schema.d.ts +41 -41
  38. package/lib-esm/root-config-schema.d.ts +52200 -51598
  39. package/lib-esm/scorecards-config-schema.d.ts +405 -405
  40. package/lib-esm/types/config-types.d.ts +5 -1
  41. package/package.json +9 -9
@@ -1,269 +1,269 @@
1
1
  export declare const reasonsSettings: {
2
- readonly type: "object";
2
+ readonly type: 'object';
3
3
  readonly properties: {
4
4
  readonly hide: {
5
- readonly type: "boolean";
5
+ readonly type: 'boolean';
6
6
  readonly default: false;
7
7
  };
8
8
  readonly component: {
9
- readonly type: "string";
10
- readonly enum: readonly ["radio", "checkbox"];
11
- readonly default: "checkbox";
9
+ readonly type: 'string';
10
+ readonly enum: readonly ['radio', 'checkbox'];
11
+ readonly default: 'checkbox';
12
12
  };
13
13
  readonly label: {
14
- readonly type: "string";
14
+ readonly type: 'string';
15
15
  };
16
16
  readonly items: {
17
- readonly type: "array";
17
+ readonly type: 'array';
18
18
  readonly items: {
19
- readonly type: "string";
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: "object";
26
+ readonly type: 'object';
27
27
  readonly properties: {
28
28
  readonly hide: {
29
- readonly type: "boolean";
29
+ readonly type: 'boolean';
30
30
  readonly default: false;
31
31
  };
32
32
  readonly label: {
33
- readonly type: "string";
33
+ readonly type: 'string';
34
34
  };
35
35
  readonly placeholder: {
36
- readonly type: "string";
36
+ readonly type: 'string';
37
37
  };
38
38
  };
39
39
  readonly additionalProperties: false;
40
40
  };
41
41
  export declare const feedbackConfigSchema: {
42
- readonly type: "object";
42
+ readonly type: 'object';
43
43
  readonly properties: {
44
44
  readonly hide: {
45
- readonly type: "boolean";
45
+ readonly type: 'boolean';
46
46
  readonly default: false;
47
47
  };
48
48
  readonly type: {
49
- readonly type: "string";
50
- readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
51
- readonly default: "sentiment";
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: "object";
54
+ readonly type: 'object';
55
55
  readonly properties: {
56
56
  readonly label: {
57
- readonly type: "string";
57
+ readonly type: 'string';
58
58
  };
59
59
  readonly submitText: {
60
- readonly type: "string";
60
+ readonly type: 'string';
61
61
  };
62
62
  readonly buttonText: {
63
- readonly type: "string";
63
+ readonly type: 'string';
64
64
  };
65
65
  readonly component: {
66
- readonly type: "string";
67
- readonly enum: readonly ["radio", "checkbox"];
68
- readonly default: "checkbox";
66
+ readonly type: 'string';
67
+ readonly enum: readonly ['radio', 'checkbox'];
68
+ readonly default: 'checkbox';
69
69
  };
70
70
  readonly items: {
71
- readonly type: "array";
71
+ readonly type: 'array';
72
72
  readonly items: {
73
- readonly type: "string";
73
+ readonly type: 'string';
74
74
  };
75
75
  readonly minItems: 1;
76
76
  };
77
77
  readonly leftScaleLabel: {
78
- readonly type: "string";
78
+ readonly type: 'string';
79
79
  };
80
80
  readonly rightScaleLabel: {
81
- readonly type: "string";
81
+ readonly type: 'string';
82
82
  };
83
83
  readonly reasons: {
84
- readonly type: "object";
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: "object";
105
+ readonly type: 'object';
88
106
  readonly properties: {
89
107
  readonly hide: {
90
- readonly type: "boolean";
108
+ readonly type: 'boolean';
91
109
  readonly default: false;
92
110
  };
93
111
  readonly component: {
94
- readonly type: "string";
95
- readonly enum: readonly ["radio", "checkbox"];
96
- readonly default: "checkbox";
112
+ readonly type: 'string';
113
+ readonly enum: readonly ['radio', 'checkbox'];
114
+ readonly default: 'checkbox';
97
115
  };
98
116
  readonly label: {
99
- readonly type: "string";
117
+ readonly type: 'string';
100
118
  };
101
119
  readonly items: {
102
- readonly type: "array";
120
+ readonly type: 'array';
103
121
  readonly items: {
104
- readonly type: "string";
122
+ readonly type: 'string';
105
123
  };
106
124
  };
107
125
  };
108
126
  readonly additionalProperties: false;
109
127
  };
110
128
  readonly dislike: {
111
- readonly type: "object";
129
+ readonly type: 'object';
112
130
  readonly properties: {
113
131
  readonly hide: {
114
- readonly type: "boolean";
132
+ readonly type: 'boolean';
115
133
  readonly default: false;
116
134
  };
117
135
  readonly component: {
118
- readonly type: "string";
119
- readonly enum: readonly ["radio", "checkbox"];
120
- readonly default: "checkbox";
136
+ readonly type: 'string';
137
+ readonly enum: readonly ['radio', 'checkbox'];
138
+ readonly default: 'checkbox';
121
139
  };
122
140
  readonly label: {
123
- readonly type: "string";
141
+ readonly type: 'string';
124
142
  };
125
143
  readonly items: {
126
- readonly type: "array";
144
+ readonly type: 'array';
127
145
  readonly items: {
128
- readonly type: "string";
146
+ readonly type: 'string';
129
147
  };
130
148
  };
131
149
  };
132
150
  readonly additionalProperties: false;
133
151
  };
134
152
  readonly satisfied: {
135
- readonly type: "object";
153
+ readonly type: 'object';
136
154
  readonly properties: {
137
155
  readonly hide: {
138
- readonly type: "boolean";
156
+ readonly type: 'boolean';
139
157
  readonly default: false;
140
158
  };
141
159
  readonly component: {
142
- readonly type: "string";
143
- readonly enum: readonly ["radio", "checkbox"];
144
- readonly default: "checkbox";
160
+ readonly type: 'string';
161
+ readonly enum: readonly ['radio', 'checkbox'];
162
+ readonly default: 'checkbox';
145
163
  };
146
164
  readonly label: {
147
- readonly type: "string";
165
+ readonly type: 'string';
148
166
  };
149
167
  readonly items: {
150
- readonly type: "array";
168
+ readonly type: 'array';
151
169
  readonly items: {
152
- readonly type: "string";
170
+ readonly type: 'string';
153
171
  };
154
172
  };
155
173
  };
156
174
  readonly additionalProperties: false;
157
175
  };
158
176
  readonly neutral: {
159
- readonly type: "object";
177
+ readonly type: 'object';
160
178
  readonly properties: {
161
179
  readonly hide: {
162
- readonly type: "boolean";
180
+ readonly type: 'boolean';
163
181
  readonly default: false;
164
182
  };
165
183
  readonly component: {
166
- readonly type: "string";
167
- readonly enum: readonly ["radio", "checkbox"];
168
- readonly default: "checkbox";
184
+ readonly type: 'string';
185
+ readonly enum: readonly ['radio', 'checkbox'];
186
+ readonly default: 'checkbox';
169
187
  };
170
188
  readonly label: {
171
- readonly type: "string";
189
+ readonly type: 'string';
172
190
  };
173
191
  readonly items: {
174
- readonly type: "array";
192
+ readonly type: 'array';
175
193
  readonly items: {
176
- readonly type: "string";
194
+ readonly type: 'string';
177
195
  };
178
196
  };
179
197
  };
180
198
  readonly additionalProperties: false;
181
199
  };
182
200
  readonly dissatisfied: {
183
- readonly type: "object";
201
+ readonly type: 'object';
184
202
  readonly properties: {
185
203
  readonly hide: {
186
- readonly type: "boolean";
204
+ readonly type: 'boolean';
187
205
  readonly default: false;
188
206
  };
189
207
  readonly component: {
190
- readonly type: "string";
191
- readonly enum: readonly ["radio", "checkbox"];
192
- readonly default: "checkbox";
208
+ readonly type: 'string';
209
+ readonly enum: readonly ['radio', 'checkbox'];
210
+ readonly default: 'checkbox';
193
211
  };
194
212
  readonly label: {
195
- readonly type: "string";
213
+ readonly type: 'string';
196
214
  };
197
215
  readonly items: {
198
- readonly type: "array";
216
+ readonly type: 'array';
199
217
  readonly items: {
200
- readonly type: "string";
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: "object";
228
+ readonly type: 'object';
229
229
  readonly properties: {
230
230
  readonly hide: {
231
- readonly type: "boolean";
231
+ readonly type: 'boolean';
232
232
  readonly default: false;
233
233
  };
234
234
  readonly label: {
235
- readonly type: "string";
235
+ readonly type: 'string';
236
236
  };
237
237
  readonly likeLabel: {
238
- readonly type: "string";
238
+ readonly type: 'string';
239
239
  };
240
240
  readonly dislikeLabel: {
241
- readonly type: "string";
241
+ readonly type: 'string';
242
242
  };
243
243
  readonly satisfiedLabel: {
244
- readonly type: "string";
244
+ readonly type: 'string';
245
245
  };
246
246
  readonly neutralLabel: {
247
- readonly type: "string";
247
+ readonly type: 'string';
248
248
  };
249
249
  readonly dissatisfiedLabel: {
250
- readonly type: "string";
250
+ readonly type: 'string';
251
251
  };
252
252
  };
253
253
  readonly additionalProperties: false;
254
254
  };
255
255
  readonly optionalEmail: {
256
- readonly type: "object";
256
+ readonly type: 'object';
257
257
  readonly properties: {
258
258
  readonly hide: {
259
- readonly type: "boolean";
259
+ readonly type: 'boolean';
260
260
  readonly default: false;
261
261
  };
262
262
  readonly label: {
263
- readonly type: "string";
263
+ readonly type: 'string';
264
264
  };
265
265
  readonly placeholder: {
266
- readonly type: "string";
266
+ readonly type: 'string';
267
267
  };
268
268
  };
269
269
  readonly additionalProperties: false;