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
Copy file name to clipboardExpand all lines: src/lib/seam/connect/route-types.ts
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -38895,6 +38895,8 @@ export type Routes = {
38895
38895
event_type: 'lock.locked'
38896
38896
/** ID of the access code that was used to lock the device. */
38897
38897
access_code_id?: string | undefined
38898
+
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
38899
+
access_code_is_managed?: boolean | undefined
38898
38900
/** ID of the action attempt associated with the lock action. */
38899
38901
action_attempt_id?: string | undefined
38900
38902
/** Method by which the affected lock device was locked. When the method is `keycode`, the `access_code_id` indicates the access code that was used, if reported by the device. */
@@ -38933,6 +38935,8 @@ export type Routes = {
38933
38935
event_type: 'lock.unlocked'
38934
38936
/** ID of the access code that was used to unlock the affected device. */
38935
38937
access_code_id?: string | undefined
38938
+
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
38939
+
access_code_is_managed?: boolean | undefined
38936
38940
/** ID of the action attempt associated with the unlock action. */
38937
38941
action_attempt_id?: string | undefined
38938
38942
/** 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. */
@@ -41423,6 +41427,8 @@ export type Routes = {
41423
41427
event_type: 'lock.locked'
41424
41428
/** ID of the access code that was used to lock the device. */
41425
41429
access_code_id?: string | undefined
41430
+
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
41431
+
access_code_is_managed?: boolean | undefined
41426
41432
/** ID of the action attempt associated with the lock action. */
41427
41433
action_attempt_id?: string | undefined
41428
41434
/** Method by which the affected lock device was locked. When the method is `keycode`, the `access_code_id` indicates the access code that was used, if reported by the device. */
@@ -41456,6 +41462,8 @@ export type Routes = {
41456
41462
event_type: 'lock.unlocked'
41457
41463
/** ID of the access code that was used to unlock the affected device. */
41458
41464
access_code_id?: string | undefined
41465
+
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
41466
+
access_code_is_managed?: boolean | undefined
41459
41467
/** ID of the action attempt associated with the unlock action. */
41460
41468
action_attempt_id?: string | undefined
41461
41469
/** 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. */
@@ -65319,6 +65327,8 @@ export type Routes = {
65319
65327
event_type: 'lock.locked'
65320
65328
/** ID of the access code that was used to lock the device. */
65321
65329
access_code_id?: string | undefined
65330
+
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
65331
+
access_code_is_managed?: boolean | undefined
65322
65332
/** ID of the action attempt associated with the lock action. */
65323
65333
action_attempt_id?: string | undefined
65324
65334
/** Method by which the affected lock device was locked. When the method is `keycode`, the `access_code_id` indicates the access code that was used, if reported by the device. */
@@ -65352,6 +65362,8 @@ export type Routes = {
65352
65362
event_type: 'lock.unlocked'
65353
65363
/** ID of the access code that was used to unlock the affected device. */
65354
65364
access_code_id?: string | undefined
65365
+
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
65366
+
access_code_is_managed?: boolean | undefined
65355
65367
/** ID of the action attempt associated with the unlock action. */
65356
65368
action_attempt_id?: string | undefined
65357
65369
/** 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. */
@@ -99378,6 +99390,8 @@ export type Routes = {
99378
99390
event_type: 'lock.locked'
99379
99391
/** ID of the access code that was used to lock the device. */
99380
99392
access_code_id?: string | undefined
99393
+
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
99394
+
access_code_is_managed?: boolean | undefined
99381
99395
/** ID of the action attempt associated with the lock action. */
99382
99396
action_attempt_id?: string | undefined
99383
99397
/** Method by which the affected lock device was locked. When the method is `keycode`, the `access_code_id` indicates the access code that was used, if reported by the device. */
@@ -99416,6 +99430,8 @@ export type Routes = {
99416
99430
event_type: 'lock.unlocked'
99417
99431
/** ID of the access code that was used to unlock the affected device. */
99418
99432
access_code_id?: string | undefined
99433
+
/** Whether the access code is managed by Seam (true) or unmanaged (false). Only present when access_code_id is set. */
99434
+
access_code_is_managed?: boolean | undefined
99419
99435
/** ID of the action attempt associated with the unlock action. */
99420
99436
action_attempt_id?: string | undefined
99421
99437
/** 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