@jentic/arazzo-parser 1.0.0-alpha.25 → 1.0.0-alpha.26
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/CHANGELOG.md +6 -0
- package/README.md +5 -18
- package/dist/jentic-arazzo-parser.browser.js +2 -2
- package/dist/jentic-arazzo-parser.browser.min.js +1 -1
- package/package.json +2 -2
- package/src/index.cjs +3 -3
- package/src/index.mjs +2 -2
- package/types/arazzo-parser.d.ts +20 -20
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.0.0-alpha.26](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2026-03-11)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **parser:** add consistent naming for exported options ([#134](https://github.com/jentic/jentic-arazzo-tools/issues/134)) ([cfa2a54](https://github.com/jentic/jentic-arazzo-tools/commit/cfa2a54fad0189da7d26ca4c76b63bfcc3c60eec))
|
|
11
|
+
|
|
6
12
|
# [1.0.0-alpha.25](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.24...v1.0.0-alpha.25) (2026-03-11)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -114,24 +114,11 @@ const parseResult = await parseArazzo(source, {
|
|
|
114
114
|
You can import the default options:
|
|
115
115
|
|
|
116
116
|
```js
|
|
117
|
-
import {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
// parsers: [
|
|
123
|
-
// ArazzoJSON1Parser, ArazzoYAML1Parser,
|
|
124
|
-
// OpenApiJSON2Parser, OpenApiYAML2Parser,
|
|
125
|
-
// OpenApiJSON3_0Parser, OpenApiYAML3_0Parser,
|
|
126
|
-
// OpenApiJSON3_1Parser, OpenApiYAML3_1Parser,
|
|
127
|
-
// ],
|
|
128
|
-
// parserOpts: { sourceMap: false, strict: true, sourceDescriptions: false },
|
|
129
|
-
// },
|
|
130
|
-
// resolve: {
|
|
131
|
-
// resolvers: [MemoryResolver, FileResolver, HTTPResolverAxios],
|
|
132
|
-
// resolverOpts: {},
|
|
133
|
-
// },
|
|
134
|
-
// }
|
|
117
|
+
import { defaultParseArazzoOptions } from '@jentic/arazzo-parser';
|
|
118
|
+
import { defaultParseOpenAPIOptions } from '@jentic/arazzo-parser';
|
|
119
|
+
|
|
120
|
+
console.dir(defaultParseArazzoOptions, { depth: null });
|
|
121
|
+
console.dir(defaultParseOpenAPIOptions, { depth: null });
|
|
135
122
|
```
|
|
136
123
|
|
|
137
124
|
## Error handling
|
|
@@ -75292,8 +75292,8 @@ var __webpack_exports__ = {};
|
|
|
75292
75292
|
"use strict";
|
|
75293
75293
|
__webpack_require__.r(__webpack_exports__);
|
|
75294
75294
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
75295
|
-
/* harmony export */
|
|
75296
|
-
/* harmony export */
|
|
75295
|
+
/* harmony export */ defaultParseArazzoOptions: () => (/* reexport safe */ _parse_arazzo_ts__WEBPACK_IMPORTED_MODULE_0__.defaultOptions),
|
|
75296
|
+
/* harmony export */ defaultParseOpenAPIOptions: () => (/* reexport safe */ _parse_openapi_ts__WEBPACK_IMPORTED_MODULE_1__.defaultOptions),
|
|
75297
75297
|
/* harmony export */ parseArazzo: () => (/* reexport safe */ _parse_arazzo_ts__WEBPACK_IMPORTED_MODULE_0__.parse),
|
|
75298
75298
|
/* harmony export */ parseOpenAPI: () => (/* reexport safe */ _parse_openapi_ts__WEBPACK_IMPORTED_MODULE_1__.parse)
|
|
75299
75299
|
/* harmony export */ });
|