@swagger-api/apidom-core 0.77.0 → 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 +6 -0
- package/cjs/media-types.cjs +3 -3
- package/dist/apidom-core.browser.js +3902 -17302
- package/dist/apidom-core.browser.min.js +1 -1
- package/es/media-types.mjs +3 -3
- package/package.json +5 -5
- package/types/dist.d.ts +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
|
|
6
12
|
# [0.77.0](https://github.com/swagger-api/apidom/compare/v0.76.2...v0.77.0) (2023-10-03)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/cjs/media-types.cjs
CHANGED
|
@@ -8,17 +8,17 @@ class MediaTypes extends Array {
|
|
|
8
8
|
|
|
9
9
|
// eslint-disable-next-line class-methods-use-this
|
|
10
10
|
filterByFormat() {
|
|
11
|
-
throw new _apidomError.NotImplementedError('
|
|
11
|
+
throw new _apidomError.NotImplementedError('filterByFormat method in MediaTypes class is not yet implemented.');
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
// eslint-disable-next-line class-methods-use-this
|
|
15
15
|
findBy() {
|
|
16
|
-
throw new _apidomError.NotImplementedError('
|
|
16
|
+
throw new _apidomError.NotImplementedError('findBy method in MediaTypes class is not yet implemented.');
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
// eslint-disable-next-line class-methods-use-this
|
|
20
20
|
latest() {
|
|
21
|
-
throw new _apidomError.NotImplementedError('
|
|
21
|
+
throw new _apidomError.NotImplementedError('latest method in MediaTypes class is not yet implemented.');
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
var _default = exports.default = MediaTypes;
|