aes70 2.0.6 → 2.0.7

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
@@ -15658,14 +15658,14 @@
15658
15658
  */
15659
15659
 
15660
15660
  function OcaInterval(DT) {
15661
- return class extends Struct(
15661
+ return Struct(
15662
15662
  {
15663
15663
  Min: DT,
15664
15664
  Max: DT,
15665
15665
  Bounds: OcaIntervalBounds$1,
15666
15666
  },
15667
15667
  OcaInterval$1
15668
- ) {};
15668
+ );
15669
15669
  }
15670
15670
 
15671
15671
  /*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aes70",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
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
  }