@redocly/config 0.54.0 → 0.56.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/default-theme-config-schema.d.ts +0 -11
- package/lib/ex-theme-config-schemas.d.ts +0 -6
- package/lib/graphql-config-schema.d.ts +0 -8
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/product-override-schema.d.ts +0 -31
- package/lib/recheck-config-schema.d.ts +268 -0
- package/lib/redoc-config-schema.d.ts +0 -3
- package/lib/root-config-schema.d.ts +804 -154
- package/lib/types/config-types.d.ts +2 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/mcp-tools-types.d.ts +81 -0
- package/lib-esm/default-theme-config-schema.d.ts +0 -11
- package/lib-esm/ex-theme-config-schemas.d.ts +0 -6
- package/lib-esm/graphql-config-schema.d.ts +0 -8
- package/lib-esm/index.d.ts +1 -0
- package/lib-esm/index.js +1 -1
- package/lib-esm/product-override-schema.d.ts +0 -31
- package/lib-esm/recheck-config-schema.d.ts +268 -0
- package/lib-esm/redoc-config-schema.d.ts +0 -3
- package/lib-esm/root-config-schema.d.ts +804 -154
- package/lib-esm/types/config-types.d.ts +2 -0
- package/lib-esm/types/index.d.ts +1 -0
- package/lib-esm/types/mcp-tools-types.d.ts +81 -0
- package/package.json +6 -4
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
export declare const recheckConfigSchema: {
|
|
2
|
+
readonly type: 'object';
|
|
3
|
+
readonly properties: {
|
|
4
|
+
readonly rules: {
|
|
5
|
+
readonly type: 'object';
|
|
6
|
+
readonly additionalProperties: {
|
|
7
|
+
readonly oneOf: readonly [{
|
|
8
|
+
readonly type: 'string';
|
|
9
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
10
|
+
}, {
|
|
11
|
+
readonly type: 'object';
|
|
12
|
+
readonly properties: {
|
|
13
|
+
readonly severity: {
|
|
14
|
+
readonly type: 'string';
|
|
15
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
16
|
+
};
|
|
17
|
+
readonly message: {
|
|
18
|
+
readonly type: 'string';
|
|
19
|
+
readonly minLength: 1;
|
|
20
|
+
};
|
|
21
|
+
readonly fix: {
|
|
22
|
+
readonly type: 'boolean';
|
|
23
|
+
};
|
|
24
|
+
readonly tags: {
|
|
25
|
+
readonly type: 'array';
|
|
26
|
+
readonly items: {
|
|
27
|
+
readonly type: 'string';
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
readonly description: {
|
|
31
|
+
readonly type: 'string';
|
|
32
|
+
};
|
|
33
|
+
readonly link: {
|
|
34
|
+
readonly type: 'string';
|
|
35
|
+
};
|
|
36
|
+
readonly scope: {
|
|
37
|
+
readonly oneOf: readonly [{
|
|
38
|
+
readonly type: 'string';
|
|
39
|
+
readonly minLength: 1;
|
|
40
|
+
}, {
|
|
41
|
+
readonly type: 'array';
|
|
42
|
+
readonly items: {
|
|
43
|
+
readonly type: 'string';
|
|
44
|
+
readonly minLength: 1;
|
|
45
|
+
};
|
|
46
|
+
readonly minItems: 1;
|
|
47
|
+
}];
|
|
48
|
+
};
|
|
49
|
+
readonly appliesTo: {
|
|
50
|
+
readonly type: 'array';
|
|
51
|
+
readonly items: {
|
|
52
|
+
readonly type: 'string';
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
readonly excludes: {
|
|
56
|
+
readonly type: 'array';
|
|
57
|
+
readonly items: {
|
|
58
|
+
readonly type: 'string';
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
readonly exceptions: {
|
|
62
|
+
readonly type: 'object';
|
|
63
|
+
readonly properties: {
|
|
64
|
+
readonly files: {
|
|
65
|
+
readonly type: 'array';
|
|
66
|
+
readonly items: {
|
|
67
|
+
readonly type: 'string';
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
readonly lines: {
|
|
71
|
+
readonly type: 'array';
|
|
72
|
+
readonly items: {
|
|
73
|
+
readonly type: 'string';
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
readonly additionalProperties: false;
|
|
78
|
+
};
|
|
79
|
+
readonly assertions: {
|
|
80
|
+
readonly type: 'object';
|
|
81
|
+
readonly additionalProperties: true;
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
readonly additionalProperties: false;
|
|
85
|
+
}];
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
readonly excludes: {
|
|
89
|
+
readonly type: 'array';
|
|
90
|
+
readonly items: {
|
|
91
|
+
readonly type: 'string';
|
|
92
|
+
readonly minLength: 1;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
readonly baseline: {
|
|
96
|
+
readonly type: 'string';
|
|
97
|
+
readonly minLength: 1;
|
|
98
|
+
};
|
|
99
|
+
readonly markdoc: {
|
|
100
|
+
readonly oneOf: readonly [{
|
|
101
|
+
readonly type: 'boolean';
|
|
102
|
+
}, {
|
|
103
|
+
readonly type: 'object';
|
|
104
|
+
readonly properties: {
|
|
105
|
+
readonly schema: {
|
|
106
|
+
readonly oneOf: readonly [{
|
|
107
|
+
readonly type: 'string';
|
|
108
|
+
readonly enum: readonly ["realm"];
|
|
109
|
+
}, {
|
|
110
|
+
readonly type: 'boolean';
|
|
111
|
+
}];
|
|
112
|
+
};
|
|
113
|
+
readonly extend: {
|
|
114
|
+
readonly type: 'object';
|
|
115
|
+
readonly properties: {
|
|
116
|
+
readonly tags: {
|
|
117
|
+
readonly type: 'object';
|
|
118
|
+
readonly additionalProperties: {
|
|
119
|
+
readonly type: 'object';
|
|
120
|
+
readonly properties: {
|
|
121
|
+
readonly selfClosing: {
|
|
122
|
+
readonly type: 'boolean';
|
|
123
|
+
};
|
|
124
|
+
readonly attributes: {
|
|
125
|
+
readonly type: 'object';
|
|
126
|
+
readonly additionalProperties: {
|
|
127
|
+
readonly type: 'object';
|
|
128
|
+
readonly properties: {
|
|
129
|
+
readonly type: {
|
|
130
|
+
readonly type: 'string';
|
|
131
|
+
readonly enum: readonly ["string", "number", "boolean"];
|
|
132
|
+
};
|
|
133
|
+
readonly required: {
|
|
134
|
+
readonly type: 'boolean';
|
|
135
|
+
};
|
|
136
|
+
readonly default: {
|
|
137
|
+
readonly oneOf: readonly [{
|
|
138
|
+
readonly type: 'string';
|
|
139
|
+
}, {
|
|
140
|
+
readonly type: 'number';
|
|
141
|
+
}, {
|
|
142
|
+
readonly type: 'boolean';
|
|
143
|
+
}];
|
|
144
|
+
};
|
|
145
|
+
readonly enum: {
|
|
146
|
+
readonly type: 'array';
|
|
147
|
+
readonly items: {
|
|
148
|
+
readonly type: 'string';
|
|
149
|
+
};
|
|
150
|
+
readonly minItems: 1;
|
|
151
|
+
};
|
|
152
|
+
readonly dynamic: {
|
|
153
|
+
readonly type: 'boolean';
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
readonly required: readonly ["type"];
|
|
157
|
+
readonly additionalProperties: false;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
readonly additionalProperties: false;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
readonly tagsFile: {
|
|
165
|
+
readonly type: 'string';
|
|
166
|
+
readonly minLength: 1;
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
readonly additionalProperties: false;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
readonly required: readonly ["schema"];
|
|
173
|
+
readonly additionalProperties: false;
|
|
174
|
+
}];
|
|
175
|
+
};
|
|
176
|
+
readonly apiDescriptions: {
|
|
177
|
+
readonly type: 'object';
|
|
178
|
+
readonly properties: {
|
|
179
|
+
readonly rules: {
|
|
180
|
+
readonly type: 'object';
|
|
181
|
+
readonly additionalProperties: {
|
|
182
|
+
readonly oneOf: readonly [{
|
|
183
|
+
readonly type: 'string';
|
|
184
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
185
|
+
}, {
|
|
186
|
+
readonly type: 'object';
|
|
187
|
+
readonly properties: {
|
|
188
|
+
readonly severity: {
|
|
189
|
+
readonly type: 'string';
|
|
190
|
+
readonly enum: readonly ["off", "info", "warn", "error"];
|
|
191
|
+
};
|
|
192
|
+
readonly message: {
|
|
193
|
+
readonly type: 'string';
|
|
194
|
+
readonly minLength: 1;
|
|
195
|
+
};
|
|
196
|
+
readonly fix: {
|
|
197
|
+
readonly type: 'boolean';
|
|
198
|
+
};
|
|
199
|
+
readonly tags: {
|
|
200
|
+
readonly type: 'array';
|
|
201
|
+
readonly items: {
|
|
202
|
+
readonly type: 'string';
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
readonly description: {
|
|
206
|
+
readonly type: 'string';
|
|
207
|
+
};
|
|
208
|
+
readonly link: {
|
|
209
|
+
readonly type: 'string';
|
|
210
|
+
};
|
|
211
|
+
readonly scope: {
|
|
212
|
+
readonly oneOf: readonly [{
|
|
213
|
+
readonly type: 'string';
|
|
214
|
+
readonly minLength: 1;
|
|
215
|
+
}, {
|
|
216
|
+
readonly type: 'array';
|
|
217
|
+
readonly items: {
|
|
218
|
+
readonly type: 'string';
|
|
219
|
+
readonly minLength: 1;
|
|
220
|
+
};
|
|
221
|
+
readonly minItems: 1;
|
|
222
|
+
}];
|
|
223
|
+
};
|
|
224
|
+
readonly appliesTo: {
|
|
225
|
+
readonly type: 'array';
|
|
226
|
+
readonly items: {
|
|
227
|
+
readonly type: 'string';
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
readonly excludes: {
|
|
231
|
+
readonly type: 'array';
|
|
232
|
+
readonly items: {
|
|
233
|
+
readonly type: 'string';
|
|
234
|
+
};
|
|
235
|
+
};
|
|
236
|
+
readonly exceptions: {
|
|
237
|
+
readonly type: 'object';
|
|
238
|
+
readonly properties: {
|
|
239
|
+
readonly files: {
|
|
240
|
+
readonly type: 'array';
|
|
241
|
+
readonly items: {
|
|
242
|
+
readonly type: 'string';
|
|
243
|
+
};
|
|
244
|
+
};
|
|
245
|
+
readonly lines: {
|
|
246
|
+
readonly type: 'array';
|
|
247
|
+
readonly items: {
|
|
248
|
+
readonly type: 'string';
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
readonly additionalProperties: false;
|
|
253
|
+
};
|
|
254
|
+
readonly assertions: {
|
|
255
|
+
readonly type: 'object';
|
|
256
|
+
readonly additionalProperties: true;
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
readonly additionalProperties: false;
|
|
260
|
+
}];
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
};
|
|
264
|
+
readonly additionalProperties: false;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
readonly additionalProperties: false;
|
|
268
|
+
};
|