@deeptrekker/api-domain 1.0.30-clean-up-x4-api.0 → 1.0.30
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.30
|
|
1
|
+
export declare const API_VERSION = "1.0.30";
|
|
@@ -20,8 +20,7 @@ export declare enum CoordinateType {
|
|
|
20
20
|
*/
|
|
21
21
|
export declare enum ControlMode {
|
|
22
22
|
OpenLoop = "OpenLoop",
|
|
23
|
-
ClosedLoop = "ClosedLoop"
|
|
24
|
-
Adaptive = "Mpc"
|
|
23
|
+
ClosedLoop = "ClosedLoop"
|
|
25
24
|
}
|
|
26
25
|
export type Quaternion = {
|
|
27
26
|
w: number;
|
|
@@ -150,7 +149,7 @@ export type X4DriveCommand = {
|
|
|
150
149
|
referenceFrame?: string;
|
|
151
150
|
/**
|
|
152
151
|
* The control mode for the drive command, which can be used to specify how the vehicle should respond to the command.
|
|
153
|
-
* This allows the user to choose between different control strategies (e.g., open loop, closed loop
|
|
152
|
+
* This allows the user to choose between different control strategies (e.g., open loop, closed loop).
|
|
154
153
|
* See {@link ControlMode | ControlMode} for more details.
|
|
155
154
|
*/
|
|
156
155
|
controlMode?: ControlMode;
|
|
@@ -470,7 +469,7 @@ export type X4MediaSession = {
|
|
|
470
469
|
* "vehicleTurns": 69,
|
|
471
470
|
* "vehicleTime": 68,
|
|
472
471
|
* "waterTemperature": 70,
|
|
473
|
-
* "
|
|
472
|
+
* "motorsEnabled": true,
|
|
474
473
|
* "networkDevices": {
|
|
475
474
|
* "MAC": {
|
|
476
475
|
* "model": 13,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deeptrekker/api-domain",
|
|
3
|
-
"version": "1.0.30
|
|
3
|
+
"version": "1.0.30",
|
|
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",
|
|
40
42
|
"@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",
|
|
41
46
|
"prettier": "3.0.3",
|
|
42
47
|
"rimraf": "^3.0.2",
|
|
43
48
|
"semver-compare-cli": "^2.0.0",
|
|
44
49
|
"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,6 +62,7 @@
|
|
|
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"
|
|
65
|
+
"type-zoo": "^3.4.1",
|
|
66
|
+
"yarn": "^1.22.22"
|
|
66
67
|
}
|
|
67
68
|
}
|