@deeptrekker/api-domain 1.0.5-rca-1594-add-photogrammetry-support-for.1 → 1.0.5-rca-1594-add-photogrammetry-support-for.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.5-rca-1594-add-photogrammetry-support-for.
|
|
1
|
+
export declare const API_VERSION = "1.0.5-rca-1594-add-photogrammetry-support-for.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.5-rca-1594-add-photogrammetry-support-for.
|
|
5
|
+
exports.API_VERSION = "1.0.5-rca-1594-add-photogrammetry-support-for.2";
|
|
@@ -236,11 +236,13 @@ export type TransferError = {
|
|
|
236
236
|
* @category Core
|
|
237
237
|
* @group X4
|
|
238
238
|
*/
|
|
239
|
-
export type
|
|
239
|
+
export type OnBoardRecording = {
|
|
240
240
|
/**
|
|
241
|
-
*
|
|
241
|
+
* Snapshots, holds the values for onBoard snapshots, enabled dictating if they're on.
|
|
242
242
|
*/
|
|
243
|
-
|
|
243
|
+
snapshots: {
|
|
244
|
+
enabled: boolean;
|
|
245
|
+
};
|
|
244
246
|
};
|
|
245
247
|
/**
|
|
246
248
|
* Error Codes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnBoardRecording, Movement } from "../../../core";
|
|
2
2
|
import { DeviceModel, MotorDiagnostics, Sonar, StereoCamera, X4CameraHead } from "../../cameraHeads";
|
|
3
3
|
import { SensorPod, X4Light } from "../../peripherals";
|
|
4
4
|
/**
|
|
@@ -733,5 +733,5 @@ export type X4 = {
|
|
|
733
733
|
* Indicates that autoSnapshots has been set. Sending a enabled command for will turn on autoSnapshots, disabled turning it off.
|
|
734
734
|
*
|
|
735
735
|
*/
|
|
736
|
-
|
|
736
|
+
onBoardRecording?: OnBoardRecording;
|
|
737
737
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deeptrekker/api-domain",
|
|
3
|
-
"version": "1.0.5-rca-1594-add-photogrammetry-support-for.
|
|
3
|
+
"version": "1.0.5-rca-1594-add-photogrammetry-support-for.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": {
|