@awarevue/api-types 2.0.52 → 2.0.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/agent-protocol/protocol.d.ts +853 -840
- package/dist/api/agent-protocol/protocol.js +14 -1
- package/dist/api/commands/all.d.ts +224 -224
- package/dist/api/commands/camera.d.ts +16 -16
- package/dist/api/commands/display.d.ts +48 -48
- package/dist/api/commands/nvr-exporter.d.ts +194 -194
- package/dist/api/commands/server.d.ts +202 -202
- package/dist/api/events/all.d.ts +30 -30
- package/dist/api/events/camera.d.ts +42 -42
- package/dist/api/events/door.d.ts +4 -4
- package/dist/api/events/intercom-terminal.d.ts +8 -8
- package/dist/api/events/io-board.d.ts +4 -4
- package/dist/api/queries/all.d.ts +225 -225
- package/dist/api/queries/camera.d.ts +8 -8
- package/dist/api/queries/nvr-analytics-server.d.ts +36 -36
- package/dist/api/queries/nvr-exporter.d.ts +18 -18
- package/dist/api/queries/nvr-recorder.d.ts +398 -398
- package/dist/api/rest/agreement.d.ts +5 -5
- package/dist/api/rest/app.d.ts +3 -0
- package/dist/api/rest/app.js +1 -0
- package/dist/api/rest/automation.d.ts +46 -46
- package/dist/api/rest/bookmarks.d.ts +12 -12
- package/dist/api/rest/custom-field.d.ts +5 -5
- package/dist/api/rest/device.d.ts +6 -6
- package/dist/api/rest/io-device.d.ts +14 -14
- package/dist/api/rest/layout.d.ts +16 -16
- package/dist/api/rest/macros.d.ts +13 -13
- package/dist/api/rest/media.d.ts +16 -16
- package/dist/api/rest/person.d.ts +12 -12
- package/dist/api/rest/query.d.ts +2 -2
- package/dist/api/rest/schedule.d.ts +24 -24
- package/dist/api/rest/security-level.d.ts +10 -10
- package/dist/api/rest/template.d.ts +4 -4
- package/dist/api/rest/token-conversion.d.ts +5 -5
- package/dist/api/rest/user.d.ts +17 -17
- package/dist/api/rest/view.d.ts +44 -44
- package/dist/api/ws/device-communication.d.ts +6 -6
- package/dist/api/ws/notifications.d.ts +4 -4
- package/dist/api/ws/progress.d.ts +15 -15
- package/dist/api/ws/web-rtc-signaling.d.ts +2 -2
- package/dist/objects/access-rule.d.ts +2 -2
- package/dist/objects/agent-metadata.d.ts +16 -16
- package/dist/objects/agreement.d.ts +2 -2
- package/dist/objects/api-key.d.ts +2 -2
- package/dist/objects/automation-rule.d.ts +34 -34
- package/dist/objects/bookmark.d.ts +8 -8
- package/dist/objects/credential.d.ts +2 -2
- package/dist/objects/custom-field.d.ts +2 -2
- package/dist/objects/device/any-device.d.ts +205 -205
- package/dist/objects/device/camera.d.ts +26 -26
- package/dist/objects/device/device-import.d.ts +277 -277
- package/dist/objects/device/door.d.ts +2 -2
- package/dist/objects/device/intercom-terminal.d.ts +2 -2
- package/dist/objects/layout.d.ts +16 -16
- package/dist/objects/macro.d.ts +14 -14
- package/dist/objects/notification.d.ts +4 -4
- package/dist/objects/person-presence.d.ts +12 -12
- package/dist/objects/person.d.ts +14 -14
- package/dist/objects/role.d.ts +2 -2
- package/dist/objects/schedule.d.ts +36 -36
- package/dist/objects/security-level.d.ts +6 -6
- package/dist/objects/template.d.ts +2 -2
- package/dist/objects/token-conversion.d.ts +2 -2
- package/dist/objects/user.d.ts +4 -4
- package/dist/objects/view.d.ts +58 -58
- package/dist/objects/zone.d.ts +2 -2
- package/dist/package.json +5 -1
- package/dist/primitives.d.ts +60 -60
- package/package.json +5 -1
|
@@ -72,12 +72,12 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
72
72
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
74
|
id: string;
|
|
75
|
-
height: number | null;
|
|
76
|
-
width: number | null;
|
|
77
75
|
displayName: string;
|
|
78
76
|
externalPlayerUrl: string | null;
|
|
79
77
|
rtspUrl: string | null;
|
|
80
78
|
recordingCapable: boolean;
|
|
79
|
+
width: number | null;
|
|
80
|
+
height: number | null;
|
|
81
81
|
lensType: "flat" | "fisheye";
|
|
82
82
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
83
83
|
webrtcPlaybackSource: ({
|
|
@@ -85,12 +85,12 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
85
85
|
} & Record<string, unknown>) | null;
|
|
86
86
|
}, {
|
|
87
87
|
id: string;
|
|
88
|
-
height: number | null;
|
|
89
|
-
width: number | null;
|
|
90
88
|
displayName: string;
|
|
91
89
|
externalPlayerUrl: string | null;
|
|
92
90
|
rtspUrl: string | null;
|
|
93
91
|
recordingCapable: boolean;
|
|
92
|
+
width: number | null;
|
|
93
|
+
height: number | null;
|
|
94
94
|
lensType: "flat" | "fisheye";
|
|
95
95
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
96
96
|
webrtcPlaybackSource: ({
|
|
@@ -103,20 +103,34 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
103
103
|
type: z.ZodLiteral<"camera">;
|
|
104
104
|
}, "strip", z.ZodTypeAny, {
|
|
105
105
|
type: "camera";
|
|
106
|
+
ptzCapable: boolean;
|
|
107
|
+
ptzPanSpeed: number;
|
|
108
|
+
ptzTiltSpeed: number;
|
|
109
|
+
ptzZoomSpeed: number;
|
|
110
|
+
panMin: number;
|
|
111
|
+
panMax: number;
|
|
112
|
+
tiltMin: number;
|
|
113
|
+
tiltMax: number;
|
|
114
|
+
zoomMin: number;
|
|
115
|
+
zoomMax: number;
|
|
106
116
|
streams: {
|
|
107
117
|
id: string;
|
|
108
|
-
height: number | null;
|
|
109
|
-
width: number | null;
|
|
110
118
|
displayName: string;
|
|
111
119
|
externalPlayerUrl: string | null;
|
|
112
120
|
rtspUrl: string | null;
|
|
113
121
|
recordingCapable: boolean;
|
|
122
|
+
width: number | null;
|
|
123
|
+
height: number | null;
|
|
114
124
|
lensType: "flat" | "fisheye";
|
|
115
125
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
116
126
|
webrtcPlaybackSource: ({
|
|
117
127
|
kind: string;
|
|
118
128
|
} & Record<string, unknown>) | null;
|
|
119
129
|
}[];
|
|
130
|
+
defaultStreamId: string;
|
|
131
|
+
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
132
|
+
}, {
|
|
133
|
+
type: "camera";
|
|
120
134
|
ptzCapable: boolean;
|
|
121
135
|
ptzPanSpeed: number;
|
|
122
136
|
ptzTiltSpeed: number;
|
|
@@ -127,36 +141,22 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
127
141
|
tiltMax: number;
|
|
128
142
|
zoomMin: number;
|
|
129
143
|
zoomMax: number;
|
|
130
|
-
defaultStreamId: string;
|
|
131
|
-
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
132
|
-
}, {
|
|
133
|
-
type: "camera";
|
|
134
144
|
streams: {
|
|
135
145
|
id: string;
|
|
136
|
-
height: number | null;
|
|
137
|
-
width: number | null;
|
|
138
146
|
displayName: string;
|
|
139
147
|
externalPlayerUrl: string | null;
|
|
140
148
|
rtspUrl: string | null;
|
|
141
149
|
recordingCapable: boolean;
|
|
150
|
+
width: number | null;
|
|
151
|
+
height: number | null;
|
|
142
152
|
lensType: "flat" | "fisheye";
|
|
143
153
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
144
154
|
webrtcPlaybackSource: ({
|
|
145
155
|
kind: string;
|
|
146
156
|
} & Record<string, unknown>) | null;
|
|
147
157
|
}[];
|
|
148
|
-
ptzCapable: boolean;
|
|
149
|
-
ptzPanSpeed: number;
|
|
150
|
-
ptzTiltSpeed: number;
|
|
151
|
-
ptzZoomSpeed: number;
|
|
152
|
-
panMin: number;
|
|
153
|
-
panMax: number;
|
|
154
|
-
tiltMin: number;
|
|
155
|
-
tiltMax: number;
|
|
156
|
-
zoomMin: number;
|
|
157
|
-
zoomMax: number;
|
|
158
158
|
defaultStreamId: string;
|
|
159
|
-
streamNaming: "
|
|
159
|
+
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
160
160
|
}>, z.ZodObject<{
|
|
161
161
|
canReportOpenState: z.ZodBoolean;
|
|
162
162
|
canReportLockState: z.ZodBoolean;
|
|
@@ -171,14 +171,14 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
171
171
|
canReportLockState: boolean;
|
|
172
172
|
canControlLock: boolean;
|
|
173
173
|
canRelease: boolean;
|
|
174
|
-
style?: "
|
|
174
|
+
style?: "single" | "double" | "sliding" | "hatch" | "roller" | "window" | undefined;
|
|
175
175
|
}, {
|
|
176
176
|
type: "door";
|
|
177
177
|
canReportOpenState: boolean;
|
|
178
178
|
canReportLockState: boolean;
|
|
179
179
|
canControlLock: boolean;
|
|
180
180
|
canRelease: boolean;
|
|
181
|
-
style?: "
|
|
181
|
+
style?: "single" | "double" | "sliding" | "hatch" | "roller" | "window" | undefined;
|
|
182
182
|
}>, z.ZodObject<{
|
|
183
183
|
inputs: z.ZodArray<z.ZodString, "many">;
|
|
184
184
|
outputs: z.ZodArray<z.ZodString, "many">;
|
|
@@ -313,16 +313,16 @@ export declare const sPresetDto: z.ZodObject<{
|
|
|
313
313
|
createdOn: z.ZodString;
|
|
314
314
|
lastModifiedOn: z.ZodString;
|
|
315
315
|
}, "strip", z.ZodTypeAny, {
|
|
316
|
-
name: string;
|
|
317
316
|
id: string;
|
|
317
|
+
name: string;
|
|
318
318
|
createdOn: string;
|
|
319
319
|
lastModifiedOn: string;
|
|
320
320
|
isDefault: boolean;
|
|
321
321
|
assignedRef: string | null;
|
|
322
322
|
params?: unknown;
|
|
323
323
|
}, {
|
|
324
|
-
name: string;
|
|
325
324
|
id: string;
|
|
325
|
+
name: string;
|
|
326
326
|
createdOn: string;
|
|
327
327
|
lastModifiedOn: string;
|
|
328
328
|
isDefault: boolean;
|
|
@@ -340,16 +340,16 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
340
340
|
createdOn: z.ZodString;
|
|
341
341
|
lastModifiedOn: z.ZodString;
|
|
342
342
|
}, "strip", z.ZodTypeAny, {
|
|
343
|
-
name: string;
|
|
344
343
|
id: string;
|
|
344
|
+
name: string;
|
|
345
345
|
createdOn: string;
|
|
346
346
|
lastModifiedOn: string;
|
|
347
347
|
isDefault: boolean;
|
|
348
348
|
assignedRef: string | null;
|
|
349
349
|
params?: unknown;
|
|
350
350
|
}, {
|
|
351
|
-
name: string;
|
|
352
351
|
id: string;
|
|
352
|
+
name: string;
|
|
353
353
|
createdOn: string;
|
|
354
354
|
lastModifiedOn: string;
|
|
355
355
|
isDefault: boolean;
|
|
@@ -374,14 +374,13 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
374
374
|
createdOn: z.ZodString;
|
|
375
375
|
lastModifiedOn: z.ZodString;
|
|
376
376
|
}, "strip", z.ZodTypeAny, {
|
|
377
|
-
groups: string[];
|
|
378
377
|
id: string;
|
|
379
378
|
createdOn: string;
|
|
380
379
|
lastModifiedOn: string;
|
|
381
380
|
enabled: boolean;
|
|
382
381
|
presets: {
|
|
383
|
-
name: string;
|
|
384
382
|
id: string;
|
|
383
|
+
name: string;
|
|
385
384
|
createdOn: string;
|
|
386
385
|
lastModifiedOn: string;
|
|
387
386
|
isDefault: boolean;
|
|
@@ -395,15 +394,15 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
395
394
|
id: z.ZodString;
|
|
396
395
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
397
396
|
}, z.ZodUnknown, "strip">[];
|
|
398
|
-
}, {
|
|
399
397
|
groups: string[];
|
|
398
|
+
}, {
|
|
400
399
|
id: string;
|
|
401
400
|
createdOn: string;
|
|
402
401
|
lastModifiedOn: string;
|
|
403
402
|
enabled: boolean;
|
|
404
403
|
presets: {
|
|
405
|
-
name: string;
|
|
406
404
|
id: string;
|
|
405
|
+
name: string;
|
|
407
406
|
createdOn: string;
|
|
408
407
|
lastModifiedOn: string;
|
|
409
408
|
isDefault: boolean;
|
|
@@ -417,6 +416,7 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
417
416
|
id: z.ZodString;
|
|
418
417
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
419
418
|
}, z.ZodUnknown, "strip">[];
|
|
419
|
+
groups: string[];
|
|
420
420
|
}>;
|
|
421
421
|
export declare const sForeignDeviceInfo: z.ZodObject<{
|
|
422
422
|
name: z.ZodString;
|
|
@@ -474,12 +474,12 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
474
474
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
475
475
|
}, "strip", z.ZodTypeAny, {
|
|
476
476
|
id: string;
|
|
477
|
-
height: number | null;
|
|
478
|
-
width: number | null;
|
|
479
477
|
displayName: string;
|
|
480
478
|
externalPlayerUrl: string | null;
|
|
481
479
|
rtspUrl: string | null;
|
|
482
480
|
recordingCapable: boolean;
|
|
481
|
+
width: number | null;
|
|
482
|
+
height: number | null;
|
|
483
483
|
lensType: "flat" | "fisheye";
|
|
484
484
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
485
485
|
webrtcPlaybackSource: ({
|
|
@@ -487,12 +487,12 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
487
487
|
} & Record<string, unknown>) | null;
|
|
488
488
|
}, {
|
|
489
489
|
id: string;
|
|
490
|
-
height: number | null;
|
|
491
|
-
width: number | null;
|
|
492
490
|
displayName: string;
|
|
493
491
|
externalPlayerUrl: string | null;
|
|
494
492
|
rtspUrl: string | null;
|
|
495
493
|
recordingCapable: boolean;
|
|
494
|
+
width: number | null;
|
|
495
|
+
height: number | null;
|
|
496
496
|
lensType: "flat" | "fisheye";
|
|
497
497
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
498
498
|
webrtcPlaybackSource: ({
|
|
@@ -505,20 +505,34 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
505
505
|
type: z.ZodLiteral<"camera">;
|
|
506
506
|
}, "strip", z.ZodTypeAny, {
|
|
507
507
|
type: "camera";
|
|
508
|
+
ptzCapable: boolean;
|
|
509
|
+
ptzPanSpeed: number;
|
|
510
|
+
ptzTiltSpeed: number;
|
|
511
|
+
ptzZoomSpeed: number;
|
|
512
|
+
panMin: number;
|
|
513
|
+
panMax: number;
|
|
514
|
+
tiltMin: number;
|
|
515
|
+
tiltMax: number;
|
|
516
|
+
zoomMin: number;
|
|
517
|
+
zoomMax: number;
|
|
508
518
|
streams: {
|
|
509
519
|
id: string;
|
|
510
|
-
height: number | null;
|
|
511
|
-
width: number | null;
|
|
512
520
|
displayName: string;
|
|
513
521
|
externalPlayerUrl: string | null;
|
|
514
522
|
rtspUrl: string | null;
|
|
515
523
|
recordingCapable: boolean;
|
|
524
|
+
width: number | null;
|
|
525
|
+
height: number | null;
|
|
516
526
|
lensType: "flat" | "fisheye";
|
|
517
527
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
518
528
|
webrtcPlaybackSource: ({
|
|
519
529
|
kind: string;
|
|
520
530
|
} & Record<string, unknown>) | null;
|
|
521
531
|
}[];
|
|
532
|
+
defaultStreamId: string;
|
|
533
|
+
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
534
|
+
}, {
|
|
535
|
+
type: "camera";
|
|
522
536
|
ptzCapable: boolean;
|
|
523
537
|
ptzPanSpeed: number;
|
|
524
538
|
ptzTiltSpeed: number;
|
|
@@ -529,36 +543,22 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
529
543
|
tiltMax: number;
|
|
530
544
|
zoomMin: number;
|
|
531
545
|
zoomMax: number;
|
|
532
|
-
defaultStreamId: string;
|
|
533
|
-
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
534
|
-
}, {
|
|
535
|
-
type: "camera";
|
|
536
546
|
streams: {
|
|
537
547
|
id: string;
|
|
538
|
-
height: number | null;
|
|
539
|
-
width: number | null;
|
|
540
548
|
displayName: string;
|
|
541
549
|
externalPlayerUrl: string | null;
|
|
542
550
|
rtspUrl: string | null;
|
|
543
551
|
recordingCapable: boolean;
|
|
552
|
+
width: number | null;
|
|
553
|
+
height: number | null;
|
|
544
554
|
lensType: "flat" | "fisheye";
|
|
545
555
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
546
556
|
webrtcPlaybackSource: ({
|
|
547
557
|
kind: string;
|
|
548
558
|
} & Record<string, unknown>) | null;
|
|
549
559
|
}[];
|
|
550
|
-
ptzCapable: boolean;
|
|
551
|
-
ptzPanSpeed: number;
|
|
552
|
-
ptzTiltSpeed: number;
|
|
553
|
-
ptzZoomSpeed: number;
|
|
554
|
-
panMin: number;
|
|
555
|
-
panMax: number;
|
|
556
|
-
tiltMin: number;
|
|
557
|
-
tiltMax: number;
|
|
558
|
-
zoomMin: number;
|
|
559
|
-
zoomMax: number;
|
|
560
560
|
defaultStreamId: string;
|
|
561
|
-
streamNaming: "
|
|
561
|
+
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
562
562
|
}>, z.ZodObject<{
|
|
563
563
|
canReportOpenState: z.ZodBoolean;
|
|
564
564
|
canReportLockState: z.ZodBoolean;
|
|
@@ -573,14 +573,14 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
573
573
|
canReportLockState: boolean;
|
|
574
574
|
canControlLock: boolean;
|
|
575
575
|
canRelease: boolean;
|
|
576
|
-
style?: "
|
|
576
|
+
style?: "single" | "double" | "sliding" | "hatch" | "roller" | "window" | undefined;
|
|
577
577
|
}, {
|
|
578
578
|
type: "door";
|
|
579
579
|
canReportOpenState: boolean;
|
|
580
580
|
canReportLockState: boolean;
|
|
581
581
|
canControlLock: boolean;
|
|
582
582
|
canRelease: boolean;
|
|
583
|
-
style?: "
|
|
583
|
+
style?: "single" | "double" | "sliding" | "hatch" | "roller" | "window" | undefined;
|
|
584
584
|
}>, z.ZodObject<{
|
|
585
585
|
inputs: z.ZodArray<z.ZodString, "many">;
|
|
586
586
|
outputs: z.ZodArray<z.ZodString, "many">;
|
|
@@ -715,16 +715,16 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
715
715
|
createdOn: z.ZodString;
|
|
716
716
|
lastModifiedOn: z.ZodString;
|
|
717
717
|
}, "strip", z.ZodTypeAny, {
|
|
718
|
-
name: string;
|
|
719
718
|
id: string;
|
|
719
|
+
name: string;
|
|
720
720
|
createdOn: string;
|
|
721
721
|
lastModifiedOn: string;
|
|
722
722
|
isDefault: boolean;
|
|
723
723
|
assignedRef: string | null;
|
|
724
724
|
params?: unknown;
|
|
725
725
|
}, {
|
|
726
|
-
name: string;
|
|
727
726
|
id: string;
|
|
727
|
+
name: string;
|
|
728
728
|
createdOn: string;
|
|
729
729
|
lastModifiedOn: string;
|
|
730
730
|
isDefault: boolean;
|
|
@@ -749,14 +749,13 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
749
749
|
createdOn: z.ZodString;
|
|
750
750
|
lastModifiedOn: z.ZodString;
|
|
751
751
|
}, "strip", z.ZodTypeAny, {
|
|
752
|
-
groups: string[];
|
|
753
752
|
id: string;
|
|
754
753
|
createdOn: string;
|
|
755
754
|
lastModifiedOn: string;
|
|
756
755
|
enabled: boolean;
|
|
757
756
|
presets: {
|
|
758
|
-
name: string;
|
|
759
757
|
id: string;
|
|
758
|
+
name: string;
|
|
760
759
|
createdOn: string;
|
|
761
760
|
lastModifiedOn: string;
|
|
762
761
|
isDefault: boolean;
|
|
@@ -770,15 +769,15 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
770
769
|
id: z.ZodString;
|
|
771
770
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
772
771
|
}, z.ZodUnknown, "strip">[];
|
|
773
|
-
}, {
|
|
774
772
|
groups: string[];
|
|
773
|
+
}, {
|
|
775
774
|
id: string;
|
|
776
775
|
createdOn: string;
|
|
777
776
|
lastModifiedOn: string;
|
|
778
777
|
enabled: boolean;
|
|
779
778
|
presets: {
|
|
780
|
-
name: string;
|
|
781
779
|
id: string;
|
|
780
|
+
name: string;
|
|
782
781
|
createdOn: string;
|
|
783
782
|
lastModifiedOn: string;
|
|
784
783
|
isDefault: boolean;
|
|
@@ -792,6 +791,7 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
792
791
|
id: z.ZodString;
|
|
793
792
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
794
793
|
}, z.ZodUnknown, "strip">[];
|
|
794
|
+
groups: string[];
|
|
795
795
|
}>>, z.ZodObject<{
|
|
796
796
|
name: z.ZodString;
|
|
797
797
|
foreignRef: z.ZodString;
|
|
@@ -842,12 +842,12 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
842
842
|
}>, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
843
843
|
}, "strip", z.ZodTypeAny, {
|
|
844
844
|
id: string;
|
|
845
|
-
height: number | null;
|
|
846
|
-
width: number | null;
|
|
847
845
|
displayName: string;
|
|
848
846
|
externalPlayerUrl: string | null;
|
|
849
847
|
rtspUrl: string | null;
|
|
850
848
|
recordingCapable: boolean;
|
|
849
|
+
width: number | null;
|
|
850
|
+
height: number | null;
|
|
851
851
|
lensType: "flat" | "fisheye";
|
|
852
852
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
853
853
|
webrtcPlaybackSource: ({
|
|
@@ -855,12 +855,12 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
855
855
|
} & Record<string, unknown>) | null;
|
|
856
856
|
}, {
|
|
857
857
|
id: string;
|
|
858
|
-
height: number | null;
|
|
859
|
-
width: number | null;
|
|
860
858
|
displayName: string;
|
|
861
859
|
externalPlayerUrl: string | null;
|
|
862
860
|
rtspUrl: string | null;
|
|
863
861
|
recordingCapable: boolean;
|
|
862
|
+
width: number | null;
|
|
863
|
+
height: number | null;
|
|
864
864
|
lensType: "flat" | "fisheye";
|
|
865
865
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
866
866
|
webrtcPlaybackSource: ({
|
|
@@ -873,20 +873,34 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
873
873
|
type: z.ZodLiteral<"camera">;
|
|
874
874
|
}, "strip", z.ZodTypeAny, {
|
|
875
875
|
type: "camera";
|
|
876
|
+
ptzCapable: boolean;
|
|
877
|
+
ptzPanSpeed: number;
|
|
878
|
+
ptzTiltSpeed: number;
|
|
879
|
+
ptzZoomSpeed: number;
|
|
880
|
+
panMin: number;
|
|
881
|
+
panMax: number;
|
|
882
|
+
tiltMin: number;
|
|
883
|
+
tiltMax: number;
|
|
884
|
+
zoomMin: number;
|
|
885
|
+
zoomMax: number;
|
|
876
886
|
streams: {
|
|
877
887
|
id: string;
|
|
878
|
-
height: number | null;
|
|
879
|
-
width: number | null;
|
|
880
888
|
displayName: string;
|
|
881
889
|
externalPlayerUrl: string | null;
|
|
882
890
|
rtspUrl: string | null;
|
|
883
891
|
recordingCapable: boolean;
|
|
892
|
+
width: number | null;
|
|
893
|
+
height: number | null;
|
|
884
894
|
lensType: "flat" | "fisheye";
|
|
885
895
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
886
896
|
webrtcPlaybackSource: ({
|
|
887
897
|
kind: string;
|
|
888
898
|
} & Record<string, unknown>) | null;
|
|
889
899
|
}[];
|
|
900
|
+
defaultStreamId: string;
|
|
901
|
+
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
902
|
+
}, {
|
|
903
|
+
type: "camera";
|
|
890
904
|
ptzCapable: boolean;
|
|
891
905
|
ptzPanSpeed: number;
|
|
892
906
|
ptzTiltSpeed: number;
|
|
@@ -897,36 +911,22 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
897
911
|
tiltMax: number;
|
|
898
912
|
zoomMin: number;
|
|
899
913
|
zoomMax: number;
|
|
900
|
-
defaultStreamId: string;
|
|
901
|
-
streamNaming: "stream" | "cameraStreamNo" | "cameraStream";
|
|
902
|
-
}, {
|
|
903
|
-
type: "camera";
|
|
904
914
|
streams: {
|
|
905
915
|
id: string;
|
|
906
|
-
height: number | null;
|
|
907
|
-
width: number | null;
|
|
908
916
|
displayName: string;
|
|
909
917
|
externalPlayerUrl: string | null;
|
|
910
918
|
rtspUrl: string | null;
|
|
911
919
|
recordingCapable: boolean;
|
|
920
|
+
width: number | null;
|
|
921
|
+
height: number | null;
|
|
912
922
|
lensType: "flat" | "fisheye";
|
|
913
923
|
mountPoint: "wall" | "ceiling" | "floor";
|
|
914
924
|
webrtcPlaybackSource: ({
|
|
915
925
|
kind: string;
|
|
916
926
|
} & Record<string, unknown>) | null;
|
|
917
927
|
}[];
|
|
918
|
-
ptzCapable: boolean;
|
|
919
|
-
ptzPanSpeed: number;
|
|
920
|
-
ptzTiltSpeed: number;
|
|
921
|
-
ptzZoomSpeed: number;
|
|
922
|
-
panMin: number;
|
|
923
|
-
panMax: number;
|
|
924
|
-
tiltMin: number;
|
|
925
|
-
tiltMax: number;
|
|
926
|
-
zoomMin: number;
|
|
927
|
-
zoomMax: number;
|
|
928
928
|
defaultStreamId: string;
|
|
929
|
-
streamNaming: "
|
|
929
|
+
streamNaming: "cameraStreamNo" | "cameraStream" | "stream";
|
|
930
930
|
}>, z.ZodObject<{
|
|
931
931
|
id: z.ZodString;
|
|
932
932
|
presets: z.ZodArray<z.ZodObject<{
|
|
@@ -938,16 +938,16 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
938
938
|
createdOn: z.ZodString;
|
|
939
939
|
lastModifiedOn: z.ZodString;
|
|
940
940
|
}, "strip", z.ZodTypeAny, {
|
|
941
|
-
name: string;
|
|
942
941
|
id: string;
|
|
942
|
+
name: string;
|
|
943
943
|
createdOn: string;
|
|
944
944
|
lastModifiedOn: string;
|
|
945
945
|
isDefault: boolean;
|
|
946
946
|
assignedRef: string | null;
|
|
947
947
|
params?: unknown;
|
|
948
948
|
}, {
|
|
949
|
-
name: string;
|
|
950
949
|
id: string;
|
|
950
|
+
name: string;
|
|
951
951
|
createdOn: string;
|
|
952
952
|
lastModifiedOn: string;
|
|
953
953
|
isDefault: boolean;
|
|
@@ -972,14 +972,13 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
972
972
|
createdOn: z.ZodString;
|
|
973
973
|
lastModifiedOn: z.ZodString;
|
|
974
974
|
}, "strip", z.ZodTypeAny, {
|
|
975
|
-
groups: string[];
|
|
976
975
|
id: string;
|
|
977
976
|
createdOn: string;
|
|
978
977
|
lastModifiedOn: string;
|
|
979
978
|
enabled: boolean;
|
|
980
979
|
presets: {
|
|
981
|
-
name: string;
|
|
982
980
|
id: string;
|
|
981
|
+
name: string;
|
|
983
982
|
createdOn: string;
|
|
984
983
|
lastModifiedOn: string;
|
|
985
984
|
isDefault: boolean;
|
|
@@ -993,15 +992,15 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
993
992
|
id: z.ZodString;
|
|
994
993
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
995
994
|
}, z.ZodUnknown, "strip">[];
|
|
996
|
-
}, {
|
|
997
995
|
groups: string[];
|
|
996
|
+
}, {
|
|
998
997
|
id: string;
|
|
999
998
|
createdOn: string;
|
|
1000
999
|
lastModifiedOn: string;
|
|
1001
1000
|
enabled: boolean;
|
|
1002
1001
|
presets: {
|
|
1003
|
-
name: string;
|
|
1004
1002
|
id: string;
|
|
1003
|
+
name: string;
|
|
1005
1004
|
createdOn: string;
|
|
1006
1005
|
lastModifiedOn: string;
|
|
1007
1006
|
isDefault: boolean;
|
|
@@ -1015,6 +1014,7 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1015
1014
|
id: z.ZodString;
|
|
1016
1015
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1017
1016
|
}, z.ZodUnknown, "strip">[];
|
|
1017
|
+
groups: string[];
|
|
1018
1018
|
}>>, z.ZodObject<{
|
|
1019
1019
|
name: z.ZodString;
|
|
1020
1020
|
foreignRef: z.ZodString;
|
|
@@ -1049,14 +1049,14 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1049
1049
|
canReportLockState: boolean;
|
|
1050
1050
|
canControlLock: boolean;
|
|
1051
1051
|
canRelease: boolean;
|
|
1052
|
-
style?: "
|
|
1052
|
+
style?: "single" | "double" | "sliding" | "hatch" | "roller" | "window" | undefined;
|
|
1053
1053
|
}, {
|
|
1054
1054
|
type: "door";
|
|
1055
1055
|
canReportOpenState: boolean;
|
|
1056
1056
|
canReportLockState: boolean;
|
|
1057
1057
|
canControlLock: boolean;
|
|
1058
1058
|
canRelease: boolean;
|
|
1059
|
-
style?: "
|
|
1059
|
+
style?: "single" | "double" | "sliding" | "hatch" | "roller" | "window" | undefined;
|
|
1060
1060
|
}>, z.ZodObject<{
|
|
1061
1061
|
id: z.ZodString;
|
|
1062
1062
|
presets: z.ZodArray<z.ZodObject<{
|
|
@@ -1068,16 +1068,16 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1068
1068
|
createdOn: z.ZodString;
|
|
1069
1069
|
lastModifiedOn: z.ZodString;
|
|
1070
1070
|
}, "strip", z.ZodTypeAny, {
|
|
1071
|
-
name: string;
|
|
1072
1071
|
id: string;
|
|
1072
|
+
name: string;
|
|
1073
1073
|
createdOn: string;
|
|
1074
1074
|
lastModifiedOn: string;
|
|
1075
1075
|
isDefault: boolean;
|
|
1076
1076
|
assignedRef: string | null;
|
|
1077
1077
|
params?: unknown;
|
|
1078
1078
|
}, {
|
|
1079
|
-
name: string;
|
|
1080
1079
|
id: string;
|
|
1080
|
+
name: string;
|
|
1081
1081
|
createdOn: string;
|
|
1082
1082
|
lastModifiedOn: string;
|
|
1083
1083
|
isDefault: boolean;
|
|
@@ -1102,14 +1102,13 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1102
1102
|
createdOn: z.ZodString;
|
|
1103
1103
|
lastModifiedOn: z.ZodString;
|
|
1104
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1105
|
-
groups: string[];
|
|
1106
1105
|
id: string;
|
|
1107
1106
|
createdOn: string;
|
|
1108
1107
|
lastModifiedOn: string;
|
|
1109
1108
|
enabled: boolean;
|
|
1110
1109
|
presets: {
|
|
1111
|
-
name: string;
|
|
1112
1110
|
id: string;
|
|
1111
|
+
name: string;
|
|
1113
1112
|
createdOn: string;
|
|
1114
1113
|
lastModifiedOn: string;
|
|
1115
1114
|
isDefault: boolean;
|
|
@@ -1123,15 +1122,15 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1123
1122
|
id: z.ZodString;
|
|
1124
1123
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1125
1124
|
}, z.ZodUnknown, "strip">[];
|
|
1126
|
-
}, {
|
|
1127
1125
|
groups: string[];
|
|
1126
|
+
}, {
|
|
1128
1127
|
id: string;
|
|
1129
1128
|
createdOn: string;
|
|
1130
1129
|
lastModifiedOn: string;
|
|
1131
1130
|
enabled: boolean;
|
|
1132
1131
|
presets: {
|
|
1133
|
-
name: string;
|
|
1134
1132
|
id: string;
|
|
1133
|
+
name: string;
|
|
1135
1134
|
createdOn: string;
|
|
1136
1135
|
lastModifiedOn: string;
|
|
1137
1136
|
isDefault: boolean;
|
|
@@ -1145,6 +1144,7 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1145
1144
|
id: z.ZodString;
|
|
1146
1145
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1147
1146
|
}, z.ZodUnknown, "strip">[];
|
|
1147
|
+
groups: string[];
|
|
1148
1148
|
}>>, z.ZodObject<{
|
|
1149
1149
|
name: z.ZodString;
|
|
1150
1150
|
foreignRef: z.ZodString;
|
|
@@ -1182,16 +1182,16 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1182
1182
|
createdOn: z.ZodString;
|
|
1183
1183
|
lastModifiedOn: z.ZodString;
|
|
1184
1184
|
}, "strip", z.ZodTypeAny, {
|
|
1185
|
-
name: string;
|
|
1186
1185
|
id: string;
|
|
1186
|
+
name: string;
|
|
1187
1187
|
createdOn: string;
|
|
1188
1188
|
lastModifiedOn: string;
|
|
1189
1189
|
isDefault: boolean;
|
|
1190
1190
|
assignedRef: string | null;
|
|
1191
1191
|
params?: unknown;
|
|
1192
1192
|
}, {
|
|
1193
|
-
name: string;
|
|
1194
1193
|
id: string;
|
|
1194
|
+
name: string;
|
|
1195
1195
|
createdOn: string;
|
|
1196
1196
|
lastModifiedOn: string;
|
|
1197
1197
|
isDefault: boolean;
|
|
@@ -1216,14 +1216,13 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1216
1216
|
createdOn: z.ZodString;
|
|
1217
1217
|
lastModifiedOn: z.ZodString;
|
|
1218
1218
|
}, "strip", z.ZodTypeAny, {
|
|
1219
|
-
groups: string[];
|
|
1220
1219
|
id: string;
|
|
1221
1220
|
createdOn: string;
|
|
1222
1221
|
lastModifiedOn: string;
|
|
1223
1222
|
enabled: boolean;
|
|
1224
1223
|
presets: {
|
|
1225
|
-
name: string;
|
|
1226
1224
|
id: string;
|
|
1225
|
+
name: string;
|
|
1227
1226
|
createdOn: string;
|
|
1228
1227
|
lastModifiedOn: string;
|
|
1229
1228
|
isDefault: boolean;
|
|
@@ -1237,15 +1236,15 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1237
1236
|
id: z.ZodString;
|
|
1238
1237
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1239
1238
|
}, z.ZodUnknown, "strip">[];
|
|
1240
|
-
}, {
|
|
1241
1239
|
groups: string[];
|
|
1240
|
+
}, {
|
|
1242
1241
|
id: string;
|
|
1243
1242
|
createdOn: string;
|
|
1244
1243
|
lastModifiedOn: string;
|
|
1245
1244
|
enabled: boolean;
|
|
1246
1245
|
presets: {
|
|
1247
|
-
name: string;
|
|
1248
1246
|
id: string;
|
|
1247
|
+
name: string;
|
|
1249
1248
|
createdOn: string;
|
|
1250
1249
|
lastModifiedOn: string;
|
|
1251
1250
|
isDefault: boolean;
|
|
@@ -1259,6 +1258,7 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1259
1258
|
id: z.ZodString;
|
|
1260
1259
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1261
1260
|
}, z.ZodUnknown, "strip">[];
|
|
1261
|
+
groups: string[];
|
|
1262
1262
|
}>>, z.ZodObject<{
|
|
1263
1263
|
name: z.ZodString;
|
|
1264
1264
|
foreignRef: z.ZodString;
|
|
@@ -1303,16 +1303,16 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1303
1303
|
createdOn: z.ZodString;
|
|
1304
1304
|
lastModifiedOn: z.ZodString;
|
|
1305
1305
|
}, "strip", z.ZodTypeAny, {
|
|
1306
|
-
name: string;
|
|
1307
1306
|
id: string;
|
|
1307
|
+
name: string;
|
|
1308
1308
|
createdOn: string;
|
|
1309
1309
|
lastModifiedOn: string;
|
|
1310
1310
|
isDefault: boolean;
|
|
1311
1311
|
assignedRef: string | null;
|
|
1312
1312
|
params?: unknown;
|
|
1313
1313
|
}, {
|
|
1314
|
-
name: string;
|
|
1315
1314
|
id: string;
|
|
1315
|
+
name: string;
|
|
1316
1316
|
createdOn: string;
|
|
1317
1317
|
lastModifiedOn: string;
|
|
1318
1318
|
isDefault: boolean;
|
|
@@ -1337,14 +1337,13 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1337
1337
|
createdOn: z.ZodString;
|
|
1338
1338
|
lastModifiedOn: z.ZodString;
|
|
1339
1339
|
}, "strip", z.ZodTypeAny, {
|
|
1340
|
-
groups: string[];
|
|
1341
1340
|
id: string;
|
|
1342
1341
|
createdOn: string;
|
|
1343
1342
|
lastModifiedOn: string;
|
|
1344
1343
|
enabled: boolean;
|
|
1345
1344
|
presets: {
|
|
1346
|
-
name: string;
|
|
1347
1345
|
id: string;
|
|
1346
|
+
name: string;
|
|
1348
1347
|
createdOn: string;
|
|
1349
1348
|
lastModifiedOn: string;
|
|
1350
1349
|
isDefault: boolean;
|
|
@@ -1358,15 +1357,15 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1358
1357
|
id: z.ZodString;
|
|
1359
1358
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1360
1359
|
}, z.ZodUnknown, "strip">[];
|
|
1361
|
-
}, {
|
|
1362
1360
|
groups: string[];
|
|
1361
|
+
}, {
|
|
1363
1362
|
id: string;
|
|
1364
1363
|
createdOn: string;
|
|
1365
1364
|
lastModifiedOn: string;
|
|
1366
1365
|
enabled: boolean;
|
|
1367
1366
|
presets: {
|
|
1368
|
-
name: string;
|
|
1369
1367
|
id: string;
|
|
1368
|
+
name: string;
|
|
1370
1369
|
createdOn: string;
|
|
1371
1370
|
lastModifiedOn: string;
|
|
1372
1371
|
isDefault: boolean;
|
|
@@ -1380,6 +1379,7 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1380
1379
|
id: z.ZodString;
|
|
1381
1380
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1382
1381
|
}, z.ZodUnknown, "strip">[];
|
|
1382
|
+
groups: string[];
|
|
1383
1383
|
}>>, z.ZodObject<{
|
|
1384
1384
|
name: z.ZodString;
|
|
1385
1385
|
foreignRef: z.ZodString;
|
|
@@ -1417,16 +1417,16 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
1417
1417
|
createdOn: z.ZodString;
|
|
1418
1418
|
lastModifiedOn: z.ZodString;
|
|
1419
1419
|
}, "strip", z.ZodTypeAny, {
|
|
1420
|
-
name: string;
|
|
1421
1420
|
id: string;
|
|
1421
|
+
name: string;
|
|
1422
1422
|
createdOn: string;
|
|
1423
1423
|
lastModifiedOn: string;
|
|
1424
1424
|
isDefault: boolean;
|
|
1425
1425
|
assignedRef: string | null;
|
|
1426
1426
|
params?: unknown;
|
|
1427
1427
|
}, {
|
|
1428
|
-
name: string;
|
|
1429
1428
|
id: string;
|
|
1429
|
+
name: string;
|
|
1430
1430
|
createdOn: string;
|
|
1431
1431
|
lastModifiedOn: string;
|
|
1432
1432
|
isDefault: boolean;
|
|
@@ -1451,14 +1451,13 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
1451
1451
|
createdOn: z.ZodString;
|
|
1452
1452
|
lastModifiedOn: z.ZodString;
|
|
1453
1453
|
}, "strip", z.ZodTypeAny, {
|
|
1454
|
-
groups: string[];
|
|
1455
1454
|
id: string;
|
|
1456
1455
|
createdOn: string;
|
|
1457
1456
|
lastModifiedOn: string;
|
|
1458
1457
|
enabled: boolean;
|
|
1459
1458
|
presets: {
|
|
1460
|
-
name: string;
|
|
1461
1459
|
id: string;
|
|
1460
|
+
name: string;
|
|
1462
1461
|
createdOn: string;
|
|
1463
1462
|
lastModifiedOn: string;
|
|
1464
1463
|
isDefault: boolean;
|
|
@@ -1472,15 +1471,15 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
1472
1471
|
id: z.ZodString;
|
|
1473
1472
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1474
1473
|
}, z.ZodUnknown, "strip">[];
|
|
1475
|
-
}, {
|
|
1476
1474
|
groups: string[];
|
|
1475
|
+
}, {
|
|
1477
1476
|
id: string;
|
|
1478
1477
|
createdOn: string;
|
|
1479
1478
|
lastModifiedOn: string;
|
|
1480
1479
|
enabled: boolean;
|
|
1481
1480
|
presets: {
|
|
1482
|
-
name: string;
|
|
1483
1481
|
id: string;
|
|
1482
|
+
name: string;
|
|
1484
1483
|
createdOn: string;
|
|
1485
1484
|
lastModifiedOn: string;
|
|
1486
1485
|
isDefault: boolean;
|
|
@@ -1494,6 +1493,7 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
1494
1493
|
id: z.ZodString;
|
|
1495
1494
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1496
1495
|
}, z.ZodUnknown, "strip">[];
|
|
1496
|
+
groups: string[];
|
|
1497
1497
|
}>>, z.ZodObject<{
|
|
1498
1498
|
name: z.ZodString;
|
|
1499
1499
|
foreignRef: z.ZodString;
|
|
@@ -1531,16 +1531,16 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1531
1531
|
createdOn: z.ZodString;
|
|
1532
1532
|
lastModifiedOn: z.ZodString;
|
|
1533
1533
|
}, "strip", z.ZodTypeAny, {
|
|
1534
|
-
name: string;
|
|
1535
1534
|
id: string;
|
|
1535
|
+
name: string;
|
|
1536
1536
|
createdOn: string;
|
|
1537
1537
|
lastModifiedOn: string;
|
|
1538
1538
|
isDefault: boolean;
|
|
1539
1539
|
assignedRef: string | null;
|
|
1540
1540
|
params?: unknown;
|
|
1541
1541
|
}, {
|
|
1542
|
-
name: string;
|
|
1543
1542
|
id: string;
|
|
1543
|
+
name: string;
|
|
1544
1544
|
createdOn: string;
|
|
1545
1545
|
lastModifiedOn: string;
|
|
1546
1546
|
isDefault: boolean;
|
|
@@ -1565,14 +1565,13 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1565
1565
|
createdOn: z.ZodString;
|
|
1566
1566
|
lastModifiedOn: z.ZodString;
|
|
1567
1567
|
}, "strip", z.ZodTypeAny, {
|
|
1568
|
-
groups: string[];
|
|
1569
1568
|
id: string;
|
|
1570
1569
|
createdOn: string;
|
|
1571
1570
|
lastModifiedOn: string;
|
|
1572
1571
|
enabled: boolean;
|
|
1573
1572
|
presets: {
|
|
1574
|
-
name: string;
|
|
1575
1573
|
id: string;
|
|
1574
|
+
name: string;
|
|
1576
1575
|
createdOn: string;
|
|
1577
1576
|
lastModifiedOn: string;
|
|
1578
1577
|
isDefault: boolean;
|
|
@@ -1586,15 +1585,15 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1586
1585
|
id: z.ZodString;
|
|
1587
1586
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1588
1587
|
}, z.ZodUnknown, "strip">[];
|
|
1589
|
-
}, {
|
|
1590
1588
|
groups: string[];
|
|
1589
|
+
}, {
|
|
1591
1590
|
id: string;
|
|
1592
1591
|
createdOn: string;
|
|
1593
1592
|
lastModifiedOn: string;
|
|
1594
1593
|
enabled: boolean;
|
|
1595
1594
|
presets: {
|
|
1596
|
-
name: string;
|
|
1597
1595
|
id: string;
|
|
1596
|
+
name: string;
|
|
1598
1597
|
createdOn: string;
|
|
1599
1598
|
lastModifiedOn: string;
|
|
1600
1599
|
isDefault: boolean;
|
|
@@ -1608,6 +1607,7 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1608
1607
|
id: z.ZodString;
|
|
1609
1608
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1610
1609
|
}, z.ZodUnknown, "strip">[];
|
|
1610
|
+
groups: string[];
|
|
1611
1611
|
}>>, z.ZodObject<{
|
|
1612
1612
|
name: z.ZodString;
|
|
1613
1613
|
foreignRef: z.ZodString;
|
|
@@ -1645,16 +1645,16 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1645
1645
|
createdOn: z.ZodString;
|
|
1646
1646
|
lastModifiedOn: z.ZodString;
|
|
1647
1647
|
}, "strip", z.ZodTypeAny, {
|
|
1648
|
-
name: string;
|
|
1649
1648
|
id: string;
|
|
1649
|
+
name: string;
|
|
1650
1650
|
createdOn: string;
|
|
1651
1651
|
lastModifiedOn: string;
|
|
1652
1652
|
isDefault: boolean;
|
|
1653
1653
|
assignedRef: string | null;
|
|
1654
1654
|
params?: unknown;
|
|
1655
1655
|
}, {
|
|
1656
|
-
name: string;
|
|
1657
1656
|
id: string;
|
|
1657
|
+
name: string;
|
|
1658
1658
|
createdOn: string;
|
|
1659
1659
|
lastModifiedOn: string;
|
|
1660
1660
|
isDefault: boolean;
|
|
@@ -1679,14 +1679,13 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1679
1679
|
createdOn: z.ZodString;
|
|
1680
1680
|
lastModifiedOn: z.ZodString;
|
|
1681
1681
|
}, "strip", z.ZodTypeAny, {
|
|
1682
|
-
groups: string[];
|
|
1683
1682
|
id: string;
|
|
1684
1683
|
createdOn: string;
|
|
1685
1684
|
lastModifiedOn: string;
|
|
1686
1685
|
enabled: boolean;
|
|
1687
1686
|
presets: {
|
|
1688
|
-
name: string;
|
|
1689
1687
|
id: string;
|
|
1688
|
+
name: string;
|
|
1690
1689
|
createdOn: string;
|
|
1691
1690
|
lastModifiedOn: string;
|
|
1692
1691
|
isDefault: boolean;
|
|
@@ -1700,15 +1699,15 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1700
1699
|
id: z.ZodString;
|
|
1701
1700
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1702
1701
|
}, z.ZodUnknown, "strip">[];
|
|
1703
|
-
}, {
|
|
1704
1702
|
groups: string[];
|
|
1703
|
+
}, {
|
|
1705
1704
|
id: string;
|
|
1706
1705
|
createdOn: string;
|
|
1707
1706
|
lastModifiedOn: string;
|
|
1708
1707
|
enabled: boolean;
|
|
1709
1708
|
presets: {
|
|
1710
|
-
name: string;
|
|
1711
1709
|
id: string;
|
|
1710
|
+
name: string;
|
|
1712
1711
|
createdOn: string;
|
|
1713
1712
|
lastModifiedOn: string;
|
|
1714
1713
|
isDefault: boolean;
|
|
@@ -1722,6 +1721,7 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1722
1721
|
id: z.ZodString;
|
|
1723
1722
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1724
1723
|
}, z.ZodUnknown, "strip">[];
|
|
1724
|
+
groups: string[];
|
|
1725
1725
|
}>>, z.ZodObject<{
|
|
1726
1726
|
name: z.ZodString;
|
|
1727
1727
|
foreignRef: z.ZodString;
|
|
@@ -1775,16 +1775,16 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1775
1775
|
createdOn: z.ZodString;
|
|
1776
1776
|
lastModifiedOn: z.ZodString;
|
|
1777
1777
|
}, "strip", z.ZodTypeAny, {
|
|
1778
|
-
name: string;
|
|
1779
1778
|
id: string;
|
|
1779
|
+
name: string;
|
|
1780
1780
|
createdOn: string;
|
|
1781
1781
|
lastModifiedOn: string;
|
|
1782
1782
|
isDefault: boolean;
|
|
1783
1783
|
assignedRef: string | null;
|
|
1784
1784
|
params?: unknown;
|
|
1785
1785
|
}, {
|
|
1786
|
-
name: string;
|
|
1787
1786
|
id: string;
|
|
1787
|
+
name: string;
|
|
1788
1788
|
createdOn: string;
|
|
1789
1789
|
lastModifiedOn: string;
|
|
1790
1790
|
isDefault: boolean;
|
|
@@ -1809,14 +1809,13 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1809
1809
|
createdOn: z.ZodString;
|
|
1810
1810
|
lastModifiedOn: z.ZodString;
|
|
1811
1811
|
}, "strip", z.ZodTypeAny, {
|
|
1812
|
-
groups: string[];
|
|
1813
1812
|
id: string;
|
|
1814
1813
|
createdOn: string;
|
|
1815
1814
|
lastModifiedOn: string;
|
|
1816
1815
|
enabled: boolean;
|
|
1817
1816
|
presets: {
|
|
1818
|
-
name: string;
|
|
1819
1817
|
id: string;
|
|
1818
|
+
name: string;
|
|
1820
1819
|
createdOn: string;
|
|
1821
1820
|
lastModifiedOn: string;
|
|
1822
1821
|
isDefault: boolean;
|
|
@@ -1830,15 +1829,15 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1830
1829
|
id: z.ZodString;
|
|
1831
1830
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1832
1831
|
}, z.ZodUnknown, "strip">[];
|
|
1833
|
-
}, {
|
|
1834
1832
|
groups: string[];
|
|
1833
|
+
}, {
|
|
1835
1834
|
id: string;
|
|
1836
1835
|
createdOn: string;
|
|
1837
1836
|
lastModifiedOn: string;
|
|
1838
1837
|
enabled: boolean;
|
|
1839
1838
|
presets: {
|
|
1840
|
-
name: string;
|
|
1841
1839
|
id: string;
|
|
1840
|
+
name: string;
|
|
1842
1841
|
createdOn: string;
|
|
1843
1842
|
lastModifiedOn: string;
|
|
1844
1843
|
isDefault: boolean;
|
|
@@ -1852,6 +1851,7 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1852
1851
|
id: z.ZodString;
|
|
1853
1852
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1854
1853
|
}, z.ZodUnknown, "strip">[];
|
|
1854
|
+
groups: string[];
|
|
1855
1855
|
}>>, z.ZodObject<{
|
|
1856
1856
|
name: z.ZodString;
|
|
1857
1857
|
foreignRef: z.ZodString;
|
|
@@ -1893,16 +1893,16 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1893
1893
|
createdOn: z.ZodString;
|
|
1894
1894
|
lastModifiedOn: z.ZodString;
|
|
1895
1895
|
}, "strip", z.ZodTypeAny, {
|
|
1896
|
-
name: string;
|
|
1897
1896
|
id: string;
|
|
1897
|
+
name: string;
|
|
1898
1898
|
createdOn: string;
|
|
1899
1899
|
lastModifiedOn: string;
|
|
1900
1900
|
isDefault: boolean;
|
|
1901
1901
|
assignedRef: string | null;
|
|
1902
1902
|
params?: unknown;
|
|
1903
1903
|
}, {
|
|
1904
|
-
name: string;
|
|
1905
1904
|
id: string;
|
|
1905
|
+
name: string;
|
|
1906
1906
|
createdOn: string;
|
|
1907
1907
|
lastModifiedOn: string;
|
|
1908
1908
|
isDefault: boolean;
|
|
@@ -1927,14 +1927,13 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1927
1927
|
createdOn: z.ZodString;
|
|
1928
1928
|
lastModifiedOn: z.ZodString;
|
|
1929
1929
|
}, "strip", z.ZodTypeAny, {
|
|
1930
|
-
groups: string[];
|
|
1931
1930
|
id: string;
|
|
1932
1931
|
createdOn: string;
|
|
1933
1932
|
lastModifiedOn: string;
|
|
1934
1933
|
enabled: boolean;
|
|
1935
1934
|
presets: {
|
|
1936
|
-
name: string;
|
|
1937
1935
|
id: string;
|
|
1936
|
+
name: string;
|
|
1938
1937
|
createdOn: string;
|
|
1939
1938
|
lastModifiedOn: string;
|
|
1940
1939
|
isDefault: boolean;
|
|
@@ -1948,15 +1947,15 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1948
1947
|
id: z.ZodString;
|
|
1949
1948
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1950
1949
|
}, z.ZodUnknown, "strip">[];
|
|
1951
|
-
}, {
|
|
1952
1950
|
groups: string[];
|
|
1951
|
+
}, {
|
|
1953
1952
|
id: string;
|
|
1954
1953
|
createdOn: string;
|
|
1955
1954
|
lastModifiedOn: string;
|
|
1956
1955
|
enabled: boolean;
|
|
1957
1956
|
presets: {
|
|
1958
|
-
name: string;
|
|
1959
1957
|
id: string;
|
|
1958
|
+
name: string;
|
|
1960
1959
|
createdOn: string;
|
|
1961
1960
|
lastModifiedOn: string;
|
|
1962
1961
|
isDefault: boolean;
|
|
@@ -1970,6 +1969,7 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1970
1969
|
id: z.ZodString;
|
|
1971
1970
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1972
1971
|
}, z.ZodUnknown, "strip">[];
|
|
1972
|
+
groups: string[];
|
|
1973
1973
|
}>>, z.ZodObject<{
|
|
1974
1974
|
name: z.ZodString;
|
|
1975
1975
|
foreignRef: z.ZodString;
|
|
@@ -2007,16 +2007,16 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
2007
2007
|
createdOn: z.ZodString;
|
|
2008
2008
|
lastModifiedOn: z.ZodString;
|
|
2009
2009
|
}, "strip", z.ZodTypeAny, {
|
|
2010
|
-
name: string;
|
|
2011
2010
|
id: string;
|
|
2011
|
+
name: string;
|
|
2012
2012
|
createdOn: string;
|
|
2013
2013
|
lastModifiedOn: string;
|
|
2014
2014
|
isDefault: boolean;
|
|
2015
2015
|
assignedRef: string | null;
|
|
2016
2016
|
params?: unknown;
|
|
2017
2017
|
}, {
|
|
2018
|
-
name: string;
|
|
2019
2018
|
id: string;
|
|
2019
|
+
name: string;
|
|
2020
2020
|
createdOn: string;
|
|
2021
2021
|
lastModifiedOn: string;
|
|
2022
2022
|
isDefault: boolean;
|
|
@@ -2041,14 +2041,13 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
2041
2041
|
createdOn: z.ZodString;
|
|
2042
2042
|
lastModifiedOn: z.ZodString;
|
|
2043
2043
|
}, "strip", z.ZodTypeAny, {
|
|
2044
|
-
groups: string[];
|
|
2045
2044
|
id: string;
|
|
2046
2045
|
createdOn: string;
|
|
2047
2046
|
lastModifiedOn: string;
|
|
2048
2047
|
enabled: boolean;
|
|
2049
2048
|
presets: {
|
|
2050
|
-
name: string;
|
|
2051
2049
|
id: string;
|
|
2050
|
+
name: string;
|
|
2052
2051
|
createdOn: string;
|
|
2053
2052
|
lastModifiedOn: string;
|
|
2054
2053
|
isDefault: boolean;
|
|
@@ -2062,15 +2061,15 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
2062
2061
|
id: z.ZodString;
|
|
2063
2062
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2064
2063
|
}, z.ZodUnknown, "strip">[];
|
|
2065
|
-
}, {
|
|
2066
2064
|
groups: string[];
|
|
2065
|
+
}, {
|
|
2067
2066
|
id: string;
|
|
2068
2067
|
createdOn: string;
|
|
2069
2068
|
lastModifiedOn: string;
|
|
2070
2069
|
enabled: boolean;
|
|
2071
2070
|
presets: {
|
|
2072
|
-
name: string;
|
|
2073
2071
|
id: string;
|
|
2072
|
+
name: string;
|
|
2074
2073
|
createdOn: string;
|
|
2075
2074
|
lastModifiedOn: string;
|
|
2076
2075
|
isDefault: boolean;
|
|
@@ -2084,6 +2083,7 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
2084
2083
|
id: z.ZodString;
|
|
2085
2084
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2086
2085
|
}, z.ZodUnknown, "strip">[];
|
|
2086
|
+
groups: string[];
|
|
2087
2087
|
}>>, z.ZodObject<{
|
|
2088
2088
|
name: z.ZodString;
|
|
2089
2089
|
foreignRef: z.ZodString;
|
|
@@ -2121,16 +2121,16 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
2121
2121
|
createdOn: z.ZodString;
|
|
2122
2122
|
lastModifiedOn: z.ZodString;
|
|
2123
2123
|
}, "strip", z.ZodTypeAny, {
|
|
2124
|
-
name: string;
|
|
2125
2124
|
id: string;
|
|
2125
|
+
name: string;
|
|
2126
2126
|
createdOn: string;
|
|
2127
2127
|
lastModifiedOn: string;
|
|
2128
2128
|
isDefault: boolean;
|
|
2129
2129
|
assignedRef: string | null;
|
|
2130
2130
|
params?: unknown;
|
|
2131
2131
|
}, {
|
|
2132
|
-
name: string;
|
|
2133
2132
|
id: string;
|
|
2133
|
+
name: string;
|
|
2134
2134
|
createdOn: string;
|
|
2135
2135
|
lastModifiedOn: string;
|
|
2136
2136
|
isDefault: boolean;
|
|
@@ -2155,14 +2155,13 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
2155
2155
|
createdOn: z.ZodString;
|
|
2156
2156
|
lastModifiedOn: z.ZodString;
|
|
2157
2157
|
}, "strip", z.ZodTypeAny, {
|
|
2158
|
-
groups: string[];
|
|
2159
2158
|
id: string;
|
|
2160
2159
|
createdOn: string;
|
|
2161
2160
|
lastModifiedOn: string;
|
|
2162
2161
|
enabled: boolean;
|
|
2163
2162
|
presets: {
|
|
2164
|
-
name: string;
|
|
2165
2163
|
id: string;
|
|
2164
|
+
name: string;
|
|
2166
2165
|
createdOn: string;
|
|
2167
2166
|
lastModifiedOn: string;
|
|
2168
2167
|
isDefault: boolean;
|
|
@@ -2176,15 +2175,15 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
2176
2175
|
id: z.ZodString;
|
|
2177
2176
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2178
2177
|
}, z.ZodUnknown, "strip">[];
|
|
2179
|
-
}, {
|
|
2180
2178
|
groups: string[];
|
|
2179
|
+
}, {
|
|
2181
2180
|
id: string;
|
|
2182
2181
|
createdOn: string;
|
|
2183
2182
|
lastModifiedOn: string;
|
|
2184
2183
|
enabled: boolean;
|
|
2185
2184
|
presets: {
|
|
2186
|
-
name: string;
|
|
2187
2185
|
id: string;
|
|
2186
|
+
name: string;
|
|
2188
2187
|
createdOn: string;
|
|
2189
2188
|
lastModifiedOn: string;
|
|
2190
2189
|
isDefault: boolean;
|
|
@@ -2198,6 +2197,7 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
2198
2197
|
id: z.ZodString;
|
|
2199
2198
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2200
2199
|
}, z.ZodUnknown, "strip">[];
|
|
2200
|
+
groups: string[];
|
|
2201
2201
|
}>>, z.ZodObject<{
|
|
2202
2202
|
name: z.ZodString;
|
|
2203
2203
|
foreignRef: z.ZodString;
|
|
@@ -2235,16 +2235,16 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
2235
2235
|
createdOn: z.ZodString;
|
|
2236
2236
|
lastModifiedOn: z.ZodString;
|
|
2237
2237
|
}, "strip", z.ZodTypeAny, {
|
|
2238
|
-
name: string;
|
|
2239
2238
|
id: string;
|
|
2239
|
+
name: string;
|
|
2240
2240
|
createdOn: string;
|
|
2241
2241
|
lastModifiedOn: string;
|
|
2242
2242
|
isDefault: boolean;
|
|
2243
2243
|
assignedRef: string | null;
|
|
2244
2244
|
params?: unknown;
|
|
2245
2245
|
}, {
|
|
2246
|
-
name: string;
|
|
2247
2246
|
id: string;
|
|
2247
|
+
name: string;
|
|
2248
2248
|
createdOn: string;
|
|
2249
2249
|
lastModifiedOn: string;
|
|
2250
2250
|
isDefault: boolean;
|
|
@@ -2269,14 +2269,13 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
2269
2269
|
createdOn: z.ZodString;
|
|
2270
2270
|
lastModifiedOn: z.ZodString;
|
|
2271
2271
|
}, "strip", z.ZodTypeAny, {
|
|
2272
|
-
groups: string[];
|
|
2273
2272
|
id: string;
|
|
2274
2273
|
createdOn: string;
|
|
2275
2274
|
lastModifiedOn: string;
|
|
2276
2275
|
enabled: boolean;
|
|
2277
2276
|
presets: {
|
|
2278
|
-
name: string;
|
|
2279
2277
|
id: string;
|
|
2278
|
+
name: string;
|
|
2280
2279
|
createdOn: string;
|
|
2281
2280
|
lastModifiedOn: string;
|
|
2282
2281
|
isDefault: boolean;
|
|
@@ -2290,15 +2289,15 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
2290
2289
|
id: z.ZodString;
|
|
2291
2290
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2292
2291
|
}, z.ZodUnknown, "strip">[];
|
|
2293
|
-
}, {
|
|
2294
2292
|
groups: string[];
|
|
2293
|
+
}, {
|
|
2295
2294
|
id: string;
|
|
2296
2295
|
createdOn: string;
|
|
2297
2296
|
lastModifiedOn: string;
|
|
2298
2297
|
enabled: boolean;
|
|
2299
2298
|
presets: {
|
|
2300
|
-
name: string;
|
|
2301
2299
|
id: string;
|
|
2300
|
+
name: string;
|
|
2302
2301
|
createdOn: string;
|
|
2303
2302
|
lastModifiedOn: string;
|
|
2304
2303
|
isDefault: boolean;
|
|
@@ -2312,6 +2311,7 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
2312
2311
|
id: z.ZodString;
|
|
2313
2312
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2314
2313
|
}, z.ZodUnknown, "strip">[];
|
|
2314
|
+
groups: string[];
|
|
2315
2315
|
}>>, z.ZodObject<{
|
|
2316
2316
|
name: z.ZodString;
|
|
2317
2317
|
foreignRef: z.ZodString;
|
|
@@ -2349,16 +2349,16 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
2349
2349
|
createdOn: z.ZodString;
|
|
2350
2350
|
lastModifiedOn: z.ZodString;
|
|
2351
2351
|
}, "strip", z.ZodTypeAny, {
|
|
2352
|
-
name: string;
|
|
2353
2352
|
id: string;
|
|
2353
|
+
name: string;
|
|
2354
2354
|
createdOn: string;
|
|
2355
2355
|
lastModifiedOn: string;
|
|
2356
2356
|
isDefault: boolean;
|
|
2357
2357
|
assignedRef: string | null;
|
|
2358
2358
|
params?: unknown;
|
|
2359
2359
|
}, {
|
|
2360
|
-
name: string;
|
|
2361
2360
|
id: string;
|
|
2361
|
+
name: string;
|
|
2362
2362
|
createdOn: string;
|
|
2363
2363
|
lastModifiedOn: string;
|
|
2364
2364
|
isDefault: boolean;
|
|
@@ -2383,14 +2383,13 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
2383
2383
|
createdOn: z.ZodString;
|
|
2384
2384
|
lastModifiedOn: z.ZodString;
|
|
2385
2385
|
}, "strip", z.ZodTypeAny, {
|
|
2386
|
-
groups: string[];
|
|
2387
2386
|
id: string;
|
|
2388
2387
|
createdOn: string;
|
|
2389
2388
|
lastModifiedOn: string;
|
|
2390
2389
|
enabled: boolean;
|
|
2391
2390
|
presets: {
|
|
2392
|
-
name: string;
|
|
2393
2391
|
id: string;
|
|
2392
|
+
name: string;
|
|
2394
2393
|
createdOn: string;
|
|
2395
2394
|
lastModifiedOn: string;
|
|
2396
2395
|
isDefault: boolean;
|
|
@@ -2404,15 +2403,15 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
2404
2403
|
id: z.ZodString;
|
|
2405
2404
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2406
2405
|
}, z.ZodUnknown, "strip">[];
|
|
2407
|
-
}, {
|
|
2408
2406
|
groups: string[];
|
|
2407
|
+
}, {
|
|
2409
2408
|
id: string;
|
|
2410
2409
|
createdOn: string;
|
|
2411
2410
|
lastModifiedOn: string;
|
|
2412
2411
|
enabled: boolean;
|
|
2413
2412
|
presets: {
|
|
2414
|
-
name: string;
|
|
2415
2413
|
id: string;
|
|
2414
|
+
name: string;
|
|
2416
2415
|
createdOn: string;
|
|
2417
2416
|
lastModifiedOn: string;
|
|
2418
2417
|
isDefault: boolean;
|
|
@@ -2426,6 +2425,7 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
2426
2425
|
id: z.ZodString;
|
|
2427
2426
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2428
2427
|
}, z.ZodUnknown, "strip">[];
|
|
2428
|
+
groups: string[];
|
|
2429
2429
|
}>>, z.ZodObject<{
|
|
2430
2430
|
name: z.ZodString;
|
|
2431
2431
|
foreignRef: z.ZodString;
|
|
@@ -2463,16 +2463,16 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
2463
2463
|
createdOn: z.ZodString;
|
|
2464
2464
|
lastModifiedOn: z.ZodString;
|
|
2465
2465
|
}, "strip", z.ZodTypeAny, {
|
|
2466
|
-
name: string;
|
|
2467
2466
|
id: string;
|
|
2467
|
+
name: string;
|
|
2468
2468
|
createdOn: string;
|
|
2469
2469
|
lastModifiedOn: string;
|
|
2470
2470
|
isDefault: boolean;
|
|
2471
2471
|
assignedRef: string | null;
|
|
2472
2472
|
params?: unknown;
|
|
2473
2473
|
}, {
|
|
2474
|
-
name: string;
|
|
2475
2474
|
id: string;
|
|
2475
|
+
name: string;
|
|
2476
2476
|
createdOn: string;
|
|
2477
2477
|
lastModifiedOn: string;
|
|
2478
2478
|
isDefault: boolean;
|
|
@@ -2497,14 +2497,13 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
2497
2497
|
createdOn: z.ZodString;
|
|
2498
2498
|
lastModifiedOn: z.ZodString;
|
|
2499
2499
|
}, "strip", z.ZodTypeAny, {
|
|
2500
|
-
groups: string[];
|
|
2501
2500
|
id: string;
|
|
2502
2501
|
createdOn: string;
|
|
2503
2502
|
lastModifiedOn: string;
|
|
2504
2503
|
enabled: boolean;
|
|
2505
2504
|
presets: {
|
|
2506
|
-
name: string;
|
|
2507
2505
|
id: string;
|
|
2506
|
+
name: string;
|
|
2508
2507
|
createdOn: string;
|
|
2509
2508
|
lastModifiedOn: string;
|
|
2510
2509
|
isDefault: boolean;
|
|
@@ -2518,15 +2517,15 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
2518
2517
|
id: z.ZodString;
|
|
2519
2518
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2520
2519
|
}, z.ZodUnknown, "strip">[];
|
|
2521
|
-
}, {
|
|
2522
2520
|
groups: string[];
|
|
2521
|
+
}, {
|
|
2523
2522
|
id: string;
|
|
2524
2523
|
createdOn: string;
|
|
2525
2524
|
lastModifiedOn: string;
|
|
2526
2525
|
enabled: boolean;
|
|
2527
2526
|
presets: {
|
|
2528
|
-
name: string;
|
|
2529
2527
|
id: string;
|
|
2528
|
+
name: string;
|
|
2530
2529
|
createdOn: string;
|
|
2531
2530
|
lastModifiedOn: string;
|
|
2532
2531
|
isDefault: boolean;
|
|
@@ -2540,6 +2539,7 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
2540
2539
|
id: z.ZodString;
|
|
2541
2540
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2542
2541
|
}, z.ZodUnknown, "strip">[];
|
|
2542
|
+
groups: string[];
|
|
2543
2543
|
}>>, z.ZodObject<{
|
|
2544
2544
|
name: z.ZodString;
|
|
2545
2545
|
foreignRef: z.ZodString;
|
|
@@ -2577,16 +2577,16 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2577
2577
|
createdOn: z.ZodString;
|
|
2578
2578
|
lastModifiedOn: z.ZodString;
|
|
2579
2579
|
}, "strip", z.ZodTypeAny, {
|
|
2580
|
-
name: string;
|
|
2581
2580
|
id: string;
|
|
2581
|
+
name: string;
|
|
2582
2582
|
createdOn: string;
|
|
2583
2583
|
lastModifiedOn: string;
|
|
2584
2584
|
isDefault: boolean;
|
|
2585
2585
|
assignedRef: string | null;
|
|
2586
2586
|
params?: unknown;
|
|
2587
2587
|
}, {
|
|
2588
|
-
name: string;
|
|
2589
2588
|
id: string;
|
|
2589
|
+
name: string;
|
|
2590
2590
|
createdOn: string;
|
|
2591
2591
|
lastModifiedOn: string;
|
|
2592
2592
|
isDefault: boolean;
|
|
@@ -2611,14 +2611,13 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2611
2611
|
createdOn: z.ZodString;
|
|
2612
2612
|
lastModifiedOn: z.ZodString;
|
|
2613
2613
|
}, "strip", z.ZodTypeAny, {
|
|
2614
|
-
groups: string[];
|
|
2615
2614
|
id: string;
|
|
2616
2615
|
createdOn: string;
|
|
2617
2616
|
lastModifiedOn: string;
|
|
2618
2617
|
enabled: boolean;
|
|
2619
2618
|
presets: {
|
|
2620
|
-
name: string;
|
|
2621
2619
|
id: string;
|
|
2620
|
+
name: string;
|
|
2622
2621
|
createdOn: string;
|
|
2623
2622
|
lastModifiedOn: string;
|
|
2624
2623
|
isDefault: boolean;
|
|
@@ -2632,15 +2631,15 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2632
2631
|
id: z.ZodString;
|
|
2633
2632
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2634
2633
|
}, z.ZodUnknown, "strip">[];
|
|
2635
|
-
}, {
|
|
2636
2634
|
groups: string[];
|
|
2635
|
+
}, {
|
|
2637
2636
|
id: string;
|
|
2638
2637
|
createdOn: string;
|
|
2639
2638
|
lastModifiedOn: string;
|
|
2640
2639
|
enabled: boolean;
|
|
2641
2640
|
presets: {
|
|
2642
|
-
name: string;
|
|
2643
2641
|
id: string;
|
|
2642
|
+
name: string;
|
|
2644
2643
|
createdOn: string;
|
|
2645
2644
|
lastModifiedOn: string;
|
|
2646
2645
|
isDefault: boolean;
|
|
@@ -2654,6 +2653,7 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2654
2653
|
id: z.ZodString;
|
|
2655
2654
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2656
2655
|
}, z.ZodUnknown, "strip">[];
|
|
2656
|
+
groups: string[];
|
|
2657
2657
|
}>>, z.ZodObject<{
|
|
2658
2658
|
name: z.ZodString;
|
|
2659
2659
|
foreignRef: z.ZodString;
|
|
@@ -2691,16 +2691,16 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
2691
2691
|
createdOn: z.ZodString;
|
|
2692
2692
|
lastModifiedOn: z.ZodString;
|
|
2693
2693
|
}, "strip", z.ZodTypeAny, {
|
|
2694
|
-
name: string;
|
|
2695
2694
|
id: string;
|
|
2695
|
+
name: string;
|
|
2696
2696
|
createdOn: string;
|
|
2697
2697
|
lastModifiedOn: string;
|
|
2698
2698
|
isDefault: boolean;
|
|
2699
2699
|
assignedRef: string | null;
|
|
2700
2700
|
params?: unknown;
|
|
2701
2701
|
}, {
|
|
2702
|
-
name: string;
|
|
2703
2702
|
id: string;
|
|
2703
|
+
name: string;
|
|
2704
2704
|
createdOn: string;
|
|
2705
2705
|
lastModifiedOn: string;
|
|
2706
2706
|
isDefault: boolean;
|
|
@@ -2725,14 +2725,13 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
2725
2725
|
createdOn: z.ZodString;
|
|
2726
2726
|
lastModifiedOn: z.ZodString;
|
|
2727
2727
|
}, "strip", z.ZodTypeAny, {
|
|
2728
|
-
groups: string[];
|
|
2729
2728
|
id: string;
|
|
2730
2729
|
createdOn: string;
|
|
2731
2730
|
lastModifiedOn: string;
|
|
2732
2731
|
enabled: boolean;
|
|
2733
2732
|
presets: {
|
|
2734
|
-
name: string;
|
|
2735
2733
|
id: string;
|
|
2734
|
+
name: string;
|
|
2736
2735
|
createdOn: string;
|
|
2737
2736
|
lastModifiedOn: string;
|
|
2738
2737
|
isDefault: boolean;
|
|
@@ -2746,15 +2745,15 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
2746
2745
|
id: z.ZodString;
|
|
2747
2746
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2748
2747
|
}, z.ZodUnknown, "strip">[];
|
|
2749
|
-
}, {
|
|
2750
2748
|
groups: string[];
|
|
2749
|
+
}, {
|
|
2751
2750
|
id: string;
|
|
2752
2751
|
createdOn: string;
|
|
2753
2752
|
lastModifiedOn: string;
|
|
2754
2753
|
enabled: boolean;
|
|
2755
2754
|
presets: {
|
|
2756
|
-
name: string;
|
|
2757
2755
|
id: string;
|
|
2756
|
+
name: string;
|
|
2758
2757
|
createdOn: string;
|
|
2759
2758
|
lastModifiedOn: string;
|
|
2760
2759
|
isDefault: boolean;
|
|
@@ -2768,6 +2767,7 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
2768
2767
|
id: z.ZodString;
|
|
2769
2768
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2770
2769
|
}, z.ZodUnknown, "strip">[];
|
|
2770
|
+
groups: string[];
|
|
2771
2771
|
}>>, z.ZodObject<{
|
|
2772
2772
|
name: z.ZodString;
|
|
2773
2773
|
foreignRef: z.ZodString;
|
|
@@ -2805,16 +2805,16 @@ export declare const sNvrExporterDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
2805
2805
|
createdOn: z.ZodString;
|
|
2806
2806
|
lastModifiedOn: z.ZodString;
|
|
2807
2807
|
}, "strip", z.ZodTypeAny, {
|
|
2808
|
-
name: string;
|
|
2809
2808
|
id: string;
|
|
2809
|
+
name: string;
|
|
2810
2810
|
createdOn: string;
|
|
2811
2811
|
lastModifiedOn: string;
|
|
2812
2812
|
isDefault: boolean;
|
|
2813
2813
|
assignedRef: string | null;
|
|
2814
2814
|
params?: unknown;
|
|
2815
2815
|
}, {
|
|
2816
|
-
name: string;
|
|
2817
2816
|
id: string;
|
|
2817
|
+
name: string;
|
|
2818
2818
|
createdOn: string;
|
|
2819
2819
|
lastModifiedOn: string;
|
|
2820
2820
|
isDefault: boolean;
|
|
@@ -2839,14 +2839,13 @@ export declare const sNvrExporterDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
2839
2839
|
createdOn: z.ZodString;
|
|
2840
2840
|
lastModifiedOn: z.ZodString;
|
|
2841
2841
|
}, "strip", z.ZodTypeAny, {
|
|
2842
|
-
groups: string[];
|
|
2843
2842
|
id: string;
|
|
2844
2843
|
createdOn: string;
|
|
2845
2844
|
lastModifiedOn: string;
|
|
2846
2845
|
enabled: boolean;
|
|
2847
2846
|
presets: {
|
|
2848
|
-
name: string;
|
|
2849
2847
|
id: string;
|
|
2848
|
+
name: string;
|
|
2850
2849
|
createdOn: string;
|
|
2851
2850
|
lastModifiedOn: string;
|
|
2852
2851
|
isDefault: boolean;
|
|
@@ -2860,15 +2859,15 @@ export declare const sNvrExporterDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
2860
2859
|
id: z.ZodString;
|
|
2861
2860
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2862
2861
|
}, z.ZodUnknown, "strip">[];
|
|
2863
|
-
}, {
|
|
2864
2862
|
groups: string[];
|
|
2863
|
+
}, {
|
|
2865
2864
|
id: string;
|
|
2866
2865
|
createdOn: string;
|
|
2867
2866
|
lastModifiedOn: string;
|
|
2868
2867
|
enabled: boolean;
|
|
2869
2868
|
presets: {
|
|
2870
|
-
name: string;
|
|
2871
2869
|
id: string;
|
|
2870
|
+
name: string;
|
|
2872
2871
|
createdOn: string;
|
|
2873
2872
|
lastModifiedOn: string;
|
|
2874
2873
|
isDefault: boolean;
|
|
@@ -2882,6 +2881,7 @@ export declare const sNvrExporterDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
2882
2881
|
id: z.ZodString;
|
|
2883
2882
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2884
2883
|
}, z.ZodUnknown, "strip">[];
|
|
2884
|
+
groups: string[];
|
|
2885
2885
|
}>>, z.ZodObject<{
|
|
2886
2886
|
name: z.ZodString;
|
|
2887
2887
|
foreignRef: z.ZodString;
|
|
@@ -2919,16 +2919,16 @@ export declare const sNvrAnalyticsServerDto: z.ZodIntersection<z.ZodIntersection
|
|
|
2919
2919
|
createdOn: z.ZodString;
|
|
2920
2920
|
lastModifiedOn: z.ZodString;
|
|
2921
2921
|
}, "strip", z.ZodTypeAny, {
|
|
2922
|
-
name: string;
|
|
2923
2922
|
id: string;
|
|
2923
|
+
name: string;
|
|
2924
2924
|
createdOn: string;
|
|
2925
2925
|
lastModifiedOn: string;
|
|
2926
2926
|
isDefault: boolean;
|
|
2927
2927
|
assignedRef: string | null;
|
|
2928
2928
|
params?: unknown;
|
|
2929
2929
|
}, {
|
|
2930
|
-
name: string;
|
|
2931
2930
|
id: string;
|
|
2931
|
+
name: string;
|
|
2932
2932
|
createdOn: string;
|
|
2933
2933
|
lastModifiedOn: string;
|
|
2934
2934
|
isDefault: boolean;
|
|
@@ -2953,14 +2953,13 @@ export declare const sNvrAnalyticsServerDto: z.ZodIntersection<z.ZodIntersection
|
|
|
2953
2953
|
createdOn: z.ZodString;
|
|
2954
2954
|
lastModifiedOn: z.ZodString;
|
|
2955
2955
|
}, "strip", z.ZodTypeAny, {
|
|
2956
|
-
groups: string[];
|
|
2957
2956
|
id: string;
|
|
2958
2957
|
createdOn: string;
|
|
2959
2958
|
lastModifiedOn: string;
|
|
2960
2959
|
enabled: boolean;
|
|
2961
2960
|
presets: {
|
|
2962
|
-
name: string;
|
|
2963
2961
|
id: string;
|
|
2962
|
+
name: string;
|
|
2964
2963
|
createdOn: string;
|
|
2965
2964
|
lastModifiedOn: string;
|
|
2966
2965
|
isDefault: boolean;
|
|
@@ -2974,15 +2973,15 @@ export declare const sNvrAnalyticsServerDto: z.ZodIntersection<z.ZodIntersection
|
|
|
2974
2973
|
id: z.ZodString;
|
|
2975
2974
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2976
2975
|
}, z.ZodUnknown, "strip">[];
|
|
2977
|
-
}, {
|
|
2978
2976
|
groups: string[];
|
|
2977
|
+
}, {
|
|
2979
2978
|
id: string;
|
|
2980
2979
|
createdOn: string;
|
|
2981
2980
|
lastModifiedOn: string;
|
|
2982
2981
|
enabled: boolean;
|
|
2983
2982
|
presets: {
|
|
2984
|
-
name: string;
|
|
2985
2983
|
id: string;
|
|
2984
|
+
name: string;
|
|
2986
2985
|
createdOn: string;
|
|
2987
2986
|
lastModifiedOn: string;
|
|
2988
2987
|
isDefault: boolean;
|
|
@@ -2996,6 +2995,7 @@ export declare const sNvrAnalyticsServerDto: z.ZodIntersection<z.ZodIntersection
|
|
|
2996
2995
|
id: z.ZodString;
|
|
2997
2996
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2998
2997
|
}, z.ZodUnknown, "strip">[];
|
|
2998
|
+
groups: string[];
|
|
2999
2999
|
}>>, z.ZodObject<{
|
|
3000
3000
|
name: z.ZodString;
|
|
3001
3001
|
foreignRef: z.ZodString;
|
|
@@ -3033,16 +3033,16 @@ export declare const sSystemDeviceDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
3033
3033
|
createdOn: z.ZodString;
|
|
3034
3034
|
lastModifiedOn: z.ZodString;
|
|
3035
3035
|
}, "strip", z.ZodTypeAny, {
|
|
3036
|
-
name: string;
|
|
3037
3036
|
id: string;
|
|
3037
|
+
name: string;
|
|
3038
3038
|
createdOn: string;
|
|
3039
3039
|
lastModifiedOn: string;
|
|
3040
3040
|
isDefault: boolean;
|
|
3041
3041
|
assignedRef: string | null;
|
|
3042
3042
|
params?: unknown;
|
|
3043
3043
|
}, {
|
|
3044
|
-
name: string;
|
|
3045
3044
|
id: string;
|
|
3045
|
+
name: string;
|
|
3046
3046
|
createdOn: string;
|
|
3047
3047
|
lastModifiedOn: string;
|
|
3048
3048
|
isDefault: boolean;
|
|
@@ -3067,14 +3067,13 @@ export declare const sSystemDeviceDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
3067
3067
|
createdOn: z.ZodString;
|
|
3068
3068
|
lastModifiedOn: z.ZodString;
|
|
3069
3069
|
}, "strip", z.ZodTypeAny, {
|
|
3070
|
-
groups: string[];
|
|
3071
3070
|
id: string;
|
|
3072
3071
|
createdOn: string;
|
|
3073
3072
|
lastModifiedOn: string;
|
|
3074
3073
|
enabled: boolean;
|
|
3075
3074
|
presets: {
|
|
3076
|
-
name: string;
|
|
3077
3075
|
id: string;
|
|
3076
|
+
name: string;
|
|
3078
3077
|
createdOn: string;
|
|
3079
3078
|
lastModifiedOn: string;
|
|
3080
3079
|
isDefault: boolean;
|
|
@@ -3088,15 +3087,15 @@ export declare const sSystemDeviceDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
3088
3087
|
id: z.ZodString;
|
|
3089
3088
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
3090
3089
|
}, z.ZodUnknown, "strip">[];
|
|
3091
|
-
}, {
|
|
3092
3090
|
groups: string[];
|
|
3091
|
+
}, {
|
|
3093
3092
|
id: string;
|
|
3094
3093
|
createdOn: string;
|
|
3095
3094
|
lastModifiedOn: string;
|
|
3096
3095
|
enabled: boolean;
|
|
3097
3096
|
presets: {
|
|
3098
|
-
name: string;
|
|
3099
3097
|
id: string;
|
|
3098
|
+
name: string;
|
|
3100
3099
|
createdOn: string;
|
|
3101
3100
|
lastModifiedOn: string;
|
|
3102
3101
|
isDefault: boolean;
|
|
@@ -3110,6 +3109,7 @@ export declare const sSystemDeviceDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
3110
3109
|
id: z.ZodString;
|
|
3111
3110
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
3112
3111
|
}, z.ZodUnknown, "strip">[];
|
|
3112
|
+
groups: string[];
|
|
3113
3113
|
}>>, z.ZodObject<{
|
|
3114
3114
|
name: z.ZodString;
|
|
3115
3115
|
foreignRef: z.ZodString;
|
|
@@ -3154,15 +3154,15 @@ export declare const sEventDescription: z.ZodObject<{
|
|
|
3154
3154
|
label: string;
|
|
3155
3155
|
}>, "many">>;
|
|
3156
3156
|
}, "strip", z.ZodTypeAny, {
|
|
3157
|
-
label: string;
|
|
3158
3157
|
kind: string;
|
|
3158
|
+
label: string;
|
|
3159
3159
|
variants?: {
|
|
3160
3160
|
name: string;
|
|
3161
3161
|
label: string;
|
|
3162
3162
|
}[] | undefined;
|
|
3163
3163
|
}, {
|
|
3164
|
-
label: string;
|
|
3165
3164
|
kind: string;
|
|
3165
|
+
label: string;
|
|
3166
3166
|
variants?: {
|
|
3167
3167
|
name: string;
|
|
3168
3168
|
label: string;
|