@jentic/arazzo-validator 1.0.0-alpha.22 → 1.0.0-alpha.23
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,10 @@
|
|
|
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.23](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.22...v1.0.0-alpha.23) (2026-03-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @jentic/arazzo-validator
|
|
9
|
+
|
|
6
10
|
# [1.0.0-alpha.22](https://github.com/jentic/jentic-arazzo-tools/compare/v1.0.0-alpha.21...v1.0.0-alpha.22) (2026-03-10)
|
|
7
11
|
|
|
8
12
|
### Performance Improvements
|
|
@@ -150421,7 +150421,7 @@ const defaultOptions = {
|
|
|
150421
150421
|
resolvers: [new _resolve_resolvers_memory_index_mjs__WEBPACK_IMPORTED_MODULE_18__["default"](), new _speclynx_apidom_reference_resolve_resolvers_file__WEBPACK_IMPORTED_MODULE_11__["default"]({
|
|
150422
150422
|
fileAllowList: ['*.json', '*.yaml', '*.yml']
|
|
150423
150423
|
}), new _speclynx_apidom_reference_resolve_resolvers_http_axios__WEBPACK_IMPORTED_MODULE_12__["default"]({
|
|
150424
|
-
timeout:
|
|
150424
|
+
timeout: 15000,
|
|
150425
150425
|
redirects: 5,
|
|
150426
150426
|
withCredentials: false
|
|
150427
150427
|
})],
|
|
@@ -150447,6 +150447,15 @@ const defaultOptions = {
|
|
|
150447
150447
|
* @public
|
|
150448
150448
|
*/
|
|
150449
150449
|
|
|
150450
|
+
/**
|
|
150451
|
+
* Parses an Arazzo Document from a string, object, or URI.
|
|
150452
|
+
* @param source - The Arazzo Document as a plain object, string content, or URI
|
|
150453
|
+
* @param options - Reference options (uses defaultOptions when not provided)
|
|
150454
|
+
* @returns A promise that resolves to the parsed Arazzo Document as ApiDOM data model
|
|
150455
|
+
* @throws ParseError - When parsing fails for any reason. The original error is available via the `cause` property.
|
|
150456
|
+
* @public
|
|
150457
|
+
*/
|
|
150458
|
+
|
|
150450
150459
|
/**
|
|
150451
150460
|
* Parses an Arazzo Document from a string, object, or URI.
|
|
150452
150461
|
*
|