@speclynx/apidom-parser-adapter-arazzo-yaml-1 4.0.2 → 4.0.3

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,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
+ ## [4.0.3](https://github.com/speclynx/apidom/compare/v4.0.2...v4.0.3) (2026-03-11)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **release:** fix v4.0.2 failed release ([b4dc1c4](https://github.com/speclynx/apidom/commit/b4dc1c48e8d9b2986a70e49b5554eb0a166d7528))
11
+
6
12
  ## [4.0.2](https://github.com/speclynx/apidom/compare/v4.0.1...v4.0.2) (2026-03-11)
7
13
 
8
14
  **Note:** Version bump only for package @speclynx/apidom-parser-adapter-arazzo-yaml-1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speclynx/apidom-parser-adapter-arazzo-yaml-1",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "Parser adapter for parsing YAML documents into Arazzo 1.x.y namespace.",
5
5
  "keywords": [
6
6
  "apidom",
@@ -57,16 +57,15 @@
57
57
  "license": "Apache-2.0",
58
58
  "dependencies": {
59
59
  "@babel/runtime-corejs3": "^7.28.4",
60
- "@speclynx/apidom-core": "4.0.2",
61
- "@speclynx/apidom-datamodel": "4.0.2",
62
- "@speclynx/apidom-ns-arazzo-1": "4.0.2",
63
- "@speclynx/apidom-parser-adapter-yaml-1-2": "4.0.2",
60
+ "@speclynx/apidom-core": "4.0.3",
61
+ "@speclynx/apidom-datamodel": "4.0.3",
62
+ "@speclynx/apidom-ns-arazzo-1": "4.0.3",
63
+ "@speclynx/apidom-parser-adapter-yaml-1-2": "4.0.3",
64
64
  "ramda": "~0.32.0",
65
65
  "ramda-adjunct": "^6.0.0"
66
66
  },
67
67
  "files": [
68
- "src/**/*.mjs",
69
- "src/**/*.cjs",
68
+ "src/",
70
69
  "dist/",
71
70
  "types/apidom-parser-adapter-arazzo-yaml-1.d.ts",
72
71
  "LICENSES",
@@ -74,5 +73,5 @@
74
73
  "README.md",
75
74
  "CHANGELOG.md"
76
75
  ],
77
- "gitHead": "af1b05d4d5e48a11a3a03cd5699324e0f1b62765"
76
+ "gitHead": "6ccfa09c02232516215e7de3ead276641957e626"
78
77
  }
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault").default;
4
+ var _interopRequireWildcard = require("@babel/runtime-corejs3/helpers/interopRequireWildcard").default;
5
+ exports.__esModule = true;
6
+ exports.parse = exports.namespace = exports.mediaTypes = exports.detectionRegExp = exports.detect = void 0;
7
+ var _ramda = require("ramda");
8
+ var _ramdaAdjunct = require("ramda-adjunct");
9
+ var _apidomDatamodel = require("@speclynx/apidom-datamodel");
10
+ var _apidomParserAdapterYaml = require("@speclynx/apidom-parser-adapter-yaml-1-2");
11
+ var _apidomNsArazzo = _interopRequireWildcard(require("@speclynx/apidom-ns-arazzo-1"));
12
+ var _mediaTypes = _interopRequireDefault(require("./media-types.cjs"));
13
+ exports.mediaTypes = _mediaTypes.default;
14
+ /**
15
+ * @public
16
+ */
17
+ const detectionRegExp = exports.detectionRegExp = /(?<YAML>^(["']?)arazzo\2\s*:\s*(["']?)(?<version_yaml>1\.(?:[1-9]\d*|0)\.(?:[1-9]\d*|0))\3(?:\s+|$))|(?<JSON>"arazzo"\s*:\s*"(?<version_json>1\.(?:[1-9]\d*|0)\.(?:[1-9]\d*|0))")/m;
18
+
19
+ /**
20
+ * @public
21
+ */
22
+ const detect = async (source, options = {}) => detectionRegExp.test(source) && (await (0, _apidomParserAdapterYaml.detect)(source, options));
23
+
24
+ /**
25
+ * @public
26
+ */
27
+ exports.detect = detect;
28
+ /**
29
+ * @public
30
+ */
31
+ const parse = async (source, options = {}) => {
32
+ const refractorOpts = (0, _ramda.propOr)({}, 'refractorOpts', options);
33
+ const parserOpts = (0, _ramda.omit)(['refractorOpts'], options);
34
+ const parseResultElement = await (0, _apidomParserAdapterYaml.parse)(source, parserOpts);
35
+ const {
36
+ result
37
+ } = parseResultElement;
38
+ if ((0, _ramdaAdjunct.isNotUndefined)(result)) {
39
+ const arazzoSpecificationElement = (0, _apidomNsArazzo.refractArazzoSpecification1)(result, {
40
+ consume: true,
41
+ ...refractorOpts
42
+ });
43
+ arazzoSpecificationElement.classes.push('result');
44
+ parseResultElement.replaceResult(arazzoSpecificationElement);
45
+ }
46
+ return parseResultElement;
47
+ };
48
+
49
+ /**
50
+ * @public
51
+ */
52
+ exports.parse = parse;
53
+ const namespace = exports.namespace = new _apidomDatamodel.Namespace().use(_apidomNsArazzo.default);
@@ -0,0 +1,45 @@
1
+ import { propOr, omit } from 'ramda';
2
+ import { isNotUndefined } from 'ramda-adjunct';
3
+ import { Namespace } from '@speclynx/apidom-datamodel';
4
+ import { parse as parseYAML, detect as detectYAML } from '@speclynx/apidom-parser-adapter-yaml-1-2';
5
+ import arazzoNamespacePlugin, { refractArazzoSpecification1 } from '@speclynx/apidom-ns-arazzo-1';
6
+ export { default as mediaTypes } from "./media-types.mjs";
7
+ /**
8
+ * @public
9
+ */
10
+ export const detectionRegExp = /(?<YAML>^(["']?)arazzo\2\s*:\s*(["']?)(?<version_yaml>1\.(?:[1-9]\d*|0)\.(?:[1-9]\d*|0))\3(?:\s+|$))|(?<JSON>"arazzo"\s*:\s*"(?<version_json>1\.(?:[1-9]\d*|0)\.(?:[1-9]\d*|0))")/m;
11
+
12
+ /**
13
+ * @public
14
+ */
15
+ export const detect = async (source, options = {}) => detectionRegExp.test(source) && (await detectYAML(source, options));
16
+
17
+ /**
18
+ * @public
19
+ */
20
+
21
+ /**
22
+ * @public
23
+ */
24
+ export const parse = async (source, options = {}) => {
25
+ const refractorOpts = propOr({}, 'refractorOpts', options);
26
+ const parserOpts = omit(['refractorOpts'], options);
27
+ const parseResultElement = await parseYAML(source, parserOpts);
28
+ const {
29
+ result
30
+ } = parseResultElement;
31
+ if (isNotUndefined(result)) {
32
+ const arazzoSpecificationElement = refractArazzoSpecification1(result, {
33
+ consume: true,
34
+ ...refractorOpts
35
+ });
36
+ arazzoSpecificationElement.classes.push('result');
37
+ parseResultElement.replaceResult(arazzoSpecificationElement);
38
+ }
39
+ return parseResultElement;
40
+ };
41
+
42
+ /**
43
+ * @public
44
+ */
45
+ export const namespace = new Namespace().use(arazzoNamespacePlugin);
package/src/adapter.ts ADDED
@@ -0,0 +1,62 @@
1
+ import { propOr, omit } from 'ramda';
2
+ import { isNotUndefined } from 'ramda-adjunct';
3
+ import { Namespace, ParseResultElement } from '@speclynx/apidom-datamodel';
4
+ import {
5
+ parse as parseYAML,
6
+ detect as detectYAML,
7
+ type ParseDetectOptions,
8
+ type ParseOptions as ParseOptionsYAML,
9
+ } from '@speclynx/apidom-parser-adapter-yaml-1-2';
10
+ import arazzoNamespacePlugin, { refractArazzoSpecification1 } from '@speclynx/apidom-ns-arazzo-1';
11
+
12
+ export { default as mediaTypes } from './media-types.ts';
13
+
14
+ /**
15
+ * @public
16
+ */
17
+ export const detectionRegExp =
18
+ /(?<YAML>^(["']?)arazzo\2\s*:\s*(["']?)(?<version_yaml>1\.(?:[1-9]\d*|0)\.(?:[1-9]\d*|0))\3(?:\s+|$))|(?<JSON>"arazzo"\s*:\s*"(?<version_json>1\.(?:[1-9]\d*|0)\.(?:[1-9]\d*|0))")/m;
19
+
20
+ /**
21
+ * @public
22
+ */
23
+ export const detect: typeof detectYAML = async (
24
+ source: string,
25
+ options: ParseDetectOptions = {},
26
+ ): Promise<boolean> => detectionRegExp.test(source) && (await detectYAML(source, options));
27
+
28
+ /**
29
+ * @public
30
+ */
31
+ export interface ParseOptions extends ParseOptionsYAML {
32
+ refractorOpts?: Record<string, unknown>;
33
+ }
34
+
35
+ /**
36
+ * @public
37
+ */
38
+ export const parse: typeof parseYAML = async (
39
+ source: string,
40
+ options: ParseOptions = {},
41
+ ): Promise<ParseResultElement> => {
42
+ const refractorOpts: Record<string, unknown> = propOr({}, 'refractorOpts', options);
43
+ const parserOpts = omit(['refractorOpts'], options);
44
+ const parseResultElement = await parseYAML(source, parserOpts);
45
+ const { result } = parseResultElement;
46
+
47
+ if (isNotUndefined(result)) {
48
+ const arazzoSpecificationElement = refractArazzoSpecification1(result, {
49
+ consume: true,
50
+ ...refractorOpts,
51
+ });
52
+ arazzoSpecificationElement.classes.push('result');
53
+ parseResultElement.replaceResult(arazzoSpecificationElement);
54
+ }
55
+
56
+ return parseResultElement;
57
+ };
58
+
59
+ /**
60
+ * @public
61
+ */
62
+ export const namespace = new Namespace().use(arazzoNamespacePlugin);
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+
3
+ exports.__esModule = true;
4
+ exports.default = void 0;
5
+ var _apidomNsArazzo = require("@speclynx/apidom-ns-arazzo-1");
6
+ /**
7
+ * @public
8
+ */
9
+ const yamlMediaTypes = new _apidomNsArazzo.ArazzoMediaTypes(..._apidomNsArazzo.mediaTypes.filterByFormat('generic'), ..._apidomNsArazzo.mediaTypes.filterByFormat('yaml'));
10
+ var _default = exports.default = yamlMediaTypes;
@@ -0,0 +1,7 @@
1
+ import { mediaTypes, ArazzoMediaTypes } from '@speclynx/apidom-ns-arazzo-1';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ const yamlMediaTypes = new ArazzoMediaTypes(...mediaTypes.filterByFormat('generic'), ...mediaTypes.filterByFormat('yaml'));
7
+ export default yamlMediaTypes;
@@ -0,0 +1,11 @@
1
+ import { mediaTypes, ArazzoMediaTypes } from '@speclynx/apidom-ns-arazzo-1';
2
+
3
+ /**
4
+ * @public
5
+ */
6
+ const yamlMediaTypes = new ArazzoMediaTypes(
7
+ ...mediaTypes.filterByFormat('generic'),
8
+ ...mediaTypes.filterByFormat('yaml'),
9
+ );
10
+
11
+ export default yamlMediaTypes;