@awarevue/api-types 2.0.53 → 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.
Files changed (67) hide show
  1. package/dist/api/agent-protocol/protocol.d.ts +853 -840
  2. package/dist/api/agent-protocol/protocol.js +14 -1
  3. package/dist/api/commands/all.d.ts +224 -224
  4. package/dist/api/commands/camera.d.ts +16 -16
  5. package/dist/api/commands/display.d.ts +48 -48
  6. package/dist/api/commands/nvr-exporter.d.ts +194 -194
  7. package/dist/api/commands/server.d.ts +202 -202
  8. package/dist/api/events/all.d.ts +30 -30
  9. package/dist/api/events/camera.d.ts +42 -42
  10. package/dist/api/events/door.d.ts +4 -4
  11. package/dist/api/events/intercom-terminal.d.ts +8 -8
  12. package/dist/api/events/io-board.d.ts +4 -4
  13. package/dist/api/queries/all.d.ts +225 -225
  14. package/dist/api/queries/camera.d.ts +8 -8
  15. package/dist/api/queries/nvr-analytics-server.d.ts +36 -36
  16. package/dist/api/queries/nvr-exporter.d.ts +18 -18
  17. package/dist/api/queries/nvr-recorder.d.ts +398 -398
  18. package/dist/api/rest/agreement.d.ts +5 -5
  19. package/dist/api/rest/automation.d.ts +46 -46
  20. package/dist/api/rest/bookmarks.d.ts +12 -12
  21. package/dist/api/rest/custom-field.d.ts +5 -5
  22. package/dist/api/rest/device.d.ts +6 -6
  23. package/dist/api/rest/io-device.d.ts +14 -14
  24. package/dist/api/rest/layout.d.ts +16 -16
  25. package/dist/api/rest/macros.d.ts +13 -13
  26. package/dist/api/rest/media.d.ts +16 -16
  27. package/dist/api/rest/person.d.ts +12 -12
  28. package/dist/api/rest/query.d.ts +2 -2
  29. package/dist/api/rest/schedule.d.ts +24 -24
  30. package/dist/api/rest/security-level.d.ts +10 -10
  31. package/dist/api/rest/template.d.ts +4 -4
  32. package/dist/api/rest/token-conversion.d.ts +5 -5
  33. package/dist/api/rest/user.d.ts +17 -17
  34. package/dist/api/rest/view.d.ts +44 -44
  35. package/dist/api/ws/device-communication.d.ts +6 -6
  36. package/dist/api/ws/notifications.d.ts +4 -4
  37. package/dist/api/ws/progress.d.ts +15 -15
  38. package/dist/api/ws/web-rtc-signaling.d.ts +2 -2
  39. package/dist/objects/access-rule.d.ts +2 -2
  40. package/dist/objects/agent-metadata.d.ts +16 -16
  41. package/dist/objects/agreement.d.ts +2 -2
  42. package/dist/objects/api-key.d.ts +2 -2
  43. package/dist/objects/automation-rule.d.ts +34 -34
  44. package/dist/objects/bookmark.d.ts +8 -8
  45. package/dist/objects/credential.d.ts +2 -2
  46. package/dist/objects/custom-field.d.ts +2 -2
  47. package/dist/objects/device/any-device.d.ts +205 -205
  48. package/dist/objects/device/camera.d.ts +26 -26
  49. package/dist/objects/device/device-import.d.ts +277 -277
  50. package/dist/objects/device/door.d.ts +2 -2
  51. package/dist/objects/device/intercom-terminal.d.ts +2 -2
  52. package/dist/objects/layout.d.ts +16 -16
  53. package/dist/objects/macro.d.ts +14 -14
  54. package/dist/objects/notification.d.ts +4 -4
  55. package/dist/objects/person-presence.d.ts +12 -12
  56. package/dist/objects/person.d.ts +14 -14
  57. package/dist/objects/role.d.ts +2 -2
  58. package/dist/objects/schedule.d.ts +36 -36
  59. package/dist/objects/security-level.d.ts +6 -6
  60. package/dist/objects/template.d.ts +2 -2
  61. package/dist/objects/token-conversion.d.ts +2 -2
  62. package/dist/objects/user.d.ts +4 -4
  63. package/dist/objects/view.d.ts +58 -58
  64. package/dist/objects/zone.d.ts +2 -2
  65. package/dist/package.json +1 -1
  66. package/dist/primitives.d.ts +60 -60
  67. package/package.json +1 -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: "stream" | "cameraStreamNo" | "cameraStream";
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>;