@jentic/arazzo-parser 1.0.0-alpha.24 → 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 CHANGED
@@ -3,6 +3,18 @@
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
+
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)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **release:** fix issue in lerna not publishing _.cjs|_.mjs files ([8982184](https://github.com/jentic/jentic-arazzo-tools/commit/8982184ddae167b6f2a772114f9a9321f3b67d14))
17
+
6
18
  # [1.0.0-alpha.24](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.23...v1.0.0-alpha.24) (2026-03-11)
7
19
 
8
20
  **Note:** Version bump only for package @jentic/arazzo-parser
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 { defaultOptions } from '@jentic/arazzo-parser';
118
-
119
- console.log(defaultOptions);
120
- // {
121
- // parse: {
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 */ defaultArazzoOptions: () => (/* reexport safe */ _parse_arazzo_ts__WEBPACK_IMPORTED_MODULE_0__.defaultOptions),
75296
- /* harmony export */ defaultOpenAPIOptions: () => (/* reexport safe */ _parse_openapi_ts__WEBPACK_IMPORTED_MODULE_1__.defaultOptions),
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 */ });