@swagger-api/apidom-parser-adapter-api-design-systems-json 0.76.2 → 0.78.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,16 @@
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.78.0](https://github.com/swagger-api/apidom/compare/v0.77.0...v0.78.0) (2023-10-17)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **types:** fix regression in @types/ramda@0.29.6 ([#3281](https://github.com/swagger-api/apidom/issues/3281)) ([c6c279f](https://github.com/swagger-api/apidom/commit/c6c279f526e07b16221d8c00dd0041eeb93e1290)), closes [#3279](https://github.com/swagger-api/apidom/issues/3279)
11
+
12
+ # [0.77.0](https://github.com/swagger-api/apidom/compare/v0.76.2...v0.77.0) (2023-10-03)
13
+
14
+ **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-api-design-systems-json
15
+
6
16
  ## [0.76.2](https://github.com/swagger-api/apidom/compare/v0.76.1...v0.76.2) (2023-09-08)
7
17
 
8
18
  ### Bug Fixes
package/cjs/adapter.cjs CHANGED
@@ -11,8 +11,7 @@ var _apidomParserAdapterJson = require("@swagger-api/apidom-parser-adapter-json"
11
11
  var _apidomNsApiDesignSystems = _interopRequireWildcard(require("@swagger-api/apidom-ns-api-design-systems"));
12
12
  var _mediaTypes = _interopRequireDefault(require("./media-types.cjs"));
13
13
  exports.mediaTypes = _mediaTypes.default;
14
- const detectionRegExp = /"version"\s*:\s*"(?<version_json>2021-05-07)"/;
15
- exports.detectionRegExp = detectionRegExp;
14
+ const detectionRegExp = exports.detectionRegExp = /"version"\s*:\s*"(?<version_json>2021-05-07)"/;
16
15
  const detect = async source => detectionRegExp.test(source) && (await (0, _apidomParserAdapterJson.detect)(source));
17
16
  exports.detect = detect;
18
17
  const parse = async (source, options = {}) => {
@@ -30,5 +29,4 @@ const parse = async (source, options = {}) => {
30
29
  return parseResultElement;
31
30
  };
32
31
  exports.parse = parse;
33
- const namespace = (0, _apidomCore.createNamespace)(_apidomNsApiDesignSystems.default);
34
- exports.namespace = namespace;
32
+ const namespace = exports.namespace = (0, _apidomCore.createNamespace)(_apidomNsApiDesignSystems.default);
@@ -4,5 +4,4 @@ exports.__esModule = true;
4
4
  exports.default = void 0;
5
5
  var _apidomNsApiDesignSystems = require("@swagger-api/apidom-ns-api-design-systems");
6
6
  const jsonMediaTypes = new _apidomNsApiDesignSystems.ApiDesignSystemsMediaTypes(..._apidomNsApiDesignSystems.mediaTypes.filterByFormat('generic'), ..._apidomNsApiDesignSystems.mediaTypes.filterByFormat('json'));
7
- var _default = jsonMediaTypes;
8
- exports.default = _default;
7
+ var _default = exports.default = jsonMediaTypes;