@redocly/config 0.43.0 → 0.44.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 +300 -0
- package/lib/asyncapi-config-schema.js +53 -0
- package/lib/common.d.ts +241 -22
- package/lib/common.js +50 -37
- package/lib/constants/config.d.ts +12 -0
- package/lib/constants/config.js +17 -0
- package/lib/constants/entities.d.ts +45 -0
- package/lib/constants/entities.js +58 -0
- package/lib/constants/enum.d.ts +1 -0
- package/lib/constants/enum.js +6 -0
- package/lib/constants/shared.d.ts +15 -0
- package/lib/constants/shared.js +22 -0
- package/lib/default-theme-config-schema.d.ts +3205 -2762
- package/lib/default-theme-config-schema.js +3 -1
- package/lib/entities-catalog-entity-file-schema.js +22 -22
- package/lib/ex-theme-config-schemas.d.ts +1903 -26
- package/lib/ex-theme-config-schemas.js +25 -3
- package/lib/index.d.ts +3 -1
- package/lib/index.js +13 -10
- package/lib/product-override-schema.d.ts +73 -20
- package/lib/remove-property-recursively.d.ts +1 -1
- package/lib/remove-property-recursively.js +7 -4
- package/lib/root-config-schema.d.ts +3715 -1713
- package/lib/root-config-schema.js +18 -11
- package/lib/scorecards-config-schema.d.ts +6 -0
- package/lib/scorecards-config-schema.js +2 -4
- package/lib/types/asyncapi-types.d.ts +14 -0
- package/lib/types/asyncapi-types.js +3 -0
- package/lib/types/config-types.d.ts +2 -0
- package/lib/types/portal-shared-types.d.ts +1 -1
- package/lib-esm/asyncapi-config-schema.d.ts +300 -0
- package/lib-esm/asyncapi-config-schema.js +50 -0
- package/lib-esm/common.d.ts +241 -22
- package/lib-esm/common.js +29 -16
- package/lib-esm/constants/config.d.ts +12 -0
- package/lib-esm/constants/config.js +14 -0
- package/lib-esm/constants/entities.d.ts +45 -0
- package/lib-esm/constants/entities.js +55 -0
- package/lib-esm/constants/enum.d.ts +1 -0
- package/lib-esm/constants/enum.js +2 -0
- package/lib-esm/constants/shared.d.ts +15 -0
- package/lib-esm/constants/shared.js +19 -0
- package/lib-esm/default-theme-config-schema.d.ts +3205 -2762
- package/lib-esm/default-theme-config-schema.js +3 -1
- package/lib-esm/entities-catalog-entity-file-schema.js +21 -21
- package/lib-esm/ex-theme-config-schemas.d.ts +1903 -26
- package/lib-esm/ex-theme-config-schemas.js +25 -3
- package/lib-esm/index.d.ts +3 -1
- package/lib-esm/index.js +3 -1
- package/lib-esm/product-override-schema.d.ts +73 -20
- package/lib-esm/remove-property-recursively.d.ts +1 -1
- package/lib-esm/remove-property-recursively.js +7 -4
- package/lib-esm/root-config-schema.d.ts +3715 -1713
- package/lib-esm/root-config-schema.js +14 -7
- package/lib-esm/scorecards-config-schema.d.ts +6 -0
- package/lib-esm/scorecards-config-schema.js +2 -4
- package/lib-esm/types/asyncapi-types.d.ts +14 -0
- package/lib-esm/types/asyncapi-types.js +2 -0
- package/lib-esm/types/config-types.d.ts +2 -0
- package/lib-esm/types/portal-shared-types.d.ts +1 -1
- package/package.json +2 -2
- package/lib/constants.d.ts +0 -38
- package/lib/constants.js +0 -73
- package/lib-esm/constants.d.ts +0 -38
- package/lib-esm/constants.js +0 -70
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
export declare const asyncapiConfigSchema: {
|
|
2
|
+
readonly type: "object";
|
|
3
|
+
readonly properties: {
|
|
4
|
+
readonly downloadUrls: {
|
|
5
|
+
readonly type: "array";
|
|
6
|
+
readonly items: {
|
|
7
|
+
readonly type: "object";
|
|
8
|
+
readonly properties: {
|
|
9
|
+
readonly title: {
|
|
10
|
+
readonly type: "string";
|
|
11
|
+
};
|
|
12
|
+
readonly url: {
|
|
13
|
+
readonly type: "string";
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
readonly required: readonly ["url"];
|
|
17
|
+
readonly additionalProperties: false;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
readonly apiLogo: {
|
|
21
|
+
readonly type: "object";
|
|
22
|
+
readonly properties: {
|
|
23
|
+
readonly imageUrl: {
|
|
24
|
+
readonly type: "string";
|
|
25
|
+
};
|
|
26
|
+
readonly href: {
|
|
27
|
+
readonly type: "string";
|
|
28
|
+
};
|
|
29
|
+
readonly altText: {
|
|
30
|
+
readonly type: "string";
|
|
31
|
+
};
|
|
32
|
+
readonly backgroundColor: {
|
|
33
|
+
readonly type: "string";
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
readonly jsonSamplesDepth: {
|
|
38
|
+
readonly type: "number";
|
|
39
|
+
};
|
|
40
|
+
readonly samplesMaxInlineArgs: {
|
|
41
|
+
readonly type: "number";
|
|
42
|
+
};
|
|
43
|
+
readonly fieldExpandLevel: {
|
|
44
|
+
readonly type: "number";
|
|
45
|
+
};
|
|
46
|
+
readonly baseUrlPath: {
|
|
47
|
+
readonly type: "string";
|
|
48
|
+
};
|
|
49
|
+
readonly metadata: {
|
|
50
|
+
readonly type: "object";
|
|
51
|
+
readonly properties: {
|
|
52
|
+
readonly apiId: {
|
|
53
|
+
readonly type: "string";
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
readonly additionalProperties: true;
|
|
57
|
+
};
|
|
58
|
+
readonly feedback: {
|
|
59
|
+
readonly type: "object";
|
|
60
|
+
readonly properties: {
|
|
61
|
+
readonly hide: {
|
|
62
|
+
readonly type: "boolean";
|
|
63
|
+
readonly default: false;
|
|
64
|
+
};
|
|
65
|
+
readonly type: {
|
|
66
|
+
readonly type: "string";
|
|
67
|
+
readonly enum: readonly ["rating", "sentiment", "comment", "reasons", "mood", "scale"];
|
|
68
|
+
readonly default: "sentiment";
|
|
69
|
+
};
|
|
70
|
+
readonly settings: {
|
|
71
|
+
readonly type: "object";
|
|
72
|
+
readonly properties: {
|
|
73
|
+
readonly label: {
|
|
74
|
+
readonly type: "string";
|
|
75
|
+
};
|
|
76
|
+
readonly submitText: {
|
|
77
|
+
readonly type: "string";
|
|
78
|
+
};
|
|
79
|
+
readonly buttonText: {
|
|
80
|
+
readonly type: "string";
|
|
81
|
+
};
|
|
82
|
+
readonly component: {
|
|
83
|
+
readonly type: "string";
|
|
84
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
85
|
+
readonly default: "checkbox";
|
|
86
|
+
};
|
|
87
|
+
readonly items: {
|
|
88
|
+
readonly type: "array";
|
|
89
|
+
readonly items: {
|
|
90
|
+
readonly type: "string";
|
|
91
|
+
};
|
|
92
|
+
readonly minItems: 1;
|
|
93
|
+
};
|
|
94
|
+
readonly leftScaleLabel: {
|
|
95
|
+
readonly type: "string";
|
|
96
|
+
};
|
|
97
|
+
readonly rightScaleLabel: {
|
|
98
|
+
readonly type: "string";
|
|
99
|
+
};
|
|
100
|
+
readonly reasons: {
|
|
101
|
+
readonly type: "object";
|
|
102
|
+
readonly properties: {
|
|
103
|
+
readonly like: {
|
|
104
|
+
readonly type: "object";
|
|
105
|
+
readonly properties: {
|
|
106
|
+
readonly hide: {
|
|
107
|
+
readonly type: "boolean";
|
|
108
|
+
readonly default: false;
|
|
109
|
+
};
|
|
110
|
+
readonly component: {
|
|
111
|
+
readonly type: "string";
|
|
112
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
113
|
+
readonly default: "checkbox";
|
|
114
|
+
};
|
|
115
|
+
readonly label: {
|
|
116
|
+
readonly type: "string";
|
|
117
|
+
};
|
|
118
|
+
readonly items: {
|
|
119
|
+
readonly type: "array";
|
|
120
|
+
readonly items: {
|
|
121
|
+
readonly type: "string";
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
readonly additionalProperties: false;
|
|
126
|
+
};
|
|
127
|
+
readonly dislike: {
|
|
128
|
+
readonly type: "object";
|
|
129
|
+
readonly properties: {
|
|
130
|
+
readonly hide: {
|
|
131
|
+
readonly type: "boolean";
|
|
132
|
+
readonly default: false;
|
|
133
|
+
};
|
|
134
|
+
readonly component: {
|
|
135
|
+
readonly type: "string";
|
|
136
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
137
|
+
readonly default: "checkbox";
|
|
138
|
+
};
|
|
139
|
+
readonly label: {
|
|
140
|
+
readonly type: "string";
|
|
141
|
+
};
|
|
142
|
+
readonly items: {
|
|
143
|
+
readonly type: "array";
|
|
144
|
+
readonly items: {
|
|
145
|
+
readonly type: "string";
|
|
146
|
+
};
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
readonly additionalProperties: false;
|
|
150
|
+
};
|
|
151
|
+
readonly satisfied: {
|
|
152
|
+
readonly type: "object";
|
|
153
|
+
readonly properties: {
|
|
154
|
+
readonly hide: {
|
|
155
|
+
readonly type: "boolean";
|
|
156
|
+
readonly default: false;
|
|
157
|
+
};
|
|
158
|
+
readonly component: {
|
|
159
|
+
readonly type: "string";
|
|
160
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
161
|
+
readonly default: "checkbox";
|
|
162
|
+
};
|
|
163
|
+
readonly label: {
|
|
164
|
+
readonly type: "string";
|
|
165
|
+
};
|
|
166
|
+
readonly items: {
|
|
167
|
+
readonly type: "array";
|
|
168
|
+
readonly items: {
|
|
169
|
+
readonly type: "string";
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
readonly additionalProperties: false;
|
|
174
|
+
};
|
|
175
|
+
readonly neutral: {
|
|
176
|
+
readonly type: "object";
|
|
177
|
+
readonly properties: {
|
|
178
|
+
readonly hide: {
|
|
179
|
+
readonly type: "boolean";
|
|
180
|
+
readonly default: false;
|
|
181
|
+
};
|
|
182
|
+
readonly component: {
|
|
183
|
+
readonly type: "string";
|
|
184
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
185
|
+
readonly default: "checkbox";
|
|
186
|
+
};
|
|
187
|
+
readonly label: {
|
|
188
|
+
readonly type: "string";
|
|
189
|
+
};
|
|
190
|
+
readonly items: {
|
|
191
|
+
readonly type: "array";
|
|
192
|
+
readonly items: {
|
|
193
|
+
readonly type: "string";
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
readonly additionalProperties: false;
|
|
198
|
+
};
|
|
199
|
+
readonly dissatisfied: {
|
|
200
|
+
readonly type: "object";
|
|
201
|
+
readonly properties: {
|
|
202
|
+
readonly hide: {
|
|
203
|
+
readonly type: "boolean";
|
|
204
|
+
readonly default: false;
|
|
205
|
+
};
|
|
206
|
+
readonly component: {
|
|
207
|
+
readonly type: "string";
|
|
208
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
209
|
+
readonly default: "checkbox";
|
|
210
|
+
};
|
|
211
|
+
readonly label: {
|
|
212
|
+
readonly type: "string";
|
|
213
|
+
};
|
|
214
|
+
readonly items: {
|
|
215
|
+
readonly type: "array";
|
|
216
|
+
readonly items: {
|
|
217
|
+
readonly type: "string";
|
|
218
|
+
};
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
readonly additionalProperties: false;
|
|
222
|
+
};
|
|
223
|
+
readonly hide: {
|
|
224
|
+
readonly type: "boolean";
|
|
225
|
+
readonly default: false;
|
|
226
|
+
};
|
|
227
|
+
readonly component: {
|
|
228
|
+
readonly type: "string";
|
|
229
|
+
readonly enum: readonly ["radio", "checkbox"];
|
|
230
|
+
readonly default: "checkbox";
|
|
231
|
+
};
|
|
232
|
+
readonly label: {
|
|
233
|
+
readonly type: "string";
|
|
234
|
+
};
|
|
235
|
+
readonly items: {
|
|
236
|
+
readonly type: "array";
|
|
237
|
+
readonly items: {
|
|
238
|
+
readonly type: "string";
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
readonly additionalProperties: false;
|
|
243
|
+
};
|
|
244
|
+
readonly comment: {
|
|
245
|
+
readonly type: "object";
|
|
246
|
+
readonly properties: {
|
|
247
|
+
readonly hide: {
|
|
248
|
+
readonly type: "boolean";
|
|
249
|
+
readonly default: false;
|
|
250
|
+
};
|
|
251
|
+
readonly label: {
|
|
252
|
+
readonly type: "string";
|
|
253
|
+
};
|
|
254
|
+
readonly likeLabel: {
|
|
255
|
+
readonly type: "string";
|
|
256
|
+
};
|
|
257
|
+
readonly dislikeLabel: {
|
|
258
|
+
readonly type: "string";
|
|
259
|
+
};
|
|
260
|
+
readonly satisfiedLabel: {
|
|
261
|
+
readonly type: "string";
|
|
262
|
+
};
|
|
263
|
+
readonly neutralLabel: {
|
|
264
|
+
readonly type: "string";
|
|
265
|
+
};
|
|
266
|
+
readonly dissatisfiedLabel: {
|
|
267
|
+
readonly type: "string";
|
|
268
|
+
};
|
|
269
|
+
};
|
|
270
|
+
readonly additionalProperties: false;
|
|
271
|
+
};
|
|
272
|
+
readonly optionalEmail: {
|
|
273
|
+
readonly type: "object";
|
|
274
|
+
readonly properties: {
|
|
275
|
+
readonly hide: {
|
|
276
|
+
readonly type: "boolean";
|
|
277
|
+
readonly default: false;
|
|
278
|
+
};
|
|
279
|
+
readonly label: {
|
|
280
|
+
readonly type: "string";
|
|
281
|
+
};
|
|
282
|
+
readonly placeholder: {
|
|
283
|
+
readonly type: "string";
|
|
284
|
+
};
|
|
285
|
+
};
|
|
286
|
+
readonly additionalProperties: false;
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
readonly additionalProperties: false;
|
|
290
|
+
};
|
|
291
|
+
};
|
|
292
|
+
readonly additionalProperties: false;
|
|
293
|
+
};
|
|
294
|
+
readonly layout: {
|
|
295
|
+
readonly type: "string";
|
|
296
|
+
readonly enum: readonly ["stacked", "three-panel"];
|
|
297
|
+
};
|
|
298
|
+
};
|
|
299
|
+
readonly additionalProperties: false;
|
|
300
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.asyncapiConfigSchema = void 0;
|
|
4
|
+
const feedback_config_schema_1 = require("./feedback-config-schema");
|
|
5
|
+
const redoc_config_schema_1 = require("./redoc-config-schema");
|
|
6
|
+
exports.asyncapiConfigSchema = {
|
|
7
|
+
type: 'object',
|
|
8
|
+
properties: {
|
|
9
|
+
downloadUrls: redoc_config_schema_1.downloadUrlsSchema,
|
|
10
|
+
apiLogo: {
|
|
11
|
+
type: 'object',
|
|
12
|
+
properties: {
|
|
13
|
+
imageUrl: {
|
|
14
|
+
type: 'string',
|
|
15
|
+
},
|
|
16
|
+
href: {
|
|
17
|
+
type: 'string',
|
|
18
|
+
},
|
|
19
|
+
altText: {
|
|
20
|
+
type: 'string',
|
|
21
|
+
},
|
|
22
|
+
backgroundColor: {
|
|
23
|
+
type: 'string',
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
jsonSamplesDepth: {
|
|
28
|
+
type: 'number',
|
|
29
|
+
},
|
|
30
|
+
samplesMaxInlineArgs: {
|
|
31
|
+
type: 'number',
|
|
32
|
+
},
|
|
33
|
+
fieldExpandLevel: {
|
|
34
|
+
type: 'number',
|
|
35
|
+
},
|
|
36
|
+
baseUrlPath: {
|
|
37
|
+
type: 'string',
|
|
38
|
+
},
|
|
39
|
+
metadata: {
|
|
40
|
+
type: 'object',
|
|
41
|
+
properties: {
|
|
42
|
+
apiId: {
|
|
43
|
+
type: 'string',
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
additionalProperties: true,
|
|
47
|
+
},
|
|
48
|
+
feedback: feedback_config_schema_1.feedbackConfigSchema,
|
|
49
|
+
layout: { type: 'string', enum: ['stacked', 'three-panel'] },
|
|
50
|
+
},
|
|
51
|
+
additionalProperties: false,
|
|
52
|
+
};
|
|
53
|
+
//# sourceMappingURL=asyncapi-config-schema.js.map
|
package/lib/common.d.ts
CHANGED
|
@@ -1,28 +1,247 @@
|
|
|
1
|
-
export declare const rulesSchema: {
|
|
2
|
-
readonly type: "object";
|
|
3
|
-
readonly additionalProperties: {
|
|
4
|
-
readonly oneOf: readonly [{
|
|
5
|
-
readonly type: "string";
|
|
6
|
-
}, {
|
|
7
|
-
readonly type: "object";
|
|
8
|
-
}];
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
1
|
export declare const ruleTypes: readonly ["rules", "oas2Rules", "oas3_0Rules", "oas3_1Rules", "oas3_2Rules", "async2Rules", "async3Rules", "arazzo1Rules", "overlay1Rules", "openrpc1Rules"];
|
|
12
2
|
export type RuleTypes = (typeof ruleTypes)[number];
|
|
13
|
-
export declare const ruleSchemas: Record<RuleTypes, typeof rulesSchema>;
|
|
14
3
|
export declare const preprocessorTypes: readonly ["preprocessors", "oas2Preprocessors", "oas3_0Preprocessors", "oas3_1Preprocessors", "oas3_2Preprocessors", "async2Preprocessors", "async3Preprocessors", "arazzo1Preprocessors", "overlay1Preprocessors", "openrpc1Preprocessors"];
|
|
15
4
|
export type PreprocessorTypes = (typeof preprocessorTypes)[number];
|
|
16
|
-
declare const preprocessorSchema: {
|
|
17
|
-
readonly type: "object";
|
|
18
|
-
readonly additionalProperties: true;
|
|
19
|
-
};
|
|
20
|
-
export declare const preprocessorSchemas: Record<PreprocessorTypes, typeof preprocessorSchema>;
|
|
21
|
-
export declare const decoratorsSchema: {
|
|
22
|
-
readonly type: "object";
|
|
23
|
-
readonly additionalProperties: true;
|
|
24
|
-
};
|
|
25
5
|
export declare const decoratorTypes: readonly ["decorators", "oas2Decorators", "oas3_0Decorators", "oas3_1Decorators", "oas3_2Decorators", "async2Decorators", "async3Decorators", "arazzo1Decorators", "overlay1Decorators", "openrpc1Decorators"];
|
|
26
6
|
export type DecoratorTypes = (typeof decoratorTypes)[number];
|
|
27
|
-
export declare const
|
|
28
|
-
|
|
7
|
+
export declare const configGovernanceSchema: {
|
|
8
|
+
extends: {
|
|
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
|
+
preprocessors: {
|
|
18
|
+
readonly nodeTypeName: undefined;
|
|
19
|
+
readonly type: "object";
|
|
20
|
+
readonly additionalProperties: true;
|
|
21
|
+
};
|
|
22
|
+
oas2Preprocessors: {
|
|
23
|
+
readonly nodeTypeName: undefined;
|
|
24
|
+
readonly type: "object";
|
|
25
|
+
readonly additionalProperties: true;
|
|
26
|
+
};
|
|
27
|
+
oas3_0Preprocessors: {
|
|
28
|
+
readonly nodeTypeName: undefined;
|
|
29
|
+
readonly type: "object";
|
|
30
|
+
readonly additionalProperties: true;
|
|
31
|
+
};
|
|
32
|
+
oas3_1Preprocessors: {
|
|
33
|
+
readonly nodeTypeName: undefined;
|
|
34
|
+
readonly type: "object";
|
|
35
|
+
readonly additionalProperties: true;
|
|
36
|
+
};
|
|
37
|
+
oas3_2Preprocessors: {
|
|
38
|
+
readonly nodeTypeName: undefined;
|
|
39
|
+
readonly type: "object";
|
|
40
|
+
readonly additionalProperties: true;
|
|
41
|
+
};
|
|
42
|
+
async2Preprocessors: {
|
|
43
|
+
readonly nodeTypeName: undefined;
|
|
44
|
+
readonly type: "object";
|
|
45
|
+
readonly additionalProperties: true;
|
|
46
|
+
};
|
|
47
|
+
async3Preprocessors: {
|
|
48
|
+
readonly nodeTypeName: undefined;
|
|
49
|
+
readonly type: "object";
|
|
50
|
+
readonly additionalProperties: true;
|
|
51
|
+
};
|
|
52
|
+
arazzo1Preprocessors: {
|
|
53
|
+
readonly nodeTypeName: undefined;
|
|
54
|
+
readonly type: "object";
|
|
55
|
+
readonly additionalProperties: true;
|
|
56
|
+
};
|
|
57
|
+
overlay1Preprocessors: {
|
|
58
|
+
readonly nodeTypeName: undefined;
|
|
59
|
+
readonly type: "object";
|
|
60
|
+
readonly additionalProperties: true;
|
|
61
|
+
};
|
|
62
|
+
openrpc1Preprocessors: {
|
|
63
|
+
readonly nodeTypeName: undefined;
|
|
64
|
+
readonly type: "object";
|
|
65
|
+
readonly additionalProperties: true;
|
|
66
|
+
};
|
|
67
|
+
decorators: {
|
|
68
|
+
readonly nodeTypeName: undefined;
|
|
69
|
+
readonly type: "object";
|
|
70
|
+
readonly additionalProperties: true;
|
|
71
|
+
};
|
|
72
|
+
oas2Decorators: {
|
|
73
|
+
readonly nodeTypeName: undefined;
|
|
74
|
+
readonly type: "object";
|
|
75
|
+
readonly additionalProperties: true;
|
|
76
|
+
};
|
|
77
|
+
oas3_0Decorators: {
|
|
78
|
+
readonly nodeTypeName: undefined;
|
|
79
|
+
readonly type: "object";
|
|
80
|
+
readonly additionalProperties: true;
|
|
81
|
+
};
|
|
82
|
+
oas3_1Decorators: {
|
|
83
|
+
readonly nodeTypeName: undefined;
|
|
84
|
+
readonly type: "object";
|
|
85
|
+
readonly additionalProperties: true;
|
|
86
|
+
};
|
|
87
|
+
oas3_2Decorators: {
|
|
88
|
+
readonly nodeTypeName: undefined;
|
|
89
|
+
readonly type: "object";
|
|
90
|
+
readonly additionalProperties: true;
|
|
91
|
+
};
|
|
92
|
+
async2Decorators: {
|
|
93
|
+
readonly nodeTypeName: undefined;
|
|
94
|
+
readonly type: "object";
|
|
95
|
+
readonly additionalProperties: true;
|
|
96
|
+
};
|
|
97
|
+
async3Decorators: {
|
|
98
|
+
readonly nodeTypeName: undefined;
|
|
99
|
+
readonly type: "object";
|
|
100
|
+
readonly additionalProperties: true;
|
|
101
|
+
};
|
|
102
|
+
arazzo1Decorators: {
|
|
103
|
+
readonly nodeTypeName: undefined;
|
|
104
|
+
readonly type: "object";
|
|
105
|
+
readonly additionalProperties: true;
|
|
106
|
+
};
|
|
107
|
+
overlay1Decorators: {
|
|
108
|
+
readonly nodeTypeName: undefined;
|
|
109
|
+
readonly type: "object";
|
|
110
|
+
readonly additionalProperties: true;
|
|
111
|
+
};
|
|
112
|
+
openrpc1Decorators: {
|
|
113
|
+
readonly nodeTypeName: undefined;
|
|
114
|
+
readonly type: "object";
|
|
115
|
+
readonly additionalProperties: true;
|
|
116
|
+
};
|
|
117
|
+
rules: {
|
|
118
|
+
readonly nodeTypeName: undefined;
|
|
119
|
+
readonly type: "object";
|
|
120
|
+
readonly additionalProperties: {
|
|
121
|
+
readonly oneOf: readonly [{
|
|
122
|
+
readonly type: "string";
|
|
123
|
+
}, {
|
|
124
|
+
readonly type: "object";
|
|
125
|
+
}];
|
|
126
|
+
};
|
|
127
|
+
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.";
|
|
128
|
+
readonly documentationLink: "https://redocly.com/docs/cli/configuration/reference/rules#rules";
|
|
129
|
+
};
|
|
130
|
+
oas2Rules: {
|
|
131
|
+
readonly nodeTypeName: undefined;
|
|
132
|
+
readonly type: "object";
|
|
133
|
+
readonly additionalProperties: {
|
|
134
|
+
readonly oneOf: readonly [{
|
|
135
|
+
readonly type: "string";
|
|
136
|
+
}, {
|
|
137
|
+
readonly type: "object";
|
|
138
|
+
}];
|
|
139
|
+
};
|
|
140
|
+
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.";
|
|
141
|
+
readonly documentationLink: "https://redocly.com/docs/cli/configuration/reference/rules#rules";
|
|
142
|
+
};
|
|
143
|
+
oas3_0Rules: {
|
|
144
|
+
readonly nodeTypeName: undefined;
|
|
145
|
+
readonly type: "object";
|
|
146
|
+
readonly additionalProperties: {
|
|
147
|
+
readonly oneOf: readonly [{
|
|
148
|
+
readonly type: "string";
|
|
149
|
+
}, {
|
|
150
|
+
readonly type: "object";
|
|
151
|
+
}];
|
|
152
|
+
};
|
|
153
|
+
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.";
|
|
154
|
+
readonly documentationLink: "https://redocly.com/docs/cli/configuration/reference/rules#rules";
|
|
155
|
+
};
|
|
156
|
+
oas3_1Rules: {
|
|
157
|
+
readonly nodeTypeName: undefined;
|
|
158
|
+
readonly type: "object";
|
|
159
|
+
readonly additionalProperties: {
|
|
160
|
+
readonly oneOf: readonly [{
|
|
161
|
+
readonly type: "string";
|
|
162
|
+
}, {
|
|
163
|
+
readonly type: "object";
|
|
164
|
+
}];
|
|
165
|
+
};
|
|
166
|
+
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.";
|
|
167
|
+
readonly documentationLink: "https://redocly.com/docs/cli/configuration/reference/rules#rules";
|
|
168
|
+
};
|
|
169
|
+
oas3_2Rules: {
|
|
170
|
+
readonly nodeTypeName: undefined;
|
|
171
|
+
readonly type: "object";
|
|
172
|
+
readonly additionalProperties: {
|
|
173
|
+
readonly oneOf: readonly [{
|
|
174
|
+
readonly type: "string";
|
|
175
|
+
}, {
|
|
176
|
+
readonly type: "object";
|
|
177
|
+
}];
|
|
178
|
+
};
|
|
179
|
+
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.";
|
|
180
|
+
readonly documentationLink: "https://redocly.com/docs/cli/configuration/reference/rules#rules";
|
|
181
|
+
};
|
|
182
|
+
async2Rules: {
|
|
183
|
+
readonly nodeTypeName: undefined;
|
|
184
|
+
readonly type: "object";
|
|
185
|
+
readonly additionalProperties: {
|
|
186
|
+
readonly oneOf: readonly [{
|
|
187
|
+
readonly type: "string";
|
|
188
|
+
}, {
|
|
189
|
+
readonly type: "object";
|
|
190
|
+
}];
|
|
191
|
+
};
|
|
192
|
+
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.";
|
|
193
|
+
readonly documentationLink: "https://redocly.com/docs/cli/configuration/reference/rules#rules";
|
|
194
|
+
};
|
|
195
|
+
async3Rules: {
|
|
196
|
+
readonly nodeTypeName: undefined;
|
|
197
|
+
readonly type: "object";
|
|
198
|
+
readonly additionalProperties: {
|
|
199
|
+
readonly oneOf: readonly [{
|
|
200
|
+
readonly type: "string";
|
|
201
|
+
}, {
|
|
202
|
+
readonly type: "object";
|
|
203
|
+
}];
|
|
204
|
+
};
|
|
205
|
+
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.";
|
|
206
|
+
readonly documentationLink: "https://redocly.com/docs/cli/configuration/reference/rules#rules";
|
|
207
|
+
};
|
|
208
|
+
arazzo1Rules: {
|
|
209
|
+
readonly nodeTypeName: undefined;
|
|
210
|
+
readonly type: "object";
|
|
211
|
+
readonly additionalProperties: {
|
|
212
|
+
readonly oneOf: readonly [{
|
|
213
|
+
readonly type: "string";
|
|
214
|
+
}, {
|
|
215
|
+
readonly type: "object";
|
|
216
|
+
}];
|
|
217
|
+
};
|
|
218
|
+
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.";
|
|
219
|
+
readonly documentationLink: "https://redocly.com/docs/cli/configuration/reference/rules#rules";
|
|
220
|
+
};
|
|
221
|
+
overlay1Rules: {
|
|
222
|
+
readonly nodeTypeName: undefined;
|
|
223
|
+
readonly type: "object";
|
|
224
|
+
readonly additionalProperties: {
|
|
225
|
+
readonly oneOf: readonly [{
|
|
226
|
+
readonly type: "string";
|
|
227
|
+
}, {
|
|
228
|
+
readonly type: "object";
|
|
229
|
+
}];
|
|
230
|
+
};
|
|
231
|
+
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.";
|
|
232
|
+
readonly documentationLink: "https://redocly.com/docs/cli/configuration/reference/rules#rules";
|
|
233
|
+
};
|
|
234
|
+
openrpc1Rules: {
|
|
235
|
+
readonly nodeTypeName: undefined;
|
|
236
|
+
readonly type: "object";
|
|
237
|
+
readonly additionalProperties: {
|
|
238
|
+
readonly oneOf: readonly [{
|
|
239
|
+
readonly type: "string";
|
|
240
|
+
}, {
|
|
241
|
+
readonly type: "object";
|
|
242
|
+
}];
|
|
243
|
+
};
|
|
244
|
+
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.";
|
|
245
|
+
readonly documentationLink: "https://redocly.com/docs/cli/configuration/reference/rules#rules";
|
|
246
|
+
};
|
|
247
|
+
};
|