@deeptrekker/api-domain 1.0.6 → 1.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.
@@ -1 +1 @@
1
- export declare const API_VERSION = "1.0.6";
1
+ export declare const API_VERSION = "1.0.7";
@@ -2,4 +2,4 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.API_VERSION = void 0;
4
4
  /* AUTO GENERATED FILE */
5
- exports.API_VERSION = "1.0.6";
5
+ exports.API_VERSION = "1.0.7";
@@ -23,6 +23,12 @@ export declare enum ControlMode {
23
23
  ClosedLoop = "CLOSED_LOOP",
24
24
  Adaptive = "ADAPTIVE"
25
25
  }
26
+ export type Quaternion = {
27
+ w: number;
28
+ x: number;
29
+ y: number;
30
+ z: number;
31
+ };
26
32
  /**
27
33
  * A network device structure that includes properties such as IP address, model, hardware, and time tracking.
28
34
  * This structure is used to represent devices that are part of the X4 vehicle's network.
@@ -314,6 +320,7 @@ export type X4Position = {
314
320
  * @readonly
315
321
  */
316
322
  headingLock?: boolean;
323
+ imuQuat?: Quaternion;
317
324
  };
318
325
  /**
319
326
  * The X4 tracked position type.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deeptrekker/api-domain",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "A business domain of types and schemas that the Deep Trekker topside communicates with via an API.",
5
5
  "main": "dist/index.js",
6
6
  "engines": {