@seamapi/types 1.854.0 → 1.856.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 +43 -25
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +165 -45
- package/dist/index.cjs +43 -25
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +38 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -0
- package/lib/seam/connect/models/devices/device-metadata.js +7 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -3
- package/lib/seam/connect/models/devices/device-provider.js +3 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-type.js +1 -1
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +17 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +13 -3
- package/lib/seam/connect/openapi.js +30 -20
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +97 -29
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +11 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +3 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +32 -20
- package/src/lib/seam/connect/route-types.ts +97 -29
package/dist/connect.d.cts
CHANGED
|
@@ -13452,7 +13452,7 @@ declare const batch: z.ZodObject<{
|
|
|
13452
13452
|
}>, "many">>;
|
|
13453
13453
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13454
13454
|
device_id: z.ZodString;
|
|
13455
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
13455
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
13456
13456
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
13457
13457
|
nickname: z.ZodOptional<z.ZodString>;
|
|
13458
13458
|
display_name: z.ZodString;
|
|
@@ -14405,16 +14405,22 @@ declare const batch: z.ZodObject<{
|
|
|
14405
14405
|
lock_name: z.ZodString;
|
|
14406
14406
|
lock_mac: z.ZodString;
|
|
14407
14407
|
has_gateway: z.ZodBoolean;
|
|
14408
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
14409
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
14408
14410
|
}, "strip", z.ZodTypeAny, {
|
|
14409
14411
|
lock_id: number;
|
|
14410
14412
|
lock_name: string;
|
|
14411
14413
|
has_gateway: boolean;
|
|
14414
|
+
timezone_raw_offset_ms: number;
|
|
14412
14415
|
lock_mac: string;
|
|
14416
|
+
time_zone?: string | undefined;
|
|
14413
14417
|
}, {
|
|
14414
14418
|
lock_id: number;
|
|
14415
14419
|
lock_name: string;
|
|
14416
14420
|
has_gateway: boolean;
|
|
14421
|
+
timezone_raw_offset_ms: number;
|
|
14417
14422
|
lock_mac: string;
|
|
14423
|
+
time_zone?: string | undefined;
|
|
14418
14424
|
}>>;
|
|
14419
14425
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
14420
14426
|
serial_no: z.ZodString;
|
|
@@ -14794,7 +14800,9 @@ declare const batch: z.ZodObject<{
|
|
|
14794
14800
|
lock_id: number;
|
|
14795
14801
|
lock_name: string;
|
|
14796
14802
|
has_gateway: boolean;
|
|
14803
|
+
timezone_raw_offset_ms: number;
|
|
14797
14804
|
lock_mac: string;
|
|
14805
|
+
time_zone?: string | undefined;
|
|
14798
14806
|
} | undefined;
|
|
14799
14807
|
tado_metadata?: {
|
|
14800
14808
|
serial_no: string;
|
|
@@ -15080,7 +15088,9 @@ declare const batch: z.ZodObject<{
|
|
|
15080
15088
|
lock_id: number;
|
|
15081
15089
|
lock_name: string;
|
|
15082
15090
|
has_gateway: boolean;
|
|
15091
|
+
timezone_raw_offset_ms: number;
|
|
15083
15092
|
lock_mac: string;
|
|
15093
|
+
time_zone?: string | undefined;
|
|
15084
15094
|
} | undefined;
|
|
15085
15095
|
tado_metadata?: {
|
|
15086
15096
|
serial_no: string;
|
|
@@ -16774,7 +16784,7 @@ declare const batch: z.ZodObject<{
|
|
|
16774
16784
|
max_active_access_code_count: number;
|
|
16775
16785
|
})[];
|
|
16776
16786
|
custom_metadata: Record<string, string | boolean>;
|
|
16777
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
16787
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
16778
16788
|
space_ids: string[];
|
|
16779
16789
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
16780
16790
|
properties: {
|
|
@@ -17056,7 +17066,9 @@ declare const batch: z.ZodObject<{
|
|
|
17056
17066
|
lock_id: number;
|
|
17057
17067
|
lock_name: string;
|
|
17058
17068
|
has_gateway: boolean;
|
|
17069
|
+
timezone_raw_offset_ms: number;
|
|
17059
17070
|
lock_mac: string;
|
|
17071
|
+
time_zone?: string | undefined;
|
|
17060
17072
|
} | undefined;
|
|
17061
17073
|
tado_metadata?: {
|
|
17062
17074
|
serial_no: string;
|
|
@@ -17508,7 +17520,7 @@ declare const batch: z.ZodObject<{
|
|
|
17508
17520
|
max_active_access_code_count: number;
|
|
17509
17521
|
})[];
|
|
17510
17522
|
custom_metadata: Record<string, string | boolean>;
|
|
17511
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
17523
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
17512
17524
|
space_ids: string[];
|
|
17513
17525
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
17514
17526
|
properties: {
|
|
@@ -17790,7 +17802,9 @@ declare const batch: z.ZodObject<{
|
|
|
17790
17802
|
lock_id: number;
|
|
17791
17803
|
lock_name: string;
|
|
17792
17804
|
has_gateway: boolean;
|
|
17805
|
+
timezone_raw_offset_ms: number;
|
|
17793
17806
|
lock_mac: string;
|
|
17807
|
+
time_zone?: string | undefined;
|
|
17794
17808
|
} | undefined;
|
|
17795
17809
|
tado_metadata?: {
|
|
17796
17810
|
serial_no: string;
|
|
@@ -26921,7 +26935,7 @@ declare const batch: z.ZodObject<{
|
|
|
26921
26935
|
}>, "many">>;
|
|
26922
26936
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
26923
26937
|
device_id: z.ZodString;
|
|
26924
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
26938
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
26925
26939
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
26926
26940
|
nickname: z.ZodOptional<z.ZodString>;
|
|
26927
26941
|
display_name: z.ZodString;
|
|
@@ -27874,16 +27888,22 @@ declare const batch: z.ZodObject<{
|
|
|
27874
27888
|
lock_name: z.ZodString;
|
|
27875
27889
|
lock_mac: z.ZodString;
|
|
27876
27890
|
has_gateway: z.ZodBoolean;
|
|
27891
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
27892
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
27877
27893
|
}, "strip", z.ZodTypeAny, {
|
|
27878
27894
|
lock_id: number;
|
|
27879
27895
|
lock_name: string;
|
|
27880
27896
|
has_gateway: boolean;
|
|
27897
|
+
timezone_raw_offset_ms: number;
|
|
27881
27898
|
lock_mac: string;
|
|
27899
|
+
time_zone?: string | undefined;
|
|
27882
27900
|
}, {
|
|
27883
27901
|
lock_id: number;
|
|
27884
27902
|
lock_name: string;
|
|
27885
27903
|
has_gateway: boolean;
|
|
27904
|
+
timezone_raw_offset_ms: number;
|
|
27886
27905
|
lock_mac: string;
|
|
27906
|
+
time_zone?: string | undefined;
|
|
27887
27907
|
}>>;
|
|
27888
27908
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
27889
27909
|
serial_no: z.ZodString;
|
|
@@ -28263,7 +28283,9 @@ declare const batch: z.ZodObject<{
|
|
|
28263
28283
|
lock_id: number;
|
|
28264
28284
|
lock_name: string;
|
|
28265
28285
|
has_gateway: boolean;
|
|
28286
|
+
timezone_raw_offset_ms: number;
|
|
28266
28287
|
lock_mac: string;
|
|
28288
|
+
time_zone?: string | undefined;
|
|
28267
28289
|
} | undefined;
|
|
28268
28290
|
tado_metadata?: {
|
|
28269
28291
|
serial_no: string;
|
|
@@ -28549,7 +28571,9 @@ declare const batch: z.ZodObject<{
|
|
|
28549
28571
|
lock_id: number;
|
|
28550
28572
|
lock_name: string;
|
|
28551
28573
|
has_gateway: boolean;
|
|
28574
|
+
timezone_raw_offset_ms: number;
|
|
28552
28575
|
lock_mac: string;
|
|
28576
|
+
time_zone?: string | undefined;
|
|
28553
28577
|
} | undefined;
|
|
28554
28578
|
tado_metadata?: {
|
|
28555
28579
|
serial_no: string;
|
|
@@ -30399,7 +30423,7 @@ declare const batch: z.ZodObject<{
|
|
|
30399
30423
|
max_active_access_code_count: number;
|
|
30400
30424
|
})[];
|
|
30401
30425
|
custom_metadata: Record<string, string | boolean>;
|
|
30402
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
30426
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
30403
30427
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
30404
30428
|
properties: {
|
|
30405
30429
|
name: string;
|
|
@@ -30660,7 +30684,7 @@ declare const batch: z.ZodObject<{
|
|
|
30660
30684
|
max_active_access_code_count: number;
|
|
30661
30685
|
})[];
|
|
30662
30686
|
custom_metadata: Record<string, string | boolean>;
|
|
30663
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
30687
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
30664
30688
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
30665
30689
|
properties: {
|
|
30666
30690
|
name: string;
|
|
@@ -40344,7 +40368,7 @@ declare const batch: z.ZodObject<{
|
|
|
40344
40368
|
max_active_access_code_count: number;
|
|
40345
40369
|
})[];
|
|
40346
40370
|
custom_metadata: Record<string, string | boolean>;
|
|
40347
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
40371
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
40348
40372
|
space_ids: string[];
|
|
40349
40373
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
40350
40374
|
properties: {
|
|
@@ -40626,7 +40650,9 @@ declare const batch: z.ZodObject<{
|
|
|
40626
40650
|
lock_id: number;
|
|
40627
40651
|
lock_name: string;
|
|
40628
40652
|
has_gateway: boolean;
|
|
40653
|
+
timezone_raw_offset_ms: number;
|
|
40629
40654
|
lock_mac: string;
|
|
40655
|
+
time_zone?: string | undefined;
|
|
40630
40656
|
} | undefined;
|
|
40631
40657
|
tado_metadata?: {
|
|
40632
40658
|
serial_no: string;
|
|
@@ -42843,7 +42869,7 @@ declare const batch: z.ZodObject<{
|
|
|
42843
42869
|
max_active_access_code_count: number;
|
|
42844
42870
|
})[];
|
|
42845
42871
|
custom_metadata: Record<string, string | boolean>;
|
|
42846
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
42872
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
42847
42873
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
42848
42874
|
properties: {
|
|
42849
42875
|
name: string;
|
|
@@ -45467,7 +45493,7 @@ declare const batch: z.ZodObject<{
|
|
|
45467
45493
|
max_active_access_code_count: number;
|
|
45468
45494
|
})[];
|
|
45469
45495
|
custom_metadata: Record<string, string | boolean>;
|
|
45470
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
45496
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
45471
45497
|
space_ids: string[];
|
|
45472
45498
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
45473
45499
|
properties: {
|
|
@@ -45749,7 +45775,9 @@ declare const batch: z.ZodObject<{
|
|
|
45749
45775
|
lock_id: number;
|
|
45750
45776
|
lock_name: string;
|
|
45751
45777
|
has_gateway: boolean;
|
|
45778
|
+
timezone_raw_offset_ms: number;
|
|
45752
45779
|
lock_mac: string;
|
|
45780
|
+
time_zone?: string | undefined;
|
|
45753
45781
|
} | undefined;
|
|
45754
45782
|
tado_metadata?: {
|
|
45755
45783
|
serial_no: string;
|
|
@@ -47966,7 +47994,7 @@ declare const batch: z.ZodObject<{
|
|
|
47966
47994
|
max_active_access_code_count: number;
|
|
47967
47995
|
})[];
|
|
47968
47996
|
custom_metadata: Record<string, string | boolean>;
|
|
47969
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
47997
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
47970
47998
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
47971
47999
|
properties: {
|
|
47972
48000
|
name: string;
|
|
@@ -51880,7 +51908,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
51880
51908
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
51881
51909
|
declare const device: z.ZodObject<{
|
|
51882
51910
|
device_id: z.ZodString;
|
|
51883
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
51911
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
51884
51912
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
51885
51913
|
nickname: z.ZodOptional<z.ZodString>;
|
|
51886
51914
|
display_name: z.ZodString;
|
|
@@ -52833,16 +52861,22 @@ declare const device: z.ZodObject<{
|
|
|
52833
52861
|
lock_name: z.ZodString;
|
|
52834
52862
|
lock_mac: z.ZodString;
|
|
52835
52863
|
has_gateway: z.ZodBoolean;
|
|
52864
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
52865
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
52836
52866
|
}, "strip", z.ZodTypeAny, {
|
|
52837
52867
|
lock_id: number;
|
|
52838
52868
|
lock_name: string;
|
|
52839
52869
|
has_gateway: boolean;
|
|
52870
|
+
timezone_raw_offset_ms: number;
|
|
52840
52871
|
lock_mac: string;
|
|
52872
|
+
time_zone?: string | undefined;
|
|
52841
52873
|
}, {
|
|
52842
52874
|
lock_id: number;
|
|
52843
52875
|
lock_name: string;
|
|
52844
52876
|
has_gateway: boolean;
|
|
52877
|
+
timezone_raw_offset_ms: number;
|
|
52845
52878
|
lock_mac: string;
|
|
52879
|
+
time_zone?: string | undefined;
|
|
52846
52880
|
}>>;
|
|
52847
52881
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
52848
52882
|
serial_no: z.ZodString;
|
|
@@ -53222,7 +53256,9 @@ declare const device: z.ZodObject<{
|
|
|
53222
53256
|
lock_id: number;
|
|
53223
53257
|
lock_name: string;
|
|
53224
53258
|
has_gateway: boolean;
|
|
53259
|
+
timezone_raw_offset_ms: number;
|
|
53225
53260
|
lock_mac: string;
|
|
53261
|
+
time_zone?: string | undefined;
|
|
53226
53262
|
} | undefined;
|
|
53227
53263
|
tado_metadata?: {
|
|
53228
53264
|
serial_no: string;
|
|
@@ -53508,7 +53544,9 @@ declare const device: z.ZodObject<{
|
|
|
53508
53544
|
lock_id: number;
|
|
53509
53545
|
lock_name: string;
|
|
53510
53546
|
has_gateway: boolean;
|
|
53547
|
+
timezone_raw_offset_ms: number;
|
|
53511
53548
|
lock_mac: string;
|
|
53549
|
+
time_zone?: string | undefined;
|
|
53512
53550
|
} | undefined;
|
|
53513
53551
|
tado_metadata?: {
|
|
53514
53552
|
serial_no: string;
|
|
@@ -55202,7 +55240,7 @@ declare const device: z.ZodObject<{
|
|
|
55202
55240
|
max_active_access_code_count: number;
|
|
55203
55241
|
})[];
|
|
55204
55242
|
custom_metadata: Record<string, string | boolean>;
|
|
55205
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
55243
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
55206
55244
|
space_ids: string[];
|
|
55207
55245
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
55208
55246
|
properties: {
|
|
@@ -55484,7 +55522,9 @@ declare const device: z.ZodObject<{
|
|
|
55484
55522
|
lock_id: number;
|
|
55485
55523
|
lock_name: string;
|
|
55486
55524
|
has_gateway: boolean;
|
|
55525
|
+
timezone_raw_offset_ms: number;
|
|
55487
55526
|
lock_mac: string;
|
|
55527
|
+
time_zone?: string | undefined;
|
|
55488
55528
|
} | undefined;
|
|
55489
55529
|
tado_metadata?: {
|
|
55490
55530
|
serial_no: string;
|
|
@@ -55936,7 +55976,7 @@ declare const device: z.ZodObject<{
|
|
|
55936
55976
|
max_active_access_code_count: number;
|
|
55937
55977
|
})[];
|
|
55938
55978
|
custom_metadata: Record<string, string | boolean>;
|
|
55939
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
55979
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
55940
55980
|
space_ids: string[];
|
|
55941
55981
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
55942
55982
|
properties: {
|
|
@@ -56218,7 +56258,9 @@ declare const device: z.ZodObject<{
|
|
|
56218
56258
|
lock_id: number;
|
|
56219
56259
|
lock_name: string;
|
|
56220
56260
|
has_gateway: boolean;
|
|
56261
|
+
timezone_raw_offset_ms: number;
|
|
56221
56262
|
lock_mac: string;
|
|
56263
|
+
time_zone?: string | undefined;
|
|
56222
56264
|
} | undefined;
|
|
56223
56265
|
tado_metadata?: {
|
|
56224
56266
|
serial_no: string;
|
|
@@ -56607,7 +56649,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
56607
56649
|
|
|
56608
56650
|
declare const unmanaged_device: z.ZodObject<Pick<{
|
|
56609
56651
|
device_id: z.ZodString;
|
|
56610
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
56652
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
56611
56653
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
56612
56654
|
nickname: z.ZodOptional<z.ZodString>;
|
|
56613
56655
|
display_name: z.ZodString;
|
|
@@ -57560,16 +57602,22 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
57560
57602
|
lock_name: z.ZodString;
|
|
57561
57603
|
lock_mac: z.ZodString;
|
|
57562
57604
|
has_gateway: z.ZodBoolean;
|
|
57605
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
57606
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
57563
57607
|
}, "strip", z.ZodTypeAny, {
|
|
57564
57608
|
lock_id: number;
|
|
57565
57609
|
lock_name: string;
|
|
57566
57610
|
has_gateway: boolean;
|
|
57611
|
+
timezone_raw_offset_ms: number;
|
|
57567
57612
|
lock_mac: string;
|
|
57613
|
+
time_zone?: string | undefined;
|
|
57568
57614
|
}, {
|
|
57569
57615
|
lock_id: number;
|
|
57570
57616
|
lock_name: string;
|
|
57571
57617
|
has_gateway: boolean;
|
|
57618
|
+
timezone_raw_offset_ms: number;
|
|
57572
57619
|
lock_mac: string;
|
|
57620
|
+
time_zone?: string | undefined;
|
|
57573
57621
|
}>>;
|
|
57574
57622
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
57575
57623
|
serial_no: z.ZodString;
|
|
@@ -57949,7 +57997,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
57949
57997
|
lock_id: number;
|
|
57950
57998
|
lock_name: string;
|
|
57951
57999
|
has_gateway: boolean;
|
|
58000
|
+
timezone_raw_offset_ms: number;
|
|
57952
58001
|
lock_mac: string;
|
|
58002
|
+
time_zone?: string | undefined;
|
|
57953
58003
|
} | undefined;
|
|
57954
58004
|
tado_metadata?: {
|
|
57955
58005
|
serial_no: string;
|
|
@@ -58235,7 +58285,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
58235
58285
|
lock_id: number;
|
|
58236
58286
|
lock_name: string;
|
|
58237
58287
|
has_gateway: boolean;
|
|
58288
|
+
timezone_raw_offset_ms: number;
|
|
58238
58289
|
lock_mac: string;
|
|
58290
|
+
time_zone?: string | undefined;
|
|
58239
58291
|
} | undefined;
|
|
58240
58292
|
tado_metadata?: {
|
|
58241
58293
|
serial_no: string;
|
|
@@ -60085,7 +60137,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
60085
60137
|
max_active_access_code_count: number;
|
|
60086
60138
|
})[];
|
|
60087
60139
|
custom_metadata: Record<string, string | boolean>;
|
|
60088
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
60140
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
60089
60141
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
60090
60142
|
properties: {
|
|
60091
60143
|
name: string;
|
|
@@ -60346,7 +60398,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
60346
60398
|
max_active_access_code_count: number;
|
|
60347
60399
|
})[];
|
|
60348
60400
|
custom_metadata: Record<string, string | boolean>;
|
|
60349
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "
|
|
60401
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
60350
60402
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
60351
60403
|
properties: {
|
|
60352
60404
|
name: string;
|
|
@@ -78095,7 +78147,7 @@ type Routes = {
|
|
|
78095
78147
|
/** ID of the device. */
|
|
78096
78148
|
device_id: string;
|
|
78097
78149
|
/** Type of the device. */
|
|
78098
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
78150
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
78099
78151
|
/** IDs of the spaces the device is in. */
|
|
78100
78152
|
space_ids: string[];
|
|
78101
78153
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -78639,6 +78691,10 @@ type Routes = {
|
|
|
78639
78691
|
lock_mac: string;
|
|
78640
78692
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
78641
78693
|
has_gateway: boolean;
|
|
78694
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
78695
|
+
timezone_raw_offset_ms: number;
|
|
78696
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
78697
|
+
time_zone?: string | undefined;
|
|
78642
78698
|
} | undefined;
|
|
78643
78699
|
/** Metadata for a tado° device. */
|
|
78644
78700
|
tado_metadata?: {
|
|
@@ -82766,7 +82822,7 @@ type Routes = {
|
|
|
82766
82822
|
/** ID of the device. */
|
|
82767
82823
|
device_id: string;
|
|
82768
82824
|
/** Type of the device. */
|
|
82769
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
82825
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
82770
82826
|
/** IDs of the spaces the device is in. */
|
|
82771
82827
|
space_ids: string[];
|
|
82772
82828
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -83310,6 +83366,10 @@ type Routes = {
|
|
|
83310
83366
|
lock_mac: string;
|
|
83311
83367
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
83312
83368
|
has_gateway: boolean;
|
|
83369
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
83370
|
+
timezone_raw_offset_ms: number;
|
|
83371
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
83372
|
+
time_zone?: string | undefined;
|
|
83313
83373
|
} | undefined;
|
|
83314
83374
|
/** Metadata for a tado° device. */
|
|
83315
83375
|
tado_metadata?: {
|
|
@@ -102113,7 +102173,7 @@ type Routes = {
|
|
|
102113
102173
|
/** ID of the device. */
|
|
102114
102174
|
device_id: string;
|
|
102115
102175
|
/** Type of the device. */
|
|
102116
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
102176
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
102117
102177
|
/** IDs of the spaces the device is in. */
|
|
102118
102178
|
space_ids: string[];
|
|
102119
102179
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -102657,6 +102717,10 @@ type Routes = {
|
|
|
102657
102717
|
lock_mac: string;
|
|
102658
102718
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
102659
102719
|
has_gateway: boolean;
|
|
102720
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
102721
|
+
timezone_raw_offset_ms: number;
|
|
102722
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
102723
|
+
time_zone?: string | undefined;
|
|
102660
102724
|
} | undefined;
|
|
102661
102725
|
/** Metadata for a tado° device. */
|
|
102662
102726
|
tado_metadata?: {
|
|
@@ -103471,11 +103535,11 @@ type Routes = {
|
|
|
103471
103535
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
103472
103536
|
connect_webview_id?: string | undefined;
|
|
103473
103537
|
/** Device type for which you want to list devices. */
|
|
103474
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
103538
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
|
|
103475
103539
|
/** Array of device types for which you want to list devices. */
|
|
103476
|
-
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
103540
|
+
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
103477
103541
|
/** Manufacturer for which you want to list devices. */
|
|
103478
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | '
|
|
103542
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec') | undefined;
|
|
103479
103543
|
/** Array of device IDs for which you want to list devices. */
|
|
103480
103544
|
device_ids?: string[] | undefined;
|
|
103481
103545
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -103508,7 +103572,7 @@ type Routes = {
|
|
|
103508
103572
|
/** ID of the device. */
|
|
103509
103573
|
device_id: string;
|
|
103510
103574
|
/** Type of the device. */
|
|
103511
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
103575
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
103512
103576
|
/** IDs of the spaces the device is in. */
|
|
103513
103577
|
space_ids: string[];
|
|
103514
103578
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -104052,6 +104116,10 @@ type Routes = {
|
|
|
104052
104116
|
lock_mac: string;
|
|
104053
104117
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
104054
104118
|
has_gateway: boolean;
|
|
104119
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
104120
|
+
timezone_raw_offset_ms: number;
|
|
104121
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
104122
|
+
time_zone?: string | undefined;
|
|
104055
104123
|
} | undefined;
|
|
104056
104124
|
/** Metadata for a tado° device. */
|
|
104057
104125
|
tado_metadata?: {
|
|
@@ -105022,7 +105090,7 @@ type Routes = {
|
|
|
105022
105090
|
/** ID of the device. */
|
|
105023
105091
|
device_id: string;
|
|
105024
105092
|
/** Type of the device. */
|
|
105025
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
105093
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
105026
105094
|
/** Unique identifier for the account associated with the device. */
|
|
105027
105095
|
connected_account_id: string;
|
|
105028
105096
|
/** Location information for the device. */
|
|
@@ -105476,11 +105544,11 @@ type Routes = {
|
|
|
105476
105544
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
105477
105545
|
connect_webview_id?: string | undefined;
|
|
105478
105546
|
/** Device type for which you want to list devices. */
|
|
105479
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
105547
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
|
|
105480
105548
|
/** Array of device types for which you want to list devices. */
|
|
105481
|
-
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
105549
|
+
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
105482
105550
|
/** Manufacturer for which you want to list devices. */
|
|
105483
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | '
|
|
105551
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec') | undefined;
|
|
105484
105552
|
/** Array of device IDs for which you want to list devices. */
|
|
105485
105553
|
device_ids?: string[] | undefined;
|
|
105486
105554
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -105513,7 +105581,7 @@ type Routes = {
|
|
|
105513
105581
|
/** ID of the device. */
|
|
105514
105582
|
device_id: string;
|
|
105515
105583
|
/** Type of the device. */
|
|
105516
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
105584
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
105517
105585
|
/** Unique identifier for the account associated with the device. */
|
|
105518
105586
|
connected_account_id: string;
|
|
105519
105587
|
/** Location information for the device. */
|
|
@@ -113285,7 +113353,7 @@ type Routes = {
|
|
|
113285
113353
|
/** ID of the device. */
|
|
113286
113354
|
device_id: string;
|
|
113287
113355
|
/** Type of the device. */
|
|
113288
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
113356
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
113289
113357
|
/** IDs of the spaces the device is in. */
|
|
113290
113358
|
space_ids: string[];
|
|
113291
113359
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -113829,6 +113897,10 @@ type Routes = {
|
|
|
113829
113897
|
lock_mac: string;
|
|
113830
113898
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
113831
113899
|
has_gateway: boolean;
|
|
113900
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
113901
|
+
timezone_raw_offset_ms: number;
|
|
113902
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
113903
|
+
time_zone?: string | undefined;
|
|
113832
113904
|
} | undefined;
|
|
113833
113905
|
/** Metadata for a tado° device. */
|
|
113834
113906
|
tado_metadata?: {
|
|
@@ -114630,7 +114702,7 @@ type Routes = {
|
|
|
114630
114702
|
/** ID of the device. */
|
|
114631
114703
|
device_id: string;
|
|
114632
114704
|
/** Type of the device. */
|
|
114633
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
114705
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
114634
114706
|
/** IDs of the spaces the device is in. */
|
|
114635
114707
|
space_ids: string[];
|
|
114636
114708
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -115174,6 +115246,10 @@ type Routes = {
|
|
|
115174
115246
|
lock_mac: string;
|
|
115175
115247
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
115176
115248
|
has_gateway: boolean;
|
|
115249
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
115250
|
+
timezone_raw_offset_ms: number;
|
|
115251
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
115252
|
+
time_zone?: string | undefined;
|
|
115177
115253
|
} | undefined;
|
|
115178
115254
|
/** Metadata for a tado° device. */
|
|
115179
115255
|
tado_metadata?: {
|
|
@@ -115988,11 +116064,11 @@ type Routes = {
|
|
|
115988
116064
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
115989
116065
|
connect_webview_id?: string | undefined;
|
|
115990
116066
|
/** Device type of the locks that you want to list. */
|
|
115991
|
-
device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
116067
|
+
device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | undefined;
|
|
115992
116068
|
/** Device types of the locks that you want to list. */
|
|
115993
|
-
device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
116069
|
+
device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock')[] | undefined;
|
|
115994
116070
|
/** Manufacturer of the locks that you want to list. */
|
|
115995
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | '
|
|
116071
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec') | undefined;
|
|
115996
116072
|
/** Array of device IDs for which you want to list devices. */
|
|
115997
116073
|
device_ids?: string[] | undefined;
|
|
115998
116074
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -116025,7 +116101,7 @@ type Routes = {
|
|
|
116025
116101
|
/** ID of the device. */
|
|
116026
116102
|
device_id: string;
|
|
116027
116103
|
/** Type of the device. */
|
|
116028
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
116104
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
116029
116105
|
/** IDs of the spaces the device is in. */
|
|
116030
116106
|
space_ids: string[];
|
|
116031
116107
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -116569,6 +116645,10 @@ type Routes = {
|
|
|
116569
116645
|
lock_mac: string;
|
|
116570
116646
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
116571
116647
|
has_gateway: boolean;
|
|
116648
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
116649
|
+
timezone_raw_offset_ms: number;
|
|
116650
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
116651
|
+
time_zone?: string | undefined;
|
|
116572
116652
|
} | undefined;
|
|
116573
116653
|
/** Metadata for a tado° device. */
|
|
116574
116654
|
tado_metadata?: {
|
|
@@ -117369,7 +117449,7 @@ type Routes = {
|
|
|
117369
117449
|
/** ID of the device. */
|
|
117370
117450
|
device_id: string;
|
|
117371
117451
|
/** Type of the device. */
|
|
117372
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
117452
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
117373
117453
|
/** IDs of the spaces the device is in. */
|
|
117374
117454
|
space_ids: string[];
|
|
117375
117455
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -117913,6 +117993,10 @@ type Routes = {
|
|
|
117913
117993
|
lock_mac: string;
|
|
117914
117994
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
117915
117995
|
has_gateway: boolean;
|
|
117996
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
117997
|
+
timezone_raw_offset_ms: number;
|
|
117998
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
117999
|
+
time_zone?: string | undefined;
|
|
117916
118000
|
} | undefined;
|
|
117917
118001
|
/** Metadata for a tado° device. */
|
|
117918
118002
|
tado_metadata?: {
|
|
@@ -124826,7 +124910,7 @@ type Routes = {
|
|
|
124826
124910
|
/** ID of the device. */
|
|
124827
124911
|
device_id: string;
|
|
124828
124912
|
/** Type of the device. */
|
|
124829
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
124913
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
124830
124914
|
/** IDs of the spaces the device is in. */
|
|
124831
124915
|
space_ids: string[];
|
|
124832
124916
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -125370,6 +125454,10 @@ type Routes = {
|
|
|
125370
125454
|
lock_mac: string;
|
|
125371
125455
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
125372
125456
|
has_gateway: boolean;
|
|
125457
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
125458
|
+
timezone_raw_offset_ms: number;
|
|
125459
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
125460
|
+
time_zone?: string | undefined;
|
|
125373
125461
|
} | undefined;
|
|
125374
125462
|
/** Metadata for a tado° device. */
|
|
125375
125463
|
tado_metadata?: {
|
|
@@ -126170,7 +126258,7 @@ type Routes = {
|
|
|
126170
126258
|
/** ID of the device. */
|
|
126171
126259
|
device_id: string;
|
|
126172
126260
|
/** Type of the device. */
|
|
126173
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
126261
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
126174
126262
|
/** IDs of the spaces the device is in. */
|
|
126175
126263
|
space_ids: string[];
|
|
126176
126264
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -126714,6 +126802,10 @@ type Routes = {
|
|
|
126714
126802
|
lock_mac: string;
|
|
126715
126803
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
126716
126804
|
has_gateway: boolean;
|
|
126805
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
126806
|
+
timezone_raw_offset_ms: number;
|
|
126807
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
126808
|
+
time_zone?: string | undefined;
|
|
126717
126809
|
} | undefined;
|
|
126718
126810
|
/** Metadata for a tado° device. */
|
|
126719
126811
|
tado_metadata?: {
|
|
@@ -140424,7 +140516,7 @@ type Routes = {
|
|
|
140424
140516
|
/** ID of the device. */
|
|
140425
140517
|
device_id: string;
|
|
140426
140518
|
/** Type of the device. */
|
|
140427
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
140519
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
140428
140520
|
/** IDs of the spaces the device is in. */
|
|
140429
140521
|
space_ids: string[];
|
|
140430
140522
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -140968,6 +141060,10 @@ type Routes = {
|
|
|
140968
141060
|
lock_mac: string;
|
|
140969
141061
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
140970
141062
|
has_gateway: boolean;
|
|
141063
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
141064
|
+
timezone_raw_offset_ms: number;
|
|
141065
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
141066
|
+
time_zone?: string | undefined;
|
|
140971
141067
|
} | undefined;
|
|
140972
141068
|
/** Metadata for a tado° device. */
|
|
140973
141069
|
tado_metadata?: {
|
|
@@ -147191,7 +147287,7 @@ type Routes = {
|
|
|
147191
147287
|
/** ID of the device. */
|
|
147192
147288
|
device_id: string;
|
|
147193
147289
|
/** Type of the device. */
|
|
147194
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
147290
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
147195
147291
|
/** IDs of the spaces the device is in. */
|
|
147196
147292
|
space_ids: string[];
|
|
147197
147293
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -147735,6 +147831,10 @@ type Routes = {
|
|
|
147735
147831
|
lock_mac: string;
|
|
147736
147832
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
147737
147833
|
has_gateway: boolean;
|
|
147834
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
147835
|
+
timezone_raw_offset_ms: number;
|
|
147836
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
147837
|
+
time_zone?: string | undefined;
|
|
147738
147838
|
} | undefined;
|
|
147739
147839
|
/** Metadata for a tado° device. */
|
|
147740
147840
|
tado_metadata?: {
|
|
@@ -151630,7 +151730,7 @@ type Routes = {
|
|
|
151630
151730
|
/** ID of the device. */
|
|
151631
151731
|
device_id: string;
|
|
151632
151732
|
/** Type of the device. */
|
|
151633
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
151733
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
151634
151734
|
/** IDs of the spaces the device is in. */
|
|
151635
151735
|
space_ids: string[];
|
|
151636
151736
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -152174,6 +152274,10 @@ type Routes = {
|
|
|
152174
152274
|
lock_mac: string;
|
|
152175
152275
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
152176
152276
|
has_gateway: boolean;
|
|
152277
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
152278
|
+
timezone_raw_offset_ms: number;
|
|
152279
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
152280
|
+
time_zone?: string | undefined;
|
|
152177
152281
|
} | undefined;
|
|
152178
152282
|
/** Metadata for a tado° device. */
|
|
152179
152283
|
tado_metadata?: {
|
|
@@ -152974,7 +153078,7 @@ type Routes = {
|
|
|
152974
153078
|
/** ID of the device. */
|
|
152975
153079
|
device_id: string;
|
|
152976
153080
|
/** Type of the device. */
|
|
152977
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
153081
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
152978
153082
|
/** IDs of the spaces the device is in. */
|
|
152979
153083
|
space_ids: string[];
|
|
152980
153084
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -153518,6 +153622,10 @@ type Routes = {
|
|
|
153518
153622
|
lock_mac: string;
|
|
153519
153623
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
153520
153624
|
has_gateway: boolean;
|
|
153625
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
153626
|
+
timezone_raw_offset_ms: number;
|
|
153627
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
153628
|
+
time_zone?: string | undefined;
|
|
153521
153629
|
} | undefined;
|
|
153522
153630
|
/** Metadata for a tado° device. */
|
|
153523
153631
|
tado_metadata?: {
|
|
@@ -161328,7 +161436,7 @@ type Routes = {
|
|
|
161328
161436
|
/** ID of the device. */
|
|
161329
161437
|
device_id: string;
|
|
161330
161438
|
/** Type of the device. */
|
|
161331
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
161439
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
161332
161440
|
/** IDs of the spaces the device is in. */
|
|
161333
161441
|
space_ids: string[];
|
|
161334
161442
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -161872,6 +161980,10 @@ type Routes = {
|
|
|
161872
161980
|
lock_mac: string;
|
|
161873
161981
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
161874
161982
|
has_gateway: boolean;
|
|
161983
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
161984
|
+
timezone_raw_offset_ms: number;
|
|
161985
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
161986
|
+
time_zone?: string | undefined;
|
|
161875
161987
|
} | undefined;
|
|
161876
161988
|
/** Metadata for a tado° device. */
|
|
161877
161989
|
tado_metadata?: {
|
|
@@ -162674,7 +162786,7 @@ type Routes = {
|
|
|
162674
162786
|
/** ID of the device. */
|
|
162675
162787
|
device_id: string;
|
|
162676
162788
|
/** Type of the device. */
|
|
162677
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
162789
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
162678
162790
|
/** IDs of the spaces the device is in. */
|
|
162679
162791
|
space_ids: string[];
|
|
162680
162792
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -163218,6 +163330,10 @@ type Routes = {
|
|
|
163218
163330
|
lock_mac: string;
|
|
163219
163331
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
163220
163332
|
has_gateway: boolean;
|
|
163333
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
163334
|
+
timezone_raw_offset_ms: number;
|
|
163335
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
163336
|
+
time_zone?: string | undefined;
|
|
163221
163337
|
} | undefined;
|
|
163222
163338
|
/** Metadata for a tado° device. */
|
|
163223
163339
|
tado_metadata?: {
|
|
@@ -165200,7 +165316,7 @@ type Routes = {
|
|
|
165200
165316
|
/** ID of the device. */
|
|
165201
165317
|
device_id: string;
|
|
165202
165318
|
/** Type of the device. */
|
|
165203
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
165319
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
165204
165320
|
/** IDs of the spaces the device is in. */
|
|
165205
165321
|
space_ids: string[];
|
|
165206
165322
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -165744,6 +165860,10 @@ type Routes = {
|
|
|
165744
165860
|
lock_mac: string;
|
|
165745
165861
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
165746
165862
|
has_gateway: boolean;
|
|
165863
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
165864
|
+
timezone_raw_offset_ms: number;
|
|
165865
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
165866
|
+
time_zone?: string | undefined;
|
|
165747
165867
|
} | undefined;
|
|
165748
165868
|
/** Metadata for a tado° device. */
|
|
165749
165869
|
tado_metadata?: {
|
|
@@ -169210,7 +169330,7 @@ type Routes = {
|
|
|
169210
169330
|
/** ID of the device. */
|
|
169211
169331
|
device_id: string;
|
|
169212
169332
|
/** Type of the device. */
|
|
169213
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
169333
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
169214
169334
|
/** Unique identifier for the account associated with the device. */
|
|
169215
169335
|
connected_account_id: string;
|
|
169216
169336
|
/** Location information for the device. */
|