@swagger-api/apidom-core 1.0.0-beta.50 → 1.0.0-beta.51

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-beta.51](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.50...v1.0.0-beta.51) (2025-10-14)
7
+
8
+ **Note:** Version bump only for package @swagger-api/apidom-core
9
+
6
10
  # [1.0.0-beta.50](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.49...v1.0.0-beta.50) (2025-09-26)
7
11
 
8
12
  **Note:** Version bump only for package @swagger-api/apidom-core
package/README.md CHANGED
@@ -493,7 +493,7 @@ If multiple plugins with the same visitor method are defined, they run in parall
493
493
 
494
494
  #### Element identity plugin
495
495
 
496
- `apidom` package comes with `refractorPluginElementIdentity`. When used, this plugin will
496
+ `apidom-core` package comes with `refractorPluginElementIdentity`. When used, this plugin will
497
497
  assign unique ID to all elements in ApiDOM tree.
498
498
 
499
499
  ```js
@@ -528,7 +528,7 @@ objectElement.getMember('a').value.id; // Ki4tWmf9xw9Lwb8MxkXJq1uONmJrmhXifmsI
528
528
 
529
529
  #### Semantic element identity plugin
530
530
 
531
- `apidom` package comes with `refractorPluginSemanticElementIdentity`. When used, this plugin will
531
+ `apidom-core` package comes with `refractorPluginSemanticElementIdentity`. When used, this plugin will
532
532
  assign unique ID to all non-primitive elements in ApiDOM tree. Primitive elements include
533
533
  `ObjectElement`, `ArrayElement`, `StringElement`, `BooleanElement`, `NullElement` and `NumberElement`.
534
534
 
@@ -574,7 +574,7 @@ objectElement.getMember('info').value.id; // 'OnReGGrO7fMd9ztacvGfwGbOdGKuOFLiQQ
574
574
 
575
575
  ## Traversal
576
576
 
577
- `apidom` comes with its own traversal algorithm along with couple of convenient abstractions on top of it.
577
+ `apidom-core` comes with its own traversal algorithm along with couple of convenient abstractions on top of it.
578
578
 
579
579
  ### visit
580
580
 
@@ -605,7 +605,7 @@ const newElement = visit(element, visitor); // => ObjectElement<{a: 2}>
605
605
  ```
606
606
 
607
607
  This function originally comes from [@swagger-api/apidom-ast package](https://github.com/swagger-api/apidom/blob/main/packages/apidom-ast/src/visitor.ts)
608
- and is originally designed to work with [CST](https://en.wikipedia.org/wiki/Parse_tree). `apidom` package
608
+ and is originally designed to work with [CST](https://en.wikipedia.org/wiki/Parse_tree). `apidom-core` package
609
609
  imports it, specializes it to work with ApiDOM and re-export it.
610
610
 
611
611
  All following algorithms are based on `visit` function.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swagger-api/apidom-core",
3
- "version": "1.0.0-beta.50",
3
+ "version": "1.0.0-beta.51",
4
4
  "description": "Tools for manipulating ApiDOM structures.",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -42,8 +42,8 @@
42
42
  "license": "Apache-2.0",
43
43
  "dependencies": {
44
44
  "@babel/runtime-corejs3": "^7.26.10",
45
- "@swagger-api/apidom-ast": "^1.0.0-beta.50",
46
- "@swagger-api/apidom-error": "^1.0.0-beta.50",
45
+ "@swagger-api/apidom-ast": "^1.0.0-beta.51",
46
+ "@swagger-api/apidom-error": "^1.0.0-beta.51",
47
47
  "@types/ramda": "~0.30.0",
48
48
  "minim": "~0.23.8",
49
49
  "ramda": "~0.30.0",
@@ -62,5 +62,5 @@
62
62
  "README.md",
63
63
  "CHANGELOG.md"
64
64
  ],
65
- "gitHead": "fc33809ee41ef8f7385e96d7062ef6161a0eb6c9"
65
+ "gitHead": "b728c58aa38d60d6d4fa190ca446672d7df88e16"
66
66
  }