@swagger-api/apidom-ns-api-design-systems 0.82.2 → 0.84.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.84.0](https://github.com/swagger-api/apidom/compare/v0.83.0...v0.84.0) (2023-11-24)
7
+
8
+ **Note:** Version bump only for package @swagger-api/apidom-ns-api-design-systems
9
+
10
+ # [0.83.0](https://github.com/swagger-api/apidom/compare/v0.82.2...v0.83.0) (2023-11-07)
11
+
12
+ **Note:** Version bump only for package @swagger-api/apidom-ns-api-design-systems
13
+
6
14
  ## [0.82.2](https://github.com/swagger-api/apidom/compare/v0.82.1...v0.82.2) (2023-11-03)
7
15
 
8
16
  **Note:** Version bump only for package @swagger-api/apidom-ns-api-design-systems
@@ -15,7 +15,8 @@ var _Visitor = _interopRequireDefault(require("./Visitor.cjs"));
15
15
  */
16
16
  const SpecificationVisitor = (0, _stampit.default)(_Visitor.default, {
17
17
  props: {
18
- specObj: null
18
+ specObj: null,
19
+ passingOptionsNames: ['specObj']
19
20
  },
20
21
  // @ts-ignore
21
22
  init({
@@ -25,7 +26,7 @@ const SpecificationVisitor = (0, _stampit.default)(_Visitor.default, {
25
26
  },
26
27
  methods: {
27
28
  retrievePassingOptions() {
28
- return (0, _ramda.pick)(['namespace', 'specObj'], this);
29
+ return (0, _ramda.pick)(this.passingOptionsNames, this);
29
30
  },
30
31
  retrieveFixedFields(specPath) {
31
32
  const fixedFields = (0, _ramda.path)(['visitors', ...specPath, 'fixedFields'], this.specObj);