aes70 2.0.13 → 2.0.14

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/dist/AES70.es5.js CHANGED
@@ -15662,14 +15662,14 @@
15662
15662
  */
15663
15663
 
15664
15664
  function OcaInterval(DT) {
15665
- return class extends Struct(
15665
+ return Struct(
15666
15666
  {
15667
15667
  Min: DT,
15668
15668
  Max: DT,
15669
15669
  Bounds: OcaIntervalBounds$1,
15670
15670
  },
15671
15671
  OcaInterval$1
15672
- ) {};
15672
+ );
15673
15673
  }
15674
15674
 
15675
15675
  /*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aes70",
3
- "version": "2.0.13",
3
+ "version": "2.0.14",
4
4
  "description": "A controller library for the AES70 protocol.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -6,12 +6,12 @@ import { Struct } from './Struct.js';
6
6
  import { OcaInterval as type } from '../types/OcaInterval.js';
7
7
 
8
8
  export function OcaInterval(DT) {
9
- return class extends Struct(
9
+ return Struct(
10
10
  {
11
11
  Min: DT,
12
12
  Max: DT,
13
13
  Bounds: OcaIntervalBounds,
14
14
  },
15
15
  type
16
- ) {};
16
+ );
17
17
  }