@swagger-api/apidom-parser-adapter-api-design-systems-yaml 1.0.0-rc.3 → 1.0.0-rc.4
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 +4 -0
- package/README.md +2 -2
- package/package.json +5 -5
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-rc.4](https://github.com/swagger-api/apidom/compare/v1.0.0-rc.3...v1.0.0-rc.4) (2025-11-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-api-design-systems-yaml
|
|
9
|
+
|
|
6
10
|
# [1.0.0-rc.3](https://github.com/swagger-api/apidom/compare/v1.0.0-rc.2...v1.0.0-rc.3) (2025-11-07)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-api-design-systems-yaml
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Supported versions:
|
|
|
6
6
|
- 2021-05-07
|
|
7
7
|
|
|
8
8
|
Under the hood this adapter uses [@swagger-api/apidom-parser-adapter-yaml-1-2](https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser-adapter-yaml-1-2)
|
|
9
|
-
to parse a source string into generic ApiDOM in [base ApiDOM namespace](https://github.com/swagger-api/apidom/tree/main/packages/apidom#base-namespace)
|
|
9
|
+
to parse a source string into generic ApiDOM in [base ApiDOM namespace](https://github.com/swagger-api/apidom/tree/main/packages/apidom-core#base-namespace)
|
|
10
10
|
which is then refracted with [API Design Systems Refractors](https://github.com/swagger-api/apidom/tree/main/packages/apidom-ns-api-design-systems#refractors).
|
|
11
11
|
|
|
12
12
|
## Installation
|
|
@@ -36,7 +36,7 @@ Defines list of media types that this parser adapter recognizes.
|
|
|
36
36
|
|
|
37
37
|
### detect
|
|
38
38
|
|
|
39
|
-
[Detection](https://github.com/swagger-api/apidom/blob/main/packages/apidom-parser-adapter-api-design-systems-yaml/src/adapter.ts#
|
|
39
|
+
[Detection](https://github.com/swagger-api/apidom/blob/main/packages/apidom-parser-adapter-api-design-systems-yaml/src/adapter.ts#L21) is based on a regular expression matching required API Design Systems specification symbols in YAML format.
|
|
40
40
|
|
|
41
41
|
### namespace
|
|
42
42
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swagger-api/apidom-parser-adapter-api-design-systems-yaml",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.4",
|
|
4
4
|
"description": "Parser adapter for parsing YAML documents into API Design Systems namespace.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"license": "Apache-2.0",
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@babel/runtime-corejs3": "^7.26.10",
|
|
41
|
-
"@swagger-api/apidom-core": "^1.0.0-rc.
|
|
42
|
-
"@swagger-api/apidom-ns-api-design-systems": "^1.0.0-rc.
|
|
43
|
-
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^1.0.0-rc.
|
|
41
|
+
"@swagger-api/apidom-core": "^1.0.0-rc.4",
|
|
42
|
+
"@swagger-api/apidom-ns-api-design-systems": "^1.0.0-rc.4",
|
|
43
|
+
"@swagger-api/apidom-parser-adapter-yaml-1-2": "^1.0.0-rc.4",
|
|
44
44
|
"@types/ramda": "~0.30.0",
|
|
45
45
|
"ramda": "~0.30.0",
|
|
46
46
|
"ramda-adjunct": "^5.0.0"
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"README.md",
|
|
56
56
|
"CHANGELOG.md"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "ee774281a884eedf1445699d8f2b0092e50db432"
|
|
59
59
|
}
|