@seamapi/types 1.551.0 → 1.553.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/dist/connect.cjs +169 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1365 -125
- package/dist/index.cjs +169 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +8 -8
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +28 -28
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +16 -16
- package/lib/seam/connect/models/batch.d.ts +1176 -131
- package/lib/seam/connect/models/devices/device-metadata.d.ts +95 -0
- package/lib/seam/connect/models/devices/device-metadata.js +62 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
- package/lib/seam/connect/models/devices/device-type.js +8 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +136 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +98 -3
- package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
- package/lib/seam/connect/openapi.d.ts +100 -0
- package/lib/seam/connect/openapi.js +141 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +671 -25
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +62 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +18 -0
- package/src/lib/seam/connect/openapi.ts +153 -0
- package/src/lib/seam/connect/route-types.ts +671 -0
|
@@ -11480,6 +11480,7 @@ export type Routes = {
|
|
|
11480
11480
|
| 'tedee_lock'
|
|
11481
11481
|
| 'akiles_lock'
|
|
11482
11482
|
)
|
|
11483
|
+
| 'keynest_key'
|
|
11483
11484
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
11484
11485
|
| (
|
|
11485
11486
|
| 'ecobee_thermostat'
|
|
@@ -12126,8 +12127,46 @@ export type Routes = {
|
|
|
12126
12127
|
/** Metadata for a KeyNest device. */
|
|
12127
12128
|
keynest_metadata?:
|
|
12128
12129
|
| {
|
|
12130
|
+
/** Key ID for a KeyNest device. */
|
|
12131
|
+
key_id?: string | undefined
|
|
12129
12132
|
/** Device name for a KeyNest device. */
|
|
12130
12133
|
device_name?: string | undefined
|
|
12134
|
+
/** Property ID for a KeyNest device. */
|
|
12135
|
+
property_id?: (string | null) | undefined
|
|
12136
|
+
/** Property postcode for a KeyNest device. */
|
|
12137
|
+
property_postcode?: (string | null) | undefined
|
|
12138
|
+
/** Key notes for a KeyNest device. */
|
|
12139
|
+
key_notes?: (string | null) | undefined
|
|
12140
|
+
/** Subscription plan for a KeyNest device. */
|
|
12141
|
+
subscription_plan?: string | undefined
|
|
12142
|
+
/** Status type for a KeyNest device. */
|
|
12143
|
+
status_type?: string | undefined
|
|
12144
|
+
/** Current or last store ID for a KeyNest device. */
|
|
12145
|
+
current_or_last_store_id?: number | undefined
|
|
12146
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
12147
|
+
last_movement?: string | undefined
|
|
12148
|
+
/** Address for a KeyNest device. */
|
|
12149
|
+
address?: (string | null) | undefined
|
|
12150
|
+
/** Current status for a KeyNest device. */
|
|
12151
|
+
current_status?: (string | null) | undefined
|
|
12152
|
+
/** Current user name for a KeyNest device. */
|
|
12153
|
+
current_user_name?: (string | null) | undefined
|
|
12154
|
+
/** Current user email for a KeyNest device. */
|
|
12155
|
+
current_user_email?: (string | null) | undefined
|
|
12156
|
+
/** Current user phone number for a KeyNest device. */
|
|
12157
|
+
current_user_phone_number?: (string | null) | undefined
|
|
12158
|
+
/** Current user company for a KeyNest device. */
|
|
12159
|
+
current_user_company?: (string | null) | undefined
|
|
12160
|
+
/** Handover method for a KeyNest device. */
|
|
12161
|
+
handover_method?: (string | null) | undefined
|
|
12162
|
+
/** KeyNest app user for a KeyNest device. */
|
|
12163
|
+
keynest_app_user?: (string | null) | undefined
|
|
12164
|
+
/** Default office ID for a KeyNest device. */
|
|
12165
|
+
default_office_id?: number | undefined
|
|
12166
|
+
/** Fob ID for a KeyNest device. */
|
|
12167
|
+
fob_id?: number | undefined
|
|
12168
|
+
/** Whether the KeyNest device has a photo. */
|
|
12169
|
+
has_photo?: boolean | undefined
|
|
12131
12170
|
}
|
|
12132
12171
|
| undefined
|
|
12133
12172
|
}) &
|
|
@@ -15277,6 +15316,7 @@ export type Routes = {
|
|
|
15277
15316
|
| 'tedee_lock'
|
|
15278
15317
|
| 'akiles_lock'
|
|
15279
15318
|
)
|
|
15319
|
+
| 'keynest_key'
|
|
15280
15320
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
15281
15321
|
| (
|
|
15282
15322
|
| 'ecobee_thermostat'
|
|
@@ -15923,8 +15963,46 @@ export type Routes = {
|
|
|
15923
15963
|
/** Metadata for a KeyNest device. */
|
|
15924
15964
|
keynest_metadata?:
|
|
15925
15965
|
| {
|
|
15966
|
+
/** Key ID for a KeyNest device. */
|
|
15967
|
+
key_id?: string | undefined
|
|
15926
15968
|
/** Device name for a KeyNest device. */
|
|
15927
15969
|
device_name?: string | undefined
|
|
15970
|
+
/** Property ID for a KeyNest device. */
|
|
15971
|
+
property_id?: (string | null) | undefined
|
|
15972
|
+
/** Property postcode for a KeyNest device. */
|
|
15973
|
+
property_postcode?: (string | null) | undefined
|
|
15974
|
+
/** Key notes for a KeyNest device. */
|
|
15975
|
+
key_notes?: (string | null) | undefined
|
|
15976
|
+
/** Subscription plan for a KeyNest device. */
|
|
15977
|
+
subscription_plan?: string | undefined
|
|
15978
|
+
/** Status type for a KeyNest device. */
|
|
15979
|
+
status_type?: string | undefined
|
|
15980
|
+
/** Current or last store ID for a KeyNest device. */
|
|
15981
|
+
current_or_last_store_id?: number | undefined
|
|
15982
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
15983
|
+
last_movement?: string | undefined
|
|
15984
|
+
/** Address for a KeyNest device. */
|
|
15985
|
+
address?: (string | null) | undefined
|
|
15986
|
+
/** Current status for a KeyNest device. */
|
|
15987
|
+
current_status?: (string | null) | undefined
|
|
15988
|
+
/** Current user name for a KeyNest device. */
|
|
15989
|
+
current_user_name?: (string | null) | undefined
|
|
15990
|
+
/** Current user email for a KeyNest device. */
|
|
15991
|
+
current_user_email?: (string | null) | undefined
|
|
15992
|
+
/** Current user phone number for a KeyNest device. */
|
|
15993
|
+
current_user_phone_number?: (string | null) | undefined
|
|
15994
|
+
/** Current user company for a KeyNest device. */
|
|
15995
|
+
current_user_company?: (string | null) | undefined
|
|
15996
|
+
/** Handover method for a KeyNest device. */
|
|
15997
|
+
handover_method?: (string | null) | undefined
|
|
15998
|
+
/** KeyNest app user for a KeyNest device. */
|
|
15999
|
+
keynest_app_user?: (string | null) | undefined
|
|
16000
|
+
/** Default office ID for a KeyNest device. */
|
|
16001
|
+
default_office_id?: number | undefined
|
|
16002
|
+
/** Fob ID for a KeyNest device. */
|
|
16003
|
+
fob_id?: number | undefined
|
|
16004
|
+
/** Whether the KeyNest device has a photo. */
|
|
16005
|
+
has_photo?: boolean | undefined
|
|
15928
16006
|
}
|
|
15929
16007
|
| undefined
|
|
15930
16008
|
}) &
|
|
@@ -19516,6 +19594,7 @@ export type Routes = {
|
|
|
19516
19594
|
| 'tedee_lock'
|
|
19517
19595
|
| 'akiles_lock'
|
|
19518
19596
|
)
|
|
19597
|
+
| 'keynest_key'
|
|
19519
19598
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
19520
19599
|
| (
|
|
19521
19600
|
| 'ecobee_thermostat'
|
|
@@ -36892,6 +36971,7 @@ export type Routes = {
|
|
|
36892
36971
|
| 'tedee_lock'
|
|
36893
36972
|
| 'akiles_lock'
|
|
36894
36973
|
)
|
|
36974
|
+
| 'keynest_key'
|
|
36895
36975
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
36896
36976
|
| (
|
|
36897
36977
|
| 'ecobee_thermostat'
|
|
@@ -37538,8 +37618,46 @@ export type Routes = {
|
|
|
37538
37618
|
/** Metadata for a KeyNest device. */
|
|
37539
37619
|
keynest_metadata?:
|
|
37540
37620
|
| {
|
|
37621
|
+
/** Key ID for a KeyNest device. */
|
|
37622
|
+
key_id?: string | undefined
|
|
37541
37623
|
/** Device name for a KeyNest device. */
|
|
37542
37624
|
device_name?: string | undefined
|
|
37625
|
+
/** Property ID for a KeyNest device. */
|
|
37626
|
+
property_id?: (string | null) | undefined
|
|
37627
|
+
/** Property postcode for a KeyNest device. */
|
|
37628
|
+
property_postcode?: (string | null) | undefined
|
|
37629
|
+
/** Key notes for a KeyNest device. */
|
|
37630
|
+
key_notes?: (string | null) | undefined
|
|
37631
|
+
/** Subscription plan for a KeyNest device. */
|
|
37632
|
+
subscription_plan?: string | undefined
|
|
37633
|
+
/** Status type for a KeyNest device. */
|
|
37634
|
+
status_type?: string | undefined
|
|
37635
|
+
/** Current or last store ID for a KeyNest device. */
|
|
37636
|
+
current_or_last_store_id?: number | undefined
|
|
37637
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
37638
|
+
last_movement?: string | undefined
|
|
37639
|
+
/** Address for a KeyNest device. */
|
|
37640
|
+
address?: (string | null) | undefined
|
|
37641
|
+
/** Current status for a KeyNest device. */
|
|
37642
|
+
current_status?: (string | null) | undefined
|
|
37643
|
+
/** Current user name for a KeyNest device. */
|
|
37644
|
+
current_user_name?: (string | null) | undefined
|
|
37645
|
+
/** Current user email for a KeyNest device. */
|
|
37646
|
+
current_user_email?: (string | null) | undefined
|
|
37647
|
+
/** Current user phone number for a KeyNest device. */
|
|
37648
|
+
current_user_phone_number?: (string | null) | undefined
|
|
37649
|
+
/** Current user company for a KeyNest device. */
|
|
37650
|
+
current_user_company?: (string | null) | undefined
|
|
37651
|
+
/** Handover method for a KeyNest device. */
|
|
37652
|
+
handover_method?: (string | null) | undefined
|
|
37653
|
+
/** KeyNest app user for a KeyNest device. */
|
|
37654
|
+
keynest_app_user?: (string | null) | undefined
|
|
37655
|
+
/** Default office ID for a KeyNest device. */
|
|
37656
|
+
default_office_id?: number | undefined
|
|
37657
|
+
/** Fob ID for a KeyNest device. */
|
|
37658
|
+
fob_id?: number | undefined
|
|
37659
|
+
/** Whether the KeyNest device has a photo. */
|
|
37660
|
+
has_photo?: boolean | undefined
|
|
37543
37661
|
}
|
|
37544
37662
|
| undefined
|
|
37545
37663
|
}) &
|
|
@@ -38381,6 +38499,7 @@ export type Routes = {
|
|
|
38381
38499
|
| 'tedee_lock'
|
|
38382
38500
|
| 'akiles_lock'
|
|
38383
38501
|
)
|
|
38502
|
+
| 'keynest_key'
|
|
38384
38503
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
38385
38504
|
| (
|
|
38386
38505
|
| 'ecobee_thermostat'
|
|
@@ -38425,6 +38544,7 @@ export type Routes = {
|
|
|
38425
38544
|
| 'tedee_lock'
|
|
38426
38545
|
| 'akiles_lock'
|
|
38427
38546
|
)
|
|
38547
|
+
| 'keynest_key'
|
|
38428
38548
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
38429
38549
|
| (
|
|
38430
38550
|
| 'ecobee_thermostat'
|
|
@@ -38584,6 +38704,7 @@ export type Routes = {
|
|
|
38584
38704
|
| 'tedee_lock'
|
|
38585
38705
|
| 'akiles_lock'
|
|
38586
38706
|
)
|
|
38707
|
+
| 'keynest_key'
|
|
38587
38708
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
38588
38709
|
| (
|
|
38589
38710
|
| 'ecobee_thermostat'
|
|
@@ -39230,8 +39351,46 @@ export type Routes = {
|
|
|
39230
39351
|
/** Metadata for a KeyNest device. */
|
|
39231
39352
|
keynest_metadata?:
|
|
39232
39353
|
| {
|
|
39354
|
+
/** Key ID for a KeyNest device. */
|
|
39355
|
+
key_id?: string | undefined
|
|
39233
39356
|
/** Device name for a KeyNest device. */
|
|
39234
39357
|
device_name?: string | undefined
|
|
39358
|
+
/** Property ID for a KeyNest device. */
|
|
39359
|
+
property_id?: (string | null) | undefined
|
|
39360
|
+
/** Property postcode for a KeyNest device. */
|
|
39361
|
+
property_postcode?: (string | null) | undefined
|
|
39362
|
+
/** Key notes for a KeyNest device. */
|
|
39363
|
+
key_notes?: (string | null) | undefined
|
|
39364
|
+
/** Subscription plan for a KeyNest device. */
|
|
39365
|
+
subscription_plan?: string | undefined
|
|
39366
|
+
/** Status type for a KeyNest device. */
|
|
39367
|
+
status_type?: string | undefined
|
|
39368
|
+
/** Current or last store ID for a KeyNest device. */
|
|
39369
|
+
current_or_last_store_id?: number | undefined
|
|
39370
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
39371
|
+
last_movement?: string | undefined
|
|
39372
|
+
/** Address for a KeyNest device. */
|
|
39373
|
+
address?: (string | null) | undefined
|
|
39374
|
+
/** Current status for a KeyNest device. */
|
|
39375
|
+
current_status?: (string | null) | undefined
|
|
39376
|
+
/** Current user name for a KeyNest device. */
|
|
39377
|
+
current_user_name?: (string | null) | undefined
|
|
39378
|
+
/** Current user email for a KeyNest device. */
|
|
39379
|
+
current_user_email?: (string | null) | undefined
|
|
39380
|
+
/** Current user phone number for a KeyNest device. */
|
|
39381
|
+
current_user_phone_number?: (string | null) | undefined
|
|
39382
|
+
/** Current user company for a KeyNest device. */
|
|
39383
|
+
current_user_company?: (string | null) | undefined
|
|
39384
|
+
/** Handover method for a KeyNest device. */
|
|
39385
|
+
handover_method?: (string | null) | undefined
|
|
39386
|
+
/** KeyNest app user for a KeyNest device. */
|
|
39387
|
+
keynest_app_user?: (string | null) | undefined
|
|
39388
|
+
/** Default office ID for a KeyNest device. */
|
|
39389
|
+
default_office_id?: number | undefined
|
|
39390
|
+
/** Fob ID for a KeyNest device. */
|
|
39391
|
+
fob_id?: number | undefined
|
|
39392
|
+
/** Whether the KeyNest device has a photo. */
|
|
39393
|
+
has_photo?: boolean | undefined
|
|
39235
39394
|
}
|
|
39236
39395
|
| undefined
|
|
39237
39396
|
}) &
|
|
@@ -40254,6 +40413,7 @@ export type Routes = {
|
|
|
40254
40413
|
| 'tedee_lock'
|
|
40255
40414
|
| 'akiles_lock'
|
|
40256
40415
|
)
|
|
40416
|
+
| 'keynest_key'
|
|
40257
40417
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
40258
40418
|
| (
|
|
40259
40419
|
| 'ecobee_thermostat'
|
|
@@ -40746,6 +40906,7 @@ export type Routes = {
|
|
|
40746
40906
|
| 'tedee_lock'
|
|
40747
40907
|
| 'akiles_lock'
|
|
40748
40908
|
)
|
|
40909
|
+
| 'keynest_key'
|
|
40749
40910
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
40750
40911
|
| (
|
|
40751
40912
|
| 'ecobee_thermostat'
|
|
@@ -40790,6 +40951,7 @@ export type Routes = {
|
|
|
40790
40951
|
| 'tedee_lock'
|
|
40791
40952
|
| 'akiles_lock'
|
|
40792
40953
|
)
|
|
40954
|
+
| 'keynest_key'
|
|
40793
40955
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
40794
40956
|
| (
|
|
40795
40957
|
| 'ecobee_thermostat'
|
|
@@ -40949,6 +41111,7 @@ export type Routes = {
|
|
|
40949
41111
|
| 'tedee_lock'
|
|
40950
41112
|
| 'akiles_lock'
|
|
40951
41113
|
)
|
|
41114
|
+
| 'keynest_key'
|
|
40952
41115
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
40953
41116
|
| (
|
|
40954
41117
|
| 'ecobee_thermostat'
|
|
@@ -46227,6 +46390,7 @@ export type Routes = {
|
|
|
46227
46390
|
| 'tedee_lock'
|
|
46228
46391
|
| 'akiles_lock'
|
|
46229
46392
|
)
|
|
46393
|
+
| 'keynest_key'
|
|
46230
46394
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
46231
46395
|
| (
|
|
46232
46396
|
| 'ecobee_thermostat'
|
|
@@ -46873,8 +47037,46 @@ export type Routes = {
|
|
|
46873
47037
|
/** Metadata for a KeyNest device. */
|
|
46874
47038
|
keynest_metadata?:
|
|
46875
47039
|
| {
|
|
47040
|
+
/** Key ID for a KeyNest device. */
|
|
47041
|
+
key_id?: string | undefined
|
|
46876
47042
|
/** Device name for a KeyNest device. */
|
|
46877
47043
|
device_name?: string | undefined
|
|
47044
|
+
/** Property ID for a KeyNest device. */
|
|
47045
|
+
property_id?: (string | null) | undefined
|
|
47046
|
+
/** Property postcode for a KeyNest device. */
|
|
47047
|
+
property_postcode?: (string | null) | undefined
|
|
47048
|
+
/** Key notes for a KeyNest device. */
|
|
47049
|
+
key_notes?: (string | null) | undefined
|
|
47050
|
+
/** Subscription plan for a KeyNest device. */
|
|
47051
|
+
subscription_plan?: string | undefined
|
|
47052
|
+
/** Status type for a KeyNest device. */
|
|
47053
|
+
status_type?: string | undefined
|
|
47054
|
+
/** Current or last store ID for a KeyNest device. */
|
|
47055
|
+
current_or_last_store_id?: number | undefined
|
|
47056
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
47057
|
+
last_movement?: string | undefined
|
|
47058
|
+
/** Address for a KeyNest device. */
|
|
47059
|
+
address?: (string | null) | undefined
|
|
47060
|
+
/** Current status for a KeyNest device. */
|
|
47061
|
+
current_status?: (string | null) | undefined
|
|
47062
|
+
/** Current user name for a KeyNest device. */
|
|
47063
|
+
current_user_name?: (string | null) | undefined
|
|
47064
|
+
/** Current user email for a KeyNest device. */
|
|
47065
|
+
current_user_email?: (string | null) | undefined
|
|
47066
|
+
/** Current user phone number for a KeyNest device. */
|
|
47067
|
+
current_user_phone_number?: (string | null) | undefined
|
|
47068
|
+
/** Current user company for a KeyNest device. */
|
|
47069
|
+
current_user_company?: (string | null) | undefined
|
|
47070
|
+
/** Handover method for a KeyNest device. */
|
|
47071
|
+
handover_method?: (string | null) | undefined
|
|
47072
|
+
/** KeyNest app user for a KeyNest device. */
|
|
47073
|
+
keynest_app_user?: (string | null) | undefined
|
|
47074
|
+
/** Default office ID for a KeyNest device. */
|
|
47075
|
+
default_office_id?: number | undefined
|
|
47076
|
+
/** Fob ID for a KeyNest device. */
|
|
47077
|
+
fob_id?: number | undefined
|
|
47078
|
+
/** Whether the KeyNest device has a photo. */
|
|
47079
|
+
has_photo?: boolean | undefined
|
|
46878
47080
|
}
|
|
46879
47081
|
| undefined
|
|
46880
47082
|
}) &
|
|
@@ -47703,6 +47905,7 @@ export type Routes = {
|
|
|
47703
47905
|
| 'tedee_lock'
|
|
47704
47906
|
| 'akiles_lock'
|
|
47705
47907
|
)
|
|
47908
|
+
| 'keynest_key'
|
|
47706
47909
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
47707
47910
|
| (
|
|
47708
47911
|
| 'ecobee_thermostat'
|
|
@@ -48349,8 +48552,46 @@ export type Routes = {
|
|
|
48349
48552
|
/** Metadata for a KeyNest device. */
|
|
48350
48553
|
keynest_metadata?:
|
|
48351
48554
|
| {
|
|
48555
|
+
/** Key ID for a KeyNest device. */
|
|
48556
|
+
key_id?: string | undefined
|
|
48352
48557
|
/** Device name for a KeyNest device. */
|
|
48353
48558
|
device_name?: string | undefined
|
|
48559
|
+
/** Property ID for a KeyNest device. */
|
|
48560
|
+
property_id?: (string | null) | undefined
|
|
48561
|
+
/** Property postcode for a KeyNest device. */
|
|
48562
|
+
property_postcode?: (string | null) | undefined
|
|
48563
|
+
/** Key notes for a KeyNest device. */
|
|
48564
|
+
key_notes?: (string | null) | undefined
|
|
48565
|
+
/** Subscription plan for a KeyNest device. */
|
|
48566
|
+
subscription_plan?: string | undefined
|
|
48567
|
+
/** Status type for a KeyNest device. */
|
|
48568
|
+
status_type?: string | undefined
|
|
48569
|
+
/** Current or last store ID for a KeyNest device. */
|
|
48570
|
+
current_or_last_store_id?: number | undefined
|
|
48571
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
48572
|
+
last_movement?: string | undefined
|
|
48573
|
+
/** Address for a KeyNest device. */
|
|
48574
|
+
address?: (string | null) | undefined
|
|
48575
|
+
/** Current status for a KeyNest device. */
|
|
48576
|
+
current_status?: (string | null) | undefined
|
|
48577
|
+
/** Current user name for a KeyNest device. */
|
|
48578
|
+
current_user_name?: (string | null) | undefined
|
|
48579
|
+
/** Current user email for a KeyNest device. */
|
|
48580
|
+
current_user_email?: (string | null) | undefined
|
|
48581
|
+
/** Current user phone number for a KeyNest device. */
|
|
48582
|
+
current_user_phone_number?: (string | null) | undefined
|
|
48583
|
+
/** Current user company for a KeyNest device. */
|
|
48584
|
+
current_user_company?: (string | null) | undefined
|
|
48585
|
+
/** Handover method for a KeyNest device. */
|
|
48586
|
+
handover_method?: (string | null) | undefined
|
|
48587
|
+
/** KeyNest app user for a KeyNest device. */
|
|
48588
|
+
keynest_app_user?: (string | null) | undefined
|
|
48589
|
+
/** Default office ID for a KeyNest device. */
|
|
48590
|
+
default_office_id?: number | undefined
|
|
48591
|
+
/** Fob ID for a KeyNest device. */
|
|
48592
|
+
fob_id?: number | undefined
|
|
48593
|
+
/** Whether the KeyNest device has a photo. */
|
|
48594
|
+
has_photo?: boolean | undefined
|
|
48354
48595
|
}
|
|
48355
48596
|
| undefined
|
|
48356
48597
|
}) &
|
|
@@ -49359,6 +49600,7 @@ export type Routes = {
|
|
|
49359
49600
|
| 'tedee_lock'
|
|
49360
49601
|
| 'akiles_lock'
|
|
49361
49602
|
)
|
|
49603
|
+
| 'keynest_key'
|
|
49362
49604
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
49363
49605
|
| (
|
|
49364
49606
|
| 'ecobee_thermostat'
|
|
@@ -50005,8 +50247,46 @@ export type Routes = {
|
|
|
50005
50247
|
/** Metadata for a KeyNest device. */
|
|
50006
50248
|
keynest_metadata?:
|
|
50007
50249
|
| {
|
|
50250
|
+
/** Key ID for a KeyNest device. */
|
|
50251
|
+
key_id?: string | undefined
|
|
50008
50252
|
/** Device name for a KeyNest device. */
|
|
50009
50253
|
device_name?: string | undefined
|
|
50254
|
+
/** Property ID for a KeyNest device. */
|
|
50255
|
+
property_id?: (string | null) | undefined
|
|
50256
|
+
/** Property postcode for a KeyNest device. */
|
|
50257
|
+
property_postcode?: (string | null) | undefined
|
|
50258
|
+
/** Key notes for a KeyNest device. */
|
|
50259
|
+
key_notes?: (string | null) | undefined
|
|
50260
|
+
/** Subscription plan for a KeyNest device. */
|
|
50261
|
+
subscription_plan?: string | undefined
|
|
50262
|
+
/** Status type for a KeyNest device. */
|
|
50263
|
+
status_type?: string | undefined
|
|
50264
|
+
/** Current or last store ID for a KeyNest device. */
|
|
50265
|
+
current_or_last_store_id?: number | undefined
|
|
50266
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
50267
|
+
last_movement?: string | undefined
|
|
50268
|
+
/** Address for a KeyNest device. */
|
|
50269
|
+
address?: (string | null) | undefined
|
|
50270
|
+
/** Current status for a KeyNest device. */
|
|
50271
|
+
current_status?: (string | null) | undefined
|
|
50272
|
+
/** Current user name for a KeyNest device. */
|
|
50273
|
+
current_user_name?: (string | null) | undefined
|
|
50274
|
+
/** Current user email for a KeyNest device. */
|
|
50275
|
+
current_user_email?: (string | null) | undefined
|
|
50276
|
+
/** Current user phone number for a KeyNest device. */
|
|
50277
|
+
current_user_phone_number?: (string | null) | undefined
|
|
50278
|
+
/** Current user company for a KeyNest device. */
|
|
50279
|
+
current_user_company?: (string | null) | undefined
|
|
50280
|
+
/** Handover method for a KeyNest device. */
|
|
50281
|
+
handover_method?: (string | null) | undefined
|
|
50282
|
+
/** KeyNest app user for a KeyNest device. */
|
|
50283
|
+
keynest_app_user?: (string | null) | undefined
|
|
50284
|
+
/** Default office ID for a KeyNest device. */
|
|
50285
|
+
default_office_id?: number | undefined
|
|
50286
|
+
/** Fob ID for a KeyNest device. */
|
|
50287
|
+
fob_id?: number | undefined
|
|
50288
|
+
/** Whether the KeyNest device has a photo. */
|
|
50289
|
+
has_photo?: boolean | undefined
|
|
50010
50290
|
}
|
|
50011
50291
|
| undefined
|
|
50012
50292
|
}) &
|
|
@@ -50834,6 +51114,7 @@ export type Routes = {
|
|
|
50834
51114
|
| 'tedee_lock'
|
|
50835
51115
|
| 'akiles_lock'
|
|
50836
51116
|
)
|
|
51117
|
+
| 'keynest_key'
|
|
50837
51118
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
50838
51119
|
| (
|
|
50839
51120
|
| 'ecobee_thermostat'
|
|
@@ -51480,8 +51761,46 @@ export type Routes = {
|
|
|
51480
51761
|
/** Metadata for a KeyNest device. */
|
|
51481
51762
|
keynest_metadata?:
|
|
51482
51763
|
| {
|
|
51764
|
+
/** Key ID for a KeyNest device. */
|
|
51765
|
+
key_id?: string | undefined
|
|
51483
51766
|
/** Device name for a KeyNest device. */
|
|
51484
51767
|
device_name?: string | undefined
|
|
51768
|
+
/** Property ID for a KeyNest device. */
|
|
51769
|
+
property_id?: (string | null) | undefined
|
|
51770
|
+
/** Property postcode for a KeyNest device. */
|
|
51771
|
+
property_postcode?: (string | null) | undefined
|
|
51772
|
+
/** Key notes for a KeyNest device. */
|
|
51773
|
+
key_notes?: (string | null) | undefined
|
|
51774
|
+
/** Subscription plan for a KeyNest device. */
|
|
51775
|
+
subscription_plan?: string | undefined
|
|
51776
|
+
/** Status type for a KeyNest device. */
|
|
51777
|
+
status_type?: string | undefined
|
|
51778
|
+
/** Current or last store ID for a KeyNest device. */
|
|
51779
|
+
current_or_last_store_id?: number | undefined
|
|
51780
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
51781
|
+
last_movement?: string | undefined
|
|
51782
|
+
/** Address for a KeyNest device. */
|
|
51783
|
+
address?: (string | null) | undefined
|
|
51784
|
+
/** Current status for a KeyNest device. */
|
|
51785
|
+
current_status?: (string | null) | undefined
|
|
51786
|
+
/** Current user name for a KeyNest device. */
|
|
51787
|
+
current_user_name?: (string | null) | undefined
|
|
51788
|
+
/** Current user email for a KeyNest device. */
|
|
51789
|
+
current_user_email?: (string | null) | undefined
|
|
51790
|
+
/** Current user phone number for a KeyNest device. */
|
|
51791
|
+
current_user_phone_number?: (string | null) | undefined
|
|
51792
|
+
/** Current user company for a KeyNest device. */
|
|
51793
|
+
current_user_company?: (string | null) | undefined
|
|
51794
|
+
/** Handover method for a KeyNest device. */
|
|
51795
|
+
handover_method?: (string | null) | undefined
|
|
51796
|
+
/** KeyNest app user for a KeyNest device. */
|
|
51797
|
+
keynest_app_user?: (string | null) | undefined
|
|
51798
|
+
/** Default office ID for a KeyNest device. */
|
|
51799
|
+
default_office_id?: number | undefined
|
|
51800
|
+
/** Fob ID for a KeyNest device. */
|
|
51801
|
+
fob_id?: number | undefined
|
|
51802
|
+
/** Whether the KeyNest device has a photo. */
|
|
51803
|
+
has_photo?: boolean | undefined
|
|
51485
51804
|
}
|
|
51486
51805
|
| undefined
|
|
51487
51806
|
}) &
|
|
@@ -58193,6 +58512,7 @@ export type Routes = {
|
|
|
58193
58512
|
| 'tedee_lock'
|
|
58194
58513
|
| 'akiles_lock'
|
|
58195
58514
|
)
|
|
58515
|
+
| 'keynest_key'
|
|
58196
58516
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
58197
58517
|
| (
|
|
58198
58518
|
| 'ecobee_thermostat'
|
|
@@ -58839,8 +59159,46 @@ export type Routes = {
|
|
|
58839
59159
|
/** Metadata for a KeyNest device. */
|
|
58840
59160
|
keynest_metadata?:
|
|
58841
59161
|
| {
|
|
59162
|
+
/** Key ID for a KeyNest device. */
|
|
59163
|
+
key_id?: string | undefined
|
|
58842
59164
|
/** Device name for a KeyNest device. */
|
|
58843
59165
|
device_name?: string | undefined
|
|
59166
|
+
/** Property ID for a KeyNest device. */
|
|
59167
|
+
property_id?: (string | null) | undefined
|
|
59168
|
+
/** Property postcode for a KeyNest device. */
|
|
59169
|
+
property_postcode?: (string | null) | undefined
|
|
59170
|
+
/** Key notes for a KeyNest device. */
|
|
59171
|
+
key_notes?: (string | null) | undefined
|
|
59172
|
+
/** Subscription plan for a KeyNest device. */
|
|
59173
|
+
subscription_plan?: string | undefined
|
|
59174
|
+
/** Status type for a KeyNest device. */
|
|
59175
|
+
status_type?: string | undefined
|
|
59176
|
+
/** Current or last store ID for a KeyNest device. */
|
|
59177
|
+
current_or_last_store_id?: number | undefined
|
|
59178
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
59179
|
+
last_movement?: string | undefined
|
|
59180
|
+
/** Address for a KeyNest device. */
|
|
59181
|
+
address?: (string | null) | undefined
|
|
59182
|
+
/** Current status for a KeyNest device. */
|
|
59183
|
+
current_status?: (string | null) | undefined
|
|
59184
|
+
/** Current user name for a KeyNest device. */
|
|
59185
|
+
current_user_name?: (string | null) | undefined
|
|
59186
|
+
/** Current user email for a KeyNest device. */
|
|
59187
|
+
current_user_email?: (string | null) | undefined
|
|
59188
|
+
/** Current user phone number for a KeyNest device. */
|
|
59189
|
+
current_user_phone_number?: (string | null) | undefined
|
|
59190
|
+
/** Current user company for a KeyNest device. */
|
|
59191
|
+
current_user_company?: (string | null) | undefined
|
|
59192
|
+
/** Handover method for a KeyNest device. */
|
|
59193
|
+
handover_method?: (string | null) | undefined
|
|
59194
|
+
/** KeyNest app user for a KeyNest device. */
|
|
59195
|
+
keynest_app_user?: (string | null) | undefined
|
|
59196
|
+
/** Default office ID for a KeyNest device. */
|
|
59197
|
+
default_office_id?: number | undefined
|
|
59198
|
+
/** Fob ID for a KeyNest device. */
|
|
59199
|
+
fob_id?: number | undefined
|
|
59200
|
+
/** Whether the KeyNest device has a photo. */
|
|
59201
|
+
has_photo?: boolean | undefined
|
|
58844
59202
|
}
|
|
58845
59203
|
| undefined
|
|
58846
59204
|
}) &
|
|
@@ -59668,6 +60026,7 @@ export type Routes = {
|
|
|
59668
60026
|
| 'tedee_lock'
|
|
59669
60027
|
| 'akiles_lock'
|
|
59670
60028
|
)
|
|
60029
|
+
| 'keynest_key'
|
|
59671
60030
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
59672
60031
|
| (
|
|
59673
60032
|
| 'ecobee_thermostat'
|
|
@@ -60314,8 +60673,46 @@ export type Routes = {
|
|
|
60314
60673
|
/** Metadata for a KeyNest device. */
|
|
60315
60674
|
keynest_metadata?:
|
|
60316
60675
|
| {
|
|
60676
|
+
/** Key ID for a KeyNest device. */
|
|
60677
|
+
key_id?: string | undefined
|
|
60317
60678
|
/** Device name for a KeyNest device. */
|
|
60318
60679
|
device_name?: string | undefined
|
|
60680
|
+
/** Property ID for a KeyNest device. */
|
|
60681
|
+
property_id?: (string | null) | undefined
|
|
60682
|
+
/** Property postcode for a KeyNest device. */
|
|
60683
|
+
property_postcode?: (string | null) | undefined
|
|
60684
|
+
/** Key notes for a KeyNest device. */
|
|
60685
|
+
key_notes?: (string | null) | undefined
|
|
60686
|
+
/** Subscription plan for a KeyNest device. */
|
|
60687
|
+
subscription_plan?: string | undefined
|
|
60688
|
+
/** Status type for a KeyNest device. */
|
|
60689
|
+
status_type?: string | undefined
|
|
60690
|
+
/** Current or last store ID for a KeyNest device. */
|
|
60691
|
+
current_or_last_store_id?: number | undefined
|
|
60692
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
60693
|
+
last_movement?: string | undefined
|
|
60694
|
+
/** Address for a KeyNest device. */
|
|
60695
|
+
address?: (string | null) | undefined
|
|
60696
|
+
/** Current status for a KeyNest device. */
|
|
60697
|
+
current_status?: (string | null) | undefined
|
|
60698
|
+
/** Current user name for a KeyNest device. */
|
|
60699
|
+
current_user_name?: (string | null) | undefined
|
|
60700
|
+
/** Current user email for a KeyNest device. */
|
|
60701
|
+
current_user_email?: (string | null) | undefined
|
|
60702
|
+
/** Current user phone number for a KeyNest device. */
|
|
60703
|
+
current_user_phone_number?: (string | null) | undefined
|
|
60704
|
+
/** Current user company for a KeyNest device. */
|
|
60705
|
+
current_user_company?: (string | null) | undefined
|
|
60706
|
+
/** Handover method for a KeyNest device. */
|
|
60707
|
+
handover_method?: (string | null) | undefined
|
|
60708
|
+
/** KeyNest app user for a KeyNest device. */
|
|
60709
|
+
keynest_app_user?: (string | null) | undefined
|
|
60710
|
+
/** Default office ID for a KeyNest device. */
|
|
60711
|
+
default_office_id?: number | undefined
|
|
60712
|
+
/** Fob ID for a KeyNest device. */
|
|
60713
|
+
fob_id?: number | undefined
|
|
60714
|
+
/** Whether the KeyNest device has a photo. */
|
|
60715
|
+
has_photo?: boolean | undefined
|
|
60319
60716
|
}
|
|
60320
60717
|
| undefined
|
|
60321
60718
|
}) &
|
|
@@ -69843,6 +70240,7 @@ export type Routes = {
|
|
|
69843
70240
|
| 'tedee_lock'
|
|
69844
70241
|
| 'akiles_lock'
|
|
69845
70242
|
)
|
|
70243
|
+
| 'keynest_key'
|
|
69846
70244
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
69847
70245
|
| (
|
|
69848
70246
|
| 'ecobee_thermostat'
|
|
@@ -70489,8 +70887,46 @@ export type Routes = {
|
|
|
70489
70887
|
/** Metadata for a KeyNest device. */
|
|
70490
70888
|
keynest_metadata?:
|
|
70491
70889
|
| {
|
|
70890
|
+
/** Key ID for a KeyNest device. */
|
|
70891
|
+
key_id?: string | undefined
|
|
70492
70892
|
/** Device name for a KeyNest device. */
|
|
70493
70893
|
device_name?: string | undefined
|
|
70894
|
+
/** Property ID for a KeyNest device. */
|
|
70895
|
+
property_id?: (string | null) | undefined
|
|
70896
|
+
/** Property postcode for a KeyNest device. */
|
|
70897
|
+
property_postcode?: (string | null) | undefined
|
|
70898
|
+
/** Key notes for a KeyNest device. */
|
|
70899
|
+
key_notes?: (string | null) | undefined
|
|
70900
|
+
/** Subscription plan for a KeyNest device. */
|
|
70901
|
+
subscription_plan?: string | undefined
|
|
70902
|
+
/** Status type for a KeyNest device. */
|
|
70903
|
+
status_type?: string | undefined
|
|
70904
|
+
/** Current or last store ID for a KeyNest device. */
|
|
70905
|
+
current_or_last_store_id?: number | undefined
|
|
70906
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
70907
|
+
last_movement?: string | undefined
|
|
70908
|
+
/** Address for a KeyNest device. */
|
|
70909
|
+
address?: (string | null) | undefined
|
|
70910
|
+
/** Current status for a KeyNest device. */
|
|
70911
|
+
current_status?: (string | null) | undefined
|
|
70912
|
+
/** Current user name for a KeyNest device. */
|
|
70913
|
+
current_user_name?: (string | null) | undefined
|
|
70914
|
+
/** Current user email for a KeyNest device. */
|
|
70915
|
+
current_user_email?: (string | null) | undefined
|
|
70916
|
+
/** Current user phone number for a KeyNest device. */
|
|
70917
|
+
current_user_phone_number?: (string | null) | undefined
|
|
70918
|
+
/** Current user company for a KeyNest device. */
|
|
70919
|
+
current_user_company?: (string | null) | undefined
|
|
70920
|
+
/** Handover method for a KeyNest device. */
|
|
70921
|
+
handover_method?: (string | null) | undefined
|
|
70922
|
+
/** KeyNest app user for a KeyNest device. */
|
|
70923
|
+
keynest_app_user?: (string | null) | undefined
|
|
70924
|
+
/** Default office ID for a KeyNest device. */
|
|
70925
|
+
default_office_id?: number | undefined
|
|
70926
|
+
/** Fob ID for a KeyNest device. */
|
|
70927
|
+
fob_id?: number | undefined
|
|
70928
|
+
/** Whether the KeyNest device has a photo. */
|
|
70929
|
+
has_photo?: boolean | undefined
|
|
70494
70930
|
}
|
|
70495
70931
|
| undefined
|
|
70496
70932
|
}) &
|
|
@@ -76405,6 +76841,7 @@ export type Routes = {
|
|
|
76405
76841
|
| 'tedee_lock'
|
|
76406
76842
|
| 'akiles_lock'
|
|
76407
76843
|
)
|
|
76844
|
+
| 'keynest_key'
|
|
76408
76845
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
76409
76846
|
| (
|
|
76410
76847
|
| 'ecobee_thermostat'
|
|
@@ -77051,8 +77488,46 @@ export type Routes = {
|
|
|
77051
77488
|
/** Metadata for a KeyNest device. */
|
|
77052
77489
|
keynest_metadata?:
|
|
77053
77490
|
| {
|
|
77491
|
+
/** Key ID for a KeyNest device. */
|
|
77492
|
+
key_id?: string | undefined
|
|
77054
77493
|
/** Device name for a KeyNest device. */
|
|
77055
77494
|
device_name?: string | undefined
|
|
77495
|
+
/** Property ID for a KeyNest device. */
|
|
77496
|
+
property_id?: (string | null) | undefined
|
|
77497
|
+
/** Property postcode for a KeyNest device. */
|
|
77498
|
+
property_postcode?: (string | null) | undefined
|
|
77499
|
+
/** Key notes for a KeyNest device. */
|
|
77500
|
+
key_notes?: (string | null) | undefined
|
|
77501
|
+
/** Subscription plan for a KeyNest device. */
|
|
77502
|
+
subscription_plan?: string | undefined
|
|
77503
|
+
/** Status type for a KeyNest device. */
|
|
77504
|
+
status_type?: string | undefined
|
|
77505
|
+
/** Current or last store ID for a KeyNest device. */
|
|
77506
|
+
current_or_last_store_id?: number | undefined
|
|
77507
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
77508
|
+
last_movement?: string | undefined
|
|
77509
|
+
/** Address for a KeyNest device. */
|
|
77510
|
+
address?: (string | null) | undefined
|
|
77511
|
+
/** Current status for a KeyNest device. */
|
|
77512
|
+
current_status?: (string | null) | undefined
|
|
77513
|
+
/** Current user name for a KeyNest device. */
|
|
77514
|
+
current_user_name?: (string | null) | undefined
|
|
77515
|
+
/** Current user email for a KeyNest device. */
|
|
77516
|
+
current_user_email?: (string | null) | undefined
|
|
77517
|
+
/** Current user phone number for a KeyNest device. */
|
|
77518
|
+
current_user_phone_number?: (string | null) | undefined
|
|
77519
|
+
/** Current user company for a KeyNest device. */
|
|
77520
|
+
current_user_company?: (string | null) | undefined
|
|
77521
|
+
/** Handover method for a KeyNest device. */
|
|
77522
|
+
handover_method?: (string | null) | undefined
|
|
77523
|
+
/** KeyNest app user for a KeyNest device. */
|
|
77524
|
+
keynest_app_user?: (string | null) | undefined
|
|
77525
|
+
/** Default office ID for a KeyNest device. */
|
|
77526
|
+
default_office_id?: number | undefined
|
|
77527
|
+
/** Fob ID for a KeyNest device. */
|
|
77528
|
+
fob_id?: number | undefined
|
|
77529
|
+
/** Whether the KeyNest device has a photo. */
|
|
77530
|
+
has_photo?: boolean | undefined
|
|
77056
77531
|
}
|
|
77057
77532
|
| undefined
|
|
77058
77533
|
}) &
|
|
@@ -80907,6 +81382,7 @@ export type Routes = {
|
|
|
80907
81382
|
| 'tedee_lock'
|
|
80908
81383
|
| 'akiles_lock'
|
|
80909
81384
|
)
|
|
81385
|
+
| 'keynest_key'
|
|
80910
81386
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
80911
81387
|
| (
|
|
80912
81388
|
| 'ecobee_thermostat'
|
|
@@ -81553,8 +82029,46 @@ export type Routes = {
|
|
|
81553
82029
|
/** Metadata for a KeyNest device. */
|
|
81554
82030
|
keynest_metadata?:
|
|
81555
82031
|
| {
|
|
82032
|
+
/** Key ID for a KeyNest device. */
|
|
82033
|
+
key_id?: string | undefined
|
|
81556
82034
|
/** Device name for a KeyNest device. */
|
|
81557
82035
|
device_name?: string | undefined
|
|
82036
|
+
/** Property ID for a KeyNest device. */
|
|
82037
|
+
property_id?: (string | null) | undefined
|
|
82038
|
+
/** Property postcode for a KeyNest device. */
|
|
82039
|
+
property_postcode?: (string | null) | undefined
|
|
82040
|
+
/** Key notes for a KeyNest device. */
|
|
82041
|
+
key_notes?: (string | null) | undefined
|
|
82042
|
+
/** Subscription plan for a KeyNest device. */
|
|
82043
|
+
subscription_plan?: string | undefined
|
|
82044
|
+
/** Status type for a KeyNest device. */
|
|
82045
|
+
status_type?: string | undefined
|
|
82046
|
+
/** Current or last store ID for a KeyNest device. */
|
|
82047
|
+
current_or_last_store_id?: number | undefined
|
|
82048
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
82049
|
+
last_movement?: string | undefined
|
|
82050
|
+
/** Address for a KeyNest device. */
|
|
82051
|
+
address?: (string | null) | undefined
|
|
82052
|
+
/** Current status for a KeyNest device. */
|
|
82053
|
+
current_status?: (string | null) | undefined
|
|
82054
|
+
/** Current user name for a KeyNest device. */
|
|
82055
|
+
current_user_name?: (string | null) | undefined
|
|
82056
|
+
/** Current user email for a KeyNest device. */
|
|
82057
|
+
current_user_email?: (string | null) | undefined
|
|
82058
|
+
/** Current user phone number for a KeyNest device. */
|
|
82059
|
+
current_user_phone_number?: (string | null) | undefined
|
|
82060
|
+
/** Current user company for a KeyNest device. */
|
|
82061
|
+
current_user_company?: (string | null) | undefined
|
|
82062
|
+
/** Handover method for a KeyNest device. */
|
|
82063
|
+
handover_method?: (string | null) | undefined
|
|
82064
|
+
/** KeyNest app user for a KeyNest device. */
|
|
82065
|
+
keynest_app_user?: (string | null) | undefined
|
|
82066
|
+
/** Default office ID for a KeyNest device. */
|
|
82067
|
+
default_office_id?: number | undefined
|
|
82068
|
+
/** Fob ID for a KeyNest device. */
|
|
82069
|
+
fob_id?: number | undefined
|
|
82070
|
+
/** Whether the KeyNest device has a photo. */
|
|
82071
|
+
has_photo?: boolean | undefined
|
|
81558
82072
|
}
|
|
81559
82073
|
| undefined
|
|
81560
82074
|
}) &
|
|
@@ -82382,6 +82896,7 @@ export type Routes = {
|
|
|
82382
82896
|
| 'tedee_lock'
|
|
82383
82897
|
| 'akiles_lock'
|
|
82384
82898
|
)
|
|
82899
|
+
| 'keynest_key'
|
|
82385
82900
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
82386
82901
|
| (
|
|
82387
82902
|
| 'ecobee_thermostat'
|
|
@@ -83028,8 +83543,46 @@ export type Routes = {
|
|
|
83028
83543
|
/** Metadata for a KeyNest device. */
|
|
83029
83544
|
keynest_metadata?:
|
|
83030
83545
|
| {
|
|
83546
|
+
/** Key ID for a KeyNest device. */
|
|
83547
|
+
key_id?: string | undefined
|
|
83031
83548
|
/** Device name for a KeyNest device. */
|
|
83032
83549
|
device_name?: string | undefined
|
|
83550
|
+
/** Property ID for a KeyNest device. */
|
|
83551
|
+
property_id?: (string | null) | undefined
|
|
83552
|
+
/** Property postcode for a KeyNest device. */
|
|
83553
|
+
property_postcode?: (string | null) | undefined
|
|
83554
|
+
/** Key notes for a KeyNest device. */
|
|
83555
|
+
key_notes?: (string | null) | undefined
|
|
83556
|
+
/** Subscription plan for a KeyNest device. */
|
|
83557
|
+
subscription_plan?: string | undefined
|
|
83558
|
+
/** Status type for a KeyNest device. */
|
|
83559
|
+
status_type?: string | undefined
|
|
83560
|
+
/** Current or last store ID for a KeyNest device. */
|
|
83561
|
+
current_or_last_store_id?: number | undefined
|
|
83562
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
83563
|
+
last_movement?: string | undefined
|
|
83564
|
+
/** Address for a KeyNest device. */
|
|
83565
|
+
address?: (string | null) | undefined
|
|
83566
|
+
/** Current status for a KeyNest device. */
|
|
83567
|
+
current_status?: (string | null) | undefined
|
|
83568
|
+
/** Current user name for a KeyNest device. */
|
|
83569
|
+
current_user_name?: (string | null) | undefined
|
|
83570
|
+
/** Current user email for a KeyNest device. */
|
|
83571
|
+
current_user_email?: (string | null) | undefined
|
|
83572
|
+
/** Current user phone number for a KeyNest device. */
|
|
83573
|
+
current_user_phone_number?: (string | null) | undefined
|
|
83574
|
+
/** Current user company for a KeyNest device. */
|
|
83575
|
+
current_user_company?: (string | null) | undefined
|
|
83576
|
+
/** Handover method for a KeyNest device. */
|
|
83577
|
+
handover_method?: (string | null) | undefined
|
|
83578
|
+
/** KeyNest app user for a KeyNest device. */
|
|
83579
|
+
keynest_app_user?: (string | null) | undefined
|
|
83580
|
+
/** Default office ID for a KeyNest device. */
|
|
83581
|
+
default_office_id?: number | undefined
|
|
83582
|
+
/** Fob ID for a KeyNest device. */
|
|
83583
|
+
fob_id?: number | undefined
|
|
83584
|
+
/** Whether the KeyNest device has a photo. */
|
|
83585
|
+
has_photo?: boolean | undefined
|
|
83033
83586
|
}
|
|
83034
83587
|
| undefined
|
|
83035
83588
|
}) &
|
|
@@ -90606,6 +91159,7 @@ export type Routes = {
|
|
|
90606
91159
|
| 'tedee_lock'
|
|
90607
91160
|
| 'akiles_lock'
|
|
90608
91161
|
)
|
|
91162
|
+
| 'keynest_key'
|
|
90609
91163
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
90610
91164
|
| (
|
|
90611
91165
|
| 'ecobee_thermostat'
|
|
@@ -91252,8 +91806,46 @@ export type Routes = {
|
|
|
91252
91806
|
/** Metadata for a KeyNest device. */
|
|
91253
91807
|
keynest_metadata?:
|
|
91254
91808
|
| {
|
|
91809
|
+
/** Key ID for a KeyNest device. */
|
|
91810
|
+
key_id?: string | undefined
|
|
91255
91811
|
/** Device name for a KeyNest device. */
|
|
91256
91812
|
device_name?: string | undefined
|
|
91813
|
+
/** Property ID for a KeyNest device. */
|
|
91814
|
+
property_id?: (string | null) | undefined
|
|
91815
|
+
/** Property postcode for a KeyNest device. */
|
|
91816
|
+
property_postcode?: (string | null) | undefined
|
|
91817
|
+
/** Key notes for a KeyNest device. */
|
|
91818
|
+
key_notes?: (string | null) | undefined
|
|
91819
|
+
/** Subscription plan for a KeyNest device. */
|
|
91820
|
+
subscription_plan?: string | undefined
|
|
91821
|
+
/** Status type for a KeyNest device. */
|
|
91822
|
+
status_type?: string | undefined
|
|
91823
|
+
/** Current or last store ID for a KeyNest device. */
|
|
91824
|
+
current_or_last_store_id?: number | undefined
|
|
91825
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
91826
|
+
last_movement?: string | undefined
|
|
91827
|
+
/** Address for a KeyNest device. */
|
|
91828
|
+
address?: (string | null) | undefined
|
|
91829
|
+
/** Current status for a KeyNest device. */
|
|
91830
|
+
current_status?: (string | null) | undefined
|
|
91831
|
+
/** Current user name for a KeyNest device. */
|
|
91832
|
+
current_user_name?: (string | null) | undefined
|
|
91833
|
+
/** Current user email for a KeyNest device. */
|
|
91834
|
+
current_user_email?: (string | null) | undefined
|
|
91835
|
+
/** Current user phone number for a KeyNest device. */
|
|
91836
|
+
current_user_phone_number?: (string | null) | undefined
|
|
91837
|
+
/** Current user company for a KeyNest device. */
|
|
91838
|
+
current_user_company?: (string | null) | undefined
|
|
91839
|
+
/** Handover method for a KeyNest device. */
|
|
91840
|
+
handover_method?: (string | null) | undefined
|
|
91841
|
+
/** KeyNest app user for a KeyNest device. */
|
|
91842
|
+
keynest_app_user?: (string | null) | undefined
|
|
91843
|
+
/** Default office ID for a KeyNest device. */
|
|
91844
|
+
default_office_id?: number | undefined
|
|
91845
|
+
/** Fob ID for a KeyNest device. */
|
|
91846
|
+
fob_id?: number | undefined
|
|
91847
|
+
/** Whether the KeyNest device has a photo. */
|
|
91848
|
+
has_photo?: boolean | undefined
|
|
91257
91849
|
}
|
|
91258
91850
|
| undefined
|
|
91259
91851
|
}) &
|
|
@@ -92083,6 +92675,7 @@ export type Routes = {
|
|
|
92083
92675
|
| 'tedee_lock'
|
|
92084
92676
|
| 'akiles_lock'
|
|
92085
92677
|
)
|
|
92678
|
+
| 'keynest_key'
|
|
92086
92679
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
92087
92680
|
| (
|
|
92088
92681
|
| 'ecobee_thermostat'
|
|
@@ -92729,8 +93322,46 @@ export type Routes = {
|
|
|
92729
93322
|
/** Metadata for a KeyNest device. */
|
|
92730
93323
|
keynest_metadata?:
|
|
92731
93324
|
| {
|
|
93325
|
+
/** Key ID for a KeyNest device. */
|
|
93326
|
+
key_id?: string | undefined
|
|
92732
93327
|
/** Device name for a KeyNest device. */
|
|
92733
93328
|
device_name?: string | undefined
|
|
93329
|
+
/** Property ID for a KeyNest device. */
|
|
93330
|
+
property_id?: (string | null) | undefined
|
|
93331
|
+
/** Property postcode for a KeyNest device. */
|
|
93332
|
+
property_postcode?: (string | null) | undefined
|
|
93333
|
+
/** Key notes for a KeyNest device. */
|
|
93334
|
+
key_notes?: (string | null) | undefined
|
|
93335
|
+
/** Subscription plan for a KeyNest device. */
|
|
93336
|
+
subscription_plan?: string | undefined
|
|
93337
|
+
/** Status type for a KeyNest device. */
|
|
93338
|
+
status_type?: string | undefined
|
|
93339
|
+
/** Current or last store ID for a KeyNest device. */
|
|
93340
|
+
current_or_last_store_id?: number | undefined
|
|
93341
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
93342
|
+
last_movement?: string | undefined
|
|
93343
|
+
/** Address for a KeyNest device. */
|
|
93344
|
+
address?: (string | null) | undefined
|
|
93345
|
+
/** Current status for a KeyNest device. */
|
|
93346
|
+
current_status?: (string | null) | undefined
|
|
93347
|
+
/** Current user name for a KeyNest device. */
|
|
93348
|
+
current_user_name?: (string | null) | undefined
|
|
93349
|
+
/** Current user email for a KeyNest device. */
|
|
93350
|
+
current_user_email?: (string | null) | undefined
|
|
93351
|
+
/** Current user phone number for a KeyNest device. */
|
|
93352
|
+
current_user_phone_number?: (string | null) | undefined
|
|
93353
|
+
/** Current user company for a KeyNest device. */
|
|
93354
|
+
current_user_company?: (string | null) | undefined
|
|
93355
|
+
/** Handover method for a KeyNest device. */
|
|
93356
|
+
handover_method?: (string | null) | undefined
|
|
93357
|
+
/** KeyNest app user for a KeyNest device. */
|
|
93358
|
+
keynest_app_user?: (string | null) | undefined
|
|
93359
|
+
/** Default office ID for a KeyNest device. */
|
|
93360
|
+
default_office_id?: number | undefined
|
|
93361
|
+
/** Fob ID for a KeyNest device. */
|
|
93362
|
+
fob_id?: number | undefined
|
|
93363
|
+
/** Whether the KeyNest device has a photo. */
|
|
93364
|
+
has_photo?: boolean | undefined
|
|
92734
93365
|
}
|
|
92735
93366
|
| undefined
|
|
92736
93367
|
}) &
|
|
@@ -94416,6 +95047,7 @@ export type Routes = {
|
|
|
94416
95047
|
| 'tedee_lock'
|
|
94417
95048
|
| 'akiles_lock'
|
|
94418
95049
|
)
|
|
95050
|
+
| 'keynest_key'
|
|
94419
95051
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
94420
95052
|
| (
|
|
94421
95053
|
| 'ecobee_thermostat'
|
|
@@ -95062,8 +95694,46 @@ export type Routes = {
|
|
|
95062
95694
|
/** Metadata for a KeyNest device. */
|
|
95063
95695
|
keynest_metadata?:
|
|
95064
95696
|
| {
|
|
95697
|
+
/** Key ID for a KeyNest device. */
|
|
95698
|
+
key_id?: string | undefined
|
|
95065
95699
|
/** Device name for a KeyNest device. */
|
|
95066
95700
|
device_name?: string | undefined
|
|
95701
|
+
/** Property ID for a KeyNest device. */
|
|
95702
|
+
property_id?: (string | null) | undefined
|
|
95703
|
+
/** Property postcode for a KeyNest device. */
|
|
95704
|
+
property_postcode?: (string | null) | undefined
|
|
95705
|
+
/** Key notes for a KeyNest device. */
|
|
95706
|
+
key_notes?: (string | null) | undefined
|
|
95707
|
+
/** Subscription plan for a KeyNest device. */
|
|
95708
|
+
subscription_plan?: string | undefined
|
|
95709
|
+
/** Status type for a KeyNest device. */
|
|
95710
|
+
status_type?: string | undefined
|
|
95711
|
+
/** Current or last store ID for a KeyNest device. */
|
|
95712
|
+
current_or_last_store_id?: number | undefined
|
|
95713
|
+
/** Last movement timestamp for a KeyNest device. */
|
|
95714
|
+
last_movement?: string | undefined
|
|
95715
|
+
/** Address for a KeyNest device. */
|
|
95716
|
+
address?: (string | null) | undefined
|
|
95717
|
+
/** Current status for a KeyNest device. */
|
|
95718
|
+
current_status?: (string | null) | undefined
|
|
95719
|
+
/** Current user name for a KeyNest device. */
|
|
95720
|
+
current_user_name?: (string | null) | undefined
|
|
95721
|
+
/** Current user email for a KeyNest device. */
|
|
95722
|
+
current_user_email?: (string | null) | undefined
|
|
95723
|
+
/** Current user phone number for a KeyNest device. */
|
|
95724
|
+
current_user_phone_number?: (string | null) | undefined
|
|
95725
|
+
/** Current user company for a KeyNest device. */
|
|
95726
|
+
current_user_company?: (string | null) | undefined
|
|
95727
|
+
/** Handover method for a KeyNest device. */
|
|
95728
|
+
handover_method?: (string | null) | undefined
|
|
95729
|
+
/** KeyNest app user for a KeyNest device. */
|
|
95730
|
+
keynest_app_user?: (string | null) | undefined
|
|
95731
|
+
/** Default office ID for a KeyNest device. */
|
|
95732
|
+
default_office_id?: number | undefined
|
|
95733
|
+
/** Fob ID for a KeyNest device. */
|
|
95734
|
+
fob_id?: number | undefined
|
|
95735
|
+
/** Whether the KeyNest device has a photo. */
|
|
95736
|
+
has_photo?: boolean | undefined
|
|
95067
95737
|
}
|
|
95068
95738
|
| undefined
|
|
95069
95739
|
}) &
|
|
@@ -98655,6 +99325,7 @@ export type Routes = {
|
|
|
98655
99325
|
| 'tedee_lock'
|
|
98656
99326
|
| 'akiles_lock'
|
|
98657
99327
|
)
|
|
99328
|
+
| 'keynest_key'
|
|
98658
99329
|
| ('noiseaware_activity_zone' | 'minut_sensor')
|
|
98659
99330
|
| (
|
|
98660
99331
|
| 'ecobee_thermostat'
|