@redocly/openapi-core 2.31.0 → 2.31.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/README.md +18 -18
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -253,15 +253,15 @@ async function bundle(options: {
|
|
|
253
253
|
// optional base path for resolution
|
|
254
254
|
base?: string | null;
|
|
255
255
|
}): Promise<{
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
256
|
+
bundle: {
|
|
257
|
+
parsed: object; // OpenAPI document object as js object
|
|
258
|
+
};
|
|
259
|
+
problems: NormalizedProblem[];
|
|
260
|
+
fileDependencies;
|
|
261
|
+
rootType;
|
|
262
|
+
refTypes;
|
|
263
|
+
visitorsData;
|
|
264
|
+
}>;
|
|
265
265
|
```
|
|
266
266
|
|
|
267
267
|
### `bundleFromString`
|
|
@@ -286,15 +286,15 @@ async function bundleFromString(options: {
|
|
|
286
286
|
// optional external reference resolver
|
|
287
287
|
externalRefResolver?: BaseResolver;
|
|
288
288
|
}): Promise<{
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
289
|
+
bundle: {
|
|
290
|
+
parsed: object; // OpenAPI document object as js object
|
|
291
|
+
};
|
|
292
|
+
problems: NormalizedProblem[];
|
|
293
|
+
fileDependencies;
|
|
294
|
+
rootType;
|
|
295
|
+
refTypes;
|
|
296
|
+
visitorsData;
|
|
297
|
+
}>;
|
|
298
298
|
```
|
|
299
299
|
|
|
300
300
|
### `stringifyYaml`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redocly/openapi-core",
|
|
3
|
-
"version": "2.31.
|
|
3
|
+
"version": "2.31.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@redocly/ajv": "^8.18.1",
|
|
56
|
-
"@redocly/config": "^0.48.
|
|
56
|
+
"@redocly/config": "^0.48.2",
|
|
57
57
|
"ajv": "npm:@redocly/ajv@8.18.1",
|
|
58
58
|
"ajv-formats": "^3.0.1",
|
|
59
59
|
"colorette": "^1.2.0",
|