@awarevue/api-types 2.0.22 → 2.0.24
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/_legacy/index.d.ts +2 -0
- package/dist/_legacy/index.js +2 -0
- package/dist/_legacy/milestone.js +1 -0
- package/dist/_legacy/orchid.js +1 -0
- package/dist/alarm-automation.d.ts +3 -3
- package/dist/alarm-automation.js +26 -37
- package/dist/api/agent-protocol/index.d.ts +1 -0
- package/dist/api/agent-protocol/index.js +1 -0
- package/dist/{agent-communication → api/agent-protocol}/protocol.d.ts +407 -598
- package/dist/api/agent-protocol/protocol.js +382 -0
- package/dist/api/commands/alarm.js +59 -0
- package/dist/{commands → api/commands}/all.d.ts +83 -83
- package/dist/{commands → api/commands}/all.js +22 -25
- package/dist/api/commands/camera-lift.js +14 -0
- package/dist/api/commands/camera.js +93 -0
- package/dist/api/commands/display.js +34 -0
- package/dist/api/commands/door.js +24 -0
- package/dist/api/commands/index.js +12 -0
- package/dist/api/commands/intercom-terminal.js +2 -0
- package/dist/api/commands/io-board.js +12 -0
- package/dist/api/commands/nvr-exporter.js +23 -0
- package/dist/api/commands/pbx.js +14 -0
- package/dist/api/commands/presence-tracker.js +30 -0
- package/dist/api/commands/server.js +24 -0
- package/dist/api/error.js +181 -0
- package/dist/api/events/alarm.js +52 -0
- package/dist/{events → api/events}/all.d.ts +8 -8
- package/dist/api/events/all.js +124 -0
- package/dist/api/events/camera.js +84 -0
- package/dist/api/events/display.js +6 -0
- package/dist/api/events/door.js +59 -0
- package/dist/api/events/index.js +12 -0
- package/dist/api/events/intercom-terminal.js +16 -0
- package/dist/api/events/io-board.js +10 -0
- package/dist/api/events/nvr-exporter.js +18 -0
- package/dist/api/events/panic-button.js +8 -0
- package/dist/api/events/presence-tracker.js +30 -0
- package/dist/api/events/reader.js +10 -0
- package/dist/{events → api/events}/server.d.ts +5 -5
- package/dist/api/events/server.js +12 -0
- package/dist/api/index.d.ts +9 -4
- package/dist/api/index.js +9 -20
- package/dist/api/mqtt/index.d.ts +1 -0
- package/dist/api/mqtt/index.js +1 -0
- package/dist/api/mqtt/payloads.js +18 -0
- package/dist/api/queries/all.js +25 -0
- package/dist/api/queries/camera.js +24 -0
- package/dist/api/queries/index.js +5 -0
- package/dist/api/queries/nvr-analytics-server.js +73 -0
- package/dist/api/queries/nvr-exporter.js +33 -0
- package/dist/api/queries/nvr-recorder.js +39 -0
- package/dist/api/rest/access-rule.d.ts +117 -0
- package/dist/api/rest/access-rule.js +10 -0
- package/dist/{access-control → api/rest}/agreement.d.ts +0 -20
- package/dist/api/rest/agreement.js +7 -0
- package/dist/api/rest/alarm.js +1 -0
- package/dist/{api-keys.d.ts → api/rest/api-keys.d.ts} +0 -20
- package/dist/api/rest/api-keys.js +11 -0
- package/dist/api/rest/app.js +9 -0
- package/dist/api/rest/auth.js +16 -0
- package/dist/{automation.d.ts → api/rest/automation.d.ts} +0 -217
- package/dist/api/rest/automation.js +14 -0
- package/dist/api/rest/aware-config.js +1 -0
- package/dist/{bookmarks.d.ts → api/rest/bookmarks.d.ts} +0 -49
- package/dist/api/rest/bookmarks.js +18 -0
- package/dist/api/rest/cast.js +7 -0
- package/dist/{custom-field.d.ts → api/rest/custom-field.d.ts} +1 -19
- package/dist/api/rest/custom-field.js +3 -0
- package/dist/{device-event.d.ts → api/rest/device-event.d.ts} +1 -1
- package/dist/api/rest/device-event.js +1 -0
- package/dist/{device-group.d.ts → api/rest/device-group.d.ts} +0 -23
- package/dist/api/rest/device-group.js +17 -0
- package/dist/api/rest/file.js +1 -0
- package/dist/api/rest/index.d.ts +34 -0
- package/dist/api/rest/index.js +34 -0
- package/dist/{device-factory.d.ts → api/rest/io-device.d.ts} +1 -1
- package/dist/api/rest/io-device.js +19 -0
- package/dist/{layout.d.ts → api/rest/layout.d.ts} +6 -107
- package/dist/api/rest/layout.js +19 -0
- package/dist/{macros.d.ts → api/rest/macros.d.ts} +0 -82
- package/dist/api/rest/macros.js +8 -0
- package/dist/api/rest/media.js +65 -0
- package/dist/api/rest/module-config.d.ts +19 -0
- package/dist/api/rest/module-config.js +1 -0
- package/dist/api/rest/notifications.d.ts +21 -0
- package/dist/api/rest/notifications.js +9 -0
- package/dist/api/rest/person-agreement.d.ts +15 -0
- package/dist/api/rest/person-agreement.js +6 -0
- package/dist/api/rest/person-presence.d.ts +72 -0
- package/dist/api/rest/person-presence.js +29 -0
- package/dist/{access-control → api/rest}/person-type.d.ts +1 -33
- package/dist/api/rest/person-type.js +8 -0
- package/dist/api/rest/person.d.ts +128 -0
- package/dist/api/rest/person.js +8 -0
- package/dist/api/{query.js → rest/query.js} +8 -13
- package/dist/api/rest/schedule.d.ts +249 -0
- package/dist/api/rest/schedule.js +9 -0
- package/dist/{security-level.d.ts → api/rest/security-level.d.ts} +0 -29
- package/dist/api/rest/security-level.js +5 -0
- package/dist/{template.d.ts → api/rest/template.d.ts} +1 -18
- package/dist/api/rest/template.js +12 -0
- package/dist/{token-conversion.d.ts → api/rest/token-conversion.d.ts} +0 -22
- package/dist/api/rest/token-conversion.js +5 -0
- package/dist/{user.d.ts → api/rest/user.d.ts} +10 -60
- package/dist/api/rest/user.js +32 -0
- package/dist/api/rest/view.d.ts +397 -0
- package/dist/api/rest/view.js +16 -0
- package/dist/api/rest/webrtc-playback.js +8 -0
- package/dist/{access-control → api/rest}/zone.d.ts +0 -29
- package/dist/api/rest/zone.js +10 -0
- package/dist/api/state/index.d.ts +10 -0
- package/dist/api/state/index.js +1 -0
- package/dist/api/ws/device-communication.js +55 -0
- package/dist/api/ws/index.js +5 -0
- package/dist/api/ws/notifications.js +20 -0
- package/dist/api/ws/progress.js +44 -0
- package/dist/api/ws/web-rtc-signaling.js +92 -0
- package/dist/api/ws/web-socket.js +2 -0
- package/dist/index.d.ts +1 -36
- package/dist/index.js +6 -57
- package/dist/{access-control → objects}/access-rule.d.ts +9 -78
- package/dist/objects/access-rule.js +36 -0
- package/dist/objects/agent-metadata.d.ts +192 -0
- package/dist/objects/agent-metadata.js +49 -0
- package/dist/objects/agreement.d.ts +21 -0
- package/dist/objects/agreement.js +8 -0
- package/dist/{objects.d.ts → objects/all.d.ts} +18 -11
- package/dist/{objects.js → objects/all.js} +4 -7
- package/dist/objects/api-key.d.ts +21 -0
- package/dist/objects/api-key.js +8 -0
- package/dist/objects/automation-rule.d.ts +218 -0
- package/dist/objects/automation-rule.js +51 -0
- package/dist/objects/bookmark.d.ts +50 -0
- package/dist/objects/bookmark.js +13 -0
- package/dist/objects/credential.js +11 -0
- package/dist/objects/custom-field.d.ts +20 -0
- package/dist/objects/custom-field.js +14 -0
- package/dist/{device → objects/device}/alarm.js +3 -6
- package/dist/{device → objects/device}/any-device.d.ts +510 -510
- package/dist/objects/device/any-device.js +239 -0
- package/dist/objects/device/camera-lift.js +4 -0
- package/dist/objects/device/camera.js +32 -0
- package/dist/objects/device/device-gateway.js +2 -0
- package/dist/{device-import.d.ts → objects/device/device-import.d.ts} +44 -44
- package/dist/objects/device/device-import.js +30 -0
- package/dist/{device-relation.js → objects/device/device-relation.js} +13 -16
- package/dist/objects/device/display.js +4 -0
- package/dist/objects/device/door.js +9 -0
- package/dist/{device → objects/device}/index.d.ts +2 -0
- package/dist/objects/device/index.js +22 -0
- package/dist/objects/device/intercom-operator.js +1 -0
- package/dist/objects/device/intercom-terminal.js +23 -0
- package/dist/objects/device/io-board.js +7 -0
- package/dist/objects/device/motion-sensor.js +4 -0
- package/dist/objects/device/nvr-analytics-server.js +6 -0
- package/dist/objects/device/nvr-exporter.js +7 -0
- package/dist/objects/device/nvr-recorder.js +6 -0
- package/dist/objects/device/panic-button.js +4 -0
- package/dist/objects/device/pbx.js +6 -0
- package/dist/objects/device/presence-tracker.js +1 -0
- package/dist/objects/device/reader.js +1 -0
- package/dist/{device → objects/device}/server.d.ts +1 -1
- package/dist/objects/device/server.js +1 -0
- package/dist/objects/device/system.js +6 -0
- package/dist/objects/device-group.d.ts +24 -0
- package/dist/objects/device-group.js +9 -0
- package/dist/objects/index.d.ts +28 -0
- package/dist/objects/index.js +28 -0
- package/dist/objects/layout.d.ts +102 -0
- package/dist/objects/layout.js +22 -0
- package/dist/objects/macro.d.ts +83 -0
- package/dist/objects/macro.js +22 -0
- package/dist/{module-config.d.ts → objects/module-config.d.ts} +1 -18
- package/dist/objects/module-config.js +1 -0
- package/dist/{notifications.d.ts → objects/notification.d.ts} +0 -20
- package/dist/objects/notification.js +13 -0
- package/dist/{access-control → objects}/person-agreement.d.ts +1 -15
- package/dist/objects/person-agreement.js +8 -0
- package/dist/{access-control → objects}/person-presence.d.ts +2 -73
- package/dist/objects/person-presence.js +35 -0
- package/dist/objects/person-type.d.ts +33 -0
- package/dist/objects/person-type.js +16 -0
- package/dist/{access-control → objects}/person.d.ts +74 -140
- package/dist/objects/person.js +42 -0
- package/dist/objects/role.d.ts +21 -0
- package/dist/objects/role.js +15 -0
- package/dist/{access-control → objects}/schedule.d.ts +4 -129
- package/dist/objects/schedule.js +53 -0
- package/dist/objects/security-level.d.ts +30 -0
- package/dist/objects/security-level.js +11 -0
- package/dist/objects/template.d.ts +20 -0
- package/dist/objects/template.js +8 -0
- package/dist/objects/token-conversion.d.ts +23 -0
- package/dist/objects/token-conversion.js +8 -0
- package/dist/objects/user.d.ts +31 -0
- package/dist/objects/user.js +12 -0
- package/dist/{view.d.ts → objects/view.d.ts} +3 -399
- package/dist/objects/view.js +64 -0
- package/dist/{world-objects.js → objects/world-object.js} +5 -8
- package/dist/objects/zone.d.ts +41 -0
- package/dist/objects/zone.js +15 -0
- package/dist/package.json +1 -1
- package/dist/permissions.js +146 -149
- package/dist/primitives.d.ts +30 -30
- package/dist/primitives.js +27 -30
- package/package.json +1 -1
- package/dist/access-control/access-rule.js +0 -49
- package/dist/access-control/agreement.js +0 -20
- package/dist/access-control/credential.js +0 -17
- package/dist/access-control/index.d.ts +0 -9
- package/dist/access-control/index.js +0 -25
- package/dist/access-control/person-agreement.js +0 -19
- package/dist/access-control/person-presence.js +0 -66
- package/dist/access-control/person-type.js +0 -29
- package/dist/access-control/person.js +0 -53
- package/dist/access-control/schedule.js +0 -65
- package/dist/access-control/zone.js +0 -28
- package/dist/agent-communication/index.d.ts +0 -2
- package/dist/agent-communication/index.js +0 -18
- package/dist/agent-communication/mqtt-payloads.js +0 -21
- package/dist/agent-communication/protocol.js +0 -436
- package/dist/api/alarm.js +0 -2
- package/dist/api/auth.js +0 -19
- package/dist/api/media.js +0 -68
- package/dist/api-keys.js +0 -21
- package/dist/app.js +0 -12
- package/dist/automation.js +0 -66
- package/dist/aware-config.js +0 -2
- package/dist/bookmarks.js +0 -32
- package/dist/cast.js +0 -13
- package/dist/commands/alarm.js +0 -62
- package/dist/commands/camera-lift.js +0 -17
- package/dist/commands/camera.js +0 -97
- package/dist/commands/display.js +0 -37
- package/dist/commands/door.js +0 -27
- package/dist/commands/index.js +0 -28
- package/dist/commands/intercom-terminal.js +0 -3
- package/dist/commands/io-board.js +0 -15
- package/dist/commands/nvr-exporter.js +0 -26
- package/dist/commands/pbx.js +0 -17
- package/dist/commands/presence-tracker.js +0 -33
- package/dist/commands/server.js +0 -27
- package/dist/custom-field.js +0 -19
- package/dist/device/any-device.js +0 -242
- package/dist/device/camera-lift.js +0 -7
- package/dist/device/camera.js +0 -35
- package/dist/device/device-gateway.js +0 -5
- package/dist/device/display.js +0 -7
- package/dist/device/door.js +0 -12
- package/dist/device/index.js +0 -36
- package/dist/device/intercom-operator.js +0 -4
- package/dist/device/intercom-terminal.js +0 -26
- package/dist/device/io-board.js +0 -10
- package/dist/device/motion-sensor.js +0 -7
- package/dist/device/nvr-analytics-server.js +0 -9
- package/dist/device/nvr-exporter.js +0 -10
- package/dist/device/nvr-recorder.js +0 -9
- package/dist/device/panic-button.js +0 -7
- package/dist/device/pbx.js +0 -9
- package/dist/device/presence-tracker.js +0 -4
- package/dist/device/reader.js +0 -4
- package/dist/device/server.js +0 -4
- package/dist/device/system.js +0 -9
- package/dist/device-event.js +0 -2
- package/dist/device-factory.js +0 -26
- package/dist/device-group.js +0 -31
- package/dist/device-import.js +0 -33
- package/dist/device-state.d.ts +0 -10
- package/dist/device-state.js +0 -2
- package/dist/error.js +0 -185
- package/dist/events/alarm.js +0 -55
- package/dist/events/all.js +0 -128
- package/dist/events/camera.js +0 -87
- package/dist/events/display.js +0 -9
- package/dist/events/door.js +0 -62
- package/dist/events/index.js +0 -28
- package/dist/events/intercom-terminal.js +0 -19
- package/dist/events/io-board.js +0 -13
- package/dist/events/nvr-exporter.js +0 -21
- package/dist/events/panic-button.js +0 -11
- package/dist/events/presence-tracker.js +0 -33
- package/dist/events/reader.js +0 -13
- package/dist/events/server.js +0 -15
- package/dist/file.js +0 -2
- package/dist/layout.js +0 -45
- package/dist/macros.js +0 -32
- package/dist/messages/device-communication.js +0 -63
- package/dist/messages/index.js +0 -21
- package/dist/messages/notifications.js +0 -27
- package/dist/messages/progress.js +0 -51
- package/dist/messages/web-rtc-signaling.js +0 -99
- package/dist/messages/web-socket.js +0 -5
- package/dist/milestone.js +0 -2
- package/dist/module-config.js +0 -2
- package/dist/notifications.js +0 -23
- package/dist/orchid.js +0 -2
- package/dist/queries/all.js +0 -28
- package/dist/queries/camera.js +0 -27
- package/dist/queries/index.js +0 -21
- package/dist/queries/nvr-analytics-server.js +0 -76
- package/dist/queries/nvr-exporter.js +0 -36
- package/dist/queries/nvr-recorder.js +0 -42
- package/dist/security-level.js +0 -18
- package/dist/template.js +0 -21
- package/dist/token-conversion.js +0 -15
- package/dist/user.js +0 -57
- package/dist/view.js +0 -84
- package/dist/webrtc-playback.js +0 -14
- package/dist/{milestone.d.ts → _legacy/milestone.d.ts} +0 -0
- package/dist/{orchid.d.ts → _legacy/orchid.d.ts} +0 -0
- package/dist/{commands → api/commands}/alarm.d.ts +0 -0
- package/dist/{commands → api/commands}/camera-lift.d.ts +0 -0
- package/dist/{commands → api/commands}/camera.d.ts +0 -0
- package/dist/{commands → api/commands}/display.d.ts +0 -0
- package/dist/{commands → api/commands}/door.d.ts +0 -0
- package/dist/{commands → api/commands}/index.d.ts +0 -0
- package/dist/{commands → api/commands}/intercom-terminal.d.ts +0 -0
- package/dist/{commands → api/commands}/io-board.d.ts +0 -0
- package/dist/{commands → api/commands}/nvr-exporter.d.ts +86 -86
- package/dist/{commands → api/commands}/pbx.d.ts +0 -0
- package/dist/{commands → api/commands}/presence-tracker.d.ts +0 -0
- package/dist/{commands → api/commands}/server.d.ts +78 -78
- package/dist/{error.d.ts → api/error.d.ts} +0 -0
- package/dist/{events → api/events}/alarm.d.ts +0 -0
- package/dist/{events → api/events}/camera.d.ts +0 -0
- package/dist/{events → api/events}/display.d.ts +0 -0
- package/dist/{events → api/events}/door.d.ts +0 -0
- package/dist/{events → api/events}/index.d.ts +0 -0
- package/dist/{events → api/events}/intercom-terminal.d.ts +0 -0
- package/dist/{events → api/events}/io-board.d.ts +0 -0
- package/dist/{events → api/events}/nvr-exporter.d.ts +4 -4
- package/dist/{events → api/events}/panic-button.d.ts +0 -0
- package/dist/{events → api/events}/presence-tracker.d.ts +8 -8
- package/dist/{events → api/events}/reader.d.ts +0 -0
- package/dist/{agent-communication/mqtt-payloads.d.ts → api/mqtt/payloads.d.ts} +0 -0
- package/dist/{queries → api/queries}/all.d.ts +83 -83
- package/dist/{queries → api/queries}/camera.d.ts +0 -0
- package/dist/{queries → api/queries}/index.d.ts +0 -0
- package/dist/{queries → api/queries}/nvr-analytics-server.d.ts +4 -4
- package/dist/{queries → api/queries}/nvr-exporter.d.ts +0 -0
- package/dist/{queries → api/queries}/nvr-recorder.d.ts +162 -162
- package/dist/api/{alarm.d.ts → rest/alarm.d.ts} +0 -0
- package/dist/{app.d.ts → api/rest/app.d.ts} +0 -0
- package/dist/api/{auth.d.ts → rest/auth.d.ts} +0 -0
- package/dist/{aware-config.d.ts → api/rest/aware-config.d.ts} +0 -0
- package/dist/{cast.d.ts → api/rest/cast.d.ts} +0 -0
- package/dist/{file.d.ts → api/rest/file.d.ts} +0 -0
- package/dist/api/{media.d.ts → rest/media.d.ts} +2 -2
- /package/dist/api/{query.d.ts → rest/query.d.ts} +0 -0
- /package/dist/{webrtc-playback.d.ts → api/rest/webrtc-playback.d.ts} +0 -0
- /package/dist/{messages → api/ws}/device-communication.d.ts +0 -0
- /package/dist/{messages → api/ws}/index.d.ts +0 -0
- /package/dist/{messages → api/ws}/notifications.d.ts +0 -0
- /package/dist/{messages → api/ws}/progress.d.ts +0 -0
- /package/dist/{messages → api/ws}/web-rtc-signaling.d.ts +0 -0
- /package/dist/{messages → api/ws}/web-socket.d.ts +0 -0
- /package/dist/{access-control → objects}/credential.d.ts +0 -0
- /package/dist/{device → objects/device}/alarm.d.ts +0 -0
- /package/dist/{device → objects/device}/camera-lift.d.ts +0 -0
- /package/dist/{device → objects/device}/camera.d.ts +0 -0
- /package/dist/{device → objects/device}/device-gateway.d.ts +0 -0
- /package/dist/{device-relation.d.ts → objects/device/device-relation.d.ts} +0 -0
- /package/dist/{device → objects/device}/display.d.ts +0 -0
- /package/dist/{device → objects/device}/door.d.ts +0 -0
- /package/dist/{device → objects/device}/intercom-operator.d.ts +0 -0
- /package/dist/{device → objects/device}/intercom-terminal.d.ts +0 -0
- /package/dist/{device → objects/device}/io-board.d.ts +0 -0
- /package/dist/{device → objects/device}/motion-sensor.d.ts +0 -0
- /package/dist/{device → objects/device}/nvr-analytics-server.d.ts +0 -0
- /package/dist/{device → objects/device}/nvr-exporter.d.ts +0 -0
- /package/dist/{device → objects/device}/nvr-recorder.d.ts +0 -0
- /package/dist/{device → objects/device}/panic-button.d.ts +0 -0
- /package/dist/{device → objects/device}/pbx.d.ts +0 -0
- /package/dist/{device → objects/device}/presence-tracker.d.ts +0 -0
- /package/dist/{device → objects/device}/reader.d.ts +0 -0
- /package/dist/{device → objects/device}/system.d.ts +0 -0
- /package/dist/{world-objects.d.ts → objects/world-object.d.ts} +0 -0
|
@@ -287,18 +287,18 @@ export declare const sPresetDto: z.ZodObject<{
|
|
|
287
287
|
}, "strip", z.ZodTypeAny, {
|
|
288
288
|
name: string;
|
|
289
289
|
id: string;
|
|
290
|
-
isDefault: boolean;
|
|
291
|
-
assignedRef: string | null;
|
|
292
290
|
createdOn: string;
|
|
293
291
|
lastModifiedOn: string;
|
|
292
|
+
isDefault: boolean;
|
|
293
|
+
assignedRef: string | null;
|
|
294
294
|
params?: unknown;
|
|
295
295
|
}, {
|
|
296
296
|
name: string;
|
|
297
297
|
id: string;
|
|
298
|
-
isDefault: boolean;
|
|
299
|
-
assignedRef: string | null;
|
|
300
298
|
createdOn: string;
|
|
301
299
|
lastModifiedOn: string;
|
|
300
|
+
isDefault: boolean;
|
|
301
|
+
assignedRef: string | null;
|
|
302
302
|
params?: unknown;
|
|
303
303
|
}>;
|
|
304
304
|
export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
@@ -314,18 +314,18 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
314
314
|
}, "strip", z.ZodTypeAny, {
|
|
315
315
|
name: string;
|
|
316
316
|
id: string;
|
|
317
|
-
isDefault: boolean;
|
|
318
|
-
assignedRef: string | null;
|
|
319
317
|
createdOn: string;
|
|
320
318
|
lastModifiedOn: string;
|
|
319
|
+
isDefault: boolean;
|
|
320
|
+
assignedRef: string | null;
|
|
321
321
|
params?: unknown;
|
|
322
322
|
}, {
|
|
323
323
|
name: string;
|
|
324
324
|
id: string;
|
|
325
|
-
isDefault: boolean;
|
|
326
|
-
assignedRef: string | null;
|
|
327
325
|
createdOn: string;
|
|
328
326
|
lastModifiedOn: string;
|
|
327
|
+
isDefault: boolean;
|
|
328
|
+
assignedRef: string | null;
|
|
329
329
|
params?: unknown;
|
|
330
330
|
}>, "many">;
|
|
331
331
|
providerAssignedName: z.ZodString;
|
|
@@ -348,47 +348,47 @@ export declare const sDeviceMgmtInfo: z.ZodObject<{
|
|
|
348
348
|
}, "strip", z.ZodTypeAny, {
|
|
349
349
|
groups: string[];
|
|
350
350
|
id: string;
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
355
|
-
}, z.ZodUnknown, "strip">[];
|
|
351
|
+
createdOn: string;
|
|
352
|
+
lastModifiedOn: string;
|
|
353
|
+
enabled: boolean;
|
|
356
354
|
presets: {
|
|
357
355
|
name: string;
|
|
358
356
|
id: string;
|
|
359
|
-
isDefault: boolean;
|
|
360
|
-
assignedRef: string | null;
|
|
361
357
|
createdOn: string;
|
|
362
358
|
lastModifiedOn: string;
|
|
359
|
+
isDefault: boolean;
|
|
360
|
+
assignedRef: string | null;
|
|
363
361
|
params?: unknown;
|
|
364
362
|
}[];
|
|
365
|
-
createdOn: string;
|
|
366
|
-
lastModifiedOn: string;
|
|
367
363
|
providerAssignedName: string;
|
|
368
364
|
notes: string | null;
|
|
369
|
-
enabled: boolean;
|
|
370
|
-
}, {
|
|
371
|
-
groups: string[];
|
|
372
|
-
id: string;
|
|
373
365
|
tags: string[];
|
|
374
|
-
relations: z.
|
|
366
|
+
relations: z.objectOutputType<{
|
|
375
367
|
id: z.ZodString;
|
|
376
368
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
377
369
|
}, z.ZodUnknown, "strip">[];
|
|
370
|
+
}, {
|
|
371
|
+
groups: string[];
|
|
372
|
+
id: string;
|
|
373
|
+
createdOn: string;
|
|
374
|
+
lastModifiedOn: string;
|
|
375
|
+
enabled: boolean;
|
|
378
376
|
presets: {
|
|
379
377
|
name: string;
|
|
380
378
|
id: string;
|
|
381
|
-
isDefault: boolean;
|
|
382
|
-
assignedRef: string | null;
|
|
383
379
|
createdOn: string;
|
|
384
380
|
lastModifiedOn: string;
|
|
381
|
+
isDefault: boolean;
|
|
382
|
+
assignedRef: string | null;
|
|
385
383
|
params?: unknown;
|
|
386
384
|
}[];
|
|
387
|
-
createdOn: string;
|
|
388
|
-
lastModifiedOn: string;
|
|
389
385
|
providerAssignedName: string;
|
|
390
386
|
notes: string | null;
|
|
391
|
-
|
|
387
|
+
tags: string[];
|
|
388
|
+
relations: z.objectInputType<{
|
|
389
|
+
id: z.ZodString;
|
|
390
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
391
|
+
}, z.ZodUnknown, "strip">[];
|
|
392
392
|
}>;
|
|
393
393
|
export declare const sForeignDeviceInfo: z.ZodObject<{
|
|
394
394
|
name: z.ZodString;
|
|
@@ -661,18 +661,18 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
661
661
|
}, "strip", z.ZodTypeAny, {
|
|
662
662
|
name: string;
|
|
663
663
|
id: string;
|
|
664
|
-
isDefault: boolean;
|
|
665
|
-
assignedRef: string | null;
|
|
666
664
|
createdOn: string;
|
|
667
665
|
lastModifiedOn: string;
|
|
666
|
+
isDefault: boolean;
|
|
667
|
+
assignedRef: string | null;
|
|
668
668
|
params?: unknown;
|
|
669
669
|
}, {
|
|
670
670
|
name: string;
|
|
671
671
|
id: string;
|
|
672
|
-
isDefault: boolean;
|
|
673
|
-
assignedRef: string | null;
|
|
674
672
|
createdOn: string;
|
|
675
673
|
lastModifiedOn: string;
|
|
674
|
+
isDefault: boolean;
|
|
675
|
+
assignedRef: string | null;
|
|
676
676
|
params?: unknown;
|
|
677
677
|
}>, "many">;
|
|
678
678
|
providerAssignedName: z.ZodString;
|
|
@@ -695,47 +695,47 @@ export declare const sDeviceDto: z.ZodIntersection<z.ZodIntersection<z.ZodDiscri
|
|
|
695
695
|
}, "strip", z.ZodTypeAny, {
|
|
696
696
|
groups: string[];
|
|
697
697
|
id: string;
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
702
|
-
}, z.ZodUnknown, "strip">[];
|
|
698
|
+
createdOn: string;
|
|
699
|
+
lastModifiedOn: string;
|
|
700
|
+
enabled: boolean;
|
|
703
701
|
presets: {
|
|
704
702
|
name: string;
|
|
705
703
|
id: string;
|
|
706
|
-
isDefault: boolean;
|
|
707
|
-
assignedRef: string | null;
|
|
708
704
|
createdOn: string;
|
|
709
705
|
lastModifiedOn: string;
|
|
706
|
+
isDefault: boolean;
|
|
707
|
+
assignedRef: string | null;
|
|
710
708
|
params?: unknown;
|
|
711
709
|
}[];
|
|
712
|
-
createdOn: string;
|
|
713
|
-
lastModifiedOn: string;
|
|
714
710
|
providerAssignedName: string;
|
|
715
711
|
notes: string | null;
|
|
716
|
-
enabled: boolean;
|
|
717
|
-
}, {
|
|
718
|
-
groups: string[];
|
|
719
|
-
id: string;
|
|
720
712
|
tags: string[];
|
|
721
|
-
relations: z.
|
|
713
|
+
relations: z.objectOutputType<{
|
|
722
714
|
id: z.ZodString;
|
|
723
715
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
724
716
|
}, z.ZodUnknown, "strip">[];
|
|
717
|
+
}, {
|
|
718
|
+
groups: string[];
|
|
719
|
+
id: string;
|
|
720
|
+
createdOn: string;
|
|
721
|
+
lastModifiedOn: string;
|
|
722
|
+
enabled: boolean;
|
|
725
723
|
presets: {
|
|
726
724
|
name: string;
|
|
727
725
|
id: string;
|
|
728
|
-
isDefault: boolean;
|
|
729
|
-
assignedRef: string | null;
|
|
730
726
|
createdOn: string;
|
|
731
727
|
lastModifiedOn: string;
|
|
728
|
+
isDefault: boolean;
|
|
729
|
+
assignedRef: string | null;
|
|
732
730
|
params?: unknown;
|
|
733
731
|
}[];
|
|
734
|
-
createdOn: string;
|
|
735
|
-
lastModifiedOn: string;
|
|
736
732
|
providerAssignedName: string;
|
|
737
733
|
notes: string | null;
|
|
738
|
-
|
|
734
|
+
tags: string[];
|
|
735
|
+
relations: z.objectInputType<{
|
|
736
|
+
id: z.ZodString;
|
|
737
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
738
|
+
}, z.ZodUnknown, "strip">[];
|
|
739
739
|
}>>, z.ZodObject<{
|
|
740
740
|
name: z.ZodString;
|
|
741
741
|
foreignRef: z.ZodString;
|
|
@@ -859,18 +859,18 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
859
859
|
}, "strip", z.ZodTypeAny, {
|
|
860
860
|
name: string;
|
|
861
861
|
id: string;
|
|
862
|
-
isDefault: boolean;
|
|
863
|
-
assignedRef: string | null;
|
|
864
862
|
createdOn: string;
|
|
865
863
|
lastModifiedOn: string;
|
|
864
|
+
isDefault: boolean;
|
|
865
|
+
assignedRef: string | null;
|
|
866
866
|
params?: unknown;
|
|
867
867
|
}, {
|
|
868
868
|
name: string;
|
|
869
869
|
id: string;
|
|
870
|
-
isDefault: boolean;
|
|
871
|
-
assignedRef: string | null;
|
|
872
870
|
createdOn: string;
|
|
873
871
|
lastModifiedOn: string;
|
|
872
|
+
isDefault: boolean;
|
|
873
|
+
assignedRef: string | null;
|
|
874
874
|
params?: unknown;
|
|
875
875
|
}>, "many">;
|
|
876
876
|
providerAssignedName: z.ZodString;
|
|
@@ -893,47 +893,47 @@ export declare const sCameraDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
893
893
|
}, "strip", z.ZodTypeAny, {
|
|
894
894
|
groups: string[];
|
|
895
895
|
id: string;
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
900
|
-
}, z.ZodUnknown, "strip">[];
|
|
896
|
+
createdOn: string;
|
|
897
|
+
lastModifiedOn: string;
|
|
898
|
+
enabled: boolean;
|
|
901
899
|
presets: {
|
|
902
900
|
name: string;
|
|
903
901
|
id: string;
|
|
904
|
-
isDefault: boolean;
|
|
905
|
-
assignedRef: string | null;
|
|
906
902
|
createdOn: string;
|
|
907
903
|
lastModifiedOn: string;
|
|
904
|
+
isDefault: boolean;
|
|
905
|
+
assignedRef: string | null;
|
|
908
906
|
params?: unknown;
|
|
909
907
|
}[];
|
|
910
|
-
createdOn: string;
|
|
911
|
-
lastModifiedOn: string;
|
|
912
908
|
providerAssignedName: string;
|
|
913
909
|
notes: string | null;
|
|
914
|
-
enabled: boolean;
|
|
915
|
-
}, {
|
|
916
|
-
groups: string[];
|
|
917
|
-
id: string;
|
|
918
910
|
tags: string[];
|
|
919
|
-
relations: z.
|
|
911
|
+
relations: z.objectOutputType<{
|
|
920
912
|
id: z.ZodString;
|
|
921
913
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
922
914
|
}, z.ZodUnknown, "strip">[];
|
|
915
|
+
}, {
|
|
916
|
+
groups: string[];
|
|
917
|
+
id: string;
|
|
918
|
+
createdOn: string;
|
|
919
|
+
lastModifiedOn: string;
|
|
920
|
+
enabled: boolean;
|
|
923
921
|
presets: {
|
|
924
922
|
name: string;
|
|
925
923
|
id: string;
|
|
926
|
-
isDefault: boolean;
|
|
927
|
-
assignedRef: string | null;
|
|
928
924
|
createdOn: string;
|
|
929
925
|
lastModifiedOn: string;
|
|
926
|
+
isDefault: boolean;
|
|
927
|
+
assignedRef: string | null;
|
|
930
928
|
params?: unknown;
|
|
931
929
|
}[];
|
|
932
|
-
createdOn: string;
|
|
933
|
-
lastModifiedOn: string;
|
|
934
930
|
providerAssignedName: string;
|
|
935
931
|
notes: string | null;
|
|
936
|
-
|
|
932
|
+
tags: string[];
|
|
933
|
+
relations: z.objectInputType<{
|
|
934
|
+
id: z.ZodString;
|
|
935
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
936
|
+
}, z.ZodUnknown, "strip">[];
|
|
937
937
|
}>>, z.ZodObject<{
|
|
938
938
|
name: z.ZodString;
|
|
939
939
|
foreignRef: z.ZodString;
|
|
@@ -986,18 +986,18 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
986
986
|
}, "strip", z.ZodTypeAny, {
|
|
987
987
|
name: string;
|
|
988
988
|
id: string;
|
|
989
|
-
isDefault: boolean;
|
|
990
|
-
assignedRef: string | null;
|
|
991
989
|
createdOn: string;
|
|
992
990
|
lastModifiedOn: string;
|
|
991
|
+
isDefault: boolean;
|
|
992
|
+
assignedRef: string | null;
|
|
993
993
|
params?: unknown;
|
|
994
994
|
}, {
|
|
995
995
|
name: string;
|
|
996
996
|
id: string;
|
|
997
|
-
isDefault: boolean;
|
|
998
|
-
assignedRef: string | null;
|
|
999
997
|
createdOn: string;
|
|
1000
998
|
lastModifiedOn: string;
|
|
999
|
+
isDefault: boolean;
|
|
1000
|
+
assignedRef: string | null;
|
|
1001
1001
|
params?: unknown;
|
|
1002
1002
|
}>, "many">;
|
|
1003
1003
|
providerAssignedName: z.ZodString;
|
|
@@ -1020,47 +1020,47 @@ export declare const sDoorDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1020
1020
|
}, "strip", z.ZodTypeAny, {
|
|
1021
1021
|
groups: string[];
|
|
1022
1022
|
id: string;
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1027
|
-
}, z.ZodUnknown, "strip">[];
|
|
1023
|
+
createdOn: string;
|
|
1024
|
+
lastModifiedOn: string;
|
|
1025
|
+
enabled: boolean;
|
|
1028
1026
|
presets: {
|
|
1029
1027
|
name: string;
|
|
1030
1028
|
id: string;
|
|
1031
|
-
isDefault: boolean;
|
|
1032
|
-
assignedRef: string | null;
|
|
1033
1029
|
createdOn: string;
|
|
1034
1030
|
lastModifiedOn: string;
|
|
1031
|
+
isDefault: boolean;
|
|
1032
|
+
assignedRef: string | null;
|
|
1035
1033
|
params?: unknown;
|
|
1036
1034
|
}[];
|
|
1037
|
-
createdOn: string;
|
|
1038
|
-
lastModifiedOn: string;
|
|
1039
1035
|
providerAssignedName: string;
|
|
1040
1036
|
notes: string | null;
|
|
1041
|
-
enabled: boolean;
|
|
1042
|
-
}, {
|
|
1043
|
-
groups: string[];
|
|
1044
|
-
id: string;
|
|
1045
1037
|
tags: string[];
|
|
1046
|
-
relations: z.
|
|
1038
|
+
relations: z.objectOutputType<{
|
|
1047
1039
|
id: z.ZodString;
|
|
1048
1040
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1049
1041
|
}, z.ZodUnknown, "strip">[];
|
|
1042
|
+
}, {
|
|
1043
|
+
groups: string[];
|
|
1044
|
+
id: string;
|
|
1045
|
+
createdOn: string;
|
|
1046
|
+
lastModifiedOn: string;
|
|
1047
|
+
enabled: boolean;
|
|
1050
1048
|
presets: {
|
|
1051
1049
|
name: string;
|
|
1052
1050
|
id: string;
|
|
1053
|
-
isDefault: boolean;
|
|
1054
|
-
assignedRef: string | null;
|
|
1055
1051
|
createdOn: string;
|
|
1056
1052
|
lastModifiedOn: string;
|
|
1053
|
+
isDefault: boolean;
|
|
1054
|
+
assignedRef: string | null;
|
|
1057
1055
|
params?: unknown;
|
|
1058
1056
|
}[];
|
|
1059
|
-
createdOn: string;
|
|
1060
|
-
lastModifiedOn: string;
|
|
1061
1057
|
providerAssignedName: string;
|
|
1062
1058
|
notes: string | null;
|
|
1063
|
-
|
|
1059
|
+
tags: string[];
|
|
1060
|
+
relations: z.objectInputType<{
|
|
1061
|
+
id: z.ZodString;
|
|
1062
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1063
|
+
}, z.ZodUnknown, "strip">[];
|
|
1064
1064
|
}>>, z.ZodObject<{
|
|
1065
1065
|
name: z.ZodString;
|
|
1066
1066
|
foreignRef: z.ZodString;
|
|
@@ -1100,18 +1100,18 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1100
1100
|
}, "strip", z.ZodTypeAny, {
|
|
1101
1101
|
name: string;
|
|
1102
1102
|
id: string;
|
|
1103
|
-
isDefault: boolean;
|
|
1104
|
-
assignedRef: string | null;
|
|
1105
1103
|
createdOn: string;
|
|
1106
1104
|
lastModifiedOn: string;
|
|
1105
|
+
isDefault: boolean;
|
|
1106
|
+
assignedRef: string | null;
|
|
1107
1107
|
params?: unknown;
|
|
1108
1108
|
}, {
|
|
1109
1109
|
name: string;
|
|
1110
1110
|
id: string;
|
|
1111
|
-
isDefault: boolean;
|
|
1112
|
-
assignedRef: string | null;
|
|
1113
1111
|
createdOn: string;
|
|
1114
1112
|
lastModifiedOn: string;
|
|
1113
|
+
isDefault: boolean;
|
|
1114
|
+
assignedRef: string | null;
|
|
1115
1115
|
params?: unknown;
|
|
1116
1116
|
}>, "many">;
|
|
1117
1117
|
providerAssignedName: z.ZodString;
|
|
@@ -1134,47 +1134,47 @@ export declare const sReaderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
1134
1134
|
}, "strip", z.ZodTypeAny, {
|
|
1135
1135
|
groups: string[];
|
|
1136
1136
|
id: string;
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1141
|
-
}, z.ZodUnknown, "strip">[];
|
|
1137
|
+
createdOn: string;
|
|
1138
|
+
lastModifiedOn: string;
|
|
1139
|
+
enabled: boolean;
|
|
1142
1140
|
presets: {
|
|
1143
1141
|
name: string;
|
|
1144
1142
|
id: string;
|
|
1145
|
-
isDefault: boolean;
|
|
1146
|
-
assignedRef: string | null;
|
|
1147
1143
|
createdOn: string;
|
|
1148
1144
|
lastModifiedOn: string;
|
|
1145
|
+
isDefault: boolean;
|
|
1146
|
+
assignedRef: string | null;
|
|
1149
1147
|
params?: unknown;
|
|
1150
1148
|
}[];
|
|
1151
|
-
createdOn: string;
|
|
1152
|
-
lastModifiedOn: string;
|
|
1153
1149
|
providerAssignedName: string;
|
|
1154
1150
|
notes: string | null;
|
|
1155
|
-
enabled: boolean;
|
|
1156
|
-
}, {
|
|
1157
|
-
groups: string[];
|
|
1158
|
-
id: string;
|
|
1159
1151
|
tags: string[];
|
|
1160
|
-
relations: z.
|
|
1152
|
+
relations: z.objectOutputType<{
|
|
1161
1153
|
id: z.ZodString;
|
|
1162
1154
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1163
1155
|
}, z.ZodUnknown, "strip">[];
|
|
1156
|
+
}, {
|
|
1157
|
+
groups: string[];
|
|
1158
|
+
id: string;
|
|
1159
|
+
createdOn: string;
|
|
1160
|
+
lastModifiedOn: string;
|
|
1161
|
+
enabled: boolean;
|
|
1164
1162
|
presets: {
|
|
1165
1163
|
name: string;
|
|
1166
1164
|
id: string;
|
|
1167
|
-
isDefault: boolean;
|
|
1168
|
-
assignedRef: string | null;
|
|
1169
1165
|
createdOn: string;
|
|
1170
1166
|
lastModifiedOn: string;
|
|
1167
|
+
isDefault: boolean;
|
|
1168
|
+
assignedRef: string | null;
|
|
1171
1169
|
params?: unknown;
|
|
1172
1170
|
}[];
|
|
1173
|
-
createdOn: string;
|
|
1174
|
-
lastModifiedOn: string;
|
|
1175
1171
|
providerAssignedName: string;
|
|
1176
1172
|
notes: string | null;
|
|
1177
|
-
|
|
1173
|
+
tags: string[];
|
|
1174
|
+
relations: z.objectInputType<{
|
|
1175
|
+
id: z.ZodString;
|
|
1176
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1177
|
+
}, z.ZodUnknown, "strip">[];
|
|
1178
1178
|
}>>, z.ZodObject<{
|
|
1179
1179
|
name: z.ZodString;
|
|
1180
1180
|
foreignRef: z.ZodString;
|
|
@@ -1221,18 +1221,18 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1221
1221
|
}, "strip", z.ZodTypeAny, {
|
|
1222
1222
|
name: string;
|
|
1223
1223
|
id: string;
|
|
1224
|
-
isDefault: boolean;
|
|
1225
|
-
assignedRef: string | null;
|
|
1226
1224
|
createdOn: string;
|
|
1227
1225
|
lastModifiedOn: string;
|
|
1226
|
+
isDefault: boolean;
|
|
1227
|
+
assignedRef: string | null;
|
|
1228
1228
|
params?: unknown;
|
|
1229
1229
|
}, {
|
|
1230
1230
|
name: string;
|
|
1231
1231
|
id: string;
|
|
1232
|
-
isDefault: boolean;
|
|
1233
|
-
assignedRef: string | null;
|
|
1234
1232
|
createdOn: string;
|
|
1235
1233
|
lastModifiedOn: string;
|
|
1234
|
+
isDefault: boolean;
|
|
1235
|
+
assignedRef: string | null;
|
|
1236
1236
|
params?: unknown;
|
|
1237
1237
|
}>, "many">;
|
|
1238
1238
|
providerAssignedName: z.ZodString;
|
|
@@ -1255,47 +1255,47 @@ export declare const sIoBoardDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
1255
1255
|
}, "strip", z.ZodTypeAny, {
|
|
1256
1256
|
groups: string[];
|
|
1257
1257
|
id: string;
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1262
|
-
}, z.ZodUnknown, "strip">[];
|
|
1258
|
+
createdOn: string;
|
|
1259
|
+
lastModifiedOn: string;
|
|
1260
|
+
enabled: boolean;
|
|
1263
1261
|
presets: {
|
|
1264
1262
|
name: string;
|
|
1265
1263
|
id: string;
|
|
1266
|
-
isDefault: boolean;
|
|
1267
|
-
assignedRef: string | null;
|
|
1268
1264
|
createdOn: string;
|
|
1269
1265
|
lastModifiedOn: string;
|
|
1266
|
+
isDefault: boolean;
|
|
1267
|
+
assignedRef: string | null;
|
|
1270
1268
|
params?: unknown;
|
|
1271
1269
|
}[];
|
|
1272
|
-
createdOn: string;
|
|
1273
|
-
lastModifiedOn: string;
|
|
1274
1270
|
providerAssignedName: string;
|
|
1275
1271
|
notes: string | null;
|
|
1276
|
-
enabled: boolean;
|
|
1277
|
-
}, {
|
|
1278
|
-
groups: string[];
|
|
1279
|
-
id: string;
|
|
1280
1272
|
tags: string[];
|
|
1281
|
-
relations: z.
|
|
1273
|
+
relations: z.objectOutputType<{
|
|
1282
1274
|
id: z.ZodString;
|
|
1283
1275
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1284
1276
|
}, z.ZodUnknown, "strip">[];
|
|
1277
|
+
}, {
|
|
1278
|
+
groups: string[];
|
|
1279
|
+
id: string;
|
|
1280
|
+
createdOn: string;
|
|
1281
|
+
lastModifiedOn: string;
|
|
1282
|
+
enabled: boolean;
|
|
1285
1283
|
presets: {
|
|
1286
1284
|
name: string;
|
|
1287
1285
|
id: string;
|
|
1288
|
-
isDefault: boolean;
|
|
1289
|
-
assignedRef: string | null;
|
|
1290
1286
|
createdOn: string;
|
|
1291
1287
|
lastModifiedOn: string;
|
|
1288
|
+
isDefault: boolean;
|
|
1289
|
+
assignedRef: string | null;
|
|
1292
1290
|
params?: unknown;
|
|
1293
1291
|
}[];
|
|
1294
|
-
createdOn: string;
|
|
1295
|
-
lastModifiedOn: string;
|
|
1296
1292
|
providerAssignedName: string;
|
|
1297
1293
|
notes: string | null;
|
|
1298
|
-
|
|
1294
|
+
tags: string[];
|
|
1295
|
+
relations: z.objectInputType<{
|
|
1296
|
+
id: z.ZodString;
|
|
1297
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1298
|
+
}, z.ZodUnknown, "strip">[];
|
|
1299
1299
|
}>>, z.ZodObject<{
|
|
1300
1300
|
name: z.ZodString;
|
|
1301
1301
|
foreignRef: z.ZodString;
|
|
@@ -1335,18 +1335,18 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
1335
1335
|
}, "strip", z.ZodTypeAny, {
|
|
1336
1336
|
name: string;
|
|
1337
1337
|
id: string;
|
|
1338
|
-
isDefault: boolean;
|
|
1339
|
-
assignedRef: string | null;
|
|
1340
1338
|
createdOn: string;
|
|
1341
1339
|
lastModifiedOn: string;
|
|
1340
|
+
isDefault: boolean;
|
|
1341
|
+
assignedRef: string | null;
|
|
1342
1342
|
params?: unknown;
|
|
1343
1343
|
}, {
|
|
1344
1344
|
name: string;
|
|
1345
1345
|
id: string;
|
|
1346
|
-
isDefault: boolean;
|
|
1347
|
-
assignedRef: string | null;
|
|
1348
1346
|
createdOn: string;
|
|
1349
1347
|
lastModifiedOn: string;
|
|
1348
|
+
isDefault: boolean;
|
|
1349
|
+
assignedRef: string | null;
|
|
1350
1350
|
params?: unknown;
|
|
1351
1351
|
}>, "many">;
|
|
1352
1352
|
providerAssignedName: z.ZodString;
|
|
@@ -1369,47 +1369,47 @@ export declare const sCameraLiftDto: z.ZodIntersection<z.ZodIntersection<z.ZodOb
|
|
|
1369
1369
|
}, "strip", z.ZodTypeAny, {
|
|
1370
1370
|
groups: string[];
|
|
1371
1371
|
id: string;
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1376
|
-
}, z.ZodUnknown, "strip">[];
|
|
1372
|
+
createdOn: string;
|
|
1373
|
+
lastModifiedOn: string;
|
|
1374
|
+
enabled: boolean;
|
|
1377
1375
|
presets: {
|
|
1378
1376
|
name: string;
|
|
1379
1377
|
id: string;
|
|
1380
|
-
isDefault: boolean;
|
|
1381
|
-
assignedRef: string | null;
|
|
1382
1378
|
createdOn: string;
|
|
1383
1379
|
lastModifiedOn: string;
|
|
1380
|
+
isDefault: boolean;
|
|
1381
|
+
assignedRef: string | null;
|
|
1384
1382
|
params?: unknown;
|
|
1385
1383
|
}[];
|
|
1386
|
-
createdOn: string;
|
|
1387
|
-
lastModifiedOn: string;
|
|
1388
1384
|
providerAssignedName: string;
|
|
1389
1385
|
notes: string | null;
|
|
1390
|
-
enabled: boolean;
|
|
1391
|
-
}, {
|
|
1392
|
-
groups: string[];
|
|
1393
|
-
id: string;
|
|
1394
1386
|
tags: string[];
|
|
1395
|
-
relations: z.
|
|
1387
|
+
relations: z.objectOutputType<{
|
|
1396
1388
|
id: z.ZodString;
|
|
1397
1389
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1398
1390
|
}, z.ZodUnknown, "strip">[];
|
|
1391
|
+
}, {
|
|
1392
|
+
groups: string[];
|
|
1393
|
+
id: string;
|
|
1394
|
+
createdOn: string;
|
|
1395
|
+
lastModifiedOn: string;
|
|
1396
|
+
enabled: boolean;
|
|
1399
1397
|
presets: {
|
|
1400
1398
|
name: string;
|
|
1401
1399
|
id: string;
|
|
1402
|
-
isDefault: boolean;
|
|
1403
|
-
assignedRef: string | null;
|
|
1404
1400
|
createdOn: string;
|
|
1405
1401
|
lastModifiedOn: string;
|
|
1402
|
+
isDefault: boolean;
|
|
1403
|
+
assignedRef: string | null;
|
|
1406
1404
|
params?: unknown;
|
|
1407
1405
|
}[];
|
|
1408
|
-
createdOn: string;
|
|
1409
|
-
lastModifiedOn: string;
|
|
1410
1406
|
providerAssignedName: string;
|
|
1411
1407
|
notes: string | null;
|
|
1412
|
-
|
|
1408
|
+
tags: string[];
|
|
1409
|
+
relations: z.objectInputType<{
|
|
1410
|
+
id: z.ZodString;
|
|
1411
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1412
|
+
}, z.ZodUnknown, "strip">[];
|
|
1413
1413
|
}>>, z.ZodObject<{
|
|
1414
1414
|
name: z.ZodString;
|
|
1415
1415
|
foreignRef: z.ZodString;
|
|
@@ -1449,18 +1449,18 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1449
1449
|
}, "strip", z.ZodTypeAny, {
|
|
1450
1450
|
name: string;
|
|
1451
1451
|
id: string;
|
|
1452
|
-
isDefault: boolean;
|
|
1453
|
-
assignedRef: string | null;
|
|
1454
1452
|
createdOn: string;
|
|
1455
1453
|
lastModifiedOn: string;
|
|
1454
|
+
isDefault: boolean;
|
|
1455
|
+
assignedRef: string | null;
|
|
1456
1456
|
params?: unknown;
|
|
1457
1457
|
}, {
|
|
1458
1458
|
name: string;
|
|
1459
1459
|
id: string;
|
|
1460
|
-
isDefault: boolean;
|
|
1461
|
-
assignedRef: string | null;
|
|
1462
1460
|
createdOn: string;
|
|
1463
1461
|
lastModifiedOn: string;
|
|
1462
|
+
isDefault: boolean;
|
|
1463
|
+
assignedRef: string | null;
|
|
1464
1464
|
params?: unknown;
|
|
1465
1465
|
}>, "many">;
|
|
1466
1466
|
providerAssignedName: z.ZodString;
|
|
@@ -1483,47 +1483,47 @@ export declare const sMotionSensorDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
1483
1483
|
}, "strip", z.ZodTypeAny, {
|
|
1484
1484
|
groups: string[];
|
|
1485
1485
|
id: string;
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1490
|
-
}, z.ZodUnknown, "strip">[];
|
|
1486
|
+
createdOn: string;
|
|
1487
|
+
lastModifiedOn: string;
|
|
1488
|
+
enabled: boolean;
|
|
1491
1489
|
presets: {
|
|
1492
1490
|
name: string;
|
|
1493
1491
|
id: string;
|
|
1494
|
-
isDefault: boolean;
|
|
1495
|
-
assignedRef: string | null;
|
|
1496
1492
|
createdOn: string;
|
|
1497
1493
|
lastModifiedOn: string;
|
|
1494
|
+
isDefault: boolean;
|
|
1495
|
+
assignedRef: string | null;
|
|
1498
1496
|
params?: unknown;
|
|
1499
1497
|
}[];
|
|
1500
|
-
createdOn: string;
|
|
1501
|
-
lastModifiedOn: string;
|
|
1502
1498
|
providerAssignedName: string;
|
|
1503
1499
|
notes: string | null;
|
|
1504
|
-
enabled: boolean;
|
|
1505
|
-
}, {
|
|
1506
|
-
groups: string[];
|
|
1507
|
-
id: string;
|
|
1508
1500
|
tags: string[];
|
|
1509
|
-
relations: z.
|
|
1501
|
+
relations: z.objectOutputType<{
|
|
1510
1502
|
id: z.ZodString;
|
|
1511
1503
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1512
1504
|
}, z.ZodUnknown, "strip">[];
|
|
1505
|
+
}, {
|
|
1506
|
+
groups: string[];
|
|
1507
|
+
id: string;
|
|
1508
|
+
createdOn: string;
|
|
1509
|
+
lastModifiedOn: string;
|
|
1510
|
+
enabled: boolean;
|
|
1513
1511
|
presets: {
|
|
1514
1512
|
name: string;
|
|
1515
1513
|
id: string;
|
|
1516
|
-
isDefault: boolean;
|
|
1517
|
-
assignedRef: string | null;
|
|
1518
1514
|
createdOn: string;
|
|
1519
1515
|
lastModifiedOn: string;
|
|
1516
|
+
isDefault: boolean;
|
|
1517
|
+
assignedRef: string | null;
|
|
1520
1518
|
params?: unknown;
|
|
1521
1519
|
}[];
|
|
1522
|
-
createdOn: string;
|
|
1523
|
-
lastModifiedOn: string;
|
|
1524
1520
|
providerAssignedName: string;
|
|
1525
1521
|
notes: string | null;
|
|
1526
|
-
|
|
1522
|
+
tags: string[];
|
|
1523
|
+
relations: z.objectInputType<{
|
|
1524
|
+
id: z.ZodString;
|
|
1525
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1526
|
+
}, z.ZodUnknown, "strip">[];
|
|
1527
1527
|
}>>, z.ZodObject<{
|
|
1528
1528
|
name: z.ZodString;
|
|
1529
1529
|
foreignRef: z.ZodString;
|
|
@@ -1563,18 +1563,18 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1563
1563
|
}, "strip", z.ZodTypeAny, {
|
|
1564
1564
|
name: string;
|
|
1565
1565
|
id: string;
|
|
1566
|
-
isDefault: boolean;
|
|
1567
|
-
assignedRef: string | null;
|
|
1568
1566
|
createdOn: string;
|
|
1569
1567
|
lastModifiedOn: string;
|
|
1568
|
+
isDefault: boolean;
|
|
1569
|
+
assignedRef: string | null;
|
|
1570
1570
|
params?: unknown;
|
|
1571
1571
|
}, {
|
|
1572
1572
|
name: string;
|
|
1573
1573
|
id: string;
|
|
1574
|
-
isDefault: boolean;
|
|
1575
|
-
assignedRef: string | null;
|
|
1576
1574
|
createdOn: string;
|
|
1577
1575
|
lastModifiedOn: string;
|
|
1576
|
+
isDefault: boolean;
|
|
1577
|
+
assignedRef: string | null;
|
|
1578
1578
|
params?: unknown;
|
|
1579
1579
|
}>, "many">;
|
|
1580
1580
|
providerAssignedName: z.ZodString;
|
|
@@ -1597,47 +1597,47 @@ export declare const sPanicButtonDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
1597
1597
|
}, "strip", z.ZodTypeAny, {
|
|
1598
1598
|
groups: string[];
|
|
1599
1599
|
id: string;
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1604
|
-
}, z.ZodUnknown, "strip">[];
|
|
1600
|
+
createdOn: string;
|
|
1601
|
+
lastModifiedOn: string;
|
|
1602
|
+
enabled: boolean;
|
|
1605
1603
|
presets: {
|
|
1606
1604
|
name: string;
|
|
1607
1605
|
id: string;
|
|
1608
|
-
isDefault: boolean;
|
|
1609
|
-
assignedRef: string | null;
|
|
1610
1606
|
createdOn: string;
|
|
1611
1607
|
lastModifiedOn: string;
|
|
1608
|
+
isDefault: boolean;
|
|
1609
|
+
assignedRef: string | null;
|
|
1612
1610
|
params?: unknown;
|
|
1613
1611
|
}[];
|
|
1614
|
-
createdOn: string;
|
|
1615
|
-
lastModifiedOn: string;
|
|
1616
1612
|
providerAssignedName: string;
|
|
1617
1613
|
notes: string | null;
|
|
1618
|
-
enabled: boolean;
|
|
1619
|
-
}, {
|
|
1620
|
-
groups: string[];
|
|
1621
|
-
id: string;
|
|
1622
1614
|
tags: string[];
|
|
1623
|
-
relations: z.
|
|
1615
|
+
relations: z.objectOutputType<{
|
|
1624
1616
|
id: z.ZodString;
|
|
1625
1617
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1626
1618
|
}, z.ZodUnknown, "strip">[];
|
|
1619
|
+
}, {
|
|
1620
|
+
groups: string[];
|
|
1621
|
+
id: string;
|
|
1622
|
+
createdOn: string;
|
|
1623
|
+
lastModifiedOn: string;
|
|
1624
|
+
enabled: boolean;
|
|
1627
1625
|
presets: {
|
|
1628
1626
|
name: string;
|
|
1629
1627
|
id: string;
|
|
1630
|
-
isDefault: boolean;
|
|
1631
|
-
assignedRef: string | null;
|
|
1632
1628
|
createdOn: string;
|
|
1633
1629
|
lastModifiedOn: string;
|
|
1630
|
+
isDefault: boolean;
|
|
1631
|
+
assignedRef: string | null;
|
|
1634
1632
|
params?: unknown;
|
|
1635
1633
|
}[];
|
|
1636
|
-
createdOn: string;
|
|
1637
|
-
lastModifiedOn: string;
|
|
1638
1634
|
providerAssignedName: string;
|
|
1639
1635
|
notes: string | null;
|
|
1640
|
-
|
|
1636
|
+
tags: string[];
|
|
1637
|
+
relations: z.objectInputType<{
|
|
1638
|
+
id: z.ZodString;
|
|
1639
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1640
|
+
}, z.ZodUnknown, "strip">[];
|
|
1641
1641
|
}>>, z.ZodObject<{
|
|
1642
1642
|
name: z.ZodString;
|
|
1643
1643
|
foreignRef: z.ZodString;
|
|
@@ -1693,18 +1693,18 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1693
1693
|
}, "strip", z.ZodTypeAny, {
|
|
1694
1694
|
name: string;
|
|
1695
1695
|
id: string;
|
|
1696
|
-
isDefault: boolean;
|
|
1697
|
-
assignedRef: string | null;
|
|
1698
1696
|
createdOn: string;
|
|
1699
1697
|
lastModifiedOn: string;
|
|
1698
|
+
isDefault: boolean;
|
|
1699
|
+
assignedRef: string | null;
|
|
1700
1700
|
params?: unknown;
|
|
1701
1701
|
}, {
|
|
1702
1702
|
name: string;
|
|
1703
1703
|
id: string;
|
|
1704
|
-
isDefault: boolean;
|
|
1705
|
-
assignedRef: string | null;
|
|
1706
1704
|
createdOn: string;
|
|
1707
1705
|
lastModifiedOn: string;
|
|
1706
|
+
isDefault: boolean;
|
|
1707
|
+
assignedRef: string | null;
|
|
1708
1708
|
params?: unknown;
|
|
1709
1709
|
}>, "many">;
|
|
1710
1710
|
providerAssignedName: z.ZodString;
|
|
@@ -1727,47 +1727,47 @@ export declare const sIntercomTerminalDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
1727
1727
|
}, "strip", z.ZodTypeAny, {
|
|
1728
1728
|
groups: string[];
|
|
1729
1729
|
id: string;
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1734
|
-
}, z.ZodUnknown, "strip">[];
|
|
1730
|
+
createdOn: string;
|
|
1731
|
+
lastModifiedOn: string;
|
|
1732
|
+
enabled: boolean;
|
|
1735
1733
|
presets: {
|
|
1736
1734
|
name: string;
|
|
1737
1735
|
id: string;
|
|
1738
|
-
isDefault: boolean;
|
|
1739
|
-
assignedRef: string | null;
|
|
1740
1736
|
createdOn: string;
|
|
1741
1737
|
lastModifiedOn: string;
|
|
1738
|
+
isDefault: boolean;
|
|
1739
|
+
assignedRef: string | null;
|
|
1742
1740
|
params?: unknown;
|
|
1743
1741
|
}[];
|
|
1744
|
-
createdOn: string;
|
|
1745
|
-
lastModifiedOn: string;
|
|
1746
1742
|
providerAssignedName: string;
|
|
1747
1743
|
notes: string | null;
|
|
1748
|
-
enabled: boolean;
|
|
1749
|
-
}, {
|
|
1750
|
-
groups: string[];
|
|
1751
|
-
id: string;
|
|
1752
1744
|
tags: string[];
|
|
1753
|
-
relations: z.
|
|
1745
|
+
relations: z.objectOutputType<{
|
|
1754
1746
|
id: z.ZodString;
|
|
1755
1747
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1756
1748
|
}, z.ZodUnknown, "strip">[];
|
|
1749
|
+
}, {
|
|
1750
|
+
groups: string[];
|
|
1751
|
+
id: string;
|
|
1752
|
+
createdOn: string;
|
|
1753
|
+
lastModifiedOn: string;
|
|
1754
|
+
enabled: boolean;
|
|
1757
1755
|
presets: {
|
|
1758
1756
|
name: string;
|
|
1759
1757
|
id: string;
|
|
1760
|
-
isDefault: boolean;
|
|
1761
|
-
assignedRef: string | null;
|
|
1762
1758
|
createdOn: string;
|
|
1763
1759
|
lastModifiedOn: string;
|
|
1760
|
+
isDefault: boolean;
|
|
1761
|
+
assignedRef: string | null;
|
|
1764
1762
|
params?: unknown;
|
|
1765
1763
|
}[];
|
|
1766
|
-
createdOn: string;
|
|
1767
|
-
lastModifiedOn: string;
|
|
1768
1764
|
providerAssignedName: string;
|
|
1769
1765
|
notes: string | null;
|
|
1770
|
-
|
|
1766
|
+
tags: string[];
|
|
1767
|
+
relations: z.objectInputType<{
|
|
1768
|
+
id: z.ZodString;
|
|
1769
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1770
|
+
}, z.ZodUnknown, "strip">[];
|
|
1771
1771
|
}>>, z.ZodObject<{
|
|
1772
1772
|
name: z.ZodString;
|
|
1773
1773
|
foreignRef: z.ZodString;
|
|
@@ -1811,18 +1811,18 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1811
1811
|
}, "strip", z.ZodTypeAny, {
|
|
1812
1812
|
name: string;
|
|
1813
1813
|
id: string;
|
|
1814
|
-
isDefault: boolean;
|
|
1815
|
-
assignedRef: string | null;
|
|
1816
1814
|
createdOn: string;
|
|
1817
1815
|
lastModifiedOn: string;
|
|
1816
|
+
isDefault: boolean;
|
|
1817
|
+
assignedRef: string | null;
|
|
1818
1818
|
params?: unknown;
|
|
1819
1819
|
}, {
|
|
1820
1820
|
name: string;
|
|
1821
1821
|
id: string;
|
|
1822
|
-
isDefault: boolean;
|
|
1823
|
-
assignedRef: string | null;
|
|
1824
1822
|
createdOn: string;
|
|
1825
1823
|
lastModifiedOn: string;
|
|
1824
|
+
isDefault: boolean;
|
|
1825
|
+
assignedRef: string | null;
|
|
1826
1826
|
params?: unknown;
|
|
1827
1827
|
}>, "many">;
|
|
1828
1828
|
providerAssignedName: z.ZodString;
|
|
@@ -1845,47 +1845,47 @@ export declare const sPbxDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
|
1845
1845
|
}, "strip", z.ZodTypeAny, {
|
|
1846
1846
|
groups: string[];
|
|
1847
1847
|
id: string;
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1852
|
-
}, z.ZodUnknown, "strip">[];
|
|
1848
|
+
createdOn: string;
|
|
1849
|
+
lastModifiedOn: string;
|
|
1850
|
+
enabled: boolean;
|
|
1853
1851
|
presets: {
|
|
1854
1852
|
name: string;
|
|
1855
1853
|
id: string;
|
|
1856
|
-
isDefault: boolean;
|
|
1857
|
-
assignedRef: string | null;
|
|
1858
1854
|
createdOn: string;
|
|
1859
1855
|
lastModifiedOn: string;
|
|
1856
|
+
isDefault: boolean;
|
|
1857
|
+
assignedRef: string | null;
|
|
1860
1858
|
params?: unknown;
|
|
1861
1859
|
}[];
|
|
1862
|
-
createdOn: string;
|
|
1863
|
-
lastModifiedOn: string;
|
|
1864
1860
|
providerAssignedName: string;
|
|
1865
1861
|
notes: string | null;
|
|
1866
|
-
enabled: boolean;
|
|
1867
|
-
}, {
|
|
1868
|
-
groups: string[];
|
|
1869
|
-
id: string;
|
|
1870
1862
|
tags: string[];
|
|
1871
|
-
relations: z.
|
|
1863
|
+
relations: z.objectOutputType<{
|
|
1872
1864
|
id: z.ZodString;
|
|
1873
1865
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1874
1866
|
}, z.ZodUnknown, "strip">[];
|
|
1867
|
+
}, {
|
|
1868
|
+
groups: string[];
|
|
1869
|
+
id: string;
|
|
1870
|
+
createdOn: string;
|
|
1871
|
+
lastModifiedOn: string;
|
|
1872
|
+
enabled: boolean;
|
|
1875
1873
|
presets: {
|
|
1876
1874
|
name: string;
|
|
1877
1875
|
id: string;
|
|
1878
|
-
isDefault: boolean;
|
|
1879
|
-
assignedRef: string | null;
|
|
1880
1876
|
createdOn: string;
|
|
1881
1877
|
lastModifiedOn: string;
|
|
1878
|
+
isDefault: boolean;
|
|
1879
|
+
assignedRef: string | null;
|
|
1882
1880
|
params?: unknown;
|
|
1883
1881
|
}[];
|
|
1884
|
-
createdOn: string;
|
|
1885
|
-
lastModifiedOn: string;
|
|
1886
1882
|
providerAssignedName: string;
|
|
1887
1883
|
notes: string | null;
|
|
1888
|
-
|
|
1884
|
+
tags: string[];
|
|
1885
|
+
relations: z.objectInputType<{
|
|
1886
|
+
id: z.ZodString;
|
|
1887
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1888
|
+
}, z.ZodUnknown, "strip">[];
|
|
1889
1889
|
}>>, z.ZodObject<{
|
|
1890
1890
|
name: z.ZodString;
|
|
1891
1891
|
foreignRef: z.ZodString;
|
|
@@ -1925,18 +1925,18 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
1925
1925
|
}, "strip", z.ZodTypeAny, {
|
|
1926
1926
|
name: string;
|
|
1927
1927
|
id: string;
|
|
1928
|
-
isDefault: boolean;
|
|
1929
|
-
assignedRef: string | null;
|
|
1930
1928
|
createdOn: string;
|
|
1931
1929
|
lastModifiedOn: string;
|
|
1930
|
+
isDefault: boolean;
|
|
1931
|
+
assignedRef: string | null;
|
|
1932
1932
|
params?: unknown;
|
|
1933
1933
|
}, {
|
|
1934
1934
|
name: string;
|
|
1935
1935
|
id: string;
|
|
1936
|
-
isDefault: boolean;
|
|
1937
|
-
assignedRef: string | null;
|
|
1938
1936
|
createdOn: string;
|
|
1939
1937
|
lastModifiedOn: string;
|
|
1938
|
+
isDefault: boolean;
|
|
1939
|
+
assignedRef: string | null;
|
|
1940
1940
|
params?: unknown;
|
|
1941
1941
|
}>, "many">;
|
|
1942
1942
|
providerAssignedName: z.ZodString;
|
|
@@ -1959,47 +1959,47 @@ export declare const sDeviceGatewayDto: z.ZodIntersection<z.ZodIntersection<z.Zo
|
|
|
1959
1959
|
}, "strip", z.ZodTypeAny, {
|
|
1960
1960
|
groups: string[];
|
|
1961
1961
|
id: string;
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1966
|
-
}, z.ZodUnknown, "strip">[];
|
|
1962
|
+
createdOn: string;
|
|
1963
|
+
lastModifiedOn: string;
|
|
1964
|
+
enabled: boolean;
|
|
1967
1965
|
presets: {
|
|
1968
1966
|
name: string;
|
|
1969
1967
|
id: string;
|
|
1970
|
-
isDefault: boolean;
|
|
1971
|
-
assignedRef: string | null;
|
|
1972
1968
|
createdOn: string;
|
|
1973
1969
|
lastModifiedOn: string;
|
|
1970
|
+
isDefault: boolean;
|
|
1971
|
+
assignedRef: string | null;
|
|
1974
1972
|
params?: unknown;
|
|
1975
1973
|
}[];
|
|
1976
|
-
createdOn: string;
|
|
1977
|
-
lastModifiedOn: string;
|
|
1978
1974
|
providerAssignedName: string;
|
|
1979
1975
|
notes: string | null;
|
|
1980
|
-
enabled: boolean;
|
|
1981
|
-
}, {
|
|
1982
|
-
groups: string[];
|
|
1983
|
-
id: string;
|
|
1984
1976
|
tags: string[];
|
|
1985
|
-
relations: z.
|
|
1977
|
+
relations: z.objectOutputType<{
|
|
1986
1978
|
id: z.ZodString;
|
|
1987
1979
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
1988
1980
|
}, z.ZodUnknown, "strip">[];
|
|
1981
|
+
}, {
|
|
1982
|
+
groups: string[];
|
|
1983
|
+
id: string;
|
|
1984
|
+
createdOn: string;
|
|
1985
|
+
lastModifiedOn: string;
|
|
1986
|
+
enabled: boolean;
|
|
1989
1987
|
presets: {
|
|
1990
1988
|
name: string;
|
|
1991
1989
|
id: string;
|
|
1992
|
-
isDefault: boolean;
|
|
1993
|
-
assignedRef: string | null;
|
|
1994
1990
|
createdOn: string;
|
|
1995
1991
|
lastModifiedOn: string;
|
|
1992
|
+
isDefault: boolean;
|
|
1993
|
+
assignedRef: string | null;
|
|
1996
1994
|
params?: unknown;
|
|
1997
1995
|
}[];
|
|
1998
|
-
createdOn: string;
|
|
1999
|
-
lastModifiedOn: string;
|
|
2000
1996
|
providerAssignedName: string;
|
|
2001
1997
|
notes: string | null;
|
|
2002
|
-
|
|
1998
|
+
tags: string[];
|
|
1999
|
+
relations: z.objectInputType<{
|
|
2000
|
+
id: z.ZodString;
|
|
2001
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2002
|
+
}, z.ZodUnknown, "strip">[];
|
|
2003
2003
|
}>>, z.ZodObject<{
|
|
2004
2004
|
name: z.ZodString;
|
|
2005
2005
|
foreignRef: z.ZodString;
|
|
@@ -2039,18 +2039,18 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
2039
2039
|
}, "strip", z.ZodTypeAny, {
|
|
2040
2040
|
name: string;
|
|
2041
2041
|
id: string;
|
|
2042
|
-
isDefault: boolean;
|
|
2043
|
-
assignedRef: string | null;
|
|
2044
2042
|
createdOn: string;
|
|
2045
2043
|
lastModifiedOn: string;
|
|
2044
|
+
isDefault: boolean;
|
|
2045
|
+
assignedRef: string | null;
|
|
2046
2046
|
params?: unknown;
|
|
2047
2047
|
}, {
|
|
2048
2048
|
name: string;
|
|
2049
2049
|
id: string;
|
|
2050
|
-
isDefault: boolean;
|
|
2051
|
-
assignedRef: string | null;
|
|
2052
2050
|
createdOn: string;
|
|
2053
2051
|
lastModifiedOn: string;
|
|
2052
|
+
isDefault: boolean;
|
|
2053
|
+
assignedRef: string | null;
|
|
2054
2054
|
params?: unknown;
|
|
2055
2055
|
}>, "many">;
|
|
2056
2056
|
providerAssignedName: z.ZodString;
|
|
@@ -2073,47 +2073,47 @@ export declare const sPresenceTrackerDto: z.ZodIntersection<z.ZodIntersection<z.
|
|
|
2073
2073
|
}, "strip", z.ZodTypeAny, {
|
|
2074
2074
|
groups: string[];
|
|
2075
2075
|
id: string;
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2080
|
-
}, z.ZodUnknown, "strip">[];
|
|
2076
|
+
createdOn: string;
|
|
2077
|
+
lastModifiedOn: string;
|
|
2078
|
+
enabled: boolean;
|
|
2081
2079
|
presets: {
|
|
2082
2080
|
name: string;
|
|
2083
2081
|
id: string;
|
|
2084
|
-
isDefault: boolean;
|
|
2085
|
-
assignedRef: string | null;
|
|
2086
2082
|
createdOn: string;
|
|
2087
2083
|
lastModifiedOn: string;
|
|
2084
|
+
isDefault: boolean;
|
|
2085
|
+
assignedRef: string | null;
|
|
2088
2086
|
params?: unknown;
|
|
2089
2087
|
}[];
|
|
2090
|
-
createdOn: string;
|
|
2091
|
-
lastModifiedOn: string;
|
|
2092
2088
|
providerAssignedName: string;
|
|
2093
2089
|
notes: string | null;
|
|
2094
|
-
enabled: boolean;
|
|
2095
|
-
}, {
|
|
2096
|
-
groups: string[];
|
|
2097
|
-
id: string;
|
|
2098
2090
|
tags: string[];
|
|
2099
|
-
relations: z.
|
|
2091
|
+
relations: z.objectOutputType<{
|
|
2100
2092
|
id: z.ZodString;
|
|
2101
2093
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2102
2094
|
}, z.ZodUnknown, "strip">[];
|
|
2095
|
+
}, {
|
|
2096
|
+
groups: string[];
|
|
2097
|
+
id: string;
|
|
2098
|
+
createdOn: string;
|
|
2099
|
+
lastModifiedOn: string;
|
|
2100
|
+
enabled: boolean;
|
|
2103
2101
|
presets: {
|
|
2104
2102
|
name: string;
|
|
2105
2103
|
id: string;
|
|
2106
|
-
isDefault: boolean;
|
|
2107
|
-
assignedRef: string | null;
|
|
2108
2104
|
createdOn: string;
|
|
2109
2105
|
lastModifiedOn: string;
|
|
2106
|
+
isDefault: boolean;
|
|
2107
|
+
assignedRef: string | null;
|
|
2110
2108
|
params?: unknown;
|
|
2111
2109
|
}[];
|
|
2112
|
-
createdOn: string;
|
|
2113
|
-
lastModifiedOn: string;
|
|
2114
2110
|
providerAssignedName: string;
|
|
2115
2111
|
notes: string | null;
|
|
2116
|
-
|
|
2112
|
+
tags: string[];
|
|
2113
|
+
relations: z.objectInputType<{
|
|
2114
|
+
id: z.ZodString;
|
|
2115
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2116
|
+
}, z.ZodUnknown, "strip">[];
|
|
2117
2117
|
}>>, z.ZodObject<{
|
|
2118
2118
|
name: z.ZodString;
|
|
2119
2119
|
foreignRef: z.ZodString;
|
|
@@ -2153,18 +2153,18 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
2153
2153
|
}, "strip", z.ZodTypeAny, {
|
|
2154
2154
|
name: string;
|
|
2155
2155
|
id: string;
|
|
2156
|
-
isDefault: boolean;
|
|
2157
|
-
assignedRef: string | null;
|
|
2158
2156
|
createdOn: string;
|
|
2159
2157
|
lastModifiedOn: string;
|
|
2158
|
+
isDefault: boolean;
|
|
2159
|
+
assignedRef: string | null;
|
|
2160
2160
|
params?: unknown;
|
|
2161
2161
|
}, {
|
|
2162
2162
|
name: string;
|
|
2163
2163
|
id: string;
|
|
2164
|
-
isDefault: boolean;
|
|
2165
|
-
assignedRef: string | null;
|
|
2166
2164
|
createdOn: string;
|
|
2167
2165
|
lastModifiedOn: string;
|
|
2166
|
+
isDefault: boolean;
|
|
2167
|
+
assignedRef: string | null;
|
|
2168
2168
|
params?: unknown;
|
|
2169
2169
|
}>, "many">;
|
|
2170
2170
|
providerAssignedName: z.ZodString;
|
|
@@ -2187,47 +2187,47 @@ export declare const sServerDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject
|
|
|
2187
2187
|
}, "strip", z.ZodTypeAny, {
|
|
2188
2188
|
groups: string[];
|
|
2189
2189
|
id: string;
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2194
|
-
}, z.ZodUnknown, "strip">[];
|
|
2190
|
+
createdOn: string;
|
|
2191
|
+
lastModifiedOn: string;
|
|
2192
|
+
enabled: boolean;
|
|
2195
2193
|
presets: {
|
|
2196
2194
|
name: string;
|
|
2197
2195
|
id: string;
|
|
2198
|
-
isDefault: boolean;
|
|
2199
|
-
assignedRef: string | null;
|
|
2200
2196
|
createdOn: string;
|
|
2201
2197
|
lastModifiedOn: string;
|
|
2198
|
+
isDefault: boolean;
|
|
2199
|
+
assignedRef: string | null;
|
|
2202
2200
|
params?: unknown;
|
|
2203
2201
|
}[];
|
|
2204
|
-
createdOn: string;
|
|
2205
|
-
lastModifiedOn: string;
|
|
2206
2202
|
providerAssignedName: string;
|
|
2207
2203
|
notes: string | null;
|
|
2208
|
-
enabled: boolean;
|
|
2209
|
-
}, {
|
|
2210
|
-
groups: string[];
|
|
2211
|
-
id: string;
|
|
2212
2204
|
tags: string[];
|
|
2213
|
-
relations: z.
|
|
2205
|
+
relations: z.objectOutputType<{
|
|
2214
2206
|
id: z.ZodString;
|
|
2215
2207
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2216
2208
|
}, z.ZodUnknown, "strip">[];
|
|
2209
|
+
}, {
|
|
2210
|
+
groups: string[];
|
|
2211
|
+
id: string;
|
|
2212
|
+
createdOn: string;
|
|
2213
|
+
lastModifiedOn: string;
|
|
2214
|
+
enabled: boolean;
|
|
2217
2215
|
presets: {
|
|
2218
2216
|
name: string;
|
|
2219
2217
|
id: string;
|
|
2220
|
-
isDefault: boolean;
|
|
2221
|
-
assignedRef: string | null;
|
|
2222
2218
|
createdOn: string;
|
|
2223
2219
|
lastModifiedOn: string;
|
|
2220
|
+
isDefault: boolean;
|
|
2221
|
+
assignedRef: string | null;
|
|
2224
2222
|
params?: unknown;
|
|
2225
2223
|
}[];
|
|
2226
|
-
createdOn: string;
|
|
2227
|
-
lastModifiedOn: string;
|
|
2228
2224
|
providerAssignedName: string;
|
|
2229
2225
|
notes: string | null;
|
|
2230
|
-
|
|
2226
|
+
tags: string[];
|
|
2227
|
+
relations: z.objectInputType<{
|
|
2228
|
+
id: z.ZodString;
|
|
2229
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2230
|
+
}, z.ZodUnknown, "strip">[];
|
|
2231
2231
|
}>>, z.ZodObject<{
|
|
2232
2232
|
name: z.ZodString;
|
|
2233
2233
|
foreignRef: z.ZodString;
|
|
@@ -2267,18 +2267,18 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
2267
2267
|
}, "strip", z.ZodTypeAny, {
|
|
2268
2268
|
name: string;
|
|
2269
2269
|
id: string;
|
|
2270
|
-
isDefault: boolean;
|
|
2271
|
-
assignedRef: string | null;
|
|
2272
2270
|
createdOn: string;
|
|
2273
2271
|
lastModifiedOn: string;
|
|
2272
|
+
isDefault: boolean;
|
|
2273
|
+
assignedRef: string | null;
|
|
2274
2274
|
params?: unknown;
|
|
2275
2275
|
}, {
|
|
2276
2276
|
name: string;
|
|
2277
2277
|
id: string;
|
|
2278
|
-
isDefault: boolean;
|
|
2279
|
-
assignedRef: string | null;
|
|
2280
2278
|
createdOn: string;
|
|
2281
2279
|
lastModifiedOn: string;
|
|
2280
|
+
isDefault: boolean;
|
|
2281
|
+
assignedRef: string | null;
|
|
2282
2282
|
params?: unknown;
|
|
2283
2283
|
}>, "many">;
|
|
2284
2284
|
providerAssignedName: z.ZodString;
|
|
@@ -2301,47 +2301,47 @@ export declare const sAlarmDto: z.ZodIntersection<z.ZodIntersection<z.ZodObject<
|
|
|
2301
2301
|
}, "strip", z.ZodTypeAny, {
|
|
2302
2302
|
groups: string[];
|
|
2303
2303
|
id: string;
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2308
|
-
}, z.ZodUnknown, "strip">[];
|
|
2304
|
+
createdOn: string;
|
|
2305
|
+
lastModifiedOn: string;
|
|
2306
|
+
enabled: boolean;
|
|
2309
2307
|
presets: {
|
|
2310
2308
|
name: string;
|
|
2311
2309
|
id: string;
|
|
2312
|
-
isDefault: boolean;
|
|
2313
|
-
assignedRef: string | null;
|
|
2314
2310
|
createdOn: string;
|
|
2315
2311
|
lastModifiedOn: string;
|
|
2312
|
+
isDefault: boolean;
|
|
2313
|
+
assignedRef: string | null;
|
|
2316
2314
|
params?: unknown;
|
|
2317
2315
|
}[];
|
|
2318
|
-
createdOn: string;
|
|
2319
|
-
lastModifiedOn: string;
|
|
2320
2316
|
providerAssignedName: string;
|
|
2321
2317
|
notes: string | null;
|
|
2322
|
-
enabled: boolean;
|
|
2323
|
-
}, {
|
|
2324
|
-
groups: string[];
|
|
2325
|
-
id: string;
|
|
2326
2318
|
tags: string[];
|
|
2327
|
-
relations: z.
|
|
2319
|
+
relations: z.objectOutputType<{
|
|
2328
2320
|
id: z.ZodString;
|
|
2329
2321
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2330
2322
|
}, z.ZodUnknown, "strip">[];
|
|
2323
|
+
}, {
|
|
2324
|
+
groups: string[];
|
|
2325
|
+
id: string;
|
|
2326
|
+
createdOn: string;
|
|
2327
|
+
lastModifiedOn: string;
|
|
2328
|
+
enabled: boolean;
|
|
2331
2329
|
presets: {
|
|
2332
2330
|
name: string;
|
|
2333
2331
|
id: string;
|
|
2334
|
-
isDefault: boolean;
|
|
2335
|
-
assignedRef: string | null;
|
|
2336
2332
|
createdOn: string;
|
|
2337
2333
|
lastModifiedOn: string;
|
|
2334
|
+
isDefault: boolean;
|
|
2335
|
+
assignedRef: string | null;
|
|
2338
2336
|
params?: unknown;
|
|
2339
2337
|
}[];
|
|
2340
|
-
createdOn: string;
|
|
2341
|
-
lastModifiedOn: string;
|
|
2342
2338
|
providerAssignedName: string;
|
|
2343
2339
|
notes: string | null;
|
|
2344
|
-
|
|
2340
|
+
tags: string[];
|
|
2341
|
+
relations: z.objectInputType<{
|
|
2342
|
+
id: z.ZodString;
|
|
2343
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2344
|
+
}, z.ZodUnknown, "strip">[];
|
|
2345
2345
|
}>>, z.ZodObject<{
|
|
2346
2346
|
name: z.ZodString;
|
|
2347
2347
|
foreignRef: z.ZodString;
|
|
@@ -2381,18 +2381,18 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
2381
2381
|
}, "strip", z.ZodTypeAny, {
|
|
2382
2382
|
name: string;
|
|
2383
2383
|
id: string;
|
|
2384
|
-
isDefault: boolean;
|
|
2385
|
-
assignedRef: string | null;
|
|
2386
2384
|
createdOn: string;
|
|
2387
2385
|
lastModifiedOn: string;
|
|
2386
|
+
isDefault: boolean;
|
|
2387
|
+
assignedRef: string | null;
|
|
2388
2388
|
params?: unknown;
|
|
2389
2389
|
}, {
|
|
2390
2390
|
name: string;
|
|
2391
2391
|
id: string;
|
|
2392
|
-
isDefault: boolean;
|
|
2393
|
-
assignedRef: string | null;
|
|
2394
2392
|
createdOn: string;
|
|
2395
2393
|
lastModifiedOn: string;
|
|
2394
|
+
isDefault: boolean;
|
|
2395
|
+
assignedRef: string | null;
|
|
2396
2396
|
params?: unknown;
|
|
2397
2397
|
}>, "many">;
|
|
2398
2398
|
providerAssignedName: z.ZodString;
|
|
@@ -2415,47 +2415,47 @@ export declare const sIntercomOperatorDto: z.ZodIntersection<z.ZodIntersection<z
|
|
|
2415
2415
|
}, "strip", z.ZodTypeAny, {
|
|
2416
2416
|
groups: string[];
|
|
2417
2417
|
id: string;
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2422
|
-
}, z.ZodUnknown, "strip">[];
|
|
2418
|
+
createdOn: string;
|
|
2419
|
+
lastModifiedOn: string;
|
|
2420
|
+
enabled: boolean;
|
|
2423
2421
|
presets: {
|
|
2424
2422
|
name: string;
|
|
2425
2423
|
id: string;
|
|
2426
|
-
isDefault: boolean;
|
|
2427
|
-
assignedRef: string | null;
|
|
2428
2424
|
createdOn: string;
|
|
2429
2425
|
lastModifiedOn: string;
|
|
2426
|
+
isDefault: boolean;
|
|
2427
|
+
assignedRef: string | null;
|
|
2430
2428
|
params?: unknown;
|
|
2431
2429
|
}[];
|
|
2432
|
-
createdOn: string;
|
|
2433
|
-
lastModifiedOn: string;
|
|
2434
2430
|
providerAssignedName: string;
|
|
2435
2431
|
notes: string | null;
|
|
2436
|
-
enabled: boolean;
|
|
2437
|
-
}, {
|
|
2438
|
-
groups: string[];
|
|
2439
|
-
id: string;
|
|
2440
2432
|
tags: string[];
|
|
2441
|
-
relations: z.
|
|
2433
|
+
relations: z.objectOutputType<{
|
|
2442
2434
|
id: z.ZodString;
|
|
2443
2435
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2444
2436
|
}, z.ZodUnknown, "strip">[];
|
|
2437
|
+
}, {
|
|
2438
|
+
groups: string[];
|
|
2439
|
+
id: string;
|
|
2440
|
+
createdOn: string;
|
|
2441
|
+
lastModifiedOn: string;
|
|
2442
|
+
enabled: boolean;
|
|
2445
2443
|
presets: {
|
|
2446
2444
|
name: string;
|
|
2447
2445
|
id: string;
|
|
2448
|
-
isDefault: boolean;
|
|
2449
|
-
assignedRef: string | null;
|
|
2450
2446
|
createdOn: string;
|
|
2451
2447
|
lastModifiedOn: string;
|
|
2448
|
+
isDefault: boolean;
|
|
2449
|
+
assignedRef: string | null;
|
|
2452
2450
|
params?: unknown;
|
|
2453
2451
|
}[];
|
|
2454
|
-
createdOn: string;
|
|
2455
|
-
lastModifiedOn: string;
|
|
2456
2452
|
providerAssignedName: string;
|
|
2457
2453
|
notes: string | null;
|
|
2458
|
-
|
|
2454
|
+
tags: string[];
|
|
2455
|
+
relations: z.objectInputType<{
|
|
2456
|
+
id: z.ZodString;
|
|
2457
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2458
|
+
}, z.ZodUnknown, "strip">[];
|
|
2459
2459
|
}>>, z.ZodObject<{
|
|
2460
2460
|
name: z.ZodString;
|
|
2461
2461
|
foreignRef: z.ZodString;
|
|
@@ -2495,18 +2495,18 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2495
2495
|
}, "strip", z.ZodTypeAny, {
|
|
2496
2496
|
name: string;
|
|
2497
2497
|
id: string;
|
|
2498
|
-
isDefault: boolean;
|
|
2499
|
-
assignedRef: string | null;
|
|
2500
2498
|
createdOn: string;
|
|
2501
2499
|
lastModifiedOn: string;
|
|
2500
|
+
isDefault: boolean;
|
|
2501
|
+
assignedRef: string | null;
|
|
2502
2502
|
params?: unknown;
|
|
2503
2503
|
}, {
|
|
2504
2504
|
name: string;
|
|
2505
2505
|
id: string;
|
|
2506
|
-
isDefault: boolean;
|
|
2507
|
-
assignedRef: string | null;
|
|
2508
2506
|
createdOn: string;
|
|
2509
2507
|
lastModifiedOn: string;
|
|
2508
|
+
isDefault: boolean;
|
|
2509
|
+
assignedRef: string | null;
|
|
2510
2510
|
params?: unknown;
|
|
2511
2511
|
}>, "many">;
|
|
2512
2512
|
providerAssignedName: z.ZodString;
|
|
@@ -2526,50 +2526,50 @@ export declare const sDisplayDto: z.ZodIntersection<z.ZodIntersection<z.ZodObjec
|
|
|
2526
2526
|
enabled: z.ZodBoolean;
|
|
2527
2527
|
createdOn: z.ZodString;
|
|
2528
2528
|
lastModifiedOn: z.ZodString;
|
|
2529
|
-
}, "strip", z.ZodTypeAny, {
|
|
2530
|
-
groups: string[];
|
|
2531
|
-
id: string;
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2536
|
-
}, z.ZodUnknown, "strip">[];
|
|
2529
|
+
}, "strip", z.ZodTypeAny, {
|
|
2530
|
+
groups: string[];
|
|
2531
|
+
id: string;
|
|
2532
|
+
createdOn: string;
|
|
2533
|
+
lastModifiedOn: string;
|
|
2534
|
+
enabled: boolean;
|
|
2537
2535
|
presets: {
|
|
2538
2536
|
name: string;
|
|
2539
2537
|
id: string;
|
|
2540
|
-
isDefault: boolean;
|
|
2541
|
-
assignedRef: string | null;
|
|
2542
2538
|
createdOn: string;
|
|
2543
2539
|
lastModifiedOn: string;
|
|
2540
|
+
isDefault: boolean;
|
|
2541
|
+
assignedRef: string | null;
|
|
2544
2542
|
params?: unknown;
|
|
2545
2543
|
}[];
|
|
2546
|
-
createdOn: string;
|
|
2547
|
-
lastModifiedOn: string;
|
|
2548
2544
|
providerAssignedName: string;
|
|
2549
2545
|
notes: string | null;
|
|
2550
|
-
enabled: boolean;
|
|
2551
|
-
}, {
|
|
2552
|
-
groups: string[];
|
|
2553
|
-
id: string;
|
|
2554
2546
|
tags: string[];
|
|
2555
|
-
relations: z.
|
|
2547
|
+
relations: z.objectOutputType<{
|
|
2556
2548
|
id: z.ZodString;
|
|
2557
2549
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2558
2550
|
}, z.ZodUnknown, "strip">[];
|
|
2551
|
+
}, {
|
|
2552
|
+
groups: string[];
|
|
2553
|
+
id: string;
|
|
2554
|
+
createdOn: string;
|
|
2555
|
+
lastModifiedOn: string;
|
|
2556
|
+
enabled: boolean;
|
|
2559
2557
|
presets: {
|
|
2560
2558
|
name: string;
|
|
2561
2559
|
id: string;
|
|
2562
|
-
isDefault: boolean;
|
|
2563
|
-
assignedRef: string | null;
|
|
2564
2560
|
createdOn: string;
|
|
2565
2561
|
lastModifiedOn: string;
|
|
2562
|
+
isDefault: boolean;
|
|
2563
|
+
assignedRef: string | null;
|
|
2566
2564
|
params?: unknown;
|
|
2567
2565
|
}[];
|
|
2568
|
-
createdOn: string;
|
|
2569
|
-
lastModifiedOn: string;
|
|
2570
2566
|
providerAssignedName: string;
|
|
2571
2567
|
notes: string | null;
|
|
2572
|
-
|
|
2568
|
+
tags: string[];
|
|
2569
|
+
relations: z.objectInputType<{
|
|
2570
|
+
id: z.ZodString;
|
|
2571
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2572
|
+
}, z.ZodUnknown, "strip">[];
|
|
2573
2573
|
}>>, z.ZodObject<{
|
|
2574
2574
|
name: z.ZodString;
|
|
2575
2575
|
foreignRef: z.ZodString;
|
|
@@ -2609,18 +2609,18 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
2609
2609
|
}, "strip", z.ZodTypeAny, {
|
|
2610
2610
|
name: string;
|
|
2611
2611
|
id: string;
|
|
2612
|
-
isDefault: boolean;
|
|
2613
|
-
assignedRef: string | null;
|
|
2614
2612
|
createdOn: string;
|
|
2615
2613
|
lastModifiedOn: string;
|
|
2614
|
+
isDefault: boolean;
|
|
2615
|
+
assignedRef: string | null;
|
|
2616
2616
|
params?: unknown;
|
|
2617
2617
|
}, {
|
|
2618
2618
|
name: string;
|
|
2619
2619
|
id: string;
|
|
2620
|
-
isDefault: boolean;
|
|
2621
|
-
assignedRef: string | null;
|
|
2622
2620
|
createdOn: string;
|
|
2623
2621
|
lastModifiedOn: string;
|
|
2622
|
+
isDefault: boolean;
|
|
2623
|
+
assignedRef: string | null;
|
|
2624
2624
|
params?: unknown;
|
|
2625
2625
|
}>, "many">;
|
|
2626
2626
|
providerAssignedName: z.ZodString;
|
|
@@ -2643,47 +2643,47 @@ export declare const sRecorderDto: z.ZodIntersection<z.ZodIntersection<z.ZodObje
|
|
|
2643
2643
|
}, "strip", z.ZodTypeAny, {
|
|
2644
2644
|
groups: string[];
|
|
2645
2645
|
id: string;
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2650
|
-
}, z.ZodUnknown, "strip">[];
|
|
2646
|
+
createdOn: string;
|
|
2647
|
+
lastModifiedOn: string;
|
|
2648
|
+
enabled: boolean;
|
|
2651
2649
|
presets: {
|
|
2652
2650
|
name: string;
|
|
2653
2651
|
id: string;
|
|
2654
|
-
isDefault: boolean;
|
|
2655
|
-
assignedRef: string | null;
|
|
2656
2652
|
createdOn: string;
|
|
2657
2653
|
lastModifiedOn: string;
|
|
2654
|
+
isDefault: boolean;
|
|
2655
|
+
assignedRef: string | null;
|
|
2658
2656
|
params?: unknown;
|
|
2659
2657
|
}[];
|
|
2660
|
-
createdOn: string;
|
|
2661
|
-
lastModifiedOn: string;
|
|
2662
2658
|
providerAssignedName: string;
|
|
2663
2659
|
notes: string | null;
|
|
2664
|
-
enabled: boolean;
|
|
2665
|
-
}, {
|
|
2666
|
-
groups: string[];
|
|
2667
|
-
id: string;
|
|
2668
2660
|
tags: string[];
|
|
2669
|
-
relations: z.
|
|
2661
|
+
relations: z.objectOutputType<{
|
|
2670
2662
|
id: z.ZodString;
|
|
2671
2663
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2672
2664
|
}, z.ZodUnknown, "strip">[];
|
|
2665
|
+
}, {
|
|
2666
|
+
groups: string[];
|
|
2667
|
+
id: string;
|
|
2668
|
+
createdOn: string;
|
|
2669
|
+
lastModifiedOn: string;
|
|
2670
|
+
enabled: boolean;
|
|
2673
2671
|
presets: {
|
|
2674
2672
|
name: string;
|
|
2675
2673
|
id: string;
|
|
2676
|
-
isDefault: boolean;
|
|
2677
|
-
assignedRef: string | null;
|
|
2678
2674
|
createdOn: string;
|
|
2679
2675
|
lastModifiedOn: string;
|
|
2676
|
+
isDefault: boolean;
|
|
2677
|
+
assignedRef: string | null;
|
|
2680
2678
|
params?: unknown;
|
|
2681
2679
|
}[];
|
|
2682
|
-
createdOn: string;
|
|
2683
|
-
lastModifiedOn: string;
|
|
2684
2680
|
providerAssignedName: string;
|
|
2685
2681
|
notes: string | null;
|
|
2686
|
-
|
|
2682
|
+
tags: string[];
|
|
2683
|
+
relations: z.objectInputType<{
|
|
2684
|
+
id: z.ZodString;
|
|
2685
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2686
|
+
}, z.ZodUnknown, "strip">[];
|
|
2687
2687
|
}>>, z.ZodObject<{
|
|
2688
2688
|
name: z.ZodString;
|
|
2689
2689
|
foreignRef: z.ZodString;
|
|
@@ -2723,18 +2723,18 @@ export declare const sNvrExporterDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
2723
2723
|
}, "strip", z.ZodTypeAny, {
|
|
2724
2724
|
name: string;
|
|
2725
2725
|
id: string;
|
|
2726
|
-
isDefault: boolean;
|
|
2727
|
-
assignedRef: string | null;
|
|
2728
2726
|
createdOn: string;
|
|
2729
2727
|
lastModifiedOn: string;
|
|
2728
|
+
isDefault: boolean;
|
|
2729
|
+
assignedRef: string | null;
|
|
2730
2730
|
params?: unknown;
|
|
2731
2731
|
}, {
|
|
2732
2732
|
name: string;
|
|
2733
2733
|
id: string;
|
|
2734
|
-
isDefault: boolean;
|
|
2735
|
-
assignedRef: string | null;
|
|
2736
2734
|
createdOn: string;
|
|
2737
2735
|
lastModifiedOn: string;
|
|
2736
|
+
isDefault: boolean;
|
|
2737
|
+
assignedRef: string | null;
|
|
2738
2738
|
params?: unknown;
|
|
2739
2739
|
}>, "many">;
|
|
2740
2740
|
providerAssignedName: z.ZodString;
|
|
@@ -2757,47 +2757,47 @@ export declare const sNvrExporterDto: z.ZodIntersection<z.ZodIntersection<z.ZodO
|
|
|
2757
2757
|
}, "strip", z.ZodTypeAny, {
|
|
2758
2758
|
groups: string[];
|
|
2759
2759
|
id: string;
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2764
|
-
}, z.ZodUnknown, "strip">[];
|
|
2760
|
+
createdOn: string;
|
|
2761
|
+
lastModifiedOn: string;
|
|
2762
|
+
enabled: boolean;
|
|
2765
2763
|
presets: {
|
|
2766
2764
|
name: string;
|
|
2767
2765
|
id: string;
|
|
2768
|
-
isDefault: boolean;
|
|
2769
|
-
assignedRef: string | null;
|
|
2770
2766
|
createdOn: string;
|
|
2771
2767
|
lastModifiedOn: string;
|
|
2768
|
+
isDefault: boolean;
|
|
2769
|
+
assignedRef: string | null;
|
|
2772
2770
|
params?: unknown;
|
|
2773
2771
|
}[];
|
|
2774
|
-
createdOn: string;
|
|
2775
|
-
lastModifiedOn: string;
|
|
2776
2772
|
providerAssignedName: string;
|
|
2777
2773
|
notes: string | null;
|
|
2778
|
-
enabled: boolean;
|
|
2779
|
-
}, {
|
|
2780
|
-
groups: string[];
|
|
2781
|
-
id: string;
|
|
2782
2774
|
tags: string[];
|
|
2783
|
-
relations: z.
|
|
2775
|
+
relations: z.objectOutputType<{
|
|
2784
2776
|
id: z.ZodString;
|
|
2785
2777
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2786
2778
|
}, z.ZodUnknown, "strip">[];
|
|
2779
|
+
}, {
|
|
2780
|
+
groups: string[];
|
|
2781
|
+
id: string;
|
|
2782
|
+
createdOn: string;
|
|
2783
|
+
lastModifiedOn: string;
|
|
2784
|
+
enabled: boolean;
|
|
2787
2785
|
presets: {
|
|
2788
2786
|
name: string;
|
|
2789
2787
|
id: string;
|
|
2790
|
-
isDefault: boolean;
|
|
2791
|
-
assignedRef: string | null;
|
|
2792
2788
|
createdOn: string;
|
|
2793
2789
|
lastModifiedOn: string;
|
|
2790
|
+
isDefault: boolean;
|
|
2791
|
+
assignedRef: string | null;
|
|
2794
2792
|
params?: unknown;
|
|
2795
2793
|
}[];
|
|
2796
|
-
createdOn: string;
|
|
2797
|
-
lastModifiedOn: string;
|
|
2798
2794
|
providerAssignedName: string;
|
|
2799
2795
|
notes: string | null;
|
|
2800
|
-
|
|
2796
|
+
tags: string[];
|
|
2797
|
+
relations: z.objectInputType<{
|
|
2798
|
+
id: z.ZodString;
|
|
2799
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2800
|
+
}, z.ZodUnknown, "strip">[];
|
|
2801
2801
|
}>>, z.ZodObject<{
|
|
2802
2802
|
name: z.ZodString;
|
|
2803
2803
|
foreignRef: z.ZodString;
|
|
@@ -2837,18 +2837,18 @@ export declare const sNvrAnalyticsServerDto: z.ZodIntersection<z.ZodIntersection
|
|
|
2837
2837
|
}, "strip", z.ZodTypeAny, {
|
|
2838
2838
|
name: string;
|
|
2839
2839
|
id: string;
|
|
2840
|
-
isDefault: boolean;
|
|
2841
|
-
assignedRef: string | null;
|
|
2842
2840
|
createdOn: string;
|
|
2843
2841
|
lastModifiedOn: string;
|
|
2842
|
+
isDefault: boolean;
|
|
2843
|
+
assignedRef: string | null;
|
|
2844
2844
|
params?: unknown;
|
|
2845
2845
|
}, {
|
|
2846
2846
|
name: string;
|
|
2847
2847
|
id: string;
|
|
2848
|
-
isDefault: boolean;
|
|
2849
|
-
assignedRef: string | null;
|
|
2850
2848
|
createdOn: string;
|
|
2851
2849
|
lastModifiedOn: string;
|
|
2850
|
+
isDefault: boolean;
|
|
2851
|
+
assignedRef: string | null;
|
|
2852
2852
|
params?: unknown;
|
|
2853
2853
|
}>, "many">;
|
|
2854
2854
|
providerAssignedName: z.ZodString;
|
|
@@ -2871,47 +2871,47 @@ export declare const sNvrAnalyticsServerDto: z.ZodIntersection<z.ZodIntersection
|
|
|
2871
2871
|
}, "strip", z.ZodTypeAny, {
|
|
2872
2872
|
groups: string[];
|
|
2873
2873
|
id: string;
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2878
|
-
}, z.ZodUnknown, "strip">[];
|
|
2874
|
+
createdOn: string;
|
|
2875
|
+
lastModifiedOn: string;
|
|
2876
|
+
enabled: boolean;
|
|
2879
2877
|
presets: {
|
|
2880
2878
|
name: string;
|
|
2881
2879
|
id: string;
|
|
2882
|
-
isDefault: boolean;
|
|
2883
|
-
assignedRef: string | null;
|
|
2884
2880
|
createdOn: string;
|
|
2885
2881
|
lastModifiedOn: string;
|
|
2882
|
+
isDefault: boolean;
|
|
2883
|
+
assignedRef: string | null;
|
|
2886
2884
|
params?: unknown;
|
|
2887
2885
|
}[];
|
|
2888
|
-
createdOn: string;
|
|
2889
|
-
lastModifiedOn: string;
|
|
2890
2886
|
providerAssignedName: string;
|
|
2891
2887
|
notes: string | null;
|
|
2892
|
-
enabled: boolean;
|
|
2893
|
-
}, {
|
|
2894
|
-
groups: string[];
|
|
2895
|
-
id: string;
|
|
2896
2888
|
tags: string[];
|
|
2897
|
-
relations: z.
|
|
2889
|
+
relations: z.objectOutputType<{
|
|
2898
2890
|
id: z.ZodString;
|
|
2899
2891
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2900
2892
|
}, z.ZodUnknown, "strip">[];
|
|
2893
|
+
}, {
|
|
2894
|
+
groups: string[];
|
|
2895
|
+
id: string;
|
|
2896
|
+
createdOn: string;
|
|
2897
|
+
lastModifiedOn: string;
|
|
2898
|
+
enabled: boolean;
|
|
2901
2899
|
presets: {
|
|
2902
2900
|
name: string;
|
|
2903
2901
|
id: string;
|
|
2904
|
-
isDefault: boolean;
|
|
2905
|
-
assignedRef: string | null;
|
|
2906
2902
|
createdOn: string;
|
|
2907
2903
|
lastModifiedOn: string;
|
|
2904
|
+
isDefault: boolean;
|
|
2905
|
+
assignedRef: string | null;
|
|
2908
2906
|
params?: unknown;
|
|
2909
2907
|
}[];
|
|
2910
|
-
createdOn: string;
|
|
2911
|
-
lastModifiedOn: string;
|
|
2912
2908
|
providerAssignedName: string;
|
|
2913
2909
|
notes: string | null;
|
|
2914
|
-
|
|
2910
|
+
tags: string[];
|
|
2911
|
+
relations: z.objectInputType<{
|
|
2912
|
+
id: z.ZodString;
|
|
2913
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2914
|
+
}, z.ZodUnknown, "strip">[];
|
|
2915
2915
|
}>>, z.ZodObject<{
|
|
2916
2916
|
name: z.ZodString;
|
|
2917
2917
|
foreignRef: z.ZodString;
|
|
@@ -2951,18 +2951,18 @@ export declare const sSystemDeviceDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
2951
2951
|
}, "strip", z.ZodTypeAny, {
|
|
2952
2952
|
name: string;
|
|
2953
2953
|
id: string;
|
|
2954
|
-
isDefault: boolean;
|
|
2955
|
-
assignedRef: string | null;
|
|
2956
2954
|
createdOn: string;
|
|
2957
2955
|
lastModifiedOn: string;
|
|
2956
|
+
isDefault: boolean;
|
|
2957
|
+
assignedRef: string | null;
|
|
2958
2958
|
params?: unknown;
|
|
2959
2959
|
}, {
|
|
2960
2960
|
name: string;
|
|
2961
2961
|
id: string;
|
|
2962
|
-
isDefault: boolean;
|
|
2963
|
-
assignedRef: string | null;
|
|
2964
2962
|
createdOn: string;
|
|
2965
2963
|
lastModifiedOn: string;
|
|
2964
|
+
isDefault: boolean;
|
|
2965
|
+
assignedRef: string | null;
|
|
2966
2966
|
params?: unknown;
|
|
2967
2967
|
}>, "many">;
|
|
2968
2968
|
providerAssignedName: z.ZodString;
|
|
@@ -2985,47 +2985,47 @@ export declare const sSystemDeviceDto: z.ZodIntersection<z.ZodIntersection<z.Zod
|
|
|
2985
2985
|
}, "strip", z.ZodTypeAny, {
|
|
2986
2986
|
groups: string[];
|
|
2987
2987
|
id: string;
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
2992
|
-
}, z.ZodUnknown, "strip">[];
|
|
2988
|
+
createdOn: string;
|
|
2989
|
+
lastModifiedOn: string;
|
|
2990
|
+
enabled: boolean;
|
|
2993
2991
|
presets: {
|
|
2994
2992
|
name: string;
|
|
2995
2993
|
id: string;
|
|
2996
|
-
isDefault: boolean;
|
|
2997
|
-
assignedRef: string | null;
|
|
2998
2994
|
createdOn: string;
|
|
2999
2995
|
lastModifiedOn: string;
|
|
2996
|
+
isDefault: boolean;
|
|
2997
|
+
assignedRef: string | null;
|
|
3000
2998
|
params?: unknown;
|
|
3001
2999
|
}[];
|
|
3002
|
-
createdOn: string;
|
|
3003
|
-
lastModifiedOn: string;
|
|
3004
3000
|
providerAssignedName: string;
|
|
3005
3001
|
notes: string | null;
|
|
3006
|
-
enabled: boolean;
|
|
3007
|
-
}, {
|
|
3008
|
-
groups: string[];
|
|
3009
|
-
id: string;
|
|
3010
3002
|
tags: string[];
|
|
3011
|
-
relations: z.
|
|
3003
|
+
relations: z.objectOutputType<{
|
|
3012
3004
|
id: z.ZodString;
|
|
3013
3005
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
3014
3006
|
}, z.ZodUnknown, "strip">[];
|
|
3007
|
+
}, {
|
|
3008
|
+
groups: string[];
|
|
3009
|
+
id: string;
|
|
3010
|
+
createdOn: string;
|
|
3011
|
+
lastModifiedOn: string;
|
|
3012
|
+
enabled: boolean;
|
|
3015
3013
|
presets: {
|
|
3016
3014
|
name: string;
|
|
3017
3015
|
id: string;
|
|
3018
|
-
isDefault: boolean;
|
|
3019
|
-
assignedRef: string | null;
|
|
3020
3016
|
createdOn: string;
|
|
3021
3017
|
lastModifiedOn: string;
|
|
3018
|
+
isDefault: boolean;
|
|
3019
|
+
assignedRef: string | null;
|
|
3022
3020
|
params?: unknown;
|
|
3023
3021
|
}[];
|
|
3024
|
-
createdOn: string;
|
|
3025
|
-
lastModifiedOn: string;
|
|
3026
3022
|
providerAssignedName: string;
|
|
3027
3023
|
notes: string | null;
|
|
3028
|
-
|
|
3024
|
+
tags: string[];
|
|
3025
|
+
relations: z.objectInputType<{
|
|
3026
|
+
id: z.ZodString;
|
|
3027
|
+
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
3028
|
+
}, z.ZodUnknown, "strip">[];
|
|
3029
3029
|
}>>, z.ZodObject<{
|
|
3030
3030
|
name: z.ZodString;
|
|
3031
3031
|
foreignRef: z.ZodString;
|
|
@@ -3067,33 +3067,33 @@ export declare const sAddDeviceRequest: z.ZodObject<{
|
|
|
3067
3067
|
specs: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodUnknown, z.objectOutputType<{}, z.ZodUnknown, "strip">, z.objectInputType<{}, z.ZodUnknown, "strip">>>;
|
|
3068
3068
|
}, "strip", z.ZodTypeAny, {
|
|
3069
3069
|
name: string;
|
|
3070
|
-
type: "camera" | "server" | "display" | "door" | "io-board" | "camera-lift" | "motion-sensor" | "panic-button" | "intercom-operator" | "intercom-terminal" | "pbx" | "alarm" | "device-gateway" | "presence-tracker" | "
|
|
3070
|
+
type: "camera" | "server" | "display" | "door" | "io-board" | "camera-lift" | "motion-sensor" | "panic-button" | "intercom-operator" | "intercom-terminal" | "pbx" | "alarm" | "reader" | "device-gateway" | "presence-tracker" | "nvr-recorder" | "nvr-exporter" | "nvr-analytics-server" | "system";
|
|
3071
3071
|
foreignRef: string;
|
|
3072
|
+
notes: string | null;
|
|
3072
3073
|
tags: string[];
|
|
3073
|
-
provider: string;
|
|
3074
|
-
providerMetadata: {} & {
|
|
3075
|
-
[k: string]: unknown;
|
|
3076
|
-
};
|
|
3077
3074
|
relations: z.objectOutputType<{
|
|
3078
3075
|
id: z.ZodString;
|
|
3079
3076
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
3080
3077
|
}, z.ZodUnknown, "strip">[];
|
|
3081
|
-
|
|
3078
|
+
provider: string;
|
|
3079
|
+
providerMetadata: {} & {
|
|
3080
|
+
[k: string]: unknown;
|
|
3081
|
+
};
|
|
3082
3082
|
specs?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
3083
3083
|
}, {
|
|
3084
3084
|
name: string;
|
|
3085
|
-
type: "camera" | "server" | "display" | "door" | "io-board" | "camera-lift" | "motion-sensor" | "panic-button" | "intercom-operator" | "intercom-terminal" | "pbx" | "alarm" | "device-gateway" | "presence-tracker" | "
|
|
3085
|
+
type: "camera" | "server" | "display" | "door" | "io-board" | "camera-lift" | "motion-sensor" | "panic-button" | "intercom-operator" | "intercom-terminal" | "pbx" | "alarm" | "reader" | "device-gateway" | "presence-tracker" | "nvr-recorder" | "nvr-exporter" | "nvr-analytics-server" | "system";
|
|
3086
3086
|
foreignRef: string;
|
|
3087
|
+
notes: string | null;
|
|
3087
3088
|
tags: string[];
|
|
3088
|
-
provider: string;
|
|
3089
|
-
providerMetadata: {} & {
|
|
3090
|
-
[k: string]: unknown;
|
|
3091
|
-
};
|
|
3092
3089
|
relations: z.objectInputType<{
|
|
3093
3090
|
id: z.ZodString;
|
|
3094
3091
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
3095
3092
|
}, z.ZodUnknown, "strip">[];
|
|
3096
|
-
|
|
3093
|
+
provider: string;
|
|
3094
|
+
providerMetadata: {} & {
|
|
3095
|
+
[k: string]: unknown;
|
|
3096
|
+
};
|
|
3097
3097
|
specs?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
3098
3098
|
}>;
|
|
3099
3099
|
export declare const sUpdateDeviceRequest: z.ZodObject<{
|
|
@@ -3118,26 +3118,26 @@ export declare const sUpdateDeviceRequest: z.ZodObject<{
|
|
|
3118
3118
|
id: string;
|
|
3119
3119
|
name?: string | undefined;
|
|
3120
3120
|
specs?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
3121
|
+
enabled?: boolean | undefined;
|
|
3122
|
+
notes?: string | null | undefined;
|
|
3121
3123
|
tags?: string[] | undefined;
|
|
3122
|
-
providerMetadata?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
3123
3124
|
relations?: z.objectOutputType<{
|
|
3124
3125
|
id: z.ZodString;
|
|
3125
3126
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
3126
3127
|
}, z.ZodUnknown, "strip">[] | undefined;
|
|
3127
|
-
|
|
3128
|
-
enabled?: boolean | undefined;
|
|
3128
|
+
providerMetadata?: z.objectOutputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
3129
3129
|
}, {
|
|
3130
3130
|
id: string;
|
|
3131
3131
|
name?: string | undefined;
|
|
3132
3132
|
specs?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
3133
|
+
enabled?: boolean | undefined;
|
|
3134
|
+
notes?: string | null | undefined;
|
|
3133
3135
|
tags?: string[] | undefined;
|
|
3134
|
-
providerMetadata?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
3135
3136
|
relations?: z.objectInputType<{
|
|
3136
3137
|
id: z.ZodString;
|
|
3137
3138
|
kind: z.ZodEnum<["attachedTo", "parent", "child", "holds", "isHeldBy", "observes", "isObservedBy", "sendsInputTo", "receivesInputFrom", "sendsOutputTo", "receivesOutputFrom", "unlocks", "isUnlockedBy", "controls", "isControlledBy", "records", "isRecordedBy", "reads", "isReadBy"]>;
|
|
3138
3139
|
}, z.ZodUnknown, "strip">[] | undefined;
|
|
3139
|
-
|
|
3140
|
-
enabled?: boolean | undefined;
|
|
3140
|
+
providerMetadata?: z.objectInputType<{}, z.ZodUnknown, "strip"> | undefined;
|
|
3141
3141
|
}>;
|
|
3142
3142
|
export declare const sOverrideDeviceSpecsRequest: z.ZodObject<{
|
|
3143
3143
|
id: z.ZodString;
|
|
@@ -3164,17 +3164,17 @@ export declare const sAddDevicePresetRequest: z.ZodObject<{
|
|
|
3164
3164
|
params: {} & {
|
|
3165
3165
|
[k: string]: unknown;
|
|
3166
3166
|
};
|
|
3167
|
+
deviceId: string;
|
|
3167
3168
|
isDefault: boolean;
|
|
3168
3169
|
assignedRef: string | null;
|
|
3169
|
-
deviceId: string;
|
|
3170
3170
|
}, {
|
|
3171
3171
|
name: string;
|
|
3172
3172
|
params: {} & {
|
|
3173
3173
|
[k: string]: unknown;
|
|
3174
3174
|
};
|
|
3175
|
+
deviceId: string;
|
|
3175
3176
|
isDefault: boolean;
|
|
3176
3177
|
assignedRef: string | null;
|
|
3177
|
-
deviceId: string;
|
|
3178
3178
|
}>;
|
|
3179
3179
|
export declare const sUpdateDevicePresetRequest: z.ZodObject<{
|
|
3180
3180
|
name: z.ZodOptional<z.ZodString>;
|