@scrypted/nvr 0.1.156 → 0.1.157

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/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  <details>
2
2
  <summary>Changelog</summary>
3
3
 
4
+ ### 0.1.156
5
+
6
+ send notifications without image if image request fails for any reason
7
+ improved thumbnails, choose better targets
8
+ update deps
9
+ new heatmap smart motion sensor
10
+ initial implementation for spurious motion fallback
11
+ fix recording stream export being unbound duration when hevc
12
+
13
+
4
14
  ### 0.1.155
5
15
 
6
16
  fix malformed aac export
@@ -10,3 +10,41 @@
10
10
  *
11
11
  * MIT Licensed
12
12
  */
13
+
14
+ /*!
15
+ * mime-db
16
+ * Copyright(c) 2014 Jonathan Ong
17
+ * Copyright(c) 2015-2022 Douglas Christopher Wilson
18
+ * MIT Licensed
19
+ */
20
+
21
+ /*!
22
+ * mime-types
23
+ * Copyright(c) 2014 Jonathan Ong
24
+ * Copyright(c) 2015 Douglas Christopher Wilson
25
+ * MIT Licensed
26
+ */
27
+
28
+ /*! *****************************************************************************
29
+ Copyright (c) Microsoft Corporation. All rights reserved.
30
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
31
+ this file except in compliance with the License. You may obtain a copy of the
32
+ License at http://www.apache.org/licenses/LICENSE-2.0
33
+
34
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
35
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
36
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
37
+ MERCHANTABLITY OR NON-INFRINGEMENT.
38
+
39
+ See the Apache Version 2.0 License for specific language governing permissions
40
+ and limitations under the License.
41
+ ***************************************************************************** */
42
+
43
+ /**
44
+ * splaytree v3.1.2
45
+ * Fast Splay tree for Node and browser
46
+ *
47
+ * @author Alexander Milevski <info@w8r.name>
48
+ * @license MIT
49
+ * @preserve
50
+ */
package/dist/plugin.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrypted/nvr",
3
- "version": "0.1.156",
3
+ "version": "0.1.157",
4
4
  "scripts": {
5
5
  "scrypted-setup-project": "scrypted-setup-project",
6
6
  "prescrypted-setup-project": "scrypted-package-json",
@@ -50,21 +50,23 @@
50
50
  "@scrypted/common": "../../scrypted/common",
51
51
  "@scrypted/sdk": "file:../../scrypted/sdk",
52
52
  "@scrypted/types": "file:../../scrypted/sdk/types",
53
- "axios": "^0.24.0",
54
- "check-disk-space": "^3.3.1",
55
- "fast-xml-parser": "^4.1.3",
56
- "mkdirp": "^1.0.4",
53
+ "axios": "^1.4.0",
54
+ "check-disk-space": "^3.4.0",
55
+ "fast-xml-parser": "^4.2.5",
56
+ "mkdirp": "^3.0.1",
57
57
  "munkres-js": "^1.2.2",
58
58
  "point-inside-polygon": "^1.0.3",
59
+ "polygon-clipping": "^0.15.3",
59
60
  "polygon-overlap": "^1.0.5",
60
- "rimraf": "^3.0.2",
61
+ "rimraf": "^5.0.1",
61
62
  "tmp-promise": "^3.0.3",
62
63
  "uuid": "^9.0.0"
63
64
  },
64
65
  "devDependencies": {
65
66
  "@types/mkdirp": "^1.0.2",
66
- "@types/node": "^18.11.18",
67
+ "@types/node": "^20.4.0",
67
68
  "@types/rimraf": "^3.0.2",
68
- "@types/uuid": "^9.0.1"
69
+ "@types/uuid": "^9.0.2",
70
+ "ts-node": "^10.9.1"
69
71
  }
70
72
  }