@seamapi/types 1.985.0 → 1.987.0
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/lib/seam/connect/models/acs/acs-entrance.d.ts +4 -4
- package/lib/seam/connect/models/acs/acs-entrance.js +7 -4
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +2 -2
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -0
- package/lib/seam/connect/models/devices/device-metadata.js +9 -1
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +19 -0
- package/lib/seam/connect/models/devices/device.js +3 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +15 -0
- package/lib/seam/connect/models/events/connected-accounts.js +5 -4
- package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
- package/lib/seam/connect/models/events/devices.js +12 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +18 -18
- package/lib/seam/connect/openapi.js +48 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +197 -261
- package/package.json +2 -2
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +10 -9
- package/src/lib/seam/connect/models/devices/device-metadata.ts +11 -1
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/models/events/connected-accounts.ts +5 -4
- package/src/lib/seam/connect/models/events/devices.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +53 -16
- package/src/lib/seam/connect/route-types.ts +197 -261
|
@@ -11890,7 +11890,7 @@ export type Routes = {
|
|
|
11890
11890
|
model_number?: (string | undefined) | undefined;
|
|
11891
11891
|
} | undefined;
|
|
11892
11892
|
/** Metada for a Salto device.
|
|
11893
|
-
* @deprecated Use `salto_ks_metadata
|
|
11893
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
11894
11894
|
salto_metadata?: {
|
|
11895
11895
|
/** Lock ID for a Salto device. */
|
|
11896
11896
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -12101,10 +12101,14 @@ export type Routes = {
|
|
|
12101
12101
|
nest_metadata?: {
|
|
12102
12102
|
/** Device ID for a Google Nest device. */
|
|
12103
12103
|
nest_device_id?: (string | undefined) | undefined;
|
|
12104
|
+
/** ID of the Google Nest structure containing the device. */
|
|
12105
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
12104
12106
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
12105
12107
|
device_name?: (string | undefined) | undefined;
|
|
12106
12108
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
12107
12109
|
device_custom_name?: (string | undefined) | undefined;
|
|
12110
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
12111
|
+
structure_name?: (string | undefined) | undefined;
|
|
12108
12112
|
/** Display name for a Google Nest device. */
|
|
12109
12113
|
display_name?: (string | undefined) | undefined;
|
|
12110
12114
|
} | undefined;
|
|
@@ -12741,6 +12745,9 @@ export type Routes = {
|
|
|
12741
12745
|
/** Name of the device location.
|
|
12742
12746
|
*/
|
|
12743
12747
|
location_name?: string | undefined;
|
|
12748
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
12749
|
+
*/
|
|
12750
|
+
room_name?: string | undefined;
|
|
12744
12751
|
/** Time zone of the device location.
|
|
12745
12752
|
*/
|
|
12746
12753
|
time_zone?: string | undefined;
|
|
@@ -18790,7 +18797,7 @@ export type Routes = {
|
|
|
18790
18797
|
model_number?: (string | undefined) | undefined;
|
|
18791
18798
|
} | undefined;
|
|
18792
18799
|
/** Metada for a Salto device.
|
|
18793
|
-
* @deprecated Use `salto_ks_metadata
|
|
18800
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
18794
18801
|
salto_metadata?: {
|
|
18795
18802
|
/** Lock ID for a Salto device. */
|
|
18796
18803
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -19001,10 +19008,14 @@ export type Routes = {
|
|
|
19001
19008
|
nest_metadata?: {
|
|
19002
19009
|
/** Device ID for a Google Nest device. */
|
|
19003
19010
|
nest_device_id?: (string | undefined) | undefined;
|
|
19011
|
+
/** ID of the Google Nest structure containing the device. */
|
|
19012
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
19004
19013
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
19005
19014
|
device_name?: (string | undefined) | undefined;
|
|
19006
19015
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
19007
19016
|
device_custom_name?: (string | undefined) | undefined;
|
|
19017
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
19018
|
+
structure_name?: (string | undefined) | undefined;
|
|
19008
19019
|
/** Display name for a Google Nest device. */
|
|
19009
19020
|
display_name?: (string | undefined) | undefined;
|
|
19010
19021
|
} | undefined;
|
|
@@ -19641,6 +19652,9 @@ export type Routes = {
|
|
|
19641
19652
|
/** Name of the device location.
|
|
19642
19653
|
*/
|
|
19643
19654
|
location_name?: string | undefined;
|
|
19655
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
19656
|
+
*/
|
|
19657
|
+
room_name?: string | undefined;
|
|
19644
19658
|
/** Time zone of the device location.
|
|
19645
19659
|
*/
|
|
19646
19660
|
time_zone?: string | undefined;
|
|
@@ -42080,7 +42094,7 @@ export type Routes = {
|
|
|
42080
42094
|
model_number?: (string | undefined) | undefined;
|
|
42081
42095
|
} | undefined;
|
|
42082
42096
|
/** Metada for a Salto device.
|
|
42083
|
-
* @deprecated Use `salto_ks_metadata
|
|
42097
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
42084
42098
|
salto_metadata?: {
|
|
42085
42099
|
/** Lock ID for a Salto device. */
|
|
42086
42100
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -42291,10 +42305,14 @@ export type Routes = {
|
|
|
42291
42305
|
nest_metadata?: {
|
|
42292
42306
|
/** Device ID for a Google Nest device. */
|
|
42293
42307
|
nest_device_id?: (string | undefined) | undefined;
|
|
42308
|
+
/** ID of the Google Nest structure containing the device. */
|
|
42309
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
42294
42310
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
42295
42311
|
device_name?: (string | undefined) | undefined;
|
|
42296
42312
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
42297
42313
|
device_custom_name?: (string | undefined) | undefined;
|
|
42314
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
42315
|
+
structure_name?: (string | undefined) | undefined;
|
|
42298
42316
|
/** Display name for a Google Nest device. */
|
|
42299
42317
|
display_name?: (string | undefined) | undefined;
|
|
42300
42318
|
} | undefined;
|
|
@@ -42931,6 +42949,9 @@ export type Routes = {
|
|
|
42931
42949
|
/** Name of the device location.
|
|
42932
42950
|
*/
|
|
42933
42951
|
location_name?: string | undefined;
|
|
42952
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
42953
|
+
*/
|
|
42954
|
+
room_name?: string | undefined;
|
|
42934
42955
|
/** Time zone of the device location.
|
|
42935
42956
|
*/
|
|
42936
42957
|
time_zone?: string | undefined;
|
|
@@ -43599,7 +43620,7 @@ export type Routes = {
|
|
|
43599
43620
|
model_number?: (string | undefined) | undefined;
|
|
43600
43621
|
} | undefined;
|
|
43601
43622
|
/** Metada for a Salto device.
|
|
43602
|
-
* @deprecated Use `salto_ks_metadata
|
|
43623
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
43603
43624
|
salto_metadata?: {
|
|
43604
43625
|
/** Lock ID for a Salto device. */
|
|
43605
43626
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -43810,10 +43831,14 @@ export type Routes = {
|
|
|
43810
43831
|
nest_metadata?: {
|
|
43811
43832
|
/** Device ID for a Google Nest device. */
|
|
43812
43833
|
nest_device_id?: (string | undefined) | undefined;
|
|
43834
|
+
/** ID of the Google Nest structure containing the device. */
|
|
43835
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
43813
43836
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
43814
43837
|
device_name?: (string | undefined) | undefined;
|
|
43815
43838
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
43816
43839
|
device_custom_name?: (string | undefined) | undefined;
|
|
43840
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
43841
|
+
structure_name?: (string | undefined) | undefined;
|
|
43817
43842
|
/** Display name for a Google Nest device. */
|
|
43818
43843
|
display_name?: (string | undefined) | undefined;
|
|
43819
43844
|
} | undefined;
|
|
@@ -44450,6 +44475,9 @@ export type Routes = {
|
|
|
44450
44475
|
/** Name of the device location.
|
|
44451
44476
|
*/
|
|
44452
44477
|
location_name?: string | undefined;
|
|
44478
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
44479
|
+
*/
|
|
44480
|
+
room_name?: string | undefined;
|
|
44453
44481
|
/** Time zone of the device location.
|
|
44454
44482
|
*/
|
|
44455
44483
|
time_zone?: string | undefined;
|
|
@@ -45070,6 +45098,9 @@ export type Routes = {
|
|
|
45070
45098
|
/** Name of the device location.
|
|
45071
45099
|
*/
|
|
45072
45100
|
location_name?: string | undefined;
|
|
45101
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
45102
|
+
*/
|
|
45103
|
+
room_name?: string | undefined;
|
|
45073
45104
|
/** Time zone of the device location.
|
|
45074
45105
|
*/
|
|
45075
45106
|
time_zone?: string | undefined;
|
|
@@ -45594,6 +45625,9 @@ export type Routes = {
|
|
|
45594
45625
|
/** Name of the device location.
|
|
45595
45626
|
*/
|
|
45596
45627
|
location_name?: string | undefined;
|
|
45628
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
45629
|
+
*/
|
|
45630
|
+
room_name?: string | undefined;
|
|
45597
45631
|
/** Time zone of the device location.
|
|
45598
45632
|
*/
|
|
45599
45633
|
time_zone?: string | undefined;
|
|
@@ -47713,7 +47747,7 @@ export type Routes = {
|
|
|
47713
47747
|
[x: string]: string | boolean;
|
|
47714
47748
|
} | undefined;
|
|
47715
47749
|
event_type: 'connected_account.deleted';
|
|
47716
|
-
/**
|
|
47750
|
+
/** */
|
|
47717
47751
|
connected_account_type?: string | undefined;
|
|
47718
47752
|
/** The customer key associated with this connected account, if any. */
|
|
47719
47753
|
customer_key?: string | undefined;
|
|
@@ -48827,29 +48861,13 @@ export type Routes = {
|
|
|
48827
48861
|
action_attempt_id?: string | undefined;
|
|
48828
48862
|
/** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
|
|
48829
48863
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
|
|
48830
|
-
/**
|
|
48831
|
-
undocumented: Unreleased.
|
|
48832
|
-
---
|
|
48833
|
-
ID of the user identity associated with the lock event.
|
|
48834
|
-
*/
|
|
48864
|
+
/** ID of the user identity associated with the lock event. */
|
|
48835
48865
|
user_identity_id?: string | undefined;
|
|
48836
|
-
/**
|
|
48837
|
-
undocumented: Unreleased.
|
|
48838
|
-
---
|
|
48839
|
-
ID of the ACS system associated with the lock event.
|
|
48840
|
-
*/
|
|
48866
|
+
/** ID of the ACS system associated with the lock event. */
|
|
48841
48867
|
acs_system_id?: string | undefined;
|
|
48842
|
-
/**
|
|
48843
|
-
undocumented: Unreleased.
|
|
48844
|
-
---
|
|
48845
|
-
ID of the ACS user associated with the lock event.
|
|
48846
|
-
*/
|
|
48868
|
+
/** ID of the ACS user associated with the lock event. */
|
|
48847
48869
|
acs_user_id?: string | undefined;
|
|
48848
|
-
/**
|
|
48849
|
-
undocumented: Unreleased.
|
|
48850
|
-
---
|
|
48851
|
-
ID of the ACS entrance associated with the lock event.
|
|
48852
|
-
*/
|
|
48870
|
+
/** ID of the ACS entrance associated with the lock event. */
|
|
48853
48871
|
acs_entrance_id?: string | undefined;
|
|
48854
48872
|
/**
|
|
48855
48873
|
Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
@@ -48897,29 +48915,13 @@ export type Routes = {
|
|
|
48897
48915
|
action_attempt_id?: string | undefined;
|
|
48898
48916
|
/** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
|
|
48899
48917
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
|
|
48900
|
-
/**
|
|
48901
|
-
undocumented: Unreleased.
|
|
48902
|
-
---
|
|
48903
|
-
ID of the user identity associated with the unlock event.
|
|
48904
|
-
*/
|
|
48918
|
+
/** ID of the user identity associated with the unlock event. */
|
|
48905
48919
|
user_identity_id?: string | undefined;
|
|
48906
|
-
/**
|
|
48907
|
-
undocumented: Unreleased.
|
|
48908
|
-
---
|
|
48909
|
-
ID of the ACS system associated with the unlock event.
|
|
48910
|
-
*/
|
|
48920
|
+
/** ID of the ACS system associated with the unlock event. */
|
|
48911
48921
|
acs_system_id?: string | undefined;
|
|
48912
|
-
/**
|
|
48913
|
-
undocumented: Unreleased.
|
|
48914
|
-
---
|
|
48915
|
-
ID of the ACS user associated with the unlock event.
|
|
48916
|
-
*/
|
|
48922
|
+
/** ID of the ACS user associated with the unlock event. */
|
|
48917
48923
|
acs_user_id?: string | undefined;
|
|
48918
|
-
/**
|
|
48919
|
-
undocumented: Unreleased.
|
|
48920
|
-
---
|
|
48921
|
-
ID of the ACS entrance associated with the unlock event.
|
|
48922
|
-
*/
|
|
48924
|
+
/** ID of the ACS entrance associated with the unlock event. */
|
|
48923
48925
|
acs_entrance_id?: string | undefined;
|
|
48924
48926
|
/**
|
|
48925
48927
|
Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
@@ -48957,29 +48959,13 @@ export type Routes = {
|
|
|
48957
48959
|
event_type: 'lock.access_denied';
|
|
48958
48960
|
/** ID of the access code that was used in the unlock attempts. */
|
|
48959
48961
|
access_code_id?: string | undefined;
|
|
48960
|
-
/**
|
|
48961
|
-
undocumented: Unreleased.
|
|
48962
|
-
---
|
|
48963
|
-
ID of the user identity associated with the access-denied event.
|
|
48964
|
-
*/
|
|
48962
|
+
/** ID of the user identity associated with the access-denied event. */
|
|
48965
48963
|
user_identity_id?: string | undefined;
|
|
48966
|
-
/**
|
|
48967
|
-
undocumented: Unreleased.
|
|
48968
|
-
---
|
|
48969
|
-
ID of the ACS system associated with the access-denied event.
|
|
48970
|
-
*/
|
|
48964
|
+
/** ID of the ACS system associated with the access-denied event. */
|
|
48971
48965
|
acs_system_id?: string | undefined;
|
|
48972
|
-
/**
|
|
48973
|
-
undocumented: Unreleased.
|
|
48974
|
-
---
|
|
48975
|
-
ID of the ACS user associated with the access-denied event.
|
|
48976
|
-
*/
|
|
48966
|
+
/** ID of the ACS user associated with the access-denied event. */
|
|
48977
48967
|
acs_user_id?: string | undefined;
|
|
48978
|
-
/**
|
|
48979
|
-
undocumented: Unreleased.
|
|
48980
|
-
---
|
|
48981
|
-
ID of the ACS entrance associated with the access-denied event.
|
|
48982
|
-
*/
|
|
48968
|
+
/** ID of the ACS entrance associated with the access-denied event. */
|
|
48983
48969
|
acs_entrance_id?: string | undefined;
|
|
48984
48970
|
/** Why access was denied, when the provider reports a determinable cause. Omitted when unknown. */
|
|
48985
48971
|
reason?: {
|
|
@@ -51039,7 +51025,7 @@ export type Routes = {
|
|
|
51039
51025
|
[x: string]: string | boolean;
|
|
51040
51026
|
} | undefined;
|
|
51041
51027
|
event_type: 'connected_account.deleted';
|
|
51042
|
-
/**
|
|
51028
|
+
/** */
|
|
51043
51029
|
connected_account_type?: string | undefined;
|
|
51044
51030
|
/** The customer key associated with this connected account, if any. */
|
|
51045
51031
|
customer_key?: string | undefined;
|
|
@@ -52153,29 +52139,13 @@ export type Routes = {
|
|
|
52153
52139
|
action_attempt_id?: string | undefined;
|
|
52154
52140
|
/** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
|
|
52155
52141
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
|
|
52156
|
-
/**
|
|
52157
|
-
undocumented: Unreleased.
|
|
52158
|
-
---
|
|
52159
|
-
ID of the user identity associated with the lock event.
|
|
52160
|
-
*/
|
|
52142
|
+
/** ID of the user identity associated with the lock event. */
|
|
52161
52143
|
user_identity_id?: string | undefined;
|
|
52162
|
-
/**
|
|
52163
|
-
undocumented: Unreleased.
|
|
52164
|
-
---
|
|
52165
|
-
ID of the ACS system associated with the lock event.
|
|
52166
|
-
*/
|
|
52144
|
+
/** ID of the ACS system associated with the lock event. */
|
|
52167
52145
|
acs_system_id?: string | undefined;
|
|
52168
|
-
/**
|
|
52169
|
-
undocumented: Unreleased.
|
|
52170
|
-
---
|
|
52171
|
-
ID of the ACS user associated with the lock event.
|
|
52172
|
-
*/
|
|
52146
|
+
/** ID of the ACS user associated with the lock event. */
|
|
52173
52147
|
acs_user_id?: string | undefined;
|
|
52174
|
-
/**
|
|
52175
|
-
undocumented: Unreleased.
|
|
52176
|
-
---
|
|
52177
|
-
ID of the ACS entrance associated with the lock event.
|
|
52178
|
-
*/
|
|
52148
|
+
/** ID of the ACS entrance associated with the lock event. */
|
|
52179
52149
|
acs_entrance_id?: string | undefined;
|
|
52180
52150
|
/**
|
|
52181
52151
|
Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
@@ -52223,29 +52193,13 @@ export type Routes = {
|
|
|
52223
52193
|
action_attempt_id?: string | undefined;
|
|
52224
52194
|
/** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
|
|
52225
52195
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
|
|
52226
|
-
/**
|
|
52227
|
-
undocumented: Unreleased.
|
|
52228
|
-
---
|
|
52229
|
-
ID of the user identity associated with the unlock event.
|
|
52230
|
-
*/
|
|
52196
|
+
/** ID of the user identity associated with the unlock event. */
|
|
52231
52197
|
user_identity_id?: string | undefined;
|
|
52232
|
-
/**
|
|
52233
|
-
undocumented: Unreleased.
|
|
52234
|
-
---
|
|
52235
|
-
ID of the ACS system associated with the unlock event.
|
|
52236
|
-
*/
|
|
52198
|
+
/** ID of the ACS system associated with the unlock event. */
|
|
52237
52199
|
acs_system_id?: string | undefined;
|
|
52238
|
-
/**
|
|
52239
|
-
undocumented: Unreleased.
|
|
52240
|
-
---
|
|
52241
|
-
ID of the ACS user associated with the unlock event.
|
|
52242
|
-
*/
|
|
52200
|
+
/** ID of the ACS user associated with the unlock event. */
|
|
52243
52201
|
acs_user_id?: string | undefined;
|
|
52244
|
-
/**
|
|
52245
|
-
undocumented: Unreleased.
|
|
52246
|
-
---
|
|
52247
|
-
ID of the ACS entrance associated with the unlock event.
|
|
52248
|
-
*/
|
|
52202
|
+
/** ID of the ACS entrance associated with the unlock event. */
|
|
52249
52203
|
acs_entrance_id?: string | undefined;
|
|
52250
52204
|
/**
|
|
52251
52205
|
Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
@@ -52283,29 +52237,13 @@ export type Routes = {
|
|
|
52283
52237
|
event_type: 'lock.access_denied';
|
|
52284
52238
|
/** ID of the access code that was used in the unlock attempts. */
|
|
52285
52239
|
access_code_id?: string | undefined;
|
|
52286
|
-
/**
|
|
52287
|
-
undocumented: Unreleased.
|
|
52288
|
-
---
|
|
52289
|
-
ID of the user identity associated with the access-denied event.
|
|
52290
|
-
*/
|
|
52240
|
+
/** ID of the user identity associated with the access-denied event. */
|
|
52291
52241
|
user_identity_id?: string | undefined;
|
|
52292
|
-
/**
|
|
52293
|
-
undocumented: Unreleased.
|
|
52294
|
-
---
|
|
52295
|
-
ID of the ACS system associated with the access-denied event.
|
|
52296
|
-
*/
|
|
52242
|
+
/** ID of the ACS system associated with the access-denied event. */
|
|
52297
52243
|
acs_system_id?: string | undefined;
|
|
52298
|
-
/**
|
|
52299
|
-
undocumented: Unreleased.
|
|
52300
|
-
---
|
|
52301
|
-
ID of the ACS user associated with the access-denied event.
|
|
52302
|
-
*/
|
|
52244
|
+
/** ID of the ACS user associated with the access-denied event. */
|
|
52303
52245
|
acs_user_id?: string | undefined;
|
|
52304
|
-
/**
|
|
52305
|
-
undocumented: Unreleased.
|
|
52306
|
-
---
|
|
52307
|
-
ID of the ACS entrance associated with the access-denied event.
|
|
52308
|
-
*/
|
|
52246
|
+
/** ID of the ACS entrance associated with the access-denied event. */
|
|
52309
52247
|
acs_entrance_id?: string | undefined;
|
|
52310
52248
|
/** Why access was denied, when the provider reports a determinable cause. Omitted when unknown. */
|
|
52311
52249
|
reason?: {
|
|
@@ -54782,7 +54720,7 @@ export type Routes = {
|
|
|
54782
54720
|
model_number?: (string | undefined) | undefined;
|
|
54783
54721
|
} | undefined;
|
|
54784
54722
|
/** Metada for a Salto device.
|
|
54785
|
-
* @deprecated Use `salto_ks_metadata
|
|
54723
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
54786
54724
|
salto_metadata?: {
|
|
54787
54725
|
/** Lock ID for a Salto device. */
|
|
54788
54726
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -54993,10 +54931,14 @@ export type Routes = {
|
|
|
54993
54931
|
nest_metadata?: {
|
|
54994
54932
|
/** Device ID for a Google Nest device. */
|
|
54995
54933
|
nest_device_id?: (string | undefined) | undefined;
|
|
54934
|
+
/** ID of the Google Nest structure containing the device. */
|
|
54935
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
54996
54936
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
54997
54937
|
device_name?: (string | undefined) | undefined;
|
|
54998
54938
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
54999
54939
|
device_custom_name?: (string | undefined) | undefined;
|
|
54940
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
54941
|
+
structure_name?: (string | undefined) | undefined;
|
|
55000
54942
|
/** Display name for a Google Nest device. */
|
|
55001
54943
|
display_name?: (string | undefined) | undefined;
|
|
55002
54944
|
} | undefined;
|
|
@@ -55633,6 +55575,9 @@ export type Routes = {
|
|
|
55633
55575
|
/** Name of the device location.
|
|
55634
55576
|
*/
|
|
55635
55577
|
location_name?: string | undefined;
|
|
55578
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
55579
|
+
*/
|
|
55580
|
+
room_name?: string | undefined;
|
|
55636
55581
|
/** Time zone of the device location.
|
|
55637
55582
|
*/
|
|
55638
55583
|
time_zone?: string | undefined;
|
|
@@ -56251,7 +56196,7 @@ export type Routes = {
|
|
|
56251
56196
|
model_number?: (string | undefined) | undefined;
|
|
56252
56197
|
} | undefined;
|
|
56253
56198
|
/** Metada for a Salto device.
|
|
56254
|
-
* @deprecated Use `salto_ks_metadata
|
|
56199
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
56255
56200
|
salto_metadata?: {
|
|
56256
56201
|
/** Lock ID for a Salto device. */
|
|
56257
56202
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -56462,10 +56407,14 @@ export type Routes = {
|
|
|
56462
56407
|
nest_metadata?: {
|
|
56463
56408
|
/** Device ID for a Google Nest device. */
|
|
56464
56409
|
nest_device_id?: (string | undefined) | undefined;
|
|
56410
|
+
/** ID of the Google Nest structure containing the device. */
|
|
56411
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
56465
56412
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
56466
56413
|
device_name?: (string | undefined) | undefined;
|
|
56467
56414
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
56468
56415
|
device_custom_name?: (string | undefined) | undefined;
|
|
56416
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
56417
|
+
structure_name?: (string | undefined) | undefined;
|
|
56469
56418
|
/** Display name for a Google Nest device. */
|
|
56470
56419
|
display_name?: (string | undefined) | undefined;
|
|
56471
56420
|
} | undefined;
|
|
@@ -57102,6 +57051,9 @@ export type Routes = {
|
|
|
57102
57051
|
/** Name of the device location.
|
|
57103
57052
|
*/
|
|
57104
57053
|
location_name?: string | undefined;
|
|
57054
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
57055
|
+
*/
|
|
57056
|
+
room_name?: string | undefined;
|
|
57105
57057
|
/** Time zone of the device location.
|
|
57106
57058
|
*/
|
|
57107
57059
|
time_zone?: string | undefined;
|
|
@@ -57770,7 +57722,7 @@ export type Routes = {
|
|
|
57770
57722
|
model_number?: (string | undefined) | undefined;
|
|
57771
57723
|
} | undefined;
|
|
57772
57724
|
/** Metada for a Salto device.
|
|
57773
|
-
* @deprecated Use `salto_ks_metadata
|
|
57725
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
57774
57726
|
salto_metadata?: {
|
|
57775
57727
|
/** Lock ID for a Salto device. */
|
|
57776
57728
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -57981,10 +57933,14 @@ export type Routes = {
|
|
|
57981
57933
|
nest_metadata?: {
|
|
57982
57934
|
/** Device ID for a Google Nest device. */
|
|
57983
57935
|
nest_device_id?: (string | undefined) | undefined;
|
|
57936
|
+
/** ID of the Google Nest structure containing the device. */
|
|
57937
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
57984
57938
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
57985
57939
|
device_name?: (string | undefined) | undefined;
|
|
57986
57940
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
57987
57941
|
device_custom_name?: (string | undefined) | undefined;
|
|
57942
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
57943
|
+
structure_name?: (string | undefined) | undefined;
|
|
57988
57944
|
/** Display name for a Google Nest device. */
|
|
57989
57945
|
display_name?: (string | undefined) | undefined;
|
|
57990
57946
|
} | undefined;
|
|
@@ -58621,6 +58577,9 @@ export type Routes = {
|
|
|
58621
58577
|
/** Name of the device location.
|
|
58622
58578
|
*/
|
|
58623
58579
|
location_name?: string | undefined;
|
|
58580
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
58581
|
+
*/
|
|
58582
|
+
room_name?: string | undefined;
|
|
58624
58583
|
/** Time zone of the device location.
|
|
58625
58584
|
*/
|
|
58626
58585
|
time_zone?: string | undefined;
|
|
@@ -59238,7 +59197,7 @@ export type Routes = {
|
|
|
59238
59197
|
model_number?: (string | undefined) | undefined;
|
|
59239
59198
|
} | undefined;
|
|
59240
59199
|
/** Metada for a Salto device.
|
|
59241
|
-
* @deprecated Use `salto_ks_metadata
|
|
59200
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
59242
59201
|
salto_metadata?: {
|
|
59243
59202
|
/** Lock ID for a Salto device. */
|
|
59244
59203
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -59449,10 +59408,14 @@ export type Routes = {
|
|
|
59449
59408
|
nest_metadata?: {
|
|
59450
59409
|
/** Device ID for a Google Nest device. */
|
|
59451
59410
|
nest_device_id?: (string | undefined) | undefined;
|
|
59411
|
+
/** ID of the Google Nest structure containing the device. */
|
|
59412
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
59452
59413
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
59453
59414
|
device_name?: (string | undefined) | undefined;
|
|
59454
59415
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
59455
59416
|
device_custom_name?: (string | undefined) | undefined;
|
|
59417
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
59418
|
+
structure_name?: (string | undefined) | undefined;
|
|
59456
59419
|
/** Display name for a Google Nest device. */
|
|
59457
59420
|
display_name?: (string | undefined) | undefined;
|
|
59458
59421
|
} | undefined;
|
|
@@ -60089,6 +60052,9 @@ export type Routes = {
|
|
|
60089
60052
|
/** Name of the device location.
|
|
60090
60053
|
*/
|
|
60091
60054
|
location_name?: string | undefined;
|
|
60055
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
60056
|
+
*/
|
|
60057
|
+
room_name?: string | undefined;
|
|
60092
60058
|
/** Time zone of the device location.
|
|
60093
60059
|
*/
|
|
60094
60060
|
time_zone?: string | undefined;
|
|
@@ -67719,7 +67685,7 @@ export type Routes = {
|
|
|
67719
67685
|
model_number?: (string | undefined) | undefined;
|
|
67720
67686
|
} | undefined;
|
|
67721
67687
|
/** Metada for a Salto device.
|
|
67722
|
-
* @deprecated Use `salto_ks_metadata
|
|
67688
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
67723
67689
|
salto_metadata?: {
|
|
67724
67690
|
/** Lock ID for a Salto device. */
|
|
67725
67691
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -67930,10 +67896,14 @@ export type Routes = {
|
|
|
67930
67896
|
nest_metadata?: {
|
|
67931
67897
|
/** Device ID for a Google Nest device. */
|
|
67932
67898
|
nest_device_id?: (string | undefined) | undefined;
|
|
67899
|
+
/** ID of the Google Nest structure containing the device. */
|
|
67900
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
67933
67901
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
67934
67902
|
device_name?: (string | undefined) | undefined;
|
|
67935
67903
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
67936
67904
|
device_custom_name?: (string | undefined) | undefined;
|
|
67905
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
67906
|
+
structure_name?: (string | undefined) | undefined;
|
|
67937
67907
|
/** Display name for a Google Nest device. */
|
|
67938
67908
|
display_name?: (string | undefined) | undefined;
|
|
67939
67909
|
} | undefined;
|
|
@@ -68570,6 +68540,9 @@ export type Routes = {
|
|
|
68570
68540
|
/** Name of the device location.
|
|
68571
68541
|
*/
|
|
68572
68542
|
location_name?: string | undefined;
|
|
68543
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
68544
|
+
*/
|
|
68545
|
+
room_name?: string | undefined;
|
|
68573
68546
|
/** Time zone of the device location.
|
|
68574
68547
|
*/
|
|
68575
68548
|
time_zone?: string | undefined;
|
|
@@ -69187,7 +69160,7 @@ export type Routes = {
|
|
|
69187
69160
|
model_number?: (string | undefined) | undefined;
|
|
69188
69161
|
} | undefined;
|
|
69189
69162
|
/** Metada for a Salto device.
|
|
69190
|
-
* @deprecated Use `salto_ks_metadata
|
|
69163
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
69191
69164
|
salto_metadata?: {
|
|
69192
69165
|
/** Lock ID for a Salto device. */
|
|
69193
69166
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -69398,10 +69371,14 @@ export type Routes = {
|
|
|
69398
69371
|
nest_metadata?: {
|
|
69399
69372
|
/** Device ID for a Google Nest device. */
|
|
69400
69373
|
nest_device_id?: (string | undefined) | undefined;
|
|
69374
|
+
/** ID of the Google Nest structure containing the device. */
|
|
69375
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
69401
69376
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
69402
69377
|
device_name?: (string | undefined) | undefined;
|
|
69403
69378
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
69404
69379
|
device_custom_name?: (string | undefined) | undefined;
|
|
69380
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
69381
|
+
structure_name?: (string | undefined) | undefined;
|
|
69405
69382
|
/** Display name for a Google Nest device. */
|
|
69406
69383
|
display_name?: (string | undefined) | undefined;
|
|
69407
69384
|
} | undefined;
|
|
@@ -70038,6 +70015,9 @@ export type Routes = {
|
|
|
70038
70015
|
/** Name of the device location.
|
|
70039
70016
|
*/
|
|
70040
70017
|
location_name?: string | undefined;
|
|
70018
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
70019
|
+
*/
|
|
70020
|
+
room_name?: string | undefined;
|
|
70041
70021
|
/** Time zone of the device location.
|
|
70042
70022
|
*/
|
|
70043
70023
|
time_zone?: string | undefined;
|
|
@@ -81810,7 +81790,7 @@ export type Routes = {
|
|
|
81810
81790
|
[x: string]: string | boolean;
|
|
81811
81791
|
} | undefined;
|
|
81812
81792
|
event_type: 'connected_account.deleted';
|
|
81813
|
-
/**
|
|
81793
|
+
/** */
|
|
81814
81794
|
connected_account_type?: string | undefined;
|
|
81815
81795
|
/** The customer key associated with this connected account, if any. */
|
|
81816
81796
|
customer_key?: string | undefined;
|
|
@@ -82924,29 +82904,13 @@ export type Routes = {
|
|
|
82924
82904
|
action_attempt_id?: string | undefined;
|
|
82925
82905
|
/** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
|
|
82926
82906
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
|
|
82927
|
-
/**
|
|
82928
|
-
undocumented: Unreleased.
|
|
82929
|
-
---
|
|
82930
|
-
ID of the user identity associated with the lock event.
|
|
82931
|
-
*/
|
|
82907
|
+
/** ID of the user identity associated with the lock event. */
|
|
82932
82908
|
user_identity_id?: string | undefined;
|
|
82933
|
-
/**
|
|
82934
|
-
undocumented: Unreleased.
|
|
82935
|
-
---
|
|
82936
|
-
ID of the ACS system associated with the lock event.
|
|
82937
|
-
*/
|
|
82909
|
+
/** ID of the ACS system associated with the lock event. */
|
|
82938
82910
|
acs_system_id?: string | undefined;
|
|
82939
|
-
/**
|
|
82940
|
-
undocumented: Unreleased.
|
|
82941
|
-
---
|
|
82942
|
-
ID of the ACS user associated with the lock event.
|
|
82943
|
-
*/
|
|
82911
|
+
/** ID of the ACS user associated with the lock event. */
|
|
82944
82912
|
acs_user_id?: string | undefined;
|
|
82945
|
-
/**
|
|
82946
|
-
undocumented: Unreleased.
|
|
82947
|
-
---
|
|
82948
|
-
ID of the ACS entrance associated with the lock event.
|
|
82949
|
-
*/
|
|
82913
|
+
/** ID of the ACS entrance associated with the lock event. */
|
|
82950
82914
|
acs_entrance_id?: string | undefined;
|
|
82951
82915
|
/**
|
|
82952
82916
|
Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
@@ -82994,29 +82958,13 @@ export type Routes = {
|
|
|
82994
82958
|
action_attempt_id?: string | undefined;
|
|
82995
82959
|
/** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
|
|
82996
82960
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
|
|
82997
|
-
/**
|
|
82998
|
-
undocumented: Unreleased.
|
|
82999
|
-
---
|
|
83000
|
-
ID of the user identity associated with the unlock event.
|
|
83001
|
-
*/
|
|
82961
|
+
/** ID of the user identity associated with the unlock event. */
|
|
83002
82962
|
user_identity_id?: string | undefined;
|
|
83003
|
-
/**
|
|
83004
|
-
undocumented: Unreleased.
|
|
83005
|
-
---
|
|
83006
|
-
ID of the ACS system associated with the unlock event.
|
|
83007
|
-
*/
|
|
82963
|
+
/** ID of the ACS system associated with the unlock event. */
|
|
83008
82964
|
acs_system_id?: string | undefined;
|
|
83009
|
-
/**
|
|
83010
|
-
undocumented: Unreleased.
|
|
83011
|
-
---
|
|
83012
|
-
ID of the ACS user associated with the unlock event.
|
|
83013
|
-
*/
|
|
82965
|
+
/** ID of the ACS user associated with the unlock event. */
|
|
83014
82966
|
acs_user_id?: string | undefined;
|
|
83015
|
-
/**
|
|
83016
|
-
undocumented: Unreleased.
|
|
83017
|
-
---
|
|
83018
|
-
ID of the ACS entrance associated with the unlock event.
|
|
83019
|
-
*/
|
|
82967
|
+
/** ID of the ACS entrance associated with the unlock event. */
|
|
83020
82968
|
acs_entrance_id?: string | undefined;
|
|
83021
82969
|
/**
|
|
83022
82970
|
Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
@@ -83054,29 +83002,13 @@ export type Routes = {
|
|
|
83054
83002
|
event_type: 'lock.access_denied';
|
|
83055
83003
|
/** ID of the access code that was used in the unlock attempts. */
|
|
83056
83004
|
access_code_id?: string | undefined;
|
|
83057
|
-
/**
|
|
83058
|
-
undocumented: Unreleased.
|
|
83059
|
-
---
|
|
83060
|
-
ID of the user identity associated with the access-denied event.
|
|
83061
|
-
*/
|
|
83005
|
+
/** ID of the user identity associated with the access-denied event. */
|
|
83062
83006
|
user_identity_id?: string | undefined;
|
|
83063
|
-
/**
|
|
83064
|
-
undocumented: Unreleased.
|
|
83065
|
-
---
|
|
83066
|
-
ID of the ACS system associated with the access-denied event.
|
|
83067
|
-
*/
|
|
83007
|
+
/** ID of the ACS system associated with the access-denied event. */
|
|
83068
83008
|
acs_system_id?: string | undefined;
|
|
83069
|
-
/**
|
|
83070
|
-
undocumented: Unreleased.
|
|
83071
|
-
---
|
|
83072
|
-
ID of the ACS user associated with the access-denied event.
|
|
83073
|
-
*/
|
|
83009
|
+
/** ID of the ACS user associated with the access-denied event. */
|
|
83074
83010
|
acs_user_id?: string | undefined;
|
|
83075
|
-
/**
|
|
83076
|
-
undocumented: Unreleased.
|
|
83077
|
-
---
|
|
83078
|
-
ID of the ACS entrance associated with the access-denied event.
|
|
83079
|
-
*/
|
|
83011
|
+
/** ID of the ACS entrance associated with the access-denied event. */
|
|
83080
83012
|
acs_entrance_id?: string | undefined;
|
|
83081
83013
|
/** Why access was denied, when the provider reports a determinable cause. Omitted when unknown. */
|
|
83082
83014
|
reason?: {
|
|
@@ -85955,7 +85887,7 @@ export type Routes = {
|
|
|
85955
85887
|
model_number?: (string | undefined) | undefined;
|
|
85956
85888
|
} | undefined;
|
|
85957
85889
|
/** Metada for a Salto device.
|
|
85958
|
-
* @deprecated Use `salto_ks_metadata
|
|
85890
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
85959
85891
|
salto_metadata?: {
|
|
85960
85892
|
/** Lock ID for a Salto device. */
|
|
85961
85893
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -86166,10 +86098,14 @@ export type Routes = {
|
|
|
86166
86098
|
nest_metadata?: {
|
|
86167
86099
|
/** Device ID for a Google Nest device. */
|
|
86168
86100
|
nest_device_id?: (string | undefined) | undefined;
|
|
86101
|
+
/** ID of the Google Nest structure containing the device. */
|
|
86102
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
86169
86103
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
86170
86104
|
device_name?: (string | undefined) | undefined;
|
|
86171
86105
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
86172
86106
|
device_custom_name?: (string | undefined) | undefined;
|
|
86107
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
86108
|
+
structure_name?: (string | undefined) | undefined;
|
|
86173
86109
|
/** Display name for a Google Nest device. */
|
|
86174
86110
|
display_name?: (string | undefined) | undefined;
|
|
86175
86111
|
} | undefined;
|
|
@@ -86806,6 +86742,9 @@ export type Routes = {
|
|
|
86806
86742
|
/** Name of the device location.
|
|
86807
86743
|
*/
|
|
86808
86744
|
location_name?: string | undefined;
|
|
86745
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
86746
|
+
*/
|
|
86747
|
+
room_name?: string | undefined;
|
|
86809
86748
|
/** Time zone of the device location.
|
|
86810
86749
|
*/
|
|
86811
86750
|
time_zone?: string | undefined;
|
|
@@ -93649,7 +93588,7 @@ export type Routes = {
|
|
|
93649
93588
|
model_number?: (string | undefined) | undefined;
|
|
93650
93589
|
} | undefined;
|
|
93651
93590
|
/** Metada for a Salto device.
|
|
93652
|
-
* @deprecated Use `salto_ks_metadata
|
|
93591
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
93653
93592
|
salto_metadata?: {
|
|
93654
93593
|
/** Lock ID for a Salto device. */
|
|
93655
93594
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -93860,10 +93799,14 @@ export type Routes = {
|
|
|
93860
93799
|
nest_metadata?: {
|
|
93861
93800
|
/** Device ID for a Google Nest device. */
|
|
93862
93801
|
nest_device_id?: (string | undefined) | undefined;
|
|
93802
|
+
/** ID of the Google Nest structure containing the device. */
|
|
93803
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
93863
93804
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
93864
93805
|
device_name?: (string | undefined) | undefined;
|
|
93865
93806
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
93866
93807
|
device_custom_name?: (string | undefined) | undefined;
|
|
93808
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
93809
|
+
structure_name?: (string | undefined) | undefined;
|
|
93867
93810
|
/** Display name for a Google Nest device. */
|
|
93868
93811
|
display_name?: (string | undefined) | undefined;
|
|
93869
93812
|
} | undefined;
|
|
@@ -94500,6 +94443,9 @@ export type Routes = {
|
|
|
94500
94443
|
/** Name of the device location.
|
|
94501
94444
|
*/
|
|
94502
94445
|
location_name?: string | undefined;
|
|
94446
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
94447
|
+
*/
|
|
94448
|
+
room_name?: string | undefined;
|
|
94503
94449
|
/** Time zone of the device location.
|
|
94504
94450
|
*/
|
|
94505
94451
|
time_zone?: string | undefined;
|
|
@@ -98662,7 +98608,7 @@ export type Routes = {
|
|
|
98662
98608
|
model_number?: (string | undefined) | undefined;
|
|
98663
98609
|
} | undefined;
|
|
98664
98610
|
/** Metada for a Salto device.
|
|
98665
|
-
* @deprecated Use `salto_ks_metadata
|
|
98611
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
98666
98612
|
salto_metadata?: {
|
|
98667
98613
|
/** Lock ID for a Salto device. */
|
|
98668
98614
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -98873,10 +98819,14 @@ export type Routes = {
|
|
|
98873
98819
|
nest_metadata?: {
|
|
98874
98820
|
/** Device ID for a Google Nest device. */
|
|
98875
98821
|
nest_device_id?: (string | undefined) | undefined;
|
|
98822
|
+
/** ID of the Google Nest structure containing the device. */
|
|
98823
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
98876
98824
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
98877
98825
|
device_name?: (string | undefined) | undefined;
|
|
98878
98826
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
98879
98827
|
device_custom_name?: (string | undefined) | undefined;
|
|
98828
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
98829
|
+
structure_name?: (string | undefined) | undefined;
|
|
98880
98830
|
/** Display name for a Google Nest device. */
|
|
98881
98831
|
display_name?: (string | undefined) | undefined;
|
|
98882
98832
|
} | undefined;
|
|
@@ -99513,6 +99463,9 @@ export type Routes = {
|
|
|
99513
99463
|
/** Name of the device location.
|
|
99514
99464
|
*/
|
|
99515
99465
|
location_name?: string | undefined;
|
|
99466
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
99467
|
+
*/
|
|
99468
|
+
room_name?: string | undefined;
|
|
99516
99469
|
/** Time zone of the device location.
|
|
99517
99470
|
*/
|
|
99518
99471
|
time_zone?: string | undefined;
|
|
@@ -100130,7 +100083,7 @@ export type Routes = {
|
|
|
100130
100083
|
model_number?: (string | undefined) | undefined;
|
|
100131
100084
|
} | undefined;
|
|
100132
100085
|
/** Metada for a Salto device.
|
|
100133
|
-
* @deprecated Use `salto_ks_metadata
|
|
100086
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
100134
100087
|
salto_metadata?: {
|
|
100135
100088
|
/** Lock ID for a Salto device. */
|
|
100136
100089
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -100341,10 +100294,14 @@ export type Routes = {
|
|
|
100341
100294
|
nest_metadata?: {
|
|
100342
100295
|
/** Device ID for a Google Nest device. */
|
|
100343
100296
|
nest_device_id?: (string | undefined) | undefined;
|
|
100297
|
+
/** ID of the Google Nest structure containing the device. */
|
|
100298
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
100344
100299
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
100345
100300
|
device_name?: (string | undefined) | undefined;
|
|
100346
100301
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
100347
100302
|
device_custom_name?: (string | undefined) | undefined;
|
|
100303
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
100304
|
+
structure_name?: (string | undefined) | undefined;
|
|
100348
100305
|
/** Display name for a Google Nest device. */
|
|
100349
100306
|
display_name?: (string | undefined) | undefined;
|
|
100350
100307
|
} | undefined;
|
|
@@ -100981,6 +100938,9 @@ export type Routes = {
|
|
|
100981
100938
|
/** Name of the device location.
|
|
100982
100939
|
*/
|
|
100983
100940
|
location_name?: string | undefined;
|
|
100941
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
100942
|
+
*/
|
|
100943
|
+
room_name?: string | undefined;
|
|
100984
100944
|
/** Time zone of the device location.
|
|
100985
100945
|
*/
|
|
100986
100946
|
time_zone?: string | undefined;
|
|
@@ -109556,7 +109516,7 @@ export type Routes = {
|
|
|
109556
109516
|
model_number?: (string | undefined) | undefined;
|
|
109557
109517
|
} | undefined;
|
|
109558
109518
|
/** Metada for a Salto device.
|
|
109559
|
-
* @deprecated Use `salto_ks_metadata
|
|
109519
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
109560
109520
|
salto_metadata?: {
|
|
109561
109521
|
/** Lock ID for a Salto device. */
|
|
109562
109522
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -109767,10 +109727,14 @@ export type Routes = {
|
|
|
109767
109727
|
nest_metadata?: {
|
|
109768
109728
|
/** Device ID for a Google Nest device. */
|
|
109769
109729
|
nest_device_id?: (string | undefined) | undefined;
|
|
109730
|
+
/** ID of the Google Nest structure containing the device. */
|
|
109731
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
109770
109732
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
109771
109733
|
device_name?: (string | undefined) | undefined;
|
|
109772
109734
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
109773
109735
|
device_custom_name?: (string | undefined) | undefined;
|
|
109736
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
109737
|
+
structure_name?: (string | undefined) | undefined;
|
|
109774
109738
|
/** Display name for a Google Nest device. */
|
|
109775
109739
|
display_name?: (string | undefined) | undefined;
|
|
109776
109740
|
} | undefined;
|
|
@@ -110407,6 +110371,9 @@ export type Routes = {
|
|
|
110407
110371
|
/** Name of the device location.
|
|
110408
110372
|
*/
|
|
110409
110373
|
location_name?: string | undefined;
|
|
110374
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
110375
|
+
*/
|
|
110376
|
+
room_name?: string | undefined;
|
|
110410
110377
|
/** Time zone of the device location.
|
|
110411
110378
|
*/
|
|
110412
110379
|
time_zone?: string | undefined;
|
|
@@ -111026,7 +110993,7 @@ export type Routes = {
|
|
|
111026
110993
|
model_number?: (string | undefined) | undefined;
|
|
111027
110994
|
} | undefined;
|
|
111028
110995
|
/** Metada for a Salto device.
|
|
111029
|
-
* @deprecated Use `salto_ks_metadata
|
|
110996
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
111030
110997
|
salto_metadata?: {
|
|
111031
110998
|
/** Lock ID for a Salto device. */
|
|
111032
110999
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -111237,10 +111204,14 @@ export type Routes = {
|
|
|
111237
111204
|
nest_metadata?: {
|
|
111238
111205
|
/** Device ID for a Google Nest device. */
|
|
111239
111206
|
nest_device_id?: (string | undefined) | undefined;
|
|
111207
|
+
/** ID of the Google Nest structure containing the device. */
|
|
111208
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
111240
111209
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
111241
111210
|
device_name?: (string | undefined) | undefined;
|
|
111242
111211
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
111243
111212
|
device_custom_name?: (string | undefined) | undefined;
|
|
111213
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
111214
|
+
structure_name?: (string | undefined) | undefined;
|
|
111244
111215
|
/** Display name for a Google Nest device. */
|
|
111245
111216
|
display_name?: (string | undefined) | undefined;
|
|
111246
111217
|
} | undefined;
|
|
@@ -111877,6 +111848,9 @@ export type Routes = {
|
|
|
111877
111848
|
/** Name of the device location.
|
|
111878
111849
|
*/
|
|
111879
111850
|
location_name?: string | undefined;
|
|
111851
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
111852
|
+
*/
|
|
111853
|
+
room_name?: string | undefined;
|
|
111880
111854
|
/** Time zone of the device location.
|
|
111881
111855
|
*/
|
|
111882
111856
|
time_zone?: string | undefined;
|
|
@@ -113787,7 +113761,7 @@ export type Routes = {
|
|
|
113787
113761
|
model_number?: (string | undefined) | undefined;
|
|
113788
113762
|
} | undefined;
|
|
113789
113763
|
/** Metada for a Salto device.
|
|
113790
|
-
* @deprecated Use `salto_ks_metadata
|
|
113764
|
+
* @deprecated Use `salto_ks_metadata` instead.*/
|
|
113791
113765
|
salto_metadata?: {
|
|
113792
113766
|
/** Lock ID for a Salto device. */
|
|
113793
113767
|
lock_id?: (string | undefined) | undefined;
|
|
@@ -113998,10 +113972,14 @@ export type Routes = {
|
|
|
113998
113972
|
nest_metadata?: {
|
|
113999
113973
|
/** Device ID for a Google Nest device. */
|
|
114000
113974
|
nest_device_id?: (string | undefined) | undefined;
|
|
113975
|
+
/** ID of the Google Nest structure containing the device. */
|
|
113976
|
+
nest_structure_id?: (string | undefined) | undefined;
|
|
114001
113977
|
/** Device name for a Google Nest device. Google sets this value. */
|
|
114002
113978
|
device_name?: (string | undefined) | undefined;
|
|
114003
113979
|
/** Custom device name for a Google Nest device. The device owner sets this value. */
|
|
114004
113980
|
device_custom_name?: (string | undefined) | undefined;
|
|
113981
|
+
/** Name of the Google Nest structure containing the device. The device owner sets this value. */
|
|
113982
|
+
structure_name?: (string | undefined) | undefined;
|
|
114005
113983
|
/** Display name for a Google Nest device. */
|
|
114006
113984
|
display_name?: (string | undefined) | undefined;
|
|
114007
113985
|
} | undefined;
|
|
@@ -114638,6 +114616,9 @@ export type Routes = {
|
|
|
114638
114616
|
/** Name of the device location.
|
|
114639
114617
|
*/
|
|
114640
114618
|
location_name?: string | undefined;
|
|
114619
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
114620
|
+
*/
|
|
114621
|
+
room_name?: string | undefined;
|
|
114641
114622
|
/** Time zone of the device location.
|
|
114642
114623
|
*/
|
|
114643
114624
|
time_zone?: string | undefined;
|
|
@@ -118031,6 +118012,9 @@ export type Routes = {
|
|
|
118031
118012
|
/** Name of the device location.
|
|
118032
118013
|
*/
|
|
118033
118014
|
location_name?: string | undefined;
|
|
118015
|
+
/** Name of the room within the device location, when the provider reports one.
|
|
118016
|
+
*/
|
|
118017
|
+
room_name?: string | undefined;
|
|
118034
118018
|
/** Time zone of the device location.
|
|
118035
118019
|
*/
|
|
118036
118020
|
time_zone?: string | undefined;
|
|
@@ -120653,7 +120637,7 @@ export type Routes = {
|
|
|
120653
120637
|
[x: string]: string | boolean;
|
|
120654
120638
|
} | undefined;
|
|
120655
120639
|
event_type: 'connected_account.deleted';
|
|
120656
|
-
/**
|
|
120640
|
+
/** */
|
|
120657
120641
|
connected_account_type?: string | undefined;
|
|
120658
120642
|
/** The customer key associated with this connected account, if any. */
|
|
120659
120643
|
customer_key?: string | undefined;
|
|
@@ -121767,29 +121751,13 @@ export type Routes = {
|
|
|
121767
121751
|
action_attempt_id?: string | undefined;
|
|
121768
121752
|
/** Method by which the lock was locked. `keycode`: an access code was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or button press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by an auto-relock timer. `unknown`: could not be determined. */
|
|
121769
121753
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
|
|
121770
|
-
/**
|
|
121771
|
-
undocumented: Unreleased.
|
|
121772
|
-
---
|
|
121773
|
-
ID of the user identity associated with the lock event.
|
|
121774
|
-
*/
|
|
121754
|
+
/** ID of the user identity associated with the lock event. */
|
|
121775
121755
|
user_identity_id?: string | undefined;
|
|
121776
|
-
/**
|
|
121777
|
-
undocumented: Unreleased.
|
|
121778
|
-
---
|
|
121779
|
-
ID of the ACS system associated with the lock event.
|
|
121780
|
-
*/
|
|
121756
|
+
/** ID of the ACS system associated with the lock event. */
|
|
121781
121757
|
acs_system_id?: string | undefined;
|
|
121782
|
-
/**
|
|
121783
|
-
undocumented: Unreleased.
|
|
121784
|
-
---
|
|
121785
|
-
ID of the ACS user associated with the lock event.
|
|
121786
|
-
*/
|
|
121758
|
+
/** ID of the ACS user associated with the lock event. */
|
|
121787
121759
|
acs_user_id?: string | undefined;
|
|
121788
|
-
/**
|
|
121789
|
-
undocumented: Unreleased.
|
|
121790
|
-
---
|
|
121791
|
-
ID of the ACS entrance associated with the lock event.
|
|
121792
|
-
*/
|
|
121760
|
+
/** ID of the ACS entrance associated with the lock event. */
|
|
121793
121761
|
acs_entrance_id?: string | undefined;
|
|
121794
121762
|
/**
|
|
121795
121763
|
Whether the lock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
@@ -121837,29 +121805,13 @@ export type Routes = {
|
|
|
121837
121805
|
action_attempt_id?: string | undefined;
|
|
121838
121806
|
/** Method by which the lock was unlocked. `keycode`: an [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes) was used (see `access_code_id`). `manual`: a physical action such as a thumbturn or handle press. `remote`: a remote action via an app, Bluetooth, or the Seam API (see `action_attempt_id` if Seam-initiated; see `is_via_bluetooth` or `is_via_nfc` for the transport). `automatic`: triggered automatically, for example by a time-based schedule. `unknown`: could not be determined. */
|
|
121839
121807
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'remote' | 'card';
|
|
121840
|
-
/**
|
|
121841
|
-
undocumented: Unreleased.
|
|
121842
|
-
---
|
|
121843
|
-
ID of the user identity associated with the unlock event.
|
|
121844
|
-
*/
|
|
121808
|
+
/** ID of the user identity associated with the unlock event. */
|
|
121845
121809
|
user_identity_id?: string | undefined;
|
|
121846
|
-
/**
|
|
121847
|
-
undocumented: Unreleased.
|
|
121848
|
-
---
|
|
121849
|
-
ID of the ACS system associated with the unlock event.
|
|
121850
|
-
*/
|
|
121810
|
+
/** ID of the ACS system associated with the unlock event. */
|
|
121851
121811
|
acs_system_id?: string | undefined;
|
|
121852
|
-
/**
|
|
121853
|
-
undocumented: Unreleased.
|
|
121854
|
-
---
|
|
121855
|
-
ID of the ACS user associated with the unlock event.
|
|
121856
|
-
*/
|
|
121812
|
+
/** ID of the ACS user associated with the unlock event. */
|
|
121857
121813
|
acs_user_id?: string | undefined;
|
|
121858
|
-
/**
|
|
121859
|
-
undocumented: Unreleased.
|
|
121860
|
-
---
|
|
121861
|
-
ID of the ACS entrance associated with the unlock event.
|
|
121862
|
-
*/
|
|
121814
|
+
/** ID of the ACS entrance associated with the unlock event. */
|
|
121863
121815
|
acs_entrance_id?: string | undefined;
|
|
121864
121816
|
/**
|
|
121865
121817
|
Whether the unlock action was performed over Bluetooth by a remote client (such as the provider's mobile app), rather than a direct physical interaction or a Seam-initiated remote action.
|
|
@@ -121897,29 +121849,13 @@ export type Routes = {
|
|
|
121897
121849
|
event_type: 'lock.access_denied';
|
|
121898
121850
|
/** ID of the access code that was used in the unlock attempts. */
|
|
121899
121851
|
access_code_id?: string | undefined;
|
|
121900
|
-
/**
|
|
121901
|
-
undocumented: Unreleased.
|
|
121902
|
-
---
|
|
121903
|
-
ID of the user identity associated with the access-denied event.
|
|
121904
|
-
*/
|
|
121852
|
+
/** ID of the user identity associated with the access-denied event. */
|
|
121905
121853
|
user_identity_id?: string | undefined;
|
|
121906
|
-
/**
|
|
121907
|
-
undocumented: Unreleased.
|
|
121908
|
-
---
|
|
121909
|
-
ID of the ACS system associated with the access-denied event.
|
|
121910
|
-
*/
|
|
121854
|
+
/** ID of the ACS system associated with the access-denied event. */
|
|
121911
121855
|
acs_system_id?: string | undefined;
|
|
121912
|
-
/**
|
|
121913
|
-
undocumented: Unreleased.
|
|
121914
|
-
---
|
|
121915
|
-
ID of the ACS user associated with the access-denied event.
|
|
121916
|
-
*/
|
|
121856
|
+
/** ID of the ACS user associated with the access-denied event. */
|
|
121917
121857
|
acs_user_id?: string | undefined;
|
|
121918
|
-
/**
|
|
121919
|
-
undocumented: Unreleased.
|
|
121920
|
-
---
|
|
121921
|
-
ID of the ACS entrance associated with the access-denied event.
|
|
121922
|
-
*/
|
|
121858
|
+
/** ID of the ACS entrance associated with the access-denied event. */
|
|
121923
121859
|
acs_entrance_id?: string | undefined;
|
|
121924
121860
|
/** Why access was denied, when the provider reports a determinable cause. Omitted when unknown. */
|
|
121925
121861
|
reason?: {
|