@redocly/config 0.50.0 → 0.51.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 +10 -27
- package/lib/common.d.ts +126 -113
- package/lib/constants/shared.d.ts +1 -0
- package/lib/default-theme-config-schema.d.ts +544 -619
- package/lib/entities-catalog-config-schema.d.ts +60 -72
- package/lib/entities-catalog-entity-file-schema.d.ts +74 -67
- package/lib/ex-theme-config-schemas.d.ts +273 -348
- package/lib/feedback-config-schema.d.ts +9 -29
- package/lib/graphql-config-schema.d.ts +11 -28
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/product-override-schema.d.ts +2362 -2607
- package/lib/redoc-config-schema.d.ts +14 -33
- package/lib/reference-docs-config-schema.d.ts +14 -10
- package/lib/reunite-config-schema.d.ts +11 -12
- package/lib/root-config-schema.d.ts +22774 -17198
- package/lib/scorecards-config-schema.d.ts +168 -108
- package/lib/types/index.d.ts +1 -0
- package/lib/types/json-schema-types.d.ts +69 -0
- package/lib/types/portal-shared-types.d.ts +3 -0
- package/lib-esm/asyncapi-config-schema.d.ts +10 -27
- package/lib-esm/common.d.ts +126 -113
- package/lib-esm/constants/shared.d.ts +1 -0
- package/lib-esm/default-theme-config-schema.d.ts +544 -619
- package/lib-esm/entities-catalog-config-schema.d.ts +60 -72
- package/lib-esm/entities-catalog-entity-file-schema.d.ts +74 -67
- package/lib-esm/ex-theme-config-schemas.d.ts +273 -348
- package/lib-esm/feedback-config-schema.d.ts +9 -29
- package/lib-esm/graphql-config-schema.d.ts +11 -28
- package/lib-esm/index.d.ts +1 -1
- package/lib-esm/index.js +1 -1
- package/lib-esm/product-override-schema.d.ts +2362 -2607
- package/lib-esm/redoc-config-schema.d.ts +14 -33
- package/lib-esm/reference-docs-config-schema.d.ts +14 -10
- package/lib-esm/reunite-config-schema.d.ts +11 -12
- package/lib-esm/root-config-schema.d.ts +22774 -17198
- package/lib-esm/scorecards-config-schema.d.ts +168 -108
- package/lib-esm/types/index.d.ts +1 -0
- package/lib-esm/types/json-schema-types.d.ts +69 -0
- package/lib-esm/types/portal-shared-types.d.ts +3 -0
- package/package.json +2 -2
- package/lib/remove-property-recursively.d.ts +0 -5
- package/lib-esm/remove-property-recursively.d.ts +0 -5
|
@@ -13,7 +13,7 @@ export declare const asyncapiConfigSchema: {
|
|
|
13
13
|
readonly type: 'string';
|
|
14
14
|
};
|
|
15
15
|
};
|
|
16
|
-
readonly required: readonly [
|
|
16
|
+
readonly required: readonly ["url"];
|
|
17
17
|
readonly additionalProperties: false;
|
|
18
18
|
};
|
|
19
19
|
};
|
|
@@ -60,12 +60,10 @@ export declare const asyncapiConfigSchema: {
|
|
|
60
60
|
readonly properties: {
|
|
61
61
|
readonly hide: {
|
|
62
62
|
readonly type: 'boolean';
|
|
63
|
-
readonly default: false;
|
|
64
63
|
};
|
|
65
64
|
readonly type: {
|
|
66
65
|
readonly type: 'string';
|
|
67
|
-
readonly enum: readonly [
|
|
68
|
-
readonly default: 'sentiment';
|
|
66
|
+
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
69
67
|
};
|
|
70
68
|
readonly settings: {
|
|
71
69
|
readonly type: 'object';
|
|
@@ -81,8 +79,7 @@ export declare const asyncapiConfigSchema: {
|
|
|
81
79
|
};
|
|
82
80
|
readonly component: {
|
|
83
81
|
readonly type: 'string';
|
|
84
|
-
readonly enum: readonly [
|
|
85
|
-
readonly default: 'checkbox';
|
|
82
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
86
83
|
};
|
|
87
84
|
readonly items: {
|
|
88
85
|
readonly type: 'array';
|
|
@@ -102,12 +99,10 @@ export declare const asyncapiConfigSchema: {
|
|
|
102
99
|
readonly properties: {
|
|
103
100
|
readonly hide: {
|
|
104
101
|
readonly type: 'boolean';
|
|
105
|
-
readonly default: false;
|
|
106
102
|
};
|
|
107
103
|
readonly component: {
|
|
108
104
|
readonly type: 'string';
|
|
109
|
-
readonly enum: readonly [
|
|
110
|
-
readonly default: 'checkbox';
|
|
105
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
111
106
|
};
|
|
112
107
|
readonly label: {
|
|
113
108
|
readonly type: 'string';
|
|
@@ -123,12 +118,10 @@ export declare const asyncapiConfigSchema: {
|
|
|
123
118
|
readonly properties: {
|
|
124
119
|
readonly hide: {
|
|
125
120
|
readonly type: 'boolean';
|
|
126
|
-
readonly default: false;
|
|
127
121
|
};
|
|
128
122
|
readonly component: {
|
|
129
123
|
readonly type: 'string';
|
|
130
|
-
readonly enum: readonly [
|
|
131
|
-
readonly default: 'checkbox';
|
|
124
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
132
125
|
};
|
|
133
126
|
readonly label: {
|
|
134
127
|
readonly type: 'string';
|
|
@@ -147,12 +140,10 @@ export declare const asyncapiConfigSchema: {
|
|
|
147
140
|
readonly properties: {
|
|
148
141
|
readonly hide: {
|
|
149
142
|
readonly type: 'boolean';
|
|
150
|
-
readonly default: false;
|
|
151
143
|
};
|
|
152
144
|
readonly component: {
|
|
153
145
|
readonly type: 'string';
|
|
154
|
-
readonly enum: readonly [
|
|
155
|
-
readonly default: 'checkbox';
|
|
146
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
156
147
|
};
|
|
157
148
|
readonly label: {
|
|
158
149
|
readonly type: 'string';
|
|
@@ -171,12 +162,10 @@ export declare const asyncapiConfigSchema: {
|
|
|
171
162
|
readonly properties: {
|
|
172
163
|
readonly hide: {
|
|
173
164
|
readonly type: 'boolean';
|
|
174
|
-
readonly default: false;
|
|
175
165
|
};
|
|
176
166
|
readonly component: {
|
|
177
167
|
readonly type: 'string';
|
|
178
|
-
readonly enum: readonly [
|
|
179
|
-
readonly default: 'checkbox';
|
|
168
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
180
169
|
};
|
|
181
170
|
readonly label: {
|
|
182
171
|
readonly type: 'string';
|
|
@@ -195,12 +184,10 @@ export declare const asyncapiConfigSchema: {
|
|
|
195
184
|
readonly properties: {
|
|
196
185
|
readonly hide: {
|
|
197
186
|
readonly type: 'boolean';
|
|
198
|
-
readonly default: false;
|
|
199
187
|
};
|
|
200
188
|
readonly component: {
|
|
201
189
|
readonly type: 'string';
|
|
202
|
-
readonly enum: readonly [
|
|
203
|
-
readonly default: 'checkbox';
|
|
190
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
204
191
|
};
|
|
205
192
|
readonly label: {
|
|
206
193
|
readonly type: 'string';
|
|
@@ -219,12 +206,10 @@ export declare const asyncapiConfigSchema: {
|
|
|
219
206
|
readonly properties: {
|
|
220
207
|
readonly hide: {
|
|
221
208
|
readonly type: 'boolean';
|
|
222
|
-
readonly default: false;
|
|
223
209
|
};
|
|
224
210
|
readonly component: {
|
|
225
211
|
readonly type: 'string';
|
|
226
|
-
readonly enum: readonly [
|
|
227
|
-
readonly default: 'checkbox';
|
|
212
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
228
213
|
};
|
|
229
214
|
readonly label: {
|
|
230
215
|
readonly type: 'string';
|
|
@@ -246,7 +231,6 @@ export declare const asyncapiConfigSchema: {
|
|
|
246
231
|
readonly properties: {
|
|
247
232
|
readonly hide: {
|
|
248
233
|
readonly type: 'boolean';
|
|
249
|
-
readonly default: false;
|
|
250
234
|
};
|
|
251
235
|
readonly label: {
|
|
252
236
|
readonly type: 'string';
|
|
@@ -274,7 +258,6 @@ export declare const asyncapiConfigSchema: {
|
|
|
274
258
|
readonly properties: {
|
|
275
259
|
readonly hide: {
|
|
276
260
|
readonly type: 'boolean';
|
|
277
|
-
readonly default: false;
|
|
278
261
|
};
|
|
279
262
|
readonly label: {
|
|
280
263
|
readonly type: 'string';
|
|
@@ -293,7 +276,7 @@ export declare const asyncapiConfigSchema: {
|
|
|
293
276
|
};
|
|
294
277
|
readonly layout: {
|
|
295
278
|
readonly type: 'string';
|
|
296
|
-
readonly enum: readonly [
|
|
279
|
+
readonly enum: readonly ["stacked", "three-panel"];
|
|
297
280
|
};
|
|
298
281
|
};
|
|
299
282
|
readonly additionalProperties: false;
|
package/lib/common.d.ts
CHANGED
|
@@ -1,30 +1,37 @@
|
|
|
1
|
-
export declare const ruleTypes: readonly ['rules', 'oas2Rules', 'oas3_0Rules', 'oas3_1Rules', 'oas3_2Rules', 'async2Rules', 'async3Rules', 'arazzo1Rules', 'arazzo1_1Rules', 'overlay1Rules', 'openrpc1Rules'];
|
|
1
|
+
export declare const ruleTypes: readonly ['rules', 'oas2Rules', 'oas3_0Rules', 'oas3_1Rules', 'oas3_2Rules', 'async2Rules', 'async3Rules', 'arazzo1Rules', 'arazzo1_1Rules', 'overlay1Rules', 'openrpc1Rules', 'graphqlRules'];
|
|
2
2
|
export type RuleTypes = (typeof ruleTypes)[number];
|
|
3
3
|
export declare const preprocessorTypes: readonly ['preprocessors', 'oas2Preprocessors', 'oas3_0Preprocessors', 'oas3_1Preprocessors', 'oas3_2Preprocessors', 'async2Preprocessors', 'async3Preprocessors', 'arazzo1Preprocessors', 'arazzo1_1Preprocessors', 'overlay1Preprocessors', 'openrpc1Preprocessors'];
|
|
4
4
|
export type PreprocessorTypes = (typeof preprocessorTypes)[number];
|
|
5
5
|
export declare const decoratorTypes: readonly ['decorators', 'oas2Decorators', 'oas3_0Decorators', 'oas3_1Decorators', 'oas3_2Decorators', 'async2Decorators', 'async3Decorators', 'arazzo1Decorators', 'arazzo1_1Decorators', 'overlay1Decorators', 'openrpc1Decorators'];
|
|
6
6
|
export type DecoratorTypes = (typeof decoratorTypes)[number];
|
|
7
7
|
export declare const configGovernanceSchema: {
|
|
8
|
-
|
|
9
|
-
readonly nodeTypeName: undefined;
|
|
10
|
-
readonly type: 'array';
|
|
11
|
-
readonly items: {
|
|
12
|
-
readonly type: 'string';
|
|
13
|
-
};
|
|
14
|
-
readonly description: 'Use extends to inherit rules and their configurations from other rulesets.';
|
|
15
|
-
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/extends';
|
|
16
|
-
};
|
|
17
|
-
arazzo1Decorators: {
|
|
8
|
+
readonly rules: {
|
|
18
9
|
readonly nodeTypeName: undefined;
|
|
19
10
|
readonly type: 'object';
|
|
20
|
-
readonly additionalProperties:
|
|
11
|
+
readonly additionalProperties: {
|
|
12
|
+
readonly oneOf: readonly [{
|
|
13
|
+
readonly type: 'string';
|
|
14
|
+
}, {
|
|
15
|
+
readonly type: 'object';
|
|
16
|
+
}];
|
|
17
|
+
};
|
|
18
|
+
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
19
|
+
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
21
20
|
};
|
|
22
|
-
|
|
21
|
+
readonly oas2Rules: {
|
|
23
22
|
readonly nodeTypeName: undefined;
|
|
24
23
|
readonly type: 'object';
|
|
25
|
-
readonly additionalProperties:
|
|
24
|
+
readonly additionalProperties: {
|
|
25
|
+
readonly oneOf: readonly [{
|
|
26
|
+
readonly type: 'string';
|
|
27
|
+
}, {
|
|
28
|
+
readonly type: 'object';
|
|
29
|
+
}];
|
|
30
|
+
};
|
|
31
|
+
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
32
|
+
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
26
33
|
};
|
|
27
|
-
|
|
34
|
+
readonly oas3_0Rules: {
|
|
28
35
|
readonly nodeTypeName: undefined;
|
|
29
36
|
readonly type: 'object';
|
|
30
37
|
readonly additionalProperties: {
|
|
@@ -37,17 +44,33 @@ export declare const configGovernanceSchema: {
|
|
|
37
44
|
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
38
45
|
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
39
46
|
};
|
|
40
|
-
|
|
47
|
+
readonly oas3_1Rules: {
|
|
41
48
|
readonly nodeTypeName: undefined;
|
|
42
49
|
readonly type: 'object';
|
|
43
|
-
readonly additionalProperties:
|
|
50
|
+
readonly additionalProperties: {
|
|
51
|
+
readonly oneOf: readonly [{
|
|
52
|
+
readonly type: 'string';
|
|
53
|
+
}, {
|
|
54
|
+
readonly type: 'object';
|
|
55
|
+
}];
|
|
56
|
+
};
|
|
57
|
+
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
58
|
+
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
44
59
|
};
|
|
45
|
-
|
|
60
|
+
readonly oas3_2Rules: {
|
|
46
61
|
readonly nodeTypeName: undefined;
|
|
47
62
|
readonly type: 'object';
|
|
48
|
-
readonly additionalProperties:
|
|
63
|
+
readonly additionalProperties: {
|
|
64
|
+
readonly oneOf: readonly [{
|
|
65
|
+
readonly type: 'string';
|
|
66
|
+
}, {
|
|
67
|
+
readonly type: 'object';
|
|
68
|
+
}];
|
|
69
|
+
};
|
|
70
|
+
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
71
|
+
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
49
72
|
};
|
|
50
|
-
|
|
73
|
+
readonly async2Rules: {
|
|
51
74
|
readonly nodeTypeName: undefined;
|
|
52
75
|
readonly type: 'object';
|
|
53
76
|
readonly additionalProperties: {
|
|
@@ -60,17 +83,33 @@ export declare const configGovernanceSchema: {
|
|
|
60
83
|
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
61
84
|
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
62
85
|
};
|
|
63
|
-
|
|
86
|
+
readonly async3Rules: {
|
|
64
87
|
readonly nodeTypeName: undefined;
|
|
65
88
|
readonly type: 'object';
|
|
66
|
-
readonly additionalProperties:
|
|
89
|
+
readonly additionalProperties: {
|
|
90
|
+
readonly oneOf: readonly [{
|
|
91
|
+
readonly type: 'string';
|
|
92
|
+
}, {
|
|
93
|
+
readonly type: 'object';
|
|
94
|
+
}];
|
|
95
|
+
};
|
|
96
|
+
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
97
|
+
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
67
98
|
};
|
|
68
|
-
|
|
99
|
+
readonly arazzo1Rules: {
|
|
69
100
|
readonly nodeTypeName: undefined;
|
|
70
101
|
readonly type: 'object';
|
|
71
|
-
readonly additionalProperties:
|
|
102
|
+
readonly additionalProperties: {
|
|
103
|
+
readonly oneOf: readonly [{
|
|
104
|
+
readonly type: 'string';
|
|
105
|
+
}, {
|
|
106
|
+
readonly type: 'object';
|
|
107
|
+
}];
|
|
108
|
+
};
|
|
109
|
+
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
110
|
+
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
72
111
|
};
|
|
73
|
-
|
|
112
|
+
readonly arazzo1_1Rules: {
|
|
74
113
|
readonly nodeTypeName: undefined;
|
|
75
114
|
readonly type: 'object';
|
|
76
115
|
readonly additionalProperties: {
|
|
@@ -83,17 +122,33 @@ export declare const configGovernanceSchema: {
|
|
|
83
122
|
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
84
123
|
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
85
124
|
};
|
|
86
|
-
|
|
125
|
+
readonly overlay1Rules: {
|
|
87
126
|
readonly nodeTypeName: undefined;
|
|
88
127
|
readonly type: 'object';
|
|
89
|
-
readonly additionalProperties:
|
|
128
|
+
readonly additionalProperties: {
|
|
129
|
+
readonly oneOf: readonly [{
|
|
130
|
+
readonly type: 'string';
|
|
131
|
+
}, {
|
|
132
|
+
readonly type: 'object';
|
|
133
|
+
}];
|
|
134
|
+
};
|
|
135
|
+
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
136
|
+
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
90
137
|
};
|
|
91
|
-
|
|
138
|
+
readonly openrpc1Rules: {
|
|
92
139
|
readonly nodeTypeName: undefined;
|
|
93
140
|
readonly type: 'object';
|
|
94
|
-
readonly additionalProperties:
|
|
141
|
+
readonly additionalProperties: {
|
|
142
|
+
readonly oneOf: readonly [{
|
|
143
|
+
readonly type: 'string';
|
|
144
|
+
}, {
|
|
145
|
+
readonly type: 'object';
|
|
146
|
+
}];
|
|
147
|
+
};
|
|
148
|
+
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
149
|
+
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
95
150
|
};
|
|
96
|
-
|
|
151
|
+
readonly graphqlRules: {
|
|
97
152
|
readonly nodeTypeName: undefined;
|
|
98
153
|
readonly type: 'object';
|
|
99
154
|
readonly additionalProperties: {
|
|
@@ -106,165 +161,123 @@ export declare const configGovernanceSchema: {
|
|
|
106
161
|
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
107
162
|
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
108
163
|
};
|
|
109
|
-
|
|
164
|
+
readonly preprocessors: {
|
|
110
165
|
readonly nodeTypeName: undefined;
|
|
111
166
|
readonly type: 'object';
|
|
112
167
|
readonly additionalProperties: true;
|
|
113
168
|
};
|
|
114
|
-
|
|
169
|
+
readonly oas2Preprocessors: {
|
|
115
170
|
readonly nodeTypeName: undefined;
|
|
116
171
|
readonly type: 'object';
|
|
117
172
|
readonly additionalProperties: true;
|
|
118
173
|
};
|
|
119
|
-
|
|
174
|
+
readonly oas3_0Preprocessors: {
|
|
120
175
|
readonly nodeTypeName: undefined;
|
|
121
176
|
readonly type: 'object';
|
|
122
177
|
readonly additionalProperties: true;
|
|
123
178
|
};
|
|
124
|
-
|
|
179
|
+
readonly oas3_1Preprocessors: {
|
|
125
180
|
readonly nodeTypeName: undefined;
|
|
126
181
|
readonly type: 'object';
|
|
127
|
-
readonly additionalProperties:
|
|
128
|
-
readonly oneOf: readonly [{
|
|
129
|
-
readonly type: 'string';
|
|
130
|
-
}, {
|
|
131
|
-
readonly type: 'object';
|
|
132
|
-
}];
|
|
133
|
-
};
|
|
134
|
-
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
135
|
-
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
182
|
+
readonly additionalProperties: true;
|
|
136
183
|
};
|
|
137
|
-
|
|
184
|
+
readonly oas3_2Preprocessors: {
|
|
138
185
|
readonly nodeTypeName: undefined;
|
|
139
186
|
readonly type: 'object';
|
|
140
187
|
readonly additionalProperties: true;
|
|
141
188
|
};
|
|
142
|
-
|
|
189
|
+
readonly async2Preprocessors: {
|
|
143
190
|
readonly nodeTypeName: undefined;
|
|
144
191
|
readonly type: 'object';
|
|
145
192
|
readonly additionalProperties: true;
|
|
146
193
|
};
|
|
147
|
-
|
|
194
|
+
readonly async3Preprocessors: {
|
|
148
195
|
readonly nodeTypeName: undefined;
|
|
149
196
|
readonly type: 'object';
|
|
150
|
-
readonly additionalProperties:
|
|
151
|
-
readonly oneOf: readonly [{
|
|
152
|
-
readonly type: 'string';
|
|
153
|
-
}, {
|
|
154
|
-
readonly type: 'object';
|
|
155
|
-
}];
|
|
156
|
-
};
|
|
157
|
-
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
158
|
-
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
197
|
+
readonly additionalProperties: true;
|
|
159
198
|
};
|
|
160
|
-
|
|
199
|
+
readonly arazzo1Preprocessors: {
|
|
161
200
|
readonly nodeTypeName: undefined;
|
|
162
201
|
readonly type: 'object';
|
|
163
202
|
readonly additionalProperties: true;
|
|
164
203
|
};
|
|
165
|
-
|
|
204
|
+
readonly arazzo1_1Preprocessors: {
|
|
166
205
|
readonly nodeTypeName: undefined;
|
|
167
206
|
readonly type: 'object';
|
|
168
207
|
readonly additionalProperties: true;
|
|
169
208
|
};
|
|
170
|
-
|
|
209
|
+
readonly overlay1Preprocessors: {
|
|
171
210
|
readonly nodeTypeName: undefined;
|
|
172
211
|
readonly type: 'object';
|
|
173
|
-
readonly additionalProperties:
|
|
174
|
-
readonly oneOf: readonly [{
|
|
175
|
-
readonly type: 'string';
|
|
176
|
-
}, {
|
|
177
|
-
readonly type: 'object';
|
|
178
|
-
}];
|
|
179
|
-
};
|
|
180
|
-
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
181
|
-
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
212
|
+
readonly additionalProperties: true;
|
|
182
213
|
};
|
|
183
|
-
|
|
214
|
+
readonly openrpc1Preprocessors: {
|
|
184
215
|
readonly nodeTypeName: undefined;
|
|
185
216
|
readonly type: 'object';
|
|
186
217
|
readonly additionalProperties: true;
|
|
187
218
|
};
|
|
188
|
-
|
|
219
|
+
readonly decorators: {
|
|
189
220
|
readonly nodeTypeName: undefined;
|
|
190
221
|
readonly type: 'object';
|
|
191
222
|
readonly additionalProperties: true;
|
|
192
223
|
};
|
|
193
|
-
|
|
224
|
+
readonly oas2Decorators: {
|
|
194
225
|
readonly nodeTypeName: undefined;
|
|
195
226
|
readonly type: 'object';
|
|
196
|
-
readonly additionalProperties:
|
|
197
|
-
readonly oneOf: readonly [{
|
|
198
|
-
readonly type: 'string';
|
|
199
|
-
}, {
|
|
200
|
-
readonly type: 'object';
|
|
201
|
-
}];
|
|
202
|
-
};
|
|
203
|
-
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
204
|
-
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
227
|
+
readonly additionalProperties: true;
|
|
205
228
|
};
|
|
206
|
-
|
|
229
|
+
readonly oas3_0Decorators: {
|
|
207
230
|
readonly nodeTypeName: undefined;
|
|
208
231
|
readonly type: 'object';
|
|
209
232
|
readonly additionalProperties: true;
|
|
210
233
|
};
|
|
211
|
-
|
|
234
|
+
readonly oas3_1Decorators: {
|
|
212
235
|
readonly nodeTypeName: undefined;
|
|
213
236
|
readonly type: 'object';
|
|
214
237
|
readonly additionalProperties: true;
|
|
215
238
|
};
|
|
216
|
-
|
|
239
|
+
readonly oas3_2Decorators: {
|
|
217
240
|
readonly nodeTypeName: undefined;
|
|
218
241
|
readonly type: 'object';
|
|
219
|
-
readonly additionalProperties:
|
|
220
|
-
readonly oneOf: readonly [{
|
|
221
|
-
readonly type: 'string';
|
|
222
|
-
}, {
|
|
223
|
-
readonly type: 'object';
|
|
224
|
-
}];
|
|
225
|
-
};
|
|
226
|
-
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
227
|
-
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
242
|
+
readonly additionalProperties: true;
|
|
228
243
|
};
|
|
229
|
-
|
|
244
|
+
readonly async2Decorators: {
|
|
230
245
|
readonly nodeTypeName: undefined;
|
|
231
246
|
readonly type: 'object';
|
|
232
247
|
readonly additionalProperties: true;
|
|
233
248
|
};
|
|
234
|
-
|
|
249
|
+
readonly async3Decorators: {
|
|
235
250
|
readonly nodeTypeName: undefined;
|
|
236
251
|
readonly type: 'object';
|
|
237
252
|
readonly additionalProperties: true;
|
|
238
253
|
};
|
|
239
|
-
|
|
254
|
+
readonly arazzo1Decorators: {
|
|
240
255
|
readonly nodeTypeName: undefined;
|
|
241
256
|
readonly type: 'object';
|
|
242
|
-
readonly additionalProperties:
|
|
243
|
-
readonly oneOf: readonly [{
|
|
244
|
-
readonly type: 'string';
|
|
245
|
-
}, {
|
|
246
|
-
readonly type: 'object';
|
|
247
|
-
}];
|
|
248
|
-
};
|
|
249
|
-
readonly description: 'The rules configuration blocks set up linting rules and their severity. You can configure built-in rules, add configurable rules, and rules from plugins.';
|
|
250
|
-
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/rules#rules';
|
|
257
|
+
readonly additionalProperties: true;
|
|
251
258
|
};
|
|
252
|
-
|
|
259
|
+
readonly arazzo1_1Decorators: {
|
|
253
260
|
readonly nodeTypeName: undefined;
|
|
254
261
|
readonly type: 'object';
|
|
255
262
|
readonly additionalProperties: true;
|
|
256
263
|
};
|
|
257
|
-
|
|
264
|
+
readonly overlay1Decorators: {
|
|
258
265
|
readonly nodeTypeName: undefined;
|
|
259
266
|
readonly type: 'object';
|
|
260
|
-
readonly additionalProperties:
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
267
|
+
readonly additionalProperties: true;
|
|
268
|
+
};
|
|
269
|
+
readonly openrpc1Decorators: {
|
|
270
|
+
readonly nodeTypeName: undefined;
|
|
271
|
+
readonly type: 'object';
|
|
272
|
+
readonly additionalProperties: true;
|
|
273
|
+
};
|
|
274
|
+
readonly extends: {
|
|
275
|
+
readonly nodeTypeName: undefined;
|
|
276
|
+
readonly type: 'array';
|
|
277
|
+
readonly items: {
|
|
278
|
+
readonly type: 'string';
|
|
266
279
|
};
|
|
267
|
-
readonly description: '
|
|
268
|
-
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/
|
|
280
|
+
readonly description: 'Use extends to inherit rules and their configurations from other rulesets.';
|
|
281
|
+
readonly documentationLink: 'https://redocly.com/docs/cli/configuration/reference/extends';
|
|
269
282
|
};
|
|
270
283
|
};
|