@awarevue/api-types 2.0.3 → 2.0.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.
- package/dist/api/media.d.ts +3 -0
- package/dist/api/media.js +1 -0
- package/dist/device/nvr-exporter.d.ts +703 -0
- package/dist/device/nvr-exporter.js +5 -1
- package/dist/device-command.d.ts +702 -1
- package/dist/device-command.js +10 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/device-command.js
CHANGED
|
@@ -7,6 +7,7 @@ const camera_lift_1 = require("./device/camera-lift");
|
|
|
7
7
|
const display_1 = require("./device/display");
|
|
8
8
|
const door_1 = require("./device/door");
|
|
9
9
|
const io_board_1 = require("./device/io-board");
|
|
10
|
+
const nvr_exporter_1 = require("./device/nvr-exporter");
|
|
10
11
|
const pbx_1 = require("./device/pbx");
|
|
11
12
|
const presence_tracker_1 = require("./device/presence-tracker");
|
|
12
13
|
exports.commandSchemas = {
|
|
@@ -18,6 +19,7 @@ exports.commandSchemas = {
|
|
|
18
19
|
...pbx_1.pbxCommands,
|
|
19
20
|
...presence_tracker_1.presenceTrackerCommands,
|
|
20
21
|
...display_1.displayCommands,
|
|
22
|
+
...nvr_exporter_1.nvrExporterCommandSchemas,
|
|
21
23
|
};
|
|
22
24
|
exports.commandDescriptions = {
|
|
23
25
|
'camera.ptz-set': { description: 'PTZ Set', permission: 'camera:ptz' },
|
|
@@ -145,4 +147,12 @@ exports.commandDescriptions = {
|
|
|
145
147
|
description: 'Display Set View',
|
|
146
148
|
permission: 'display:read',
|
|
147
149
|
},
|
|
150
|
+
'nvr-exporter.start-export': {
|
|
151
|
+
description: 'NVR Exporter Start Export',
|
|
152
|
+
permission: 'camera:playback-export',
|
|
153
|
+
},
|
|
154
|
+
'nvr-exporter.delete-export': {
|
|
155
|
+
description: 'NVR Exporter Delete Export',
|
|
156
|
+
permission: 'camera:playback-export',
|
|
157
|
+
},
|
|
148
158
|
};
|
package/dist/package.json
CHANGED