@deeptrekker/api-domain 1.0.32-stereocam-api.0 → 1.0.32
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.
- package/dist/constants/schema/schema.json +0 -29
- package/dist/constants/versions/index.d.ts +1 -1
- package/dist/constants/versions/index.js +1 -1
- package/dist/types/devices/cameras/core/index.d.ts +0 -31
- package/dist/types/devices/cameras/core/index.js +1 -12
- package/dist/types/devices/cameras/ocleaCam/index.d.ts +1 -8
- package/dist/types/devices/vehicles/x4/index.d.ts +1 -0
- package/package.json +8 -7
|
@@ -1013,32 +1013,6 @@
|
|
|
1013
1013
|
},
|
|
1014
1014
|
"type": "object"
|
|
1015
1015
|
},
|
|
1016
|
-
"DenoiseMode": {
|
|
1017
|
-
"description": "Denoise mode",
|
|
1018
|
-
"enum": [
|
|
1019
|
-
"off",
|
|
1020
|
-
"fast",
|
|
1021
|
-
"high_quality"
|
|
1022
|
-
],
|
|
1023
|
-
"type": "string"
|
|
1024
|
-
},
|
|
1025
|
-
"DenoiseSettings": {
|
|
1026
|
-
"additionalProperties": false,
|
|
1027
|
-
"description": "Denoise Settings",
|
|
1028
|
-
"properties": {
|
|
1029
|
-
"mode": {
|
|
1030
|
-
"$ref": "#/definitions/DenoiseMode",
|
|
1031
|
-
"description": "Mode"
|
|
1032
|
-
},
|
|
1033
|
-
"strength": {
|
|
1034
|
-
"description": "Strength\n\nControls the strength of the denoise filter.",
|
|
1035
|
-
"maximum": 100,
|
|
1036
|
-
"minimum": 0,
|
|
1037
|
-
"type": "number"
|
|
1038
|
-
}
|
|
1039
|
-
},
|
|
1040
|
-
"type": "object"
|
|
1041
|
-
},
|
|
1042
1016
|
"DeviceModel": {
|
|
1043
1017
|
"description": "Deep Trekker internal device model numbers.",
|
|
1044
1018
|
"enum": [
|
|
@@ -1654,9 +1628,6 @@
|
|
|
1654
1628
|
"cpuTemp": {
|
|
1655
1629
|
"type": "number"
|
|
1656
1630
|
},
|
|
1657
|
-
"denoise": {
|
|
1658
|
-
"$ref": "#/definitions/DenoiseSettings"
|
|
1659
|
-
},
|
|
1660
1631
|
"dptz": {
|
|
1661
1632
|
"$ref": "#/definitions/OcleaDptz"
|
|
1662
1633
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const API_VERSION = "1.0.32
|
|
1
|
+
export declare const API_VERSION = "1.0.32";
|
|
@@ -213,37 +213,6 @@ export type TurbidityFilter = {
|
|
|
213
213
|
*/
|
|
214
214
|
strength?: number;
|
|
215
215
|
};
|
|
216
|
-
/**
|
|
217
|
-
* Denoise mode
|
|
218
|
-
* @group Devices
|
|
219
|
-
* @category Cameras
|
|
220
|
-
*/
|
|
221
|
-
export declare enum DenoiseMode {
|
|
222
|
-
Off = "off",
|
|
223
|
-
Fast = "fast",
|
|
224
|
-
HighQuality = "high_quality"
|
|
225
|
-
}
|
|
226
|
-
/**
|
|
227
|
-
* Denoise Settings
|
|
228
|
-
* @group Devices
|
|
229
|
-
* @category Cameras
|
|
230
|
-
*/
|
|
231
|
-
export type DenoiseSettings = {
|
|
232
|
-
/**
|
|
233
|
-
* Strength
|
|
234
|
-
*
|
|
235
|
-
* Controls the strength of the denoise filter.
|
|
236
|
-
* @minimum 0
|
|
237
|
-
* @maximum 100
|
|
238
|
-
*/
|
|
239
|
-
strength?: number;
|
|
240
|
-
/**
|
|
241
|
-
* Mode
|
|
242
|
-
*
|
|
243
|
-
* @see {@link DenoiseMode | DenoiseMode}
|
|
244
|
-
*/
|
|
245
|
-
mode?: DenoiseMode;
|
|
246
|
-
};
|
|
247
216
|
/**
|
|
248
217
|
* Exposure Settings
|
|
249
218
|
* @group Devices
|
|
@@ -1,18 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.StreamModes = exports.OcleaVersion = exports.CameraType =
|
|
3
|
+
exports.StreamModes = exports.OcleaVersion = exports.CameraType = void 0;
|
|
4
4
|
var __1 = require("../..");
|
|
5
|
-
/**
|
|
6
|
-
* Denoise mode
|
|
7
|
-
* @group Devices
|
|
8
|
-
* @category Cameras
|
|
9
|
-
*/
|
|
10
|
-
var DenoiseMode;
|
|
11
|
-
(function (DenoiseMode) {
|
|
12
|
-
DenoiseMode["Off"] = "off";
|
|
13
|
-
DenoiseMode["Fast"] = "fast";
|
|
14
|
-
DenoiseMode["HighQuality"] = "high_quality";
|
|
15
|
-
})(DenoiseMode || (exports.DenoiseMode = DenoiseMode = {}));
|
|
16
5
|
/**
|
|
17
6
|
* Camera type enums
|
|
18
7
|
* @group Devices
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Camera, DeviceModel } from "../..";
|
|
2
|
-
import {
|
|
2
|
+
import { ExposureSettings, OcleaDptz, OcleaVersion, TurbidityFilter, WhiteBalanceSettings } from "../core";
|
|
3
3
|
/**
|
|
4
4
|
*
|
|
5
5
|
* 📷 4k UHD Camera
|
|
@@ -92,11 +92,4 @@ export type OcleaCam = Camera & {
|
|
|
92
92
|
* @see {@link TurbidityFilter | TurbidityFilter}
|
|
93
93
|
*/
|
|
94
94
|
turbidityFilter?: TurbidityFilter;
|
|
95
|
-
/**
|
|
96
|
-
* @remarks
|
|
97
|
-
* Denoise filter settings
|
|
98
|
-
*
|
|
99
|
-
* @see {@link DenoiseSettings | DenoiseSettings}
|
|
100
|
-
*/
|
|
101
|
-
denoise?: DenoiseSettings;
|
|
102
95
|
};
|
|
@@ -114,6 +114,7 @@ export type X4Faults = {
|
|
|
114
114
|
pdmOvercurrent: boolean;
|
|
115
115
|
pdmOvertemp: boolean;
|
|
116
116
|
pdmOffline: boolean;
|
|
117
|
+
pdmLeakageOvercurrent: boolean;
|
|
117
118
|
brushedMotorNotEnoughMessages: boolean;
|
|
118
119
|
brushedMotorOvervoltage: boolean;
|
|
119
120
|
brushedMotorUndervoltage: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deeptrekker/api-domain",
|
|
3
|
-
"version": "1.0.32
|
|
3
|
+
"version": "1.0.32",
|
|
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
|
}
|