@deeptrekker/api-domain 1.0.0 → 1.0.2-rca-1530-1-bridge-x4-add-addit.0

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.
@@ -3653,6 +3653,10 @@
3653
3653
  "description": "Enable/Disable auto white balance mode. </br>",
3654
3654
  "type": "boolean"
3655
3655
  },
3656
+ "awbMode": {
3657
+ "description": "Auto White Balance mode select control",
3658
+ "type": "string"
3659
+ },
3656
3660
  "blue": {
3657
3661
  "description": "Blue Control </br>",
3658
3662
  "maximum": 100,
@@ -1 +1 @@
1
- export declare const API_VERSION = "1.0.0";
1
+ export declare const API_VERSION = "1.0.2-rca-1530-1-bridge-x4-add-addit.0";
@@ -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.0";
5
+ exports.API_VERSION = "1.0.2-rca-1530-1-bridge-x4-add-addit.0";
@@ -304,6 +304,10 @@ export type WhiteBalanceSettings = {
304
304
  * @maximum 100
305
305
  */
306
306
  green?: number;
307
+ /**
308
+ * Auto White Balance mode select control
309
+ */
310
+ awbMode?: string;
307
311
  };
308
312
  /**
309
313
  * Camera type enums
@@ -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.0",
3
+ "version": "1.0.2-rca-1530-1-bridge-x4-add-addit.0",
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": {
@@ -37,16 +37,16 @@
37
37
  "@knodes/typedoc-plugin-code-blocks": "^0.22.7",
38
38
  "@types/lodash": "^4.14.182",
39
39
  "@types/node": "^22.0.0",
40
- "@typescript-eslint/eslint-plugin": "^6.1.0",
41
- "@typescript-eslint/parser": "^6.1.0",
42
40
  "@zamiell/typedoc-plugin-not-exported": "^0.2.0",
43
- "eslint": "^8.45.0",
44
- "eslint-config-prettier": "^8.8.0",
45
- "eslint-plugin-unused-imports": "^3.0.0",
46
41
  "prettier": "3.0.3",
47
42
  "rimraf": "^3.0.2",
48
43
  "semver-compare-cli": "^2.0.0",
49
44
  "ts-json-schema-generator": "2.4.0",
45
+ "eslint": "^8.45.0",
46
+ "@typescript-eslint/eslint-plugin": "^6.1.0",
47
+ "@typescript-eslint/parser": "^6.1.0",
48
+ "eslint-plugin-unused-imports": "^3.0.0",
49
+ "eslint-config-prettier": "^8.8.0",
50
50
  "ts-node": "^10.8.1",
51
51
  "tslib": "^2.4.0",
52
52
  "typedoc": "^0.28.9",
@@ -62,7 +62,6 @@
62
62
  "mkdirp": "^1.0.4",
63
63
  "ts-pattern": "^4.3.0",
64
64
  "ts-toolbelt": "^9.6.0",
65
- "type-zoo": "^3.4.1",
66
- "yarn": "^1.22.22"
65
+ "type-zoo": "^3.4.1"
67
66
  }
68
67
  }