@swagger-api/apidom-core 0.93.0 → 0.95.0

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,14 @@
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
+ # [0.95.0](https://github.com/swagger-api/apidom/compare/v0.94.0...v0.95.0) (2024-02-09)
7
+
8
+ **Note:** Version bump only for package @swagger-api/apidom-core
9
+
10
+ # [0.94.0](https://github.com/swagger-api/apidom/compare/v0.93.0...v0.94.0) (2024-02-05)
11
+
12
+ **Note:** Version bump only for package @swagger-api/apidom-core
13
+
6
14
  # [0.93.0](https://github.com/swagger-api/apidom/compare/v0.92.0...v0.93.0) (2024-01-23)
7
15
 
8
16
  **Note:** Version bump only for package @swagger-api/apidom-core
@@ -4,6 +4,7 @@ exports.__esModule = true;
4
4
  exports.default = void 0;
5
5
  var _apidomError = require("@swagger-api/apidom-error");
6
6
  class CloneError extends _apidomError.ApiDOMStructuredError {
7
+ value;
7
8
  constructor(message, structuredOptions) {
8
9
  super(message, structuredOptions);
9
10
  if (typeof structuredOptions !== 'undefined') {
@@ -4,6 +4,7 @@ exports.__esModule = true;
4
4
  exports.default = void 0;
5
5
  var _apidomError = require("@swagger-api/apidom-error");
6
6
  class ElementIdentityError extends _apidomError.ApiDOMStructuredError {
7
+ value;
7
8
  constructor(message, structuredOptions) {
8
9
  super(message, structuredOptions);
9
10
  if (typeof structuredOptions !== 'undefined') {
@@ -73,6 +73,8 @@ const transcludeChildOfArrayElement = (search, replace, edges) => {
73
73
  */
74
74
 
75
75
  class Transcluder {
76
+ element;
77
+ edges;
76
78
  constructor({
77
79
  element
78
80
  }) {
@@ -7,6 +7,8 @@ var _visitor = require("../../traversal/visitor.cjs");
7
7
  var _index = _interopRequireDefault(require("./value/index.cjs"));
8
8
  class YamlVisitor {
9
9
  static indentChar = ' ';
10
+ result;
11
+ indent;
10
12
  constructor({
11
13
  directive = false,
12
14
  indent = 0
@@ -9,6 +9,9 @@ var _index = require("../predicates/index.cjs");
9
9
  var _visitor = require("./visitor.cjs");
10
10
  var _index2 = _interopRequireDefault(require("../transformers/serializers/value/index.cjs"));
11
11
  class Visitor {
12
+ result;
13
+ offset;
14
+ includeRightBound;
12
15
  constructor({
13
16
  offset = 0,
14
17
  includeRightBound = false
@@ -4,6 +4,8 @@ exports.__esModule = true;
4
4
  exports.default = void 0;
5
5
  var _visitor = require("./visitor.cjs");
6
6
  class Visitor {
7
+ parentEdges;
8
+ parent;
7
9
  constructor() {
8
10
  this.parentEdges = new WeakMap();
9
11
  }
@@ -7,6 +7,7 @@ var _ramdaAdjunct = require("ramda-adjunct");
7
7
  var _visitor = require("./visitor.cjs");
8
8
  var _index = require("../predicates/index.cjs");
9
9
  class CallbackVisitor extends _visitor.PredicateVisitor {
10
+ callback;
10
11
  constructor({
11
12
  callback = _ramdaAdjunct.noop,
12
13
  ...rest
@@ -49,6 +49,10 @@ const keyMapDefault = exports.keyMapDefault = {
49
49
  SourceMap: ['content']
50
50
  };
51
51
  class PredicateVisitor {
52
+ result;
53
+ predicate;
54
+ returnOnTrue;
55
+ returnOnFalse;
52
56
  constructor({
53
57
  predicate = _ramda.F,
54
58
  returnOnTrue,