@awarevue/api-types 2.0.52 → 2.0.54
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/agent-protocol/protocol.d.ts +853 -840
- package/dist/api/agent-protocol/protocol.js +14 -1
- package/dist/api/commands/all.d.ts +224 -224
- package/dist/api/commands/camera.d.ts +16 -16
- package/dist/api/commands/display.d.ts +48 -48
- package/dist/api/commands/nvr-exporter.d.ts +194 -194
- package/dist/api/commands/server.d.ts +202 -202
- package/dist/api/events/all.d.ts +30 -30
- package/dist/api/events/camera.d.ts +42 -42
- package/dist/api/events/door.d.ts +4 -4
- package/dist/api/events/intercom-terminal.d.ts +8 -8
- package/dist/api/events/io-board.d.ts +4 -4
- package/dist/api/queries/all.d.ts +225 -225
- package/dist/api/queries/camera.d.ts +8 -8
- package/dist/api/queries/nvr-analytics-server.d.ts +36 -36
- package/dist/api/queries/nvr-exporter.d.ts +18 -18
- package/dist/api/queries/nvr-recorder.d.ts +398 -398
- package/dist/api/rest/agreement.d.ts +5 -5
- package/dist/api/rest/app.d.ts +3 -0
- package/dist/api/rest/app.js +1 -0
- package/dist/api/rest/automation.d.ts +46 -46
- package/dist/api/rest/bookmarks.d.ts +12 -12
- package/dist/api/rest/custom-field.d.ts +5 -5
- package/dist/api/rest/device.d.ts +6 -6
- package/dist/api/rest/io-device.d.ts +14 -14
- package/dist/api/rest/layout.d.ts +16 -16
- package/dist/api/rest/macros.d.ts +13 -13
- package/dist/api/rest/media.d.ts +16 -16
- package/dist/api/rest/person.d.ts +12 -12
- package/dist/api/rest/query.d.ts +2 -2
- package/dist/api/rest/schedule.d.ts +24 -24
- package/dist/api/rest/security-level.d.ts +10 -10
- package/dist/api/rest/template.d.ts +4 -4
- package/dist/api/rest/token-conversion.d.ts +5 -5
- package/dist/api/rest/user.d.ts +17 -17
- package/dist/api/rest/view.d.ts +44 -44
- package/dist/api/ws/device-communication.d.ts +6 -6
- package/dist/api/ws/notifications.d.ts +4 -4
- package/dist/api/ws/progress.d.ts +15 -15
- package/dist/api/ws/web-rtc-signaling.d.ts +2 -2
- package/dist/objects/access-rule.d.ts +2 -2
- package/dist/objects/agent-metadata.d.ts +16 -16
- package/dist/objects/agreement.d.ts +2 -2
- package/dist/objects/api-key.d.ts +2 -2
- package/dist/objects/automation-rule.d.ts +34 -34
- package/dist/objects/bookmark.d.ts +8 -8
- package/dist/objects/credential.d.ts +2 -2
- package/dist/objects/custom-field.d.ts +2 -2
- package/dist/objects/device/any-device.d.ts +205 -205
- package/dist/objects/device/camera.d.ts +26 -26
- package/dist/objects/device/device-import.d.ts +277 -277
- package/dist/objects/device/door.d.ts +2 -2
- package/dist/objects/device/intercom-terminal.d.ts +2 -2
- package/dist/objects/layout.d.ts +16 -16
- package/dist/objects/macro.d.ts +14 -14
- package/dist/objects/notification.d.ts +4 -4
- package/dist/objects/person-presence.d.ts +12 -12
- package/dist/objects/person.d.ts +14 -14
- package/dist/objects/role.d.ts +2 -2
- package/dist/objects/schedule.d.ts +36 -36
- package/dist/objects/security-level.d.ts +6 -6
- package/dist/objects/template.d.ts +2 -2
- package/dist/objects/token-conversion.d.ts +2 -2
- package/dist/objects/user.d.ts +4 -4
- package/dist/objects/view.d.ts +58 -58
- package/dist/objects/zone.d.ts +2 -2
- package/dist/package.json +5 -1
- package/dist/primitives.d.ts +60 -60
- package/package.json +5 -1
|
@@ -26,12 +26,12 @@ export declare const sStreamInfo: z.ZodObject<{
|
|
|
26
26
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
27
27
|
}, "strip", z.ZodTypeAny, {
|
|
28
28
|
id: string;
|
|
29
|
-
height: number | null;
|
|
30
|
-
width: number | null;
|
|
31
29
|
displayName: string;
|
|
32
30
|
externalPlayerUrl: string | null;
|
|
33
31
|
rtspUrl: string | null;
|
|
34
32
|
recordingCapable: boolean;
|
|
33
|
+
width: number | null;
|
|
34
|
+
height: number | null;
|
|
35
35
|
lensType: "flat" | "fisheye";
|
|
36
36
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
37
37
|
webrtcPlaybackSource: ({
|
|
@@ -39,12 +39,12 @@ export declare const sStreamInfo: z.ZodObject<{
|
|
|
39
39
|
} & Record<string, unknown>) | null;
|
|
40
40
|
}, {
|
|
41
41
|
id: string;
|
|
42
|
-
height: number | null;
|
|
43
|
-
width: number | null;
|
|
44
42
|
displayName: string;
|
|
45
43
|
externalPlayerUrl: string | null;
|
|
46
44
|
rtspUrl: string | null;
|
|
47
45
|
recordingCapable: boolean;
|
|
46
|
+
width: number | null;
|
|
47
|
+
height: number | null;
|
|
48
48
|
lensType: "flat" | "fisheye";
|
|
49
49
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
50
50
|
webrtcPlaybackSource: ({
|
|
@@ -81,12 +81,12 @@ export declare const sCameraSpecs: z.ZodObject<{
|
|
|
81
81
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
82
82
|
}, "strip", z.ZodTypeAny, {
|
|
83
83
|
id: string;
|
|
84
|
-
height: number | null;
|
|
85
|
-
width: number | null;
|
|
86
84
|
displayName: string;
|
|
87
85
|
externalPlayerUrl: string | null;
|
|
88
86
|
rtspUrl: string | null;
|
|
89
87
|
recordingCapable: boolean;
|
|
88
|
+
width: number | null;
|
|
89
|
+
height: number | null;
|
|
90
90
|
lensType: "flat" | "fisheye";
|
|
91
91
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
92
92
|
webrtcPlaybackSource: ({
|
|
@@ -94,12 +94,12 @@ export declare const sCameraSpecs: z.ZodObject<{
|
|
|
94
94
|
} & Record<string, unknown>) | null;
|
|
95
95
|
}, {
|
|
96
96
|
id: string;
|
|
97
|
-
height: number | null;
|
|
98
|
-
width: number | null;
|
|
99
97
|
displayName: string;
|
|
100
98
|
externalPlayerUrl: string | null;
|
|
101
99
|
rtspUrl: string | null;
|
|
102
100
|
recordingCapable: boolean;
|
|
101
|
+
width: number | null;
|
|
102
|
+
height: number | null;
|
|
103
103
|
lensType: "flat" | "fisheye";
|
|
104
104
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
105
105
|
webrtcPlaybackSource: ({
|
|
@@ -109,20 +109,33 @@ export declare const sCameraSpecs: z.ZodObject<{
|
|
|
109
109
|
defaultStreamId: z.ZodString;
|
|
110
110
|
streamNaming: z.ZodEnum<["cameraStreamNo", "cameraStream", "stream"]>;
|
|
111
111
|
}, "strip", z.ZodTypeAny, {
|
|
112
|
+
ptzCapable: boolean;
|
|
113
|
+
ptzPanSpeed: number;
|
|
114
|
+
ptzTiltSpeed: number;
|
|
115
|
+
ptzZoomSpeed: number;
|
|
116
|
+
panMin: number;
|
|
117
|
+
panMax: number;
|
|
118
|
+
tiltMin: number;
|
|
119
|
+
tiltMax: number;
|
|
120
|
+
zoomMin: number;
|
|
121
|
+
zoomMax: number;
|
|
112
122
|
streams: {
|
|
113
123
|
id: string;
|
|
114
|
-
height: number | null;
|
|
115
|
-
width: number | null;
|
|
116
124
|
displayName: string;
|
|
117
125
|
externalPlayerUrl: string | null;
|
|
118
126
|
rtspUrl: string | null;
|
|
119
127
|
recordingCapable: boolean;
|
|
128
|
+
width: number | null;
|
|
129
|
+
height: number | null;
|
|
120
130
|
lensType: "flat" | "fisheye";
|
|
121
131
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
122
132
|
webrtcPlaybackSource: ({
|
|
123
133
|
kind: string;
|
|
124
134
|
} & Record<string, unknown>) | null;
|
|
125
135
|
}[];
|
|
136
|
+
defaultStreamId: string;
|
|
137
|
+
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
138
|
+
}, {
|
|
126
139
|
ptzCapable: boolean;
|
|
127
140
|
ptzPanSpeed: number;
|
|
128
141
|
ptzTiltSpeed: number;
|
|
@@ -133,35 +146,22 @@ export declare const sCameraSpecs: z.ZodObject<{
|
|
|
133
146
|
tiltMax: number;
|
|
134
147
|
zoomMin: number;
|
|
135
148
|
zoomMax: number;
|
|
136
|
-
defaultStreamId: string;
|
|
137
|
-
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
138
|
-
}, {
|
|
139
149
|
streams: {
|
|
140
150
|
id: string;
|
|
141
|
-
height: number | null;
|
|
142
|
-
width: number | null;
|
|
143
151
|
displayName: string;
|
|
144
152
|
externalPlayerUrl: string | null;
|
|
145
153
|
rtspUrl: string | null;
|
|
146
154
|
recordingCapable: boolean;
|
|
155
|
+
width: number | null;
|
|
156
|
+
height: number | null;
|
|
147
157
|
lensType: "flat" | "fisheye";
|
|
148
158
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
149
159
|
webrtcPlaybackSource: ({
|
|
150
160
|
kind: string;
|
|
151
161
|
} & Record<string, unknown>) | null;
|
|
152
162
|
}[];
|
|
153
|
-
ptzCapable: boolean;
|
|
154
|
-
ptzPanSpeed: number;
|
|
155
|
-
ptzTiltSpeed: number;
|
|
156
|
-
ptzZoomSpeed: number;
|
|
157
|
-
panMin: number;
|
|
158
|
-
panMax: number;
|
|
159
|
-
tiltMin: number;
|
|
160
|
-
tiltMax: number;
|
|
161
|
-
zoomMin: number;
|
|
162
|
-
zoomMax: number;
|
|
163
163
|
defaultStreamId: string;
|
|
164
|
-
streamNaming: "
|
|
164
|
+
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
165
165
|
}>;
|
|
166
166
|
export type WebRtcPlaybackSource = z.infer<typeof sWebRtcPlaybackSource>;
|
|
167
167
|
export type CameraSpecs = z.infer<typeof sCameraSpecs>;
|