@awarevue/api-types 2.0.21 → 2.0.23
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/_legacy/index.d.ts +2 -0
- package/dist/_legacy/index.js +2 -0
- package/dist/_legacy/milestone.js +1 -0
- package/dist/_legacy/orchid.js +1 -0
- package/dist/alarm-automation.d.ts +3 -3
- package/dist/alarm-automation.js +26 -37
- package/dist/api/agent-protocol/index.d.ts +1 -0
- package/dist/api/agent-protocol/index.js +1 -0
- package/dist/{agent-communication → api/agent-protocol}/protocol.d.ts +412 -598
- package/dist/api/agent-protocol/protocol.js +382 -0
- package/dist/api/commands/alarm.js +59 -0
- package/dist/{commands → api/commands}/all.d.ts +83 -83
- package/dist/{commands → api/commands}/all.js +22 -25
- package/dist/api/commands/camera-lift.js +14 -0
- package/dist/api/commands/camera.js +93 -0
- package/dist/api/commands/display.js +34 -0
- package/dist/api/commands/door.js +24 -0
- package/dist/api/commands/index.js +12 -0
- package/dist/api/commands/intercom-terminal.js +2 -0
- package/dist/api/commands/io-board.js +12 -0
- package/dist/api/commands/nvr-exporter.js +23 -0
- package/dist/api/commands/pbx.js +14 -0
- package/dist/api/commands/presence-tracker.js +30 -0
- package/dist/api/commands/server.js +24 -0
- package/dist/api/error.js +181 -0
- package/dist/api/events/alarm.js +52 -0
- package/dist/{events → api/events}/all.d.ts +8 -8
- package/dist/api/events/all.js +124 -0
- package/dist/api/events/camera.js +84 -0
- package/dist/api/events/display.js +6 -0
- package/dist/api/events/door.js +59 -0
- package/dist/api/events/index.js +12 -0
- package/dist/api/events/intercom-terminal.js +16 -0
- package/dist/api/events/io-board.js +10 -0
- package/dist/api/events/nvr-exporter.js +18 -0
- package/dist/api/events/panic-button.js +8 -0
- package/dist/api/events/presence-tracker.js +30 -0
- package/dist/api/events/reader.js +10 -0
- package/dist/{events → api/events}/server.d.ts +5 -5
- package/dist/api/events/server.js +12 -0
- package/dist/api/index.d.ts +9 -4
- package/dist/api/index.js +9 -20
- package/dist/api/mqtt/index.d.ts +1 -0
- package/dist/api/mqtt/index.js +1 -0
- package/dist/api/mqtt/payloads.js +18 -0
- package/dist/api/queries/all.js +25 -0
- package/dist/api/queries/camera.js +24 -0
- package/dist/api/queries/index.js +5 -0
- package/dist/api/queries/nvr-analytics-server.js +73 -0
- package/dist/api/queries/nvr-exporter.js +33 -0
- package/dist/api/queries/nvr-recorder.js +39 -0
- package/dist/api/rest/access-rule.d.ts +117 -0
- package/dist/api/rest/access-rule.js +10 -0
- package/dist/{access-control → api/rest}/agreement.d.ts +0 -20
- package/dist/api/rest/agreement.js +7 -0
- package/dist/api/rest/alarm.js +1 -0
- package/dist/{api-keys.d.ts → api/rest/api-keys.d.ts} +0 -20
- package/dist/api/rest/api-keys.js +11 -0
- package/dist/api/rest/app.js +9 -0
- package/dist/api/rest/auth.js +16 -0
- package/dist/{automation.d.ts → api/rest/automation.d.ts} +0 -217
- package/dist/api/rest/automation.js +14 -0
- package/dist/api/rest/aware-config.js +1 -0
- package/dist/{bookmarks.d.ts → api/rest/bookmarks.d.ts} +0 -49
- package/dist/api/rest/bookmarks.js +18 -0
- package/dist/api/rest/cast.js +7 -0
- package/dist/{custom-field.d.ts → api/rest/custom-field.d.ts} +1 -19
- package/dist/api/rest/custom-field.js +3 -0
- package/dist/{device-event.d.ts → api/rest/device-event.d.ts} +1 -1
- package/dist/api/rest/device-event.js +1 -0
- package/dist/{device-group.d.ts → api/rest/device-group.d.ts} +0 -23
- package/dist/api/rest/device-group.js +17 -0
- package/dist/api/rest/file.js +1 -0
- package/dist/api/rest/index.d.ts +34 -0
- package/dist/api/rest/index.js +34 -0
- package/dist/{device-factory.d.ts → api/rest/io-device.d.ts} +1 -1
- package/dist/api/rest/io-device.js +19 -0
- package/dist/{layout.d.ts → api/rest/layout.d.ts} +6 -107
- package/dist/api/rest/layout.js +19 -0
- package/dist/{macros.d.ts → api/rest/macros.d.ts} +0 -82
- package/dist/api/rest/macros.js +8 -0
- package/dist/api/rest/media.js +65 -0
- package/dist/api/rest/module-config.d.ts +19 -0
- package/dist/api/rest/module-config.js +1 -0
- package/dist/api/rest/notifications.d.ts +21 -0
- package/dist/api/rest/notifications.js +9 -0
- package/dist/api/rest/person-agreement.d.ts +15 -0
- package/dist/api/rest/person-agreement.js +6 -0
- package/dist/api/rest/person-presence.d.ts +72 -0
- package/dist/api/rest/person-presence.js +29 -0
- package/dist/{access-control → api/rest}/person-type.d.ts +1 -33
- package/dist/api/rest/person-type.js +8 -0
- package/dist/api/rest/person.d.ts +128 -0
- package/dist/api/rest/person.js +8 -0
- package/dist/api/{query.js → rest/query.js} +8 -13
- package/dist/api/rest/schedule.d.ts +249 -0
- package/dist/api/rest/schedule.js +9 -0
- package/dist/{security-level.d.ts → api/rest/security-level.d.ts} +0 -29
- package/dist/api/rest/security-level.js +5 -0
- package/dist/{template.d.ts → api/rest/template.d.ts} +1 -18
- package/dist/api/rest/template.js +12 -0
- package/dist/{token-conversion.d.ts → api/rest/token-conversion.d.ts} +0 -22
- package/dist/api/rest/token-conversion.js +5 -0
- package/dist/{user.d.ts → api/rest/user.d.ts} +10 -60
- package/dist/api/rest/user.js +32 -0
- package/dist/api/rest/view.d.ts +397 -0
- package/dist/api/rest/view.js +16 -0
- package/dist/api/rest/webrtc-playback.js +8 -0
- package/dist/{access-control → api/rest}/zone.d.ts +0 -29
- package/dist/api/rest/zone.js +10 -0
- package/dist/api/state/index.d.ts +10 -0
- package/dist/api/state/index.js +1 -0
- package/dist/api/ws/device-communication.js +55 -0
- package/dist/api/ws/index.js +5 -0
- package/dist/api/ws/notifications.js +20 -0
- package/dist/api/ws/progress.js +44 -0
- package/dist/api/ws/web-rtc-signaling.js +92 -0
- package/dist/api/ws/web-socket.js +2 -0
- package/dist/index.d.ts +1 -36
- package/dist/index.js +6 -57
- package/dist/{access-control → objects}/access-rule.d.ts +9 -78
- package/dist/objects/access-rule.js +36 -0
- package/dist/objects/agent-metadata.d.ts +192 -0
- package/dist/objects/agent-metadata.js +49 -0
- package/dist/objects/agreement.d.ts +21 -0
- package/dist/objects/agreement.js +8 -0
- package/dist/{objects.d.ts → objects/all.d.ts} +18 -11
- package/dist/{objects.js → objects/all.js} +4 -7
- package/dist/objects/api-key.d.ts +21 -0
- package/dist/objects/api-key.js +8 -0
- package/dist/objects/automation-rule.d.ts +218 -0
- package/dist/objects/automation-rule.js +51 -0
- package/dist/objects/bookmark.d.ts +50 -0
- package/dist/objects/bookmark.js +13 -0
- package/dist/objects/credential.js +11 -0
- package/dist/objects/custom-field.d.ts +20 -0
- package/dist/objects/custom-field.js +14 -0
- package/dist/{device → objects/device}/alarm.js +3 -6
- package/dist/{device → objects/device}/any-device.d.ts +510 -510
- package/dist/objects/device/any-device.js +239 -0
- package/dist/objects/device/camera-lift.js +4 -0
- package/dist/objects/device/camera.js +32 -0
- package/dist/objects/device/device-gateway.js +2 -0
- package/dist/{device-import.d.ts → objects/device/device-import.d.ts} +44 -44
- package/dist/objects/device/device-import.js +30 -0
- package/dist/{device-relation.js → objects/device/device-relation.js} +13 -16
- package/dist/objects/device/display.js +4 -0
- package/dist/objects/device/door.js +9 -0
- package/dist/{device → objects/device}/index.d.ts +2 -0
- package/dist/objects/device/index.js +22 -0
- package/dist/objects/device/intercom-operator.js +1 -0
- package/dist/objects/device/intercom-terminal.js +23 -0
- package/dist/objects/device/io-board.js +7 -0
- package/dist/objects/device/motion-sensor.js +4 -0
- package/dist/objects/device/nvr-analytics-server.js +6 -0
- package/dist/objects/device/nvr-exporter.js +7 -0
- package/dist/objects/device/nvr-recorder.js +6 -0
- package/dist/objects/device/panic-button.js +4 -0
- package/dist/objects/device/pbx.js +6 -0
- package/dist/objects/device/presence-tracker.js +1 -0
- package/dist/objects/device/reader.js +1 -0
- package/dist/{device → objects/device}/server.d.ts +1 -1
- package/dist/objects/device/server.js +1 -0
- package/dist/objects/device/system.js +6 -0
- package/dist/objects/device-group.d.ts +24 -0
- package/dist/objects/device-group.js +9 -0
- package/dist/objects/index.d.ts +27 -0
- package/dist/objects/index.js +27 -0
- package/dist/objects/layout.d.ts +102 -0
- package/dist/objects/layout.js +22 -0
- package/dist/objects/macro.d.ts +83 -0
- package/dist/objects/macro.js +22 -0
- package/dist/{module-config.d.ts → objects/module-config.d.ts} +1 -18
- package/dist/objects/module-config.js +1 -0
- package/dist/{notifications.d.ts → objects/notification.d.ts} +0 -20
- package/dist/objects/notification.js +13 -0
- package/dist/{access-control → objects}/person-agreement.d.ts +1 -15
- package/dist/objects/person-agreement.js +8 -0
- package/dist/{access-control → objects}/person-presence.d.ts +2 -73
- package/dist/objects/person-presence.js +35 -0
- package/dist/objects/person-type.d.ts +33 -0
- package/dist/objects/person-type.js +16 -0
- package/dist/{access-control → objects}/person.d.ts +74 -140
- package/dist/objects/person.js +42 -0
- package/dist/objects/role.d.ts +21 -0
- package/dist/objects/role.js +15 -0
- package/dist/{access-control → objects}/schedule.d.ts +4 -129
- package/dist/objects/schedule.js +53 -0
- package/dist/objects/security-level.d.ts +30 -0
- package/dist/objects/security-level.js +11 -0
- package/dist/objects/template.d.ts +20 -0
- package/dist/objects/template.js +8 -0
- package/dist/objects/token-conversion.d.ts +23 -0
- package/dist/objects/token-conversion.js +8 -0
- package/dist/objects/user.d.ts +31 -0
- package/dist/objects/user.js +12 -0
- package/dist/{view.d.ts → objects/view.d.ts} +3 -399
- package/dist/objects/view.js +64 -0
- package/dist/{world-objects.js → objects/world-object.js} +9 -8
- package/dist/objects/zone.d.ts +41 -0
- package/dist/objects/zone.js +15 -0
- package/dist/package.json +1 -1
- package/dist/permissions.js +146 -149
- package/dist/primitives.d.ts +30 -30
- package/dist/primitives.js +27 -30
- package/package.json +1 -1
- package/dist/access-control/access-rule.js +0 -49
- package/dist/access-control/agreement.js +0 -20
- package/dist/access-control/credential.js +0 -17
- package/dist/access-control/index.d.ts +0 -9
- package/dist/access-control/index.js +0 -25
- package/dist/access-control/person-agreement.js +0 -19
- package/dist/access-control/person-presence.js +0 -66
- package/dist/access-control/person-type.js +0 -29
- package/dist/access-control/person.js +0 -53
- package/dist/access-control/schedule.js +0 -65
- package/dist/access-control/zone.js +0 -28
- package/dist/agent-communication/index.d.ts +0 -2
- package/dist/agent-communication/index.js +0 -18
- package/dist/agent-communication/mqtt-payloads.js +0 -21
- package/dist/agent-communication/protocol.js +0 -434
- package/dist/api/alarm.js +0 -2
- package/dist/api/auth.js +0 -19
- package/dist/api/media.js +0 -68
- package/dist/api-keys.js +0 -21
- package/dist/app.js +0 -12
- package/dist/automation.js +0 -66
- package/dist/aware-config.js +0 -2
- package/dist/bookmarks.js +0 -32
- package/dist/cast.js +0 -13
- package/dist/commands/alarm.js +0 -62
- package/dist/commands/camera-lift.js +0 -17
- package/dist/commands/camera.js +0 -97
- package/dist/commands/display.js +0 -37
- package/dist/commands/door.js +0 -27
- package/dist/commands/index.js +0 -28
- package/dist/commands/intercom-terminal.js +0 -3
- package/dist/commands/io-board.js +0 -15
- package/dist/commands/nvr-exporter.js +0 -26
- package/dist/commands/pbx.js +0 -17
- package/dist/commands/presence-tracker.js +0 -33
- package/dist/commands/server.js +0 -27
- package/dist/custom-field.js +0 -19
- package/dist/device/any-device.js +0 -242
- package/dist/device/camera-lift.js +0 -7
- package/dist/device/camera.js +0 -35
- package/dist/device/device-gateway.js +0 -5
- package/dist/device/display.js +0 -7
- package/dist/device/door.js +0 -12
- package/dist/device/index.js +0 -36
- package/dist/device/intercom-operator.js +0 -4
- package/dist/device/intercom-terminal.js +0 -26
- package/dist/device/io-board.js +0 -10
- package/dist/device/motion-sensor.js +0 -7
- package/dist/device/nvr-analytics-server.js +0 -9
- package/dist/device/nvr-exporter.js +0 -10
- package/dist/device/nvr-recorder.js +0 -9
- package/dist/device/panic-button.js +0 -7
- package/dist/device/pbx.js +0 -9
- package/dist/device/presence-tracker.js +0 -4
- package/dist/device/reader.js +0 -4
- package/dist/device/server.js +0 -4
- package/dist/device/system.js +0 -9
- package/dist/device-event.js +0 -2
- package/dist/device-factory.js +0 -26
- package/dist/device-group.js +0 -31
- package/dist/device-import.js +0 -33
- package/dist/device-state.d.ts +0 -10
- package/dist/device-state.js +0 -2
- package/dist/error.js +0 -185
- package/dist/events/alarm.js +0 -55
- package/dist/events/all.js +0 -128
- package/dist/events/camera.js +0 -87
- package/dist/events/display.js +0 -9
- package/dist/events/door.js +0 -62
- package/dist/events/index.js +0 -28
- package/dist/events/intercom-terminal.js +0 -19
- package/dist/events/io-board.js +0 -13
- package/dist/events/nvr-exporter.js +0 -21
- package/dist/events/panic-button.js +0 -11
- package/dist/events/presence-tracker.js +0 -33
- package/dist/events/reader.js +0 -13
- package/dist/events/server.js +0 -15
- package/dist/file.js +0 -2
- package/dist/layout.js +0 -45
- package/dist/macros.js +0 -32
- package/dist/messages/device-communication.js +0 -63
- package/dist/messages/index.js +0 -21
- package/dist/messages/notifications.js +0 -27
- package/dist/messages/progress.js +0 -51
- package/dist/messages/web-rtc-signaling.js +0 -99
- package/dist/messages/web-socket.js +0 -5
- package/dist/milestone.js +0 -2
- package/dist/module-config.js +0 -2
- package/dist/notifications.js +0 -23
- package/dist/orchid.js +0 -2
- package/dist/queries/all.js +0 -28
- package/dist/queries/camera.js +0 -27
- package/dist/queries/index.js +0 -21
- package/dist/queries/nvr-analytics-server.js +0 -76
- package/dist/queries/nvr-exporter.js +0 -36
- package/dist/queries/nvr-recorder.js +0 -42
- package/dist/security-level.js +0 -18
- package/dist/template.js +0 -21
- package/dist/token-conversion.js +0 -15
- package/dist/user.js +0 -57
- package/dist/view.js +0 -84
- package/dist/webrtc-playback.js +0 -14
- package/dist/{milestone.d.ts → _legacy/milestone.d.ts} +0 -0
- package/dist/{orchid.d.ts → _legacy/orchid.d.ts} +0 -0
- package/dist/{commands → api/commands}/alarm.d.ts +0 -0
- package/dist/{commands → api/commands}/camera-lift.d.ts +0 -0
- package/dist/{commands → api/commands}/camera.d.ts +0 -0
- package/dist/{commands → api/commands}/display.d.ts +0 -0
- package/dist/{commands → api/commands}/door.d.ts +0 -0
- package/dist/{commands → api/commands}/index.d.ts +0 -0
- package/dist/{commands → api/commands}/intercom-terminal.d.ts +0 -0
- package/dist/{commands → api/commands}/io-board.d.ts +0 -0
- package/dist/{commands → api/commands}/nvr-exporter.d.ts +86 -86
- package/dist/{commands → api/commands}/pbx.d.ts +0 -0
- package/dist/{commands → api/commands}/presence-tracker.d.ts +0 -0
- package/dist/{commands → api/commands}/server.d.ts +78 -78
- package/dist/{error.d.ts → api/error.d.ts} +0 -0
- package/dist/{events → api/events}/alarm.d.ts +0 -0
- package/dist/{events → api/events}/camera.d.ts +0 -0
- package/dist/{events → api/events}/display.d.ts +0 -0
- package/dist/{events → api/events}/door.d.ts +0 -0
- package/dist/{events → api/events}/index.d.ts +0 -0
- package/dist/{events → api/events}/intercom-terminal.d.ts +0 -0
- package/dist/{events → api/events}/io-board.d.ts +0 -0
- package/dist/{events → api/events}/nvr-exporter.d.ts +4 -4
- package/dist/{events → api/events}/panic-button.d.ts +0 -0
- package/dist/{events → api/events}/presence-tracker.d.ts +8 -8
- package/dist/{events → api/events}/reader.d.ts +0 -0
- package/dist/{agent-communication/mqtt-payloads.d.ts → api/mqtt/payloads.d.ts} +0 -0
- package/dist/{queries → api/queries}/all.d.ts +83 -83
- package/dist/{queries → api/queries}/camera.d.ts +0 -0
- package/dist/{queries → api/queries}/index.d.ts +0 -0
- package/dist/{queries → api/queries}/nvr-analytics-server.d.ts +4 -4
- package/dist/{queries → api/queries}/nvr-exporter.d.ts +0 -0
- package/dist/{queries → api/queries}/nvr-recorder.d.ts +162 -162
- package/dist/api/{alarm.d.ts → rest/alarm.d.ts} +0 -0
- package/dist/{app.d.ts → api/rest/app.d.ts} +0 -0
- package/dist/api/{auth.d.ts → rest/auth.d.ts} +0 -0
- package/dist/{aware-config.d.ts → api/rest/aware-config.d.ts} +0 -0
- package/dist/{cast.d.ts → api/rest/cast.d.ts} +0 -0
- package/dist/{file.d.ts → api/rest/file.d.ts} +0 -0
- package/dist/api/{media.d.ts → rest/media.d.ts} +2 -2
- /package/dist/api/{query.d.ts → rest/query.d.ts} +0 -0
- /package/dist/{webrtc-playback.d.ts → api/rest/webrtc-playback.d.ts} +0 -0
- /package/dist/{messages → api/ws}/device-communication.d.ts +0 -0
- /package/dist/{messages → api/ws}/index.d.ts +0 -0
- /package/dist/{messages → api/ws}/notifications.d.ts +0 -0
- /package/dist/{messages → api/ws}/progress.d.ts +0 -0
- /package/dist/{messages → api/ws}/web-rtc-signaling.d.ts +0 -0
- /package/dist/{messages → api/ws}/web-socket.d.ts +0 -0
- /package/dist/{access-control → objects}/credential.d.ts +0 -0
- /package/dist/{device → objects/device}/alarm.d.ts +0 -0
- /package/dist/{device → objects/device}/camera-lift.d.ts +0 -0
- /package/dist/{device → objects/device}/camera.d.ts +0 -0
- /package/dist/{device → objects/device}/device-gateway.d.ts +0 -0
- /package/dist/{device-relation.d.ts → objects/device/device-relation.d.ts} +0 -0
- /package/dist/{device → objects/device}/display.d.ts +0 -0
- /package/dist/{device → objects/device}/door.d.ts +0 -0
- /package/dist/{device → objects/device}/intercom-operator.d.ts +0 -0
- /package/dist/{device → objects/device}/intercom-terminal.d.ts +0 -0
- /package/dist/{device → objects/device}/io-board.d.ts +0 -0
- /package/dist/{device → objects/device}/motion-sensor.d.ts +0 -0
- /package/dist/{device → objects/device}/nvr-analytics-server.d.ts +0 -0
- /package/dist/{device → objects/device}/nvr-exporter.d.ts +0 -0
- /package/dist/{device → objects/device}/nvr-recorder.d.ts +0 -0
- /package/dist/{device → objects/device}/panic-button.d.ts +0 -0
- /package/dist/{device → objects/device}/pbx.d.ts +0 -0
- /package/dist/{device → objects/device}/presence-tracker.d.ts +0 -0
- /package/dist/{device → objects/device}/reader.d.ts +0 -0
- /package/dist/{device → objects/device}/system.d.ts +0 -0
- /package/dist/{world-objects.d.ts → objects/world-object.d.ts} +0 -0
|
@@ -24,18 +24,18 @@ export declare const requestSchemasByType: {
|
|
|
24
24
|
label?: string[] | undefined;
|
|
25
25
|
q?: string | undefined;
|
|
26
26
|
devices?: any[] | undefined;
|
|
27
|
+
limit?: number | undefined;
|
|
27
28
|
timeFrom?: number | undefined;
|
|
28
29
|
timeTo?: number | undefined;
|
|
29
|
-
limit?: number | undefined;
|
|
30
30
|
similarTo?: string | undefined;
|
|
31
31
|
sortBy?: "time_asc" | "time_desc" | undefined;
|
|
32
32
|
}, {
|
|
33
33
|
label?: string[] | undefined;
|
|
34
34
|
q?: string | undefined;
|
|
35
35
|
devices?: any[] | undefined;
|
|
36
|
+
limit?: number | undefined;
|
|
36
37
|
timeFrom?: number | undefined;
|
|
37
38
|
timeTo?: number | undefined;
|
|
38
|
-
limit?: number | undefined;
|
|
39
39
|
similarTo?: string | undefined;
|
|
40
40
|
sortBy?: "time_asc" | "time_desc" | undefined;
|
|
41
41
|
}>;
|
|
@@ -99,52 +99,52 @@ export declare const requestSchemasByType: {
|
|
|
99
99
|
}, "strip", z.ZodTypeAny, {
|
|
100
100
|
name: string;
|
|
101
101
|
id: string;
|
|
102
|
-
isDefault: boolean;
|
|
103
|
-
assignedRef: string | null;
|
|
104
102
|
createdOn: string;
|
|
105
103
|
lastModifiedOn: string;
|
|
104
|
+
isDefault: boolean;
|
|
105
|
+
assignedRef: string | null;
|
|
106
106
|
params?: unknown;
|
|
107
107
|
}, {
|
|
108
108
|
name: string;
|
|
109
109
|
id: string;
|
|
110
|
-
isDefault: boolean;
|
|
111
|
-
assignedRef: string | null;
|
|
112
110
|
createdOn: string;
|
|
113
111
|
lastModifiedOn: string;
|
|
112
|
+
isDefault: boolean;
|
|
113
|
+
assignedRef: string | null;
|
|
114
114
|
params?: unknown;
|
|
115
115
|
}>, "many">;
|
|
116
116
|
}, "strip", z.ZodTypeAny, {
|
|
117
117
|
name: string;
|
|
118
118
|
foreignRef: string;
|
|
119
|
-
provider: string;
|
|
120
|
-
providerMetadata: {} & {
|
|
121
|
-
[k: string]: unknown;
|
|
122
|
-
};
|
|
123
119
|
presets: {
|
|
124
120
|
name: string;
|
|
125
121
|
id: string;
|
|
126
|
-
isDefault: boolean;
|
|
127
|
-
assignedRef: string | null;
|
|
128
122
|
createdOn: string;
|
|
129
123
|
lastModifiedOn: string;
|
|
124
|
+
isDefault: boolean;
|
|
125
|
+
assignedRef: string | null;
|
|
130
126
|
params?: unknown;
|
|
131
127
|
}[];
|
|
132
|
-
}, {
|
|
133
|
-
name: string;
|
|
134
|
-
foreignRef: string;
|
|
135
128
|
provider: string;
|
|
136
129
|
providerMetadata: {} & {
|
|
137
130
|
[k: string]: unknown;
|
|
138
131
|
};
|
|
132
|
+
}, {
|
|
133
|
+
name: string;
|
|
134
|
+
foreignRef: string;
|
|
139
135
|
presets: {
|
|
140
136
|
name: string;
|
|
141
137
|
id: string;
|
|
142
|
-
isDefault: boolean;
|
|
143
|
-
assignedRef: string | null;
|
|
144
138
|
createdOn: string;
|
|
145
139
|
lastModifiedOn: string;
|
|
140
|
+
isDefault: boolean;
|
|
141
|
+
assignedRef: string | null;
|
|
146
142
|
params?: unknown;
|
|
147
143
|
}[];
|
|
144
|
+
provider: string;
|
|
145
|
+
providerMetadata: {} & {
|
|
146
|
+
[k: string]: unknown;
|
|
147
|
+
};
|
|
148
148
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
149
149
|
type: z.ZodLiteral<"alarm">;
|
|
150
150
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -390,19 +390,19 @@ export declare const requestSchemasByType: {
|
|
|
390
390
|
device: string | [string, string] | ({
|
|
391
391
|
name: string;
|
|
392
392
|
foreignRef: string;
|
|
393
|
-
provider: string;
|
|
394
|
-
providerMetadata: {} & {
|
|
395
|
-
[k: string]: unknown;
|
|
396
|
-
};
|
|
397
393
|
presets: {
|
|
398
394
|
name: string;
|
|
399
395
|
id: string;
|
|
400
|
-
isDefault: boolean;
|
|
401
|
-
assignedRef: string | null;
|
|
402
396
|
createdOn: string;
|
|
403
397
|
lastModifiedOn: string;
|
|
398
|
+
isDefault: boolean;
|
|
399
|
+
assignedRef: string | null;
|
|
404
400
|
params?: unknown;
|
|
405
401
|
}[];
|
|
402
|
+
provider: string;
|
|
403
|
+
providerMetadata: {} & {
|
|
404
|
+
[k: string]: unknown;
|
|
405
|
+
};
|
|
406
406
|
} & ({
|
|
407
407
|
type: "alarm";
|
|
408
408
|
} | {
|
|
@@ -483,19 +483,19 @@ export declare const requestSchemasByType: {
|
|
|
483
483
|
device: string | [string, string] | ({
|
|
484
484
|
name: string;
|
|
485
485
|
foreignRef: string;
|
|
486
|
-
provider: string;
|
|
487
|
-
providerMetadata: {} & {
|
|
488
|
-
[k: string]: unknown;
|
|
489
|
-
};
|
|
490
486
|
presets: {
|
|
491
487
|
name: string;
|
|
492
488
|
id: string;
|
|
493
|
-
isDefault: boolean;
|
|
494
|
-
assignedRef: string | null;
|
|
495
489
|
createdOn: string;
|
|
496
490
|
lastModifiedOn: string;
|
|
491
|
+
isDefault: boolean;
|
|
492
|
+
assignedRef: string | null;
|
|
497
493
|
params?: unknown;
|
|
498
494
|
}[];
|
|
495
|
+
provider: string;
|
|
496
|
+
providerMetadata: {} & {
|
|
497
|
+
[k: string]: unknown;
|
|
498
|
+
};
|
|
499
499
|
} & ({
|
|
500
500
|
type: "alarm";
|
|
501
501
|
} | {
|
|
@@ -591,52 +591,52 @@ export declare const requestSchemasByType: {
|
|
|
591
591
|
}, "strip", z.ZodTypeAny, {
|
|
592
592
|
name: string;
|
|
593
593
|
id: string;
|
|
594
|
-
isDefault: boolean;
|
|
595
|
-
assignedRef: string | null;
|
|
596
594
|
createdOn: string;
|
|
597
595
|
lastModifiedOn: string;
|
|
596
|
+
isDefault: boolean;
|
|
597
|
+
assignedRef: string | null;
|
|
598
598
|
params?: unknown;
|
|
599
599
|
}, {
|
|
600
600
|
name: string;
|
|
601
601
|
id: string;
|
|
602
|
-
isDefault: boolean;
|
|
603
|
-
assignedRef: string | null;
|
|
604
602
|
createdOn: string;
|
|
605
603
|
lastModifiedOn: string;
|
|
604
|
+
isDefault: boolean;
|
|
605
|
+
assignedRef: string | null;
|
|
606
606
|
params?: unknown;
|
|
607
607
|
}>, "many">;
|
|
608
608
|
}, "strip", z.ZodTypeAny, {
|
|
609
609
|
name: string;
|
|
610
610
|
foreignRef: string;
|
|
611
|
-
provider: string;
|
|
612
|
-
providerMetadata: {} & {
|
|
613
|
-
[k: string]: unknown;
|
|
614
|
-
};
|
|
615
611
|
presets: {
|
|
616
612
|
name: string;
|
|
617
613
|
id: string;
|
|
618
|
-
isDefault: boolean;
|
|
619
|
-
assignedRef: string | null;
|
|
620
614
|
createdOn: string;
|
|
621
615
|
lastModifiedOn: string;
|
|
616
|
+
isDefault: boolean;
|
|
617
|
+
assignedRef: string | null;
|
|
622
618
|
params?: unknown;
|
|
623
619
|
}[];
|
|
624
|
-
}, {
|
|
625
|
-
name: string;
|
|
626
|
-
foreignRef: string;
|
|
627
620
|
provider: string;
|
|
628
621
|
providerMetadata: {} & {
|
|
629
622
|
[k: string]: unknown;
|
|
630
623
|
};
|
|
624
|
+
}, {
|
|
625
|
+
name: string;
|
|
626
|
+
foreignRef: string;
|
|
631
627
|
presets: {
|
|
632
628
|
name: string;
|
|
633
629
|
id: string;
|
|
634
|
-
isDefault: boolean;
|
|
635
|
-
assignedRef: string | null;
|
|
636
630
|
createdOn: string;
|
|
637
631
|
lastModifiedOn: string;
|
|
632
|
+
isDefault: boolean;
|
|
633
|
+
assignedRef: string | null;
|
|
638
634
|
params?: unknown;
|
|
639
635
|
}[];
|
|
636
|
+
provider: string;
|
|
637
|
+
providerMetadata: {} & {
|
|
638
|
+
[k: string]: unknown;
|
|
639
|
+
};
|
|
640
640
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
641
641
|
type: z.ZodLiteral<"alarm">;
|
|
642
642
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -884,19 +884,19 @@ export declare const requestSchemasByType: {
|
|
|
884
884
|
device: string | [string, string] | ({
|
|
885
885
|
name: string;
|
|
886
886
|
foreignRef: string;
|
|
887
|
-
provider: string;
|
|
888
|
-
providerMetadata: {} & {
|
|
889
|
-
[k: string]: unknown;
|
|
890
|
-
};
|
|
891
887
|
presets: {
|
|
892
888
|
name: string;
|
|
893
889
|
id: string;
|
|
894
|
-
isDefault: boolean;
|
|
895
|
-
assignedRef: string | null;
|
|
896
890
|
createdOn: string;
|
|
897
891
|
lastModifiedOn: string;
|
|
892
|
+
isDefault: boolean;
|
|
893
|
+
assignedRef: string | null;
|
|
898
894
|
params?: unknown;
|
|
899
895
|
}[];
|
|
896
|
+
provider: string;
|
|
897
|
+
providerMetadata: {} & {
|
|
898
|
+
[k: string]: unknown;
|
|
899
|
+
};
|
|
900
900
|
} & ({
|
|
901
901
|
type: "alarm";
|
|
902
902
|
} | {
|
|
@@ -977,19 +977,19 @@ export declare const requestSchemasByType: {
|
|
|
977
977
|
device: string | [string, string] | ({
|
|
978
978
|
name: string;
|
|
979
979
|
foreignRef: string;
|
|
980
|
-
provider: string;
|
|
981
|
-
providerMetadata: {} & {
|
|
982
|
-
[k: string]: unknown;
|
|
983
|
-
};
|
|
984
980
|
presets: {
|
|
985
981
|
name: string;
|
|
986
982
|
id: string;
|
|
987
|
-
isDefault: boolean;
|
|
988
|
-
assignedRef: string | null;
|
|
989
983
|
createdOn: string;
|
|
990
984
|
lastModifiedOn: string;
|
|
985
|
+
isDefault: boolean;
|
|
986
|
+
assignedRef: string | null;
|
|
991
987
|
params?: unknown;
|
|
992
988
|
}[];
|
|
989
|
+
provider: string;
|
|
990
|
+
providerMetadata: {} & {
|
|
991
|
+
[k: string]: unknown;
|
|
992
|
+
};
|
|
993
993
|
} & ({
|
|
994
994
|
type: "alarm";
|
|
995
995
|
} | {
|
|
@@ -1083,52 +1083,52 @@ export declare const requestSchemasByType: {
|
|
|
1083
1083
|
}, "strip", z.ZodTypeAny, {
|
|
1084
1084
|
name: string;
|
|
1085
1085
|
id: string;
|
|
1086
|
-
isDefault: boolean;
|
|
1087
|
-
assignedRef: string | null;
|
|
1088
1086
|
createdOn: string;
|
|
1089
1087
|
lastModifiedOn: string;
|
|
1088
|
+
isDefault: boolean;
|
|
1089
|
+
assignedRef: string | null;
|
|
1090
1090
|
params?: unknown;
|
|
1091
1091
|
}, {
|
|
1092
1092
|
name: string;
|
|
1093
1093
|
id: string;
|
|
1094
|
-
isDefault: boolean;
|
|
1095
|
-
assignedRef: string | null;
|
|
1096
1094
|
createdOn: string;
|
|
1097
1095
|
lastModifiedOn: string;
|
|
1096
|
+
isDefault: boolean;
|
|
1097
|
+
assignedRef: string | null;
|
|
1098
1098
|
params?: unknown;
|
|
1099
1099
|
}>, "many">;
|
|
1100
1100
|
}, "strip", z.ZodTypeAny, {
|
|
1101
1101
|
name: string;
|
|
1102
1102
|
foreignRef: string;
|
|
1103
|
-
provider: string;
|
|
1104
|
-
providerMetadata: {} & {
|
|
1105
|
-
[k: string]: unknown;
|
|
1106
|
-
};
|
|
1107
1103
|
presets: {
|
|
1108
1104
|
name: string;
|
|
1109
1105
|
id: string;
|
|
1110
|
-
isDefault: boolean;
|
|
1111
|
-
assignedRef: string | null;
|
|
1112
1106
|
createdOn: string;
|
|
1113
1107
|
lastModifiedOn: string;
|
|
1108
|
+
isDefault: boolean;
|
|
1109
|
+
assignedRef: string | null;
|
|
1114
1110
|
params?: unknown;
|
|
1115
1111
|
}[];
|
|
1116
|
-
}, {
|
|
1117
|
-
name: string;
|
|
1118
|
-
foreignRef: string;
|
|
1119
1112
|
provider: string;
|
|
1120
1113
|
providerMetadata: {} & {
|
|
1121
1114
|
[k: string]: unknown;
|
|
1122
1115
|
};
|
|
1116
|
+
}, {
|
|
1117
|
+
name: string;
|
|
1118
|
+
foreignRef: string;
|
|
1123
1119
|
presets: {
|
|
1124
1120
|
name: string;
|
|
1125
1121
|
id: string;
|
|
1126
|
-
isDefault: boolean;
|
|
1127
|
-
assignedRef: string | null;
|
|
1128
1122
|
createdOn: string;
|
|
1129
1123
|
lastModifiedOn: string;
|
|
1124
|
+
isDefault: boolean;
|
|
1125
|
+
assignedRef: string | null;
|
|
1130
1126
|
params?: unknown;
|
|
1131
1127
|
}[];
|
|
1128
|
+
provider: string;
|
|
1129
|
+
providerMetadata: {} & {
|
|
1130
|
+
[k: string]: unknown;
|
|
1131
|
+
};
|
|
1132
1132
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1133
1133
|
type: z.ZodLiteral<"alarm">;
|
|
1134
1134
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1376,19 +1376,19 @@ export declare const requestSchemasByType: {
|
|
|
1376
1376
|
device: string | [string, string] | ({
|
|
1377
1377
|
name: string;
|
|
1378
1378
|
foreignRef: string;
|
|
1379
|
-
provider: string;
|
|
1380
|
-
providerMetadata: {} & {
|
|
1381
|
-
[k: string]: unknown;
|
|
1382
|
-
};
|
|
1383
1379
|
presets: {
|
|
1384
1380
|
name: string;
|
|
1385
1381
|
id: string;
|
|
1386
|
-
isDefault: boolean;
|
|
1387
|
-
assignedRef: string | null;
|
|
1388
1382
|
createdOn: string;
|
|
1389
1383
|
lastModifiedOn: string;
|
|
1384
|
+
isDefault: boolean;
|
|
1385
|
+
assignedRef: string | null;
|
|
1390
1386
|
params?: unknown;
|
|
1391
1387
|
}[];
|
|
1388
|
+
provider: string;
|
|
1389
|
+
providerMetadata: {} & {
|
|
1390
|
+
[k: string]: unknown;
|
|
1391
|
+
};
|
|
1392
1392
|
} & ({
|
|
1393
1393
|
type: "alarm";
|
|
1394
1394
|
} | {
|
|
@@ -1469,19 +1469,19 @@ export declare const requestSchemasByType: {
|
|
|
1469
1469
|
device: string | [string, string] | ({
|
|
1470
1470
|
name: string;
|
|
1471
1471
|
foreignRef: string;
|
|
1472
|
-
provider: string;
|
|
1473
|
-
providerMetadata: {} & {
|
|
1474
|
-
[k: string]: unknown;
|
|
1475
|
-
};
|
|
1476
1472
|
presets: {
|
|
1477
1473
|
name: string;
|
|
1478
1474
|
id: string;
|
|
1479
|
-
isDefault: boolean;
|
|
1480
|
-
assignedRef: string | null;
|
|
1481
1475
|
createdOn: string;
|
|
1482
1476
|
lastModifiedOn: string;
|
|
1477
|
+
isDefault: boolean;
|
|
1478
|
+
assignedRef: string | null;
|
|
1483
1479
|
params?: unknown;
|
|
1484
1480
|
}[];
|
|
1481
|
+
provider: string;
|
|
1482
|
+
providerMetadata: {} & {
|
|
1483
|
+
[k: string]: unknown;
|
|
1484
|
+
};
|
|
1485
1485
|
} & ({
|
|
1486
1486
|
type: "alarm";
|
|
1487
1487
|
} | {
|
|
File without changes
|
|
File without changes
|
|
@@ -13,18 +13,18 @@ export declare const sMediaSearchArgs: z.ZodObject<{
|
|
|
13
13
|
label?: string[] | undefined;
|
|
14
14
|
q?: string | undefined;
|
|
15
15
|
devices?: any[] | undefined;
|
|
16
|
+
limit?: number | undefined;
|
|
16
17
|
timeFrom?: number | undefined;
|
|
17
18
|
timeTo?: number | undefined;
|
|
18
|
-
limit?: number | undefined;
|
|
19
19
|
similarTo?: string | undefined;
|
|
20
20
|
sortBy?: "time_asc" | "time_desc" | undefined;
|
|
21
21
|
}, {
|
|
22
22
|
label?: string[] | undefined;
|
|
23
23
|
q?: string | undefined;
|
|
24
24
|
devices?: any[] | undefined;
|
|
25
|
+
limit?: number | undefined;
|
|
25
26
|
timeFrom?: number | undefined;
|
|
26
27
|
timeTo?: number | undefined;
|
|
27
|
-
limit?: number | undefined;
|
|
28
28
|
similarTo?: string | undefined;
|
|
29
29
|
sortBy?: "time_asc" | "time_desc" | undefined;
|
|
30
30
|
}>;
|
|
@@ -178,18 +178,18 @@ export declare const nvrAnalyticsRequestSchemas: {
|
|
|
178
178
|
label?: string[] | undefined;
|
|
179
179
|
q?: string | undefined;
|
|
180
180
|
devices?: any[] | undefined;
|
|
181
|
+
limit?: number | undefined;
|
|
181
182
|
timeFrom?: number | undefined;
|
|
182
183
|
timeTo?: number | undefined;
|
|
183
|
-
limit?: number | undefined;
|
|
184
184
|
similarTo?: string | undefined;
|
|
185
185
|
sortBy?: "time_asc" | "time_desc" | undefined;
|
|
186
186
|
}, {
|
|
187
187
|
label?: string[] | undefined;
|
|
188
188
|
q?: string | undefined;
|
|
189
189
|
devices?: any[] | undefined;
|
|
190
|
+
limit?: number | undefined;
|
|
190
191
|
timeFrom?: number | undefined;
|
|
191
192
|
timeTo?: number | undefined;
|
|
192
|
-
limit?: number | undefined;
|
|
193
193
|
similarTo?: string | undefined;
|
|
194
194
|
sortBy?: "time_asc" | "time_desc" | undefined;
|
|
195
195
|
}>;
|
|
File without changes
|