You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
Copy file name to clipboardExpand all lines: src/lib/seam/connect/route-types.ts
+100-4Lines changed: 100 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -38159,7 +38159,7 @@ export type Routes = {
38159
38159
/** Date and time at which the event occurred. */
38160
38160
occurred_at: string
38161
38161
/** ID of the affected device. */
38162
-
device_id: string
38162
+
device_id?: string | undefined
38163
38163
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
38164
38164
connected_account_id: string
38165
38165
/** Custom metadata of the device, present when device_id is provided. */
@@ -38186,6 +38186,30 @@ export type Routes = {
38186
38186
| 'automatic'
38187
38187
| 'unknown'
38188
38188
| 'seamapi'
38189
+
/**
38190
+
undocumented: Unreleased.
38191
+
---
38192
+
ID of the user identity associated with the unlock event.
38193
+
*/
38194
+
user_identity_id?: string | undefined
38195
+
/**
38196
+
undocumented: Unreleased.
38197
+
---
38198
+
ID of the ACS system associated with the unlock event.
38199
+
*/
38200
+
acs_system_id?: string | undefined
38201
+
/**
38202
+
undocumented: Unreleased.
38203
+
---
38204
+
ID of the ACS user associated with the unlock event.
38205
+
*/
38206
+
acs_user_id?: string | undefined
38207
+
/**
38208
+
undocumented: Unreleased.
38209
+
---
38210
+
ID of the ACS entrance associated with the unlock event.
38211
+
*/
38212
+
acs_entrance_id?: string | undefined
38189
38213
}
38190
38214
| {
38191
38215
/** ID of the event. */
@@ -40648,7 +40672,7 @@ export type Routes = {
40648
40672
/** Date and time at which the event occurred. */
40649
40673
occurred_at: string
40650
40674
/** ID of the affected device. */
40651
-
device_id: string
40675
+
device_id?: string | undefined
40652
40676
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
40653
40677
connected_account_id: string
40654
40678
/** Custom metadata of the device, present when device_id is provided. */
@@ -40670,6 +40694,30 @@ export type Routes = {
40670
40694
action_attempt_id?: string | undefined
40671
40695
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
ID of the user identity associated with the unlock event.
40701
+
*/
40702
+
user_identity_id?: string | undefined
40703
+
/**
40704
+
undocumented: Unreleased.
40705
+
---
40706
+
ID of the ACS system associated with the unlock event.
40707
+
*/
40708
+
acs_system_id?: string | undefined
40709
+
/**
40710
+
undocumented: Unreleased.
40711
+
---
40712
+
ID of the ACS user associated with the unlock event.
40713
+
*/
40714
+
acs_user_id?: string | undefined
40715
+
/**
40716
+
undocumented: Unreleased.
40717
+
---
40718
+
ID of the ACS entrance associated with the unlock event.
40719
+
*/
40720
+
acs_entrance_id?: string | undefined
40673
40721
}
40674
40722
| {
40675
40723
/** ID of the event. */
@@ -64316,7 +64364,7 @@ export type Routes = {
64316
64364
/** Date and time at which the event occurred. */
64317
64365
occurred_at: string
64318
64366
/** ID of the affected device. */
64319
-
device_id: string
64367
+
device_id?: string | undefined
64320
64368
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event. */
64321
64369
connected_account_id: string
64322
64370
/** Custom metadata of the device, present when device_id is provided. */
@@ -64338,6 +64386,30 @@ export type Routes = {
64338
64386
action_attempt_id?: string | undefined
64339
64387
/** Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
0 commit comments