@awarevue/api-types 1.1.15 → 2.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.
- package/dist/access-control/person-agreement.d.ts +2 -2
- package/dist/access-control/person.d.ts +4 -4
- package/dist/agent-communication/protocol.d.ts +108 -308
- package/dist/agent-communication/protocol.js +5 -8
- package/dist/agent-communication/queries.d.ts +1315 -1045
- package/dist/agent-communication/queries.js +11 -109
- package/dist/api/media.d.ts +6 -14
- package/dist/api/media.js +1 -4
- package/dist/device/alarm.d.ts +24 -24
- package/dist/device/any-device.d.ts +537 -269
- package/dist/device/any-device.js +22 -4
- package/dist/device/camera.d.ts +97 -0
- package/dist/device/camera.js +24 -1
- package/dist/device/index.d.ts +3 -1
- package/dist/device/index.js +3 -1
- package/dist/device/intercom-terminal.d.ts +4 -4
- package/dist/device/nvr-analytics-server.d.ts +307 -0
- package/dist/device/nvr-analytics-server.js +73 -0
- package/dist/device/nvr-exporter.d.ts +872 -0
- package/dist/device/nvr-exporter.js +77 -0
- package/dist/device/nvr-recorder.d.ts +2981 -0
- package/dist/device/nvr-recorder.js +47 -0
- package/dist/device/presence-tracker.d.ts +8 -8
- package/dist/device-event.d.ts +43 -19
- package/dist/device-event.js +5 -0
- package/dist/device-import.d.ts +123 -51
- package/dist/device-relation.d.ts +7 -7
- package/dist/device-relation.js +12 -0
- package/dist/messages/web-rtc-signaling.d.ts +10 -10
- package/dist/package.json +1 -1
- package/dist/permissions.d.ts +3 -3
- package/dist/permissions.js +9 -1
- package/dist/primitives.d.ts +596 -0
- package/dist/primitives.js +13 -1
- package/dist/user.d.ts +16 -16
- package/package.json +1 -1
- package/dist/device/recorder.d.ts +0 -12
- package/dist/device/recorder.js +0 -9
|
@@ -1,6 +1,6 @@
|
|
|
1
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", "display", "recorder"];
|
|
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", "display", "recorder"]>;
|
|
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", "display", "nvr-recorder", "nvr-exporter", "nvr-analytics-server"];
|
|
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", "display", "nvr-recorder", "nvr-exporter", "nvr-analytics-server"]>;
|
|
4
4
|
export declare const sDisplaySpecsWithType: z.ZodObject<{
|
|
5
5
|
type: z.ZodLiteral<"display">;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9,11 +9,25 @@ export declare const sDisplaySpecsWithType: z.ZodObject<{
|
|
|
9
9
|
type: "display";
|
|
10
10
|
}>;
|
|
11
11
|
export declare const sRecorderSpecsWithType: z.ZodObject<{
|
|
12
|
-
type: z.ZodLiteral<"recorder">;
|
|
12
|
+
type: z.ZodLiteral<"nvr-recorder">;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
type: "recorder";
|
|
14
|
+
type: "nvr-recorder";
|
|
15
15
|
}, {
|
|
16
|
-
type: "recorder";
|
|
16
|
+
type: "nvr-recorder";
|
|
17
|
+
}>;
|
|
18
|
+
export declare const sNvrExporterSpecsWithType: z.ZodObject<{
|
|
19
|
+
type: z.ZodLiteral<"nvr-exporter">;
|
|
20
|
+
}, "strip", z.ZodTypeAny, {
|
|
21
|
+
type: "nvr-exporter";
|
|
22
|
+
}, {
|
|
23
|
+
type: "nvr-exporter";
|
|
24
|
+
}>;
|
|
25
|
+
export declare const sNvrAnalyticsServerSpecsWithType: z.ZodObject<{
|
|
26
|
+
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
27
|
+
}, "strip", z.ZodTypeAny, {
|
|
28
|
+
type: "nvr-analytics-server";
|
|
29
|
+
}, {
|
|
30
|
+
type: "nvr-analytics-server";
|
|
17
31
|
}>;
|
|
18
32
|
export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
19
33
|
type: z.ZodLiteral<"alarm">;
|
|
@@ -225,11 +239,23 @@ export declare const sAnyDeviceSpecs: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
225
239
|
}, {
|
|
226
240
|
type: "display";
|
|
227
241
|
}>, z.ZodObject<{
|
|
228
|
-
type: z.ZodLiteral<"recorder">;
|
|
242
|
+
type: z.ZodLiteral<"nvr-recorder">;
|
|
243
|
+
}, "strip", z.ZodTypeAny, {
|
|
244
|
+
type: "nvr-recorder";
|
|
245
|
+
}, {
|
|
246
|
+
type: "nvr-recorder";
|
|
247
|
+
}>, z.ZodObject<{
|
|
248
|
+
type: z.ZodLiteral<"nvr-exporter">;
|
|
249
|
+
}, "strip", z.ZodTypeAny, {
|
|
250
|
+
type: "nvr-exporter";
|
|
251
|
+
}, {
|
|
252
|
+
type: "nvr-exporter";
|
|
253
|
+
}>, z.ZodObject<{
|
|
254
|
+
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
229
255
|
}, "strip", z.ZodTypeAny, {
|
|
230
|
-
type: "
|
|
256
|
+
type: "nvr-analytics-server";
|
|
231
257
|
}, {
|
|
232
|
-
type: "
|
|
258
|
+
type: "nvr-analytics-server";
|
|
233
259
|
}>]>;
|
|
234
260
|
export declare const sProviderMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
|
|
235
261
|
export declare const sPresetDto: z.ZodObject<{
|
|
@@ -289,13 +315,13 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
289
315
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
290
316
|
relations: z.ZodArray<z.ZodObject<{
|
|
291
317
|
id: z.ZodString;
|
|
292
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
318
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
293
319
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
294
320
|
id: z.ZodString;
|
|
295
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
321
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
296
322
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
297
323
|
id: z.ZodString;
|
|
298
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
324
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
299
325
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
300
326
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
301
327
|
enabled: z.ZodBoolean;
|
|
@@ -306,6 +332,11 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
306
332
|
id: string;
|
|
307
333
|
createdOn: string;
|
|
308
334
|
lastModifiedOn: string;
|
|
335
|
+
tags: string[];
|
|
336
|
+
relations: z.objectOutputType<{
|
|
337
|
+
id: z.ZodString;
|
|
338
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
339
|
+
}, z.ZodUnknown, "strip">[];
|
|
309
340
|
presets: {
|
|
310
341
|
name: string;
|
|
311
342
|
id: string;
|
|
@@ -317,17 +348,17 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
317
348
|
}[];
|
|
318
349
|
providerAssignedName: string;
|
|
319
350
|
notes: string | null;
|
|
320
|
-
tags: string[];
|
|
321
|
-
relations: z.objectOutputType<{
|
|
322
|
-
id: z.ZodString;
|
|
323
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
324
|
-
}, z.ZodUnknown, "strip">[];
|
|
325
351
|
enabled: boolean;
|
|
326
352
|
}, {
|
|
327
353
|
groups: string[];
|
|
328
354
|
id: string;
|
|
329
355
|
createdOn: string;
|
|
330
356
|
lastModifiedOn: string;
|
|
357
|
+
tags: string[];
|
|
358
|
+
relations: z.objectInputType<{
|
|
359
|
+
id: z.ZodString;
|
|
360
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
361
|
+
}, z.ZodUnknown, "strip">[];
|
|
331
362
|
presets: {
|
|
332
363
|
name: string;
|
|
333
364
|
id: string;
|
|
@@ -339,11 +370,6 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
339
370
|
}[];
|
|
340
371
|
providerAssignedName: string;
|
|
341
372
|
notes: string | null;
|
|
342
|
-
tags: string[];
|
|
343
|
-
relations: z.objectInputType<{
|
|
344
|
-
id: z.ZodString;
|
|
345
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
346
|
-
}, z.ZodUnknown, "strip">[];
|
|
347
373
|
enabled: boolean;
|
|
348
374
|
}>;
|
|
349
375
|
export declare const sForeignDeviceInfo: z.ZodObject<{
|
|
@@ -576,11 +602,23 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
576
602
|
}, {
|
|
577
603
|
type: "display";
|
|
578
604
|
}>, z.ZodObject<{
|
|
579
|
-
type: z.ZodLiteral<"recorder">;
|
|
605
|
+
type: z.ZodLiteral<"nvr-recorder">;
|
|
606
|
+
}, "strip", z.ZodTypeAny, {
|
|
607
|
+
type: "nvr-recorder";
|
|
608
|
+
}, {
|
|
609
|
+
type: "nvr-recorder";
|
|
610
|
+
}>, z.ZodObject<{
|
|
611
|
+
type: z.ZodLiteral<"nvr-exporter">;
|
|
612
|
+
}, "strip", z.ZodTypeAny, {
|
|
613
|
+
type: "nvr-exporter";
|
|
614
|
+
}, {
|
|
615
|
+
type: "nvr-exporter";
|
|
616
|
+
}>, z.ZodObject<{
|
|
617
|
+
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
580
618
|
}, "strip", z.ZodTypeAny, {
|
|
581
|
-
type: "
|
|
619
|
+
type: "nvr-analytics-server";
|
|
582
620
|
}, {
|
|
583
|
-
type: "
|
|
621
|
+
type: "nvr-analytics-server";
|
|
584
622
|
}>]>, z.ZodObject<{
|
|
585
623
|
id: z.ZodString;
|
|
586
624
|
presets: z.ZodArray<z.ZodObject<{
|
|
@@ -613,13 +651,13 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
613
651
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
614
652
|
relations: z.ZodArray<z.ZodObject<{
|
|
615
653
|
id: z.ZodString;
|
|
616
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
654
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
617
655
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
618
656
|
id: z.ZodString;
|
|
619
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
657
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
620
658
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
621
659
|
id: z.ZodString;
|
|
622
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
660
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
623
661
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
624
662
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
625
663
|
enabled: z.ZodBoolean;
|
|
@@ -630,6 +668,11 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
630
668
|
id: string;
|
|
631
669
|
createdOn: string;
|
|
632
670
|
lastModifiedOn: string;
|
|
671
|
+
tags: string[];
|
|
672
|
+
relations: z.objectOutputType<{
|
|
673
|
+
id: z.ZodString;
|
|
674
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
675
|
+
}, z.ZodUnknown, "strip">[];
|
|
633
676
|
presets: {
|
|
634
677
|
name: string;
|
|
635
678
|
id: string;
|
|
@@ -641,17 +684,17 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
641
684
|
}[];
|
|
642
685
|
providerAssignedName: string;
|
|
643
686
|
notes: string | null;
|
|
644
|
-
tags: string[];
|
|
645
|
-
relations: z.objectOutputType<{
|
|
646
|
-
id: z.ZodString;
|
|
647
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
648
|
-
}, z.ZodUnknown, "strip">[];
|
|
649
687
|
enabled: boolean;
|
|
650
688
|
}, {
|
|
651
689
|
groups: string[];
|
|
652
690
|
id: string;
|
|
653
691
|
createdOn: string;
|
|
654
692
|
lastModifiedOn: string;
|
|
693
|
+
tags: string[];
|
|
694
|
+
relations: z.objectInputType<{
|
|
695
|
+
id: z.ZodString;
|
|
696
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
697
|
+
}, z.ZodUnknown, "strip">[];
|
|
655
698
|
presets: {
|
|
656
699
|
name: string;
|
|
657
700
|
id: string;
|
|
@@ -663,11 +706,6 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
663
706
|
}[];
|
|
664
707
|
providerAssignedName: string;
|
|
665
708
|
notes: string | null;
|
|
666
|
-
tags: string[];
|
|
667
|
-
relations: z.objectInputType<{
|
|
668
|
-
id: z.ZodString;
|
|
669
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
670
|
-
}, z.ZodUnknown, "strip">[];
|
|
671
709
|
enabled: boolean;
|
|
672
710
|
}>>, z.ZodObject<{
|
|
673
711
|
name: z.ZodString;
|
|
@@ -806,13 +844,13 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
806
844
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
807
845
|
relations: z.ZodArray<z.ZodObject<{
|
|
808
846
|
id: z.ZodString;
|
|
809
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
847
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
810
848
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
811
849
|
id: z.ZodString;
|
|
812
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
850
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
813
851
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
814
852
|
id: z.ZodString;
|
|
815
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
853
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
816
854
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
817
855
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
818
856
|
enabled: z.ZodBoolean;
|
|
@@ -823,6 +861,11 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
823
861
|
id: string;
|
|
824
862
|
createdOn: string;
|
|
825
863
|
lastModifiedOn: string;
|
|
864
|
+
tags: string[];
|
|
865
|
+
relations: z.objectOutputType<{
|
|
866
|
+
id: z.ZodString;
|
|
867
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
868
|
+
}, z.ZodUnknown, "strip">[];
|
|
826
869
|
presets: {
|
|
827
870
|
name: string;
|
|
828
871
|
id: string;
|
|
@@ -834,17 +877,17 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
834
877
|
}[];
|
|
835
878
|
providerAssignedName: string;
|
|
836
879
|
notes: string | null;
|
|
837
|
-
tags: string[];
|
|
838
|
-
relations: z.objectOutputType<{
|
|
839
|
-
id: z.ZodString;
|
|
840
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
841
|
-
}, z.ZodUnknown, "strip">[];
|
|
842
880
|
enabled: boolean;
|
|
843
881
|
}, {
|
|
844
882
|
groups: string[];
|
|
845
883
|
id: string;
|
|
846
884
|
createdOn: string;
|
|
847
885
|
lastModifiedOn: string;
|
|
886
|
+
tags: string[];
|
|
887
|
+
relations: z.objectInputType<{
|
|
888
|
+
id: z.ZodString;
|
|
889
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
890
|
+
}, z.ZodUnknown, "strip">[];
|
|
848
891
|
presets: {
|
|
849
892
|
name: string;
|
|
850
893
|
id: string;
|
|
@@ -856,11 +899,6 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
856
899
|
}[];
|
|
857
900
|
providerAssignedName: string;
|
|
858
901
|
notes: string | null;
|
|
859
|
-
tags: string[];
|
|
860
|
-
relations: z.objectInputType<{
|
|
861
|
-
id: z.ZodString;
|
|
862
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
863
|
-
}, z.ZodUnknown, "strip">[];
|
|
864
902
|
enabled: boolean;
|
|
865
903
|
}>>, z.ZodObject<{
|
|
866
904
|
name: z.ZodString;
|
|
@@ -933,13 +971,13 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
933
971
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
934
972
|
relations: z.ZodArray<z.ZodObject<{
|
|
935
973
|
id: z.ZodString;
|
|
936
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
974
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
937
975
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
938
976
|
id: z.ZodString;
|
|
939
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
977
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
940
978
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
941
979
|
id: z.ZodString;
|
|
942
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
980
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
943
981
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
944
982
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
945
983
|
enabled: z.ZodBoolean;
|
|
@@ -950,6 +988,11 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
950
988
|
id: string;
|
|
951
989
|
createdOn: string;
|
|
952
990
|
lastModifiedOn: string;
|
|
991
|
+
tags: string[];
|
|
992
|
+
relations: z.objectOutputType<{
|
|
993
|
+
id: z.ZodString;
|
|
994
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
995
|
+
}, z.ZodUnknown, "strip">[];
|
|
953
996
|
presets: {
|
|
954
997
|
name: string;
|
|
955
998
|
id: string;
|
|
@@ -961,17 +1004,17 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
961
1004
|
}[];
|
|
962
1005
|
providerAssignedName: string;
|
|
963
1006
|
notes: string | null;
|
|
964
|
-
tags: string[];
|
|
965
|
-
relations: z.objectOutputType<{
|
|
966
|
-
id: z.ZodString;
|
|
967
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
968
|
-
}, z.ZodUnknown, "strip">[];
|
|
969
1007
|
enabled: boolean;
|
|
970
1008
|
}, {
|
|
971
1009
|
groups: string[];
|
|
972
1010
|
id: string;
|
|
973
1011
|
createdOn: string;
|
|
974
1012
|
lastModifiedOn: string;
|
|
1013
|
+
tags: string[];
|
|
1014
|
+
relations: z.objectInputType<{
|
|
1015
|
+
id: z.ZodString;
|
|
1016
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1017
|
+
}, z.ZodUnknown, "strip">[];
|
|
975
1018
|
presets: {
|
|
976
1019
|
name: string;
|
|
977
1020
|
id: string;
|
|
@@ -983,11 +1026,6 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
983
1026
|
}[];
|
|
984
1027
|
providerAssignedName: string;
|
|
985
1028
|
notes: string | null;
|
|
986
|
-
tags: string[];
|
|
987
|
-
relations: z.objectInputType<{
|
|
988
|
-
id: z.ZodString;
|
|
989
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
990
|
-
}, z.ZodUnknown, "strip">[];
|
|
991
1029
|
enabled: boolean;
|
|
992
1030
|
}>>, z.ZodObject<{
|
|
993
1031
|
name: z.ZodString;
|
|
@@ -1047,13 +1085,13 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1047
1085
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
1048
1086
|
relations: z.ZodArray<z.ZodObject<{
|
|
1049
1087
|
id: z.ZodString;
|
|
1050
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1088
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1051
1089
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1052
1090
|
id: z.ZodString;
|
|
1053
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1091
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1054
1092
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1055
1093
|
id: z.ZodString;
|
|
1056
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1094
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1057
1095
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
1058
1096
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
1059
1097
|
enabled: z.ZodBoolean;
|
|
@@ -1064,6 +1102,11 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1064
1102
|
id: string;
|
|
1065
1103
|
createdOn: string;
|
|
1066
1104
|
lastModifiedOn: string;
|
|
1105
|
+
tags: string[];
|
|
1106
|
+
relations: z.objectOutputType<{
|
|
1107
|
+
id: z.ZodString;
|
|
1108
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1109
|
+
}, z.ZodUnknown, "strip">[];
|
|
1067
1110
|
presets: {
|
|
1068
1111
|
name: string;
|
|
1069
1112
|
id: string;
|
|
@@ -1075,17 +1118,17 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1075
1118
|
}[];
|
|
1076
1119
|
providerAssignedName: string;
|
|
1077
1120
|
notes: string | null;
|
|
1078
|
-
tags: string[];
|
|
1079
|
-
relations: z.objectOutputType<{
|
|
1080
|
-
id: z.ZodString;
|
|
1081
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1082
|
-
}, z.ZodUnknown, "strip">[];
|
|
1083
1121
|
enabled: boolean;
|
|
1084
1122
|
}, {
|
|
1085
1123
|
groups: string[];
|
|
1086
1124
|
id: string;
|
|
1087
1125
|
createdOn: string;
|
|
1088
1126
|
lastModifiedOn: string;
|
|
1127
|
+
tags: string[];
|
|
1128
|
+
relations: z.objectInputType<{
|
|
1129
|
+
id: z.ZodString;
|
|
1130
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1131
|
+
}, z.ZodUnknown, "strip">[];
|
|
1089
1132
|
presets: {
|
|
1090
1133
|
name: string;
|
|
1091
1134
|
id: string;
|
|
@@ -1097,11 +1140,6 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1097
1140
|
}[];
|
|
1098
1141
|
providerAssignedName: string;
|
|
1099
1142
|
notes: string | null;
|
|
1100
|
-
tags: string[];
|
|
1101
|
-
relations: z.objectInputType<{
|
|
1102
|
-
id: z.ZodString;
|
|
1103
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1104
|
-
}, z.ZodUnknown, "strip">[];
|
|
1105
1143
|
enabled: boolean;
|
|
1106
1144
|
}>>, z.ZodObject<{
|
|
1107
1145
|
name: z.ZodString;
|
|
@@ -1168,13 +1206,13 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1168
1206
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
1169
1207
|
relations: z.ZodArray<z.ZodObject<{
|
|
1170
1208
|
id: z.ZodString;
|
|
1171
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1209
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1172
1210
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1173
1211
|
id: z.ZodString;
|
|
1174
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1212
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1175
1213
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1176
1214
|
id: z.ZodString;
|
|
1177
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1215
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1178
1216
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
1179
1217
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
1180
1218
|
enabled: z.ZodBoolean;
|
|
@@ -1185,6 +1223,11 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1185
1223
|
id: string;
|
|
1186
1224
|
createdOn: string;
|
|
1187
1225
|
lastModifiedOn: string;
|
|
1226
|
+
tags: string[];
|
|
1227
|
+
relations: z.objectOutputType<{
|
|
1228
|
+
id: z.ZodString;
|
|
1229
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1230
|
+
}, z.ZodUnknown, "strip">[];
|
|
1188
1231
|
presets: {
|
|
1189
1232
|
name: string;
|
|
1190
1233
|
id: string;
|
|
@@ -1196,17 +1239,17 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1196
1239
|
}[];
|
|
1197
1240
|
providerAssignedName: string;
|
|
1198
1241
|
notes: string | null;
|
|
1199
|
-
tags: string[];
|
|
1200
|
-
relations: z.objectOutputType<{
|
|
1201
|
-
id: z.ZodString;
|
|
1202
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1203
|
-
}, z.ZodUnknown, "strip">[];
|
|
1204
1242
|
enabled: boolean;
|
|
1205
1243
|
}, {
|
|
1206
1244
|
groups: string[];
|
|
1207
1245
|
id: string;
|
|
1208
1246
|
createdOn: string;
|
|
1209
1247
|
lastModifiedOn: string;
|
|
1248
|
+
tags: string[];
|
|
1249
|
+
relations: z.objectInputType<{
|
|
1250
|
+
id: z.ZodString;
|
|
1251
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1252
|
+
}, z.ZodUnknown, "strip">[];
|
|
1210
1253
|
presets: {
|
|
1211
1254
|
name: string;
|
|
1212
1255
|
id: string;
|
|
@@ -1218,11 +1261,6 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1218
1261
|
}[];
|
|
1219
1262
|
providerAssignedName: string;
|
|
1220
1263
|
notes: string | null;
|
|
1221
|
-
tags: string[];
|
|
1222
|
-
relations: z.objectInputType<{
|
|
1223
|
-
id: z.ZodString;
|
|
1224
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1225
|
-
}, z.ZodUnknown, "strip">[];
|
|
1226
1264
|
enabled: boolean;
|
|
1227
1265
|
}>>, z.ZodObject<{
|
|
1228
1266
|
name: z.ZodString;
|
|
@@ -1282,13 +1320,13 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
1282
1320
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
1283
1321
|
relations: z.ZodArray<z.ZodObject<{
|
|
1284
1322
|
id: z.ZodString;
|
|
1285
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1323
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1286
1324
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1287
1325
|
id: z.ZodString;
|
|
1288
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1326
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1289
1327
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1290
1328
|
id: z.ZodString;
|
|
1291
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1329
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1292
1330
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
1293
1331
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
1294
1332
|
enabled: z.ZodBoolean;
|
|
@@ -1299,6 +1337,11 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
1299
1337
|
id: string;
|
|
1300
1338
|
createdOn: string;
|
|
1301
1339
|
lastModifiedOn: string;
|
|
1340
|
+
tags: string[];
|
|
1341
|
+
relations: z.objectOutputType<{
|
|
1342
|
+
id: z.ZodString;
|
|
1343
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1344
|
+
}, z.ZodUnknown, "strip">[];
|
|
1302
1345
|
presets: {
|
|
1303
1346
|
name: string;
|
|
1304
1347
|
id: string;
|
|
@@ -1310,17 +1353,17 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
1310
1353
|
}[];
|
|
1311
1354
|
providerAssignedName: string;
|
|
1312
1355
|
notes: string | null;
|
|
1313
|
-
tags: string[];
|
|
1314
|
-
relations: z.objectOutputType<{
|
|
1315
|
-
id: z.ZodString;
|
|
1316
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1317
|
-
}, z.ZodUnknown, "strip">[];
|
|
1318
1356
|
enabled: boolean;
|
|
1319
1357
|
}, {
|
|
1320
1358
|
groups: string[];
|
|
1321
1359
|
id: string;
|
|
1322
1360
|
createdOn: string;
|
|
1323
1361
|
lastModifiedOn: string;
|
|
1362
|
+
tags: string[];
|
|
1363
|
+
relations: z.objectInputType<{
|
|
1364
|
+
id: z.ZodString;
|
|
1365
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1366
|
+
}, z.ZodUnknown, "strip">[];
|
|
1324
1367
|
presets: {
|
|
1325
1368
|
name: string;
|
|
1326
1369
|
id: string;
|
|
@@ -1332,11 +1375,6 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
1332
1375
|
}[];
|
|
1333
1376
|
providerAssignedName: string;
|
|
1334
1377
|
notes: string | null;
|
|
1335
|
-
tags: string[];
|
|
1336
|
-
relations: z.objectInputType<{
|
|
1337
|
-
id: z.ZodString;
|
|
1338
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1339
|
-
}, z.ZodUnknown, "strip">[];
|
|
1340
1378
|
enabled: boolean;
|
|
1341
1379
|
}>>, z.ZodObject<{
|
|
1342
1380
|
name: z.ZodString;
|
|
@@ -1396,13 +1434,13 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1396
1434
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
1397
1435
|
relations: z.ZodArray<z.ZodObject<{
|
|
1398
1436
|
id: z.ZodString;
|
|
1399
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1437
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1400
1438
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1401
1439
|
id: z.ZodString;
|
|
1402
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1440
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1403
1441
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1404
1442
|
id: z.ZodString;
|
|
1405
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1443
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1406
1444
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
1407
1445
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
1408
1446
|
enabled: z.ZodBoolean;
|
|
@@ -1413,6 +1451,11 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1413
1451
|
id: string;
|
|
1414
1452
|
createdOn: string;
|
|
1415
1453
|
lastModifiedOn: string;
|
|
1454
|
+
tags: string[];
|
|
1455
|
+
relations: z.objectOutputType<{
|
|
1456
|
+
id: z.ZodString;
|
|
1457
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1458
|
+
}, z.ZodUnknown, "strip">[];
|
|
1416
1459
|
presets: {
|
|
1417
1460
|
name: string;
|
|
1418
1461
|
id: string;
|
|
@@ -1424,17 +1467,17 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1424
1467
|
}[];
|
|
1425
1468
|
providerAssignedName: string;
|
|
1426
1469
|
notes: string | null;
|
|
1427
|
-
tags: string[];
|
|
1428
|
-
relations: z.objectOutputType<{
|
|
1429
|
-
id: z.ZodString;
|
|
1430
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1431
|
-
}, z.ZodUnknown, "strip">[];
|
|
1432
1470
|
enabled: boolean;
|
|
1433
1471
|
}, {
|
|
1434
1472
|
groups: string[];
|
|
1435
1473
|
id: string;
|
|
1436
1474
|
createdOn: string;
|
|
1437
1475
|
lastModifiedOn: string;
|
|
1476
|
+
tags: string[];
|
|
1477
|
+
relations: z.objectInputType<{
|
|
1478
|
+
id: z.ZodString;
|
|
1479
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1480
|
+
}, z.ZodUnknown, "strip">[];
|
|
1438
1481
|
presets: {
|
|
1439
1482
|
name: string;
|
|
1440
1483
|
id: string;
|
|
@@ -1446,11 +1489,6 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1446
1489
|
}[];
|
|
1447
1490
|
providerAssignedName: string;
|
|
1448
1491
|
notes: string | null;
|
|
1449
|
-
tags: string[];
|
|
1450
|
-
relations: z.objectInputType<{
|
|
1451
|
-
id: z.ZodString;
|
|
1452
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1453
|
-
}, z.ZodUnknown, "strip">[];
|
|
1454
1492
|
enabled: boolean;
|
|
1455
1493
|
}>>, z.ZodObject<{
|
|
1456
1494
|
name: z.ZodString;
|
|
@@ -1510,13 +1548,13 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1510
1548
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
1511
1549
|
relations: z.ZodArray<z.ZodObject<{
|
|
1512
1550
|
id: z.ZodString;
|
|
1513
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1551
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1514
1552
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1515
1553
|
id: z.ZodString;
|
|
1516
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1554
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1517
1555
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1518
1556
|
id: z.ZodString;
|
|
1519
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1557
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1520
1558
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
1521
1559
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
1522
1560
|
enabled: z.ZodBoolean;
|
|
@@ -1527,6 +1565,11 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1527
1565
|
id: string;
|
|
1528
1566
|
createdOn: string;
|
|
1529
1567
|
lastModifiedOn: string;
|
|
1568
|
+
tags: string[];
|
|
1569
|
+
relations: z.objectOutputType<{
|
|
1570
|
+
id: z.ZodString;
|
|
1571
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1572
|
+
}, z.ZodUnknown, "strip">[];
|
|
1530
1573
|
presets: {
|
|
1531
1574
|
name: string;
|
|
1532
1575
|
id: string;
|
|
@@ -1538,17 +1581,17 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1538
1581
|
}[];
|
|
1539
1582
|
providerAssignedName: string;
|
|
1540
1583
|
notes: string | null;
|
|
1541
|
-
tags: string[];
|
|
1542
|
-
relations: z.objectOutputType<{
|
|
1543
|
-
id: z.ZodString;
|
|
1544
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1545
|
-
}, z.ZodUnknown, "strip">[];
|
|
1546
1584
|
enabled: boolean;
|
|
1547
1585
|
}, {
|
|
1548
1586
|
groups: string[];
|
|
1549
1587
|
id: string;
|
|
1550
1588
|
createdOn: string;
|
|
1551
1589
|
lastModifiedOn: string;
|
|
1590
|
+
tags: string[];
|
|
1591
|
+
relations: z.objectInputType<{
|
|
1592
|
+
id: z.ZodString;
|
|
1593
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1594
|
+
}, z.ZodUnknown, "strip">[];
|
|
1552
1595
|
presets: {
|
|
1553
1596
|
name: string;
|
|
1554
1597
|
id: string;
|
|
@@ -1560,11 +1603,6 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1560
1603
|
}[];
|
|
1561
1604
|
providerAssignedName: string;
|
|
1562
1605
|
notes: string | null;
|
|
1563
|
-
tags: string[];
|
|
1564
|
-
relations: z.objectInputType<{
|
|
1565
|
-
id: z.ZodString;
|
|
1566
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1567
|
-
}, z.ZodUnknown, "strip">[];
|
|
1568
1606
|
enabled: boolean;
|
|
1569
1607
|
}>>, z.ZodObject<{
|
|
1570
1608
|
name: z.ZodString;
|
|
@@ -1640,13 +1678,13 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1640
1678
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
1641
1679
|
relations: z.ZodArray<z.ZodObject<{
|
|
1642
1680
|
id: z.ZodString;
|
|
1643
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1681
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1644
1682
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1645
1683
|
id: z.ZodString;
|
|
1646
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1684
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1647
1685
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1648
1686
|
id: z.ZodString;
|
|
1649
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1687
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1650
1688
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
1651
1689
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
1652
1690
|
enabled: z.ZodBoolean;
|
|
@@ -1657,6 +1695,11 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1657
1695
|
id: string;
|
|
1658
1696
|
createdOn: string;
|
|
1659
1697
|
lastModifiedOn: string;
|
|
1698
|
+
tags: string[];
|
|
1699
|
+
relations: z.objectOutputType<{
|
|
1700
|
+
id: z.ZodString;
|
|
1701
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1702
|
+
}, z.ZodUnknown, "strip">[];
|
|
1660
1703
|
presets: {
|
|
1661
1704
|
name: string;
|
|
1662
1705
|
id: string;
|
|
@@ -1668,17 +1711,17 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1668
1711
|
}[];
|
|
1669
1712
|
providerAssignedName: string;
|
|
1670
1713
|
notes: string | null;
|
|
1671
|
-
tags: string[];
|
|
1672
|
-
relations: z.objectOutputType<{
|
|
1673
|
-
id: z.ZodString;
|
|
1674
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1675
|
-
}, z.ZodUnknown, "strip">[];
|
|
1676
1714
|
enabled: boolean;
|
|
1677
1715
|
}, {
|
|
1678
1716
|
groups: string[];
|
|
1679
1717
|
id: string;
|
|
1680
1718
|
createdOn: string;
|
|
1681
1719
|
lastModifiedOn: string;
|
|
1720
|
+
tags: string[];
|
|
1721
|
+
relations: z.objectInputType<{
|
|
1722
|
+
id: z.ZodString;
|
|
1723
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1724
|
+
}, z.ZodUnknown, "strip">[];
|
|
1682
1725
|
presets: {
|
|
1683
1726
|
name: string;
|
|
1684
1727
|
id: string;
|
|
@@ -1690,11 +1733,6 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1690
1733
|
}[];
|
|
1691
1734
|
providerAssignedName: string;
|
|
1692
1735
|
notes: string | null;
|
|
1693
|
-
tags: string[];
|
|
1694
|
-
relations: z.objectInputType<{
|
|
1695
|
-
id: z.ZodString;
|
|
1696
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1697
|
-
}, z.ZodUnknown, "strip">[];
|
|
1698
1736
|
enabled: boolean;
|
|
1699
1737
|
}>>, z.ZodObject<{
|
|
1700
1738
|
name: z.ZodString;
|
|
@@ -1758,13 +1796,13 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1758
1796
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
1759
1797
|
relations: z.ZodArray<z.ZodObject<{
|
|
1760
1798
|
id: z.ZodString;
|
|
1761
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1799
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1762
1800
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1763
1801
|
id: z.ZodString;
|
|
1764
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1802
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1765
1803
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1766
1804
|
id: z.ZodString;
|
|
1767
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1805
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1768
1806
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
1769
1807
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
1770
1808
|
enabled: z.ZodBoolean;
|
|
@@ -1775,6 +1813,11 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1775
1813
|
id: string;
|
|
1776
1814
|
createdOn: string;
|
|
1777
1815
|
lastModifiedOn: string;
|
|
1816
|
+
tags: string[];
|
|
1817
|
+
relations: z.objectOutputType<{
|
|
1818
|
+
id: z.ZodString;
|
|
1819
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1820
|
+
}, z.ZodUnknown, "strip">[];
|
|
1778
1821
|
presets: {
|
|
1779
1822
|
name: string;
|
|
1780
1823
|
id: string;
|
|
@@ -1786,17 +1829,17 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1786
1829
|
}[];
|
|
1787
1830
|
providerAssignedName: string;
|
|
1788
1831
|
notes: string | null;
|
|
1789
|
-
tags: string[];
|
|
1790
|
-
relations: z.objectOutputType<{
|
|
1791
|
-
id: z.ZodString;
|
|
1792
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1793
|
-
}, z.ZodUnknown, "strip">[];
|
|
1794
1832
|
enabled: boolean;
|
|
1795
1833
|
}, {
|
|
1796
1834
|
groups: string[];
|
|
1797
1835
|
id: string;
|
|
1798
1836
|
createdOn: string;
|
|
1799
1837
|
lastModifiedOn: string;
|
|
1838
|
+
tags: string[];
|
|
1839
|
+
relations: z.objectInputType<{
|
|
1840
|
+
id: z.ZodString;
|
|
1841
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1842
|
+
}, z.ZodUnknown, "strip">[];
|
|
1800
1843
|
presets: {
|
|
1801
1844
|
name: string;
|
|
1802
1845
|
id: string;
|
|
@@ -1808,11 +1851,6 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1808
1851
|
}[];
|
|
1809
1852
|
providerAssignedName: string;
|
|
1810
1853
|
notes: string | null;
|
|
1811
|
-
tags: string[];
|
|
1812
|
-
relations: z.objectInputType<{
|
|
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
1854
|
enabled: boolean;
|
|
1817
1855
|
}>>, z.ZodObject<{
|
|
1818
1856
|
name: z.ZodString;
|
|
@@ -1872,13 +1910,13 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
1872
1910
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
1873
1911
|
relations: z.ZodArray<z.ZodObject<{
|
|
1874
1912
|
id: z.ZodString;
|
|
1875
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1913
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1876
1914
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1877
1915
|
id: z.ZodString;
|
|
1878
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1916
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1879
1917
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1880
1918
|
id: z.ZodString;
|
|
1881
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1919
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1882
1920
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
1883
1921
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
1884
1922
|
enabled: z.ZodBoolean;
|
|
@@ -1889,6 +1927,11 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
1889
1927
|
id: string;
|
|
1890
1928
|
createdOn: string;
|
|
1891
1929
|
lastModifiedOn: string;
|
|
1930
|
+
tags: string[];
|
|
1931
|
+
relations: z.objectOutputType<{
|
|
1932
|
+
id: z.ZodString;
|
|
1933
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1934
|
+
}, z.ZodUnknown, "strip">[];
|
|
1892
1935
|
presets: {
|
|
1893
1936
|
name: string;
|
|
1894
1937
|
id: string;
|
|
@@ -1900,17 +1943,17 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
1900
1943
|
}[];
|
|
1901
1944
|
providerAssignedName: string;
|
|
1902
1945
|
notes: string | null;
|
|
1903
|
-
tags: string[];
|
|
1904
|
-
relations: z.objectOutputType<{
|
|
1905
|
-
id: z.ZodString;
|
|
1906
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1907
|
-
}, z.ZodUnknown, "strip">[];
|
|
1908
1946
|
enabled: boolean;
|
|
1909
1947
|
}, {
|
|
1910
1948
|
groups: string[];
|
|
1911
1949
|
id: string;
|
|
1912
1950
|
createdOn: string;
|
|
1913
1951
|
lastModifiedOn: string;
|
|
1952
|
+
tags: string[];
|
|
1953
|
+
relations: z.objectInputType<{
|
|
1954
|
+
id: z.ZodString;
|
|
1955
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1956
|
+
}, z.ZodUnknown, "strip">[];
|
|
1914
1957
|
presets: {
|
|
1915
1958
|
name: string;
|
|
1916
1959
|
id: string;
|
|
@@ -1922,11 +1965,6 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
1922
1965
|
}[];
|
|
1923
1966
|
providerAssignedName: string;
|
|
1924
1967
|
notes: string | null;
|
|
1925
|
-
tags: string[];
|
|
1926
|
-
relations: z.objectInputType<{
|
|
1927
|
-
id: z.ZodString;
|
|
1928
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
1929
|
-
}, z.ZodUnknown, "strip">[];
|
|
1930
1968
|
enabled: boolean;
|
|
1931
1969
|
}>>, z.ZodObject<{
|
|
1932
1970
|
name: z.ZodString;
|
|
@@ -1986,13 +2024,13 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
1986
2024
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
1987
2025
|
relations: z.ZodArray<z.ZodObject<{
|
|
1988
2026
|
id: z.ZodString;
|
|
1989
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2027
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1990
2028
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
1991
2029
|
id: z.ZodString;
|
|
1992
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2030
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1993
2031
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
1994
2032
|
id: z.ZodString;
|
|
1995
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2033
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1996
2034
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
1997
2035
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
1998
2036
|
enabled: z.ZodBoolean;
|
|
@@ -2003,6 +2041,11 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
2003
2041
|
id: string;
|
|
2004
2042
|
createdOn: string;
|
|
2005
2043
|
lastModifiedOn: string;
|
|
2044
|
+
tags: string[];
|
|
2045
|
+
relations: z.objectOutputType<{
|
|
2046
|
+
id: z.ZodString;
|
|
2047
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2048
|
+
}, z.ZodUnknown, "strip">[];
|
|
2006
2049
|
presets: {
|
|
2007
2050
|
name: string;
|
|
2008
2051
|
id: string;
|
|
@@ -2014,17 +2057,17 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
2014
2057
|
}[];
|
|
2015
2058
|
providerAssignedName: string;
|
|
2016
2059
|
notes: string | null;
|
|
2017
|
-
tags: string[];
|
|
2018
|
-
relations: z.objectOutputType<{
|
|
2019
|
-
id: z.ZodString;
|
|
2020
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2021
|
-
}, z.ZodUnknown, "strip">[];
|
|
2022
2060
|
enabled: boolean;
|
|
2023
2061
|
}, {
|
|
2024
2062
|
groups: string[];
|
|
2025
2063
|
id: string;
|
|
2026
2064
|
createdOn: string;
|
|
2027
2065
|
lastModifiedOn: string;
|
|
2066
|
+
tags: string[];
|
|
2067
|
+
relations: z.objectInputType<{
|
|
2068
|
+
id: z.ZodString;
|
|
2069
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2070
|
+
}, z.ZodUnknown, "strip">[];
|
|
2028
2071
|
presets: {
|
|
2029
2072
|
name: string;
|
|
2030
2073
|
id: string;
|
|
@@ -2036,11 +2079,6 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
2036
2079
|
}[];
|
|
2037
2080
|
providerAssignedName: string;
|
|
2038
2081
|
notes: string | null;
|
|
2039
|
-
tags: string[];
|
|
2040
|
-
relations: z.objectInputType<{
|
|
2041
|
-
id: z.ZodString;
|
|
2042
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2043
|
-
}, z.ZodUnknown, "strip">[];
|
|
2044
2082
|
enabled: boolean;
|
|
2045
2083
|
}>>, z.ZodObject<{
|
|
2046
2084
|
name: z.ZodString;
|
|
@@ -2100,13 +2138,13 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
2100
2138
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
2101
2139
|
relations: z.ZodArray<z.ZodObject<{
|
|
2102
2140
|
id: z.ZodString;
|
|
2103
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2141
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2104
2142
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2105
2143
|
id: z.ZodString;
|
|
2106
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2144
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2107
2145
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2108
2146
|
id: z.ZodString;
|
|
2109
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2147
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2110
2148
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
2111
2149
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
2112
2150
|
enabled: z.ZodBoolean;
|
|
@@ -2117,6 +2155,11 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
2117
2155
|
id: string;
|
|
2118
2156
|
createdOn: string;
|
|
2119
2157
|
lastModifiedOn: string;
|
|
2158
|
+
tags: string[];
|
|
2159
|
+
relations: z.objectOutputType<{
|
|
2160
|
+
id: z.ZodString;
|
|
2161
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2162
|
+
}, z.ZodUnknown, "strip">[];
|
|
2120
2163
|
presets: {
|
|
2121
2164
|
name: string;
|
|
2122
2165
|
id: string;
|
|
@@ -2128,17 +2171,17 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
2128
2171
|
}[];
|
|
2129
2172
|
providerAssignedName: string;
|
|
2130
2173
|
notes: string | null;
|
|
2131
|
-
tags: string[];
|
|
2132
|
-
relations: z.objectOutputType<{
|
|
2133
|
-
id: z.ZodString;
|
|
2134
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2135
|
-
}, z.ZodUnknown, "strip">[];
|
|
2136
2174
|
enabled: boolean;
|
|
2137
2175
|
}, {
|
|
2138
2176
|
groups: string[];
|
|
2139
2177
|
id: string;
|
|
2140
2178
|
createdOn: string;
|
|
2141
2179
|
lastModifiedOn: string;
|
|
2180
|
+
tags: string[];
|
|
2181
|
+
relations: z.objectInputType<{
|
|
2182
|
+
id: z.ZodString;
|
|
2183
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2184
|
+
}, z.ZodUnknown, "strip">[];
|
|
2142
2185
|
presets: {
|
|
2143
2186
|
name: string;
|
|
2144
2187
|
id: string;
|
|
@@ -2150,11 +2193,6 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
2150
2193
|
}[];
|
|
2151
2194
|
providerAssignedName: string;
|
|
2152
2195
|
notes: string | null;
|
|
2153
|
-
tags: string[];
|
|
2154
|
-
relations: z.objectInputType<{
|
|
2155
|
-
id: z.ZodString;
|
|
2156
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2157
|
-
}, z.ZodUnknown, "strip">[];
|
|
2158
2196
|
enabled: boolean;
|
|
2159
2197
|
}>>, z.ZodObject<{
|
|
2160
2198
|
name: z.ZodString;
|
|
@@ -2214,13 +2252,13 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
2214
2252
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
2215
2253
|
relations: z.ZodArray<z.ZodObject<{
|
|
2216
2254
|
id: z.ZodString;
|
|
2217
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2255
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2218
2256
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2219
2257
|
id: z.ZodString;
|
|
2220
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2258
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2221
2259
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2222
2260
|
id: z.ZodString;
|
|
2223
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2261
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2224
2262
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
2225
2263
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
2226
2264
|
enabled: z.ZodBoolean;
|
|
@@ -2231,6 +2269,11 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
2231
2269
|
id: string;
|
|
2232
2270
|
createdOn: string;
|
|
2233
2271
|
lastModifiedOn: string;
|
|
2272
|
+
tags: string[];
|
|
2273
|
+
relations: z.objectOutputType<{
|
|
2274
|
+
id: z.ZodString;
|
|
2275
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2276
|
+
}, z.ZodUnknown, "strip">[];
|
|
2234
2277
|
presets: {
|
|
2235
2278
|
name: string;
|
|
2236
2279
|
id: string;
|
|
@@ -2242,17 +2285,17 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
2242
2285
|
}[];
|
|
2243
2286
|
providerAssignedName: string;
|
|
2244
2287
|
notes: string | null;
|
|
2245
|
-
tags: string[];
|
|
2246
|
-
relations: z.objectOutputType<{
|
|
2247
|
-
id: z.ZodString;
|
|
2248
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2249
|
-
}, z.ZodUnknown, "strip">[];
|
|
2250
2288
|
enabled: boolean;
|
|
2251
2289
|
}, {
|
|
2252
2290
|
groups: string[];
|
|
2253
2291
|
id: string;
|
|
2254
2292
|
createdOn: string;
|
|
2255
2293
|
lastModifiedOn: string;
|
|
2294
|
+
tags: string[];
|
|
2295
|
+
relations: z.objectInputType<{
|
|
2296
|
+
id: z.ZodString;
|
|
2297
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2298
|
+
}, z.ZodUnknown, "strip">[];
|
|
2256
2299
|
presets: {
|
|
2257
2300
|
name: string;
|
|
2258
2301
|
id: string;
|
|
@@ -2264,11 +2307,6 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
2264
2307
|
}[];
|
|
2265
2308
|
providerAssignedName: string;
|
|
2266
2309
|
notes: string | null;
|
|
2267
|
-
tags: string[];
|
|
2268
|
-
relations: z.objectInputType<{
|
|
2269
|
-
id: z.ZodString;
|
|
2270
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2271
|
-
}, z.ZodUnknown, "strip">[];
|
|
2272
2310
|
enabled: boolean;
|
|
2273
2311
|
}>>, z.ZodObject<{
|
|
2274
2312
|
name: z.ZodString;
|
|
@@ -2328,13 +2366,13 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
2328
2366
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
2329
2367
|
relations: z.ZodArray<z.ZodObject<{
|
|
2330
2368
|
id: z.ZodString;
|
|
2331
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2369
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2332
2370
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2333
2371
|
id: z.ZodString;
|
|
2334
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2372
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2335
2373
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2336
2374
|
id: z.ZodString;
|
|
2337
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2375
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2338
2376
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
2339
2377
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
2340
2378
|
enabled: z.ZodBoolean;
|
|
@@ -2345,6 +2383,11 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
2345
2383
|
id: string;
|
|
2346
2384
|
createdOn: string;
|
|
2347
2385
|
lastModifiedOn: string;
|
|
2386
|
+
tags: string[];
|
|
2387
|
+
relations: z.objectOutputType<{
|
|
2388
|
+
id: z.ZodString;
|
|
2389
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2390
|
+
}, z.ZodUnknown, "strip">[];
|
|
2348
2391
|
presets: {
|
|
2349
2392
|
name: string;
|
|
2350
2393
|
id: string;
|
|
@@ -2356,17 +2399,17 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
2356
2399
|
}[];
|
|
2357
2400
|
providerAssignedName: string;
|
|
2358
2401
|
notes: string | null;
|
|
2359
|
-
tags: string[];
|
|
2360
|
-
relations: z.objectOutputType<{
|
|
2361
|
-
id: z.ZodString;
|
|
2362
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2363
|
-
}, z.ZodUnknown, "strip">[];
|
|
2364
2402
|
enabled: boolean;
|
|
2365
2403
|
}, {
|
|
2366
2404
|
groups: string[];
|
|
2367
2405
|
id: string;
|
|
2368
2406
|
createdOn: string;
|
|
2369
2407
|
lastModifiedOn: string;
|
|
2408
|
+
tags: string[];
|
|
2409
|
+
relations: z.objectInputType<{
|
|
2410
|
+
id: z.ZodString;
|
|
2411
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2412
|
+
}, z.ZodUnknown, "strip">[];
|
|
2370
2413
|
presets: {
|
|
2371
2414
|
name: string;
|
|
2372
2415
|
id: string;
|
|
@@ -2378,11 +2421,6 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
2378
2421
|
}[];
|
|
2379
2422
|
providerAssignedName: string;
|
|
2380
2423
|
notes: string | null;
|
|
2381
|
-
tags: string[];
|
|
2382
|
-
relations: z.objectInputType<{
|
|
2383
|
-
id: z.ZodString;
|
|
2384
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2385
|
-
}, z.ZodUnknown, "strip">[];
|
|
2386
2424
|
enabled: boolean;
|
|
2387
2425
|
}>>, z.ZodObject<{
|
|
2388
2426
|
name: z.ZodString;
|
|
@@ -2442,13 +2480,13 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2442
2480
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
2443
2481
|
relations: z.ZodArray<z.ZodObject<{
|
|
2444
2482
|
id: z.ZodString;
|
|
2445
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2483
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2446
2484
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2447
2485
|
id: z.ZodString;
|
|
2448
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2486
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2449
2487
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2450
2488
|
id: z.ZodString;
|
|
2451
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2489
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2452
2490
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
2453
2491
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
2454
2492
|
enabled: z.ZodBoolean;
|
|
@@ -2459,6 +2497,11 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2459
2497
|
id: string;
|
|
2460
2498
|
createdOn: string;
|
|
2461
2499
|
lastModifiedOn: string;
|
|
2500
|
+
tags: string[];
|
|
2501
|
+
relations: z.objectOutputType<{
|
|
2502
|
+
id: z.ZodString;
|
|
2503
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2504
|
+
}, z.ZodUnknown, "strip">[];
|
|
2462
2505
|
presets: {
|
|
2463
2506
|
name: string;
|
|
2464
2507
|
id: string;
|
|
@@ -2470,17 +2513,109 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2470
2513
|
}[];
|
|
2471
2514
|
providerAssignedName: string;
|
|
2472
2515
|
notes: string | null;
|
|
2516
|
+
enabled: boolean;
|
|
2517
|
+
}, {
|
|
2518
|
+
groups: string[];
|
|
2519
|
+
id: string;
|
|
2520
|
+
createdOn: string;
|
|
2521
|
+
lastModifiedOn: string;
|
|
2473
2522
|
tags: string[];
|
|
2474
|
-
relations: z.
|
|
2523
|
+
relations: z.objectInputType<{
|
|
2475
2524
|
id: z.ZodString;
|
|
2476
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2525
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2477
2526
|
}, z.ZodUnknown, "strip">[];
|
|
2527
|
+
presets: {
|
|
2528
|
+
name: string;
|
|
2529
|
+
id: string;
|
|
2530
|
+
isDefault: boolean;
|
|
2531
|
+
assignedRef: string | null;
|
|
2532
|
+
createdOn: string;
|
|
2533
|
+
lastModifiedOn: string;
|
|
2534
|
+
params?: unknown;
|
|
2535
|
+
}[];
|
|
2536
|
+
providerAssignedName: string;
|
|
2537
|
+
notes: string | null;
|
|
2478
2538
|
enabled: boolean;
|
|
2539
|
+
}>>, z.ZodObject<{
|
|
2540
|
+
name: z.ZodString;
|
|
2541
|
+
foreignRef: z.ZodString;
|
|
2542
|
+
provider: z.ZodString;
|
|
2543
|
+
providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
|
|
2544
|
+
}, "strip", z.ZodTypeAny, {
|
|
2545
|
+
name: string;
|
|
2546
|
+
foreignRef: string;
|
|
2547
|
+
provider: string;
|
|
2548
|
+
providerMetadata: {} & {
|
|
2549
|
+
[k: string]: unknown;
|
|
2550
|
+
};
|
|
2479
2551
|
}, {
|
|
2552
|
+
name: string;
|
|
2553
|
+
foreignRef: string;
|
|
2554
|
+
provider: string;
|
|
2555
|
+
providerMetadata: {} & {
|
|
2556
|
+
[k: string]: unknown;
|
|
2557
|
+
};
|
|
2558
|
+
}>>;
|
|
2559
|
+
export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2560
|
+
type: z.ZodLiteral<"nvr-recorder">;
|
|
2561
|
+
}, "strip", z.ZodTypeAny, {
|
|
2562
|
+
type: "nvr-recorder";
|
|
2563
|
+
}, {
|
|
2564
|
+
type: "nvr-recorder";
|
|
2565
|
+
}>, z.ZodObject<{
|
|
2566
|
+
id: z.ZodString;
|
|
2567
|
+
presets: z.ZodArray<z.ZodObject<{
|
|
2568
|
+
id: z.ZodString;
|
|
2569
|
+
name: z.ZodString;
|
|
2570
|
+
params: z.ZodUnknown;
|
|
2571
|
+
isDefault: z.ZodBoolean;
|
|
2572
|
+
assignedRef: z.ZodNullable<z.ZodString>;
|
|
2573
|
+
createdOn: z.ZodString;
|
|
2574
|
+
lastModifiedOn: z.ZodString;
|
|
2575
|
+
}, "strip", z.ZodTypeAny, {
|
|
2576
|
+
name: string;
|
|
2577
|
+
id: string;
|
|
2578
|
+
isDefault: boolean;
|
|
2579
|
+
assignedRef: string | null;
|
|
2580
|
+
createdOn: string;
|
|
2581
|
+
lastModifiedOn: string;
|
|
2582
|
+
params?: unknown;
|
|
2583
|
+
}, {
|
|
2584
|
+
name: string;
|
|
2585
|
+
id: string;
|
|
2586
|
+
isDefault: boolean;
|
|
2587
|
+
assignedRef: string | null;
|
|
2588
|
+
createdOn: string;
|
|
2589
|
+
lastModifiedOn: string;
|
|
2590
|
+
params?: unknown;
|
|
2591
|
+
}>, "many">;
|
|
2592
|
+
providerAssignedName: z.ZodString;
|
|
2593
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
2594
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
2595
|
+
relations: z.ZodArray<z.ZodObject<{
|
|
2596
|
+
id: z.ZodString;
|
|
2597
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2598
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2599
|
+
id: z.ZodString;
|
|
2600
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2601
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2602
|
+
id: z.ZodString;
|
|
2603
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2604
|
+
}, z.ZodUnknown, "strip">>, "many">;
|
|
2605
|
+
groups: z.ZodArray<z.ZodString, "many">;
|
|
2606
|
+
enabled: z.ZodBoolean;
|
|
2607
|
+
createdOn: z.ZodString;
|
|
2608
|
+
lastModifiedOn: z.ZodString;
|
|
2609
|
+
}, "strip", z.ZodTypeAny, {
|
|
2480
2610
|
groups: string[];
|
|
2481
2611
|
id: string;
|
|
2482
2612
|
createdOn: string;
|
|
2483
2613
|
lastModifiedOn: string;
|
|
2614
|
+
tags: string[];
|
|
2615
|
+
relations: z.objectOutputType<{
|
|
2616
|
+
id: z.ZodString;
|
|
2617
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2618
|
+
}, z.ZodUnknown, "strip">[];
|
|
2484
2619
|
presets: {
|
|
2485
2620
|
name: string;
|
|
2486
2621
|
id: string;
|
|
@@ -2492,11 +2627,28 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2492
2627
|
}[];
|
|
2493
2628
|
providerAssignedName: string;
|
|
2494
2629
|
notes: string | null;
|
|
2630
|
+
enabled: boolean;
|
|
2631
|
+
}, {
|
|
2632
|
+
groups: string[];
|
|
2633
|
+
id: string;
|
|
2634
|
+
createdOn: string;
|
|
2635
|
+
lastModifiedOn: string;
|
|
2495
2636
|
tags: string[];
|
|
2496
2637
|
relations: z.objectInputType<{
|
|
2497
2638
|
id: z.ZodString;
|
|
2498
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2639
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2499
2640
|
}, z.ZodUnknown, "strip">[];
|
|
2641
|
+
presets: {
|
|
2642
|
+
name: string;
|
|
2643
|
+
id: string;
|
|
2644
|
+
isDefault: boolean;
|
|
2645
|
+
assignedRef: string | null;
|
|
2646
|
+
createdOn: string;
|
|
2647
|
+
lastModifiedOn: string;
|
|
2648
|
+
params?: unknown;
|
|
2649
|
+
}[];
|
|
2650
|
+
providerAssignedName: string;
|
|
2651
|
+
notes: string | null;
|
|
2500
2652
|
enabled: boolean;
|
|
2501
2653
|
}>>, z.ZodObject<{
|
|
2502
2654
|
name: z.ZodString;
|
|
@@ -2518,12 +2670,12 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2518
2670
|
[k: string]: unknown;
|
|
2519
2671
|
};
|
|
2520
2672
|
}>>;
|
|
2521
|
-
export declare const
|
|
2522
|
-
type: z.ZodLiteral<"
|
|
2673
|
+
export declare const sNvrExporterDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2674
|
+
type: z.ZodLiteral<"nvr-exporter">;
|
|
2523
2675
|
}, "strip", z.ZodTypeAny, {
|
|
2524
|
-
type: "
|
|
2676
|
+
type: "nvr-exporter";
|
|
2525
2677
|
}, {
|
|
2526
|
-
type: "
|
|
2678
|
+
type: "nvr-exporter";
|
|
2527
2679
|
}>, z.ZodObject<{
|
|
2528
2680
|
id: z.ZodString;
|
|
2529
2681
|
presets: z.ZodArray<z.ZodObject<{
|
|
@@ -2556,13 +2708,13 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
2556
2708
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
2557
2709
|
relations: z.ZodArray<z.ZodObject<{
|
|
2558
2710
|
id: z.ZodString;
|
|
2559
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2711
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2560
2712
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2561
2713
|
id: z.ZodString;
|
|
2562
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2714
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2563
2715
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2564
2716
|
id: z.ZodString;
|
|
2565
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2717
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2566
2718
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
2567
2719
|
groups: z.ZodArray<z.ZodString, "many">;
|
|
2568
2720
|
enabled: z.ZodBoolean;
|
|
@@ -2573,6 +2725,11 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
2573
2725
|
id: string;
|
|
2574
2726
|
createdOn: string;
|
|
2575
2727
|
lastModifiedOn: string;
|
|
2728
|
+
tags: string[];
|
|
2729
|
+
relations: z.objectOutputType<{
|
|
2730
|
+
id: z.ZodString;
|
|
2731
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2732
|
+
}, z.ZodUnknown, "strip">[];
|
|
2576
2733
|
presets: {
|
|
2577
2734
|
name: string;
|
|
2578
2735
|
id: string;
|
|
@@ -2584,17 +2741,109 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
2584
2741
|
}[];
|
|
2585
2742
|
providerAssignedName: string;
|
|
2586
2743
|
notes: string | null;
|
|
2744
|
+
enabled: boolean;
|
|
2745
|
+
}, {
|
|
2746
|
+
groups: string[];
|
|
2747
|
+
id: string;
|
|
2748
|
+
createdOn: string;
|
|
2749
|
+
lastModifiedOn: string;
|
|
2587
2750
|
tags: string[];
|
|
2588
|
-
relations: z.
|
|
2751
|
+
relations: z.objectInputType<{
|
|
2589
2752
|
id: z.ZodString;
|
|
2590
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2753
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2591
2754
|
}, z.ZodUnknown, "strip">[];
|
|
2755
|
+
presets: {
|
|
2756
|
+
name: string;
|
|
2757
|
+
id: string;
|
|
2758
|
+
isDefault: boolean;
|
|
2759
|
+
assignedRef: string | null;
|
|
2760
|
+
createdOn: string;
|
|
2761
|
+
lastModifiedOn: string;
|
|
2762
|
+
params?: unknown;
|
|
2763
|
+
}[];
|
|
2764
|
+
providerAssignedName: string;
|
|
2765
|
+
notes: string | null;
|
|
2592
2766
|
enabled: boolean;
|
|
2767
|
+
}>>, z.ZodObject<{
|
|
2768
|
+
name: z.ZodString;
|
|
2769
|
+
foreignRef: z.ZodString;
|
|
2770
|
+
provider: z.ZodString;
|
|
2771
|
+
providerMetadata: z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>;
|
|
2772
|
+
}, "strip", z.ZodTypeAny, {
|
|
2773
|
+
name: string;
|
|
2774
|
+
foreignRef: string;
|
|
2775
|
+
provider: string;
|
|
2776
|
+
providerMetadata: {} & {
|
|
2777
|
+
[k: string]: unknown;
|
|
2778
|
+
};
|
|
2779
|
+
}, {
|
|
2780
|
+
name: string;
|
|
2781
|
+
foreignRef: string;
|
|
2782
|
+
provider: string;
|
|
2783
|
+
providerMetadata: {} & {
|
|
2784
|
+
[k: string]: unknown;
|
|
2785
|
+
};
|
|
2786
|
+
}>>;
|
|
2787
|
+
export declare const sNvrAnalyticsServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
2788
|
+
type: z.ZodLiteral<"nvr-analytics-server">;
|
|
2789
|
+
}, "strip", z.ZodTypeAny, {
|
|
2790
|
+
type: "nvr-analytics-server";
|
|
2593
2791
|
}, {
|
|
2792
|
+
type: "nvr-analytics-server";
|
|
2793
|
+
}>, z.ZodObject<{
|
|
2794
|
+
id: z.ZodString;
|
|
2795
|
+
presets: z.ZodArray<z.ZodObject<{
|
|
2796
|
+
id: z.ZodString;
|
|
2797
|
+
name: z.ZodString;
|
|
2798
|
+
params: z.ZodUnknown;
|
|
2799
|
+
isDefault: z.ZodBoolean;
|
|
2800
|
+
assignedRef: z.ZodNullable<z.ZodString>;
|
|
2801
|
+
createdOn: z.ZodString;
|
|
2802
|
+
lastModifiedOn: z.ZodString;
|
|
2803
|
+
}, "strip", z.ZodTypeAny, {
|
|
2804
|
+
name: string;
|
|
2805
|
+
id: string;
|
|
2806
|
+
isDefault: boolean;
|
|
2807
|
+
assignedRef: string | null;
|
|
2808
|
+
createdOn: string;
|
|
2809
|
+
lastModifiedOn: string;
|
|
2810
|
+
params?: unknown;
|
|
2811
|
+
}, {
|
|
2812
|
+
name: string;
|
|
2813
|
+
id: string;
|
|
2814
|
+
isDefault: boolean;
|
|
2815
|
+
assignedRef: string | null;
|
|
2816
|
+
createdOn: string;
|
|
2817
|
+
lastModifiedOn: string;
|
|
2818
|
+
params?: unknown;
|
|
2819
|
+
}>, "many">;
|
|
2820
|
+
providerAssignedName: z.ZodString;
|
|
2821
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
2822
|
+
tags: z.ZodArray<z.ZodString, "many">;
|
|
2823
|
+
relations: z.ZodArray<z.ZodObject<{
|
|
2824
|
+
id: z.ZodString;
|
|
2825
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2826
|
+
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2827
|
+
id: z.ZodString;
|
|
2828
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2829
|
+
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2830
|
+
id: z.ZodString;
|
|
2831
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2832
|
+
}, z.ZodUnknown, "strip">>, "many">;
|
|
2833
|
+
groups: z.ZodArray<z.ZodString, "many">;
|
|
2834
|
+
enabled: z.ZodBoolean;
|
|
2835
|
+
createdOn: z.ZodString;
|
|
2836
|
+
lastModifiedOn: z.ZodString;
|
|
2837
|
+
}, "strip", z.ZodTypeAny, {
|
|
2594
2838
|
groups: string[];
|
|
2595
2839
|
id: string;
|
|
2596
2840
|
createdOn: string;
|
|
2597
2841
|
lastModifiedOn: string;
|
|
2842
|
+
tags: string[];
|
|
2843
|
+
relations: z.objectOutputType<{
|
|
2844
|
+
id: z.ZodString;
|
|
2845
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2846
|
+
}, z.ZodUnknown, "strip">[];
|
|
2598
2847
|
presets: {
|
|
2599
2848
|
name: string;
|
|
2600
2849
|
id: string;
|
|
@@ -2606,11 +2855,28 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
2606
2855
|
}[];
|
|
2607
2856
|
providerAssignedName: string;
|
|
2608
2857
|
notes: string | null;
|
|
2858
|
+
enabled: boolean;
|
|
2859
|
+
}, {
|
|
2860
|
+
groups: string[];
|
|
2861
|
+
id: string;
|
|
2862
|
+
createdOn: string;
|
|
2863
|
+
lastModifiedOn: string;
|
|
2609
2864
|
tags: string[];
|
|
2610
2865
|
relations: z.objectInputType<{
|
|
2611
2866
|
id: z.ZodString;
|
|
2612
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2867
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2613
2868
|
}, z.ZodUnknown, "strip">[];
|
|
2869
|
+
presets: {
|
|
2870
|
+
name: string;
|
|
2871
|
+
id: string;
|
|
2872
|
+
isDefault: boolean;
|
|
2873
|
+
assignedRef: string | null;
|
|
2874
|
+
createdOn: string;
|
|
2875
|
+
lastModifiedOn: string;
|
|
2876
|
+
params?: unknown;
|
|
2877
|
+
}[];
|
|
2878
|
+
providerAssignedName: string;
|
|
2879
|
+
notes: string | null;
|
|
2614
2880
|
enabled: boolean;
|
|
2615
2881
|
}>>, z.ZodObject<{
|
|
2616
2882
|
name: z.ZodString;
|
|
@@ -2641,45 +2907,45 @@ export declare const sAddDeviceRequest: z.ZodObject<{
|
|
|
2641
2907
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
2642
2908
|
relations: z.ZodArray<z.ZodObject<{
|
|
2643
2909
|
id: z.ZodString;
|
|
2644
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2910
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2645
2911
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2646
2912
|
id: z.ZodString;
|
|
2647
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2913
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2648
2914
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2649
2915
|
id: z.ZodString;
|
|
2650
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2916
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2651
2917
|
}, z.ZodUnknown, "strip">>, "many">;
|
|
2652
|
-
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", "display", "recorder"]>;
|
|
2918
|
+
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", "display", "nvr-recorder", "nvr-exporter", "nvr-analytics-server"]>;
|
|
2653
2919
|
specs: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>>;
|
|
2654
2920
|
}, "strip", z.ZodTypeAny, {
|
|
2655
2921
|
name: string;
|
|
2656
|
-
type: "camera" | "server" | "display" | "
|
|
2922
|
+
type: "camera" | "server" | "display" | "door" | "io-board" | "camera-lift" | "motion-sensor" | "panic-button" | "intercom-operator" | "intercom-terminal" | "pbx" | "alarm" | "device-gateway" | "presence-tracker" | "reader" | "nvr-recorder" | "nvr-exporter" | "nvr-analytics-server";
|
|
2657
2923
|
foreignRef: string;
|
|
2658
|
-
notes: string | null;
|
|
2659
2924
|
tags: string[];
|
|
2660
|
-
relations: z.objectOutputType<{
|
|
2661
|
-
id: z.ZodString;
|
|
2662
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2663
|
-
}, z.ZodUnknown, "strip">[];
|
|
2664
2925
|
provider: string;
|
|
2665
2926
|
providerMetadata: {} & {
|
|
2666
2927
|
[k: string]: unknown;
|
|
2667
2928
|
};
|
|
2929
|
+
relations: z.objectOutputType<{
|
|
2930
|
+
id: z.ZodString;
|
|
2931
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2932
|
+
}, z.ZodUnknown, "strip">[];
|
|
2933
|
+
notes: string | null;
|
|
2668
2934
|
specs?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
2669
2935
|
}, {
|
|
2670
2936
|
name: string;
|
|
2671
|
-
type: "camera" | "server" | "display" | "
|
|
2937
|
+
type: "camera" | "server" | "display" | "door" | "io-board" | "camera-lift" | "motion-sensor" | "panic-button" | "intercom-operator" | "intercom-terminal" | "pbx" | "alarm" | "device-gateway" | "presence-tracker" | "reader" | "nvr-recorder" | "nvr-exporter" | "nvr-analytics-server";
|
|
2672
2938
|
foreignRef: string;
|
|
2673
|
-
notes: string | null;
|
|
2674
2939
|
tags: string[];
|
|
2675
|
-
relations: z.objectInputType<{
|
|
2676
|
-
id: z.ZodString;
|
|
2677
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2678
|
-
}, z.ZodUnknown, "strip">[];
|
|
2679
2940
|
provider: string;
|
|
2680
2941
|
providerMetadata: {} & {
|
|
2681
2942
|
[k: string]: unknown;
|
|
2682
2943
|
};
|
|
2944
|
+
relations: z.objectInputType<{
|
|
2945
|
+
id: z.ZodString;
|
|
2946
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2947
|
+
}, z.ZodUnknown, "strip">[];
|
|
2948
|
+
notes: string | null;
|
|
2683
2949
|
specs?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
2684
2950
|
}>;
|
|
2685
2951
|
export declare const sUpdateDeviceRequest: z.ZodObject<{
|
|
@@ -2691,39 +2957,39 @@ export declare const sUpdateDeviceRequest: z.ZodObject<{
|
|
|
2691
2957
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2692
2958
|
relations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2693
2959
|
id: z.ZodString;
|
|
2694
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2960
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2695
2961
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2696
2962
|
id: z.ZodString;
|
|
2697
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2963
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2698
2964
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2699
2965
|
id: z.ZodString;
|
|
2700
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2966
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2701
2967
|
}, z.ZodUnknown, "strip">>, "many">>;
|
|
2702
2968
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2703
2969
|
}, "strip", z.ZodTypeAny, {
|
|
2704
2970
|
id: string;
|
|
2705
2971
|
name?: string | undefined;
|
|
2706
2972
|
specs?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
2707
|
-
notes?: string | null | undefined;
|
|
2708
2973
|
tags?: string[] | undefined;
|
|
2974
|
+
providerMetadata?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
2709
2975
|
relations?: z.objectOutputType<{
|
|
2710
2976
|
id: z.ZodString;
|
|
2711
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2977
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2712
2978
|
}, z.ZodUnknown, "strip">[] | undefined;
|
|
2979
|
+
notes?: string | null | undefined;
|
|
2713
2980
|
enabled?: boolean | undefined;
|
|
2714
|
-
providerMetadata?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
2715
2981
|
}, {
|
|
2716
2982
|
id: string;
|
|
2717
2983
|
name?: string | undefined;
|
|
2718
2984
|
specs?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
2719
|
-
notes?: string | null | undefined;
|
|
2720
2985
|
tags?: string[] | undefined;
|
|
2986
|
+
providerMetadata?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
2721
2987
|
relations?: z.objectInputType<{
|
|
2722
2988
|
id: z.ZodString;
|
|
2723
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
2989
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2724
2990
|
}, z.ZodUnknown, "strip">[] | undefined;
|
|
2991
|
+
notes?: string | null | undefined;
|
|
2725
2992
|
enabled?: boolean | undefined;
|
|
2726
|
-
providerMetadata?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
2727
2993
|
}>;
|
|
2728
2994
|
export declare const sOverrideDeviceSpecsRequest: z.ZodObject<{
|
|
2729
2995
|
id: z.ZodString;
|
|
@@ -2750,17 +3016,17 @@ export declare const sAddDevicePresetRequest: z.ZodObject<{
|
|
|
2750
3016
|
params: {} & {
|
|
2751
3017
|
[k: string]: unknown;
|
|
2752
3018
|
};
|
|
2753
|
-
deviceId: string;
|
|
2754
3019
|
isDefault: boolean;
|
|
2755
3020
|
assignedRef: string | null;
|
|
3021
|
+
deviceId: string;
|
|
2756
3022
|
}, {
|
|
2757
3023
|
name: string;
|
|
2758
3024
|
params: {} & {
|
|
2759
3025
|
[k: string]: unknown;
|
|
2760
3026
|
};
|
|
2761
|
-
deviceId: string;
|
|
2762
3027
|
isDefault: boolean;
|
|
2763
3028
|
assignedRef: string | null;
|
|
3029
|
+
deviceId: string;
|
|
2764
3030
|
}>;
|
|
2765
3031
|
export declare const sUpdateDevicePresetRequest: z.ZodObject<{
|
|
2766
3032
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2769,14 +3035,14 @@ export declare const sUpdateDevicePresetRequest: z.ZodObject<{
|
|
|
2769
3035
|
deviceId: z.ZodString;
|
|
2770
3036
|
presetId: z.ZodString;
|
|
2771
3037
|
}, "strip", z.ZodTypeAny, {
|
|
2772
|
-
deviceId: string;
|
|
2773
3038
|
presetId: string;
|
|
3039
|
+
deviceId: string;
|
|
2774
3040
|
name?: string | undefined;
|
|
2775
3041
|
isDefault?: boolean | undefined;
|
|
2776
3042
|
assignedRef?: string | null | undefined;
|
|
2777
3043
|
}, {
|
|
2778
|
-
deviceId: string;
|
|
2779
3044
|
presetId: string;
|
|
3045
|
+
deviceId: string;
|
|
2780
3046
|
name?: string | undefined;
|
|
2781
3047
|
isDefault?: boolean | undefined;
|
|
2782
3048
|
assignedRef?: string | null | undefined;
|
|
@@ -2785,11 +3051,11 @@ export declare const sRemoveDevicePresetRequest: z.ZodObject<{
|
|
|
2785
3051
|
deviceId: z.ZodString;
|
|
2786
3052
|
presetId: z.ZodString;
|
|
2787
3053
|
}, "strip", z.ZodTypeAny, {
|
|
2788
|
-
deviceId: string;
|
|
2789
3054
|
presetId: string;
|
|
2790
|
-
}, {
|
|
2791
3055
|
deviceId: string;
|
|
3056
|
+
}, {
|
|
2792
3057
|
presetId: string;
|
|
3058
|
+
deviceId: string;
|
|
2793
3059
|
}>;
|
|
2794
3060
|
export declare const sEventVariantDescription: z.ZodObject<{
|
|
2795
3061
|
name: z.ZodString;
|
|
@@ -2860,15 +3126,15 @@ export declare const sGetEventCatalogResponse: z.ZodArray<z.ZodObject<{
|
|
|
2860
3126
|
export declare const sSetUnsetRelationRequest: z.ZodObject<{
|
|
2861
3127
|
leftId: z.ZodString;
|
|
2862
3128
|
rightId: z.ZodString;
|
|
2863
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
3129
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2864
3130
|
}, "strip", z.ZodUnknown, z.objectOutputType<{
|
|
2865
3131
|
leftId: z.ZodString;
|
|
2866
3132
|
rightId: z.ZodString;
|
|
2867
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
3133
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2868
3134
|
}, z.ZodUnknown, "strip">, z.objectInputType<{
|
|
2869
3135
|
leftId: z.ZodString;
|
|
2870
3136
|
rightId: z.ZodString;
|
|
2871
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy"]>;
|
|
3137
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2872
3138
|
}, z.ZodUnknown, "strip">>;
|
|
2873
3139
|
export type DeviceType = z.infer<typeof sDeviceType>;
|
|
2874
3140
|
export type PresetDto = z.infer<typeof sPresetDto>;
|
|
@@ -2889,6 +3155,8 @@ export type AlarmDto = z.infer<typeof sAlarmDto>;
|
|
|
2889
3155
|
export type IntercomOperatorDto = z.infer<typeof sIntercomOperatorDto>;
|
|
2890
3156
|
export type DisplayDto = z.infer<typeof sDisplayDto>;
|
|
2891
3157
|
export type RecorderDto = z.infer<typeof sRecorderDto>;
|
|
3158
|
+
export type NvrExporterDto = z.infer<typeof sNvrExporterDto>;
|
|
3159
|
+
export type NvrAnalyticsServerDto = z.infer<typeof sNvrAnalyticsServerDto>;
|
|
2892
3160
|
export type AddDeviceRequest = z.infer<typeof sAddDeviceRequest>;
|
|
2893
3161
|
export type UpdateDeviceRequest = z.infer<typeof sUpdateDeviceRequest>;
|
|
2894
3162
|
export type OverrideDeviceSpecsRequest = z.infer<typeof sOverrideDeviceSpecsRequest>;
|