@deeptrekker/api-domain 1.0.31 → 1.0.32-stereocam-api.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.
@@ -1013,6 +1013,32 @@
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
+ },
1016
1042
  "DeviceModel": {
1017
1043
  "description": "Deep Trekker internal device model numbers.",
1018
1044
  "enum": [
@@ -1628,6 +1654,9 @@
1628
1654
  "cpuTemp": {
1629
1655
  "type": "number"
1630
1656
  },
1657
+ "denoise": {
1658
+ "$ref": "#/definitions/DenoiseSettings"
1659
+ },
1631
1660
  "dptz": {
1632
1661
  "$ref": "#/definitions/OcleaDptz"
1633
1662
  },
@@ -1 +1 @@
1
- export declare const API_VERSION = "1.0.31";
1
+ export declare const API_VERSION = "1.0.32-stereocam-api.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.31";
5
+ exports.API_VERSION = "1.0.32-stereocam-api.0";
@@ -213,6 +213,37 @@ 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
+ };
216
247
  /**
217
248
  * Exposure Settings
218
249
  * @group Devices
@@ -1,7 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StreamModes = exports.OcleaVersion = exports.CameraType = void 0;
3
+ exports.StreamModes = exports.OcleaVersion = exports.CameraType = exports.DenoiseMode = 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 = {}));
5
16
  /**
6
17
  * Camera type enums
7
18
  * @group Devices
@@ -1,5 +1,5 @@
1
1
  import { Camera, DeviceModel } from "../..";
2
- import { ExposureSettings, OcleaDptz, OcleaVersion, TurbidityFilter, WhiteBalanceSettings } from "../core";
2
+ import { DenoiseSettings, ExposureSettings, OcleaDptz, OcleaVersion, TurbidityFilter, WhiteBalanceSettings } from "../core";
3
3
  /**
4
4
  *
5
5
  * 📷 4k UHD Camera
@@ -92,4 +92,11 @@ 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;
95
102
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deeptrekker/api-domain",
3
- "version": "1.0.31",
3
+ "version": "1.0.32-stereocam-api.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
  }