@awarevue/api-types 2.0.22 → 2.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +27 -0
- package/dist/objects/index.js +27 -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
|
@@ -68,190 +68,6 @@ export declare const sErrorPayload: z.ZodIntersection<z.ZodObject<{
|
|
|
68
68
|
error: string;
|
|
69
69
|
code?: "NOT_SUPPORTED" | "TIMEOUT" | undefined;
|
|
70
70
|
}>>;
|
|
71
|
-
export declare const sUiOrderHint: z.ZodObject<{
|
|
72
|
-
kind: z.ZodLiteral<"order">;
|
|
73
|
-
path: z.ZodString;
|
|
74
|
-
fields: z.ZodArray<z.ZodString, "many">;
|
|
75
|
-
}, "strip", z.ZodTypeAny, {
|
|
76
|
-
path: string;
|
|
77
|
-
kind: "order";
|
|
78
|
-
fields: string[];
|
|
79
|
-
}, {
|
|
80
|
-
path: string;
|
|
81
|
-
kind: "order";
|
|
82
|
-
fields: string[];
|
|
83
|
-
}>;
|
|
84
|
-
export declare const sUiWidgetHint: z.ZodObject<{
|
|
85
|
-
kind: z.ZodLiteral<"widget">;
|
|
86
|
-
path: z.ZodString;
|
|
87
|
-
spanColumns: z.ZodOptional<z.ZodNumber>;
|
|
88
|
-
password: z.ZodOptional<z.ZodBoolean>;
|
|
89
|
-
placeHolder: z.ZodOptional<z.ZodString>;
|
|
90
|
-
}, "strip", z.ZodTypeAny, {
|
|
91
|
-
path: string;
|
|
92
|
-
kind: "widget";
|
|
93
|
-
spanColumns?: number | undefined;
|
|
94
|
-
password?: boolean | undefined;
|
|
95
|
-
placeHolder?: string | undefined;
|
|
96
|
-
}, {
|
|
97
|
-
path: string;
|
|
98
|
-
kind: "widget";
|
|
99
|
-
spanColumns?: number | undefined;
|
|
100
|
-
password?: boolean | undefined;
|
|
101
|
-
placeHolder?: string | undefined;
|
|
102
|
-
}>;
|
|
103
|
-
export declare const sUiHint: z.ZodUnion<[z.ZodObject<{
|
|
104
|
-
kind: z.ZodLiteral<"order">;
|
|
105
|
-
path: z.ZodString;
|
|
106
|
-
fields: z.ZodArray<z.ZodString, "many">;
|
|
107
|
-
}, "strip", z.ZodTypeAny, {
|
|
108
|
-
path: string;
|
|
109
|
-
kind: "order";
|
|
110
|
-
fields: string[];
|
|
111
|
-
}, {
|
|
112
|
-
path: string;
|
|
113
|
-
kind: "order";
|
|
114
|
-
fields: string[];
|
|
115
|
-
}>, z.ZodObject<{
|
|
116
|
-
kind: z.ZodLiteral<"widget">;
|
|
117
|
-
path: z.ZodString;
|
|
118
|
-
spanColumns: z.ZodOptional<z.ZodNumber>;
|
|
119
|
-
password: z.ZodOptional<z.ZodBoolean>;
|
|
120
|
-
placeHolder: z.ZodOptional<z.ZodString>;
|
|
121
|
-
}, "strip", z.ZodTypeAny, {
|
|
122
|
-
path: string;
|
|
123
|
-
kind: "widget";
|
|
124
|
-
spanColumns?: number | undefined;
|
|
125
|
-
password?: boolean | undefined;
|
|
126
|
-
placeHolder?: string | undefined;
|
|
127
|
-
}, {
|
|
128
|
-
path: string;
|
|
129
|
-
kind: "widget";
|
|
130
|
-
spanColumns?: number | undefined;
|
|
131
|
-
password?: boolean | undefined;
|
|
132
|
-
placeHolder?: string | undefined;
|
|
133
|
-
}>]>;
|
|
134
|
-
export declare const sProviderSpecs: z.ZodObject<{
|
|
135
|
-
title: z.ZodString;
|
|
136
|
-
configSchema: z.ZodUnknown;
|
|
137
|
-
configDefault: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
138
|
-
configFormUiHints: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
139
|
-
kind: z.ZodLiteral<"order">;
|
|
140
|
-
path: z.ZodString;
|
|
141
|
-
fields: z.ZodArray<z.ZodString, "many">;
|
|
142
|
-
}, "strip", z.ZodTypeAny, {
|
|
143
|
-
path: string;
|
|
144
|
-
kind: "order";
|
|
145
|
-
fields: string[];
|
|
146
|
-
}, {
|
|
147
|
-
path: string;
|
|
148
|
-
kind: "order";
|
|
149
|
-
fields: string[];
|
|
150
|
-
}>, z.ZodObject<{
|
|
151
|
-
kind: z.ZodLiteral<"widget">;
|
|
152
|
-
path: z.ZodString;
|
|
153
|
-
spanColumns: z.ZodOptional<z.ZodNumber>;
|
|
154
|
-
password: z.ZodOptional<z.ZodBoolean>;
|
|
155
|
-
placeHolder: z.ZodOptional<z.ZodString>;
|
|
156
|
-
}, "strip", z.ZodTypeAny, {
|
|
157
|
-
path: string;
|
|
158
|
-
kind: "widget";
|
|
159
|
-
spanColumns?: number | undefined;
|
|
160
|
-
password?: boolean | undefined;
|
|
161
|
-
placeHolder?: string | undefined;
|
|
162
|
-
}, {
|
|
163
|
-
path: string;
|
|
164
|
-
kind: "widget";
|
|
165
|
-
spanColumns?: number | undefined;
|
|
166
|
-
password?: boolean | undefined;
|
|
167
|
-
placeHolder?: string | undefined;
|
|
168
|
-
}>]>, "many">>;
|
|
169
|
-
}, "strip", z.ZodTypeAny, {
|
|
170
|
-
title: string;
|
|
171
|
-
configDefault: Record<string, unknown>;
|
|
172
|
-
configSchema?: unknown;
|
|
173
|
-
configFormUiHints?: ({
|
|
174
|
-
path: string;
|
|
175
|
-
kind: "order";
|
|
176
|
-
fields: string[];
|
|
177
|
-
} | {
|
|
178
|
-
path: string;
|
|
179
|
-
kind: "widget";
|
|
180
|
-
spanColumns?: number | undefined;
|
|
181
|
-
password?: boolean | undefined;
|
|
182
|
-
placeHolder?: string | undefined;
|
|
183
|
-
})[] | undefined;
|
|
184
|
-
}, {
|
|
185
|
-
title: string;
|
|
186
|
-
configDefault: Record<string, unknown>;
|
|
187
|
-
configSchema?: unknown;
|
|
188
|
-
configFormUiHints?: ({
|
|
189
|
-
path: string;
|
|
190
|
-
kind: "order";
|
|
191
|
-
fields: string[];
|
|
192
|
-
} | {
|
|
193
|
-
path: string;
|
|
194
|
-
kind: "widget";
|
|
195
|
-
spanColumns?: number | undefined;
|
|
196
|
-
password?: boolean | undefined;
|
|
197
|
-
placeHolder?: string | undefined;
|
|
198
|
-
})[] | undefined;
|
|
199
|
-
}>;
|
|
200
|
-
export declare const sAccessObjectKind: z.ZodEnum<["accessRule", "schedule", "person", "device", "zone"]>;
|
|
201
|
-
export declare const sTokenSpecs: z.ZodObject<{
|
|
202
|
-
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
203
|
-
regex: z.ZodOptional<z.ZodString>;
|
|
204
|
-
formatDescription: z.ZodOptional<z.ZodString>;
|
|
205
|
-
maxPerPerson: z.ZodOptional<z.ZodNumber>;
|
|
206
|
-
}, "strip", z.ZodTypeAny, {
|
|
207
|
-
type: "card" | "pin" | "fingerprint";
|
|
208
|
-
regex?: string | undefined;
|
|
209
|
-
formatDescription?: string | undefined;
|
|
210
|
-
maxPerPerson?: number | undefined;
|
|
211
|
-
}, {
|
|
212
|
-
type: "card" | "pin" | "fingerprint";
|
|
213
|
-
regex?: string | undefined;
|
|
214
|
-
formatDescription?: string | undefined;
|
|
215
|
-
maxPerPerson?: number | undefined;
|
|
216
|
-
}>;
|
|
217
|
-
export declare const sAccessControlCapabilityReport: z.ZodObject<{
|
|
218
|
-
tokens: z.ZodArray<z.ZodObject<{
|
|
219
|
-
type: z.ZodEnum<["card", "pin", "fingerprint"]>;
|
|
220
|
-
regex: z.ZodOptional<z.ZodString>;
|
|
221
|
-
formatDescription: z.ZodOptional<z.ZodString>;
|
|
222
|
-
maxPerPerson: z.ZodOptional<z.ZodNumber>;
|
|
223
|
-
}, "strip", z.ZodTypeAny, {
|
|
224
|
-
type: "card" | "pin" | "fingerprint";
|
|
225
|
-
regex?: string | undefined;
|
|
226
|
-
formatDescription?: string | undefined;
|
|
227
|
-
maxPerPerson?: number | undefined;
|
|
228
|
-
}, {
|
|
229
|
-
type: "card" | "pin" | "fingerprint";
|
|
230
|
-
regex?: string | undefined;
|
|
231
|
-
formatDescription?: string | undefined;
|
|
232
|
-
maxPerPerson?: number | undefined;
|
|
233
|
-
}>, "many">;
|
|
234
|
-
accessObjects: z.ZodArray<z.ZodEnum<["accessRule", "schedule", "person", "device", "zone"]>, "many">;
|
|
235
|
-
oneSchedulePerDoor: z.ZodBoolean;
|
|
236
|
-
}, "strip", z.ZodTypeAny, {
|
|
237
|
-
tokens: {
|
|
238
|
-
type: "card" | "pin" | "fingerprint";
|
|
239
|
-
regex?: string | undefined;
|
|
240
|
-
formatDescription?: string | undefined;
|
|
241
|
-
maxPerPerson?: number | undefined;
|
|
242
|
-
}[];
|
|
243
|
-
accessObjects: ("person" | "zone" | "accessRule" | "schedule" | "device")[];
|
|
244
|
-
oneSchedulePerDoor: boolean;
|
|
245
|
-
}, {
|
|
246
|
-
tokens: {
|
|
247
|
-
type: "card" | "pin" | "fingerprint";
|
|
248
|
-
regex?: string | undefined;
|
|
249
|
-
formatDescription?: string | undefined;
|
|
250
|
-
maxPerPerson?: number | undefined;
|
|
251
|
-
}[];
|
|
252
|
-
accessObjects: ("person" | "zone" | "accessRule" | "schedule" | "device")[];
|
|
253
|
-
oneSchedulePerDoor: boolean;
|
|
254
|
-
}>;
|
|
255
71
|
export declare const sRegisterRq: z.ZodObject<{
|
|
256
72
|
kind: z.ZodLiteral<"register">;
|
|
257
73
|
providers: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -346,7 +162,7 @@ export declare const sRegisterRq: z.ZodObject<{
|
|
|
346
162
|
formatDescription?: string | undefined;
|
|
347
163
|
maxPerPerson?: number | undefined;
|
|
348
164
|
}[];
|
|
349
|
-
accessObjects: ("person" | "zone" | "
|
|
165
|
+
accessObjects: ("person" | "zone" | "schedule" | "device" | "accessRule")[];
|
|
350
166
|
oneSchedulePerDoor: boolean;
|
|
351
167
|
}, {
|
|
352
168
|
tokens: {
|
|
@@ -355,7 +171,7 @@ export declare const sRegisterRq: z.ZodObject<{
|
|
|
355
171
|
formatDescription?: string | undefined;
|
|
356
172
|
maxPerPerson?: number | undefined;
|
|
357
173
|
}[];
|
|
358
|
-
accessObjects: ("person" | "zone" | "
|
|
174
|
+
accessObjects: ("person" | "zone" | "schedule" | "device" | "accessRule")[];
|
|
359
175
|
oneSchedulePerDoor: boolean;
|
|
360
176
|
}>>>;
|
|
361
177
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -383,7 +199,7 @@ export declare const sRegisterRq: z.ZodObject<{
|
|
|
383
199
|
formatDescription?: string | undefined;
|
|
384
200
|
maxPerPerson?: number | undefined;
|
|
385
201
|
}[];
|
|
386
|
-
accessObjects: ("person" | "zone" | "
|
|
202
|
+
accessObjects: ("person" | "zone" | "schedule" | "device" | "accessRule")[];
|
|
387
203
|
oneSchedulePerDoor: boolean;
|
|
388
204
|
}> | undefined;
|
|
389
205
|
}, {
|
|
@@ -411,7 +227,7 @@ export declare const sRegisterRq: z.ZodObject<{
|
|
|
411
227
|
formatDescription?: string | undefined;
|
|
412
228
|
maxPerPerson?: number | undefined;
|
|
413
229
|
}[];
|
|
414
|
-
accessObjects: ("person" | "zone" | "
|
|
230
|
+
accessObjects: ("person" | "zone" | "schedule" | "device" | "accessRule")[];
|
|
415
231
|
oneSchedulePerDoor: boolean;
|
|
416
232
|
}> | undefined;
|
|
417
233
|
}>;
|
|
@@ -557,52 +373,52 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
557
373
|
}, "strip", z.ZodTypeAny, {
|
|
558
374
|
name: string;
|
|
559
375
|
id: string;
|
|
560
|
-
isDefault: boolean;
|
|
561
|
-
assignedRef: string | null;
|
|
562
376
|
createdOn: string;
|
|
563
377
|
lastModifiedOn: string;
|
|
378
|
+
isDefault: boolean;
|
|
379
|
+
assignedRef: string | null;
|
|
564
380
|
params?: unknown;
|
|
565
381
|
}, {
|
|
566
382
|
name: string;
|
|
567
383
|
id: string;
|
|
568
|
-
isDefault: boolean;
|
|
569
|
-
assignedRef: string | null;
|
|
570
384
|
createdOn: string;
|
|
571
385
|
lastModifiedOn: string;
|
|
386
|
+
isDefault: boolean;
|
|
387
|
+
assignedRef: string | null;
|
|
572
388
|
params?: unknown;
|
|
573
389
|
}>, "many">;
|
|
574
390
|
}, "strip", z.ZodTypeAny, {
|
|
575
391
|
name: string;
|
|
576
392
|
foreignRef: string;
|
|
577
|
-
provider: string;
|
|
578
|
-
providerMetadata: {} & {
|
|
579
|
-
[k: string]: unknown;
|
|
580
|
-
};
|
|
581
393
|
presets: {
|
|
582
394
|
name: string;
|
|
583
395
|
id: string;
|
|
584
|
-
isDefault: boolean;
|
|
585
|
-
assignedRef: string | null;
|
|
586
396
|
createdOn: string;
|
|
587
397
|
lastModifiedOn: string;
|
|
398
|
+
isDefault: boolean;
|
|
399
|
+
assignedRef: string | null;
|
|
588
400
|
params?: unknown;
|
|
589
401
|
}[];
|
|
590
|
-
}, {
|
|
591
|
-
name: string;
|
|
592
|
-
foreignRef: string;
|
|
593
402
|
provider: string;
|
|
594
403
|
providerMetadata: {} & {
|
|
595
404
|
[k: string]: unknown;
|
|
596
405
|
};
|
|
406
|
+
}, {
|
|
407
|
+
name: string;
|
|
408
|
+
foreignRef: string;
|
|
597
409
|
presets: {
|
|
598
410
|
name: string;
|
|
599
411
|
id: string;
|
|
600
|
-
isDefault: boolean;
|
|
601
|
-
assignedRef: string | null;
|
|
602
412
|
createdOn: string;
|
|
603
413
|
lastModifiedOn: string;
|
|
414
|
+
isDefault: boolean;
|
|
415
|
+
assignedRef: string | null;
|
|
604
416
|
params?: unknown;
|
|
605
417
|
}[];
|
|
418
|
+
provider: string;
|
|
419
|
+
providerMetadata: {} & {
|
|
420
|
+
[k: string]: unknown;
|
|
421
|
+
};
|
|
606
422
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
607
423
|
type: z.ZodLiteral<"alarm">;
|
|
608
424
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -847,22 +663,23 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
847
663
|
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
848
664
|
}, "strip", z.ZodTypeAny, {
|
|
849
665
|
kind: "command";
|
|
666
|
+
command: string;
|
|
850
667
|
device: {
|
|
851
668
|
name: string;
|
|
852
669
|
foreignRef: string;
|
|
853
|
-
provider: string;
|
|
854
|
-
providerMetadata: {} & {
|
|
855
|
-
[k: string]: unknown;
|
|
856
|
-
};
|
|
857
670
|
presets: {
|
|
858
671
|
name: string;
|
|
859
672
|
id: string;
|
|
860
|
-
isDefault: boolean;
|
|
861
|
-
assignedRef: string | null;
|
|
862
673
|
createdOn: string;
|
|
863
674
|
lastModifiedOn: string;
|
|
675
|
+
isDefault: boolean;
|
|
676
|
+
assignedRef: string | null;
|
|
864
677
|
params?: unknown;
|
|
865
678
|
}[];
|
|
679
|
+
provider: string;
|
|
680
|
+
providerMetadata: {} & {
|
|
681
|
+
[k: string]: unknown;
|
|
682
|
+
};
|
|
866
683
|
} & ({
|
|
867
684
|
type: "alarm";
|
|
868
685
|
} | {
|
|
@@ -937,27 +754,27 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
937
754
|
} | {
|
|
938
755
|
type: "system";
|
|
939
756
|
});
|
|
940
|
-
command: string;
|
|
941
757
|
params?: Record<string, unknown> | undefined;
|
|
942
758
|
batchId?: string | undefined;
|
|
943
759
|
}, {
|
|
944
760
|
kind: "command";
|
|
761
|
+
command: string;
|
|
945
762
|
device: {
|
|
946
763
|
name: string;
|
|
947
764
|
foreignRef: string;
|
|
948
|
-
provider: string;
|
|
949
|
-
providerMetadata: {} & {
|
|
950
|
-
[k: string]: unknown;
|
|
951
|
-
};
|
|
952
765
|
presets: {
|
|
953
766
|
name: string;
|
|
954
767
|
id: string;
|
|
955
|
-
isDefault: boolean;
|
|
956
|
-
assignedRef: string | null;
|
|
957
768
|
createdOn: string;
|
|
958
769
|
lastModifiedOn: string;
|
|
770
|
+
isDefault: boolean;
|
|
771
|
+
assignedRef: string | null;
|
|
959
772
|
params?: unknown;
|
|
960
773
|
}[];
|
|
774
|
+
provider: string;
|
|
775
|
+
providerMetadata: {} & {
|
|
776
|
+
[k: string]: unknown;
|
|
777
|
+
};
|
|
961
778
|
} & ({
|
|
962
779
|
type: "alarm";
|
|
963
780
|
} | {
|
|
@@ -1032,7 +849,6 @@ export declare const sRunCommandRq: z.ZodObject<{
|
|
|
1032
849
|
} | {
|
|
1033
850
|
type: "system";
|
|
1034
851
|
});
|
|
1035
|
-
command: string;
|
|
1036
852
|
params?: Record<string, unknown> | undefined;
|
|
1037
853
|
batchId?: string | undefined;
|
|
1038
854
|
}>;
|
|
@@ -1066,52 +882,52 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1066
882
|
}, "strip", z.ZodTypeAny, {
|
|
1067
883
|
name: string;
|
|
1068
884
|
id: string;
|
|
1069
|
-
isDefault: boolean;
|
|
1070
|
-
assignedRef: string | null;
|
|
1071
885
|
createdOn: string;
|
|
1072
886
|
lastModifiedOn: string;
|
|
887
|
+
isDefault: boolean;
|
|
888
|
+
assignedRef: string | null;
|
|
1073
889
|
params?: unknown;
|
|
1074
890
|
}, {
|
|
1075
891
|
name: string;
|
|
1076
892
|
id: string;
|
|
1077
|
-
isDefault: boolean;
|
|
1078
|
-
assignedRef: string | null;
|
|
1079
893
|
createdOn: string;
|
|
1080
894
|
lastModifiedOn: string;
|
|
895
|
+
isDefault: boolean;
|
|
896
|
+
assignedRef: string | null;
|
|
1081
897
|
params?: unknown;
|
|
1082
898
|
}>, "many">;
|
|
1083
899
|
}, "strip", z.ZodTypeAny, {
|
|
1084
900
|
name: string;
|
|
1085
901
|
foreignRef: string;
|
|
1086
|
-
provider: string;
|
|
1087
|
-
providerMetadata: {} & {
|
|
1088
|
-
[k: string]: unknown;
|
|
1089
|
-
};
|
|
1090
902
|
presets: {
|
|
1091
903
|
name: string;
|
|
1092
904
|
id: string;
|
|
1093
|
-
isDefault: boolean;
|
|
1094
|
-
assignedRef: string | null;
|
|
1095
905
|
createdOn: string;
|
|
1096
906
|
lastModifiedOn: string;
|
|
907
|
+
isDefault: boolean;
|
|
908
|
+
assignedRef: string | null;
|
|
1097
909
|
params?: unknown;
|
|
1098
910
|
}[];
|
|
1099
|
-
}, {
|
|
1100
|
-
name: string;
|
|
1101
|
-
foreignRef: string;
|
|
1102
911
|
provider: string;
|
|
1103
912
|
providerMetadata: {} & {
|
|
1104
913
|
[k: string]: unknown;
|
|
1105
914
|
};
|
|
915
|
+
}, {
|
|
916
|
+
name: string;
|
|
917
|
+
foreignRef: string;
|
|
1106
918
|
presets: {
|
|
1107
919
|
name: string;
|
|
1108
920
|
id: string;
|
|
1109
|
-
isDefault: boolean;
|
|
1110
|
-
assignedRef: string | null;
|
|
1111
921
|
createdOn: string;
|
|
1112
922
|
lastModifiedOn: string;
|
|
923
|
+
isDefault: boolean;
|
|
924
|
+
assignedRef: string | null;
|
|
1113
925
|
params?: unknown;
|
|
1114
926
|
}[];
|
|
927
|
+
provider: string;
|
|
928
|
+
providerMetadata: {} & {
|
|
929
|
+
[k: string]: unknown;
|
|
930
|
+
};
|
|
1115
931
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1116
932
|
type: z.ZodLiteral<"alarm">;
|
|
1117
933
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1357,19 +1173,19 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1357
1173
|
device: {
|
|
1358
1174
|
name: string;
|
|
1359
1175
|
foreignRef: string;
|
|
1360
|
-
provider: string;
|
|
1361
|
-
providerMetadata: {} & {
|
|
1362
|
-
[k: string]: unknown;
|
|
1363
|
-
};
|
|
1364
1176
|
presets: {
|
|
1365
1177
|
name: string;
|
|
1366
1178
|
id: string;
|
|
1367
|
-
isDefault: boolean;
|
|
1368
|
-
assignedRef: string | null;
|
|
1369
1179
|
createdOn: string;
|
|
1370
1180
|
lastModifiedOn: string;
|
|
1181
|
+
isDefault: boolean;
|
|
1182
|
+
assignedRef: string | null;
|
|
1371
1183
|
params?: unknown;
|
|
1372
1184
|
}[];
|
|
1185
|
+
provider: string;
|
|
1186
|
+
providerMetadata: {} & {
|
|
1187
|
+
[k: string]: unknown;
|
|
1188
|
+
};
|
|
1373
1189
|
} & ({
|
|
1374
1190
|
type: "alarm";
|
|
1375
1191
|
} | {
|
|
@@ -1451,19 +1267,19 @@ export declare const sQueryRq: z.ZodObject<{
|
|
|
1451
1267
|
device: {
|
|
1452
1268
|
name: string;
|
|
1453
1269
|
foreignRef: string;
|
|
1454
|
-
provider: string;
|
|
1455
|
-
providerMetadata: {} & {
|
|
1456
|
-
[k: string]: unknown;
|
|
1457
|
-
};
|
|
1458
1270
|
presets: {
|
|
1459
1271
|
name: string;
|
|
1460
1272
|
id: string;
|
|
1461
|
-
isDefault: boolean;
|
|
1462
|
-
assignedRef: string | null;
|
|
1463
1273
|
createdOn: string;
|
|
1464
1274
|
lastModifiedOn: string;
|
|
1275
|
+
isDefault: boolean;
|
|
1276
|
+
assignedRef: string | null;
|
|
1465
1277
|
params?: unknown;
|
|
1466
1278
|
}[];
|
|
1279
|
+
provider: string;
|
|
1280
|
+
providerMetadata: {} & {
|
|
1281
|
+
[k: string]: unknown;
|
|
1282
|
+
};
|
|
1467
1283
|
} & ({
|
|
1468
1284
|
type: "alarm";
|
|
1469
1285
|
} | {
|
|
@@ -1577,52 +1393,52 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1577
1393
|
}, "strip", z.ZodTypeAny, {
|
|
1578
1394
|
name: string;
|
|
1579
1395
|
id: string;
|
|
1580
|
-
isDefault: boolean;
|
|
1581
|
-
assignedRef: string | null;
|
|
1582
1396
|
createdOn: string;
|
|
1583
1397
|
lastModifiedOn: string;
|
|
1398
|
+
isDefault: boolean;
|
|
1399
|
+
assignedRef: string | null;
|
|
1584
1400
|
params?: unknown;
|
|
1585
1401
|
}, {
|
|
1586
1402
|
name: string;
|
|
1587
1403
|
id: string;
|
|
1588
|
-
isDefault: boolean;
|
|
1589
|
-
assignedRef: string | null;
|
|
1590
1404
|
createdOn: string;
|
|
1591
1405
|
lastModifiedOn: string;
|
|
1406
|
+
isDefault: boolean;
|
|
1407
|
+
assignedRef: string | null;
|
|
1592
1408
|
params?: unknown;
|
|
1593
1409
|
}>, "many">;
|
|
1594
1410
|
}, "strip", z.ZodTypeAny, {
|
|
1595
1411
|
name: string;
|
|
1596
1412
|
foreignRef: string;
|
|
1597
|
-
provider: string;
|
|
1598
|
-
providerMetadata: {} & {
|
|
1599
|
-
[k: string]: unknown;
|
|
1600
|
-
};
|
|
1601
1413
|
presets: {
|
|
1602
1414
|
name: string;
|
|
1603
1415
|
id: string;
|
|
1604
|
-
isDefault: boolean;
|
|
1605
|
-
assignedRef: string | null;
|
|
1606
1416
|
createdOn: string;
|
|
1607
1417
|
lastModifiedOn: string;
|
|
1418
|
+
isDefault: boolean;
|
|
1419
|
+
assignedRef: string | null;
|
|
1608
1420
|
params?: unknown;
|
|
1609
1421
|
}[];
|
|
1610
|
-
}, {
|
|
1611
|
-
name: string;
|
|
1612
|
-
foreignRef: string;
|
|
1613
1422
|
provider: string;
|
|
1614
1423
|
providerMetadata: {} & {
|
|
1615
1424
|
[k: string]: unknown;
|
|
1616
1425
|
};
|
|
1426
|
+
}, {
|
|
1427
|
+
name: string;
|
|
1428
|
+
foreignRef: string;
|
|
1617
1429
|
presets: {
|
|
1618
1430
|
name: string;
|
|
1619
1431
|
id: string;
|
|
1620
|
-
isDefault: boolean;
|
|
1621
|
-
assignedRef: string | null;
|
|
1622
1432
|
createdOn: string;
|
|
1623
1433
|
lastModifiedOn: string;
|
|
1434
|
+
isDefault: boolean;
|
|
1435
|
+
assignedRef: string | null;
|
|
1624
1436
|
params?: unknown;
|
|
1625
1437
|
}[];
|
|
1438
|
+
provider: string;
|
|
1439
|
+
providerMetadata: {} & {
|
|
1440
|
+
[k: string]: unknown;
|
|
1441
|
+
};
|
|
1626
1442
|
}>, z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
1627
1443
|
type: z.ZodLiteral<"alarm">;
|
|
1628
1444
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1870,19 +1686,19 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1870
1686
|
device: {
|
|
1871
1687
|
name: string;
|
|
1872
1688
|
foreignRef: string;
|
|
1873
|
-
provider: string;
|
|
1874
|
-
providerMetadata: {} & {
|
|
1875
|
-
[k: string]: unknown;
|
|
1876
|
-
};
|
|
1877
1689
|
presets: {
|
|
1878
1690
|
name: string;
|
|
1879
1691
|
id: string;
|
|
1880
|
-
isDefault: boolean;
|
|
1881
|
-
assignedRef: string | null;
|
|
1882
1692
|
createdOn: string;
|
|
1883
1693
|
lastModifiedOn: string;
|
|
1694
|
+
isDefault: boolean;
|
|
1695
|
+
assignedRef: string | null;
|
|
1884
1696
|
params?: unknown;
|
|
1885
1697
|
}[];
|
|
1698
|
+
provider: string;
|
|
1699
|
+
providerMetadata: {} & {
|
|
1700
|
+
[k: string]: unknown;
|
|
1701
|
+
};
|
|
1886
1702
|
} & ({
|
|
1887
1703
|
type: "alarm";
|
|
1888
1704
|
} | {
|
|
@@ -1965,19 +1781,19 @@ export declare const sPushFile: z.ZodObject<{
|
|
|
1965
1781
|
device: {
|
|
1966
1782
|
name: string;
|
|
1967
1783
|
foreignRef: string;
|
|
1968
|
-
provider: string;
|
|
1969
|
-
providerMetadata: {} & {
|
|
1970
|
-
[k: string]: unknown;
|
|
1971
|
-
};
|
|
1972
1784
|
presets: {
|
|
1973
1785
|
name: string;
|
|
1974
1786
|
id: string;
|
|
1975
|
-
isDefault: boolean;
|
|
1976
|
-
assignedRef: string | null;
|
|
1977
1787
|
createdOn: string;
|
|
1978
1788
|
lastModifiedOn: string;
|
|
1789
|
+
isDefault: boolean;
|
|
1790
|
+
assignedRef: string | null;
|
|
1979
1791
|
params?: unknown;
|
|
1980
1792
|
}[];
|
|
1793
|
+
provider: string;
|
|
1794
|
+
providerMetadata: {} & {
|
|
1795
|
+
[k: string]: unknown;
|
|
1796
|
+
};
|
|
1981
1797
|
} & ({
|
|
1982
1798
|
type: "alarm";
|
|
1983
1799
|
} | {
|
|
@@ -2659,8 +2475,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2659
2475
|
}>;
|
|
2660
2476
|
}, "strip", z.ZodTypeAny, {
|
|
2661
2477
|
kind: "merge";
|
|
2662
|
-
objectId: string;
|
|
2663
2478
|
objectKind: "accessRule";
|
|
2479
|
+
objectId: string;
|
|
2664
2480
|
original: null;
|
|
2665
2481
|
props: {
|
|
2666
2482
|
displayName: string;
|
|
@@ -2676,8 +2492,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2676
2492
|
};
|
|
2677
2493
|
}, {
|
|
2678
2494
|
kind: "merge";
|
|
2679
|
-
objectId: string;
|
|
2680
2495
|
objectKind: "accessRule";
|
|
2496
|
+
objectId: string;
|
|
2681
2497
|
original: null;
|
|
2682
2498
|
props: {
|
|
2683
2499
|
displayName: string;
|
|
@@ -2789,8 +2605,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2789
2605
|
}>;
|
|
2790
2606
|
}, "strip", z.ZodTypeAny, {
|
|
2791
2607
|
kind: "merge";
|
|
2792
|
-
objectId: string;
|
|
2793
2608
|
objectKind: "accessRule";
|
|
2609
|
+
objectId: string;
|
|
2794
2610
|
original: {
|
|
2795
2611
|
displayName: string;
|
|
2796
2612
|
appliedTo: string[];
|
|
@@ -2817,8 +2633,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2817
2633
|
};
|
|
2818
2634
|
}, {
|
|
2819
2635
|
kind: "merge";
|
|
2820
|
-
objectId: string;
|
|
2821
2636
|
objectKind: "accessRule";
|
|
2637
|
+
objectId: string;
|
|
2822
2638
|
original: {
|
|
2823
2639
|
displayName: string;
|
|
2824
2640
|
appliedTo: string[];
|
|
@@ -2972,8 +2788,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
2972
2788
|
}>;
|
|
2973
2789
|
}, "strip", z.ZodTypeAny, {
|
|
2974
2790
|
kind: "merge";
|
|
2975
|
-
objectId: string;
|
|
2976
2791
|
objectKind: "schedule";
|
|
2792
|
+
objectId: string;
|
|
2977
2793
|
original: null;
|
|
2978
2794
|
props: {
|
|
2979
2795
|
include: {
|
|
@@ -3001,8 +2817,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3001
2817
|
};
|
|
3002
2818
|
}, {
|
|
3003
2819
|
kind: "merge";
|
|
3004
|
-
objectId: string;
|
|
3005
2820
|
objectKind: "schedule";
|
|
2821
|
+
objectId: string;
|
|
3006
2822
|
original: null;
|
|
3007
2823
|
props: {
|
|
3008
2824
|
include: {
|
|
@@ -3278,8 +3094,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3278
3094
|
}>;
|
|
3279
3095
|
}, "strip", z.ZodTypeAny, {
|
|
3280
3096
|
kind: "merge";
|
|
3281
|
-
objectId: string;
|
|
3282
3097
|
objectKind: "schedule";
|
|
3098
|
+
objectId: string;
|
|
3283
3099
|
original: {
|
|
3284
3100
|
include: {
|
|
3285
3101
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -3330,8 +3146,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3330
3146
|
};
|
|
3331
3147
|
}, {
|
|
3332
3148
|
kind: "merge";
|
|
3333
|
-
objectId: string;
|
|
3334
3149
|
objectKind: "schedule";
|
|
3150
|
+
objectId: string;
|
|
3335
3151
|
original: {
|
|
3336
3152
|
include: {
|
|
3337
3153
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -3416,10 +3232,10 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3416
3232
|
firstName: string;
|
|
3417
3233
|
lastName: string;
|
|
3418
3234
|
avatarId: string | null;
|
|
3419
|
-
validFrom: string | null;
|
|
3420
|
-
validTo: string | null;
|
|
3421
3235
|
accessSuspended: boolean;
|
|
3422
3236
|
staffMember: boolean;
|
|
3237
|
+
validFrom: string | null;
|
|
3238
|
+
validTo: string | null;
|
|
3423
3239
|
credentials: {
|
|
3424
3240
|
type: "card" | "pin" | "fingerprint";
|
|
3425
3241
|
value: string | Record<string, unknown>;
|
|
@@ -3433,10 +3249,10 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3433
3249
|
firstName: string;
|
|
3434
3250
|
lastName: string;
|
|
3435
3251
|
avatarId: string | null;
|
|
3436
|
-
validFrom: string | null;
|
|
3437
|
-
validTo: string | null;
|
|
3438
3252
|
accessSuspended: boolean;
|
|
3439
3253
|
staffMember: boolean;
|
|
3254
|
+
validFrom: string | null;
|
|
3255
|
+
validTo: string | null;
|
|
3440
3256
|
credentials: {
|
|
3441
3257
|
type: "card" | "pin" | "fingerprint";
|
|
3442
3258
|
value: string | Record<string, unknown>;
|
|
@@ -3447,8 +3263,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3447
3263
|
}>;
|
|
3448
3264
|
}, "strip", z.ZodTypeAny, {
|
|
3449
3265
|
kind: "merge";
|
|
3450
|
-
objectId: string;
|
|
3451
3266
|
objectKind: "person";
|
|
3267
|
+
objectId: string;
|
|
3452
3268
|
original: null;
|
|
3453
3269
|
props: {
|
|
3454
3270
|
type: string;
|
|
@@ -3456,10 +3272,10 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3456
3272
|
firstName: string;
|
|
3457
3273
|
lastName: string;
|
|
3458
3274
|
avatarId: string | null;
|
|
3459
|
-
validFrom: string | null;
|
|
3460
|
-
validTo: string | null;
|
|
3461
3275
|
accessSuspended: boolean;
|
|
3462
3276
|
staffMember: boolean;
|
|
3277
|
+
validFrom: string | null;
|
|
3278
|
+
validTo: string | null;
|
|
3463
3279
|
credentials: {
|
|
3464
3280
|
type: "card" | "pin" | "fingerprint";
|
|
3465
3281
|
value: string | Record<string, unknown>;
|
|
@@ -3470,8 +3286,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3470
3286
|
};
|
|
3471
3287
|
}, {
|
|
3472
3288
|
kind: "merge";
|
|
3473
|
-
objectId: string;
|
|
3474
3289
|
objectKind: "person";
|
|
3290
|
+
objectId: string;
|
|
3475
3291
|
original: null;
|
|
3476
3292
|
props: {
|
|
3477
3293
|
type: string;
|
|
@@ -3479,10 +3295,10 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3479
3295
|
firstName: string;
|
|
3480
3296
|
lastName: string;
|
|
3481
3297
|
avatarId: string | null;
|
|
3482
|
-
validFrom: string | null;
|
|
3483
|
-
validTo: string | null;
|
|
3484
3298
|
accessSuspended: boolean;
|
|
3485
3299
|
staffMember: boolean;
|
|
3300
|
+
validFrom: string | null;
|
|
3301
|
+
validTo: string | null;
|
|
3486
3302
|
credentials: {
|
|
3487
3303
|
type: "card" | "pin" | "fingerprint";
|
|
3488
3304
|
value: string | Record<string, unknown>;
|
|
@@ -3526,10 +3342,10 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3526
3342
|
firstName: string;
|
|
3527
3343
|
lastName: string;
|
|
3528
3344
|
avatarId: string | null;
|
|
3529
|
-
validFrom: string | null;
|
|
3530
|
-
validTo: string | null;
|
|
3531
3345
|
accessSuspended: boolean;
|
|
3532
3346
|
staffMember: boolean;
|
|
3347
|
+
validFrom: string | null;
|
|
3348
|
+
validTo: string | null;
|
|
3533
3349
|
credentials: {
|
|
3534
3350
|
type: "card" | "pin" | "fingerprint";
|
|
3535
3351
|
value: string | Record<string, unknown>;
|
|
@@ -3543,10 +3359,10 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3543
3359
|
firstName: string;
|
|
3544
3360
|
lastName: string;
|
|
3545
3361
|
avatarId: string | null;
|
|
3546
|
-
validFrom: string | null;
|
|
3547
|
-
validTo: string | null;
|
|
3548
3362
|
accessSuspended: boolean;
|
|
3549
3363
|
staffMember: boolean;
|
|
3364
|
+
validFrom: string | null;
|
|
3365
|
+
validTo: string | null;
|
|
3550
3366
|
credentials: {
|
|
3551
3367
|
type: "card" | "pin" | "fingerprint";
|
|
3552
3368
|
value: string | Record<string, unknown>;
|
|
@@ -3586,10 +3402,10 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3586
3402
|
firstName?: string | undefined;
|
|
3587
3403
|
lastName?: string | undefined;
|
|
3588
3404
|
avatarId?: string | null | undefined;
|
|
3589
|
-
validFrom?: string | null | undefined;
|
|
3590
|
-
validTo?: string | null | undefined;
|
|
3591
3405
|
accessSuspended?: boolean | undefined;
|
|
3592
3406
|
staffMember?: boolean | undefined;
|
|
3407
|
+
validFrom?: string | null | undefined;
|
|
3408
|
+
validTo?: string | null | undefined;
|
|
3593
3409
|
credentials?: {
|
|
3594
3410
|
type: "card" | "pin" | "fingerprint";
|
|
3595
3411
|
value: string | Record<string, unknown>;
|
|
@@ -3603,10 +3419,10 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3603
3419
|
firstName?: string | undefined;
|
|
3604
3420
|
lastName?: string | undefined;
|
|
3605
3421
|
avatarId?: string | null | undefined;
|
|
3606
|
-
validFrom?: string | null | undefined;
|
|
3607
|
-
validTo?: string | null | undefined;
|
|
3608
3422
|
accessSuspended?: boolean | undefined;
|
|
3609
3423
|
staffMember?: boolean | undefined;
|
|
3424
|
+
validFrom?: string | null | undefined;
|
|
3425
|
+
validTo?: string | null | undefined;
|
|
3610
3426
|
credentials?: {
|
|
3611
3427
|
type: "card" | "pin" | "fingerprint";
|
|
3612
3428
|
value: string | Record<string, unknown>;
|
|
@@ -3617,18 +3433,18 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3617
3433
|
}>;
|
|
3618
3434
|
}, "strip", z.ZodTypeAny, {
|
|
3619
3435
|
kind: "merge";
|
|
3620
|
-
objectId: string;
|
|
3621
3436
|
objectKind: "person";
|
|
3437
|
+
objectId: string;
|
|
3622
3438
|
original: {
|
|
3623
3439
|
type: string;
|
|
3624
3440
|
position: string | null;
|
|
3625
3441
|
firstName: string;
|
|
3626
3442
|
lastName: string;
|
|
3627
3443
|
avatarId: string | null;
|
|
3628
|
-
validFrom: string | null;
|
|
3629
|
-
validTo: string | null;
|
|
3630
3444
|
accessSuspended: boolean;
|
|
3631
3445
|
staffMember: boolean;
|
|
3446
|
+
validFrom: string | null;
|
|
3447
|
+
validTo: string | null;
|
|
3632
3448
|
credentials: {
|
|
3633
3449
|
type: "card" | "pin" | "fingerprint";
|
|
3634
3450
|
value: string | Record<string, unknown>;
|
|
@@ -3643,10 +3459,10 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3643
3459
|
firstName?: string | undefined;
|
|
3644
3460
|
lastName?: string | undefined;
|
|
3645
3461
|
avatarId?: string | null | undefined;
|
|
3646
|
-
validFrom?: string | null | undefined;
|
|
3647
|
-
validTo?: string | null | undefined;
|
|
3648
3462
|
accessSuspended?: boolean | undefined;
|
|
3649
3463
|
staffMember?: boolean | undefined;
|
|
3464
|
+
validFrom?: string | null | undefined;
|
|
3465
|
+
validTo?: string | null | undefined;
|
|
3650
3466
|
credentials?: {
|
|
3651
3467
|
type: "card" | "pin" | "fingerprint";
|
|
3652
3468
|
value: string | Record<string, unknown>;
|
|
@@ -3657,18 +3473,18 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3657
3473
|
};
|
|
3658
3474
|
}, {
|
|
3659
3475
|
kind: "merge";
|
|
3660
|
-
objectId: string;
|
|
3661
3476
|
objectKind: "person";
|
|
3477
|
+
objectId: string;
|
|
3662
3478
|
original: {
|
|
3663
3479
|
type: string;
|
|
3664
3480
|
position: string | null;
|
|
3665
3481
|
firstName: string;
|
|
3666
3482
|
lastName: string;
|
|
3667
3483
|
avatarId: string | null;
|
|
3668
|
-
validFrom: string | null;
|
|
3669
|
-
validTo: string | null;
|
|
3670
3484
|
accessSuspended: boolean;
|
|
3671
3485
|
staffMember: boolean;
|
|
3486
|
+
validFrom: string | null;
|
|
3487
|
+
validTo: string | null;
|
|
3672
3488
|
credentials: {
|
|
3673
3489
|
type: "card" | "pin" | "fingerprint";
|
|
3674
3490
|
value: string | Record<string, unknown>;
|
|
@@ -3683,10 +3499,10 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3683
3499
|
firstName?: string | undefined;
|
|
3684
3500
|
lastName?: string | undefined;
|
|
3685
3501
|
avatarId?: string | null | undefined;
|
|
3686
|
-
validFrom?: string | null | undefined;
|
|
3687
|
-
validTo?: string | null | undefined;
|
|
3688
3502
|
accessSuspended?: boolean | undefined;
|
|
3689
3503
|
staffMember?: boolean | undefined;
|
|
3504
|
+
validFrom?: string | null | undefined;
|
|
3505
|
+
validTo?: string | null | undefined;
|
|
3690
3506
|
credentials?: {
|
|
3691
3507
|
type: "card" | "pin" | "fingerprint";
|
|
3692
3508
|
value: string | Record<string, unknown>;
|
|
@@ -3712,8 +3528,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3712
3528
|
}>;
|
|
3713
3529
|
}, "strip", z.ZodTypeAny, {
|
|
3714
3530
|
kind: "merge";
|
|
3715
|
-
objectId: string;
|
|
3716
3531
|
objectKind: "zone";
|
|
3532
|
+
objectId: string;
|
|
3717
3533
|
original: null;
|
|
3718
3534
|
props: {
|
|
3719
3535
|
displayName: string;
|
|
@@ -3721,8 +3537,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3721
3537
|
};
|
|
3722
3538
|
}, {
|
|
3723
3539
|
kind: "merge";
|
|
3724
|
-
objectId: string;
|
|
3725
3540
|
objectKind: "zone";
|
|
3541
|
+
objectId: string;
|
|
3726
3542
|
original: null;
|
|
3727
3543
|
props: {
|
|
3728
3544
|
displayName: string;
|
|
@@ -3754,8 +3570,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3754
3570
|
}>;
|
|
3755
3571
|
}, "strip", z.ZodTypeAny, {
|
|
3756
3572
|
kind: "merge";
|
|
3757
|
-
objectId: string;
|
|
3758
3573
|
objectKind: "zone";
|
|
3574
|
+
objectId: string;
|
|
3759
3575
|
original: {
|
|
3760
3576
|
displayName: string;
|
|
3761
3577
|
devices: string[];
|
|
@@ -3766,8 +3582,8 @@ export declare const sObjectMerge: z.ZodUnion<[z.ZodObject<{
|
|
|
3766
3582
|
};
|
|
3767
3583
|
}, {
|
|
3768
3584
|
kind: "merge";
|
|
3769
|
-
objectId: string;
|
|
3770
3585
|
objectKind: "zone";
|
|
3586
|
+
objectId: string;
|
|
3771
3587
|
original: {
|
|
3772
3588
|
displayName: string;
|
|
3773
3589
|
devices: string[];
|
|
@@ -3829,8 +3645,8 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
3829
3645
|
}>;
|
|
3830
3646
|
}, "strip", z.ZodTypeAny, {
|
|
3831
3647
|
kind: "delete";
|
|
3832
|
-
objectId: string;
|
|
3833
3648
|
objectKind: "accessRule";
|
|
3649
|
+
objectId: string;
|
|
3834
3650
|
original: {
|
|
3835
3651
|
displayName: string;
|
|
3836
3652
|
appliedTo: string[];
|
|
@@ -3845,8 +3661,8 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
3845
3661
|
};
|
|
3846
3662
|
}, {
|
|
3847
3663
|
kind: "delete";
|
|
3848
|
-
objectId: string;
|
|
3849
3664
|
objectKind: "accessRule";
|
|
3665
|
+
objectId: string;
|
|
3850
3666
|
original: {
|
|
3851
3667
|
displayName: string;
|
|
3852
3668
|
appliedTo: string[];
|
|
@@ -3987,8 +3803,8 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
3987
3803
|
}>;
|
|
3988
3804
|
}, "strip", z.ZodTypeAny, {
|
|
3989
3805
|
kind: "delete";
|
|
3990
|
-
objectId: string;
|
|
3991
3806
|
objectKind: "schedule";
|
|
3807
|
+
objectId: string;
|
|
3992
3808
|
original: {
|
|
3993
3809
|
include: {
|
|
3994
3810
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -4015,8 +3831,8 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
4015
3831
|
};
|
|
4016
3832
|
}, {
|
|
4017
3833
|
kind: "delete";
|
|
4018
|
-
objectId: string;
|
|
4019
3834
|
objectKind: "schedule";
|
|
3835
|
+
objectId: string;
|
|
4020
3836
|
original: {
|
|
4021
3837
|
include: {
|
|
4022
3838
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -4076,10 +3892,10 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
4076
3892
|
firstName: string;
|
|
4077
3893
|
lastName: string;
|
|
4078
3894
|
avatarId: string | null;
|
|
4079
|
-
validFrom: string | null;
|
|
4080
|
-
validTo: string | null;
|
|
4081
3895
|
accessSuspended: boolean;
|
|
4082
3896
|
staffMember: boolean;
|
|
3897
|
+
validFrom: string | null;
|
|
3898
|
+
validTo: string | null;
|
|
4083
3899
|
credentials: {
|
|
4084
3900
|
type: "card" | "pin" | "fingerprint";
|
|
4085
3901
|
value: string | Record<string, unknown>;
|
|
@@ -4093,10 +3909,10 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
4093
3909
|
firstName: string;
|
|
4094
3910
|
lastName: string;
|
|
4095
3911
|
avatarId: string | null;
|
|
4096
|
-
validFrom: string | null;
|
|
4097
|
-
validTo: string | null;
|
|
4098
3912
|
accessSuspended: boolean;
|
|
4099
3913
|
staffMember: boolean;
|
|
3914
|
+
validFrom: string | null;
|
|
3915
|
+
validTo: string | null;
|
|
4100
3916
|
credentials: {
|
|
4101
3917
|
type: "card" | "pin" | "fingerprint";
|
|
4102
3918
|
value: string | Record<string, unknown>;
|
|
@@ -4107,18 +3923,18 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
4107
3923
|
}>;
|
|
4108
3924
|
}, "strip", z.ZodTypeAny, {
|
|
4109
3925
|
kind: "delete";
|
|
4110
|
-
objectId: string;
|
|
4111
3926
|
objectKind: "person";
|
|
3927
|
+
objectId: string;
|
|
4112
3928
|
original: {
|
|
4113
3929
|
type: string;
|
|
4114
3930
|
position: string | null;
|
|
4115
3931
|
firstName: string;
|
|
4116
3932
|
lastName: string;
|
|
4117
3933
|
avatarId: string | null;
|
|
4118
|
-
validFrom: string | null;
|
|
4119
|
-
validTo: string | null;
|
|
4120
3934
|
accessSuspended: boolean;
|
|
4121
3935
|
staffMember: boolean;
|
|
3936
|
+
validFrom: string | null;
|
|
3937
|
+
validTo: string | null;
|
|
4122
3938
|
credentials: {
|
|
4123
3939
|
type: "card" | "pin" | "fingerprint";
|
|
4124
3940
|
value: string | Record<string, unknown>;
|
|
@@ -4129,18 +3945,18 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
4129
3945
|
};
|
|
4130
3946
|
}, {
|
|
4131
3947
|
kind: "delete";
|
|
4132
|
-
objectId: string;
|
|
4133
3948
|
objectKind: "person";
|
|
3949
|
+
objectId: string;
|
|
4134
3950
|
original: {
|
|
4135
3951
|
type: string;
|
|
4136
3952
|
position: string | null;
|
|
4137
3953
|
firstName: string;
|
|
4138
3954
|
lastName: string;
|
|
4139
3955
|
avatarId: string | null;
|
|
4140
|
-
validFrom: string | null;
|
|
4141
|
-
validTo: string | null;
|
|
4142
3956
|
accessSuspended: boolean;
|
|
4143
3957
|
staffMember: boolean;
|
|
3958
|
+
validFrom: string | null;
|
|
3959
|
+
validTo: string | null;
|
|
4144
3960
|
credentials: {
|
|
4145
3961
|
type: "card" | "pin" | "fingerprint";
|
|
4146
3962
|
value: string | Record<string, unknown>;
|
|
@@ -4165,16 +3981,16 @@ export declare const sObjectDelete: z.ZodUnion<[z.ZodObject<{
|
|
|
4165
3981
|
}>;
|
|
4166
3982
|
}, "strip", z.ZodTypeAny, {
|
|
4167
3983
|
kind: "delete";
|
|
4168
|
-
objectId: string;
|
|
4169
3984
|
objectKind: "zone";
|
|
3985
|
+
objectId: string;
|
|
4170
3986
|
original: {
|
|
4171
3987
|
displayName: string;
|
|
4172
3988
|
devices: string[];
|
|
4173
3989
|
};
|
|
4174
3990
|
}, {
|
|
4175
3991
|
kind: "delete";
|
|
4176
|
-
objectId: string;
|
|
4177
3992
|
objectKind: "zone";
|
|
3993
|
+
objectId: string;
|
|
4178
3994
|
original: {
|
|
4179
3995
|
displayName: string;
|
|
4180
3996
|
devices: string[];
|
|
@@ -4233,8 +4049,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4233
4049
|
}>;
|
|
4234
4050
|
}, "strip", z.ZodTypeAny, {
|
|
4235
4051
|
kind: "merge";
|
|
4236
|
-
objectId: string;
|
|
4237
4052
|
objectKind: "accessRule";
|
|
4053
|
+
objectId: string;
|
|
4238
4054
|
original: null;
|
|
4239
4055
|
props: {
|
|
4240
4056
|
displayName: string;
|
|
@@ -4250,8 +4066,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4250
4066
|
};
|
|
4251
4067
|
}, {
|
|
4252
4068
|
kind: "merge";
|
|
4253
|
-
objectId: string;
|
|
4254
4069
|
objectKind: "accessRule";
|
|
4070
|
+
objectId: string;
|
|
4255
4071
|
original: null;
|
|
4256
4072
|
props: {
|
|
4257
4073
|
displayName: string;
|
|
@@ -4363,8 +4179,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4363
4179
|
}>;
|
|
4364
4180
|
}, "strip", z.ZodTypeAny, {
|
|
4365
4181
|
kind: "merge";
|
|
4366
|
-
objectId: string;
|
|
4367
4182
|
objectKind: "accessRule";
|
|
4183
|
+
objectId: string;
|
|
4368
4184
|
original: {
|
|
4369
4185
|
displayName: string;
|
|
4370
4186
|
appliedTo: string[];
|
|
@@ -4391,8 +4207,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4391
4207
|
};
|
|
4392
4208
|
}, {
|
|
4393
4209
|
kind: "merge";
|
|
4394
|
-
objectId: string;
|
|
4395
4210
|
objectKind: "accessRule";
|
|
4211
|
+
objectId: string;
|
|
4396
4212
|
original: {
|
|
4397
4213
|
displayName: string;
|
|
4398
4214
|
appliedTo: string[];
|
|
@@ -4546,8 +4362,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4546
4362
|
}>;
|
|
4547
4363
|
}, "strip", z.ZodTypeAny, {
|
|
4548
4364
|
kind: "merge";
|
|
4549
|
-
objectId: string;
|
|
4550
4365
|
objectKind: "schedule";
|
|
4366
|
+
objectId: string;
|
|
4551
4367
|
original: null;
|
|
4552
4368
|
props: {
|
|
4553
4369
|
include: {
|
|
@@ -4575,8 +4391,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4575
4391
|
};
|
|
4576
4392
|
}, {
|
|
4577
4393
|
kind: "merge";
|
|
4578
|
-
objectId: string;
|
|
4579
4394
|
objectKind: "schedule";
|
|
4395
|
+
objectId: string;
|
|
4580
4396
|
original: null;
|
|
4581
4397
|
props: {
|
|
4582
4398
|
include: {
|
|
@@ -4852,8 +4668,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4852
4668
|
}>;
|
|
4853
4669
|
}, "strip", z.ZodTypeAny, {
|
|
4854
4670
|
kind: "merge";
|
|
4855
|
-
objectId: string;
|
|
4856
4671
|
objectKind: "schedule";
|
|
4672
|
+
objectId: string;
|
|
4857
4673
|
original: {
|
|
4858
4674
|
include: {
|
|
4859
4675
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -4904,8 +4720,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4904
4720
|
};
|
|
4905
4721
|
}, {
|
|
4906
4722
|
kind: "merge";
|
|
4907
|
-
objectId: string;
|
|
4908
4723
|
objectKind: "schedule";
|
|
4724
|
+
objectId: string;
|
|
4909
4725
|
original: {
|
|
4910
4726
|
include: {
|
|
4911
4727
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -4990,10 +4806,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
4990
4806
|
firstName: string;
|
|
4991
4807
|
lastName: string;
|
|
4992
4808
|
avatarId: string | null;
|
|
4993
|
-
validFrom: string | null;
|
|
4994
|
-
validTo: string | null;
|
|
4995
4809
|
accessSuspended: boolean;
|
|
4996
4810
|
staffMember: boolean;
|
|
4811
|
+
validFrom: string | null;
|
|
4812
|
+
validTo: string | null;
|
|
4997
4813
|
credentials: {
|
|
4998
4814
|
type: "card" | "pin" | "fingerprint";
|
|
4999
4815
|
value: string | Record<string, unknown>;
|
|
@@ -5007,10 +4823,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5007
4823
|
firstName: string;
|
|
5008
4824
|
lastName: string;
|
|
5009
4825
|
avatarId: string | null;
|
|
5010
|
-
validFrom: string | null;
|
|
5011
|
-
validTo: string | null;
|
|
5012
4826
|
accessSuspended: boolean;
|
|
5013
4827
|
staffMember: boolean;
|
|
4828
|
+
validFrom: string | null;
|
|
4829
|
+
validTo: string | null;
|
|
5014
4830
|
credentials: {
|
|
5015
4831
|
type: "card" | "pin" | "fingerprint";
|
|
5016
4832
|
value: string | Record<string, unknown>;
|
|
@@ -5021,8 +4837,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5021
4837
|
}>;
|
|
5022
4838
|
}, "strip", z.ZodTypeAny, {
|
|
5023
4839
|
kind: "merge";
|
|
5024
|
-
objectId: string;
|
|
5025
4840
|
objectKind: "person";
|
|
4841
|
+
objectId: string;
|
|
5026
4842
|
original: null;
|
|
5027
4843
|
props: {
|
|
5028
4844
|
type: string;
|
|
@@ -5030,10 +4846,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5030
4846
|
firstName: string;
|
|
5031
4847
|
lastName: string;
|
|
5032
4848
|
avatarId: string | null;
|
|
5033
|
-
validFrom: string | null;
|
|
5034
|
-
validTo: string | null;
|
|
5035
4849
|
accessSuspended: boolean;
|
|
5036
4850
|
staffMember: boolean;
|
|
4851
|
+
validFrom: string | null;
|
|
4852
|
+
validTo: string | null;
|
|
5037
4853
|
credentials: {
|
|
5038
4854
|
type: "card" | "pin" | "fingerprint";
|
|
5039
4855
|
value: string | Record<string, unknown>;
|
|
@@ -5044,8 +4860,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5044
4860
|
};
|
|
5045
4861
|
}, {
|
|
5046
4862
|
kind: "merge";
|
|
5047
|
-
objectId: string;
|
|
5048
4863
|
objectKind: "person";
|
|
4864
|
+
objectId: string;
|
|
5049
4865
|
original: null;
|
|
5050
4866
|
props: {
|
|
5051
4867
|
type: string;
|
|
@@ -5053,10 +4869,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5053
4869
|
firstName: string;
|
|
5054
4870
|
lastName: string;
|
|
5055
4871
|
avatarId: string | null;
|
|
5056
|
-
validFrom: string | null;
|
|
5057
|
-
validTo: string | null;
|
|
5058
4872
|
accessSuspended: boolean;
|
|
5059
4873
|
staffMember: boolean;
|
|
4874
|
+
validFrom: string | null;
|
|
4875
|
+
validTo: string | null;
|
|
5060
4876
|
credentials: {
|
|
5061
4877
|
type: "card" | "pin" | "fingerprint";
|
|
5062
4878
|
value: string | Record<string, unknown>;
|
|
@@ -5100,10 +4916,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5100
4916
|
firstName: string;
|
|
5101
4917
|
lastName: string;
|
|
5102
4918
|
avatarId: string | null;
|
|
5103
|
-
validFrom: string | null;
|
|
5104
|
-
validTo: string | null;
|
|
5105
4919
|
accessSuspended: boolean;
|
|
5106
4920
|
staffMember: boolean;
|
|
4921
|
+
validFrom: string | null;
|
|
4922
|
+
validTo: string | null;
|
|
5107
4923
|
credentials: {
|
|
5108
4924
|
type: "card" | "pin" | "fingerprint";
|
|
5109
4925
|
value: string | Record<string, unknown>;
|
|
@@ -5117,10 +4933,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5117
4933
|
firstName: string;
|
|
5118
4934
|
lastName: string;
|
|
5119
4935
|
avatarId: string | null;
|
|
5120
|
-
validFrom: string | null;
|
|
5121
|
-
validTo: string | null;
|
|
5122
4936
|
accessSuspended: boolean;
|
|
5123
4937
|
staffMember: boolean;
|
|
4938
|
+
validFrom: string | null;
|
|
4939
|
+
validTo: string | null;
|
|
5124
4940
|
credentials: {
|
|
5125
4941
|
type: "card" | "pin" | "fingerprint";
|
|
5126
4942
|
value: string | Record<string, unknown>;
|
|
@@ -5160,10 +4976,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5160
4976
|
firstName?: string | undefined;
|
|
5161
4977
|
lastName?: string | undefined;
|
|
5162
4978
|
avatarId?: string | null | undefined;
|
|
5163
|
-
validFrom?: string | null | undefined;
|
|
5164
|
-
validTo?: string | null | undefined;
|
|
5165
4979
|
accessSuspended?: boolean | undefined;
|
|
5166
4980
|
staffMember?: boolean | undefined;
|
|
4981
|
+
validFrom?: string | null | undefined;
|
|
4982
|
+
validTo?: string | null | undefined;
|
|
5167
4983
|
credentials?: {
|
|
5168
4984
|
type: "card" | "pin" | "fingerprint";
|
|
5169
4985
|
value: string | Record<string, unknown>;
|
|
@@ -5177,10 +4993,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5177
4993
|
firstName?: string | undefined;
|
|
5178
4994
|
lastName?: string | undefined;
|
|
5179
4995
|
avatarId?: string | null | undefined;
|
|
5180
|
-
validFrom?: string | null | undefined;
|
|
5181
|
-
validTo?: string | null | undefined;
|
|
5182
4996
|
accessSuspended?: boolean | undefined;
|
|
5183
4997
|
staffMember?: boolean | undefined;
|
|
4998
|
+
validFrom?: string | null | undefined;
|
|
4999
|
+
validTo?: string | null | undefined;
|
|
5184
5000
|
credentials?: {
|
|
5185
5001
|
type: "card" | "pin" | "fingerprint";
|
|
5186
5002
|
value: string | Record<string, unknown>;
|
|
@@ -5191,18 +5007,18 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5191
5007
|
}>;
|
|
5192
5008
|
}, "strip", z.ZodTypeAny, {
|
|
5193
5009
|
kind: "merge";
|
|
5194
|
-
objectId: string;
|
|
5195
5010
|
objectKind: "person";
|
|
5011
|
+
objectId: string;
|
|
5196
5012
|
original: {
|
|
5197
5013
|
type: string;
|
|
5198
5014
|
position: string | null;
|
|
5199
5015
|
firstName: string;
|
|
5200
5016
|
lastName: string;
|
|
5201
5017
|
avatarId: string | null;
|
|
5202
|
-
validFrom: string | null;
|
|
5203
|
-
validTo: string | null;
|
|
5204
5018
|
accessSuspended: boolean;
|
|
5205
5019
|
staffMember: boolean;
|
|
5020
|
+
validFrom: string | null;
|
|
5021
|
+
validTo: string | null;
|
|
5206
5022
|
credentials: {
|
|
5207
5023
|
type: "card" | "pin" | "fingerprint";
|
|
5208
5024
|
value: string | Record<string, unknown>;
|
|
@@ -5217,10 +5033,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5217
5033
|
firstName?: string | undefined;
|
|
5218
5034
|
lastName?: string | undefined;
|
|
5219
5035
|
avatarId?: string | null | undefined;
|
|
5220
|
-
validFrom?: string | null | undefined;
|
|
5221
|
-
validTo?: string | null | undefined;
|
|
5222
5036
|
accessSuspended?: boolean | undefined;
|
|
5223
5037
|
staffMember?: boolean | undefined;
|
|
5038
|
+
validFrom?: string | null | undefined;
|
|
5039
|
+
validTo?: string | null | undefined;
|
|
5224
5040
|
credentials?: {
|
|
5225
5041
|
type: "card" | "pin" | "fingerprint";
|
|
5226
5042
|
value: string | Record<string, unknown>;
|
|
@@ -5231,18 +5047,18 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5231
5047
|
};
|
|
5232
5048
|
}, {
|
|
5233
5049
|
kind: "merge";
|
|
5234
|
-
objectId: string;
|
|
5235
5050
|
objectKind: "person";
|
|
5051
|
+
objectId: string;
|
|
5236
5052
|
original: {
|
|
5237
5053
|
type: string;
|
|
5238
5054
|
position: string | null;
|
|
5239
5055
|
firstName: string;
|
|
5240
5056
|
lastName: string;
|
|
5241
5057
|
avatarId: string | null;
|
|
5242
|
-
validFrom: string | null;
|
|
5243
|
-
validTo: string | null;
|
|
5244
5058
|
accessSuspended: boolean;
|
|
5245
5059
|
staffMember: boolean;
|
|
5060
|
+
validFrom: string | null;
|
|
5061
|
+
validTo: string | null;
|
|
5246
5062
|
credentials: {
|
|
5247
5063
|
type: "card" | "pin" | "fingerprint";
|
|
5248
5064
|
value: string | Record<string, unknown>;
|
|
@@ -5257,10 +5073,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5257
5073
|
firstName?: string | undefined;
|
|
5258
5074
|
lastName?: string | undefined;
|
|
5259
5075
|
avatarId?: string | null | undefined;
|
|
5260
|
-
validFrom?: string | null | undefined;
|
|
5261
|
-
validTo?: string | null | undefined;
|
|
5262
5076
|
accessSuspended?: boolean | undefined;
|
|
5263
5077
|
staffMember?: boolean | undefined;
|
|
5078
|
+
validFrom?: string | null | undefined;
|
|
5079
|
+
validTo?: string | null | undefined;
|
|
5264
5080
|
credentials?: {
|
|
5265
5081
|
type: "card" | "pin" | "fingerprint";
|
|
5266
5082
|
value: string | Record<string, unknown>;
|
|
@@ -5286,8 +5102,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5286
5102
|
}>;
|
|
5287
5103
|
}, "strip", z.ZodTypeAny, {
|
|
5288
5104
|
kind: "merge";
|
|
5289
|
-
objectId: string;
|
|
5290
5105
|
objectKind: "zone";
|
|
5106
|
+
objectId: string;
|
|
5291
5107
|
original: null;
|
|
5292
5108
|
props: {
|
|
5293
5109
|
displayName: string;
|
|
@@ -5295,8 +5111,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5295
5111
|
};
|
|
5296
5112
|
}, {
|
|
5297
5113
|
kind: "merge";
|
|
5298
|
-
objectId: string;
|
|
5299
5114
|
objectKind: "zone";
|
|
5115
|
+
objectId: string;
|
|
5300
5116
|
original: null;
|
|
5301
5117
|
props: {
|
|
5302
5118
|
displayName: string;
|
|
@@ -5328,8 +5144,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5328
5144
|
}>;
|
|
5329
5145
|
}, "strip", z.ZodTypeAny, {
|
|
5330
5146
|
kind: "merge";
|
|
5331
|
-
objectId: string;
|
|
5332
5147
|
objectKind: "zone";
|
|
5148
|
+
objectId: string;
|
|
5333
5149
|
original: {
|
|
5334
5150
|
displayName: string;
|
|
5335
5151
|
devices: string[];
|
|
@@ -5340,8 +5156,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5340
5156
|
};
|
|
5341
5157
|
}, {
|
|
5342
5158
|
kind: "merge";
|
|
5343
|
-
objectId: string;
|
|
5344
5159
|
objectKind: "zone";
|
|
5160
|
+
objectId: string;
|
|
5345
5161
|
original: {
|
|
5346
5162
|
displayName: string;
|
|
5347
5163
|
devices: string[];
|
|
@@ -5402,8 +5218,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5402
5218
|
}>;
|
|
5403
5219
|
}, "strip", z.ZodTypeAny, {
|
|
5404
5220
|
kind: "delete";
|
|
5405
|
-
objectId: string;
|
|
5406
5221
|
objectKind: "accessRule";
|
|
5222
|
+
objectId: string;
|
|
5407
5223
|
original: {
|
|
5408
5224
|
displayName: string;
|
|
5409
5225
|
appliedTo: string[];
|
|
@@ -5418,8 +5234,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5418
5234
|
};
|
|
5419
5235
|
}, {
|
|
5420
5236
|
kind: "delete";
|
|
5421
|
-
objectId: string;
|
|
5422
5237
|
objectKind: "accessRule";
|
|
5238
|
+
objectId: string;
|
|
5423
5239
|
original: {
|
|
5424
5240
|
displayName: string;
|
|
5425
5241
|
appliedTo: string[];
|
|
@@ -5560,8 +5376,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5560
5376
|
}>;
|
|
5561
5377
|
}, "strip", z.ZodTypeAny, {
|
|
5562
5378
|
kind: "delete";
|
|
5563
|
-
objectId: string;
|
|
5564
5379
|
objectKind: "schedule";
|
|
5380
|
+
objectId: string;
|
|
5565
5381
|
original: {
|
|
5566
5382
|
include: {
|
|
5567
5383
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -5588,8 +5404,8 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5588
5404
|
};
|
|
5589
5405
|
}, {
|
|
5590
5406
|
kind: "delete";
|
|
5591
|
-
objectId: string;
|
|
5592
5407
|
objectKind: "schedule";
|
|
5408
|
+
objectId: string;
|
|
5593
5409
|
original: {
|
|
5594
5410
|
include: {
|
|
5595
5411
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -5649,10 +5465,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5649
5465
|
firstName: string;
|
|
5650
5466
|
lastName: string;
|
|
5651
5467
|
avatarId: string | null;
|
|
5652
|
-
validFrom: string | null;
|
|
5653
|
-
validTo: string | null;
|
|
5654
5468
|
accessSuspended: boolean;
|
|
5655
5469
|
staffMember: boolean;
|
|
5470
|
+
validFrom: string | null;
|
|
5471
|
+
validTo: string | null;
|
|
5656
5472
|
credentials: {
|
|
5657
5473
|
type: "card" | "pin" | "fingerprint";
|
|
5658
5474
|
value: string | Record<string, unknown>;
|
|
@@ -5666,10 +5482,10 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5666
5482
|
firstName: string;
|
|
5667
5483
|
lastName: string;
|
|
5668
5484
|
avatarId: string | null;
|
|
5669
|
-
validFrom: string | null;
|
|
5670
|
-
validTo: string | null;
|
|
5671
5485
|
accessSuspended: boolean;
|
|
5672
5486
|
staffMember: boolean;
|
|
5487
|
+
validFrom: string | null;
|
|
5488
|
+
validTo: string | null;
|
|
5673
5489
|
credentials: {
|
|
5674
5490
|
type: "card" | "pin" | "fingerprint";
|
|
5675
5491
|
value: string | Record<string, unknown>;
|
|
@@ -5680,18 +5496,18 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5680
5496
|
}>;
|
|
5681
5497
|
}, "strip", z.ZodTypeAny, {
|
|
5682
5498
|
kind: "delete";
|
|
5683
|
-
objectId: string;
|
|
5684
5499
|
objectKind: "person";
|
|
5500
|
+
objectId: string;
|
|
5685
5501
|
original: {
|
|
5686
5502
|
type: string;
|
|
5687
5503
|
position: string | null;
|
|
5688
5504
|
firstName: string;
|
|
5689
5505
|
lastName: string;
|
|
5690
5506
|
avatarId: string | null;
|
|
5691
|
-
validFrom: string | null;
|
|
5692
|
-
validTo: string | null;
|
|
5693
5507
|
accessSuspended: boolean;
|
|
5694
5508
|
staffMember: boolean;
|
|
5509
|
+
validFrom: string | null;
|
|
5510
|
+
validTo: string | null;
|
|
5695
5511
|
credentials: {
|
|
5696
5512
|
type: "card" | "pin" | "fingerprint";
|
|
5697
5513
|
value: string | Record<string, unknown>;
|
|
@@ -5702,18 +5518,18 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5702
5518
|
};
|
|
5703
5519
|
}, {
|
|
5704
5520
|
kind: "delete";
|
|
5705
|
-
objectId: string;
|
|
5706
5521
|
objectKind: "person";
|
|
5522
|
+
objectId: string;
|
|
5707
5523
|
original: {
|
|
5708
5524
|
type: string;
|
|
5709
5525
|
position: string | null;
|
|
5710
5526
|
firstName: string;
|
|
5711
5527
|
lastName: string;
|
|
5712
5528
|
avatarId: string | null;
|
|
5713
|
-
validFrom: string | null;
|
|
5714
|
-
validTo: string | null;
|
|
5715
5529
|
accessSuspended: boolean;
|
|
5716
5530
|
staffMember: boolean;
|
|
5531
|
+
validFrom: string | null;
|
|
5532
|
+
validTo: string | null;
|
|
5717
5533
|
credentials: {
|
|
5718
5534
|
type: "card" | "pin" | "fingerprint";
|
|
5719
5535
|
value: string | Record<string, unknown>;
|
|
@@ -5738,16 +5554,16 @@ export declare const sAccessMutation: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
5738
5554
|
}>;
|
|
5739
5555
|
}, "strip", z.ZodTypeAny, {
|
|
5740
5556
|
kind: "delete";
|
|
5741
|
-
objectId: string;
|
|
5742
5557
|
objectKind: "zone";
|
|
5558
|
+
objectId: string;
|
|
5743
5559
|
original: {
|
|
5744
5560
|
displayName: string;
|
|
5745
5561
|
devices: string[];
|
|
5746
5562
|
};
|
|
5747
5563
|
}, {
|
|
5748
5564
|
kind: "delete";
|
|
5749
|
-
objectId: string;
|
|
5750
5565
|
objectKind: "zone";
|
|
5566
|
+
objectId: string;
|
|
5751
5567
|
original: {
|
|
5752
5568
|
displayName: string;
|
|
5753
5569
|
devices: string[];
|
|
@@ -5813,8 +5629,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5813
5629
|
}>;
|
|
5814
5630
|
}, "strip", z.ZodTypeAny, {
|
|
5815
5631
|
kind: "merge";
|
|
5816
|
-
objectId: string;
|
|
5817
5632
|
objectKind: "accessRule";
|
|
5633
|
+
objectId: string;
|
|
5818
5634
|
original: null;
|
|
5819
5635
|
props: {
|
|
5820
5636
|
displayName: string;
|
|
@@ -5830,8 +5646,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5830
5646
|
};
|
|
5831
5647
|
}, {
|
|
5832
5648
|
kind: "merge";
|
|
5833
|
-
objectId: string;
|
|
5834
5649
|
objectKind: "accessRule";
|
|
5650
|
+
objectId: string;
|
|
5835
5651
|
original: null;
|
|
5836
5652
|
props: {
|
|
5837
5653
|
displayName: string;
|
|
@@ -5943,8 +5759,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5943
5759
|
}>;
|
|
5944
5760
|
}, "strip", z.ZodTypeAny, {
|
|
5945
5761
|
kind: "merge";
|
|
5946
|
-
objectId: string;
|
|
5947
5762
|
objectKind: "accessRule";
|
|
5763
|
+
objectId: string;
|
|
5948
5764
|
original: {
|
|
5949
5765
|
displayName: string;
|
|
5950
5766
|
appliedTo: string[];
|
|
@@ -5971,8 +5787,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
5971
5787
|
};
|
|
5972
5788
|
}, {
|
|
5973
5789
|
kind: "merge";
|
|
5974
|
-
objectId: string;
|
|
5975
5790
|
objectKind: "accessRule";
|
|
5791
|
+
objectId: string;
|
|
5976
5792
|
original: {
|
|
5977
5793
|
displayName: string;
|
|
5978
5794
|
appliedTo: string[];
|
|
@@ -6126,8 +5942,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6126
5942
|
}>;
|
|
6127
5943
|
}, "strip", z.ZodTypeAny, {
|
|
6128
5944
|
kind: "merge";
|
|
6129
|
-
objectId: string;
|
|
6130
5945
|
objectKind: "schedule";
|
|
5946
|
+
objectId: string;
|
|
6131
5947
|
original: null;
|
|
6132
5948
|
props: {
|
|
6133
5949
|
include: {
|
|
@@ -6155,8 +5971,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6155
5971
|
};
|
|
6156
5972
|
}, {
|
|
6157
5973
|
kind: "merge";
|
|
6158
|
-
objectId: string;
|
|
6159
5974
|
objectKind: "schedule";
|
|
5975
|
+
objectId: string;
|
|
6160
5976
|
original: null;
|
|
6161
5977
|
props: {
|
|
6162
5978
|
include: {
|
|
@@ -6432,8 +6248,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6432
6248
|
}>;
|
|
6433
6249
|
}, "strip", z.ZodTypeAny, {
|
|
6434
6250
|
kind: "merge";
|
|
6435
|
-
objectId: string;
|
|
6436
6251
|
objectKind: "schedule";
|
|
6252
|
+
objectId: string;
|
|
6437
6253
|
original: {
|
|
6438
6254
|
include: {
|
|
6439
6255
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -6484,8 +6300,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6484
6300
|
};
|
|
6485
6301
|
}, {
|
|
6486
6302
|
kind: "merge";
|
|
6487
|
-
objectId: string;
|
|
6488
6303
|
objectKind: "schedule";
|
|
6304
|
+
objectId: string;
|
|
6489
6305
|
original: {
|
|
6490
6306
|
include: {
|
|
6491
6307
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -6570,10 +6386,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6570
6386
|
firstName: string;
|
|
6571
6387
|
lastName: string;
|
|
6572
6388
|
avatarId: string | null;
|
|
6573
|
-
validFrom: string | null;
|
|
6574
|
-
validTo: string | null;
|
|
6575
6389
|
accessSuspended: boolean;
|
|
6576
6390
|
staffMember: boolean;
|
|
6391
|
+
validFrom: string | null;
|
|
6392
|
+
validTo: string | null;
|
|
6577
6393
|
credentials: {
|
|
6578
6394
|
type: "card" | "pin" | "fingerprint";
|
|
6579
6395
|
value: string | Record<string, unknown>;
|
|
@@ -6587,10 +6403,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6587
6403
|
firstName: string;
|
|
6588
6404
|
lastName: string;
|
|
6589
6405
|
avatarId: string | null;
|
|
6590
|
-
validFrom: string | null;
|
|
6591
|
-
validTo: string | null;
|
|
6592
6406
|
accessSuspended: boolean;
|
|
6593
6407
|
staffMember: boolean;
|
|
6408
|
+
validFrom: string | null;
|
|
6409
|
+
validTo: string | null;
|
|
6594
6410
|
credentials: {
|
|
6595
6411
|
type: "card" | "pin" | "fingerprint";
|
|
6596
6412
|
value: string | Record<string, unknown>;
|
|
@@ -6601,8 +6417,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6601
6417
|
}>;
|
|
6602
6418
|
}, "strip", z.ZodTypeAny, {
|
|
6603
6419
|
kind: "merge";
|
|
6604
|
-
objectId: string;
|
|
6605
6420
|
objectKind: "person";
|
|
6421
|
+
objectId: string;
|
|
6606
6422
|
original: null;
|
|
6607
6423
|
props: {
|
|
6608
6424
|
type: string;
|
|
@@ -6610,10 +6426,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6610
6426
|
firstName: string;
|
|
6611
6427
|
lastName: string;
|
|
6612
6428
|
avatarId: string | null;
|
|
6613
|
-
validFrom: string | null;
|
|
6614
|
-
validTo: string | null;
|
|
6615
6429
|
accessSuspended: boolean;
|
|
6616
6430
|
staffMember: boolean;
|
|
6431
|
+
validFrom: string | null;
|
|
6432
|
+
validTo: string | null;
|
|
6617
6433
|
credentials: {
|
|
6618
6434
|
type: "card" | "pin" | "fingerprint";
|
|
6619
6435
|
value: string | Record<string, unknown>;
|
|
@@ -6624,8 +6440,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6624
6440
|
};
|
|
6625
6441
|
}, {
|
|
6626
6442
|
kind: "merge";
|
|
6627
|
-
objectId: string;
|
|
6628
6443
|
objectKind: "person";
|
|
6444
|
+
objectId: string;
|
|
6629
6445
|
original: null;
|
|
6630
6446
|
props: {
|
|
6631
6447
|
type: string;
|
|
@@ -6633,10 +6449,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6633
6449
|
firstName: string;
|
|
6634
6450
|
lastName: string;
|
|
6635
6451
|
avatarId: string | null;
|
|
6636
|
-
validFrom: string | null;
|
|
6637
|
-
validTo: string | null;
|
|
6638
6452
|
accessSuspended: boolean;
|
|
6639
6453
|
staffMember: boolean;
|
|
6454
|
+
validFrom: string | null;
|
|
6455
|
+
validTo: string | null;
|
|
6640
6456
|
credentials: {
|
|
6641
6457
|
type: "card" | "pin" | "fingerprint";
|
|
6642
6458
|
value: string | Record<string, unknown>;
|
|
@@ -6680,10 +6496,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6680
6496
|
firstName: string;
|
|
6681
6497
|
lastName: string;
|
|
6682
6498
|
avatarId: string | null;
|
|
6683
|
-
validFrom: string | null;
|
|
6684
|
-
validTo: string | null;
|
|
6685
6499
|
accessSuspended: boolean;
|
|
6686
6500
|
staffMember: boolean;
|
|
6501
|
+
validFrom: string | null;
|
|
6502
|
+
validTo: string | null;
|
|
6687
6503
|
credentials: {
|
|
6688
6504
|
type: "card" | "pin" | "fingerprint";
|
|
6689
6505
|
value: string | Record<string, unknown>;
|
|
@@ -6697,10 +6513,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6697
6513
|
firstName: string;
|
|
6698
6514
|
lastName: string;
|
|
6699
6515
|
avatarId: string | null;
|
|
6700
|
-
validFrom: string | null;
|
|
6701
|
-
validTo: string | null;
|
|
6702
6516
|
accessSuspended: boolean;
|
|
6703
6517
|
staffMember: boolean;
|
|
6518
|
+
validFrom: string | null;
|
|
6519
|
+
validTo: string | null;
|
|
6704
6520
|
credentials: {
|
|
6705
6521
|
type: "card" | "pin" | "fingerprint";
|
|
6706
6522
|
value: string | Record<string, unknown>;
|
|
@@ -6740,10 +6556,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6740
6556
|
firstName?: string | undefined;
|
|
6741
6557
|
lastName?: string | undefined;
|
|
6742
6558
|
avatarId?: string | null | undefined;
|
|
6743
|
-
validFrom?: string | null | undefined;
|
|
6744
|
-
validTo?: string | null | undefined;
|
|
6745
6559
|
accessSuspended?: boolean | undefined;
|
|
6746
6560
|
staffMember?: boolean | undefined;
|
|
6561
|
+
validFrom?: string | null | undefined;
|
|
6562
|
+
validTo?: string | null | undefined;
|
|
6747
6563
|
credentials?: {
|
|
6748
6564
|
type: "card" | "pin" | "fingerprint";
|
|
6749
6565
|
value: string | Record<string, unknown>;
|
|
@@ -6757,10 +6573,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6757
6573
|
firstName?: string | undefined;
|
|
6758
6574
|
lastName?: string | undefined;
|
|
6759
6575
|
avatarId?: string | null | undefined;
|
|
6760
|
-
validFrom?: string | null | undefined;
|
|
6761
|
-
validTo?: string | null | undefined;
|
|
6762
6576
|
accessSuspended?: boolean | undefined;
|
|
6763
6577
|
staffMember?: boolean | undefined;
|
|
6578
|
+
validFrom?: string | null | undefined;
|
|
6579
|
+
validTo?: string | null | undefined;
|
|
6764
6580
|
credentials?: {
|
|
6765
6581
|
type: "card" | "pin" | "fingerprint";
|
|
6766
6582
|
value: string | Record<string, unknown>;
|
|
@@ -6771,18 +6587,18 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6771
6587
|
}>;
|
|
6772
6588
|
}, "strip", z.ZodTypeAny, {
|
|
6773
6589
|
kind: "merge";
|
|
6774
|
-
objectId: string;
|
|
6775
6590
|
objectKind: "person";
|
|
6591
|
+
objectId: string;
|
|
6776
6592
|
original: {
|
|
6777
6593
|
type: string;
|
|
6778
6594
|
position: string | null;
|
|
6779
6595
|
firstName: string;
|
|
6780
6596
|
lastName: string;
|
|
6781
6597
|
avatarId: string | null;
|
|
6782
|
-
validFrom: string | null;
|
|
6783
|
-
validTo: string | null;
|
|
6784
6598
|
accessSuspended: boolean;
|
|
6785
6599
|
staffMember: boolean;
|
|
6600
|
+
validFrom: string | null;
|
|
6601
|
+
validTo: string | null;
|
|
6786
6602
|
credentials: {
|
|
6787
6603
|
type: "card" | "pin" | "fingerprint";
|
|
6788
6604
|
value: string | Record<string, unknown>;
|
|
@@ -6797,10 +6613,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6797
6613
|
firstName?: string | undefined;
|
|
6798
6614
|
lastName?: string | undefined;
|
|
6799
6615
|
avatarId?: string | null | undefined;
|
|
6800
|
-
validFrom?: string | null | undefined;
|
|
6801
|
-
validTo?: string | null | undefined;
|
|
6802
6616
|
accessSuspended?: boolean | undefined;
|
|
6803
6617
|
staffMember?: boolean | undefined;
|
|
6618
|
+
validFrom?: string | null | undefined;
|
|
6619
|
+
validTo?: string | null | undefined;
|
|
6804
6620
|
credentials?: {
|
|
6805
6621
|
type: "card" | "pin" | "fingerprint";
|
|
6806
6622
|
value: string | Record<string, unknown>;
|
|
@@ -6811,18 +6627,18 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6811
6627
|
};
|
|
6812
6628
|
}, {
|
|
6813
6629
|
kind: "merge";
|
|
6814
|
-
objectId: string;
|
|
6815
6630
|
objectKind: "person";
|
|
6631
|
+
objectId: string;
|
|
6816
6632
|
original: {
|
|
6817
6633
|
type: string;
|
|
6818
6634
|
position: string | null;
|
|
6819
6635
|
firstName: string;
|
|
6820
6636
|
lastName: string;
|
|
6821
6637
|
avatarId: string | null;
|
|
6822
|
-
validFrom: string | null;
|
|
6823
|
-
validTo: string | null;
|
|
6824
6638
|
accessSuspended: boolean;
|
|
6825
6639
|
staffMember: boolean;
|
|
6640
|
+
validFrom: string | null;
|
|
6641
|
+
validTo: string | null;
|
|
6826
6642
|
credentials: {
|
|
6827
6643
|
type: "card" | "pin" | "fingerprint";
|
|
6828
6644
|
value: string | Record<string, unknown>;
|
|
@@ -6837,10 +6653,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6837
6653
|
firstName?: string | undefined;
|
|
6838
6654
|
lastName?: string | undefined;
|
|
6839
6655
|
avatarId?: string | null | undefined;
|
|
6840
|
-
validFrom?: string | null | undefined;
|
|
6841
|
-
validTo?: string | null | undefined;
|
|
6842
6656
|
accessSuspended?: boolean | undefined;
|
|
6843
6657
|
staffMember?: boolean | undefined;
|
|
6658
|
+
validFrom?: string | null | undefined;
|
|
6659
|
+
validTo?: string | null | undefined;
|
|
6844
6660
|
credentials?: {
|
|
6845
6661
|
type: "card" | "pin" | "fingerprint";
|
|
6846
6662
|
value: string | Record<string, unknown>;
|
|
@@ -6866,8 +6682,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6866
6682
|
}>;
|
|
6867
6683
|
}, "strip", z.ZodTypeAny, {
|
|
6868
6684
|
kind: "merge";
|
|
6869
|
-
objectId: string;
|
|
6870
6685
|
objectKind: "zone";
|
|
6686
|
+
objectId: string;
|
|
6871
6687
|
original: null;
|
|
6872
6688
|
props: {
|
|
6873
6689
|
displayName: string;
|
|
@@ -6875,8 +6691,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6875
6691
|
};
|
|
6876
6692
|
}, {
|
|
6877
6693
|
kind: "merge";
|
|
6878
|
-
objectId: string;
|
|
6879
6694
|
objectKind: "zone";
|
|
6695
|
+
objectId: string;
|
|
6880
6696
|
original: null;
|
|
6881
6697
|
props: {
|
|
6882
6698
|
displayName: string;
|
|
@@ -6908,8 +6724,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6908
6724
|
}>;
|
|
6909
6725
|
}, "strip", z.ZodTypeAny, {
|
|
6910
6726
|
kind: "merge";
|
|
6911
|
-
objectId: string;
|
|
6912
6727
|
objectKind: "zone";
|
|
6728
|
+
objectId: string;
|
|
6913
6729
|
original: {
|
|
6914
6730
|
displayName: string;
|
|
6915
6731
|
devices: string[];
|
|
@@ -6920,8 +6736,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6920
6736
|
};
|
|
6921
6737
|
}, {
|
|
6922
6738
|
kind: "merge";
|
|
6923
|
-
objectId: string;
|
|
6924
6739
|
objectKind: "zone";
|
|
6740
|
+
objectId: string;
|
|
6925
6741
|
original: {
|
|
6926
6742
|
displayName: string;
|
|
6927
6743
|
devices: string[];
|
|
@@ -6982,8 +6798,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6982
6798
|
}>;
|
|
6983
6799
|
}, "strip", z.ZodTypeAny, {
|
|
6984
6800
|
kind: "delete";
|
|
6985
|
-
objectId: string;
|
|
6986
6801
|
objectKind: "accessRule";
|
|
6802
|
+
objectId: string;
|
|
6987
6803
|
original: {
|
|
6988
6804
|
displayName: string;
|
|
6989
6805
|
appliedTo: string[];
|
|
@@ -6998,8 +6814,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
6998
6814
|
};
|
|
6999
6815
|
}, {
|
|
7000
6816
|
kind: "delete";
|
|
7001
|
-
objectId: string;
|
|
7002
6817
|
objectKind: "accessRule";
|
|
6818
|
+
objectId: string;
|
|
7003
6819
|
original: {
|
|
7004
6820
|
displayName: string;
|
|
7005
6821
|
appliedTo: string[];
|
|
@@ -7140,8 +6956,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7140
6956
|
}>;
|
|
7141
6957
|
}, "strip", z.ZodTypeAny, {
|
|
7142
6958
|
kind: "delete";
|
|
7143
|
-
objectId: string;
|
|
7144
6959
|
objectKind: "schedule";
|
|
6960
|
+
objectId: string;
|
|
7145
6961
|
original: {
|
|
7146
6962
|
include: {
|
|
7147
6963
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -7168,8 +6984,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7168
6984
|
};
|
|
7169
6985
|
}, {
|
|
7170
6986
|
kind: "delete";
|
|
7171
|
-
objectId: string;
|
|
7172
6987
|
objectKind: "schedule";
|
|
6988
|
+
objectId: string;
|
|
7173
6989
|
original: {
|
|
7174
6990
|
include: {
|
|
7175
6991
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -7229,10 +7045,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7229
7045
|
firstName: string;
|
|
7230
7046
|
lastName: string;
|
|
7231
7047
|
avatarId: string | null;
|
|
7232
|
-
validFrom: string | null;
|
|
7233
|
-
validTo: string | null;
|
|
7234
7048
|
accessSuspended: boolean;
|
|
7235
7049
|
staffMember: boolean;
|
|
7050
|
+
validFrom: string | null;
|
|
7051
|
+
validTo: string | null;
|
|
7236
7052
|
credentials: {
|
|
7237
7053
|
type: "card" | "pin" | "fingerprint";
|
|
7238
7054
|
value: string | Record<string, unknown>;
|
|
@@ -7246,10 +7062,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7246
7062
|
firstName: string;
|
|
7247
7063
|
lastName: string;
|
|
7248
7064
|
avatarId: string | null;
|
|
7249
|
-
validFrom: string | null;
|
|
7250
|
-
validTo: string | null;
|
|
7251
7065
|
accessSuspended: boolean;
|
|
7252
7066
|
staffMember: boolean;
|
|
7067
|
+
validFrom: string | null;
|
|
7068
|
+
validTo: string | null;
|
|
7253
7069
|
credentials: {
|
|
7254
7070
|
type: "card" | "pin" | "fingerprint";
|
|
7255
7071
|
value: string | Record<string, unknown>;
|
|
@@ -7260,18 +7076,18 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7260
7076
|
}>;
|
|
7261
7077
|
}, "strip", z.ZodTypeAny, {
|
|
7262
7078
|
kind: "delete";
|
|
7263
|
-
objectId: string;
|
|
7264
7079
|
objectKind: "person";
|
|
7080
|
+
objectId: string;
|
|
7265
7081
|
original: {
|
|
7266
7082
|
type: string;
|
|
7267
7083
|
position: string | null;
|
|
7268
7084
|
firstName: string;
|
|
7269
7085
|
lastName: string;
|
|
7270
7086
|
avatarId: string | null;
|
|
7271
|
-
validFrom: string | null;
|
|
7272
|
-
validTo: string | null;
|
|
7273
7087
|
accessSuspended: boolean;
|
|
7274
7088
|
staffMember: boolean;
|
|
7089
|
+
validFrom: string | null;
|
|
7090
|
+
validTo: string | null;
|
|
7275
7091
|
credentials: {
|
|
7276
7092
|
type: "card" | "pin" | "fingerprint";
|
|
7277
7093
|
value: string | Record<string, unknown>;
|
|
@@ -7282,18 +7098,18 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7282
7098
|
};
|
|
7283
7099
|
}, {
|
|
7284
7100
|
kind: "delete";
|
|
7285
|
-
objectId: string;
|
|
7286
7101
|
objectKind: "person";
|
|
7102
|
+
objectId: string;
|
|
7287
7103
|
original: {
|
|
7288
7104
|
type: string;
|
|
7289
7105
|
position: string | null;
|
|
7290
7106
|
firstName: string;
|
|
7291
7107
|
lastName: string;
|
|
7292
7108
|
avatarId: string | null;
|
|
7293
|
-
validFrom: string | null;
|
|
7294
|
-
validTo: string | null;
|
|
7295
7109
|
accessSuspended: boolean;
|
|
7296
7110
|
staffMember: boolean;
|
|
7111
|
+
validFrom: string | null;
|
|
7112
|
+
validTo: string | null;
|
|
7297
7113
|
credentials: {
|
|
7298
7114
|
type: "card" | "pin" | "fingerprint";
|
|
7299
7115
|
value: string | Record<string, unknown>;
|
|
@@ -7318,16 +7134,16 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7318
7134
|
}>;
|
|
7319
7135
|
}, "strip", z.ZodTypeAny, {
|
|
7320
7136
|
kind: "delete";
|
|
7321
|
-
objectId: string;
|
|
7322
7137
|
objectKind: "zone";
|
|
7138
|
+
objectId: string;
|
|
7323
7139
|
original: {
|
|
7324
7140
|
displayName: string;
|
|
7325
7141
|
devices: string[];
|
|
7326
7142
|
};
|
|
7327
7143
|
}, {
|
|
7328
7144
|
kind: "delete";
|
|
7329
|
-
objectId: string;
|
|
7330
7145
|
objectKind: "zone";
|
|
7146
|
+
objectId: string;
|
|
7331
7147
|
original: {
|
|
7332
7148
|
displayName: string;
|
|
7333
7149
|
devices: string[];
|
|
@@ -7335,13 +7151,13 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7335
7151
|
}>]>]>, "many">;
|
|
7336
7152
|
}, "strip", z.ZodTypeAny, {
|
|
7337
7153
|
kind: "validate-change";
|
|
7338
|
-
provider: string;
|
|
7339
7154
|
devices: Record<string, Record<string, unknown>>;
|
|
7155
|
+
provider: string;
|
|
7340
7156
|
refMap: Record<string, Record<string, string[]>>;
|
|
7341
7157
|
mutations: ({
|
|
7342
7158
|
kind: "merge";
|
|
7343
|
-
objectId: string;
|
|
7344
7159
|
objectKind: "accessRule";
|
|
7160
|
+
objectId: string;
|
|
7345
7161
|
original: null;
|
|
7346
7162
|
props: {
|
|
7347
7163
|
displayName: string;
|
|
@@ -7357,8 +7173,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7357
7173
|
};
|
|
7358
7174
|
} | {
|
|
7359
7175
|
kind: "merge";
|
|
7360
|
-
objectId: string;
|
|
7361
7176
|
objectKind: "accessRule";
|
|
7177
|
+
objectId: string;
|
|
7362
7178
|
original: {
|
|
7363
7179
|
displayName: string;
|
|
7364
7180
|
appliedTo: string[];
|
|
@@ -7385,8 +7201,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7385
7201
|
};
|
|
7386
7202
|
} | {
|
|
7387
7203
|
kind: "merge";
|
|
7388
|
-
objectId: string;
|
|
7389
7204
|
objectKind: "schedule";
|
|
7205
|
+
objectId: string;
|
|
7390
7206
|
original: null;
|
|
7391
7207
|
props: {
|
|
7392
7208
|
include: {
|
|
@@ -7414,8 +7230,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7414
7230
|
};
|
|
7415
7231
|
} | {
|
|
7416
7232
|
kind: "merge";
|
|
7417
|
-
objectId: string;
|
|
7418
7233
|
objectKind: "schedule";
|
|
7234
|
+
objectId: string;
|
|
7419
7235
|
original: {
|
|
7420
7236
|
include: {
|
|
7421
7237
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -7466,8 +7282,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7466
7282
|
};
|
|
7467
7283
|
} | {
|
|
7468
7284
|
kind: "merge";
|
|
7469
|
-
objectId: string;
|
|
7470
7285
|
objectKind: "person";
|
|
7286
|
+
objectId: string;
|
|
7471
7287
|
original: null;
|
|
7472
7288
|
props: {
|
|
7473
7289
|
type: string;
|
|
@@ -7475,10 +7291,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7475
7291
|
firstName: string;
|
|
7476
7292
|
lastName: string;
|
|
7477
7293
|
avatarId: string | null;
|
|
7478
|
-
validFrom: string | null;
|
|
7479
|
-
validTo: string | null;
|
|
7480
7294
|
accessSuspended: boolean;
|
|
7481
7295
|
staffMember: boolean;
|
|
7296
|
+
validFrom: string | null;
|
|
7297
|
+
validTo: string | null;
|
|
7482
7298
|
credentials: {
|
|
7483
7299
|
type: "card" | "pin" | "fingerprint";
|
|
7484
7300
|
value: string | Record<string, unknown>;
|
|
@@ -7489,18 +7305,18 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7489
7305
|
};
|
|
7490
7306
|
} | {
|
|
7491
7307
|
kind: "merge";
|
|
7492
|
-
objectId: string;
|
|
7493
7308
|
objectKind: "person";
|
|
7309
|
+
objectId: string;
|
|
7494
7310
|
original: {
|
|
7495
7311
|
type: string;
|
|
7496
7312
|
position: string | null;
|
|
7497
7313
|
firstName: string;
|
|
7498
7314
|
lastName: string;
|
|
7499
7315
|
avatarId: string | null;
|
|
7500
|
-
validFrom: string | null;
|
|
7501
|
-
validTo: string | null;
|
|
7502
7316
|
accessSuspended: boolean;
|
|
7503
7317
|
staffMember: boolean;
|
|
7318
|
+
validFrom: string | null;
|
|
7319
|
+
validTo: string | null;
|
|
7504
7320
|
credentials: {
|
|
7505
7321
|
type: "card" | "pin" | "fingerprint";
|
|
7506
7322
|
value: string | Record<string, unknown>;
|
|
@@ -7515,10 +7331,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7515
7331
|
firstName?: string | undefined;
|
|
7516
7332
|
lastName?: string | undefined;
|
|
7517
7333
|
avatarId?: string | null | undefined;
|
|
7518
|
-
validFrom?: string | null | undefined;
|
|
7519
|
-
validTo?: string | null | undefined;
|
|
7520
7334
|
accessSuspended?: boolean | undefined;
|
|
7521
7335
|
staffMember?: boolean | undefined;
|
|
7336
|
+
validFrom?: string | null | undefined;
|
|
7337
|
+
validTo?: string | null | undefined;
|
|
7522
7338
|
credentials?: {
|
|
7523
7339
|
type: "card" | "pin" | "fingerprint";
|
|
7524
7340
|
value: string | Record<string, unknown>;
|
|
@@ -7529,8 +7345,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7529
7345
|
};
|
|
7530
7346
|
} | {
|
|
7531
7347
|
kind: "merge";
|
|
7532
|
-
objectId: string;
|
|
7533
7348
|
objectKind: "zone";
|
|
7349
|
+
objectId: string;
|
|
7534
7350
|
original: null;
|
|
7535
7351
|
props: {
|
|
7536
7352
|
displayName: string;
|
|
@@ -7538,8 +7354,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7538
7354
|
};
|
|
7539
7355
|
} | {
|
|
7540
7356
|
kind: "merge";
|
|
7541
|
-
objectId: string;
|
|
7542
7357
|
objectKind: "zone";
|
|
7358
|
+
objectId: string;
|
|
7543
7359
|
original: {
|
|
7544
7360
|
displayName: string;
|
|
7545
7361
|
devices: string[];
|
|
@@ -7550,8 +7366,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7550
7366
|
};
|
|
7551
7367
|
} | {
|
|
7552
7368
|
kind: "delete";
|
|
7553
|
-
objectId: string;
|
|
7554
7369
|
objectKind: "accessRule";
|
|
7370
|
+
objectId: string;
|
|
7555
7371
|
original: {
|
|
7556
7372
|
displayName: string;
|
|
7557
7373
|
appliedTo: string[];
|
|
@@ -7566,8 +7382,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7566
7382
|
};
|
|
7567
7383
|
} | {
|
|
7568
7384
|
kind: "delete";
|
|
7569
|
-
objectId: string;
|
|
7570
7385
|
objectKind: "schedule";
|
|
7386
|
+
objectId: string;
|
|
7571
7387
|
original: {
|
|
7572
7388
|
include: {
|
|
7573
7389
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -7594,18 +7410,18 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7594
7410
|
};
|
|
7595
7411
|
} | {
|
|
7596
7412
|
kind: "delete";
|
|
7597
|
-
objectId: string;
|
|
7598
7413
|
objectKind: "person";
|
|
7414
|
+
objectId: string;
|
|
7599
7415
|
original: {
|
|
7600
7416
|
type: string;
|
|
7601
7417
|
position: string | null;
|
|
7602
7418
|
firstName: string;
|
|
7603
7419
|
lastName: string;
|
|
7604
7420
|
avatarId: string | null;
|
|
7605
|
-
validFrom: string | null;
|
|
7606
|
-
validTo: string | null;
|
|
7607
7421
|
accessSuspended: boolean;
|
|
7608
7422
|
staffMember: boolean;
|
|
7423
|
+
validFrom: string | null;
|
|
7424
|
+
validTo: string | null;
|
|
7609
7425
|
credentials: {
|
|
7610
7426
|
type: "card" | "pin" | "fingerprint";
|
|
7611
7427
|
value: string | Record<string, unknown>;
|
|
@@ -7616,8 +7432,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7616
7432
|
};
|
|
7617
7433
|
} | {
|
|
7618
7434
|
kind: "delete";
|
|
7619
|
-
objectId: string;
|
|
7620
7435
|
objectKind: "zone";
|
|
7436
|
+
objectId: string;
|
|
7621
7437
|
original: {
|
|
7622
7438
|
displayName: string;
|
|
7623
7439
|
devices: string[];
|
|
@@ -7625,13 +7441,13 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7625
7441
|
})[];
|
|
7626
7442
|
}, {
|
|
7627
7443
|
kind: "validate-change";
|
|
7628
|
-
provider: string;
|
|
7629
7444
|
devices: Record<string, Record<string, unknown>>;
|
|
7445
|
+
provider: string;
|
|
7630
7446
|
refMap: Record<string, Record<string, string[]>>;
|
|
7631
7447
|
mutations: ({
|
|
7632
7448
|
kind: "merge";
|
|
7633
|
-
objectId: string;
|
|
7634
7449
|
objectKind: "accessRule";
|
|
7450
|
+
objectId: string;
|
|
7635
7451
|
original: null;
|
|
7636
7452
|
props: {
|
|
7637
7453
|
displayName: string;
|
|
@@ -7647,8 +7463,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7647
7463
|
};
|
|
7648
7464
|
} | {
|
|
7649
7465
|
kind: "merge";
|
|
7650
|
-
objectId: string;
|
|
7651
7466
|
objectKind: "accessRule";
|
|
7467
|
+
objectId: string;
|
|
7652
7468
|
original: {
|
|
7653
7469
|
displayName: string;
|
|
7654
7470
|
appliedTo: string[];
|
|
@@ -7675,8 +7491,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7675
7491
|
};
|
|
7676
7492
|
} | {
|
|
7677
7493
|
kind: "merge";
|
|
7678
|
-
objectId: string;
|
|
7679
7494
|
objectKind: "schedule";
|
|
7495
|
+
objectId: string;
|
|
7680
7496
|
original: null;
|
|
7681
7497
|
props: {
|
|
7682
7498
|
include: {
|
|
@@ -7704,8 +7520,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7704
7520
|
};
|
|
7705
7521
|
} | {
|
|
7706
7522
|
kind: "merge";
|
|
7707
|
-
objectId: string;
|
|
7708
7523
|
objectKind: "schedule";
|
|
7524
|
+
objectId: string;
|
|
7709
7525
|
original: {
|
|
7710
7526
|
include: {
|
|
7711
7527
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -7756,8 +7572,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7756
7572
|
};
|
|
7757
7573
|
} | {
|
|
7758
7574
|
kind: "merge";
|
|
7759
|
-
objectId: string;
|
|
7760
7575
|
objectKind: "person";
|
|
7576
|
+
objectId: string;
|
|
7761
7577
|
original: null;
|
|
7762
7578
|
props: {
|
|
7763
7579
|
type: string;
|
|
@@ -7765,10 +7581,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7765
7581
|
firstName: string;
|
|
7766
7582
|
lastName: string;
|
|
7767
7583
|
avatarId: string | null;
|
|
7768
|
-
validFrom: string | null;
|
|
7769
|
-
validTo: string | null;
|
|
7770
7584
|
accessSuspended: boolean;
|
|
7771
7585
|
staffMember: boolean;
|
|
7586
|
+
validFrom: string | null;
|
|
7587
|
+
validTo: string | null;
|
|
7772
7588
|
credentials: {
|
|
7773
7589
|
type: "card" | "pin" | "fingerprint";
|
|
7774
7590
|
value: string | Record<string, unknown>;
|
|
@@ -7779,18 +7595,18 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7779
7595
|
};
|
|
7780
7596
|
} | {
|
|
7781
7597
|
kind: "merge";
|
|
7782
|
-
objectId: string;
|
|
7783
7598
|
objectKind: "person";
|
|
7599
|
+
objectId: string;
|
|
7784
7600
|
original: {
|
|
7785
7601
|
type: string;
|
|
7786
7602
|
position: string | null;
|
|
7787
7603
|
firstName: string;
|
|
7788
7604
|
lastName: string;
|
|
7789
7605
|
avatarId: string | null;
|
|
7790
|
-
validFrom: string | null;
|
|
7791
|
-
validTo: string | null;
|
|
7792
7606
|
accessSuspended: boolean;
|
|
7793
7607
|
staffMember: boolean;
|
|
7608
|
+
validFrom: string | null;
|
|
7609
|
+
validTo: string | null;
|
|
7794
7610
|
credentials: {
|
|
7795
7611
|
type: "card" | "pin" | "fingerprint";
|
|
7796
7612
|
value: string | Record<string, unknown>;
|
|
@@ -7805,10 +7621,10 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7805
7621
|
firstName?: string | undefined;
|
|
7806
7622
|
lastName?: string | undefined;
|
|
7807
7623
|
avatarId?: string | null | undefined;
|
|
7808
|
-
validFrom?: string | null | undefined;
|
|
7809
|
-
validTo?: string | null | undefined;
|
|
7810
7624
|
accessSuspended?: boolean | undefined;
|
|
7811
7625
|
staffMember?: boolean | undefined;
|
|
7626
|
+
validFrom?: string | null | undefined;
|
|
7627
|
+
validTo?: string | null | undefined;
|
|
7812
7628
|
credentials?: {
|
|
7813
7629
|
type: "card" | "pin" | "fingerprint";
|
|
7814
7630
|
value: string | Record<string, unknown>;
|
|
@@ -7819,8 +7635,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7819
7635
|
};
|
|
7820
7636
|
} | {
|
|
7821
7637
|
kind: "merge";
|
|
7822
|
-
objectId: string;
|
|
7823
7638
|
objectKind: "zone";
|
|
7639
|
+
objectId: string;
|
|
7824
7640
|
original: null;
|
|
7825
7641
|
props: {
|
|
7826
7642
|
displayName: string;
|
|
@@ -7828,8 +7644,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7828
7644
|
};
|
|
7829
7645
|
} | {
|
|
7830
7646
|
kind: "merge";
|
|
7831
|
-
objectId: string;
|
|
7832
7647
|
objectKind: "zone";
|
|
7648
|
+
objectId: string;
|
|
7833
7649
|
original: {
|
|
7834
7650
|
displayName: string;
|
|
7835
7651
|
devices: string[];
|
|
@@ -7840,8 +7656,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7840
7656
|
};
|
|
7841
7657
|
} | {
|
|
7842
7658
|
kind: "delete";
|
|
7843
|
-
objectId: string;
|
|
7844
7659
|
objectKind: "accessRule";
|
|
7660
|
+
objectId: string;
|
|
7845
7661
|
original: {
|
|
7846
7662
|
displayName: string;
|
|
7847
7663
|
appliedTo: string[];
|
|
@@ -7856,8 +7672,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7856
7672
|
};
|
|
7857
7673
|
} | {
|
|
7858
7674
|
kind: "delete";
|
|
7859
|
-
objectId: string;
|
|
7860
7675
|
objectKind: "schedule";
|
|
7676
|
+
objectId: string;
|
|
7861
7677
|
original: {
|
|
7862
7678
|
include: {
|
|
7863
7679
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -7884,18 +7700,18 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7884
7700
|
};
|
|
7885
7701
|
} | {
|
|
7886
7702
|
kind: "delete";
|
|
7887
|
-
objectId: string;
|
|
7888
7703
|
objectKind: "person";
|
|
7704
|
+
objectId: string;
|
|
7889
7705
|
original: {
|
|
7890
7706
|
type: string;
|
|
7891
7707
|
position: string | null;
|
|
7892
7708
|
firstName: string;
|
|
7893
7709
|
lastName: string;
|
|
7894
7710
|
avatarId: string | null;
|
|
7895
|
-
validFrom: string | null;
|
|
7896
|
-
validTo: string | null;
|
|
7897
7711
|
accessSuspended: boolean;
|
|
7898
7712
|
staffMember: boolean;
|
|
7713
|
+
validFrom: string | null;
|
|
7714
|
+
validTo: string | null;
|
|
7899
7715
|
credentials: {
|
|
7900
7716
|
type: "card" | "pin" | "fingerprint";
|
|
7901
7717
|
value: string | Record<string, unknown>;
|
|
@@ -7906,8 +7722,8 @@ export declare const sValidateChangeRq: z.ZodObject<{
|
|
|
7906
7722
|
};
|
|
7907
7723
|
} | {
|
|
7908
7724
|
kind: "delete";
|
|
7909
|
-
objectId: string;
|
|
7910
7725
|
objectKind: "zone";
|
|
7726
|
+
objectId: string;
|
|
7911
7727
|
original: {
|
|
7912
7728
|
displayName: string;
|
|
7913
7729
|
devices: string[];
|
|
@@ -7924,18 +7740,18 @@ export declare const sChangeIssue: z.ZodObject<{
|
|
|
7924
7740
|
message: z.ZodOptional<z.ZodString>;
|
|
7925
7741
|
}, "strip", z.ZodTypeAny, {
|
|
7926
7742
|
index?: number | undefined;
|
|
7927
|
-
code?: "
|
|
7743
|
+
code?: "BAD_REFERENCE" | "NOT_SUPPORTED" | "NOT_FOUND" | "NOT_UNIQUE" | "INVALID" | undefined;
|
|
7928
7744
|
message?: string | undefined;
|
|
7929
7745
|
path?: string | undefined;
|
|
7746
|
+
objectKind?: "person" | "zone" | "schedule" | "device" | "accessRule" | undefined;
|
|
7930
7747
|
objectId?: string | undefined;
|
|
7931
|
-
objectKind?: "person" | "zone" | "accessRule" | "schedule" | "device" | undefined;
|
|
7932
7748
|
}, {
|
|
7933
7749
|
index?: number | undefined;
|
|
7934
|
-
code?: "
|
|
7750
|
+
code?: "BAD_REFERENCE" | "NOT_SUPPORTED" | "NOT_FOUND" | "NOT_UNIQUE" | "INVALID" | undefined;
|
|
7935
7751
|
message?: string | undefined;
|
|
7936
7752
|
path?: string | undefined;
|
|
7753
|
+
objectKind?: "person" | "zone" | "schedule" | "device" | "accessRule" | undefined;
|
|
7937
7754
|
objectId?: string | undefined;
|
|
7938
|
-
objectKind?: "person" | "zone" | "accessRule" | "schedule" | "device" | undefined;
|
|
7939
7755
|
}>;
|
|
7940
7756
|
export declare const sValidateChangeRs: z.ZodIntersection<z.ZodObject<{
|
|
7941
7757
|
requestId: z.ZodString;
|
|
@@ -7956,36 +7772,36 @@ export declare const sValidateChangeRs: z.ZodIntersection<z.ZodObject<{
|
|
|
7956
7772
|
message: z.ZodOptional<z.ZodString>;
|
|
7957
7773
|
}, "strip", z.ZodTypeAny, {
|
|
7958
7774
|
index?: number | undefined;
|
|
7959
|
-
code?: "
|
|
7775
|
+
code?: "BAD_REFERENCE" | "NOT_SUPPORTED" | "NOT_FOUND" | "NOT_UNIQUE" | "INVALID" | undefined;
|
|
7960
7776
|
message?: string | undefined;
|
|
7961
7777
|
path?: string | undefined;
|
|
7778
|
+
objectKind?: "person" | "zone" | "schedule" | "device" | "accessRule" | undefined;
|
|
7962
7779
|
objectId?: string | undefined;
|
|
7963
|
-
objectKind?: "person" | "zone" | "accessRule" | "schedule" | "device" | undefined;
|
|
7964
7780
|
}, {
|
|
7965
7781
|
index?: number | undefined;
|
|
7966
|
-
code?: "
|
|
7782
|
+
code?: "BAD_REFERENCE" | "NOT_SUPPORTED" | "NOT_FOUND" | "NOT_UNIQUE" | "INVALID" | undefined;
|
|
7967
7783
|
message?: string | undefined;
|
|
7968
7784
|
path?: string | undefined;
|
|
7785
|
+
objectKind?: "person" | "zone" | "schedule" | "device" | "accessRule" | undefined;
|
|
7969
7786
|
objectId?: string | undefined;
|
|
7970
|
-
objectKind?: "person" | "zone" | "accessRule" | "schedule" | "device" | undefined;
|
|
7971
7787
|
}>, "many">;
|
|
7972
7788
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
|
7973
7789
|
issues: {
|
|
7974
7790
|
index?: number | undefined;
|
|
7975
|
-
code?: "
|
|
7791
|
+
code?: "BAD_REFERENCE" | "NOT_SUPPORTED" | "NOT_FOUND" | "NOT_UNIQUE" | "INVALID" | undefined;
|
|
7976
7792
|
message?: string | undefined;
|
|
7977
7793
|
path?: string | undefined;
|
|
7794
|
+
objectKind?: "person" | "zone" | "schedule" | "device" | "accessRule" | undefined;
|
|
7978
7795
|
objectId?: string | undefined;
|
|
7979
|
-
objectKind?: "person" | "zone" | "accessRule" | "schedule" | "device" | undefined;
|
|
7980
7796
|
}[];
|
|
7981
7797
|
}, {
|
|
7982
7798
|
issues: {
|
|
7983
7799
|
index?: number | undefined;
|
|
7984
|
-
code?: "
|
|
7800
|
+
code?: "BAD_REFERENCE" | "NOT_SUPPORTED" | "NOT_FOUND" | "NOT_UNIQUE" | "INVALID" | undefined;
|
|
7985
7801
|
message?: string | undefined;
|
|
7986
7802
|
path?: string | undefined;
|
|
7803
|
+
objectKind?: "person" | "zone" | "schedule" | "device" | "accessRule" | undefined;
|
|
7987
7804
|
objectId?: string | undefined;
|
|
7988
|
-
objectKind?: "person" | "zone" | "accessRule" | "schedule" | "device" | undefined;
|
|
7989
7805
|
}[];
|
|
7990
7806
|
}>>;
|
|
7991
7807
|
export declare const sApplyChange: z.ZodObject<{
|
|
@@ -8046,8 +7862,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8046
7862
|
}>;
|
|
8047
7863
|
}, "strip", z.ZodTypeAny, {
|
|
8048
7864
|
kind: "merge";
|
|
8049
|
-
objectId: string;
|
|
8050
7865
|
objectKind: "accessRule";
|
|
7866
|
+
objectId: string;
|
|
8051
7867
|
original: null;
|
|
8052
7868
|
props: {
|
|
8053
7869
|
displayName: string;
|
|
@@ -8063,8 +7879,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8063
7879
|
};
|
|
8064
7880
|
}, {
|
|
8065
7881
|
kind: "merge";
|
|
8066
|
-
objectId: string;
|
|
8067
7882
|
objectKind: "accessRule";
|
|
7883
|
+
objectId: string;
|
|
8068
7884
|
original: null;
|
|
8069
7885
|
props: {
|
|
8070
7886
|
displayName: string;
|
|
@@ -8176,8 +7992,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8176
7992
|
}>;
|
|
8177
7993
|
}, "strip", z.ZodTypeAny, {
|
|
8178
7994
|
kind: "merge";
|
|
8179
|
-
objectId: string;
|
|
8180
7995
|
objectKind: "accessRule";
|
|
7996
|
+
objectId: string;
|
|
8181
7997
|
original: {
|
|
8182
7998
|
displayName: string;
|
|
8183
7999
|
appliedTo: string[];
|
|
@@ -8204,8 +8020,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8204
8020
|
};
|
|
8205
8021
|
}, {
|
|
8206
8022
|
kind: "merge";
|
|
8207
|
-
objectId: string;
|
|
8208
8023
|
objectKind: "accessRule";
|
|
8024
|
+
objectId: string;
|
|
8209
8025
|
original: {
|
|
8210
8026
|
displayName: string;
|
|
8211
8027
|
appliedTo: string[];
|
|
@@ -8359,8 +8175,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8359
8175
|
}>;
|
|
8360
8176
|
}, "strip", z.ZodTypeAny, {
|
|
8361
8177
|
kind: "merge";
|
|
8362
|
-
objectId: string;
|
|
8363
8178
|
objectKind: "schedule";
|
|
8179
|
+
objectId: string;
|
|
8364
8180
|
original: null;
|
|
8365
8181
|
props: {
|
|
8366
8182
|
include: {
|
|
@@ -8388,8 +8204,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8388
8204
|
};
|
|
8389
8205
|
}, {
|
|
8390
8206
|
kind: "merge";
|
|
8391
|
-
objectId: string;
|
|
8392
8207
|
objectKind: "schedule";
|
|
8208
|
+
objectId: string;
|
|
8393
8209
|
original: null;
|
|
8394
8210
|
props: {
|
|
8395
8211
|
include: {
|
|
@@ -8665,8 +8481,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8665
8481
|
}>;
|
|
8666
8482
|
}, "strip", z.ZodTypeAny, {
|
|
8667
8483
|
kind: "merge";
|
|
8668
|
-
objectId: string;
|
|
8669
8484
|
objectKind: "schedule";
|
|
8485
|
+
objectId: string;
|
|
8670
8486
|
original: {
|
|
8671
8487
|
include: {
|
|
8672
8488
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -8717,8 +8533,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8717
8533
|
};
|
|
8718
8534
|
}, {
|
|
8719
8535
|
kind: "merge";
|
|
8720
|
-
objectId: string;
|
|
8721
8536
|
objectKind: "schedule";
|
|
8537
|
+
objectId: string;
|
|
8722
8538
|
original: {
|
|
8723
8539
|
include: {
|
|
8724
8540
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -8803,10 +8619,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8803
8619
|
firstName: string;
|
|
8804
8620
|
lastName: string;
|
|
8805
8621
|
avatarId: string | null;
|
|
8806
|
-
validFrom: string | null;
|
|
8807
|
-
validTo: string | null;
|
|
8808
8622
|
accessSuspended: boolean;
|
|
8809
8623
|
staffMember: boolean;
|
|
8624
|
+
validFrom: string | null;
|
|
8625
|
+
validTo: string | null;
|
|
8810
8626
|
credentials: {
|
|
8811
8627
|
type: "card" | "pin" | "fingerprint";
|
|
8812
8628
|
value: string | Record<string, unknown>;
|
|
@@ -8820,10 +8636,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8820
8636
|
firstName: string;
|
|
8821
8637
|
lastName: string;
|
|
8822
8638
|
avatarId: string | null;
|
|
8823
|
-
validFrom: string | null;
|
|
8824
|
-
validTo: string | null;
|
|
8825
8639
|
accessSuspended: boolean;
|
|
8826
8640
|
staffMember: boolean;
|
|
8641
|
+
validFrom: string | null;
|
|
8642
|
+
validTo: string | null;
|
|
8827
8643
|
credentials: {
|
|
8828
8644
|
type: "card" | "pin" | "fingerprint";
|
|
8829
8645
|
value: string | Record<string, unknown>;
|
|
@@ -8834,8 +8650,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8834
8650
|
}>;
|
|
8835
8651
|
}, "strip", z.ZodTypeAny, {
|
|
8836
8652
|
kind: "merge";
|
|
8837
|
-
objectId: string;
|
|
8838
8653
|
objectKind: "person";
|
|
8654
|
+
objectId: string;
|
|
8839
8655
|
original: null;
|
|
8840
8656
|
props: {
|
|
8841
8657
|
type: string;
|
|
@@ -8843,10 +8659,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8843
8659
|
firstName: string;
|
|
8844
8660
|
lastName: string;
|
|
8845
8661
|
avatarId: string | null;
|
|
8846
|
-
validFrom: string | null;
|
|
8847
|
-
validTo: string | null;
|
|
8848
8662
|
accessSuspended: boolean;
|
|
8849
8663
|
staffMember: boolean;
|
|
8664
|
+
validFrom: string | null;
|
|
8665
|
+
validTo: string | null;
|
|
8850
8666
|
credentials: {
|
|
8851
8667
|
type: "card" | "pin" | "fingerprint";
|
|
8852
8668
|
value: string | Record<string, unknown>;
|
|
@@ -8857,8 +8673,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8857
8673
|
};
|
|
8858
8674
|
}, {
|
|
8859
8675
|
kind: "merge";
|
|
8860
|
-
objectId: string;
|
|
8861
8676
|
objectKind: "person";
|
|
8677
|
+
objectId: string;
|
|
8862
8678
|
original: null;
|
|
8863
8679
|
props: {
|
|
8864
8680
|
type: string;
|
|
@@ -8866,10 +8682,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8866
8682
|
firstName: string;
|
|
8867
8683
|
lastName: string;
|
|
8868
8684
|
avatarId: string | null;
|
|
8869
|
-
validFrom: string | null;
|
|
8870
|
-
validTo: string | null;
|
|
8871
8685
|
accessSuspended: boolean;
|
|
8872
8686
|
staffMember: boolean;
|
|
8687
|
+
validFrom: string | null;
|
|
8688
|
+
validTo: string | null;
|
|
8873
8689
|
credentials: {
|
|
8874
8690
|
type: "card" | "pin" | "fingerprint";
|
|
8875
8691
|
value: string | Record<string, unknown>;
|
|
@@ -8913,10 +8729,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8913
8729
|
firstName: string;
|
|
8914
8730
|
lastName: string;
|
|
8915
8731
|
avatarId: string | null;
|
|
8916
|
-
validFrom: string | null;
|
|
8917
|
-
validTo: string | null;
|
|
8918
8732
|
accessSuspended: boolean;
|
|
8919
8733
|
staffMember: boolean;
|
|
8734
|
+
validFrom: string | null;
|
|
8735
|
+
validTo: string | null;
|
|
8920
8736
|
credentials: {
|
|
8921
8737
|
type: "card" | "pin" | "fingerprint";
|
|
8922
8738
|
value: string | Record<string, unknown>;
|
|
@@ -8930,10 +8746,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8930
8746
|
firstName: string;
|
|
8931
8747
|
lastName: string;
|
|
8932
8748
|
avatarId: string | null;
|
|
8933
|
-
validFrom: string | null;
|
|
8934
|
-
validTo: string | null;
|
|
8935
8749
|
accessSuspended: boolean;
|
|
8936
8750
|
staffMember: boolean;
|
|
8751
|
+
validFrom: string | null;
|
|
8752
|
+
validTo: string | null;
|
|
8937
8753
|
credentials: {
|
|
8938
8754
|
type: "card" | "pin" | "fingerprint";
|
|
8939
8755
|
value: string | Record<string, unknown>;
|
|
@@ -8973,10 +8789,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8973
8789
|
firstName?: string | undefined;
|
|
8974
8790
|
lastName?: string | undefined;
|
|
8975
8791
|
avatarId?: string | null | undefined;
|
|
8976
|
-
validFrom?: string | null | undefined;
|
|
8977
|
-
validTo?: string | null | undefined;
|
|
8978
8792
|
accessSuspended?: boolean | undefined;
|
|
8979
8793
|
staffMember?: boolean | undefined;
|
|
8794
|
+
validFrom?: string | null | undefined;
|
|
8795
|
+
validTo?: string | null | undefined;
|
|
8980
8796
|
credentials?: {
|
|
8981
8797
|
type: "card" | "pin" | "fingerprint";
|
|
8982
8798
|
value: string | Record<string, unknown>;
|
|
@@ -8990,10 +8806,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
8990
8806
|
firstName?: string | undefined;
|
|
8991
8807
|
lastName?: string | undefined;
|
|
8992
8808
|
avatarId?: string | null | undefined;
|
|
8993
|
-
validFrom?: string | null | undefined;
|
|
8994
|
-
validTo?: string | null | undefined;
|
|
8995
8809
|
accessSuspended?: boolean | undefined;
|
|
8996
8810
|
staffMember?: boolean | undefined;
|
|
8811
|
+
validFrom?: string | null | undefined;
|
|
8812
|
+
validTo?: string | null | undefined;
|
|
8997
8813
|
credentials?: {
|
|
8998
8814
|
type: "card" | "pin" | "fingerprint";
|
|
8999
8815
|
value: string | Record<string, unknown>;
|
|
@@ -9004,18 +8820,18 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9004
8820
|
}>;
|
|
9005
8821
|
}, "strip", z.ZodTypeAny, {
|
|
9006
8822
|
kind: "merge";
|
|
9007
|
-
objectId: string;
|
|
9008
8823
|
objectKind: "person";
|
|
8824
|
+
objectId: string;
|
|
9009
8825
|
original: {
|
|
9010
8826
|
type: string;
|
|
9011
8827
|
position: string | null;
|
|
9012
8828
|
firstName: string;
|
|
9013
8829
|
lastName: string;
|
|
9014
8830
|
avatarId: string | null;
|
|
9015
|
-
validFrom: string | null;
|
|
9016
|
-
validTo: string | null;
|
|
9017
8831
|
accessSuspended: boolean;
|
|
9018
8832
|
staffMember: boolean;
|
|
8833
|
+
validFrom: string | null;
|
|
8834
|
+
validTo: string | null;
|
|
9019
8835
|
credentials: {
|
|
9020
8836
|
type: "card" | "pin" | "fingerprint";
|
|
9021
8837
|
value: string | Record<string, unknown>;
|
|
@@ -9030,10 +8846,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9030
8846
|
firstName?: string | undefined;
|
|
9031
8847
|
lastName?: string | undefined;
|
|
9032
8848
|
avatarId?: string | null | undefined;
|
|
9033
|
-
validFrom?: string | null | undefined;
|
|
9034
|
-
validTo?: string | null | undefined;
|
|
9035
8849
|
accessSuspended?: boolean | undefined;
|
|
9036
8850
|
staffMember?: boolean | undefined;
|
|
8851
|
+
validFrom?: string | null | undefined;
|
|
8852
|
+
validTo?: string | null | undefined;
|
|
9037
8853
|
credentials?: {
|
|
9038
8854
|
type: "card" | "pin" | "fingerprint";
|
|
9039
8855
|
value: string | Record<string, unknown>;
|
|
@@ -9044,18 +8860,18 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9044
8860
|
};
|
|
9045
8861
|
}, {
|
|
9046
8862
|
kind: "merge";
|
|
9047
|
-
objectId: string;
|
|
9048
8863
|
objectKind: "person";
|
|
8864
|
+
objectId: string;
|
|
9049
8865
|
original: {
|
|
9050
8866
|
type: string;
|
|
9051
8867
|
position: string | null;
|
|
9052
8868
|
firstName: string;
|
|
9053
8869
|
lastName: string;
|
|
9054
8870
|
avatarId: string | null;
|
|
9055
|
-
validFrom: string | null;
|
|
9056
|
-
validTo: string | null;
|
|
9057
8871
|
accessSuspended: boolean;
|
|
9058
8872
|
staffMember: boolean;
|
|
8873
|
+
validFrom: string | null;
|
|
8874
|
+
validTo: string | null;
|
|
9059
8875
|
credentials: {
|
|
9060
8876
|
type: "card" | "pin" | "fingerprint";
|
|
9061
8877
|
value: string | Record<string, unknown>;
|
|
@@ -9070,10 +8886,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9070
8886
|
firstName?: string | undefined;
|
|
9071
8887
|
lastName?: string | undefined;
|
|
9072
8888
|
avatarId?: string | null | undefined;
|
|
9073
|
-
validFrom?: string | null | undefined;
|
|
9074
|
-
validTo?: string | null | undefined;
|
|
9075
8889
|
accessSuspended?: boolean | undefined;
|
|
9076
8890
|
staffMember?: boolean | undefined;
|
|
8891
|
+
validFrom?: string | null | undefined;
|
|
8892
|
+
validTo?: string | null | undefined;
|
|
9077
8893
|
credentials?: {
|
|
9078
8894
|
type: "card" | "pin" | "fingerprint";
|
|
9079
8895
|
value: string | Record<string, unknown>;
|
|
@@ -9099,8 +8915,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9099
8915
|
}>;
|
|
9100
8916
|
}, "strip", z.ZodTypeAny, {
|
|
9101
8917
|
kind: "merge";
|
|
9102
|
-
objectId: string;
|
|
9103
8918
|
objectKind: "zone";
|
|
8919
|
+
objectId: string;
|
|
9104
8920
|
original: null;
|
|
9105
8921
|
props: {
|
|
9106
8922
|
displayName: string;
|
|
@@ -9108,8 +8924,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9108
8924
|
};
|
|
9109
8925
|
}, {
|
|
9110
8926
|
kind: "merge";
|
|
9111
|
-
objectId: string;
|
|
9112
8927
|
objectKind: "zone";
|
|
8928
|
+
objectId: string;
|
|
9113
8929
|
original: null;
|
|
9114
8930
|
props: {
|
|
9115
8931
|
displayName: string;
|
|
@@ -9141,8 +8957,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9141
8957
|
}>;
|
|
9142
8958
|
}, "strip", z.ZodTypeAny, {
|
|
9143
8959
|
kind: "merge";
|
|
9144
|
-
objectId: string;
|
|
9145
8960
|
objectKind: "zone";
|
|
8961
|
+
objectId: string;
|
|
9146
8962
|
original: {
|
|
9147
8963
|
displayName: string;
|
|
9148
8964
|
devices: string[];
|
|
@@ -9153,8 +8969,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9153
8969
|
};
|
|
9154
8970
|
}, {
|
|
9155
8971
|
kind: "merge";
|
|
9156
|
-
objectId: string;
|
|
9157
8972
|
objectKind: "zone";
|
|
8973
|
+
objectId: string;
|
|
9158
8974
|
original: {
|
|
9159
8975
|
displayName: string;
|
|
9160
8976
|
devices: string[];
|
|
@@ -9215,8 +9031,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9215
9031
|
}>;
|
|
9216
9032
|
}, "strip", z.ZodTypeAny, {
|
|
9217
9033
|
kind: "delete";
|
|
9218
|
-
objectId: string;
|
|
9219
9034
|
objectKind: "accessRule";
|
|
9035
|
+
objectId: string;
|
|
9220
9036
|
original: {
|
|
9221
9037
|
displayName: string;
|
|
9222
9038
|
appliedTo: string[];
|
|
@@ -9231,8 +9047,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9231
9047
|
};
|
|
9232
9048
|
}, {
|
|
9233
9049
|
kind: "delete";
|
|
9234
|
-
objectId: string;
|
|
9235
9050
|
objectKind: "accessRule";
|
|
9051
|
+
objectId: string;
|
|
9236
9052
|
original: {
|
|
9237
9053
|
displayName: string;
|
|
9238
9054
|
appliedTo: string[];
|
|
@@ -9373,8 +9189,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9373
9189
|
}>;
|
|
9374
9190
|
}, "strip", z.ZodTypeAny, {
|
|
9375
9191
|
kind: "delete";
|
|
9376
|
-
objectId: string;
|
|
9377
9192
|
objectKind: "schedule";
|
|
9193
|
+
objectId: string;
|
|
9378
9194
|
original: {
|
|
9379
9195
|
include: {
|
|
9380
9196
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -9401,8 +9217,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9401
9217
|
};
|
|
9402
9218
|
}, {
|
|
9403
9219
|
kind: "delete";
|
|
9404
|
-
objectId: string;
|
|
9405
9220
|
objectKind: "schedule";
|
|
9221
|
+
objectId: string;
|
|
9406
9222
|
original: {
|
|
9407
9223
|
include: {
|
|
9408
9224
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -9462,10 +9278,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9462
9278
|
firstName: string;
|
|
9463
9279
|
lastName: string;
|
|
9464
9280
|
avatarId: string | null;
|
|
9465
|
-
validFrom: string | null;
|
|
9466
|
-
validTo: string | null;
|
|
9467
9281
|
accessSuspended: boolean;
|
|
9468
9282
|
staffMember: boolean;
|
|
9283
|
+
validFrom: string | null;
|
|
9284
|
+
validTo: string | null;
|
|
9469
9285
|
credentials: {
|
|
9470
9286
|
type: "card" | "pin" | "fingerprint";
|
|
9471
9287
|
value: string | Record<string, unknown>;
|
|
@@ -9479,10 +9295,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9479
9295
|
firstName: string;
|
|
9480
9296
|
lastName: string;
|
|
9481
9297
|
avatarId: string | null;
|
|
9482
|
-
validFrom: string | null;
|
|
9483
|
-
validTo: string | null;
|
|
9484
9298
|
accessSuspended: boolean;
|
|
9485
9299
|
staffMember: boolean;
|
|
9300
|
+
validFrom: string | null;
|
|
9301
|
+
validTo: string | null;
|
|
9486
9302
|
credentials: {
|
|
9487
9303
|
type: "card" | "pin" | "fingerprint";
|
|
9488
9304
|
value: string | Record<string, unknown>;
|
|
@@ -9493,18 +9309,18 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9493
9309
|
}>;
|
|
9494
9310
|
}, "strip", z.ZodTypeAny, {
|
|
9495
9311
|
kind: "delete";
|
|
9496
|
-
objectId: string;
|
|
9497
9312
|
objectKind: "person";
|
|
9313
|
+
objectId: string;
|
|
9498
9314
|
original: {
|
|
9499
9315
|
type: string;
|
|
9500
9316
|
position: string | null;
|
|
9501
9317
|
firstName: string;
|
|
9502
9318
|
lastName: string;
|
|
9503
9319
|
avatarId: string | null;
|
|
9504
|
-
validFrom: string | null;
|
|
9505
|
-
validTo: string | null;
|
|
9506
9320
|
accessSuspended: boolean;
|
|
9507
9321
|
staffMember: boolean;
|
|
9322
|
+
validFrom: string | null;
|
|
9323
|
+
validTo: string | null;
|
|
9508
9324
|
credentials: {
|
|
9509
9325
|
type: "card" | "pin" | "fingerprint";
|
|
9510
9326
|
value: string | Record<string, unknown>;
|
|
@@ -9515,18 +9331,18 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9515
9331
|
};
|
|
9516
9332
|
}, {
|
|
9517
9333
|
kind: "delete";
|
|
9518
|
-
objectId: string;
|
|
9519
9334
|
objectKind: "person";
|
|
9335
|
+
objectId: string;
|
|
9520
9336
|
original: {
|
|
9521
9337
|
type: string;
|
|
9522
9338
|
position: string | null;
|
|
9523
9339
|
firstName: string;
|
|
9524
9340
|
lastName: string;
|
|
9525
9341
|
avatarId: string | null;
|
|
9526
|
-
validFrom: string | null;
|
|
9527
|
-
validTo: string | null;
|
|
9528
9342
|
accessSuspended: boolean;
|
|
9529
9343
|
staffMember: boolean;
|
|
9344
|
+
validFrom: string | null;
|
|
9345
|
+
validTo: string | null;
|
|
9530
9346
|
credentials: {
|
|
9531
9347
|
type: "card" | "pin" | "fingerprint";
|
|
9532
9348
|
value: string | Record<string, unknown>;
|
|
@@ -9551,16 +9367,16 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9551
9367
|
}>;
|
|
9552
9368
|
}, "strip", z.ZodTypeAny, {
|
|
9553
9369
|
kind: "delete";
|
|
9554
|
-
objectId: string;
|
|
9555
9370
|
objectKind: "zone";
|
|
9371
|
+
objectId: string;
|
|
9556
9372
|
original: {
|
|
9557
9373
|
displayName: string;
|
|
9558
9374
|
devices: string[];
|
|
9559
9375
|
};
|
|
9560
9376
|
}, {
|
|
9561
9377
|
kind: "delete";
|
|
9562
|
-
objectId: string;
|
|
9563
9378
|
objectKind: "zone";
|
|
9379
|
+
objectId: string;
|
|
9564
9380
|
original: {
|
|
9565
9381
|
displayName: string;
|
|
9566
9382
|
devices: string[];
|
|
@@ -9568,13 +9384,13 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9568
9384
|
}>]>]>, "many">;
|
|
9569
9385
|
}, "strip", z.ZodTypeAny, {
|
|
9570
9386
|
kind: "apply-change";
|
|
9571
|
-
provider: string;
|
|
9572
9387
|
devices: Record<string, Record<string, unknown>>;
|
|
9388
|
+
provider: string;
|
|
9573
9389
|
refMap: Record<string, Record<string, string[]>>;
|
|
9574
9390
|
mutations: ({
|
|
9575
9391
|
kind: "merge";
|
|
9576
|
-
objectId: string;
|
|
9577
9392
|
objectKind: "accessRule";
|
|
9393
|
+
objectId: string;
|
|
9578
9394
|
original: null;
|
|
9579
9395
|
props: {
|
|
9580
9396
|
displayName: string;
|
|
@@ -9590,8 +9406,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9590
9406
|
};
|
|
9591
9407
|
} | {
|
|
9592
9408
|
kind: "merge";
|
|
9593
|
-
objectId: string;
|
|
9594
9409
|
objectKind: "accessRule";
|
|
9410
|
+
objectId: string;
|
|
9595
9411
|
original: {
|
|
9596
9412
|
displayName: string;
|
|
9597
9413
|
appliedTo: string[];
|
|
@@ -9618,8 +9434,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9618
9434
|
};
|
|
9619
9435
|
} | {
|
|
9620
9436
|
kind: "merge";
|
|
9621
|
-
objectId: string;
|
|
9622
9437
|
objectKind: "schedule";
|
|
9438
|
+
objectId: string;
|
|
9623
9439
|
original: null;
|
|
9624
9440
|
props: {
|
|
9625
9441
|
include: {
|
|
@@ -9647,8 +9463,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9647
9463
|
};
|
|
9648
9464
|
} | {
|
|
9649
9465
|
kind: "merge";
|
|
9650
|
-
objectId: string;
|
|
9651
9466
|
objectKind: "schedule";
|
|
9467
|
+
objectId: string;
|
|
9652
9468
|
original: {
|
|
9653
9469
|
include: {
|
|
9654
9470
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -9699,8 +9515,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9699
9515
|
};
|
|
9700
9516
|
} | {
|
|
9701
9517
|
kind: "merge";
|
|
9702
|
-
objectId: string;
|
|
9703
9518
|
objectKind: "person";
|
|
9519
|
+
objectId: string;
|
|
9704
9520
|
original: null;
|
|
9705
9521
|
props: {
|
|
9706
9522
|
type: string;
|
|
@@ -9708,10 +9524,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9708
9524
|
firstName: string;
|
|
9709
9525
|
lastName: string;
|
|
9710
9526
|
avatarId: string | null;
|
|
9711
|
-
validFrom: string | null;
|
|
9712
|
-
validTo: string | null;
|
|
9713
9527
|
accessSuspended: boolean;
|
|
9714
9528
|
staffMember: boolean;
|
|
9529
|
+
validFrom: string | null;
|
|
9530
|
+
validTo: string | null;
|
|
9715
9531
|
credentials: {
|
|
9716
9532
|
type: "card" | "pin" | "fingerprint";
|
|
9717
9533
|
value: string | Record<string, unknown>;
|
|
@@ -9722,18 +9538,18 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9722
9538
|
};
|
|
9723
9539
|
} | {
|
|
9724
9540
|
kind: "merge";
|
|
9725
|
-
objectId: string;
|
|
9726
9541
|
objectKind: "person";
|
|
9542
|
+
objectId: string;
|
|
9727
9543
|
original: {
|
|
9728
9544
|
type: string;
|
|
9729
9545
|
position: string | null;
|
|
9730
9546
|
firstName: string;
|
|
9731
9547
|
lastName: string;
|
|
9732
9548
|
avatarId: string | null;
|
|
9733
|
-
validFrom: string | null;
|
|
9734
|
-
validTo: string | null;
|
|
9735
9549
|
accessSuspended: boolean;
|
|
9736
9550
|
staffMember: boolean;
|
|
9551
|
+
validFrom: string | null;
|
|
9552
|
+
validTo: string | null;
|
|
9737
9553
|
credentials: {
|
|
9738
9554
|
type: "card" | "pin" | "fingerprint";
|
|
9739
9555
|
value: string | Record<string, unknown>;
|
|
@@ -9748,10 +9564,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9748
9564
|
firstName?: string | undefined;
|
|
9749
9565
|
lastName?: string | undefined;
|
|
9750
9566
|
avatarId?: string | null | undefined;
|
|
9751
|
-
validFrom?: string | null | undefined;
|
|
9752
|
-
validTo?: string | null | undefined;
|
|
9753
9567
|
accessSuspended?: boolean | undefined;
|
|
9754
9568
|
staffMember?: boolean | undefined;
|
|
9569
|
+
validFrom?: string | null | undefined;
|
|
9570
|
+
validTo?: string | null | undefined;
|
|
9755
9571
|
credentials?: {
|
|
9756
9572
|
type: "card" | "pin" | "fingerprint";
|
|
9757
9573
|
value: string | Record<string, unknown>;
|
|
@@ -9762,8 +9578,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9762
9578
|
};
|
|
9763
9579
|
} | {
|
|
9764
9580
|
kind: "merge";
|
|
9765
|
-
objectId: string;
|
|
9766
9581
|
objectKind: "zone";
|
|
9582
|
+
objectId: string;
|
|
9767
9583
|
original: null;
|
|
9768
9584
|
props: {
|
|
9769
9585
|
displayName: string;
|
|
@@ -9771,8 +9587,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9771
9587
|
};
|
|
9772
9588
|
} | {
|
|
9773
9589
|
kind: "merge";
|
|
9774
|
-
objectId: string;
|
|
9775
9590
|
objectKind: "zone";
|
|
9591
|
+
objectId: string;
|
|
9776
9592
|
original: {
|
|
9777
9593
|
displayName: string;
|
|
9778
9594
|
devices: string[];
|
|
@@ -9783,8 +9599,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9783
9599
|
};
|
|
9784
9600
|
} | {
|
|
9785
9601
|
kind: "delete";
|
|
9786
|
-
objectId: string;
|
|
9787
9602
|
objectKind: "accessRule";
|
|
9603
|
+
objectId: string;
|
|
9788
9604
|
original: {
|
|
9789
9605
|
displayName: string;
|
|
9790
9606
|
appliedTo: string[];
|
|
@@ -9799,8 +9615,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9799
9615
|
};
|
|
9800
9616
|
} | {
|
|
9801
9617
|
kind: "delete";
|
|
9802
|
-
objectId: string;
|
|
9803
9618
|
objectKind: "schedule";
|
|
9619
|
+
objectId: string;
|
|
9804
9620
|
original: {
|
|
9805
9621
|
include: {
|
|
9806
9622
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -9827,18 +9643,18 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9827
9643
|
};
|
|
9828
9644
|
} | {
|
|
9829
9645
|
kind: "delete";
|
|
9830
|
-
objectId: string;
|
|
9831
9646
|
objectKind: "person";
|
|
9647
|
+
objectId: string;
|
|
9832
9648
|
original: {
|
|
9833
9649
|
type: string;
|
|
9834
9650
|
position: string | null;
|
|
9835
9651
|
firstName: string;
|
|
9836
9652
|
lastName: string;
|
|
9837
9653
|
avatarId: string | null;
|
|
9838
|
-
validFrom: string | null;
|
|
9839
|
-
validTo: string | null;
|
|
9840
9654
|
accessSuspended: boolean;
|
|
9841
9655
|
staffMember: boolean;
|
|
9656
|
+
validFrom: string | null;
|
|
9657
|
+
validTo: string | null;
|
|
9842
9658
|
credentials: {
|
|
9843
9659
|
type: "card" | "pin" | "fingerprint";
|
|
9844
9660
|
value: string | Record<string, unknown>;
|
|
@@ -9849,8 +9665,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9849
9665
|
};
|
|
9850
9666
|
} | {
|
|
9851
9667
|
kind: "delete";
|
|
9852
|
-
objectId: string;
|
|
9853
9668
|
objectKind: "zone";
|
|
9669
|
+
objectId: string;
|
|
9854
9670
|
original: {
|
|
9855
9671
|
displayName: string;
|
|
9856
9672
|
devices: string[];
|
|
@@ -9858,13 +9674,13 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9858
9674
|
})[];
|
|
9859
9675
|
}, {
|
|
9860
9676
|
kind: "apply-change";
|
|
9861
|
-
provider: string;
|
|
9862
9677
|
devices: Record<string, Record<string, unknown>>;
|
|
9678
|
+
provider: string;
|
|
9863
9679
|
refMap: Record<string, Record<string, string[]>>;
|
|
9864
9680
|
mutations: ({
|
|
9865
9681
|
kind: "merge";
|
|
9866
|
-
objectId: string;
|
|
9867
9682
|
objectKind: "accessRule";
|
|
9683
|
+
objectId: string;
|
|
9868
9684
|
original: null;
|
|
9869
9685
|
props: {
|
|
9870
9686
|
displayName: string;
|
|
@@ -9880,8 +9696,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9880
9696
|
};
|
|
9881
9697
|
} | {
|
|
9882
9698
|
kind: "merge";
|
|
9883
|
-
objectId: string;
|
|
9884
9699
|
objectKind: "accessRule";
|
|
9700
|
+
objectId: string;
|
|
9885
9701
|
original: {
|
|
9886
9702
|
displayName: string;
|
|
9887
9703
|
appliedTo: string[];
|
|
@@ -9908,8 +9724,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9908
9724
|
};
|
|
9909
9725
|
} | {
|
|
9910
9726
|
kind: "merge";
|
|
9911
|
-
objectId: string;
|
|
9912
9727
|
objectKind: "schedule";
|
|
9728
|
+
objectId: string;
|
|
9913
9729
|
original: null;
|
|
9914
9730
|
props: {
|
|
9915
9731
|
include: {
|
|
@@ -9937,8 +9753,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9937
9753
|
};
|
|
9938
9754
|
} | {
|
|
9939
9755
|
kind: "merge";
|
|
9940
|
-
objectId: string;
|
|
9941
9756
|
objectKind: "schedule";
|
|
9757
|
+
objectId: string;
|
|
9942
9758
|
original: {
|
|
9943
9759
|
include: {
|
|
9944
9760
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -9989,8 +9805,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9989
9805
|
};
|
|
9990
9806
|
} | {
|
|
9991
9807
|
kind: "merge";
|
|
9992
|
-
objectId: string;
|
|
9993
9808
|
objectKind: "person";
|
|
9809
|
+
objectId: string;
|
|
9994
9810
|
original: null;
|
|
9995
9811
|
props: {
|
|
9996
9812
|
type: string;
|
|
@@ -9998,10 +9814,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
9998
9814
|
firstName: string;
|
|
9999
9815
|
lastName: string;
|
|
10000
9816
|
avatarId: string | null;
|
|
10001
|
-
validFrom: string | null;
|
|
10002
|
-
validTo: string | null;
|
|
10003
9817
|
accessSuspended: boolean;
|
|
10004
9818
|
staffMember: boolean;
|
|
9819
|
+
validFrom: string | null;
|
|
9820
|
+
validTo: string | null;
|
|
10005
9821
|
credentials: {
|
|
10006
9822
|
type: "card" | "pin" | "fingerprint";
|
|
10007
9823
|
value: string | Record<string, unknown>;
|
|
@@ -10012,18 +9828,18 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
10012
9828
|
};
|
|
10013
9829
|
} | {
|
|
10014
9830
|
kind: "merge";
|
|
10015
|
-
objectId: string;
|
|
10016
9831
|
objectKind: "person";
|
|
9832
|
+
objectId: string;
|
|
10017
9833
|
original: {
|
|
10018
9834
|
type: string;
|
|
10019
9835
|
position: string | null;
|
|
10020
9836
|
firstName: string;
|
|
10021
9837
|
lastName: string;
|
|
10022
9838
|
avatarId: string | null;
|
|
10023
|
-
validFrom: string | null;
|
|
10024
|
-
validTo: string | null;
|
|
10025
9839
|
accessSuspended: boolean;
|
|
10026
9840
|
staffMember: boolean;
|
|
9841
|
+
validFrom: string | null;
|
|
9842
|
+
validTo: string | null;
|
|
10027
9843
|
credentials: {
|
|
10028
9844
|
type: "card" | "pin" | "fingerprint";
|
|
10029
9845
|
value: string | Record<string, unknown>;
|
|
@@ -10038,10 +9854,10 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
10038
9854
|
firstName?: string | undefined;
|
|
10039
9855
|
lastName?: string | undefined;
|
|
10040
9856
|
avatarId?: string | null | undefined;
|
|
10041
|
-
validFrom?: string | null | undefined;
|
|
10042
|
-
validTo?: string | null | undefined;
|
|
10043
9857
|
accessSuspended?: boolean | undefined;
|
|
10044
9858
|
staffMember?: boolean | undefined;
|
|
9859
|
+
validFrom?: string | null | undefined;
|
|
9860
|
+
validTo?: string | null | undefined;
|
|
10045
9861
|
credentials?: {
|
|
10046
9862
|
type: "card" | "pin" | "fingerprint";
|
|
10047
9863
|
value: string | Record<string, unknown>;
|
|
@@ -10052,8 +9868,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
10052
9868
|
};
|
|
10053
9869
|
} | {
|
|
10054
9870
|
kind: "merge";
|
|
10055
|
-
objectId: string;
|
|
10056
9871
|
objectKind: "zone";
|
|
9872
|
+
objectId: string;
|
|
10057
9873
|
original: null;
|
|
10058
9874
|
props: {
|
|
10059
9875
|
displayName: string;
|
|
@@ -10061,8 +9877,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
10061
9877
|
};
|
|
10062
9878
|
} | {
|
|
10063
9879
|
kind: "merge";
|
|
10064
|
-
objectId: string;
|
|
10065
9880
|
objectKind: "zone";
|
|
9881
|
+
objectId: string;
|
|
10066
9882
|
original: {
|
|
10067
9883
|
displayName: string;
|
|
10068
9884
|
devices: string[];
|
|
@@ -10073,8 +9889,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
10073
9889
|
};
|
|
10074
9890
|
} | {
|
|
10075
9891
|
kind: "delete";
|
|
10076
|
-
objectId: string;
|
|
10077
9892
|
objectKind: "accessRule";
|
|
9893
|
+
objectId: string;
|
|
10078
9894
|
original: {
|
|
10079
9895
|
displayName: string;
|
|
10080
9896
|
appliedTo: string[];
|
|
@@ -10089,8 +9905,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
10089
9905
|
};
|
|
10090
9906
|
} | {
|
|
10091
9907
|
kind: "delete";
|
|
10092
|
-
objectId: string;
|
|
10093
9908
|
objectKind: "schedule";
|
|
9909
|
+
objectId: string;
|
|
10094
9910
|
original: {
|
|
10095
9911
|
include: {
|
|
10096
9912
|
repeat: "daily" | "weekly" | "monthly" | "yearly" | null;
|
|
@@ -10117,18 +9933,18 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
10117
9933
|
};
|
|
10118
9934
|
} | {
|
|
10119
9935
|
kind: "delete";
|
|
10120
|
-
objectId: string;
|
|
10121
9936
|
objectKind: "person";
|
|
9937
|
+
objectId: string;
|
|
10122
9938
|
original: {
|
|
10123
9939
|
type: string;
|
|
10124
9940
|
position: string | null;
|
|
10125
9941
|
firstName: string;
|
|
10126
9942
|
lastName: string;
|
|
10127
9943
|
avatarId: string | null;
|
|
10128
|
-
validFrom: string | null;
|
|
10129
|
-
validTo: string | null;
|
|
10130
9944
|
accessSuspended: boolean;
|
|
10131
9945
|
staffMember: boolean;
|
|
9946
|
+
validFrom: string | null;
|
|
9947
|
+
validTo: string | null;
|
|
10132
9948
|
credentials: {
|
|
10133
9949
|
type: "card" | "pin" | "fingerprint";
|
|
10134
9950
|
value: string | Record<string, unknown>;
|
|
@@ -10139,8 +9955,8 @@ export declare const sApplyChange: z.ZodObject<{
|
|
|
10139
9955
|
};
|
|
10140
9956
|
} | {
|
|
10141
9957
|
kind: "delete";
|
|
10142
|
-
objectId: string;
|
|
10143
9958
|
objectKind: "zone";
|
|
9959
|
+
objectId: string;
|
|
10144
9960
|
original: {
|
|
10145
9961
|
displayName: string;
|
|
10146
9962
|
devices: string[];
|
|
@@ -10223,13 +10039,6 @@ export type AccessApplyChange = z.infer<typeof sApplyChange>;
|
|
|
10223
10039
|
export type AccessApplyChangeRs = z.infer<typeof sApplyChangeRs>;
|
|
10224
10040
|
export type AccessApplyChangeProgress = z.infer<typeof sApplyChangeProgress>;
|
|
10225
10041
|
export type AccessAbortChange = z.infer<typeof sAbortChange>;
|
|
10226
|
-
export type AccessControlCapabilityReport = z.infer<typeof sAccessControlCapabilityReport>;
|
|
10227
|
-
export type AccessTokenSpecs = z.infer<typeof sTokenSpecs>;
|
|
10228
|
-
export type AccessObjectKind = z.infer<typeof sAccessObjectKind>;
|
|
10229
|
-
export type UiHint = z.infer<typeof sUiHint>;
|
|
10230
|
-
export type UiOrderHint = z.infer<typeof sUiOrderHint>;
|
|
10231
|
-
export type UiWidgetHint = z.infer<typeof sUiWidgetHint>;
|
|
10232
|
-
export type ProviderSpecs = z.infer<typeof sProviderSpecs>;
|
|
10233
10042
|
export type ConfigurationIssue = z.infer<typeof sConfigurationIssue>;
|
|
10234
10043
|
export type AccessRefMap = z.infer<typeof sRefMap>;
|
|
10235
10044
|
export type PayloadByKind = {
|