@deeptrekker/api-domain 1.0.1 → 1.0.2

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.1";
1
+ export declare const API_VERSION = "1.0.2";
@@ -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.1";
5
+ exports.API_VERSION = "1.0.2";
@@ -77,6 +77,12 @@ export type X4Thruster = {
77
77
  * See {@link MotorDiagnostics | MotorDiagnostics} for more details.
78
78
  */
79
79
  motorDiagnostics?: MotorDiagnostics;
80
+ /**
81
+ * A record of temperatures associated with the motor.
82
+ * Each temperature is identified by a unique key and contains a temperature value in degrees Celsius.
83
+ * This is used to monitor the motor's thermal state.
84
+ */
85
+ temperatures?: Record<string, number>;
80
86
  };
81
87
  /**
82
88
  * The X4 drive command type.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deeptrekker/api-domain",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
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": {