@deeptrekker/api-domain 1.0.20-x4networktable.3 → 1.0.20-x4networktable.5
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.20-x4networktable.
|
|
1
|
+
export declare const API_VERSION = "1.0.20-x4networktable.5";
|
|
@@ -45,7 +45,7 @@ export declare enum DeviceModel {
|
|
|
45
45
|
PathfindrDVL = 203,
|
|
46
46
|
OculusSonar = 204,
|
|
47
47
|
GeminiSonar = 205,
|
|
48
|
-
|
|
48
|
+
Echosounder = 244,
|
|
49
49
|
WATERLINKED_3D_SONAR = 245
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
@@ -83,6 +83,7 @@ export declare const CAMERA_DEVICE_MODEL_LABELS: {
|
|
|
83
83
|
readonly 207: "Zoom Camera JZC";
|
|
84
84
|
readonly 241: "Mini Aux Camera";
|
|
85
85
|
readonly 32: "Stereo Camera";
|
|
86
|
+
readonly 242: "Aegis Camera";
|
|
86
87
|
};
|
|
87
88
|
/**
|
|
88
89
|
* Deep Trekker's Vehicle Device Model Labels
|
|
@@ -98,6 +99,7 @@ export declare const VEHICLE_DEVICE_MODEL_LABELS: {
|
|
|
98
99
|
readonly 24: "PHOTON";
|
|
99
100
|
readonly 16: "ONYX";
|
|
100
101
|
readonly 22: "VAC/MAG Utility Crawler";
|
|
102
|
+
readonly 12: "DTG3";
|
|
101
103
|
};
|
|
102
104
|
/**
|
|
103
105
|
* Deep Trekker's Peripheral Device Model Labels
|
|
@@ -116,7 +118,7 @@ export declare const PERIPHERAL_DEVICE_MODEL_LABELS: {
|
|
|
116
118
|
readonly 203: "Pathfindr DVL";
|
|
117
119
|
readonly 204: "Oculus Sonar";
|
|
118
120
|
readonly 205: "Gemini Sonar";
|
|
119
|
-
readonly 244: "
|
|
121
|
+
readonly 244: "Echosounder";
|
|
120
122
|
readonly 245: "Water Linked 3D Sonar";
|
|
121
123
|
readonly 104: "DT840 Hoser";
|
|
122
124
|
readonly 105: "DT840 Manipulator Arm";
|
|
@@ -169,7 +171,7 @@ export declare const DEVICE_MODEL_LABELS: {
|
|
|
169
171
|
readonly 203: "Pathfindr DVL";
|
|
170
172
|
readonly 204: "Oculus Sonar";
|
|
171
173
|
readonly 205: "Gemini Sonar";
|
|
172
|
-
readonly 244: "
|
|
174
|
+
readonly 244: "Echosounder";
|
|
173
175
|
readonly 245: "Water Linked 3D Sonar";
|
|
174
176
|
readonly 104: "DT840 Hoser";
|
|
175
177
|
readonly 105: "DT840 Manipulator Arm";
|
|
@@ -191,12 +193,14 @@ export declare const DEVICE_MODEL_LABELS: {
|
|
|
191
193
|
readonly 24: "PHOTON";
|
|
192
194
|
readonly 16: "ONYX";
|
|
193
195
|
readonly 22: "VAC/MAG Utility Crawler";
|
|
196
|
+
readonly 12: "DTG3";
|
|
194
197
|
readonly 206: "4K UHD Camera";
|
|
195
198
|
readonly 240: "Zoom Camera H";
|
|
196
199
|
readonly 243: "OCTA Zoom Camera";
|
|
197
200
|
readonly 5: "DT Camera";
|
|
198
201
|
readonly 207: "Zoom Camera JZC";
|
|
199
202
|
readonly 241: "Mini Aux Camera";
|
|
203
|
+
readonly 242: "Aegis Camera";
|
|
200
204
|
};
|
|
201
205
|
/**
|
|
202
206
|
* Deep Trekker's Camera Head Device Models
|
|
@@ -239,7 +243,7 @@ export declare const X4_PERIPHERAL_DEVICE_MODELS: readonly [DeviceModel.X4PDM, D
|
|
|
239
243
|
* @group Devices
|
|
240
244
|
* @category Peripherals
|
|
241
245
|
*/
|
|
242
|
-
export declare const PERIPHERAL_DEVICE_MODELS: readonly [DeviceModel.RovGps, DeviceModel.SerialBox, DeviceModel.WaterlinkedGps, DeviceModel.Seatrac, DeviceModel.DVL, DeviceModel.PathfindrDVL, DeviceModel.OculusSonar, DeviceModel.GeminiSonar, DeviceModel.
|
|
246
|
+
export declare const PERIPHERAL_DEVICE_MODELS: readonly [DeviceModel.RovGps, DeviceModel.SerialBox, DeviceModel.WaterlinkedGps, DeviceModel.Seatrac, DeviceModel.DVL, DeviceModel.PathfindrDVL, DeviceModel.OculusSonar, DeviceModel.GeminiSonar, DeviceModel.Echosounder, DeviceModel.WATERLINKED_3D_SONAR, DeviceModel.SensorPod, DeviceModel.SensorPodPlus, DeviceModel.SensorPodX, DeviceModel.X4PDM, DeviceModel.X4Thruster, DeviceModel.X4Lights];
|
|
243
247
|
/**
|
|
244
248
|
* Device Version is a base interface for hardware and software version sample payloads.
|
|
245
249
|
* -1 hardware versions and 0.0 software versions refer to not applicable
|
|
@@ -92,7 +92,7 @@ var DeviceModel;
|
|
|
92
92
|
DeviceModel[DeviceModel["PathfindrDVL"] = 203] = "PathfindrDVL";
|
|
93
93
|
DeviceModel[DeviceModel["OculusSonar"] = 204] = "OculusSonar";
|
|
94
94
|
DeviceModel[DeviceModel["GeminiSonar"] = 205] = "GeminiSonar";
|
|
95
|
-
DeviceModel[DeviceModel["
|
|
95
|
+
DeviceModel[DeviceModel["Echosounder"] = 244] = "Echosounder";
|
|
96
96
|
DeviceModel[DeviceModel["WATERLINKED_3D_SONAR"] = 245] = "WATERLINKED_3D_SONAR";
|
|
97
97
|
})(DeviceModel || (exports.DeviceModel = DeviceModel = {}));
|
|
98
98
|
/**
|
|
@@ -132,6 +132,7 @@ exports.CAMERA_DEVICE_MODEL_LABELS = (_a = {},
|
|
|
132
132
|
_a[DeviceModel.JZC18ZoomCamera] = "Zoom Camera JZC",
|
|
133
133
|
_a[DeviceModel.MiniAuxCamera] = "Mini Aux Camera",
|
|
134
134
|
_a[DeviceModel.X4Cam] = "Stereo Camera",
|
|
135
|
+
_a[DeviceModel.AegisCam] = "Aegis Camera",
|
|
135
136
|
_a);
|
|
136
137
|
/**
|
|
137
138
|
* Deep Trekker's Vehicle Device Model Labels
|
|
@@ -147,6 +148,7 @@ exports.VEHICLE_DEVICE_MODEL_LABELS = (_b = {},
|
|
|
147
148
|
_b[DeviceModel.Photon] = "PHOTON",
|
|
148
149
|
_b[DeviceModel.Onyx] = "ONYX",
|
|
149
150
|
_b[DeviceModel.DT645] = "VAC/MAG Utility Crawler",
|
|
151
|
+
_b[DeviceModel.DTG3] = "DTG3",
|
|
150
152
|
_b);
|
|
151
153
|
/**
|
|
152
154
|
* Deep Trekker's Peripheral Device Model Labels
|
|
@@ -166,7 +168,7 @@ exports.PERIPHERAL_DEVICE_MODEL_LABELS = (_c = {},
|
|
|
166
168
|
_c[DeviceModel.PathfindrDVL] = "Pathfindr DVL",
|
|
167
169
|
_c[DeviceModel.OculusSonar] = "Oculus Sonar",
|
|
168
170
|
_c[DeviceModel.GeminiSonar] = "Gemini Sonar",
|
|
169
|
-
_c[DeviceModel.
|
|
171
|
+
_c[DeviceModel.Echosounder] = "Echosounder",
|
|
170
172
|
_c[DeviceModel.WATERLINKED_3D_SONAR] = "Water Linked 3D Sonar",
|
|
171
173
|
/* Legacy / Special Components */
|
|
172
174
|
_c[DeviceModel.DT840Hoser] = "DT840 Hoser",
|
|
@@ -292,7 +294,7 @@ exports.PERIPHERAL_DEVICE_MODELS = __spreadArray(__spreadArray([
|
|
|
292
294
|
DeviceModel.PathfindrDVL,
|
|
293
295
|
DeviceModel.OculusSonar,
|
|
294
296
|
DeviceModel.GeminiSonar,
|
|
295
|
-
DeviceModel.
|
|
297
|
+
DeviceModel.Echosounder,
|
|
296
298
|
DeviceModel.WATERLINKED_3D_SONAR
|
|
297
299
|
], exports.SENSOR_POD_DEVICE_MODELS, true), exports.X4_PERIPHERAL_DEVICE_MODELS, true);
|
|
298
300
|
__exportStar(require("./cameraHeads"), exports);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deeptrekker/api-domain",
|
|
3
|
-
"version": "1.0.20-x4networktable.
|
|
3
|
+
"version": "1.0.20-x4networktable.5",
|
|
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": {
|