@awarevue/api-types 2.0.22 → 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.
Files changed (377) hide show
  1. package/dist/_legacy/index.d.ts +2 -0
  2. package/dist/_legacy/index.js +2 -0
  3. package/dist/_legacy/milestone.js +1 -0
  4. package/dist/_legacy/orchid.js +1 -0
  5. package/dist/alarm-automation.d.ts +3 -3
  6. package/dist/alarm-automation.js +26 -37
  7. package/dist/api/agent-protocol/index.d.ts +1 -0
  8. package/dist/api/agent-protocol/index.js +1 -0
  9. package/dist/{agent-communication → api/agent-protocol}/protocol.d.ts +407 -598
  10. package/dist/api/agent-protocol/protocol.js +382 -0
  11. package/dist/api/commands/alarm.js +59 -0
  12. package/dist/{commands → api/commands}/all.d.ts +83 -83
  13. package/dist/{commands → api/commands}/all.js +22 -25
  14. package/dist/api/commands/camera-lift.js +14 -0
  15. package/dist/api/commands/camera.js +93 -0
  16. package/dist/api/commands/display.js +34 -0
  17. package/dist/api/commands/door.js +24 -0
  18. package/dist/api/commands/index.js +12 -0
  19. package/dist/api/commands/intercom-terminal.js +2 -0
  20. package/dist/api/commands/io-board.js +12 -0
  21. package/dist/api/commands/nvr-exporter.js +23 -0
  22. package/dist/api/commands/pbx.js +14 -0
  23. package/dist/api/commands/presence-tracker.js +30 -0
  24. package/dist/api/commands/server.js +24 -0
  25. package/dist/api/error.js +181 -0
  26. package/dist/api/events/alarm.js +52 -0
  27. package/dist/{events → api/events}/all.d.ts +8 -8
  28. package/dist/api/events/all.js +124 -0
  29. package/dist/api/events/camera.js +84 -0
  30. package/dist/api/events/display.js +6 -0
  31. package/dist/api/events/door.js +59 -0
  32. package/dist/api/events/index.js +12 -0
  33. package/dist/api/events/intercom-terminal.js +16 -0
  34. package/dist/api/events/io-board.js +10 -0
  35. package/dist/api/events/nvr-exporter.js +18 -0
  36. package/dist/api/events/panic-button.js +8 -0
  37. package/dist/api/events/presence-tracker.js +30 -0
  38. package/dist/api/events/reader.js +10 -0
  39. package/dist/{events → api/events}/server.d.ts +5 -5
  40. package/dist/api/events/server.js +12 -0
  41. package/dist/api/index.d.ts +9 -4
  42. package/dist/api/index.js +9 -20
  43. package/dist/api/mqtt/index.d.ts +1 -0
  44. package/dist/api/mqtt/index.js +1 -0
  45. package/dist/api/mqtt/payloads.js +18 -0
  46. package/dist/api/queries/all.js +25 -0
  47. package/dist/api/queries/camera.js +24 -0
  48. package/dist/api/queries/index.js +5 -0
  49. package/dist/api/queries/nvr-analytics-server.js +73 -0
  50. package/dist/api/queries/nvr-exporter.js +33 -0
  51. package/dist/api/queries/nvr-recorder.js +39 -0
  52. package/dist/api/rest/access-rule.d.ts +117 -0
  53. package/dist/api/rest/access-rule.js +10 -0
  54. package/dist/{access-control → api/rest}/agreement.d.ts +0 -20
  55. package/dist/api/rest/agreement.js +7 -0
  56. package/dist/api/rest/alarm.js +1 -0
  57. package/dist/{api-keys.d.ts → api/rest/api-keys.d.ts} +0 -20
  58. package/dist/api/rest/api-keys.js +11 -0
  59. package/dist/api/rest/app.js +9 -0
  60. package/dist/api/rest/auth.js +16 -0
  61. package/dist/{automation.d.ts → api/rest/automation.d.ts} +0 -217
  62. package/dist/api/rest/automation.js +14 -0
  63. package/dist/api/rest/aware-config.js +1 -0
  64. package/dist/{bookmarks.d.ts → api/rest/bookmarks.d.ts} +0 -49
  65. package/dist/api/rest/bookmarks.js +18 -0
  66. package/dist/api/rest/cast.js +7 -0
  67. package/dist/{custom-field.d.ts → api/rest/custom-field.d.ts} +1 -19
  68. package/dist/api/rest/custom-field.js +3 -0
  69. package/dist/{device-event.d.ts → api/rest/device-event.d.ts} +1 -1
  70. package/dist/api/rest/device-event.js +1 -0
  71. package/dist/{device-group.d.ts → api/rest/device-group.d.ts} +0 -23
  72. package/dist/api/rest/device-group.js +17 -0
  73. package/dist/api/rest/file.js +1 -0
  74. package/dist/api/rest/index.d.ts +34 -0
  75. package/dist/api/rest/index.js +34 -0
  76. package/dist/{device-factory.d.ts → api/rest/io-device.d.ts} +1 -1
  77. package/dist/api/rest/io-device.js +19 -0
  78. package/dist/{layout.d.ts → api/rest/layout.d.ts} +6 -107
  79. package/dist/api/rest/layout.js +19 -0
  80. package/dist/{macros.d.ts → api/rest/macros.d.ts} +0 -82
  81. package/dist/api/rest/macros.js +8 -0
  82. package/dist/api/rest/media.js +65 -0
  83. package/dist/api/rest/module-config.d.ts +19 -0
  84. package/dist/api/rest/module-config.js +1 -0
  85. package/dist/api/rest/notifications.d.ts +21 -0
  86. package/dist/api/rest/notifications.js +9 -0
  87. package/dist/api/rest/person-agreement.d.ts +15 -0
  88. package/dist/api/rest/person-agreement.js +6 -0
  89. package/dist/api/rest/person-presence.d.ts +72 -0
  90. package/dist/api/rest/person-presence.js +29 -0
  91. package/dist/{access-control → api/rest}/person-type.d.ts +1 -33
  92. package/dist/api/rest/person-type.js +8 -0
  93. package/dist/api/rest/person.d.ts +128 -0
  94. package/dist/api/rest/person.js +8 -0
  95. package/dist/api/{query.js → rest/query.js} +8 -13
  96. package/dist/api/rest/schedule.d.ts +249 -0
  97. package/dist/api/rest/schedule.js +9 -0
  98. package/dist/{security-level.d.ts → api/rest/security-level.d.ts} +0 -29
  99. package/dist/api/rest/security-level.js +5 -0
  100. package/dist/{template.d.ts → api/rest/template.d.ts} +1 -18
  101. package/dist/api/rest/template.js +12 -0
  102. package/dist/{token-conversion.d.ts → api/rest/token-conversion.d.ts} +0 -22
  103. package/dist/api/rest/token-conversion.js +5 -0
  104. package/dist/{user.d.ts → api/rest/user.d.ts} +10 -60
  105. package/dist/api/rest/user.js +32 -0
  106. package/dist/api/rest/view.d.ts +397 -0
  107. package/dist/api/rest/view.js +16 -0
  108. package/dist/api/rest/webrtc-playback.js +8 -0
  109. package/dist/{access-control → api/rest}/zone.d.ts +0 -29
  110. package/dist/api/rest/zone.js +10 -0
  111. package/dist/api/state/index.d.ts +10 -0
  112. package/dist/api/state/index.js +1 -0
  113. package/dist/api/ws/device-communication.js +55 -0
  114. package/dist/api/ws/index.js +5 -0
  115. package/dist/api/ws/notifications.js +20 -0
  116. package/dist/api/ws/progress.js +44 -0
  117. package/dist/api/ws/web-rtc-signaling.js +92 -0
  118. package/dist/api/ws/web-socket.js +2 -0
  119. package/dist/index.d.ts +1 -36
  120. package/dist/index.js +6 -57
  121. package/dist/{access-control → objects}/access-rule.d.ts +9 -78
  122. package/dist/objects/access-rule.js +36 -0
  123. package/dist/objects/agent-metadata.d.ts +192 -0
  124. package/dist/objects/agent-metadata.js +49 -0
  125. package/dist/objects/agreement.d.ts +21 -0
  126. package/dist/objects/agreement.js +8 -0
  127. package/dist/{objects.d.ts → objects/all.d.ts} +18 -11
  128. package/dist/{objects.js → objects/all.js} +4 -7
  129. package/dist/objects/api-key.d.ts +21 -0
  130. package/dist/objects/api-key.js +8 -0
  131. package/dist/objects/automation-rule.d.ts +218 -0
  132. package/dist/objects/automation-rule.js +51 -0
  133. package/dist/objects/bookmark.d.ts +50 -0
  134. package/dist/objects/bookmark.js +13 -0
  135. package/dist/objects/credential.js +11 -0
  136. package/dist/objects/custom-field.d.ts +20 -0
  137. package/dist/objects/custom-field.js +14 -0
  138. package/dist/{device → objects/device}/alarm.js +3 -6
  139. package/dist/{device → objects/device}/any-device.d.ts +510 -510
  140. package/dist/objects/device/any-device.js +239 -0
  141. package/dist/objects/device/camera-lift.js +4 -0
  142. package/dist/objects/device/camera.js +32 -0
  143. package/dist/objects/device/device-gateway.js +2 -0
  144. package/dist/{device-import.d.ts → objects/device/device-import.d.ts} +44 -44
  145. package/dist/objects/device/device-import.js +30 -0
  146. package/dist/{device-relation.js → objects/device/device-relation.js} +13 -16
  147. package/dist/objects/device/display.js +4 -0
  148. package/dist/objects/device/door.js +9 -0
  149. package/dist/{device → objects/device}/index.d.ts +2 -0
  150. package/dist/objects/device/index.js +22 -0
  151. package/dist/objects/device/intercom-operator.js +1 -0
  152. package/dist/objects/device/intercom-terminal.js +23 -0
  153. package/dist/objects/device/io-board.js +7 -0
  154. package/dist/objects/device/motion-sensor.js +4 -0
  155. package/dist/objects/device/nvr-analytics-server.js +6 -0
  156. package/dist/objects/device/nvr-exporter.js +7 -0
  157. package/dist/objects/device/nvr-recorder.js +6 -0
  158. package/dist/objects/device/panic-button.js +4 -0
  159. package/dist/objects/device/pbx.js +6 -0
  160. package/dist/objects/device/presence-tracker.js +1 -0
  161. package/dist/objects/device/reader.js +1 -0
  162. package/dist/{device → objects/device}/server.d.ts +1 -1
  163. package/dist/objects/device/server.js +1 -0
  164. package/dist/objects/device/system.js +6 -0
  165. package/dist/objects/device-group.d.ts +24 -0
  166. package/dist/objects/device-group.js +9 -0
  167. package/dist/objects/index.d.ts +27 -0
  168. package/dist/objects/index.js +27 -0
  169. package/dist/objects/layout.d.ts +102 -0
  170. package/dist/objects/layout.js +22 -0
  171. package/dist/objects/macro.d.ts +83 -0
  172. package/dist/objects/macro.js +22 -0
  173. package/dist/{module-config.d.ts → objects/module-config.d.ts} +1 -18
  174. package/dist/objects/module-config.js +1 -0
  175. package/dist/{notifications.d.ts → objects/notification.d.ts} +0 -20
  176. package/dist/objects/notification.js +13 -0
  177. package/dist/{access-control → objects}/person-agreement.d.ts +1 -15
  178. package/dist/objects/person-agreement.js +8 -0
  179. package/dist/{access-control → objects}/person-presence.d.ts +2 -73
  180. package/dist/objects/person-presence.js +35 -0
  181. package/dist/objects/person-type.d.ts +33 -0
  182. package/dist/objects/person-type.js +16 -0
  183. package/dist/{access-control → objects}/person.d.ts +74 -140
  184. package/dist/objects/person.js +42 -0
  185. package/dist/objects/role.d.ts +21 -0
  186. package/dist/objects/role.js +15 -0
  187. package/dist/{access-control → objects}/schedule.d.ts +4 -129
  188. package/dist/objects/schedule.js +53 -0
  189. package/dist/objects/security-level.d.ts +30 -0
  190. package/dist/objects/security-level.js +11 -0
  191. package/dist/objects/template.d.ts +20 -0
  192. package/dist/objects/template.js +8 -0
  193. package/dist/objects/token-conversion.d.ts +23 -0
  194. package/dist/objects/token-conversion.js +8 -0
  195. package/dist/objects/user.d.ts +31 -0
  196. package/dist/objects/user.js +12 -0
  197. package/dist/{view.d.ts → objects/view.d.ts} +3 -399
  198. package/dist/objects/view.js +64 -0
  199. package/dist/{world-objects.js → objects/world-object.js} +5 -8
  200. package/dist/objects/zone.d.ts +41 -0
  201. package/dist/objects/zone.js +15 -0
  202. package/dist/package.json +1 -1
  203. package/dist/permissions.js +146 -149
  204. package/dist/primitives.d.ts +30 -30
  205. package/dist/primitives.js +27 -30
  206. package/package.json +1 -1
  207. package/dist/access-control/access-rule.js +0 -49
  208. package/dist/access-control/agreement.js +0 -20
  209. package/dist/access-control/credential.js +0 -17
  210. package/dist/access-control/index.d.ts +0 -9
  211. package/dist/access-control/index.js +0 -25
  212. package/dist/access-control/person-agreement.js +0 -19
  213. package/dist/access-control/person-presence.js +0 -66
  214. package/dist/access-control/person-type.js +0 -29
  215. package/dist/access-control/person.js +0 -53
  216. package/dist/access-control/schedule.js +0 -65
  217. package/dist/access-control/zone.js +0 -28
  218. package/dist/agent-communication/index.d.ts +0 -2
  219. package/dist/agent-communication/index.js +0 -18
  220. package/dist/agent-communication/mqtt-payloads.js +0 -21
  221. package/dist/agent-communication/protocol.js +0 -436
  222. package/dist/api/alarm.js +0 -2
  223. package/dist/api/auth.js +0 -19
  224. package/dist/api/media.js +0 -68
  225. package/dist/api-keys.js +0 -21
  226. package/dist/app.js +0 -12
  227. package/dist/automation.js +0 -66
  228. package/dist/aware-config.js +0 -2
  229. package/dist/bookmarks.js +0 -32
  230. package/dist/cast.js +0 -13
  231. package/dist/commands/alarm.js +0 -62
  232. package/dist/commands/camera-lift.js +0 -17
  233. package/dist/commands/camera.js +0 -97
  234. package/dist/commands/display.js +0 -37
  235. package/dist/commands/door.js +0 -27
  236. package/dist/commands/index.js +0 -28
  237. package/dist/commands/intercom-terminal.js +0 -3
  238. package/dist/commands/io-board.js +0 -15
  239. package/dist/commands/nvr-exporter.js +0 -26
  240. package/dist/commands/pbx.js +0 -17
  241. package/dist/commands/presence-tracker.js +0 -33
  242. package/dist/commands/server.js +0 -27
  243. package/dist/custom-field.js +0 -19
  244. package/dist/device/any-device.js +0 -242
  245. package/dist/device/camera-lift.js +0 -7
  246. package/dist/device/camera.js +0 -35
  247. package/dist/device/device-gateway.js +0 -5
  248. package/dist/device/display.js +0 -7
  249. package/dist/device/door.js +0 -12
  250. package/dist/device/index.js +0 -36
  251. package/dist/device/intercom-operator.js +0 -4
  252. package/dist/device/intercom-terminal.js +0 -26
  253. package/dist/device/io-board.js +0 -10
  254. package/dist/device/motion-sensor.js +0 -7
  255. package/dist/device/nvr-analytics-server.js +0 -9
  256. package/dist/device/nvr-exporter.js +0 -10
  257. package/dist/device/nvr-recorder.js +0 -9
  258. package/dist/device/panic-button.js +0 -7
  259. package/dist/device/pbx.js +0 -9
  260. package/dist/device/presence-tracker.js +0 -4
  261. package/dist/device/reader.js +0 -4
  262. package/dist/device/server.js +0 -4
  263. package/dist/device/system.js +0 -9
  264. package/dist/device-event.js +0 -2
  265. package/dist/device-factory.js +0 -26
  266. package/dist/device-group.js +0 -31
  267. package/dist/device-import.js +0 -33
  268. package/dist/device-state.d.ts +0 -10
  269. package/dist/device-state.js +0 -2
  270. package/dist/error.js +0 -185
  271. package/dist/events/alarm.js +0 -55
  272. package/dist/events/all.js +0 -128
  273. package/dist/events/camera.js +0 -87
  274. package/dist/events/display.js +0 -9
  275. package/dist/events/door.js +0 -62
  276. package/dist/events/index.js +0 -28
  277. package/dist/events/intercom-terminal.js +0 -19
  278. package/dist/events/io-board.js +0 -13
  279. package/dist/events/nvr-exporter.js +0 -21
  280. package/dist/events/panic-button.js +0 -11
  281. package/dist/events/presence-tracker.js +0 -33
  282. package/dist/events/reader.js +0 -13
  283. package/dist/events/server.js +0 -15
  284. package/dist/file.js +0 -2
  285. package/dist/layout.js +0 -45
  286. package/dist/macros.js +0 -32
  287. package/dist/messages/device-communication.js +0 -63
  288. package/dist/messages/index.js +0 -21
  289. package/dist/messages/notifications.js +0 -27
  290. package/dist/messages/progress.js +0 -51
  291. package/dist/messages/web-rtc-signaling.js +0 -99
  292. package/dist/messages/web-socket.js +0 -5
  293. package/dist/milestone.js +0 -2
  294. package/dist/module-config.js +0 -2
  295. package/dist/notifications.js +0 -23
  296. package/dist/orchid.js +0 -2
  297. package/dist/queries/all.js +0 -28
  298. package/dist/queries/camera.js +0 -27
  299. package/dist/queries/index.js +0 -21
  300. package/dist/queries/nvr-analytics-server.js +0 -76
  301. package/dist/queries/nvr-exporter.js +0 -36
  302. package/dist/queries/nvr-recorder.js +0 -42
  303. package/dist/security-level.js +0 -18
  304. package/dist/template.js +0 -21
  305. package/dist/token-conversion.js +0 -15
  306. package/dist/user.js +0 -57
  307. package/dist/view.js +0 -84
  308. package/dist/webrtc-playback.js +0 -14
  309. package/dist/{milestone.d.ts → _legacy/milestone.d.ts} +0 -0
  310. package/dist/{orchid.d.ts → _legacy/orchid.d.ts} +0 -0
  311. package/dist/{commands → api/commands}/alarm.d.ts +0 -0
  312. package/dist/{commands → api/commands}/camera-lift.d.ts +0 -0
  313. package/dist/{commands → api/commands}/camera.d.ts +0 -0
  314. package/dist/{commands → api/commands}/display.d.ts +0 -0
  315. package/dist/{commands → api/commands}/door.d.ts +0 -0
  316. package/dist/{commands → api/commands}/index.d.ts +0 -0
  317. package/dist/{commands → api/commands}/intercom-terminal.d.ts +0 -0
  318. package/dist/{commands → api/commands}/io-board.d.ts +0 -0
  319. package/dist/{commands → api/commands}/nvr-exporter.d.ts +86 -86
  320. package/dist/{commands → api/commands}/pbx.d.ts +0 -0
  321. package/dist/{commands → api/commands}/presence-tracker.d.ts +0 -0
  322. package/dist/{commands → api/commands}/server.d.ts +78 -78
  323. package/dist/{error.d.ts → api/error.d.ts} +0 -0
  324. package/dist/{events → api/events}/alarm.d.ts +0 -0
  325. package/dist/{events → api/events}/camera.d.ts +0 -0
  326. package/dist/{events → api/events}/display.d.ts +0 -0
  327. package/dist/{events → api/events}/door.d.ts +0 -0
  328. package/dist/{events → api/events}/index.d.ts +0 -0
  329. package/dist/{events → api/events}/intercom-terminal.d.ts +0 -0
  330. package/dist/{events → api/events}/io-board.d.ts +0 -0
  331. package/dist/{events → api/events}/nvr-exporter.d.ts +4 -4
  332. package/dist/{events → api/events}/panic-button.d.ts +0 -0
  333. package/dist/{events → api/events}/presence-tracker.d.ts +8 -8
  334. package/dist/{events → api/events}/reader.d.ts +0 -0
  335. package/dist/{agent-communication/mqtt-payloads.d.ts → api/mqtt/payloads.d.ts} +0 -0
  336. package/dist/{queries → api/queries}/all.d.ts +83 -83
  337. package/dist/{queries → api/queries}/camera.d.ts +0 -0
  338. package/dist/{queries → api/queries}/index.d.ts +0 -0
  339. package/dist/{queries → api/queries}/nvr-analytics-server.d.ts +4 -4
  340. package/dist/{queries → api/queries}/nvr-exporter.d.ts +0 -0
  341. package/dist/{queries → api/queries}/nvr-recorder.d.ts +162 -162
  342. package/dist/api/{alarm.d.ts → rest/alarm.d.ts} +0 -0
  343. package/dist/{app.d.ts → api/rest/app.d.ts} +0 -0
  344. package/dist/api/{auth.d.ts → rest/auth.d.ts} +0 -0
  345. package/dist/{aware-config.d.ts → api/rest/aware-config.d.ts} +0 -0
  346. package/dist/{cast.d.ts → api/rest/cast.d.ts} +0 -0
  347. package/dist/{file.d.ts → api/rest/file.d.ts} +0 -0
  348. package/dist/api/{media.d.ts → rest/media.d.ts} +2 -2
  349. /package/dist/api/{query.d.ts → rest/query.d.ts} +0 -0
  350. /package/dist/{webrtc-playback.d.ts → api/rest/webrtc-playback.d.ts} +0 -0
  351. /package/dist/{messages → api/ws}/device-communication.d.ts +0 -0
  352. /package/dist/{messages → api/ws}/index.d.ts +0 -0
  353. /package/dist/{messages → api/ws}/notifications.d.ts +0 -0
  354. /package/dist/{messages → api/ws}/progress.d.ts +0 -0
  355. /package/dist/{messages → api/ws}/web-rtc-signaling.d.ts +0 -0
  356. /package/dist/{messages → api/ws}/web-socket.d.ts +0 -0
  357. /package/dist/{access-control → objects}/credential.d.ts +0 -0
  358. /package/dist/{device → objects/device}/alarm.d.ts +0 -0
  359. /package/dist/{device → objects/device}/camera-lift.d.ts +0 -0
  360. /package/dist/{device → objects/device}/camera.d.ts +0 -0
  361. /package/dist/{device → objects/device}/device-gateway.d.ts +0 -0
  362. /package/dist/{device-relation.d.ts → objects/device/device-relation.d.ts} +0 -0
  363. /package/dist/{device → objects/device}/display.d.ts +0 -0
  364. /package/dist/{device → objects/device}/door.d.ts +0 -0
  365. /package/dist/{device → objects/device}/intercom-operator.d.ts +0 -0
  366. /package/dist/{device → objects/device}/intercom-terminal.d.ts +0 -0
  367. /package/dist/{device → objects/device}/io-board.d.ts +0 -0
  368. /package/dist/{device → objects/device}/motion-sensor.d.ts +0 -0
  369. /package/dist/{device → objects/device}/nvr-analytics-server.d.ts +0 -0
  370. /package/dist/{device → objects/device}/nvr-exporter.d.ts +0 -0
  371. /package/dist/{device → objects/device}/nvr-recorder.d.ts +0 -0
  372. /package/dist/{device → objects/device}/panic-button.d.ts +0 -0
  373. /package/dist/{device → objects/device}/pbx.d.ts +0 -0
  374. /package/dist/{device → objects/device}/presence-tracker.d.ts +0 -0
  375. /package/dist/{device → objects/device}/reader.d.ts +0 -0
  376. /package/dist/{device → objects/device}/system.d.ts +0 -0
  377. /package/dist/{world-objects.d.ts → objects/world-object.d.ts} +0 -0
@@ -39,52 +39,52 @@ export declare const sNotify: z.ZodObject<{
39
39
  }, "strip", z.ZodTypeAny, {
40
40
  name: string;
41
41
  id: string;
42
- isDefault: boolean;
43
- assignedRef: string | null;
44
42
  createdOn: string;
45
43
  lastModifiedOn: string;
44
+ isDefault: boolean;
45
+ assignedRef: string | null;
46
46
  params?: unknown;
47
47
  }, {
48
48
  name: string;
49
49
  id: string;
50
- isDefault: boolean;
51
- assignedRef: string | null;
52
50
  createdOn: string;
53
51
  lastModifiedOn: string;
52
+ isDefault: boolean;
53
+ assignedRef: string | null;
54
54
  params?: unknown;
55
55
  }>, "many">;
56
56
  }, "strip", z.ZodTypeAny, {
57
57
  name: string;
58
58
  foreignRef: string;
59
- provider: string;
60
- providerMetadata: {} & {
61
- [k: string]: unknown;
62
- };
63
59
  presets: {
64
60
  name: string;
65
61
  id: string;
66
- isDefault: boolean;
67
- assignedRef: string | null;
68
62
  createdOn: string;
69
63
  lastModifiedOn: string;
64
+ isDefault: boolean;
65
+ assignedRef: string | null;
70
66
  params?: unknown;
71
67
  }[];
72
- }, {
73
- name: string;
74
- foreignRef: string;
75
68
  provider: string;
76
69
  providerMetadata: {} & {
77
70
  [k: string]: unknown;
78
71
  };
72
+ }, {
73
+ name: string;
74
+ foreignRef: string;
79
75
  presets: {
80
76
  name: string;
81
77
  id: string;
82
- isDefault: boolean;
83
- assignedRef: string | null;
84
78
  createdOn: string;
85
79
  lastModifiedOn: string;
80
+ isDefault: boolean;
81
+ assignedRef: string | null;
86
82
  params?: unknown;
87
83
  }[];
84
+ provider: string;
85
+ providerMetadata: {} & {
86
+ [k: string]: unknown;
87
+ };
88
88
  }>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
89
89
  type: z.ZodLiteral<"alarm">;
90
90
  }, "strip", z.ZodTypeAny, {
@@ -334,19 +334,19 @@ export declare const sNotify: z.ZodObject<{
334
334
  source: string | [string, string] | ({
335
335
  name: string;
336
336
  foreignRef: string;
337
- provider: string;
338
- providerMetadata: {} & {
339
- [k: string]: unknown;
340
- };
341
337
  presets: {
342
338
  name: string;
343
339
  id: string;
344
- isDefault: boolean;
345
- assignedRef: string | null;
346
340
  createdOn: string;
347
341
  lastModifiedOn: string;
342
+ isDefault: boolean;
343
+ assignedRef: string | null;
348
344
  params?: unknown;
349
345
  }[];
346
+ provider: string;
347
+ providerMetadata: {} & {
348
+ [k: string]: unknown;
349
+ };
350
350
  } & ({
351
351
  type: "alarm";
352
352
  } | {
@@ -430,19 +430,19 @@ export declare const sNotify: z.ZodObject<{
430
430
  source: string | [string, string] | ({
431
431
  name: string;
432
432
  foreignRef: string;
433
- provider: string;
434
- providerMetadata: {} & {
435
- [k: string]: unknown;
436
- };
437
433
  presets: {
438
434
  name: string;
439
435
  id: string;
440
- isDefault: boolean;
441
- assignedRef: string | null;
442
436
  createdOn: string;
443
437
  lastModifiedOn: string;
438
+ isDefault: boolean;
439
+ assignedRef: string | null;
444
440
  params?: unknown;
445
441
  }[];
442
+ provider: string;
443
+ providerMetadata: {} & {
444
+ [k: string]: unknown;
445
+ };
446
446
  } & ({
447
447
  type: "alarm";
448
448
  } | {
@@ -528,19 +528,19 @@ export declare const sNotify: z.ZodObject<{
528
528
  source: string | [string, string] | ({
529
529
  name: string;
530
530
  foreignRef: string;
531
- provider: string;
532
- providerMetadata: {} & {
533
- [k: string]: unknown;
534
- };
535
531
  presets: {
536
532
  name: string;
537
533
  id: string;
538
- isDefault: boolean;
539
- assignedRef: string | null;
540
534
  createdOn: string;
541
535
  lastModifiedOn: string;
536
+ isDefault: boolean;
537
+ assignedRef: string | null;
542
538
  params?: unknown;
543
539
  }[];
540
+ provider: string;
541
+ providerMetadata: {} & {
542
+ [k: string]: unknown;
543
+ };
544
544
  } & ({
545
545
  type: "alarm";
546
546
  } | {
@@ -627,19 +627,19 @@ export declare const sNotify: z.ZodObject<{
627
627
  source: string | [string, string] | ({
628
628
  name: string;
629
629
  foreignRef: string;
630
- provider: string;
631
- providerMetadata: {} & {
632
- [k: string]: unknown;
633
- };
634
630
  presets: {
635
631
  name: string;
636
632
  id: string;
637
- isDefault: boolean;
638
- assignedRef: string | null;
639
633
  createdOn: string;
640
634
  lastModifiedOn: string;
635
+ isDefault: boolean;
636
+ assignedRef: string | null;
641
637
  params?: unknown;
642
638
  }[];
639
+ provider: string;
640
+ providerMetadata: {} & {
641
+ [k: string]: unknown;
642
+ };
643
643
  } & ({
644
644
  type: "alarm";
645
645
  } | {
@@ -764,52 +764,52 @@ export declare const serverCommands: {
764
764
  }, "strip", z.ZodTypeAny, {
765
765
  name: string;
766
766
  id: string;
767
- isDefault: boolean;
768
- assignedRef: string | null;
769
767
  createdOn: string;
770
768
  lastModifiedOn: string;
769
+ isDefault: boolean;
770
+ assignedRef: string | null;
771
771
  params?: unknown;
772
772
  }, {
773
773
  name: string;
774
774
  id: string;
775
- isDefault: boolean;
776
- assignedRef: string | null;
777
775
  createdOn: string;
778
776
  lastModifiedOn: string;
777
+ isDefault: boolean;
778
+ assignedRef: string | null;
779
779
  params?: unknown;
780
780
  }>, "many">;
781
781
  }, "strip", z.ZodTypeAny, {
782
782
  name: string;
783
783
  foreignRef: string;
784
- provider: string;
785
- providerMetadata: {} & {
786
- [k: string]: unknown;
787
- };
788
784
  presets: {
789
785
  name: string;
790
786
  id: string;
791
- isDefault: boolean;
792
- assignedRef: string | null;
793
787
  createdOn: string;
794
788
  lastModifiedOn: string;
789
+ isDefault: boolean;
790
+ assignedRef: string | null;
795
791
  params?: unknown;
796
792
  }[];
797
- }, {
798
- name: string;
799
- foreignRef: string;
800
793
  provider: string;
801
794
  providerMetadata: {} & {
802
795
  [k: string]: unknown;
803
796
  };
797
+ }, {
798
+ name: string;
799
+ foreignRef: string;
804
800
  presets: {
805
801
  name: string;
806
802
  id: string;
807
- isDefault: boolean;
808
- assignedRef: string | null;
809
803
  createdOn: string;
810
804
  lastModifiedOn: string;
805
+ isDefault: boolean;
806
+ assignedRef: string | null;
811
807
  params?: unknown;
812
808
  }[];
809
+ provider: string;
810
+ providerMetadata: {} & {
811
+ [k: string]: unknown;
812
+ };
813
813
  }>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
814
814
  type: z.ZodLiteral<"alarm">;
815
815
  }, "strip", z.ZodTypeAny, {
@@ -1059,19 +1059,19 @@ export declare const serverCommands: {
1059
1059
  source: string | [string, string] | ({
1060
1060
  name: string;
1061
1061
  foreignRef: string;
1062
- provider: string;
1063
- providerMetadata: {} & {
1064
- [k: string]: unknown;
1065
- };
1066
1062
  presets: {
1067
1063
  name: string;
1068
1064
  id: string;
1069
- isDefault: boolean;
1070
- assignedRef: string | null;
1071
1065
  createdOn: string;
1072
1066
  lastModifiedOn: string;
1067
+ isDefault: boolean;
1068
+ assignedRef: string | null;
1073
1069
  params?: unknown;
1074
1070
  }[];
1071
+ provider: string;
1072
+ providerMetadata: {} & {
1073
+ [k: string]: unknown;
1074
+ };
1075
1075
  } & ({
1076
1076
  type: "alarm";
1077
1077
  } | {
@@ -1155,19 +1155,19 @@ export declare const serverCommands: {
1155
1155
  source: string | [string, string] | ({
1156
1156
  name: string;
1157
1157
  foreignRef: string;
1158
- provider: string;
1159
- providerMetadata: {} & {
1160
- [k: string]: unknown;
1161
- };
1162
1158
  presets: {
1163
1159
  name: string;
1164
1160
  id: string;
1165
- isDefault: boolean;
1166
- assignedRef: string | null;
1167
1161
  createdOn: string;
1168
1162
  lastModifiedOn: string;
1163
+ isDefault: boolean;
1164
+ assignedRef: string | null;
1169
1165
  params?: unknown;
1170
1166
  }[];
1167
+ provider: string;
1168
+ providerMetadata: {} & {
1169
+ [k: string]: unknown;
1170
+ };
1171
1171
  } & ({
1172
1172
  type: "alarm";
1173
1173
  } | {
@@ -1253,19 +1253,19 @@ export declare const serverCommands: {
1253
1253
  source: string | [string, string] | ({
1254
1254
  name: string;
1255
1255
  foreignRef: string;
1256
- provider: string;
1257
- providerMetadata: {} & {
1258
- [k: string]: unknown;
1259
- };
1260
1256
  presets: {
1261
1257
  name: string;
1262
1258
  id: string;
1263
- isDefault: boolean;
1264
- assignedRef: string | null;
1265
1259
  createdOn: string;
1266
1260
  lastModifiedOn: string;
1261
+ isDefault: boolean;
1262
+ assignedRef: string | null;
1267
1263
  params?: unknown;
1268
1264
  }[];
1265
+ provider: string;
1266
+ providerMetadata: {} & {
1267
+ [k: string]: unknown;
1268
+ };
1269
1269
  } & ({
1270
1270
  type: "alarm";
1271
1271
  } | {
@@ -1352,19 +1352,19 @@ export declare const serverCommands: {
1352
1352
  source: string | [string, string] | ({
1353
1353
  name: string;
1354
1354
  foreignRef: string;
1355
- provider: string;
1356
- providerMetadata: {} & {
1357
- [k: string]: unknown;
1358
- };
1359
1355
  presets: {
1360
1356
  name: string;
1361
1357
  id: string;
1362
- isDefault: boolean;
1363
- assignedRef: string | null;
1364
1358
  createdOn: string;
1365
1359
  lastModifiedOn: string;
1360
+ isDefault: boolean;
1361
+ assignedRef: string | null;
1366
1362
  params?: unknown;
1367
1363
  }[];
1364
+ provider: string;
1365
+ providerMetadata: {} & {
1366
+ [k: string]: unknown;
1367
+ };
1368
1368
  } & ({
1369
1369
  type: "alarm";
1370
1370
  } | {
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -5,12 +5,12 @@ export declare const sExportStarted: z.ZodObject<{
5
5
  requestId: z.ZodString;
6
6
  }, "strip", z.ZodTypeAny, {
7
7
  kind: "nvr-export-started";
8
- requestId: string;
9
8
  exportId: string;
9
+ requestId: string;
10
10
  }, {
11
11
  kind: "nvr-export-started";
12
- requestId: string;
13
12
  exportId: string;
13
+ requestId: string;
14
14
  }>;
15
15
  export type ExportStarted = z.infer<typeof sExportStarted>;
16
16
  export declare const sExportDeleted: z.ZodObject<{
@@ -32,12 +32,12 @@ export declare const nvrExporterEventSchemasByKind: {
32
32
  requestId: z.ZodString;
33
33
  }, "strip", z.ZodTypeAny, {
34
34
  kind: "nvr-export-started";
35
- requestId: string;
36
35
  exportId: string;
36
+ requestId: string;
37
37
  }, {
38
38
  kind: "nvr-export-started";
39
- requestId: string;
40
39
  exportId: string;
40
+ requestId: string;
41
41
  }>;
42
42
  readonly 'nvr-export-deleted': z.ZodObject<{
43
43
  kind: z.ZodLiteral<"nvr-export-deleted">;
File without changes
@@ -13,22 +13,22 @@ export declare const sPersonIn: z.ZodObject<{
13
13
  kind: "person-in";
14
14
  personId: string;
15
15
  securityChecked: boolean;
16
- zoneId: string | null;
17
16
  personType: string;
18
17
  personFirstName: string;
19
18
  personLastName: string;
20
19
  personAvatarId: string | null;
21
20
  personPosition: string | null;
21
+ zoneId: string | null;
22
22
  }, {
23
23
  kind: "person-in";
24
24
  personId: string;
25
25
  securityChecked: boolean;
26
- zoneId: string | null;
27
26
  personType: string;
28
27
  personFirstName: string;
29
28
  personLastName: string;
30
29
  personAvatarId: string | null;
31
30
  personPosition: string | null;
31
+ zoneId: string | null;
32
32
  }>;
33
33
  export declare const sPersonOut: z.ZodObject<{
34
34
  kind: z.ZodLiteral<"person-out">;
@@ -46,23 +46,23 @@ export declare const sPersonOut: z.ZodObject<{
46
46
  personId: string;
47
47
  securityChecked: boolean;
48
48
  isLeave: boolean;
49
- zoneId: string | null;
50
49
  personType: string;
51
50
  personFirstName: string;
52
51
  personLastName: string;
53
52
  personAvatarId: string | null;
54
53
  personPosition: string | null;
54
+ zoneId: string | null;
55
55
  }, {
56
56
  kind: "person-out";
57
57
  personId: string;
58
58
  securityChecked: boolean;
59
59
  isLeave: boolean;
60
- zoneId: string | null;
61
60
  personType: string;
62
61
  personFirstName: string;
63
62
  personLastName: string;
64
63
  personAvatarId: string | null;
65
64
  personPosition: string | null;
65
+ zoneId: string | null;
66
66
  }>;
67
67
  export declare const presenceTrackerEventSchemaByKind: {
68
68
  readonly 'person-in': z.ZodObject<{
@@ -79,22 +79,22 @@ export declare const presenceTrackerEventSchemaByKind: {
79
79
  kind: "person-in";
80
80
  personId: string;
81
81
  securityChecked: boolean;
82
- zoneId: string | null;
83
82
  personType: string;
84
83
  personFirstName: string;
85
84
  personLastName: string;
86
85
  personAvatarId: string | null;
87
86
  personPosition: string | null;
87
+ zoneId: string | null;
88
88
  }, {
89
89
  kind: "person-in";
90
90
  personId: string;
91
91
  securityChecked: boolean;
92
- zoneId: string | null;
93
92
  personType: string;
94
93
  personFirstName: string;
95
94
  personLastName: string;
96
95
  personAvatarId: string | null;
97
96
  personPosition: string | null;
97
+ zoneId: string | null;
98
98
  }>;
99
99
  readonly 'person-out': z.ZodObject<{
100
100
  kind: z.ZodLiteral<"person-out">;
@@ -112,23 +112,23 @@ export declare const presenceTrackerEventSchemaByKind: {
112
112
  personId: string;
113
113
  securityChecked: boolean;
114
114
  isLeave: boolean;
115
- zoneId: string | null;
116
115
  personType: string;
117
116
  personFirstName: string;
118
117
  personLastName: string;
119
118
  personAvatarId: string | null;
120
119
  personPosition: string | null;
120
+ zoneId: string | null;
121
121
  }, {
122
122
  kind: "person-out";
123
123
  personId: string;
124
124
  securityChecked: boolean;
125
125
  isLeave: boolean;
126
- zoneId: string | null;
127
126
  personType: string;
128
127
  personFirstName: string;
129
128
  personLastName: string;
130
129
  personAvatarId: string | null;
131
130
  personPosition: string | null;
131
+ zoneId: string | null;
132
132
  }>;
133
133
  };
134
134
  export type PersonIn = z.infer<typeof sPersonIn>;
File without changes