@awarevue/api-types 1.0.1

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 (132) hide show
  1. package/dist/access-control/access-rule.d.ts +243 -0
  2. package/dist/access-control/access-rule.js +49 -0
  3. package/dist/access-control/credential.d.ts +14 -0
  4. package/dist/access-control/credential.js +12 -0
  5. package/dist/access-control/index.d.ts +7 -0
  6. package/dist/access-control/index.js +23 -0
  7. package/dist/access-control/person-presence.d.ts +249 -0
  8. package/dist/access-control/person-presence.js +61 -0
  9. package/dist/access-control/person.d.ts +209 -0
  10. package/dist/access-control/person.js +49 -0
  11. package/dist/access-control/schedule.d.ts +500 -0
  12. package/dist/access-control/schedule.js +65 -0
  13. package/dist/access-control/sync.d.ts +3 -0
  14. package/dist/access-control/sync.js +2 -0
  15. package/dist/access-control/zone.d.ts +65 -0
  16. package/dist/access-control/zone.js +28 -0
  17. package/dist/agent-communication/index.d.ts +1 -0
  18. package/dist/agent-communication/index.js +17 -0
  19. package/dist/agent-communication/protocol.d.ts +1692 -0
  20. package/dist/agent-communication/protocol.js +341 -0
  21. package/dist/api/alarm.d.ts +23 -0
  22. package/dist/api/alarm.js +2 -0
  23. package/dist/api/auth.d.ts +31 -0
  24. package/dist/api/auth.js +19 -0
  25. package/dist/api/index.d.ts +4 -0
  26. package/dist/api/index.js +20 -0
  27. package/dist/api/media.d.ts +187 -0
  28. package/dist/api/media.js +59 -0
  29. package/dist/api/query.d.ts +33 -0
  30. package/dist/api/query.js +41 -0
  31. package/dist/app.d.ts +12 -0
  32. package/dist/app.js +8 -0
  33. package/dist/automation.d.ts +334 -0
  34. package/dist/automation.js +49 -0
  35. package/dist/aware-config.d.ts +3 -0
  36. package/dist/aware-config.js +2 -0
  37. package/dist/custom-field.d.ts +52 -0
  38. package/dist/custom-field.js +19 -0
  39. package/dist/device/alarm.d.ts +265 -0
  40. package/dist/device/alarm.js +66 -0
  41. package/dist/device/any-device.d.ts +2376 -0
  42. package/dist/device/any-device.js +185 -0
  43. package/dist/device/camera-lift.d.ts +17 -0
  44. package/dist/device/camera-lift.js +7 -0
  45. package/dist/device/camera.d.ts +829 -0
  46. package/dist/device/camera.js +120 -0
  47. package/dist/device/device-gateway.d.ts +3 -0
  48. package/dist/device/device-gateway.js +4 -0
  49. package/dist/device/door.d.ts +217 -0
  50. package/dist/device/door.js +57 -0
  51. package/dist/device/index.d.ts +15 -0
  52. package/dist/device/index.js +31 -0
  53. package/dist/device/intercom-operator.d.ts +13 -0
  54. package/dist/device/intercom-operator.js +5 -0
  55. package/dist/device/intercom-terminal.d.ts +244 -0
  56. package/dist/device/intercom-terminal.js +48 -0
  57. package/dist/device/io-board.d.ts +55 -0
  58. package/dist/device/io-board.js +19 -0
  59. package/dist/device/motion-sensor.d.ts +8 -0
  60. package/dist/device/motion-sensor.js +8 -0
  61. package/dist/device/panic-button.d.ts +26 -0
  62. package/dist/device/panic-button.js +14 -0
  63. package/dist/device/pbx.d.ts +20 -0
  64. package/dist/device/pbx.js +11 -0
  65. package/dist/device/presence-tracker.d.ts +127 -0
  66. package/dist/device/presence-tracker.js +27 -0
  67. package/dist/device/reader/commands.d.ts +1 -0
  68. package/dist/device/reader/commands.js +2 -0
  69. package/dist/device/reader/events.d.ts +37 -0
  70. package/dist/device/reader/events.js +13 -0
  71. package/dist/device/reader/index.d.ts +3 -0
  72. package/dist/device/reader/index.js +19 -0
  73. package/dist/device/reader/specs.d.ts +2 -0
  74. package/dist/device/reader/specs.js +4 -0
  75. package/dist/device/server.d.ts +73 -0
  76. package/dist/device/server.js +33 -0
  77. package/dist/device-command.d.ts +23 -0
  78. package/dist/device-command.js +110 -0
  79. package/dist/device-event.d.ts +682 -0
  80. package/dist/device-event.js +87 -0
  81. package/dist/device-factory.d.ts +112 -0
  82. package/dist/device-factory.js +25 -0
  83. package/dist/device-group.d.ts +74 -0
  84. package/dist/device-group.js +31 -0
  85. package/dist/device-import.d.ts +1412 -0
  86. package/dist/device-import.js +33 -0
  87. package/dist/device-relation.d.ts +30 -0
  88. package/dist/device-relation.js +68 -0
  89. package/dist/device-state.d.ts +10 -0
  90. package/dist/device-state.js +2 -0
  91. package/dist/error.d.ts +13 -0
  92. package/dist/error.js +10 -0
  93. package/dist/file.d.ts +3 -0
  94. package/dist/file.js +2 -0
  95. package/dist/index.d.ts +28 -0
  96. package/dist/index.js +44 -0
  97. package/dist/layout.d.ts +188 -0
  98. package/dist/layout.js +40 -0
  99. package/dist/macros.d.ts +160 -0
  100. package/dist/macros.js +26 -0
  101. package/dist/messages/device-communication.d.ts +121 -0
  102. package/dist/messages/device-communication.js +63 -0
  103. package/dist/messages/index.d.ts +5 -0
  104. package/dist/messages/index.js +21 -0
  105. package/dist/messages/progress.d.ts +118 -0
  106. package/dist/messages/progress.js +51 -0
  107. package/dist/messages/provider-api/index.d.ts +1 -0
  108. package/dist/messages/provider-api/index.js +17 -0
  109. package/dist/messages/provider-api/sync-protocol.d.ts +83 -0
  110. package/dist/messages/provider-api/sync-protocol.js +2 -0
  111. package/dist/messages/web-rtc-signaling.d.ts +265 -0
  112. package/dist/messages/web-rtc-signaling.js +82 -0
  113. package/dist/messages/web-socket.d.ts +7 -0
  114. package/dist/messages/web-socket.js +5 -0
  115. package/dist/milestone.d.ts +5 -0
  116. package/dist/milestone.js +2 -0
  117. package/dist/module-config.d.ts +27 -0
  118. package/dist/module-config.js +2 -0
  119. package/dist/orchid.d.ts +19 -0
  120. package/dist/orchid.js +2 -0
  121. package/dist/package.json +40 -0
  122. package/dist/permissions.d.ts +6 -0
  123. package/dist/permissions.js +168 -0
  124. package/dist/template.d.ts +50 -0
  125. package/dist/template.js +21 -0
  126. package/dist/user.d.ts +184 -0
  127. package/dist/user.js +56 -0
  128. package/dist/view.d.ts +775 -0
  129. package/dist/view.js +74 -0
  130. package/dist/webrtc-playback.d.ts +20 -0
  131. package/dist/webrtc-playback.js +14 -0
  132. package/package.json +40 -0
@@ -0,0 +1,2376 @@
1
+ import { z } from 'zod';
2
+ export declare const DEVICE_TYPES: readonly ["alarm", "server", "camera", "door", "reader", "io-board", "camera-lift", "motion-sensor", "panic-button", "intercom-operator", "intercom-terminal", "pbx", "device-gateway", "presence-tracker"];
3
+ declare const sDeviceType: z.ZodEnum<["alarm", "server", "camera", "door", "reader", "io-board", "camera-lift", "motion-sensor", "panic-button", "intercom-operator", "intercom-terminal", "pbx", "device-gateway", "presence-tracker"]>;
4
+ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
5
+ type: z.ZodLiteral<"alarm">;
6
+ }, "strip", z.ZodTypeAny, {
7
+ type: "alarm";
8
+ }, {
9
+ type: "alarm";
10
+ }>, z.ZodObject<{
11
+ lensType: z.ZodEnum<["flat", "fisheye"]>;
12
+ mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
13
+ ptzCapable: z.ZodBoolean;
14
+ ptzPanSpeed: z.ZodNumber;
15
+ ptzTiltSpeed: z.ZodNumber;
16
+ ptzZoomSpeed: z.ZodNumber;
17
+ recordingCapable: z.ZodBoolean;
18
+ webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
19
+ kind: z.ZodString;
20
+ }, "strip", z.ZodTypeAny, {
21
+ kind: string;
22
+ }, {
23
+ kind: string;
24
+ }>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
25
+ streams: z.ZodArray<z.ZodObject<{
26
+ id: z.ZodString;
27
+ displayName: z.ZodString;
28
+ externalPlayerUrl: z.ZodNullable<z.ZodString>;
29
+ }, "strip", z.ZodTypeAny, {
30
+ id: string;
31
+ displayName: string;
32
+ externalPlayerUrl: string | null;
33
+ }, {
34
+ id: string;
35
+ displayName: string;
36
+ externalPlayerUrl: string | null;
37
+ }>, "many">;
38
+ defaultStreamId: z.ZodString;
39
+ } & {
40
+ type: z.ZodLiteral<"camera">;
41
+ }, "strip", z.ZodTypeAny, {
42
+ type: "camera";
43
+ streams: {
44
+ id: string;
45
+ displayName: string;
46
+ externalPlayerUrl: string | null;
47
+ }[];
48
+ lensType: "flat" | "fisheye";
49
+ mountPoint: "wall" | "ceiling" | "floor";
50
+ ptzCapable: boolean;
51
+ ptzPanSpeed: number;
52
+ ptzTiltSpeed: number;
53
+ ptzZoomSpeed: number;
54
+ recordingCapable: boolean;
55
+ webrtcPlaybackSource: ({
56
+ kind: string;
57
+ } & Record<string, unknown>) | null;
58
+ defaultStreamId: string;
59
+ }, {
60
+ type: "camera";
61
+ streams: {
62
+ id: string;
63
+ displayName: string;
64
+ externalPlayerUrl: string | null;
65
+ }[];
66
+ lensType: "flat" | "fisheye";
67
+ mountPoint: "wall" | "ceiling" | "floor";
68
+ ptzCapable: boolean;
69
+ ptzPanSpeed: number;
70
+ ptzTiltSpeed: number;
71
+ ptzZoomSpeed: number;
72
+ recordingCapable: boolean;
73
+ webrtcPlaybackSource: ({
74
+ kind: string;
75
+ } & Record<string, unknown>) | null;
76
+ defaultStreamId: string;
77
+ }>, z.ZodObject<{
78
+ type: z.ZodLiteral<"door">;
79
+ }, "strip", z.ZodTypeAny, {
80
+ type: "door";
81
+ }, {
82
+ type: "door";
83
+ }>, z.ZodObject<{
84
+ inputs: z.ZodArray<z.ZodString, "many">;
85
+ outputs: z.ZodArray<z.ZodString, "many">;
86
+ } & {
87
+ type: z.ZodLiteral<"io-board">;
88
+ }, "strip", z.ZodTypeAny, {
89
+ type: "io-board";
90
+ inputs: string[];
91
+ outputs: string[];
92
+ }, {
93
+ type: "io-board";
94
+ inputs: string[];
95
+ outputs: string[];
96
+ }>, z.ZodObject<{
97
+ type: z.ZodLiteral<"camera-lift">;
98
+ }, "strip", z.ZodTypeAny, {
99
+ type: "camera-lift";
100
+ }, {
101
+ type: "camera-lift";
102
+ }>, z.ZodObject<{
103
+ type: z.ZodLiteral<"motion-sensor">;
104
+ }, "strip", z.ZodTypeAny, {
105
+ type: "motion-sensor";
106
+ }, {
107
+ type: "motion-sensor";
108
+ }>, z.ZodObject<{
109
+ type: z.ZodLiteral<"panic-button">;
110
+ }, "strip", z.ZodTypeAny, {
111
+ type: "panic-button";
112
+ }, {
113
+ type: "panic-button";
114
+ }>, z.ZodObject<{
115
+ sipUri: z.ZodString;
116
+ sipUser: z.ZodString;
117
+ sipPassword: z.ZodString;
118
+ sipRealm: z.ZodString;
119
+ remoteExtension: z.ZodString;
120
+ } & {
121
+ type: z.ZodLiteral<"intercom-terminal">;
122
+ }, "strip", z.ZodTypeAny, {
123
+ type: "intercom-terminal";
124
+ sipUri: string;
125
+ sipUser: string;
126
+ sipPassword: string;
127
+ sipRealm: string;
128
+ remoteExtension: string;
129
+ }, {
130
+ type: "intercom-terminal";
131
+ sipUri: string;
132
+ sipUser: string;
133
+ sipPassword: string;
134
+ sipRealm: string;
135
+ remoteExtension: string;
136
+ }>, z.ZodObject<{
137
+ sipWsUrl: z.ZodString;
138
+ } & {
139
+ type: z.ZodLiteral<"pbx">;
140
+ }, "strip", z.ZodTypeAny, {
141
+ type: "pbx";
142
+ sipWsUrl: string;
143
+ }, {
144
+ type: "pbx";
145
+ sipWsUrl: string;
146
+ }>, z.ZodObject<{
147
+ type: z.ZodLiteral<"server">;
148
+ }, "strip", z.ZodTypeAny, {
149
+ type: "server";
150
+ }, {
151
+ type: "server";
152
+ }>, z.ZodObject<{
153
+ type: z.ZodLiteral<"intercom-operator">;
154
+ }, "strip", z.ZodTypeAny, {
155
+ type: "intercom-operator";
156
+ }, {
157
+ type: "intercom-operator";
158
+ }>, z.ZodObject<{
159
+ type: z.ZodLiteral<"device-gateway">;
160
+ }, "strip", z.ZodTypeAny, {
161
+ type: "device-gateway";
162
+ }, {
163
+ type: "device-gateway";
164
+ }>, z.ZodObject<{
165
+ type: z.ZodLiteral<"presence-tracker">;
166
+ }, "strip", z.ZodTypeAny, {
167
+ type: "presence-tracker";
168
+ }, {
169
+ type: "presence-tracker";
170
+ }>, z.ZodObject<{
171
+ type: z.ZodLiteral<"reader">;
172
+ }, "strip", z.ZodTypeAny, {
173
+ type: "reader";
174
+ }, {
175
+ type: "reader";
176
+ }>]>;
177
+ export declare const sProviderMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
178
+ export declare const sPresetDto: z.ZodObject<{
179
+ id: z.ZodString;
180
+ name: z.ZodString;
181
+ params: z.ZodUnknown;
182
+ isDefault: z.ZodBoolean;
183
+ assignedRef: z.ZodNullable<z.ZodString>;
184
+ createdOn: z.ZodString;
185
+ lastModifiedOn: z.ZodString;
186
+ }, "strip", z.ZodTypeAny, {
187
+ name: string;
188
+ id: string;
189
+ createdOn: string;
190
+ lastModifiedOn: string;
191
+ isDefault: boolean;
192
+ assignedRef: string | null;
193
+ params?: unknown;
194
+ }, {
195
+ name: string;
196
+ id: string;
197
+ createdOn: string;
198
+ lastModifiedOn: string;
199
+ isDefault: boolean;
200
+ assignedRef: string | null;
201
+ params?: unknown;
202
+ }>;
203
+ export declare const sDeviceMgmtInfo: z.ZodObject<{
204
+ id: z.ZodString;
205
+ presets: z.ZodArray<z.ZodObject<{
206
+ id: z.ZodString;
207
+ name: z.ZodString;
208
+ params: z.ZodUnknown;
209
+ isDefault: z.ZodBoolean;
210
+ assignedRef: z.ZodNullable<z.ZodString>;
211
+ createdOn: z.ZodString;
212
+ lastModifiedOn: z.ZodString;
213
+ }, "strip", z.ZodTypeAny, {
214
+ name: string;
215
+ id: string;
216
+ createdOn: string;
217
+ lastModifiedOn: string;
218
+ isDefault: boolean;
219
+ assignedRef: string | null;
220
+ params?: unknown;
221
+ }, {
222
+ name: string;
223
+ id: string;
224
+ createdOn: string;
225
+ lastModifiedOn: string;
226
+ isDefault: boolean;
227
+ assignedRef: string | null;
228
+ params?: unknown;
229
+ }>, "many">;
230
+ notes: z.ZodNullable<z.ZodString>;
231
+ tags: z.ZodArray<z.ZodString, "many">;
232
+ relations: z.ZodArray<z.ZodObject<{
233
+ id: z.ZodString;
234
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
235
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
236
+ id: z.ZodString;
237
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
238
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
239
+ id: z.ZodString;
240
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
241
+ }, z.ZodUnknown, "strip">>, "many">;
242
+ groups: z.ZodArray<z.ZodString, "many">;
243
+ createdOn: z.ZodString;
244
+ lastModifiedOn: z.ZodString;
245
+ }, "strip", z.ZodTypeAny, {
246
+ groups: string[];
247
+ id: string;
248
+ createdOn: string;
249
+ lastModifiedOn: string;
250
+ presets: {
251
+ name: string;
252
+ id: string;
253
+ createdOn: string;
254
+ lastModifiedOn: string;
255
+ isDefault: boolean;
256
+ assignedRef: string | null;
257
+ params?: unknown;
258
+ }[];
259
+ notes: string | null;
260
+ tags: string[];
261
+ relations: z.objectOutputType<{
262
+ id: z.ZodString;
263
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
264
+ }, z.ZodUnknown, "strip">[];
265
+ }, {
266
+ groups: string[];
267
+ id: string;
268
+ createdOn: string;
269
+ lastModifiedOn: string;
270
+ presets: {
271
+ name: string;
272
+ id: string;
273
+ createdOn: string;
274
+ lastModifiedOn: string;
275
+ isDefault: boolean;
276
+ assignedRef: string | null;
277
+ params?: unknown;
278
+ }[];
279
+ notes: string | null;
280
+ tags: string[];
281
+ relations: z.objectInputType<{
282
+ id: z.ZodString;
283
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
284
+ }, z.ZodUnknown, "strip">[];
285
+ }>;
286
+ export declare const sForeignDeviceInfo: z.ZodObject<{
287
+ name: z.ZodString;
288
+ foreignRef: z.ZodString;
289
+ provider: z.ZodString;
290
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
291
+ }, "strip", z.ZodTypeAny, {
292
+ name: string;
293
+ foreignRef: string;
294
+ provider: string;
295
+ providerMetadata: {} & {
296
+ [k: string]: unknown;
297
+ };
298
+ }, {
299
+ name: string;
300
+ foreignRef: string;
301
+ provider: string;
302
+ providerMetadata: {} & {
303
+ [k: string]: unknown;
304
+ };
305
+ }>;
306
+ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
307
+ type: z.ZodLiteral<"alarm">;
308
+ }, "strip", z.ZodTypeAny, {
309
+ type: "alarm";
310
+ }, {
311
+ type: "alarm";
312
+ }>, z.ZodObject<{
313
+ lensType: z.ZodEnum<["flat", "fisheye"]>;
314
+ mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
315
+ ptzCapable: z.ZodBoolean;
316
+ ptzPanSpeed: z.ZodNumber;
317
+ ptzTiltSpeed: z.ZodNumber;
318
+ ptzZoomSpeed: z.ZodNumber;
319
+ recordingCapable: z.ZodBoolean;
320
+ webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
321
+ kind: z.ZodString;
322
+ }, "strip", z.ZodTypeAny, {
323
+ kind: string;
324
+ }, {
325
+ kind: string;
326
+ }>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
327
+ streams: z.ZodArray<z.ZodObject<{
328
+ id: z.ZodString;
329
+ displayName: z.ZodString;
330
+ externalPlayerUrl: z.ZodNullable<z.ZodString>;
331
+ }, "strip", z.ZodTypeAny, {
332
+ id: string;
333
+ displayName: string;
334
+ externalPlayerUrl: string | null;
335
+ }, {
336
+ id: string;
337
+ displayName: string;
338
+ externalPlayerUrl: string | null;
339
+ }>, "many">;
340
+ defaultStreamId: z.ZodString;
341
+ } & {
342
+ type: z.ZodLiteral<"camera">;
343
+ }, "strip", z.ZodTypeAny, {
344
+ type: "camera";
345
+ streams: {
346
+ id: string;
347
+ displayName: string;
348
+ externalPlayerUrl: string | null;
349
+ }[];
350
+ lensType: "flat" | "fisheye";
351
+ mountPoint: "wall" | "ceiling" | "floor";
352
+ ptzCapable: boolean;
353
+ ptzPanSpeed: number;
354
+ ptzTiltSpeed: number;
355
+ ptzZoomSpeed: number;
356
+ recordingCapable: boolean;
357
+ webrtcPlaybackSource: ({
358
+ kind: string;
359
+ } & Record<string, unknown>) | null;
360
+ defaultStreamId: string;
361
+ }, {
362
+ type: "camera";
363
+ streams: {
364
+ id: string;
365
+ displayName: string;
366
+ externalPlayerUrl: string | null;
367
+ }[];
368
+ lensType: "flat" | "fisheye";
369
+ mountPoint: "wall" | "ceiling" | "floor";
370
+ ptzCapable: boolean;
371
+ ptzPanSpeed: number;
372
+ ptzTiltSpeed: number;
373
+ ptzZoomSpeed: number;
374
+ recordingCapable: boolean;
375
+ webrtcPlaybackSource: ({
376
+ kind: string;
377
+ } & Record<string, unknown>) | null;
378
+ defaultStreamId: string;
379
+ }>, z.ZodObject<{
380
+ type: z.ZodLiteral<"door">;
381
+ }, "strip", z.ZodTypeAny, {
382
+ type: "door";
383
+ }, {
384
+ type: "door";
385
+ }>, z.ZodObject<{
386
+ inputs: z.ZodArray<z.ZodString, "many">;
387
+ outputs: z.ZodArray<z.ZodString, "many">;
388
+ } & {
389
+ type: z.ZodLiteral<"io-board">;
390
+ }, "strip", z.ZodTypeAny, {
391
+ type: "io-board";
392
+ inputs: string[];
393
+ outputs: string[];
394
+ }, {
395
+ type: "io-board";
396
+ inputs: string[];
397
+ outputs: string[];
398
+ }>, z.ZodObject<{
399
+ type: z.ZodLiteral<"camera-lift">;
400
+ }, "strip", z.ZodTypeAny, {
401
+ type: "camera-lift";
402
+ }, {
403
+ type: "camera-lift";
404
+ }>, z.ZodObject<{
405
+ type: z.ZodLiteral<"motion-sensor">;
406
+ }, "strip", z.ZodTypeAny, {
407
+ type: "motion-sensor";
408
+ }, {
409
+ type: "motion-sensor";
410
+ }>, z.ZodObject<{
411
+ type: z.ZodLiteral<"panic-button">;
412
+ }, "strip", z.ZodTypeAny, {
413
+ type: "panic-button";
414
+ }, {
415
+ type: "panic-button";
416
+ }>, z.ZodObject<{
417
+ sipUri: z.ZodString;
418
+ sipUser: z.ZodString;
419
+ sipPassword: z.ZodString;
420
+ sipRealm: z.ZodString;
421
+ remoteExtension: z.ZodString;
422
+ } & {
423
+ type: z.ZodLiteral<"intercom-terminal">;
424
+ }, "strip", z.ZodTypeAny, {
425
+ type: "intercom-terminal";
426
+ sipUri: string;
427
+ sipUser: string;
428
+ sipPassword: string;
429
+ sipRealm: string;
430
+ remoteExtension: string;
431
+ }, {
432
+ type: "intercom-terminal";
433
+ sipUri: string;
434
+ sipUser: string;
435
+ sipPassword: string;
436
+ sipRealm: string;
437
+ remoteExtension: string;
438
+ }>, z.ZodObject<{
439
+ sipWsUrl: z.ZodString;
440
+ } & {
441
+ type: z.ZodLiteral<"pbx">;
442
+ }, "strip", z.ZodTypeAny, {
443
+ type: "pbx";
444
+ sipWsUrl: string;
445
+ }, {
446
+ type: "pbx";
447
+ sipWsUrl: string;
448
+ }>, z.ZodObject<{
449
+ type: z.ZodLiteral<"server">;
450
+ }, "strip", z.ZodTypeAny, {
451
+ type: "server";
452
+ }, {
453
+ type: "server";
454
+ }>, z.ZodObject<{
455
+ type: z.ZodLiteral<"intercom-operator">;
456
+ }, "strip", z.ZodTypeAny, {
457
+ type: "intercom-operator";
458
+ }, {
459
+ type: "intercom-operator";
460
+ }>, z.ZodObject<{
461
+ type: z.ZodLiteral<"device-gateway">;
462
+ }, "strip", z.ZodTypeAny, {
463
+ type: "device-gateway";
464
+ }, {
465
+ type: "device-gateway";
466
+ }>, z.ZodObject<{
467
+ type: z.ZodLiteral<"presence-tracker">;
468
+ }, "strip", z.ZodTypeAny, {
469
+ type: "presence-tracker";
470
+ }, {
471
+ type: "presence-tracker";
472
+ }>, z.ZodObject<{
473
+ type: z.ZodLiteral<"reader">;
474
+ }, "strip", z.ZodTypeAny, {
475
+ type: "reader";
476
+ }, {
477
+ type: "reader";
478
+ }>]>, z.ZodObject<{
479
+ id: z.ZodString;
480
+ presets: z.ZodArray<z.ZodObject<{
481
+ id: z.ZodString;
482
+ name: z.ZodString;
483
+ params: z.ZodUnknown;
484
+ isDefault: z.ZodBoolean;
485
+ assignedRef: z.ZodNullable<z.ZodString>;
486
+ createdOn: z.ZodString;
487
+ lastModifiedOn: z.ZodString;
488
+ }, "strip", z.ZodTypeAny, {
489
+ name: string;
490
+ id: string;
491
+ createdOn: string;
492
+ lastModifiedOn: string;
493
+ isDefault: boolean;
494
+ assignedRef: string | null;
495
+ params?: unknown;
496
+ }, {
497
+ name: string;
498
+ id: string;
499
+ createdOn: string;
500
+ lastModifiedOn: string;
501
+ isDefault: boolean;
502
+ assignedRef: string | null;
503
+ params?: unknown;
504
+ }>, "many">;
505
+ notes: z.ZodNullable<z.ZodString>;
506
+ tags: z.ZodArray<z.ZodString, "many">;
507
+ relations: z.ZodArray<z.ZodObject<{
508
+ id: z.ZodString;
509
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
510
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
511
+ id: z.ZodString;
512
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
513
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
514
+ id: z.ZodString;
515
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
516
+ }, z.ZodUnknown, "strip">>, "many">;
517
+ groups: z.ZodArray<z.ZodString, "many">;
518
+ createdOn: z.ZodString;
519
+ lastModifiedOn: z.ZodString;
520
+ }, "strip", z.ZodTypeAny, {
521
+ groups: string[];
522
+ id: string;
523
+ createdOn: string;
524
+ lastModifiedOn: string;
525
+ presets: {
526
+ name: string;
527
+ id: string;
528
+ createdOn: string;
529
+ lastModifiedOn: string;
530
+ isDefault: boolean;
531
+ assignedRef: string | null;
532
+ params?: unknown;
533
+ }[];
534
+ notes: string | null;
535
+ tags: string[];
536
+ relations: z.objectOutputType<{
537
+ id: z.ZodString;
538
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
539
+ }, z.ZodUnknown, "strip">[];
540
+ }, {
541
+ groups: string[];
542
+ id: string;
543
+ createdOn: string;
544
+ lastModifiedOn: string;
545
+ presets: {
546
+ name: string;
547
+ id: string;
548
+ createdOn: string;
549
+ lastModifiedOn: string;
550
+ isDefault: boolean;
551
+ assignedRef: string | null;
552
+ params?: unknown;
553
+ }[];
554
+ notes: string | null;
555
+ tags: string[];
556
+ relations: z.objectInputType<{
557
+ id: z.ZodString;
558
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
559
+ }, z.ZodUnknown, "strip">[];
560
+ }>>, z.ZodObject<{
561
+ name: z.ZodString;
562
+ foreignRef: z.ZodString;
563
+ provider: z.ZodString;
564
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
565
+ }, "strip", z.ZodTypeAny, {
566
+ name: string;
567
+ foreignRef: string;
568
+ provider: string;
569
+ providerMetadata: {} & {
570
+ [k: string]: unknown;
571
+ };
572
+ }, {
573
+ name: string;
574
+ foreignRef: string;
575
+ provider: string;
576
+ providerMetadata: {} & {
577
+ [k: string]: unknown;
578
+ };
579
+ }>>;
580
+ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
581
+ lensType: z.ZodEnum<["flat", "fisheye"]>;
582
+ mountPoint: z.ZodEnum<["wall", "ceiling", "floor"]>;
583
+ ptzCapable: z.ZodBoolean;
584
+ ptzPanSpeed: z.ZodNumber;
585
+ ptzTiltSpeed: z.ZodNumber;
586
+ ptzZoomSpeed: z.ZodNumber;
587
+ recordingCapable: z.ZodBoolean;
588
+ webrtcPlaybackSource: z.ZodNullable<z.ZodIntersection<z.ZodObject<{
589
+ kind: z.ZodString;
590
+ }, "strip", z.ZodTypeAny, {
591
+ kind: string;
592
+ }, {
593
+ kind: string;
594
+ }>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
595
+ streams: z.ZodArray<z.ZodObject<{
596
+ id: z.ZodString;
597
+ displayName: z.ZodString;
598
+ externalPlayerUrl: z.ZodNullable<z.ZodString>;
599
+ }, "strip", z.ZodTypeAny, {
600
+ id: string;
601
+ displayName: string;
602
+ externalPlayerUrl: string | null;
603
+ }, {
604
+ id: string;
605
+ displayName: string;
606
+ externalPlayerUrl: string | null;
607
+ }>, "many">;
608
+ defaultStreamId: z.ZodString;
609
+ } & {
610
+ type: z.ZodLiteral<"camera">;
611
+ }, "strip", z.ZodTypeAny, {
612
+ type: "camera";
613
+ streams: {
614
+ id: string;
615
+ displayName: string;
616
+ externalPlayerUrl: string | null;
617
+ }[];
618
+ lensType: "flat" | "fisheye";
619
+ mountPoint: "wall" | "ceiling" | "floor";
620
+ ptzCapable: boolean;
621
+ ptzPanSpeed: number;
622
+ ptzTiltSpeed: number;
623
+ ptzZoomSpeed: number;
624
+ recordingCapable: boolean;
625
+ webrtcPlaybackSource: ({
626
+ kind: string;
627
+ } & Record<string, unknown>) | null;
628
+ defaultStreamId: string;
629
+ }, {
630
+ type: "camera";
631
+ streams: {
632
+ id: string;
633
+ displayName: string;
634
+ externalPlayerUrl: string | null;
635
+ }[];
636
+ lensType: "flat" | "fisheye";
637
+ mountPoint: "wall" | "ceiling" | "floor";
638
+ ptzCapable: boolean;
639
+ ptzPanSpeed: number;
640
+ ptzTiltSpeed: number;
641
+ ptzZoomSpeed: number;
642
+ recordingCapable: boolean;
643
+ webrtcPlaybackSource: ({
644
+ kind: string;
645
+ } & Record<string, unknown>) | null;
646
+ defaultStreamId: string;
647
+ }>, z.ZodObject<{
648
+ id: z.ZodString;
649
+ presets: z.ZodArray<z.ZodObject<{
650
+ id: z.ZodString;
651
+ name: z.ZodString;
652
+ params: z.ZodUnknown;
653
+ isDefault: z.ZodBoolean;
654
+ assignedRef: z.ZodNullable<z.ZodString>;
655
+ createdOn: z.ZodString;
656
+ lastModifiedOn: z.ZodString;
657
+ }, "strip", z.ZodTypeAny, {
658
+ name: string;
659
+ id: string;
660
+ createdOn: string;
661
+ lastModifiedOn: string;
662
+ isDefault: boolean;
663
+ assignedRef: string | null;
664
+ params?: unknown;
665
+ }, {
666
+ name: string;
667
+ id: string;
668
+ createdOn: string;
669
+ lastModifiedOn: string;
670
+ isDefault: boolean;
671
+ assignedRef: string | null;
672
+ params?: unknown;
673
+ }>, "many">;
674
+ notes: z.ZodNullable<z.ZodString>;
675
+ tags: z.ZodArray<z.ZodString, "many">;
676
+ relations: z.ZodArray<z.ZodObject<{
677
+ id: z.ZodString;
678
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
679
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
680
+ id: z.ZodString;
681
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
682
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
683
+ id: z.ZodString;
684
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
685
+ }, z.ZodUnknown, "strip">>, "many">;
686
+ groups: z.ZodArray<z.ZodString, "many">;
687
+ createdOn: z.ZodString;
688
+ lastModifiedOn: z.ZodString;
689
+ }, "strip", z.ZodTypeAny, {
690
+ groups: string[];
691
+ id: string;
692
+ createdOn: string;
693
+ lastModifiedOn: string;
694
+ presets: {
695
+ name: string;
696
+ id: string;
697
+ createdOn: string;
698
+ lastModifiedOn: string;
699
+ isDefault: boolean;
700
+ assignedRef: string | null;
701
+ params?: unknown;
702
+ }[];
703
+ notes: string | null;
704
+ tags: string[];
705
+ relations: z.objectOutputType<{
706
+ id: z.ZodString;
707
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
708
+ }, z.ZodUnknown, "strip">[];
709
+ }, {
710
+ groups: string[];
711
+ id: string;
712
+ createdOn: string;
713
+ lastModifiedOn: string;
714
+ presets: {
715
+ name: string;
716
+ id: string;
717
+ createdOn: string;
718
+ lastModifiedOn: string;
719
+ isDefault: boolean;
720
+ assignedRef: string | null;
721
+ params?: unknown;
722
+ }[];
723
+ notes: string | null;
724
+ tags: string[];
725
+ relations: z.objectInputType<{
726
+ id: z.ZodString;
727
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
728
+ }, z.ZodUnknown, "strip">[];
729
+ }>>, z.ZodObject<{
730
+ name: z.ZodString;
731
+ foreignRef: z.ZodString;
732
+ provider: z.ZodString;
733
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
734
+ }, "strip", z.ZodTypeAny, {
735
+ name: string;
736
+ foreignRef: string;
737
+ provider: string;
738
+ providerMetadata: {} & {
739
+ [k: string]: unknown;
740
+ };
741
+ }, {
742
+ name: string;
743
+ foreignRef: string;
744
+ provider: string;
745
+ providerMetadata: {} & {
746
+ [k: string]: unknown;
747
+ };
748
+ }>>;
749
+ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
750
+ type: z.ZodLiteral<"door">;
751
+ }, "strip", z.ZodTypeAny, {
752
+ type: "door";
753
+ }, {
754
+ type: "door";
755
+ }>, z.ZodObject<{
756
+ id: z.ZodString;
757
+ presets: z.ZodArray<z.ZodObject<{
758
+ id: z.ZodString;
759
+ name: z.ZodString;
760
+ params: z.ZodUnknown;
761
+ isDefault: z.ZodBoolean;
762
+ assignedRef: z.ZodNullable<z.ZodString>;
763
+ createdOn: z.ZodString;
764
+ lastModifiedOn: z.ZodString;
765
+ }, "strip", z.ZodTypeAny, {
766
+ name: string;
767
+ id: string;
768
+ createdOn: string;
769
+ lastModifiedOn: string;
770
+ isDefault: boolean;
771
+ assignedRef: string | null;
772
+ params?: unknown;
773
+ }, {
774
+ name: string;
775
+ id: string;
776
+ createdOn: string;
777
+ lastModifiedOn: string;
778
+ isDefault: boolean;
779
+ assignedRef: string | null;
780
+ params?: unknown;
781
+ }>, "many">;
782
+ notes: z.ZodNullable<z.ZodString>;
783
+ tags: z.ZodArray<z.ZodString, "many">;
784
+ relations: z.ZodArray<z.ZodObject<{
785
+ id: z.ZodString;
786
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
787
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
788
+ id: z.ZodString;
789
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
790
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
791
+ id: z.ZodString;
792
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
793
+ }, z.ZodUnknown, "strip">>, "many">;
794
+ groups: z.ZodArray<z.ZodString, "many">;
795
+ createdOn: z.ZodString;
796
+ lastModifiedOn: z.ZodString;
797
+ }, "strip", z.ZodTypeAny, {
798
+ groups: string[];
799
+ id: string;
800
+ createdOn: string;
801
+ lastModifiedOn: string;
802
+ presets: {
803
+ name: string;
804
+ id: string;
805
+ createdOn: string;
806
+ lastModifiedOn: string;
807
+ isDefault: boolean;
808
+ assignedRef: string | null;
809
+ params?: unknown;
810
+ }[];
811
+ notes: string | null;
812
+ tags: string[];
813
+ relations: z.objectOutputType<{
814
+ id: z.ZodString;
815
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
816
+ }, z.ZodUnknown, "strip">[];
817
+ }, {
818
+ groups: string[];
819
+ id: string;
820
+ createdOn: string;
821
+ lastModifiedOn: string;
822
+ presets: {
823
+ name: string;
824
+ id: string;
825
+ createdOn: string;
826
+ lastModifiedOn: string;
827
+ isDefault: boolean;
828
+ assignedRef: string | null;
829
+ params?: unknown;
830
+ }[];
831
+ notes: string | null;
832
+ tags: string[];
833
+ relations: z.objectInputType<{
834
+ id: z.ZodString;
835
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
836
+ }, z.ZodUnknown, "strip">[];
837
+ }>>, z.ZodObject<{
838
+ name: z.ZodString;
839
+ foreignRef: z.ZodString;
840
+ provider: z.ZodString;
841
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
842
+ }, "strip", z.ZodTypeAny, {
843
+ name: string;
844
+ foreignRef: string;
845
+ provider: string;
846
+ providerMetadata: {} & {
847
+ [k: string]: unknown;
848
+ };
849
+ }, {
850
+ name: string;
851
+ foreignRef: string;
852
+ provider: string;
853
+ providerMetadata: {} & {
854
+ [k: string]: unknown;
855
+ };
856
+ }>>;
857
+ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
858
+ type: z.ZodLiteral<"reader">;
859
+ }, "strip", z.ZodTypeAny, {
860
+ type: "reader";
861
+ }, {
862
+ type: "reader";
863
+ }>, z.ZodObject<{
864
+ id: z.ZodString;
865
+ presets: z.ZodArray<z.ZodObject<{
866
+ id: z.ZodString;
867
+ name: z.ZodString;
868
+ params: z.ZodUnknown;
869
+ isDefault: z.ZodBoolean;
870
+ assignedRef: z.ZodNullable<z.ZodString>;
871
+ createdOn: z.ZodString;
872
+ lastModifiedOn: z.ZodString;
873
+ }, "strip", z.ZodTypeAny, {
874
+ name: string;
875
+ id: string;
876
+ createdOn: string;
877
+ lastModifiedOn: string;
878
+ isDefault: boolean;
879
+ assignedRef: string | null;
880
+ params?: unknown;
881
+ }, {
882
+ name: string;
883
+ id: string;
884
+ createdOn: string;
885
+ lastModifiedOn: string;
886
+ isDefault: boolean;
887
+ assignedRef: string | null;
888
+ params?: unknown;
889
+ }>, "many">;
890
+ notes: z.ZodNullable<z.ZodString>;
891
+ tags: z.ZodArray<z.ZodString, "many">;
892
+ relations: z.ZodArray<z.ZodObject<{
893
+ id: z.ZodString;
894
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
895
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
896
+ id: z.ZodString;
897
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
898
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
899
+ id: z.ZodString;
900
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
901
+ }, z.ZodUnknown, "strip">>, "many">;
902
+ groups: z.ZodArray<z.ZodString, "many">;
903
+ createdOn: z.ZodString;
904
+ lastModifiedOn: z.ZodString;
905
+ }, "strip", z.ZodTypeAny, {
906
+ groups: string[];
907
+ id: string;
908
+ createdOn: string;
909
+ lastModifiedOn: string;
910
+ presets: {
911
+ name: string;
912
+ id: string;
913
+ createdOn: string;
914
+ lastModifiedOn: string;
915
+ isDefault: boolean;
916
+ assignedRef: string | null;
917
+ params?: unknown;
918
+ }[];
919
+ notes: string | null;
920
+ tags: string[];
921
+ relations: z.objectOutputType<{
922
+ id: z.ZodString;
923
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
924
+ }, z.ZodUnknown, "strip">[];
925
+ }, {
926
+ groups: string[];
927
+ id: string;
928
+ createdOn: string;
929
+ lastModifiedOn: string;
930
+ presets: {
931
+ name: string;
932
+ id: string;
933
+ createdOn: string;
934
+ lastModifiedOn: string;
935
+ isDefault: boolean;
936
+ assignedRef: string | null;
937
+ params?: unknown;
938
+ }[];
939
+ notes: string | null;
940
+ tags: string[];
941
+ relations: z.objectInputType<{
942
+ id: z.ZodString;
943
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
944
+ }, z.ZodUnknown, "strip">[];
945
+ }>>, z.ZodObject<{
946
+ name: z.ZodString;
947
+ foreignRef: z.ZodString;
948
+ provider: z.ZodString;
949
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
950
+ }, "strip", z.ZodTypeAny, {
951
+ name: string;
952
+ foreignRef: string;
953
+ provider: string;
954
+ providerMetadata: {} & {
955
+ [k: string]: unknown;
956
+ };
957
+ }, {
958
+ name: string;
959
+ foreignRef: string;
960
+ provider: string;
961
+ providerMetadata: {} & {
962
+ [k: string]: unknown;
963
+ };
964
+ }>>;
965
+ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
966
+ inputs: z.ZodArray<z.ZodString, "many">;
967
+ outputs: z.ZodArray<z.ZodString, "many">;
968
+ } & {
969
+ type: z.ZodLiteral<"io-board">;
970
+ }, "strip", z.ZodTypeAny, {
971
+ type: "io-board";
972
+ inputs: string[];
973
+ outputs: string[];
974
+ }, {
975
+ type: "io-board";
976
+ inputs: string[];
977
+ outputs: string[];
978
+ }>, z.ZodObject<{
979
+ id: z.ZodString;
980
+ presets: z.ZodArray<z.ZodObject<{
981
+ id: z.ZodString;
982
+ name: z.ZodString;
983
+ params: z.ZodUnknown;
984
+ isDefault: z.ZodBoolean;
985
+ assignedRef: z.ZodNullable<z.ZodString>;
986
+ createdOn: z.ZodString;
987
+ lastModifiedOn: z.ZodString;
988
+ }, "strip", z.ZodTypeAny, {
989
+ name: string;
990
+ id: string;
991
+ createdOn: string;
992
+ lastModifiedOn: string;
993
+ isDefault: boolean;
994
+ assignedRef: string | null;
995
+ params?: unknown;
996
+ }, {
997
+ name: string;
998
+ id: string;
999
+ createdOn: string;
1000
+ lastModifiedOn: string;
1001
+ isDefault: boolean;
1002
+ assignedRef: string | null;
1003
+ params?: unknown;
1004
+ }>, "many">;
1005
+ notes: z.ZodNullable<z.ZodString>;
1006
+ tags: z.ZodArray<z.ZodString, "many">;
1007
+ relations: z.ZodArray<z.ZodObject<{
1008
+ id: z.ZodString;
1009
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1010
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
1011
+ id: z.ZodString;
1012
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1013
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
1014
+ id: z.ZodString;
1015
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1016
+ }, z.ZodUnknown, "strip">>, "many">;
1017
+ groups: z.ZodArray<z.ZodString, "many">;
1018
+ createdOn: z.ZodString;
1019
+ lastModifiedOn: z.ZodString;
1020
+ }, "strip", z.ZodTypeAny, {
1021
+ groups: string[];
1022
+ id: string;
1023
+ createdOn: string;
1024
+ lastModifiedOn: string;
1025
+ presets: {
1026
+ name: string;
1027
+ id: string;
1028
+ createdOn: string;
1029
+ lastModifiedOn: string;
1030
+ isDefault: boolean;
1031
+ assignedRef: string | null;
1032
+ params?: unknown;
1033
+ }[];
1034
+ notes: string | null;
1035
+ tags: string[];
1036
+ relations: z.objectOutputType<{
1037
+ id: z.ZodString;
1038
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1039
+ }, z.ZodUnknown, "strip">[];
1040
+ }, {
1041
+ groups: string[];
1042
+ id: string;
1043
+ createdOn: string;
1044
+ lastModifiedOn: string;
1045
+ presets: {
1046
+ name: string;
1047
+ id: string;
1048
+ createdOn: string;
1049
+ lastModifiedOn: string;
1050
+ isDefault: boolean;
1051
+ assignedRef: string | null;
1052
+ params?: unknown;
1053
+ }[];
1054
+ notes: string | null;
1055
+ tags: string[];
1056
+ relations: z.objectInputType<{
1057
+ id: z.ZodString;
1058
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1059
+ }, z.ZodUnknown, "strip">[];
1060
+ }>>, z.ZodObject<{
1061
+ name: z.ZodString;
1062
+ foreignRef: z.ZodString;
1063
+ provider: z.ZodString;
1064
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
1065
+ }, "strip", z.ZodTypeAny, {
1066
+ name: string;
1067
+ foreignRef: string;
1068
+ provider: string;
1069
+ providerMetadata: {} & {
1070
+ [k: string]: unknown;
1071
+ };
1072
+ }, {
1073
+ name: string;
1074
+ foreignRef: string;
1075
+ provider: string;
1076
+ providerMetadata: {} & {
1077
+ [k: string]: unknown;
1078
+ };
1079
+ }>>;
1080
+ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1081
+ type: z.ZodLiteral<"camera-lift">;
1082
+ }, "strip", z.ZodTypeAny, {
1083
+ type: "camera-lift";
1084
+ }, {
1085
+ type: "camera-lift";
1086
+ }>, z.ZodObject<{
1087
+ id: z.ZodString;
1088
+ presets: z.ZodArray<z.ZodObject<{
1089
+ id: z.ZodString;
1090
+ name: z.ZodString;
1091
+ params: z.ZodUnknown;
1092
+ isDefault: z.ZodBoolean;
1093
+ assignedRef: z.ZodNullable<z.ZodString>;
1094
+ createdOn: z.ZodString;
1095
+ lastModifiedOn: z.ZodString;
1096
+ }, "strip", z.ZodTypeAny, {
1097
+ name: string;
1098
+ id: string;
1099
+ createdOn: string;
1100
+ lastModifiedOn: string;
1101
+ isDefault: boolean;
1102
+ assignedRef: string | null;
1103
+ params?: unknown;
1104
+ }, {
1105
+ name: string;
1106
+ id: string;
1107
+ createdOn: string;
1108
+ lastModifiedOn: string;
1109
+ isDefault: boolean;
1110
+ assignedRef: string | null;
1111
+ params?: unknown;
1112
+ }>, "many">;
1113
+ notes: z.ZodNullable<z.ZodString>;
1114
+ tags: z.ZodArray<z.ZodString, "many">;
1115
+ relations: z.ZodArray<z.ZodObject<{
1116
+ id: z.ZodString;
1117
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1118
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
1119
+ id: z.ZodString;
1120
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1121
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
1122
+ id: z.ZodString;
1123
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1124
+ }, z.ZodUnknown, "strip">>, "many">;
1125
+ groups: z.ZodArray<z.ZodString, "many">;
1126
+ createdOn: z.ZodString;
1127
+ lastModifiedOn: z.ZodString;
1128
+ }, "strip", z.ZodTypeAny, {
1129
+ groups: string[];
1130
+ id: string;
1131
+ createdOn: string;
1132
+ lastModifiedOn: string;
1133
+ presets: {
1134
+ name: string;
1135
+ id: string;
1136
+ createdOn: string;
1137
+ lastModifiedOn: string;
1138
+ isDefault: boolean;
1139
+ assignedRef: string | null;
1140
+ params?: unknown;
1141
+ }[];
1142
+ notes: string | null;
1143
+ tags: string[];
1144
+ relations: z.objectOutputType<{
1145
+ id: z.ZodString;
1146
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1147
+ }, z.ZodUnknown, "strip">[];
1148
+ }, {
1149
+ groups: string[];
1150
+ id: string;
1151
+ createdOn: string;
1152
+ lastModifiedOn: string;
1153
+ presets: {
1154
+ name: string;
1155
+ id: string;
1156
+ createdOn: string;
1157
+ lastModifiedOn: string;
1158
+ isDefault: boolean;
1159
+ assignedRef: string | null;
1160
+ params?: unknown;
1161
+ }[];
1162
+ notes: string | null;
1163
+ tags: string[];
1164
+ relations: z.objectInputType<{
1165
+ id: z.ZodString;
1166
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1167
+ }, z.ZodUnknown, "strip">[];
1168
+ }>>, z.ZodObject<{
1169
+ name: z.ZodString;
1170
+ foreignRef: z.ZodString;
1171
+ provider: z.ZodString;
1172
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
1173
+ }, "strip", z.ZodTypeAny, {
1174
+ name: string;
1175
+ foreignRef: string;
1176
+ provider: string;
1177
+ providerMetadata: {} & {
1178
+ [k: string]: unknown;
1179
+ };
1180
+ }, {
1181
+ name: string;
1182
+ foreignRef: string;
1183
+ provider: string;
1184
+ providerMetadata: {} & {
1185
+ [k: string]: unknown;
1186
+ };
1187
+ }>>;
1188
+ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1189
+ type: z.ZodLiteral<"motion-sensor">;
1190
+ }, "strip", z.ZodTypeAny, {
1191
+ type: "motion-sensor";
1192
+ }, {
1193
+ type: "motion-sensor";
1194
+ }>, z.ZodObject<{
1195
+ id: z.ZodString;
1196
+ presets: z.ZodArray<z.ZodObject<{
1197
+ id: z.ZodString;
1198
+ name: z.ZodString;
1199
+ params: z.ZodUnknown;
1200
+ isDefault: z.ZodBoolean;
1201
+ assignedRef: z.ZodNullable<z.ZodString>;
1202
+ createdOn: z.ZodString;
1203
+ lastModifiedOn: z.ZodString;
1204
+ }, "strip", z.ZodTypeAny, {
1205
+ name: string;
1206
+ id: string;
1207
+ createdOn: string;
1208
+ lastModifiedOn: string;
1209
+ isDefault: boolean;
1210
+ assignedRef: string | null;
1211
+ params?: unknown;
1212
+ }, {
1213
+ name: string;
1214
+ id: string;
1215
+ createdOn: string;
1216
+ lastModifiedOn: string;
1217
+ isDefault: boolean;
1218
+ assignedRef: string | null;
1219
+ params?: unknown;
1220
+ }>, "many">;
1221
+ notes: z.ZodNullable<z.ZodString>;
1222
+ tags: z.ZodArray<z.ZodString, "many">;
1223
+ relations: z.ZodArray<z.ZodObject<{
1224
+ id: z.ZodString;
1225
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1226
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
1227
+ id: z.ZodString;
1228
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1229
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
1230
+ id: z.ZodString;
1231
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1232
+ }, z.ZodUnknown, "strip">>, "many">;
1233
+ groups: z.ZodArray<z.ZodString, "many">;
1234
+ createdOn: z.ZodString;
1235
+ lastModifiedOn: z.ZodString;
1236
+ }, "strip", z.ZodTypeAny, {
1237
+ groups: string[];
1238
+ id: string;
1239
+ createdOn: string;
1240
+ lastModifiedOn: string;
1241
+ presets: {
1242
+ name: string;
1243
+ id: string;
1244
+ createdOn: string;
1245
+ lastModifiedOn: string;
1246
+ isDefault: boolean;
1247
+ assignedRef: string | null;
1248
+ params?: unknown;
1249
+ }[];
1250
+ notes: string | null;
1251
+ tags: string[];
1252
+ relations: z.objectOutputType<{
1253
+ id: z.ZodString;
1254
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1255
+ }, z.ZodUnknown, "strip">[];
1256
+ }, {
1257
+ groups: string[];
1258
+ id: string;
1259
+ createdOn: string;
1260
+ lastModifiedOn: string;
1261
+ presets: {
1262
+ name: string;
1263
+ id: string;
1264
+ createdOn: string;
1265
+ lastModifiedOn: string;
1266
+ isDefault: boolean;
1267
+ assignedRef: string | null;
1268
+ params?: unknown;
1269
+ }[];
1270
+ notes: string | null;
1271
+ tags: string[];
1272
+ relations: z.objectInputType<{
1273
+ id: z.ZodString;
1274
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1275
+ }, z.ZodUnknown, "strip">[];
1276
+ }>>, z.ZodObject<{
1277
+ name: z.ZodString;
1278
+ foreignRef: z.ZodString;
1279
+ provider: z.ZodString;
1280
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
1281
+ }, "strip", z.ZodTypeAny, {
1282
+ name: string;
1283
+ foreignRef: string;
1284
+ provider: string;
1285
+ providerMetadata: {} & {
1286
+ [k: string]: unknown;
1287
+ };
1288
+ }, {
1289
+ name: string;
1290
+ foreignRef: string;
1291
+ provider: string;
1292
+ providerMetadata: {} & {
1293
+ [k: string]: unknown;
1294
+ };
1295
+ }>>;
1296
+ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1297
+ type: z.ZodLiteral<"panic-button">;
1298
+ }, "strip", z.ZodTypeAny, {
1299
+ type: "panic-button";
1300
+ }, {
1301
+ type: "panic-button";
1302
+ }>, z.ZodObject<{
1303
+ id: z.ZodString;
1304
+ presets: z.ZodArray<z.ZodObject<{
1305
+ id: z.ZodString;
1306
+ name: z.ZodString;
1307
+ params: z.ZodUnknown;
1308
+ isDefault: z.ZodBoolean;
1309
+ assignedRef: z.ZodNullable<z.ZodString>;
1310
+ createdOn: z.ZodString;
1311
+ lastModifiedOn: z.ZodString;
1312
+ }, "strip", z.ZodTypeAny, {
1313
+ name: string;
1314
+ id: string;
1315
+ createdOn: string;
1316
+ lastModifiedOn: string;
1317
+ isDefault: boolean;
1318
+ assignedRef: string | null;
1319
+ params?: unknown;
1320
+ }, {
1321
+ name: string;
1322
+ id: string;
1323
+ createdOn: string;
1324
+ lastModifiedOn: string;
1325
+ isDefault: boolean;
1326
+ assignedRef: string | null;
1327
+ params?: unknown;
1328
+ }>, "many">;
1329
+ notes: z.ZodNullable<z.ZodString>;
1330
+ tags: z.ZodArray<z.ZodString, "many">;
1331
+ relations: z.ZodArray<z.ZodObject<{
1332
+ id: z.ZodString;
1333
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1334
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
1335
+ id: z.ZodString;
1336
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1337
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
1338
+ id: z.ZodString;
1339
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1340
+ }, z.ZodUnknown, "strip">>, "many">;
1341
+ groups: z.ZodArray<z.ZodString, "many">;
1342
+ createdOn: z.ZodString;
1343
+ lastModifiedOn: z.ZodString;
1344
+ }, "strip", z.ZodTypeAny, {
1345
+ groups: string[];
1346
+ id: string;
1347
+ createdOn: string;
1348
+ lastModifiedOn: string;
1349
+ presets: {
1350
+ name: string;
1351
+ id: string;
1352
+ createdOn: string;
1353
+ lastModifiedOn: string;
1354
+ isDefault: boolean;
1355
+ assignedRef: string | null;
1356
+ params?: unknown;
1357
+ }[];
1358
+ notes: string | null;
1359
+ tags: string[];
1360
+ relations: z.objectOutputType<{
1361
+ id: z.ZodString;
1362
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1363
+ }, z.ZodUnknown, "strip">[];
1364
+ }, {
1365
+ groups: string[];
1366
+ id: string;
1367
+ createdOn: string;
1368
+ lastModifiedOn: string;
1369
+ presets: {
1370
+ name: string;
1371
+ id: string;
1372
+ createdOn: string;
1373
+ lastModifiedOn: string;
1374
+ isDefault: boolean;
1375
+ assignedRef: string | null;
1376
+ params?: unknown;
1377
+ }[];
1378
+ notes: string | null;
1379
+ tags: string[];
1380
+ relations: z.objectInputType<{
1381
+ id: z.ZodString;
1382
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1383
+ }, z.ZodUnknown, "strip">[];
1384
+ }>>, z.ZodObject<{
1385
+ name: z.ZodString;
1386
+ foreignRef: z.ZodString;
1387
+ provider: z.ZodString;
1388
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
1389
+ }, "strip", z.ZodTypeAny, {
1390
+ name: string;
1391
+ foreignRef: string;
1392
+ provider: string;
1393
+ providerMetadata: {} & {
1394
+ [k: string]: unknown;
1395
+ };
1396
+ }, {
1397
+ name: string;
1398
+ foreignRef: string;
1399
+ provider: string;
1400
+ providerMetadata: {} & {
1401
+ [k: string]: unknown;
1402
+ };
1403
+ }>>;
1404
+ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1405
+ sipUri: z.ZodString;
1406
+ sipUser: z.ZodString;
1407
+ sipPassword: z.ZodString;
1408
+ sipRealm: z.ZodString;
1409
+ remoteExtension: z.ZodString;
1410
+ } & {
1411
+ type: z.ZodLiteral<"intercom-terminal">;
1412
+ }, "strip", z.ZodTypeAny, {
1413
+ type: "intercom-terminal";
1414
+ sipUri: string;
1415
+ sipUser: string;
1416
+ sipPassword: string;
1417
+ sipRealm: string;
1418
+ remoteExtension: string;
1419
+ }, {
1420
+ type: "intercom-terminal";
1421
+ sipUri: string;
1422
+ sipUser: string;
1423
+ sipPassword: string;
1424
+ sipRealm: string;
1425
+ remoteExtension: string;
1426
+ }>, z.ZodObject<{
1427
+ id: z.ZodString;
1428
+ presets: z.ZodArray<z.ZodObject<{
1429
+ id: z.ZodString;
1430
+ name: z.ZodString;
1431
+ params: z.ZodUnknown;
1432
+ isDefault: z.ZodBoolean;
1433
+ assignedRef: z.ZodNullable<z.ZodString>;
1434
+ createdOn: z.ZodString;
1435
+ lastModifiedOn: z.ZodString;
1436
+ }, "strip", z.ZodTypeAny, {
1437
+ name: string;
1438
+ id: string;
1439
+ createdOn: string;
1440
+ lastModifiedOn: string;
1441
+ isDefault: boolean;
1442
+ assignedRef: string | null;
1443
+ params?: unknown;
1444
+ }, {
1445
+ name: string;
1446
+ id: string;
1447
+ createdOn: string;
1448
+ lastModifiedOn: string;
1449
+ isDefault: boolean;
1450
+ assignedRef: string | null;
1451
+ params?: unknown;
1452
+ }>, "many">;
1453
+ notes: z.ZodNullable<z.ZodString>;
1454
+ tags: z.ZodArray<z.ZodString, "many">;
1455
+ relations: z.ZodArray<z.ZodObject<{
1456
+ id: z.ZodString;
1457
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1458
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
1459
+ id: z.ZodString;
1460
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1461
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
1462
+ id: z.ZodString;
1463
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1464
+ }, z.ZodUnknown, "strip">>, "many">;
1465
+ groups: z.ZodArray<z.ZodString, "many">;
1466
+ createdOn: z.ZodString;
1467
+ lastModifiedOn: z.ZodString;
1468
+ }, "strip", z.ZodTypeAny, {
1469
+ groups: string[];
1470
+ id: string;
1471
+ createdOn: string;
1472
+ lastModifiedOn: string;
1473
+ presets: {
1474
+ name: string;
1475
+ id: string;
1476
+ createdOn: string;
1477
+ lastModifiedOn: string;
1478
+ isDefault: boolean;
1479
+ assignedRef: string | null;
1480
+ params?: unknown;
1481
+ }[];
1482
+ notes: string | null;
1483
+ tags: string[];
1484
+ relations: z.objectOutputType<{
1485
+ id: z.ZodString;
1486
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1487
+ }, z.ZodUnknown, "strip">[];
1488
+ }, {
1489
+ groups: string[];
1490
+ id: string;
1491
+ createdOn: string;
1492
+ lastModifiedOn: string;
1493
+ presets: {
1494
+ name: string;
1495
+ id: string;
1496
+ createdOn: string;
1497
+ lastModifiedOn: string;
1498
+ isDefault: boolean;
1499
+ assignedRef: string | null;
1500
+ params?: unknown;
1501
+ }[];
1502
+ notes: string | null;
1503
+ tags: string[];
1504
+ relations: z.objectInputType<{
1505
+ id: z.ZodString;
1506
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1507
+ }, z.ZodUnknown, "strip">[];
1508
+ }>>, z.ZodObject<{
1509
+ name: z.ZodString;
1510
+ foreignRef: z.ZodString;
1511
+ provider: z.ZodString;
1512
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
1513
+ }, "strip", z.ZodTypeAny, {
1514
+ name: string;
1515
+ foreignRef: string;
1516
+ provider: string;
1517
+ providerMetadata: {} & {
1518
+ [k: string]: unknown;
1519
+ };
1520
+ }, {
1521
+ name: string;
1522
+ foreignRef: string;
1523
+ provider: string;
1524
+ providerMetadata: {} & {
1525
+ [k: string]: unknown;
1526
+ };
1527
+ }>>;
1528
+ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1529
+ sipWsUrl: z.ZodString;
1530
+ } & {
1531
+ type: z.ZodLiteral<"pbx">;
1532
+ }, "strip", z.ZodTypeAny, {
1533
+ type: "pbx";
1534
+ sipWsUrl: string;
1535
+ }, {
1536
+ type: "pbx";
1537
+ sipWsUrl: string;
1538
+ }>, z.ZodObject<{
1539
+ id: z.ZodString;
1540
+ presets: z.ZodArray<z.ZodObject<{
1541
+ id: z.ZodString;
1542
+ name: z.ZodString;
1543
+ params: z.ZodUnknown;
1544
+ isDefault: z.ZodBoolean;
1545
+ assignedRef: z.ZodNullable<z.ZodString>;
1546
+ createdOn: z.ZodString;
1547
+ lastModifiedOn: z.ZodString;
1548
+ }, "strip", z.ZodTypeAny, {
1549
+ name: string;
1550
+ id: string;
1551
+ createdOn: string;
1552
+ lastModifiedOn: string;
1553
+ isDefault: boolean;
1554
+ assignedRef: string | null;
1555
+ params?: unknown;
1556
+ }, {
1557
+ name: string;
1558
+ id: string;
1559
+ createdOn: string;
1560
+ lastModifiedOn: string;
1561
+ isDefault: boolean;
1562
+ assignedRef: string | null;
1563
+ params?: unknown;
1564
+ }>, "many">;
1565
+ notes: z.ZodNullable<z.ZodString>;
1566
+ tags: z.ZodArray<z.ZodString, "many">;
1567
+ relations: z.ZodArray<z.ZodObject<{
1568
+ id: z.ZodString;
1569
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1570
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
1571
+ id: z.ZodString;
1572
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1573
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
1574
+ id: z.ZodString;
1575
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1576
+ }, z.ZodUnknown, "strip">>, "many">;
1577
+ groups: z.ZodArray<z.ZodString, "many">;
1578
+ createdOn: z.ZodString;
1579
+ lastModifiedOn: z.ZodString;
1580
+ }, "strip", z.ZodTypeAny, {
1581
+ groups: string[];
1582
+ id: string;
1583
+ createdOn: string;
1584
+ lastModifiedOn: string;
1585
+ presets: {
1586
+ name: string;
1587
+ id: string;
1588
+ createdOn: string;
1589
+ lastModifiedOn: string;
1590
+ isDefault: boolean;
1591
+ assignedRef: string | null;
1592
+ params?: unknown;
1593
+ }[];
1594
+ notes: string | null;
1595
+ tags: string[];
1596
+ relations: z.objectOutputType<{
1597
+ id: z.ZodString;
1598
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1599
+ }, z.ZodUnknown, "strip">[];
1600
+ }, {
1601
+ groups: string[];
1602
+ id: string;
1603
+ createdOn: string;
1604
+ lastModifiedOn: string;
1605
+ presets: {
1606
+ name: string;
1607
+ id: string;
1608
+ createdOn: string;
1609
+ lastModifiedOn: string;
1610
+ isDefault: boolean;
1611
+ assignedRef: string | null;
1612
+ params?: unknown;
1613
+ }[];
1614
+ notes: string | null;
1615
+ tags: string[];
1616
+ relations: z.objectInputType<{
1617
+ id: z.ZodString;
1618
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1619
+ }, z.ZodUnknown, "strip">[];
1620
+ }>>, z.ZodObject<{
1621
+ name: z.ZodString;
1622
+ foreignRef: z.ZodString;
1623
+ provider: z.ZodString;
1624
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
1625
+ }, "strip", z.ZodTypeAny, {
1626
+ name: string;
1627
+ foreignRef: string;
1628
+ provider: string;
1629
+ providerMetadata: {} & {
1630
+ [k: string]: unknown;
1631
+ };
1632
+ }, {
1633
+ name: string;
1634
+ foreignRef: string;
1635
+ provider: string;
1636
+ providerMetadata: {} & {
1637
+ [k: string]: unknown;
1638
+ };
1639
+ }>>;
1640
+ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1641
+ type: z.ZodLiteral<"device-gateway">;
1642
+ }, "strip", z.ZodTypeAny, {
1643
+ type: "device-gateway";
1644
+ }, {
1645
+ type: "device-gateway";
1646
+ }>, z.ZodObject<{
1647
+ id: z.ZodString;
1648
+ presets: z.ZodArray<z.ZodObject<{
1649
+ id: z.ZodString;
1650
+ name: z.ZodString;
1651
+ params: z.ZodUnknown;
1652
+ isDefault: z.ZodBoolean;
1653
+ assignedRef: z.ZodNullable<z.ZodString>;
1654
+ createdOn: z.ZodString;
1655
+ lastModifiedOn: z.ZodString;
1656
+ }, "strip", z.ZodTypeAny, {
1657
+ name: string;
1658
+ id: string;
1659
+ createdOn: string;
1660
+ lastModifiedOn: string;
1661
+ isDefault: boolean;
1662
+ assignedRef: string | null;
1663
+ params?: unknown;
1664
+ }, {
1665
+ name: string;
1666
+ id: string;
1667
+ createdOn: string;
1668
+ lastModifiedOn: string;
1669
+ isDefault: boolean;
1670
+ assignedRef: string | null;
1671
+ params?: unknown;
1672
+ }>, "many">;
1673
+ notes: z.ZodNullable<z.ZodString>;
1674
+ tags: z.ZodArray<z.ZodString, "many">;
1675
+ relations: z.ZodArray<z.ZodObject<{
1676
+ id: z.ZodString;
1677
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1678
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
1679
+ id: z.ZodString;
1680
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1681
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
1682
+ id: z.ZodString;
1683
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1684
+ }, z.ZodUnknown, "strip">>, "many">;
1685
+ groups: z.ZodArray<z.ZodString, "many">;
1686
+ createdOn: z.ZodString;
1687
+ lastModifiedOn: z.ZodString;
1688
+ }, "strip", z.ZodTypeAny, {
1689
+ groups: string[];
1690
+ id: string;
1691
+ createdOn: string;
1692
+ lastModifiedOn: string;
1693
+ presets: {
1694
+ name: string;
1695
+ id: string;
1696
+ createdOn: string;
1697
+ lastModifiedOn: string;
1698
+ isDefault: boolean;
1699
+ assignedRef: string | null;
1700
+ params?: unknown;
1701
+ }[];
1702
+ notes: string | null;
1703
+ tags: string[];
1704
+ relations: z.objectOutputType<{
1705
+ id: z.ZodString;
1706
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1707
+ }, z.ZodUnknown, "strip">[];
1708
+ }, {
1709
+ groups: string[];
1710
+ id: string;
1711
+ createdOn: string;
1712
+ lastModifiedOn: string;
1713
+ presets: {
1714
+ name: string;
1715
+ id: string;
1716
+ createdOn: string;
1717
+ lastModifiedOn: string;
1718
+ isDefault: boolean;
1719
+ assignedRef: string | null;
1720
+ params?: unknown;
1721
+ }[];
1722
+ notes: string | null;
1723
+ tags: string[];
1724
+ relations: z.objectInputType<{
1725
+ id: z.ZodString;
1726
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1727
+ }, z.ZodUnknown, "strip">[];
1728
+ }>>, z.ZodObject<{
1729
+ name: z.ZodString;
1730
+ foreignRef: z.ZodString;
1731
+ provider: z.ZodString;
1732
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
1733
+ }, "strip", z.ZodTypeAny, {
1734
+ name: string;
1735
+ foreignRef: string;
1736
+ provider: string;
1737
+ providerMetadata: {} & {
1738
+ [k: string]: unknown;
1739
+ };
1740
+ }, {
1741
+ name: string;
1742
+ foreignRef: string;
1743
+ provider: string;
1744
+ providerMetadata: {} & {
1745
+ [k: string]: unknown;
1746
+ };
1747
+ }>>;
1748
+ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1749
+ type: z.ZodLiteral<"presence-tracker">;
1750
+ }, "strip", z.ZodTypeAny, {
1751
+ type: "presence-tracker";
1752
+ }, {
1753
+ type: "presence-tracker";
1754
+ }>, z.ZodObject<{
1755
+ id: z.ZodString;
1756
+ presets: z.ZodArray<z.ZodObject<{
1757
+ id: z.ZodString;
1758
+ name: z.ZodString;
1759
+ params: z.ZodUnknown;
1760
+ isDefault: z.ZodBoolean;
1761
+ assignedRef: z.ZodNullable<z.ZodString>;
1762
+ createdOn: z.ZodString;
1763
+ lastModifiedOn: z.ZodString;
1764
+ }, "strip", z.ZodTypeAny, {
1765
+ name: string;
1766
+ id: string;
1767
+ createdOn: string;
1768
+ lastModifiedOn: string;
1769
+ isDefault: boolean;
1770
+ assignedRef: string | null;
1771
+ params?: unknown;
1772
+ }, {
1773
+ name: string;
1774
+ id: string;
1775
+ createdOn: string;
1776
+ lastModifiedOn: string;
1777
+ isDefault: boolean;
1778
+ assignedRef: string | null;
1779
+ params?: unknown;
1780
+ }>, "many">;
1781
+ notes: z.ZodNullable<z.ZodString>;
1782
+ tags: z.ZodArray<z.ZodString, "many">;
1783
+ relations: z.ZodArray<z.ZodObject<{
1784
+ id: z.ZodString;
1785
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1786
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
1787
+ id: z.ZodString;
1788
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1789
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
1790
+ id: z.ZodString;
1791
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1792
+ }, z.ZodUnknown, "strip">>, "many">;
1793
+ groups: z.ZodArray<z.ZodString, "many">;
1794
+ createdOn: z.ZodString;
1795
+ lastModifiedOn: z.ZodString;
1796
+ }, "strip", z.ZodTypeAny, {
1797
+ groups: string[];
1798
+ id: string;
1799
+ createdOn: string;
1800
+ lastModifiedOn: string;
1801
+ presets: {
1802
+ name: string;
1803
+ id: string;
1804
+ createdOn: string;
1805
+ lastModifiedOn: string;
1806
+ isDefault: boolean;
1807
+ assignedRef: string | null;
1808
+ params?: unknown;
1809
+ }[];
1810
+ notes: string | null;
1811
+ tags: string[];
1812
+ relations: z.objectOutputType<{
1813
+ id: z.ZodString;
1814
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1815
+ }, z.ZodUnknown, "strip">[];
1816
+ }, {
1817
+ groups: string[];
1818
+ id: string;
1819
+ createdOn: string;
1820
+ lastModifiedOn: string;
1821
+ presets: {
1822
+ name: string;
1823
+ id: string;
1824
+ createdOn: string;
1825
+ lastModifiedOn: string;
1826
+ isDefault: boolean;
1827
+ assignedRef: string | null;
1828
+ params?: unknown;
1829
+ }[];
1830
+ notes: string | null;
1831
+ tags: string[];
1832
+ relations: z.objectInputType<{
1833
+ id: z.ZodString;
1834
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1835
+ }, z.ZodUnknown, "strip">[];
1836
+ }>>, z.ZodObject<{
1837
+ name: z.ZodString;
1838
+ foreignRef: z.ZodString;
1839
+ provider: z.ZodString;
1840
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
1841
+ }, "strip", z.ZodTypeAny, {
1842
+ name: string;
1843
+ foreignRef: string;
1844
+ provider: string;
1845
+ providerMetadata: {} & {
1846
+ [k: string]: unknown;
1847
+ };
1848
+ }, {
1849
+ name: string;
1850
+ foreignRef: string;
1851
+ provider: string;
1852
+ providerMetadata: {} & {
1853
+ [k: string]: unknown;
1854
+ };
1855
+ }>>;
1856
+ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1857
+ type: z.ZodLiteral<"server">;
1858
+ }, "strip", z.ZodTypeAny, {
1859
+ type: "server";
1860
+ }, {
1861
+ type: "server";
1862
+ }>, z.ZodObject<{
1863
+ id: z.ZodString;
1864
+ presets: z.ZodArray<z.ZodObject<{
1865
+ id: z.ZodString;
1866
+ name: z.ZodString;
1867
+ params: z.ZodUnknown;
1868
+ isDefault: z.ZodBoolean;
1869
+ assignedRef: z.ZodNullable<z.ZodString>;
1870
+ createdOn: z.ZodString;
1871
+ lastModifiedOn: z.ZodString;
1872
+ }, "strip", z.ZodTypeAny, {
1873
+ name: string;
1874
+ id: string;
1875
+ createdOn: string;
1876
+ lastModifiedOn: string;
1877
+ isDefault: boolean;
1878
+ assignedRef: string | null;
1879
+ params?: unknown;
1880
+ }, {
1881
+ name: string;
1882
+ id: string;
1883
+ createdOn: string;
1884
+ lastModifiedOn: string;
1885
+ isDefault: boolean;
1886
+ assignedRef: string | null;
1887
+ params?: unknown;
1888
+ }>, "many">;
1889
+ notes: z.ZodNullable<z.ZodString>;
1890
+ tags: z.ZodArray<z.ZodString, "many">;
1891
+ relations: z.ZodArray<z.ZodObject<{
1892
+ id: z.ZodString;
1893
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1894
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
1895
+ id: z.ZodString;
1896
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1897
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
1898
+ id: z.ZodString;
1899
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1900
+ }, z.ZodUnknown, "strip">>, "many">;
1901
+ groups: z.ZodArray<z.ZodString, "many">;
1902
+ createdOn: z.ZodString;
1903
+ lastModifiedOn: z.ZodString;
1904
+ }, "strip", z.ZodTypeAny, {
1905
+ groups: string[];
1906
+ id: string;
1907
+ createdOn: string;
1908
+ lastModifiedOn: string;
1909
+ presets: {
1910
+ name: string;
1911
+ id: string;
1912
+ createdOn: string;
1913
+ lastModifiedOn: string;
1914
+ isDefault: boolean;
1915
+ assignedRef: string | null;
1916
+ params?: unknown;
1917
+ }[];
1918
+ notes: string | null;
1919
+ tags: string[];
1920
+ relations: z.objectOutputType<{
1921
+ id: z.ZodString;
1922
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1923
+ }, z.ZodUnknown, "strip">[];
1924
+ }, {
1925
+ groups: string[];
1926
+ id: string;
1927
+ createdOn: string;
1928
+ lastModifiedOn: string;
1929
+ presets: {
1930
+ name: string;
1931
+ id: string;
1932
+ createdOn: string;
1933
+ lastModifiedOn: string;
1934
+ isDefault: boolean;
1935
+ assignedRef: string | null;
1936
+ params?: unknown;
1937
+ }[];
1938
+ notes: string | null;
1939
+ tags: string[];
1940
+ relations: z.objectInputType<{
1941
+ id: z.ZodString;
1942
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
1943
+ }, z.ZodUnknown, "strip">[];
1944
+ }>>, z.ZodObject<{
1945
+ name: z.ZodString;
1946
+ foreignRef: z.ZodString;
1947
+ provider: z.ZodString;
1948
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
1949
+ }, "strip", z.ZodTypeAny, {
1950
+ name: string;
1951
+ foreignRef: string;
1952
+ provider: string;
1953
+ providerMetadata: {} & {
1954
+ [k: string]: unknown;
1955
+ };
1956
+ }, {
1957
+ name: string;
1958
+ foreignRef: string;
1959
+ provider: string;
1960
+ providerMetadata: {} & {
1961
+ [k: string]: unknown;
1962
+ };
1963
+ }>>;
1964
+ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1965
+ type: z.ZodLiteral<"alarm">;
1966
+ }, "strip", z.ZodTypeAny, {
1967
+ type: "alarm";
1968
+ }, {
1969
+ type: "alarm";
1970
+ }>, z.ZodObject<{
1971
+ id: z.ZodString;
1972
+ presets: z.ZodArray<z.ZodObject<{
1973
+ id: z.ZodString;
1974
+ name: z.ZodString;
1975
+ params: z.ZodUnknown;
1976
+ isDefault: z.ZodBoolean;
1977
+ assignedRef: z.ZodNullable<z.ZodString>;
1978
+ createdOn: z.ZodString;
1979
+ lastModifiedOn: z.ZodString;
1980
+ }, "strip", z.ZodTypeAny, {
1981
+ name: string;
1982
+ id: string;
1983
+ createdOn: string;
1984
+ lastModifiedOn: string;
1985
+ isDefault: boolean;
1986
+ assignedRef: string | null;
1987
+ params?: unknown;
1988
+ }, {
1989
+ name: string;
1990
+ id: string;
1991
+ createdOn: string;
1992
+ lastModifiedOn: string;
1993
+ isDefault: boolean;
1994
+ assignedRef: string | null;
1995
+ params?: unknown;
1996
+ }>, "many">;
1997
+ notes: z.ZodNullable<z.ZodString>;
1998
+ tags: z.ZodArray<z.ZodString, "many">;
1999
+ relations: z.ZodArray<z.ZodObject<{
2000
+ id: z.ZodString;
2001
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2002
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
2003
+ id: z.ZodString;
2004
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2005
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
2006
+ id: z.ZodString;
2007
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2008
+ }, z.ZodUnknown, "strip">>, "many">;
2009
+ groups: z.ZodArray<z.ZodString, "many">;
2010
+ createdOn: z.ZodString;
2011
+ lastModifiedOn: z.ZodString;
2012
+ }, "strip", z.ZodTypeAny, {
2013
+ groups: string[];
2014
+ id: string;
2015
+ createdOn: string;
2016
+ lastModifiedOn: string;
2017
+ presets: {
2018
+ name: string;
2019
+ id: string;
2020
+ createdOn: string;
2021
+ lastModifiedOn: string;
2022
+ isDefault: boolean;
2023
+ assignedRef: string | null;
2024
+ params?: unknown;
2025
+ }[];
2026
+ notes: string | null;
2027
+ tags: string[];
2028
+ relations: z.objectOutputType<{
2029
+ id: z.ZodString;
2030
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2031
+ }, z.ZodUnknown, "strip">[];
2032
+ }, {
2033
+ groups: string[];
2034
+ id: string;
2035
+ createdOn: string;
2036
+ lastModifiedOn: string;
2037
+ presets: {
2038
+ name: string;
2039
+ id: string;
2040
+ createdOn: string;
2041
+ lastModifiedOn: string;
2042
+ isDefault: boolean;
2043
+ assignedRef: string | null;
2044
+ params?: unknown;
2045
+ }[];
2046
+ notes: string | null;
2047
+ tags: string[];
2048
+ relations: z.objectInputType<{
2049
+ id: z.ZodString;
2050
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2051
+ }, z.ZodUnknown, "strip">[];
2052
+ }>>, z.ZodObject<{
2053
+ name: z.ZodString;
2054
+ foreignRef: z.ZodString;
2055
+ provider: z.ZodString;
2056
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
2057
+ }, "strip", z.ZodTypeAny, {
2058
+ name: string;
2059
+ foreignRef: string;
2060
+ provider: string;
2061
+ providerMetadata: {} & {
2062
+ [k: string]: unknown;
2063
+ };
2064
+ }, {
2065
+ name: string;
2066
+ foreignRef: string;
2067
+ provider: string;
2068
+ providerMetadata: {} & {
2069
+ [k: string]: unknown;
2070
+ };
2071
+ }>>;
2072
+ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2073
+ type: z.ZodLiteral<"intercom-operator">;
2074
+ }, "strip", z.ZodTypeAny, {
2075
+ type: "intercom-operator";
2076
+ }, {
2077
+ type: "intercom-operator";
2078
+ }>, z.ZodObject<{
2079
+ id: z.ZodString;
2080
+ presets: z.ZodArray<z.ZodObject<{
2081
+ id: z.ZodString;
2082
+ name: z.ZodString;
2083
+ params: z.ZodUnknown;
2084
+ isDefault: z.ZodBoolean;
2085
+ assignedRef: z.ZodNullable<z.ZodString>;
2086
+ createdOn: z.ZodString;
2087
+ lastModifiedOn: z.ZodString;
2088
+ }, "strip", z.ZodTypeAny, {
2089
+ name: string;
2090
+ id: string;
2091
+ createdOn: string;
2092
+ lastModifiedOn: string;
2093
+ isDefault: boolean;
2094
+ assignedRef: string | null;
2095
+ params?: unknown;
2096
+ }, {
2097
+ name: string;
2098
+ id: string;
2099
+ createdOn: string;
2100
+ lastModifiedOn: string;
2101
+ isDefault: boolean;
2102
+ assignedRef: string | null;
2103
+ params?: unknown;
2104
+ }>, "many">;
2105
+ notes: z.ZodNullable<z.ZodString>;
2106
+ tags: z.ZodArray<z.ZodString, "many">;
2107
+ relations: z.ZodArray<z.ZodObject<{
2108
+ id: z.ZodString;
2109
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2110
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
2111
+ id: z.ZodString;
2112
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2113
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
2114
+ id: z.ZodString;
2115
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2116
+ }, z.ZodUnknown, "strip">>, "many">;
2117
+ groups: z.ZodArray<z.ZodString, "many">;
2118
+ createdOn: z.ZodString;
2119
+ lastModifiedOn: z.ZodString;
2120
+ }, "strip", z.ZodTypeAny, {
2121
+ groups: string[];
2122
+ id: string;
2123
+ createdOn: string;
2124
+ lastModifiedOn: string;
2125
+ presets: {
2126
+ name: string;
2127
+ id: string;
2128
+ createdOn: string;
2129
+ lastModifiedOn: string;
2130
+ isDefault: boolean;
2131
+ assignedRef: string | null;
2132
+ params?: unknown;
2133
+ }[];
2134
+ notes: string | null;
2135
+ tags: string[];
2136
+ relations: z.objectOutputType<{
2137
+ id: z.ZodString;
2138
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2139
+ }, z.ZodUnknown, "strip">[];
2140
+ }, {
2141
+ groups: string[];
2142
+ id: string;
2143
+ createdOn: string;
2144
+ lastModifiedOn: string;
2145
+ presets: {
2146
+ name: string;
2147
+ id: string;
2148
+ createdOn: string;
2149
+ lastModifiedOn: string;
2150
+ isDefault: boolean;
2151
+ assignedRef: string | null;
2152
+ params?: unknown;
2153
+ }[];
2154
+ notes: string | null;
2155
+ tags: string[];
2156
+ relations: z.objectInputType<{
2157
+ id: z.ZodString;
2158
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2159
+ }, z.ZodUnknown, "strip">[];
2160
+ }>>, z.ZodObject<{
2161
+ name: z.ZodString;
2162
+ foreignRef: z.ZodString;
2163
+ provider: z.ZodString;
2164
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
2165
+ }, "strip", z.ZodTypeAny, {
2166
+ name: string;
2167
+ foreignRef: string;
2168
+ provider: string;
2169
+ providerMetadata: {} & {
2170
+ [k: string]: unknown;
2171
+ };
2172
+ }, {
2173
+ name: string;
2174
+ foreignRef: string;
2175
+ provider: string;
2176
+ providerMetadata: {} & {
2177
+ [k: string]: unknown;
2178
+ };
2179
+ }>>;
2180
+ export declare const sAddDeviceRequest: z.ZodObject<{
2181
+ name: z.ZodString;
2182
+ foreignRef: z.ZodString;
2183
+ notes: z.ZodNullable<z.ZodString>;
2184
+ provider: z.ZodString;
2185
+ providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
2186
+ tags: z.ZodArray<z.ZodString, "many">;
2187
+ relations: z.ZodArray<z.ZodObject<{
2188
+ id: z.ZodString;
2189
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2190
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
2191
+ id: z.ZodString;
2192
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2193
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
2194
+ id: z.ZodString;
2195
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2196
+ }, z.ZodUnknown, "strip">>, "many">;
2197
+ type: z.ZodEnum<["alarm", "server", "camera", "door", "reader", "io-board", "camera-lift", "motion-sensor", "panic-button", "intercom-operator", "intercom-terminal", "pbx", "device-gateway", "presence-tracker"]>;
2198
+ specs: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>>;
2199
+ }, "strip", z.ZodTypeAny, {
2200
+ name: string;
2201
+ type: "camera" | "server" | "device-gateway" | "door" | "intercom-terminal" | "io-board" | "panic-button" | "presence-tracker" | "reader" | "camera-lift" | "motion-sensor" | "intercom-operator" | "pbx" | "alarm";
2202
+ foreignRef: string;
2203
+ notes: string | null;
2204
+ tags: string[];
2205
+ relations: z.objectOutputType<{
2206
+ id: z.ZodString;
2207
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2208
+ }, z.ZodUnknown, "strip">[];
2209
+ provider: string;
2210
+ providerMetadata: {} & {
2211
+ [k: string]: unknown;
2212
+ };
2213
+ specs?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
2214
+ }, {
2215
+ name: string;
2216
+ type: "camera" | "server" | "device-gateway" | "door" | "intercom-terminal" | "io-board" | "panic-button" | "presence-tracker" | "reader" | "camera-lift" | "motion-sensor" | "intercom-operator" | "pbx" | "alarm";
2217
+ foreignRef: string;
2218
+ notes: string | null;
2219
+ tags: string[];
2220
+ relations: z.objectInputType<{
2221
+ id: z.ZodString;
2222
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2223
+ }, z.ZodUnknown, "strip">[];
2224
+ provider: string;
2225
+ providerMetadata: {} & {
2226
+ [k: string]: unknown;
2227
+ };
2228
+ specs?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
2229
+ }>;
2230
+ export declare const sUpdateDeviceRequest: z.ZodObject<{
2231
+ id: z.ZodString;
2232
+ name: z.ZodOptional<z.ZodString>;
2233
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2234
+ providerMetadata: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>>;
2235
+ specs: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>>;
2236
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2237
+ relations: z.ZodOptional<z.ZodArray<z.ZodObject<{
2238
+ id: z.ZodString;
2239
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2240
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
2241
+ id: z.ZodString;
2242
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2243
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
2244
+ id: z.ZodString;
2245
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2246
+ }, z.ZodUnknown, "strip">>, "many">>;
2247
+ }, "strip", z.ZodTypeAny, {
2248
+ id: string;
2249
+ name?: string | undefined;
2250
+ specs?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
2251
+ notes?: string | null | undefined;
2252
+ tags?: string[] | undefined;
2253
+ relations?: z.objectOutputType<{
2254
+ id: z.ZodString;
2255
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2256
+ }, z.ZodUnknown, "strip">[] | undefined;
2257
+ providerMetadata?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
2258
+ }, {
2259
+ id: string;
2260
+ name?: string | undefined;
2261
+ specs?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
2262
+ notes?: string | null | undefined;
2263
+ tags?: string[] | undefined;
2264
+ relations?: z.objectInputType<{
2265
+ id: z.ZodString;
2266
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2267
+ }, z.ZodUnknown, "strip">[] | undefined;
2268
+ providerMetadata?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
2269
+ }>;
2270
+ export declare const sOverrideDeviceSpecsRequest: z.ZodObject<{
2271
+ id: z.ZodString;
2272
+ specs: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
2273
+ }, "strip", z.ZodTypeAny, {
2274
+ id: string;
2275
+ specs: {} & {
2276
+ [k: string]: unknown;
2277
+ };
2278
+ }, {
2279
+ id: string;
2280
+ specs: {} & {
2281
+ [k: string]: unknown;
2282
+ };
2283
+ }>;
2284
+ export declare const sAddDevicePresetRequest: z.ZodObject<{
2285
+ name: z.ZodString;
2286
+ params: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
2287
+ assignedRef: z.ZodNullable<z.ZodString>;
2288
+ isDefault: z.ZodBoolean;
2289
+ deviceId: z.ZodString;
2290
+ }, "strip", z.ZodTypeAny, {
2291
+ name: string;
2292
+ params: {} & {
2293
+ [k: string]: unknown;
2294
+ };
2295
+ isDefault: boolean;
2296
+ assignedRef: string | null;
2297
+ deviceId: string;
2298
+ }, {
2299
+ name: string;
2300
+ params: {} & {
2301
+ [k: string]: unknown;
2302
+ };
2303
+ isDefault: boolean;
2304
+ assignedRef: string | null;
2305
+ deviceId: string;
2306
+ }>;
2307
+ export declare const sUpdateDevicePresetRequest: z.ZodObject<{
2308
+ name: z.ZodOptional<z.ZodString>;
2309
+ isDefault: z.ZodOptional<z.ZodBoolean>;
2310
+ assignedRef: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2311
+ deviceId: z.ZodString;
2312
+ presetId: z.ZodString;
2313
+ }, "strip", z.ZodTypeAny, {
2314
+ presetId: string;
2315
+ deviceId: string;
2316
+ name?: string | undefined;
2317
+ isDefault?: boolean | undefined;
2318
+ assignedRef?: string | null | undefined;
2319
+ }, {
2320
+ presetId: string;
2321
+ deviceId: string;
2322
+ name?: string | undefined;
2323
+ isDefault?: boolean | undefined;
2324
+ assignedRef?: string | null | undefined;
2325
+ }>;
2326
+ export declare const sRemoveDevicePresetRequest: z.ZodObject<{
2327
+ deviceId: z.ZodString;
2328
+ presetId: z.ZodString;
2329
+ }, "strip", z.ZodTypeAny, {
2330
+ presetId: string;
2331
+ deviceId: string;
2332
+ }, {
2333
+ presetId: string;
2334
+ deviceId: string;
2335
+ }>;
2336
+ export declare const sSetUnsetRelationRequest: z.ZodObject<{
2337
+ leftId: z.ZodString;
2338
+ rightId: z.ZodString;
2339
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2340
+ }, "strip", z.ZodUnknown, z.objectOutputType<{
2341
+ leftId: z.ZodString;
2342
+ rightId: z.ZodString;
2343
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2344
+ }, z.ZodUnknown, "strip">, z.objectInputType<{
2345
+ leftId: z.ZodString;
2346
+ rightId: z.ZodString;
2347
+ kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
2348
+ }, z.ZodUnknown, "strip">>;
2349
+ export type DeviceType = z.infer<typeof sDeviceType>;
2350
+ export type PresetDto = z.infer<typeof sPresetDto>;
2351
+ export type DeviceDto = z.infer<typeof sDeviceDto>;
2352
+ export type CameraDto = z.infer<typeof sCameraDto>;
2353
+ export type DoorDto = z.infer<typeof sDoorDto>;
2354
+ export type ReaderDto = z.infer<typeof sReaderDto>;
2355
+ export type IoBoardDto = z.infer<typeof sIoBoardDto>;
2356
+ export type CameraLiftDto = z.infer<typeof sCameraLiftDto>;
2357
+ export type MotionSensorDto = z.infer<typeof sMotionSensorDto>;
2358
+ export type PanicButtonDto = z.infer<typeof sPanicButtonDto>;
2359
+ export type IntercomTerminalDto = z.infer<typeof sIntercomTerminalDto>;
2360
+ export type PbxDto = z.infer<typeof sPbxDto>;
2361
+ export type DeviceGatewayDto = z.infer<typeof sDeviceGatewayDto>;
2362
+ export type PresenceTrackerDto = z.infer<typeof sPresenceTrackerDto>;
2363
+ export type ServerDto = z.infer<typeof sServerDto>;
2364
+ export type AlarmDto = z.infer<typeof sAlarmDto>;
2365
+ export type IntercomOperatorDto = z.infer<typeof sIntercomOperatorDto>;
2366
+ export type AddDeviceRequest = z.infer<typeof sAddDeviceRequest>;
2367
+ export type UpdateDeviceRequest = z.infer<typeof sUpdateDeviceRequest>;
2368
+ export type OverrideDeviceSpecsRequest = z.infer<typeof sOverrideDeviceSpecsRequest>;
2369
+ export type AddDevicePresetRequest = z.infer<typeof sAddDevicePresetRequest>;
2370
+ export type UpdateDevicePresetRequest = z.infer<typeof sUpdateDevicePresetRequest>;
2371
+ export type RemoveDevicePresetRequest = z.infer<typeof sRemoveDevicePresetRequest>;
2372
+ export type SetUnsetDeviceRelationRequest = z.infer<typeof sSetUnsetRelationRequest>;
2373
+ export type DeviceSearchCriteria = {
2374
+ type: DeviceType;
2375
+ };
2376
+ export {};