aes70 1.5.0 → 1.5.1

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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes and version updates will be documented in this file.
4
4
 
5
+ ## [1.5.1] - 2022-03-07
6
+
7
+ - Fixed a small error in the typescript exports.
8
+
5
9
  ## [1.5.0] - 2022-03-07
6
10
 
7
11
  - Changed the export structure and removed explicit export definitions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aes70",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "A controller library for the AES70 protocol.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -14,5 +14,7 @@ export * from './controller/remote_device';
14
14
  export * from './controller/define_custom_class';
15
15
  export * from './controller/abstract_udp_connection';
16
16
 
17
- export * as RemoteControlClasses from './controller/ControlClasses';
18
- export * as Types from './types';
17
+ import * as RemoteControlClasses from './controller/ControlClasses';
18
+ import * as Types from './types';
19
+
20
+ export { RemoteControlClasses, Types };