@seamapi/types 1.714.0 → 1.716.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 +93 -76
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +536 -106
- package/dist/index.cjs +93 -76
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +118 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +38 -0
- package/lib/seam/connect/models/devices/device-metadata.js +17 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +57 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +41 -3
- package/lib/seam/connect/openapi.d.ts +31 -46
- package/lib/seam/connect/openapi.js +65 -58
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +288 -44
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +18 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +67 -66
- package/src/lib/seam/connect/route-types.ts +326 -17
package/dist/connect.d.cts
CHANGED
|
@@ -10513,7 +10513,7 @@ declare const batch: z.ZodObject<{
|
|
|
10513
10513
|
}>, "many">>;
|
|
10514
10514
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10515
10515
|
device_id: z.ZodString;
|
|
10516
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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"]>]>;
|
|
10516
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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"]>]>;
|
|
10517
10517
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
10518
10518
|
nickname: z.ZodOptional<z.ZodString>;
|
|
10519
10519
|
display_name: z.ZodString;
|
|
@@ -11560,6 +11560,28 @@ declare const batch: z.ZodObject<{
|
|
|
11560
11560
|
device_type: string;
|
|
11561
11561
|
time_zone: string | null;
|
|
11562
11562
|
}>>;
|
|
11563
|
+
korelock_metadata: z.ZodOptional<z.ZodObject<{
|
|
11564
|
+
device_id: z.ZodOptional<z.ZodString>;
|
|
11565
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
11566
|
+
model_code: z.ZodOptional<z.ZodString>;
|
|
11567
|
+
serial_number: z.ZodOptional<z.ZodString>;
|
|
11568
|
+
firmware_version: z.ZodOptional<z.ZodString>;
|
|
11569
|
+
wifi_signal_strength: z.ZodOptional<z.ZodNumber>;
|
|
11570
|
+
}, "strip", z.ZodTypeAny, {
|
|
11571
|
+
device_id?: string | undefined;
|
|
11572
|
+
device_name?: string | undefined;
|
|
11573
|
+
serial_number?: string | undefined;
|
|
11574
|
+
model_code?: string | undefined;
|
|
11575
|
+
firmware_version?: string | undefined;
|
|
11576
|
+
wifi_signal_strength?: number | undefined;
|
|
11577
|
+
}, {
|
|
11578
|
+
device_id?: string | undefined;
|
|
11579
|
+
device_name?: string | undefined;
|
|
11580
|
+
serial_number?: string | undefined;
|
|
11581
|
+
model_code?: string | undefined;
|
|
11582
|
+
firmware_version?: string | undefined;
|
|
11583
|
+
wifi_signal_strength?: number | undefined;
|
|
11584
|
+
}>>;
|
|
11563
11585
|
}, "strip", z.ZodTypeAny, {
|
|
11564
11586
|
ecobee_metadata?: {
|
|
11565
11587
|
device_name: string;
|
|
@@ -11824,6 +11846,14 @@ declare const batch: z.ZodObject<{
|
|
|
11824
11846
|
device_type: string;
|
|
11825
11847
|
time_zone: string | null;
|
|
11826
11848
|
} | undefined;
|
|
11849
|
+
korelock_metadata?: {
|
|
11850
|
+
device_id?: string | undefined;
|
|
11851
|
+
device_name?: string | undefined;
|
|
11852
|
+
serial_number?: string | undefined;
|
|
11853
|
+
model_code?: string | undefined;
|
|
11854
|
+
firmware_version?: string | undefined;
|
|
11855
|
+
wifi_signal_strength?: number | undefined;
|
|
11856
|
+
} | undefined;
|
|
11827
11857
|
}, {
|
|
11828
11858
|
ecobee_metadata?: {
|
|
11829
11859
|
device_name: string;
|
|
@@ -12088,6 +12118,14 @@ declare const batch: z.ZodObject<{
|
|
|
12088
12118
|
device_type: string;
|
|
12089
12119
|
time_zone: string | null;
|
|
12090
12120
|
} | undefined;
|
|
12121
|
+
korelock_metadata?: {
|
|
12122
|
+
device_id?: string | undefined;
|
|
12123
|
+
device_name?: string | undefined;
|
|
12124
|
+
serial_number?: string | undefined;
|
|
12125
|
+
model_code?: string | undefined;
|
|
12126
|
+
firmware_version?: string | undefined;
|
|
12127
|
+
wifi_signal_strength?: number | undefined;
|
|
12128
|
+
} | undefined;
|
|
12091
12129
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
12092
12130
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
12093
12131
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -13641,7 +13679,7 @@ declare const batch: z.ZodObject<{
|
|
|
13641
13679
|
warning_code: "accessory_keypad_setup_required";
|
|
13642
13680
|
})[];
|
|
13643
13681
|
custom_metadata: Record<string, string | boolean>;
|
|
13644
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
13682
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
13645
13683
|
space_ids: string[];
|
|
13646
13684
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
13647
13685
|
properties: {
|
|
@@ -13956,6 +13994,14 @@ declare const batch: z.ZodObject<{
|
|
|
13956
13994
|
device_type: string;
|
|
13957
13995
|
time_zone: string | null;
|
|
13958
13996
|
} | undefined;
|
|
13997
|
+
korelock_metadata?: {
|
|
13998
|
+
device_id?: string | undefined;
|
|
13999
|
+
device_name?: string | undefined;
|
|
14000
|
+
serial_number?: string | undefined;
|
|
14001
|
+
model_code?: string | undefined;
|
|
14002
|
+
firmware_version?: string | undefined;
|
|
14003
|
+
wifi_signal_strength?: number | undefined;
|
|
14004
|
+
} | undefined;
|
|
13959
14005
|
} & {
|
|
13960
14006
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
13961
14007
|
code_constraints?: ({
|
|
@@ -14331,7 +14377,7 @@ declare const batch: z.ZodObject<{
|
|
|
14331
14377
|
warning_code: "accessory_keypad_setup_required";
|
|
14332
14378
|
})[];
|
|
14333
14379
|
custom_metadata: Record<string, string | boolean>;
|
|
14334
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
14380
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
14335
14381
|
space_ids: string[];
|
|
14336
14382
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
14337
14383
|
properties: {
|
|
@@ -14646,6 +14692,14 @@ declare const batch: z.ZodObject<{
|
|
|
14646
14692
|
device_type: string;
|
|
14647
14693
|
time_zone: string | null;
|
|
14648
14694
|
} | undefined;
|
|
14695
|
+
korelock_metadata?: {
|
|
14696
|
+
device_id?: string | undefined;
|
|
14697
|
+
device_name?: string | undefined;
|
|
14698
|
+
serial_number?: string | undefined;
|
|
14699
|
+
model_code?: string | undefined;
|
|
14700
|
+
firmware_version?: string | undefined;
|
|
14701
|
+
wifi_signal_strength?: number | undefined;
|
|
14702
|
+
} | undefined;
|
|
14649
14703
|
} & {
|
|
14650
14704
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
14651
14705
|
code_constraints?: ({
|
|
@@ -21836,7 +21890,7 @@ declare const batch: z.ZodObject<{
|
|
|
21836
21890
|
}>, "many">>;
|
|
21837
21891
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
21838
21892
|
device_id: z.ZodString;
|
|
21839
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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"]>]>;
|
|
21893
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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"]>]>;
|
|
21840
21894
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
21841
21895
|
nickname: z.ZodOptional<z.ZodString>;
|
|
21842
21896
|
display_name: z.ZodString;
|
|
@@ -22883,6 +22937,28 @@ declare const batch: z.ZodObject<{
|
|
|
22883
22937
|
device_type: string;
|
|
22884
22938
|
time_zone: string | null;
|
|
22885
22939
|
}>>;
|
|
22940
|
+
korelock_metadata: z.ZodOptional<z.ZodObject<{
|
|
22941
|
+
device_id: z.ZodOptional<z.ZodString>;
|
|
22942
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
22943
|
+
model_code: z.ZodOptional<z.ZodString>;
|
|
22944
|
+
serial_number: z.ZodOptional<z.ZodString>;
|
|
22945
|
+
firmware_version: z.ZodOptional<z.ZodString>;
|
|
22946
|
+
wifi_signal_strength: z.ZodOptional<z.ZodNumber>;
|
|
22947
|
+
}, "strip", z.ZodTypeAny, {
|
|
22948
|
+
device_id?: string | undefined;
|
|
22949
|
+
device_name?: string | undefined;
|
|
22950
|
+
serial_number?: string | undefined;
|
|
22951
|
+
model_code?: string | undefined;
|
|
22952
|
+
firmware_version?: string | undefined;
|
|
22953
|
+
wifi_signal_strength?: number | undefined;
|
|
22954
|
+
}, {
|
|
22955
|
+
device_id?: string | undefined;
|
|
22956
|
+
device_name?: string | undefined;
|
|
22957
|
+
serial_number?: string | undefined;
|
|
22958
|
+
model_code?: string | undefined;
|
|
22959
|
+
firmware_version?: string | undefined;
|
|
22960
|
+
wifi_signal_strength?: number | undefined;
|
|
22961
|
+
}>>;
|
|
22886
22962
|
}, "strip", z.ZodTypeAny, {
|
|
22887
22963
|
ecobee_metadata?: {
|
|
22888
22964
|
device_name: string;
|
|
@@ -23147,6 +23223,14 @@ declare const batch: z.ZodObject<{
|
|
|
23147
23223
|
device_type: string;
|
|
23148
23224
|
time_zone: string | null;
|
|
23149
23225
|
} | undefined;
|
|
23226
|
+
korelock_metadata?: {
|
|
23227
|
+
device_id?: string | undefined;
|
|
23228
|
+
device_name?: string | undefined;
|
|
23229
|
+
serial_number?: string | undefined;
|
|
23230
|
+
model_code?: string | undefined;
|
|
23231
|
+
firmware_version?: string | undefined;
|
|
23232
|
+
wifi_signal_strength?: number | undefined;
|
|
23233
|
+
} | undefined;
|
|
23150
23234
|
}, {
|
|
23151
23235
|
ecobee_metadata?: {
|
|
23152
23236
|
device_name: string;
|
|
@@ -23411,6 +23495,14 @@ declare const batch: z.ZodObject<{
|
|
|
23411
23495
|
device_type: string;
|
|
23412
23496
|
time_zone: string | null;
|
|
23413
23497
|
} | undefined;
|
|
23498
|
+
korelock_metadata?: {
|
|
23499
|
+
device_id?: string | undefined;
|
|
23500
|
+
device_name?: string | undefined;
|
|
23501
|
+
serial_number?: string | undefined;
|
|
23502
|
+
model_code?: string | undefined;
|
|
23503
|
+
firmware_version?: string | undefined;
|
|
23504
|
+
wifi_signal_strength?: number | undefined;
|
|
23505
|
+
} | undefined;
|
|
23414
23506
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
23415
23507
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
23416
23508
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -25119,7 +25211,7 @@ declare const batch: z.ZodObject<{
|
|
|
25119
25211
|
warning_code: "accessory_keypad_setup_required";
|
|
25120
25212
|
})[];
|
|
25121
25213
|
custom_metadata: Record<string, string | boolean>;
|
|
25122
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
25214
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
25123
25215
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
25124
25216
|
properties: {
|
|
25125
25217
|
name: string;
|
|
@@ -25360,7 +25452,7 @@ declare const batch: z.ZodObject<{
|
|
|
25360
25452
|
warning_code: "accessory_keypad_setup_required";
|
|
25361
25453
|
})[];
|
|
25362
25454
|
custom_metadata: Record<string, string | boolean>;
|
|
25363
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
25455
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
25364
25456
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
25365
25457
|
properties: {
|
|
25366
25458
|
name: string;
|
|
@@ -32383,7 +32475,7 @@ declare const batch: z.ZodObject<{
|
|
|
32383
32475
|
warning_code: "accessory_keypad_setup_required";
|
|
32384
32476
|
})[];
|
|
32385
32477
|
custom_metadata: Record<string, string | boolean>;
|
|
32386
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
32478
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
32387
32479
|
space_ids: string[];
|
|
32388
32480
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
32389
32481
|
properties: {
|
|
@@ -32698,6 +32790,14 @@ declare const batch: z.ZodObject<{
|
|
|
32698
32790
|
device_type: string;
|
|
32699
32791
|
time_zone: string | null;
|
|
32700
32792
|
} | undefined;
|
|
32793
|
+
korelock_metadata?: {
|
|
32794
|
+
device_id?: string | undefined;
|
|
32795
|
+
device_name?: string | undefined;
|
|
32796
|
+
serial_number?: string | undefined;
|
|
32797
|
+
model_code?: string | undefined;
|
|
32798
|
+
firmware_version?: string | undefined;
|
|
32799
|
+
wifi_signal_strength?: number | undefined;
|
|
32800
|
+
} | undefined;
|
|
32701
32801
|
} & {
|
|
32702
32802
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
32703
32803
|
code_constraints?: ({
|
|
@@ -34486,7 +34586,7 @@ declare const batch: z.ZodObject<{
|
|
|
34486
34586
|
warning_code: "accessory_keypad_setup_required";
|
|
34487
34587
|
})[];
|
|
34488
34588
|
custom_metadata: Record<string, string | boolean>;
|
|
34489
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
34589
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
34490
34590
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
34491
34591
|
properties: {
|
|
34492
34592
|
name: string;
|
|
@@ -36502,7 +36602,7 @@ declare const batch: z.ZodObject<{
|
|
|
36502
36602
|
warning_code: "accessory_keypad_setup_required";
|
|
36503
36603
|
})[];
|
|
36504
36604
|
custom_metadata: Record<string, string | boolean>;
|
|
36505
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
36605
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
36506
36606
|
space_ids: string[];
|
|
36507
36607
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
36508
36608
|
properties: {
|
|
@@ -36817,6 +36917,14 @@ declare const batch: z.ZodObject<{
|
|
|
36817
36917
|
device_type: string;
|
|
36818
36918
|
time_zone: string | null;
|
|
36819
36919
|
} | undefined;
|
|
36920
|
+
korelock_metadata?: {
|
|
36921
|
+
device_id?: string | undefined;
|
|
36922
|
+
device_name?: string | undefined;
|
|
36923
|
+
serial_number?: string | undefined;
|
|
36924
|
+
model_code?: string | undefined;
|
|
36925
|
+
firmware_version?: string | undefined;
|
|
36926
|
+
wifi_signal_strength?: number | undefined;
|
|
36927
|
+
} | undefined;
|
|
36820
36928
|
} & {
|
|
36821
36929
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
36822
36930
|
code_constraints?: ({
|
|
@@ -38605,7 +38713,7 @@ declare const batch: z.ZodObject<{
|
|
|
38605
38713
|
warning_code: "accessory_keypad_setup_required";
|
|
38606
38714
|
})[];
|
|
38607
38715
|
custom_metadata: Record<string, string | boolean>;
|
|
38608
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
38716
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
38609
38717
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
38610
38718
|
properties: {
|
|
38611
38719
|
name: string;
|
|
@@ -41800,7 +41908,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
41800
41908
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
41801
41909
|
declare const device: z.ZodObject<{
|
|
41802
41910
|
device_id: z.ZodString;
|
|
41803
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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"]>]>;
|
|
41911
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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"]>]>;
|
|
41804
41912
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
41805
41913
|
nickname: z.ZodOptional<z.ZodString>;
|
|
41806
41914
|
display_name: z.ZodString;
|
|
@@ -42847,6 +42955,28 @@ declare const device: z.ZodObject<{
|
|
|
42847
42955
|
device_type: string;
|
|
42848
42956
|
time_zone: string | null;
|
|
42849
42957
|
}>>;
|
|
42958
|
+
korelock_metadata: z.ZodOptional<z.ZodObject<{
|
|
42959
|
+
device_id: z.ZodOptional<z.ZodString>;
|
|
42960
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
42961
|
+
model_code: z.ZodOptional<z.ZodString>;
|
|
42962
|
+
serial_number: z.ZodOptional<z.ZodString>;
|
|
42963
|
+
firmware_version: z.ZodOptional<z.ZodString>;
|
|
42964
|
+
wifi_signal_strength: z.ZodOptional<z.ZodNumber>;
|
|
42965
|
+
}, "strip", z.ZodTypeAny, {
|
|
42966
|
+
device_id?: string | undefined;
|
|
42967
|
+
device_name?: string | undefined;
|
|
42968
|
+
serial_number?: string | undefined;
|
|
42969
|
+
model_code?: string | undefined;
|
|
42970
|
+
firmware_version?: string | undefined;
|
|
42971
|
+
wifi_signal_strength?: number | undefined;
|
|
42972
|
+
}, {
|
|
42973
|
+
device_id?: string | undefined;
|
|
42974
|
+
device_name?: string | undefined;
|
|
42975
|
+
serial_number?: string | undefined;
|
|
42976
|
+
model_code?: string | undefined;
|
|
42977
|
+
firmware_version?: string | undefined;
|
|
42978
|
+
wifi_signal_strength?: number | undefined;
|
|
42979
|
+
}>>;
|
|
42850
42980
|
}, "strip", z.ZodTypeAny, {
|
|
42851
42981
|
ecobee_metadata?: {
|
|
42852
42982
|
device_name: string;
|
|
@@ -43111,6 +43241,14 @@ declare const device: z.ZodObject<{
|
|
|
43111
43241
|
device_type: string;
|
|
43112
43242
|
time_zone: string | null;
|
|
43113
43243
|
} | undefined;
|
|
43244
|
+
korelock_metadata?: {
|
|
43245
|
+
device_id?: string | undefined;
|
|
43246
|
+
device_name?: string | undefined;
|
|
43247
|
+
serial_number?: string | undefined;
|
|
43248
|
+
model_code?: string | undefined;
|
|
43249
|
+
firmware_version?: string | undefined;
|
|
43250
|
+
wifi_signal_strength?: number | undefined;
|
|
43251
|
+
} | undefined;
|
|
43114
43252
|
}, {
|
|
43115
43253
|
ecobee_metadata?: {
|
|
43116
43254
|
device_name: string;
|
|
@@ -43375,6 +43513,14 @@ declare const device: z.ZodObject<{
|
|
|
43375
43513
|
device_type: string;
|
|
43376
43514
|
time_zone: string | null;
|
|
43377
43515
|
} | undefined;
|
|
43516
|
+
korelock_metadata?: {
|
|
43517
|
+
device_id?: string | undefined;
|
|
43518
|
+
device_name?: string | undefined;
|
|
43519
|
+
serial_number?: string | undefined;
|
|
43520
|
+
model_code?: string | undefined;
|
|
43521
|
+
firmware_version?: string | undefined;
|
|
43522
|
+
wifi_signal_strength?: number | undefined;
|
|
43523
|
+
} | undefined;
|
|
43378
43524
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
43379
43525
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
43380
43526
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -44928,7 +45074,7 @@ declare const device: z.ZodObject<{
|
|
|
44928
45074
|
warning_code: "accessory_keypad_setup_required";
|
|
44929
45075
|
})[];
|
|
44930
45076
|
custom_metadata: Record<string, string | boolean>;
|
|
44931
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
45077
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
44932
45078
|
space_ids: string[];
|
|
44933
45079
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
44934
45080
|
properties: {
|
|
@@ -45243,6 +45389,14 @@ declare const device: z.ZodObject<{
|
|
|
45243
45389
|
device_type: string;
|
|
45244
45390
|
time_zone: string | null;
|
|
45245
45391
|
} | undefined;
|
|
45392
|
+
korelock_metadata?: {
|
|
45393
|
+
device_id?: string | undefined;
|
|
45394
|
+
device_name?: string | undefined;
|
|
45395
|
+
serial_number?: string | undefined;
|
|
45396
|
+
model_code?: string | undefined;
|
|
45397
|
+
firmware_version?: string | undefined;
|
|
45398
|
+
wifi_signal_strength?: number | undefined;
|
|
45399
|
+
} | undefined;
|
|
45246
45400
|
} & {
|
|
45247
45401
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
45248
45402
|
code_constraints?: ({
|
|
@@ -45618,7 +45772,7 @@ declare const device: z.ZodObject<{
|
|
|
45618
45772
|
warning_code: "accessory_keypad_setup_required";
|
|
45619
45773
|
})[];
|
|
45620
45774
|
custom_metadata: Record<string, string | boolean>;
|
|
45621
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
45775
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
45622
45776
|
space_ids: string[];
|
|
45623
45777
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
45624
45778
|
properties: {
|
|
@@ -45933,6 +46087,14 @@ declare const device: z.ZodObject<{
|
|
|
45933
46087
|
device_type: string;
|
|
45934
46088
|
time_zone: string | null;
|
|
45935
46089
|
} | undefined;
|
|
46090
|
+
korelock_metadata?: {
|
|
46091
|
+
device_id?: string | undefined;
|
|
46092
|
+
device_name?: string | undefined;
|
|
46093
|
+
serial_number?: string | undefined;
|
|
46094
|
+
model_code?: string | undefined;
|
|
46095
|
+
firmware_version?: string | undefined;
|
|
46096
|
+
wifi_signal_strength?: number | undefined;
|
|
46097
|
+
} | undefined;
|
|
45936
46098
|
} & {
|
|
45937
46099
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
45938
46100
|
code_constraints?: ({
|
|
@@ -46173,6 +46335,7 @@ declare const DEVICE_PROVIDERS: {
|
|
|
46173
46335
|
readonly SENSI: "sensi";
|
|
46174
46336
|
readonly KWIKSET2: "kwikset2";
|
|
46175
46337
|
readonly KEYNEST: "keynest";
|
|
46338
|
+
readonly KORELOCK: "korelock";
|
|
46176
46339
|
readonly DORMAKABA_AMBIANCE: "dormakaba_ambiance";
|
|
46177
46340
|
readonly ULTRALOQ: "ultraloq";
|
|
46178
46341
|
};
|
|
@@ -46255,7 +46418,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
46255
46418
|
|
|
46256
46419
|
declare const unmanaged_device: z.ZodObject<Pick<{
|
|
46257
46420
|
device_id: z.ZodString;
|
|
46258
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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"]>]>;
|
|
46421
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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"]>]>;
|
|
46259
46422
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
46260
46423
|
nickname: z.ZodOptional<z.ZodString>;
|
|
46261
46424
|
display_name: z.ZodString;
|
|
@@ -47302,6 +47465,28 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47302
47465
|
device_type: string;
|
|
47303
47466
|
time_zone: string | null;
|
|
47304
47467
|
}>>;
|
|
47468
|
+
korelock_metadata: z.ZodOptional<z.ZodObject<{
|
|
47469
|
+
device_id: z.ZodOptional<z.ZodString>;
|
|
47470
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
47471
|
+
model_code: z.ZodOptional<z.ZodString>;
|
|
47472
|
+
serial_number: z.ZodOptional<z.ZodString>;
|
|
47473
|
+
firmware_version: z.ZodOptional<z.ZodString>;
|
|
47474
|
+
wifi_signal_strength: z.ZodOptional<z.ZodNumber>;
|
|
47475
|
+
}, "strip", z.ZodTypeAny, {
|
|
47476
|
+
device_id?: string | undefined;
|
|
47477
|
+
device_name?: string | undefined;
|
|
47478
|
+
serial_number?: string | undefined;
|
|
47479
|
+
model_code?: string | undefined;
|
|
47480
|
+
firmware_version?: string | undefined;
|
|
47481
|
+
wifi_signal_strength?: number | undefined;
|
|
47482
|
+
}, {
|
|
47483
|
+
device_id?: string | undefined;
|
|
47484
|
+
device_name?: string | undefined;
|
|
47485
|
+
serial_number?: string | undefined;
|
|
47486
|
+
model_code?: string | undefined;
|
|
47487
|
+
firmware_version?: string | undefined;
|
|
47488
|
+
wifi_signal_strength?: number | undefined;
|
|
47489
|
+
}>>;
|
|
47305
47490
|
}, "strip", z.ZodTypeAny, {
|
|
47306
47491
|
ecobee_metadata?: {
|
|
47307
47492
|
device_name: string;
|
|
@@ -47566,6 +47751,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47566
47751
|
device_type: string;
|
|
47567
47752
|
time_zone: string | null;
|
|
47568
47753
|
} | undefined;
|
|
47754
|
+
korelock_metadata?: {
|
|
47755
|
+
device_id?: string | undefined;
|
|
47756
|
+
device_name?: string | undefined;
|
|
47757
|
+
serial_number?: string | undefined;
|
|
47758
|
+
model_code?: string | undefined;
|
|
47759
|
+
firmware_version?: string | undefined;
|
|
47760
|
+
wifi_signal_strength?: number | undefined;
|
|
47761
|
+
} | undefined;
|
|
47569
47762
|
}, {
|
|
47570
47763
|
ecobee_metadata?: {
|
|
47571
47764
|
device_name: string;
|
|
@@ -47830,6 +48023,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47830
48023
|
device_type: string;
|
|
47831
48024
|
time_zone: string | null;
|
|
47832
48025
|
} | undefined;
|
|
48026
|
+
korelock_metadata?: {
|
|
48027
|
+
device_id?: string | undefined;
|
|
48028
|
+
device_name?: string | undefined;
|
|
48029
|
+
serial_number?: string | undefined;
|
|
48030
|
+
model_code?: string | undefined;
|
|
48031
|
+
firmware_version?: string | undefined;
|
|
48032
|
+
wifi_signal_strength?: number | undefined;
|
|
48033
|
+
} | undefined;
|
|
47833
48034
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
47834
48035
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
47835
48036
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -49538,7 +49739,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
49538
49739
|
warning_code: "accessory_keypad_setup_required";
|
|
49539
49740
|
})[];
|
|
49540
49741
|
custom_metadata: Record<string, string | boolean>;
|
|
49541
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
49742
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
49542
49743
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
49543
49744
|
properties: {
|
|
49544
49745
|
name: string;
|
|
@@ -49779,7 +49980,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
49779
49980
|
warning_code: "accessory_keypad_setup_required";
|
|
49780
49981
|
})[];
|
|
49781
49982
|
custom_metadata: Record<string, string | boolean>;
|
|
49782
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_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");
|
|
49983
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_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");
|
|
49783
49984
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
49784
49985
|
properties: {
|
|
49785
49986
|
name: string;
|
|
@@ -59556,6 +59757,37 @@ declare const _default: {
|
|
|
59556
59757
|
};
|
|
59557
59758
|
type: string;
|
|
59558
59759
|
};
|
|
59760
|
+
korelock_metadata: {
|
|
59761
|
+
description: string;
|
|
59762
|
+
properties: {
|
|
59763
|
+
device_id: {
|
|
59764
|
+
description: string;
|
|
59765
|
+
type: string;
|
|
59766
|
+
};
|
|
59767
|
+
device_name: {
|
|
59768
|
+
description: string;
|
|
59769
|
+
type: string;
|
|
59770
|
+
};
|
|
59771
|
+
firmware_version: {
|
|
59772
|
+
description: string;
|
|
59773
|
+
type: string;
|
|
59774
|
+
};
|
|
59775
|
+
model_code: {
|
|
59776
|
+
description: string;
|
|
59777
|
+
type: string;
|
|
59778
|
+
};
|
|
59779
|
+
serial_number: {
|
|
59780
|
+
description: string;
|
|
59781
|
+
type: string;
|
|
59782
|
+
};
|
|
59783
|
+
wifi_signal_strength: {
|
|
59784
|
+
description: string;
|
|
59785
|
+
format: string;
|
|
59786
|
+
type: string;
|
|
59787
|
+
};
|
|
59788
|
+
};
|
|
59789
|
+
type: string;
|
|
59790
|
+
};
|
|
59559
59791
|
kwikset_metadata: {
|
|
59560
59792
|
description: string;
|
|
59561
59793
|
properties: {
|
|
@@ -69914,20 +70146,6 @@ declare const _default: {
|
|
|
69914
70146
|
description: string;
|
|
69915
70147
|
type: string;
|
|
69916
70148
|
};
|
|
69917
|
-
is_offline_access_code: {
|
|
69918
|
-
description: string;
|
|
69919
|
-
type: string;
|
|
69920
|
-
};
|
|
69921
|
-
is_one_time_use: {
|
|
69922
|
-
description: string;
|
|
69923
|
-
type: string;
|
|
69924
|
-
};
|
|
69925
|
-
max_time_rounding: {
|
|
69926
|
-
default: string;
|
|
69927
|
-
description: string;
|
|
69928
|
-
enum: string[];
|
|
69929
|
-
type: string;
|
|
69930
|
-
};
|
|
69931
70149
|
name: {
|
|
69932
70150
|
description: string;
|
|
69933
70151
|
type: string;
|
|
@@ -69945,15 +70163,6 @@ declare const _default: {
|
|
|
69945
70163
|
description: string;
|
|
69946
70164
|
type: string;
|
|
69947
70165
|
};
|
|
69948
|
-
use_backup_access_code_pool: {
|
|
69949
|
-
description: string;
|
|
69950
|
-
type: string;
|
|
69951
|
-
};
|
|
69952
|
-
use_offline_access_code: {
|
|
69953
|
-
deprecated: boolean;
|
|
69954
|
-
type: string;
|
|
69955
|
-
'x-deprecated': string;
|
|
69956
|
-
};
|
|
69957
70166
|
};
|
|
69958
70167
|
required: string[];
|
|
69959
70168
|
type: string;
|
|
@@ -70075,20 +70284,6 @@ declare const _default: {
|
|
|
70075
70284
|
description: string;
|
|
70076
70285
|
type: string;
|
|
70077
70286
|
};
|
|
70078
|
-
is_offline_access_code: {
|
|
70079
|
-
description: string;
|
|
70080
|
-
type: string;
|
|
70081
|
-
};
|
|
70082
|
-
is_one_time_use: {
|
|
70083
|
-
description: string;
|
|
70084
|
-
type: string;
|
|
70085
|
-
};
|
|
70086
|
-
max_time_rounding: {
|
|
70087
|
-
default: string;
|
|
70088
|
-
description: string;
|
|
70089
|
-
enum: string[];
|
|
70090
|
-
type: string;
|
|
70091
|
-
};
|
|
70092
70287
|
name: {
|
|
70093
70288
|
description: string;
|
|
70094
70289
|
type: string;
|
|
@@ -70106,15 +70301,6 @@ declare const _default: {
|
|
|
70106
70301
|
description: string;
|
|
70107
70302
|
type: string;
|
|
70108
70303
|
};
|
|
70109
|
-
use_backup_access_code_pool: {
|
|
70110
|
-
description: string;
|
|
70111
|
-
type: string;
|
|
70112
|
-
};
|
|
70113
|
-
use_offline_access_code: {
|
|
70114
|
-
deprecated: boolean;
|
|
70115
|
-
type: string;
|
|
70116
|
-
'x-deprecated': string;
|
|
70117
|
-
};
|
|
70118
70304
|
};
|
|
70119
70305
|
required: string[];
|
|
70120
70306
|
type: string;
|
|
@@ -118772,7 +118958,7 @@ type Routes = {
|
|
|
118772
118958
|
device_ids: string[];
|
|
118773
118959
|
/** Desired behavior if any device cannot share a code. If `throw` (default), no access codes will be created if any device cannot share a code. If `create_random_code`, a random code will be created on devices that cannot share a code. */
|
|
118774
118960
|
behavior_when_code_cannot_be_shared?: 'throw' | 'create_random_code';
|
|
118775
|
-
/** Preferred code length.
|
|
118961
|
+
/** Preferred code length. If the affected devices do not support the preferred code length, Seam reverts to using the shortest supported code length. */
|
|
118776
118962
|
preferred_code_length?: number | undefined;
|
|
118777
118963
|
/** Name of the new access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.
|
|
118778
118964
|
|
|
@@ -118791,21 +118977,10 @@ type Routes = {
|
|
|
118791
118977
|
attempt_for_offline_device?: boolean;
|
|
118792
118978
|
/** Indicates whether [native scheduling](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) should be used for time-bound codes when supported by the provider. Default: `true`. */
|
|
118793
118979
|
prefer_native_scheduling?: boolean | undefined;
|
|
118794
|
-
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code). */
|
|
118795
|
-
use_backup_access_code_pool?: boolean | undefined;
|
|
118796
118980
|
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
118797
118981
|
allow_external_modification?: boolean | undefined;
|
|
118798
118982
|
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
118799
118983
|
is_external_modification_allowed?: boolean | undefined;
|
|
118800
|
-
/**
|
|
118801
|
-
* @deprecated Use `is_offline_access_code` instead.*/
|
|
118802
|
-
use_offline_access_code?: boolean | undefined;
|
|
118803
|
-
/** Indicates whether the access code is an [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes). */
|
|
118804
|
-
is_offline_access_code?: boolean | undefined;
|
|
118805
|
-
/** Indicates whether the [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes) is a single-use access code. */
|
|
118806
|
-
is_one_time_use?: boolean | undefined;
|
|
118807
|
-
/** Maximum rounding adjustment. To create a daily-bound [offline access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/offline-access-codes) for devices that support this feature, set this parameter to `1d`. */
|
|
118808
|
-
max_time_rounding?: '1hour' | '1day' | '1h' | '1d';
|
|
118809
118984
|
};
|
|
118810
118985
|
commonParams: {};
|
|
118811
118986
|
formData: {};
|
|
@@ -127041,7 +127216,7 @@ type Routes = {
|
|
|
127041
127216
|
/** ID of the device. */
|
|
127042
127217
|
device_id: string;
|
|
127043
127218
|
/** Type of the device. */
|
|
127044
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
127219
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
127045
127220
|
/** IDs of the spaces the device is in. */
|
|
127046
127221
|
space_ids: string[];
|
|
127047
127222
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -127644,6 +127819,21 @@ type Routes = {
|
|
|
127644
127819
|
/** IANA timezone for the Ultraloq device. */
|
|
127645
127820
|
time_zone: string | null;
|
|
127646
127821
|
} | undefined;
|
|
127822
|
+
/** Metadata for a Korelock device. */
|
|
127823
|
+
korelock_metadata?: {
|
|
127824
|
+
/** Device ID for a Korelock device. */
|
|
127825
|
+
device_id?: string | undefined;
|
|
127826
|
+
/** Device name for a Korelock device. */
|
|
127827
|
+
device_name?: string | undefined;
|
|
127828
|
+
/** Model code for a Korelock device. */
|
|
127829
|
+
model_code?: string | undefined;
|
|
127830
|
+
/** Serial number for a Korelock device. */
|
|
127831
|
+
serial_number?: string | undefined;
|
|
127832
|
+
/** Firmware version for a Korelock device. */
|
|
127833
|
+
firmware_version?: string | undefined;
|
|
127834
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
127835
|
+
wifi_signal_strength?: number | undefined;
|
|
127836
|
+
} | undefined;
|
|
127647
127837
|
}) & ({
|
|
127648
127838
|
/** */
|
|
127649
127839
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -130524,7 +130714,7 @@ type Routes = {
|
|
|
130524
130714
|
/** ID of the device. */
|
|
130525
130715
|
device_id: string;
|
|
130526
130716
|
/** Type of the device. */
|
|
130527
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
130717
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
130528
130718
|
/** IDs of the spaces the device is in. */
|
|
130529
130719
|
space_ids: string[];
|
|
130530
130720
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -131127,6 +131317,21 @@ type Routes = {
|
|
|
131127
131317
|
/** IANA timezone for the Ultraloq device. */
|
|
131128
131318
|
time_zone: string | null;
|
|
131129
131319
|
} | undefined;
|
|
131320
|
+
/** Metadata for a Korelock device. */
|
|
131321
|
+
korelock_metadata?: {
|
|
131322
|
+
/** Device ID for a Korelock device. */
|
|
131323
|
+
device_id?: string | undefined;
|
|
131324
|
+
/** Device name for a Korelock device. */
|
|
131325
|
+
device_name?: string | undefined;
|
|
131326
|
+
/** Model code for a Korelock device. */
|
|
131327
|
+
model_code?: string | undefined;
|
|
131328
|
+
/** Serial number for a Korelock device. */
|
|
131329
|
+
serial_number?: string | undefined;
|
|
131330
|
+
/** Firmware version for a Korelock device. */
|
|
131331
|
+
firmware_version?: string | undefined;
|
|
131332
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
131333
|
+
wifi_signal_strength?: number | undefined;
|
|
131334
|
+
} | undefined;
|
|
131130
131335
|
}) & ({
|
|
131131
131336
|
/** */
|
|
131132
131337
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -142744,7 +142949,7 @@ type Routes = {
|
|
|
142744
142949
|
/** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
|
|
142745
142950
|
customer_key?: string | undefined;
|
|
142746
142951
|
/** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with no filters. */
|
|
142747
|
-
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'dormakaba_ambiance' | 'ultraloq' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
142952
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
142748
142953
|
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
142749
142954
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
142750
142955
|
/** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/latest/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
@@ -144278,7 +144483,7 @@ type Routes = {
|
|
|
144278
144483
|
/** ID of the device. */
|
|
144279
144484
|
device_id: string;
|
|
144280
144485
|
/** Type of the device. */
|
|
144281
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
144486
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
144282
144487
|
/** IDs of the spaces the device is in. */
|
|
144283
144488
|
space_ids: string[];
|
|
144284
144489
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -144881,6 +145086,21 @@ type Routes = {
|
|
|
144881
145086
|
/** IANA timezone for the Ultraloq device. */
|
|
144882
145087
|
time_zone: string | null;
|
|
144883
145088
|
} | undefined;
|
|
145089
|
+
/** Metadata for a Korelock device. */
|
|
145090
|
+
korelock_metadata?: {
|
|
145091
|
+
/** Device ID for a Korelock device. */
|
|
145092
|
+
device_id?: string | undefined;
|
|
145093
|
+
/** Device name for a Korelock device. */
|
|
145094
|
+
device_name?: string | undefined;
|
|
145095
|
+
/** Model code for a Korelock device. */
|
|
145096
|
+
model_code?: string | undefined;
|
|
145097
|
+
/** Serial number for a Korelock device. */
|
|
145098
|
+
serial_number?: string | undefined;
|
|
145099
|
+
/** Firmware version for a Korelock device. */
|
|
145100
|
+
firmware_version?: string | undefined;
|
|
145101
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
145102
|
+
wifi_signal_strength?: number | undefined;
|
|
145103
|
+
} | undefined;
|
|
144884
145104
|
}) & ({
|
|
144885
145105
|
/** */
|
|
144886
145106
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -145554,11 +145774,11 @@ type Routes = {
|
|
|
145554
145774
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
145555
145775
|
connect_webview_id?: string | undefined;
|
|
145556
145776
|
/** Device type for which you want to list devices. */
|
|
145557
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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')) | undefined;
|
|
145777
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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')) | undefined;
|
|
145558
145778
|
/** Array of device types for which you want to list devices. */
|
|
145559
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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'))[] | undefined;
|
|
145779
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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'))[] | undefined;
|
|
145560
145780
|
/** Manufacturer for which you want to list devices. */
|
|
145561
|
-
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' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | '
|
|
145781
|
+
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' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
145562
145782
|
/** Array of device IDs for which you want to list devices. */
|
|
145563
145783
|
device_ids?: string[] | undefined;
|
|
145564
145784
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -145591,7 +145811,7 @@ type Routes = {
|
|
|
145591
145811
|
/** ID of the device. */
|
|
145592
145812
|
device_id: string;
|
|
145593
145813
|
/** Type of the device. */
|
|
145594
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
145814
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
145595
145815
|
/** IDs of the spaces the device is in. */
|
|
145596
145816
|
space_ids: string[];
|
|
145597
145817
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -146194,6 +146414,21 @@ type Routes = {
|
|
|
146194
146414
|
/** IANA timezone for the Ultraloq device. */
|
|
146195
146415
|
time_zone: string | null;
|
|
146196
146416
|
} | undefined;
|
|
146417
|
+
/** Metadata for a Korelock device. */
|
|
146418
|
+
korelock_metadata?: {
|
|
146419
|
+
/** Device ID for a Korelock device. */
|
|
146420
|
+
device_id?: string | undefined;
|
|
146421
|
+
/** Device name for a Korelock device. */
|
|
146422
|
+
device_name?: string | undefined;
|
|
146423
|
+
/** Model code for a Korelock device. */
|
|
146424
|
+
model_code?: string | undefined;
|
|
146425
|
+
/** Serial number for a Korelock device. */
|
|
146426
|
+
serial_number?: string | undefined;
|
|
146427
|
+
/** Firmware version for a Korelock device. */
|
|
146428
|
+
firmware_version?: string | undefined;
|
|
146429
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
146430
|
+
wifi_signal_strength?: number | undefined;
|
|
146431
|
+
} | undefined;
|
|
146197
146432
|
}) & ({
|
|
146198
146433
|
/** */
|
|
146199
146434
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -146873,7 +147108,7 @@ type Routes = {
|
|
|
146873
147108
|
formData: {};
|
|
146874
147109
|
jsonResponse: {
|
|
146875
147110
|
device_providers: {
|
|
146876
|
-
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'dormakaba_ambiance' | 'ultraloq';
|
|
147111
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq';
|
|
146877
147112
|
display_name: string;
|
|
146878
147113
|
image_url: string;
|
|
146879
147114
|
provider_categories: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems')[];
|
|
@@ -147017,7 +147252,7 @@ type Routes = {
|
|
|
147017
147252
|
/** ID of the device. */
|
|
147018
147253
|
device_id: string;
|
|
147019
147254
|
/** Type of the device. */
|
|
147020
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
147255
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
147021
147256
|
/** Unique identifier for the account associated with the device. */
|
|
147022
147257
|
connected_account_id: string;
|
|
147023
147258
|
/** Location information for the device. */
|
|
@@ -147435,11 +147670,11 @@ type Routes = {
|
|
|
147435
147670
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
147436
147671
|
connect_webview_id?: string | undefined;
|
|
147437
147672
|
/** Device type for which you want to list devices. */
|
|
147438
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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')) | undefined;
|
|
147673
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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')) | undefined;
|
|
147439
147674
|
/** Array of device types for which you want to list devices. */
|
|
147440
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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'))[] | undefined;
|
|
147675
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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'))[] | undefined;
|
|
147441
147676
|
/** Manufacturer for which you want to list devices. */
|
|
147442
|
-
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' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | '
|
|
147677
|
+
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' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
147443
147678
|
/** Array of device IDs for which you want to list devices. */
|
|
147444
147679
|
device_ids?: string[] | undefined;
|
|
147445
147680
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -147472,7 +147707,7 @@ type Routes = {
|
|
|
147472
147707
|
/** ID of the device. */
|
|
147473
147708
|
device_id: string;
|
|
147474
147709
|
/** Type of the device. */
|
|
147475
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
147710
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
147476
147711
|
/** Unique identifier for the account associated with the device. */
|
|
147477
147712
|
connected_account_id: string;
|
|
147478
147713
|
/** Location information for the device. */
|
|
@@ -152232,7 +152467,7 @@ type Routes = {
|
|
|
152232
152467
|
/** ID of the device. */
|
|
152233
152468
|
device_id: string;
|
|
152234
152469
|
/** Type of the device. */
|
|
152235
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
152470
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
152236
152471
|
/** IDs of the spaces the device is in. */
|
|
152237
152472
|
space_ids: string[];
|
|
152238
152473
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -152835,6 +153070,21 @@ type Routes = {
|
|
|
152835
153070
|
/** IANA timezone for the Ultraloq device. */
|
|
152836
153071
|
time_zone: string | null;
|
|
152837
153072
|
} | undefined;
|
|
153073
|
+
/** Metadata for a Korelock device. */
|
|
153074
|
+
korelock_metadata?: {
|
|
153075
|
+
/** Device ID for a Korelock device. */
|
|
153076
|
+
device_id?: string | undefined;
|
|
153077
|
+
/** Device name for a Korelock device. */
|
|
153078
|
+
device_name?: string | undefined;
|
|
153079
|
+
/** Model code for a Korelock device. */
|
|
153080
|
+
model_code?: string | undefined;
|
|
153081
|
+
/** Serial number for a Korelock device. */
|
|
153082
|
+
serial_number?: string | undefined;
|
|
153083
|
+
/** Firmware version for a Korelock device. */
|
|
153084
|
+
firmware_version?: string | undefined;
|
|
153085
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
153086
|
+
wifi_signal_strength?: number | undefined;
|
|
153087
|
+
} | undefined;
|
|
152838
153088
|
}) & ({
|
|
152839
153089
|
/** */
|
|
152840
153090
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -153495,7 +153745,7 @@ type Routes = {
|
|
|
153495
153745
|
/** ID of the device. */
|
|
153496
153746
|
device_id: string;
|
|
153497
153747
|
/** Type of the device. */
|
|
153498
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
153748
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
153499
153749
|
/** IDs of the spaces the device is in. */
|
|
153500
153750
|
space_ids: string[];
|
|
153501
153751
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -154098,6 +154348,21 @@ type Routes = {
|
|
|
154098
154348
|
/** IANA timezone for the Ultraloq device. */
|
|
154099
154349
|
time_zone: string | null;
|
|
154100
154350
|
} | undefined;
|
|
154351
|
+
/** Metadata for a Korelock device. */
|
|
154352
|
+
korelock_metadata?: {
|
|
154353
|
+
/** Device ID for a Korelock device. */
|
|
154354
|
+
device_id?: string | undefined;
|
|
154355
|
+
/** Device name for a Korelock device. */
|
|
154356
|
+
device_name?: string | undefined;
|
|
154357
|
+
/** Model code for a Korelock device. */
|
|
154358
|
+
model_code?: string | undefined;
|
|
154359
|
+
/** Serial number for a Korelock device. */
|
|
154360
|
+
serial_number?: string | undefined;
|
|
154361
|
+
/** Firmware version for a Korelock device. */
|
|
154362
|
+
firmware_version?: string | undefined;
|
|
154363
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
154364
|
+
wifi_signal_strength?: number | undefined;
|
|
154365
|
+
} | undefined;
|
|
154101
154366
|
}) & ({
|
|
154102
154367
|
/** */
|
|
154103
154368
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -154771,11 +155036,11 @@ type Routes = {
|
|
|
154771
155036
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
154772
155037
|
connect_webview_id?: string | undefined;
|
|
154773
155038
|
/** Device type of the locks that you want to list. */
|
|
154774
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock') | undefined;
|
|
155039
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | undefined;
|
|
154775
155040
|
/** Device types of the locks that you want to list. */
|
|
154776
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock')[] | undefined;
|
|
155041
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock')[] | undefined;
|
|
154777
155042
|
/** Manufacturer of the locks that you want to list. */
|
|
154778
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'kwikset2' | 'smartthings' | 'ultraloq') | undefined;
|
|
155043
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'korelock' | 'kwikset2' | 'smartthings' | 'ultraloq') | undefined;
|
|
154779
155044
|
/** Array of device IDs for which you want to list devices. */
|
|
154780
155045
|
device_ids?: string[] | undefined;
|
|
154781
155046
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -154808,7 +155073,7 @@ type Routes = {
|
|
|
154808
155073
|
/** ID of the device. */
|
|
154809
155074
|
device_id: string;
|
|
154810
155075
|
/** Type of the device. */
|
|
154811
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
155076
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
154812
155077
|
/** IDs of the spaces the device is in. */
|
|
154813
155078
|
space_ids: string[];
|
|
154814
155079
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -155411,6 +155676,21 @@ type Routes = {
|
|
|
155411
155676
|
/** IANA timezone for the Ultraloq device. */
|
|
155412
155677
|
time_zone: string | null;
|
|
155413
155678
|
} | undefined;
|
|
155679
|
+
/** Metadata for a Korelock device. */
|
|
155680
|
+
korelock_metadata?: {
|
|
155681
|
+
/** Device ID for a Korelock device. */
|
|
155682
|
+
device_id?: string | undefined;
|
|
155683
|
+
/** Device name for a Korelock device. */
|
|
155684
|
+
device_name?: string | undefined;
|
|
155685
|
+
/** Model code for a Korelock device. */
|
|
155686
|
+
model_code?: string | undefined;
|
|
155687
|
+
/** Serial number for a Korelock device. */
|
|
155688
|
+
serial_number?: string | undefined;
|
|
155689
|
+
/** Firmware version for a Korelock device. */
|
|
155690
|
+
firmware_version?: string | undefined;
|
|
155691
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
155692
|
+
wifi_signal_strength?: number | undefined;
|
|
155693
|
+
} | undefined;
|
|
155414
155694
|
}) & ({
|
|
155415
155695
|
/** */
|
|
155416
155696
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -156070,7 +156350,7 @@ type Routes = {
|
|
|
156070
156350
|
/** ID of the device. */
|
|
156071
156351
|
device_id: string;
|
|
156072
156352
|
/** Type of the device. */
|
|
156073
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
156353
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
156074
156354
|
/** IDs of the spaces the device is in. */
|
|
156075
156355
|
space_ids: string[];
|
|
156076
156356
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -156673,6 +156953,21 @@ type Routes = {
|
|
|
156673
156953
|
/** IANA timezone for the Ultraloq device. */
|
|
156674
156954
|
time_zone: string | null;
|
|
156675
156955
|
} | undefined;
|
|
156956
|
+
/** Metadata for a Korelock device. */
|
|
156957
|
+
korelock_metadata?: {
|
|
156958
|
+
/** Device ID for a Korelock device. */
|
|
156959
|
+
device_id?: string | undefined;
|
|
156960
|
+
/** Device name for a Korelock device. */
|
|
156961
|
+
device_name?: string | undefined;
|
|
156962
|
+
/** Model code for a Korelock device. */
|
|
156963
|
+
model_code?: string | undefined;
|
|
156964
|
+
/** Serial number for a Korelock device. */
|
|
156965
|
+
serial_number?: string | undefined;
|
|
156966
|
+
/** Firmware version for a Korelock device. */
|
|
156967
|
+
firmware_version?: string | undefined;
|
|
156968
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
156969
|
+
wifi_signal_strength?: number | undefined;
|
|
156970
|
+
} | undefined;
|
|
156676
156971
|
}) & ({
|
|
156677
156972
|
/** */
|
|
156678
156973
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -162465,7 +162760,7 @@ type Routes = {
|
|
|
162465
162760
|
/** ID of the device. */
|
|
162466
162761
|
device_id: string;
|
|
162467
162762
|
/** Type of the device. */
|
|
162468
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
162763
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
162469
162764
|
/** IDs of the spaces the device is in. */
|
|
162470
162765
|
space_ids: string[];
|
|
162471
162766
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -163068,6 +163363,21 @@ type Routes = {
|
|
|
163068
163363
|
/** IANA timezone for the Ultraloq device. */
|
|
163069
163364
|
time_zone: string | null;
|
|
163070
163365
|
} | undefined;
|
|
163366
|
+
/** Metadata for a Korelock device. */
|
|
163367
|
+
korelock_metadata?: {
|
|
163368
|
+
/** Device ID for a Korelock device. */
|
|
163369
|
+
device_id?: string | undefined;
|
|
163370
|
+
/** Device name for a Korelock device. */
|
|
163371
|
+
device_name?: string | undefined;
|
|
163372
|
+
/** Model code for a Korelock device. */
|
|
163373
|
+
model_code?: string | undefined;
|
|
163374
|
+
/** Serial number for a Korelock device. */
|
|
163375
|
+
serial_number?: string | undefined;
|
|
163376
|
+
/** Firmware version for a Korelock device. */
|
|
163377
|
+
firmware_version?: string | undefined;
|
|
163378
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
163379
|
+
wifi_signal_strength?: number | undefined;
|
|
163380
|
+
} | undefined;
|
|
163071
163381
|
}) & ({
|
|
163072
163382
|
/** */
|
|
163073
163383
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -163727,7 +164037,7 @@ type Routes = {
|
|
|
163727
164037
|
/** ID of the device. */
|
|
163728
164038
|
device_id: string;
|
|
163729
164039
|
/** Type of the device. */
|
|
163730
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
164040
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
163731
164041
|
/** IDs of the spaces the device is in. */
|
|
163732
164042
|
space_ids: string[];
|
|
163733
164043
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -164330,6 +164640,21 @@ type Routes = {
|
|
|
164330
164640
|
/** IANA timezone for the Ultraloq device. */
|
|
164331
164641
|
time_zone: string | null;
|
|
164332
164642
|
} | undefined;
|
|
164643
|
+
/** Metadata for a Korelock device. */
|
|
164644
|
+
korelock_metadata?: {
|
|
164645
|
+
/** Device ID for a Korelock device. */
|
|
164646
|
+
device_id?: string | undefined;
|
|
164647
|
+
/** Device name for a Korelock device. */
|
|
164648
|
+
device_name?: string | undefined;
|
|
164649
|
+
/** Model code for a Korelock device. */
|
|
164650
|
+
model_code?: string | undefined;
|
|
164651
|
+
/** Serial number for a Korelock device. */
|
|
164652
|
+
serial_number?: string | undefined;
|
|
164653
|
+
/** Firmware version for a Korelock device. */
|
|
164654
|
+
firmware_version?: string | undefined;
|
|
164655
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
164656
|
+
wifi_signal_strength?: number | undefined;
|
|
164657
|
+
} | undefined;
|
|
164333
164658
|
}) & ({
|
|
164334
164659
|
/** */
|
|
164335
164660
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -173851,7 +174176,7 @@ type Routes = {
|
|
|
173851
174176
|
/** ID of the device. */
|
|
173852
174177
|
device_id: string;
|
|
173853
174178
|
/** Type of the device. */
|
|
173854
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
174179
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
173855
174180
|
/** IDs of the spaces the device is in. */
|
|
173856
174181
|
space_ids: string[];
|
|
173857
174182
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -174454,6 +174779,21 @@ type Routes = {
|
|
|
174454
174779
|
/** IANA timezone for the Ultraloq device. */
|
|
174455
174780
|
time_zone: string | null;
|
|
174456
174781
|
} | undefined;
|
|
174782
|
+
/** Metadata for a Korelock device. */
|
|
174783
|
+
korelock_metadata?: {
|
|
174784
|
+
/** Device ID for a Korelock device. */
|
|
174785
|
+
device_id?: string | undefined;
|
|
174786
|
+
/** Device name for a Korelock device. */
|
|
174787
|
+
device_name?: string | undefined;
|
|
174788
|
+
/** Model code for a Korelock device. */
|
|
174789
|
+
model_code?: string | undefined;
|
|
174790
|
+
/** Serial number for a Korelock device. */
|
|
174791
|
+
serial_number?: string | undefined;
|
|
174792
|
+
/** Firmware version for a Korelock device. */
|
|
174793
|
+
firmware_version?: string | undefined;
|
|
174794
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
174795
|
+
wifi_signal_strength?: number | undefined;
|
|
174796
|
+
} | undefined;
|
|
174457
174797
|
}) & ({
|
|
174458
174798
|
/** */
|
|
174459
174799
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -179564,7 +179904,7 @@ type Routes = {
|
|
|
179564
179904
|
/** ID of the device. */
|
|
179565
179905
|
device_id: string;
|
|
179566
179906
|
/** Type of the device. */
|
|
179567
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
179907
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
179568
179908
|
/** IDs of the spaces the device is in. */
|
|
179569
179909
|
space_ids: string[];
|
|
179570
179910
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -180167,6 +180507,21 @@ type Routes = {
|
|
|
180167
180507
|
/** IANA timezone for the Ultraloq device. */
|
|
180168
180508
|
time_zone: string | null;
|
|
180169
180509
|
} | undefined;
|
|
180510
|
+
/** Metadata for a Korelock device. */
|
|
180511
|
+
korelock_metadata?: {
|
|
180512
|
+
/** Device ID for a Korelock device. */
|
|
180513
|
+
device_id?: string | undefined;
|
|
180514
|
+
/** Device name for a Korelock device. */
|
|
180515
|
+
device_name?: string | undefined;
|
|
180516
|
+
/** Model code for a Korelock device. */
|
|
180517
|
+
model_code?: string | undefined;
|
|
180518
|
+
/** Serial number for a Korelock device. */
|
|
180519
|
+
serial_number?: string | undefined;
|
|
180520
|
+
/** Firmware version for a Korelock device. */
|
|
180521
|
+
firmware_version?: string | undefined;
|
|
180522
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
180523
|
+
wifi_signal_strength?: number | undefined;
|
|
180524
|
+
} | undefined;
|
|
180170
180525
|
}) & ({
|
|
180171
180526
|
/** */
|
|
180172
180527
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -183398,7 +183753,7 @@ type Routes = {
|
|
|
183398
183753
|
/** Array of device types by which you want to filter thermostat devices. */
|
|
183399
183754
|
device_types?: ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat')[] | undefined;
|
|
183400
183755
|
/** Manufacturer by which you want to filter thermostat devices. */
|
|
183401
|
-
manufacturer?: ('ecobee' | 'honeywell_resideo' | 'nest' | '
|
|
183756
|
+
manufacturer?: ('ecobee' | 'honeywell_resideo' | 'nest' | 'sensi' | 'smartthings' | 'tado') | undefined;
|
|
183402
183757
|
/** Array of device IDs for which you want to list devices. */
|
|
183403
183758
|
device_ids?: string[] | undefined;
|
|
183404
183759
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -183431,7 +183786,7 @@ type Routes = {
|
|
|
183431
183786
|
/** ID of the device. */
|
|
183432
183787
|
device_id: string;
|
|
183433
183788
|
/** Type of the device. */
|
|
183434
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
183789
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
183435
183790
|
/** IDs of the spaces the device is in. */
|
|
183436
183791
|
space_ids: string[];
|
|
183437
183792
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -184034,6 +184389,21 @@ type Routes = {
|
|
|
184034
184389
|
/** IANA timezone for the Ultraloq device. */
|
|
184035
184390
|
time_zone: string | null;
|
|
184036
184391
|
} | undefined;
|
|
184392
|
+
/** Metadata for a Korelock device. */
|
|
184393
|
+
korelock_metadata?: {
|
|
184394
|
+
/** Device ID for a Korelock device. */
|
|
184395
|
+
device_id?: string | undefined;
|
|
184396
|
+
/** Device name for a Korelock device. */
|
|
184397
|
+
device_name?: string | undefined;
|
|
184398
|
+
/** Model code for a Korelock device. */
|
|
184399
|
+
model_code?: string | undefined;
|
|
184400
|
+
/** Serial number for a Korelock device. */
|
|
184401
|
+
serial_number?: string | undefined;
|
|
184402
|
+
/** Firmware version for a Korelock device. */
|
|
184403
|
+
firmware_version?: string | undefined;
|
|
184404
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
184405
|
+
wifi_signal_strength?: number | undefined;
|
|
184406
|
+
} | undefined;
|
|
184037
184407
|
}) & ({
|
|
184038
184408
|
/** */
|
|
184039
184409
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -184693,7 +185063,7 @@ type Routes = {
|
|
|
184693
185063
|
/** ID of the device. */
|
|
184694
185064
|
device_id: string;
|
|
184695
185065
|
/** Type of the device. */
|
|
184696
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
185066
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
184697
185067
|
/** IDs of the spaces the device is in. */
|
|
184698
185068
|
space_ids: string[];
|
|
184699
185069
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -185296,6 +185666,21 @@ type Routes = {
|
|
|
185296
185666
|
/** IANA timezone for the Ultraloq device. */
|
|
185297
185667
|
time_zone: string | null;
|
|
185298
185668
|
} | undefined;
|
|
185669
|
+
/** Metadata for a Korelock device. */
|
|
185670
|
+
korelock_metadata?: {
|
|
185671
|
+
/** Device ID for a Korelock device. */
|
|
185672
|
+
device_id?: string | undefined;
|
|
185673
|
+
/** Device name for a Korelock device. */
|
|
185674
|
+
device_name?: string | undefined;
|
|
185675
|
+
/** Model code for a Korelock device. */
|
|
185676
|
+
model_code?: string | undefined;
|
|
185677
|
+
/** Serial number for a Korelock device. */
|
|
185678
|
+
serial_number?: string | undefined;
|
|
185679
|
+
/** Firmware version for a Korelock device. */
|
|
185680
|
+
firmware_version?: string | undefined;
|
|
185681
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
185682
|
+
wifi_signal_strength?: number | undefined;
|
|
185683
|
+
} | undefined;
|
|
185299
185684
|
}) & ({
|
|
185300
185685
|
/** */
|
|
185301
185686
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -191975,7 +192360,7 @@ type Routes = {
|
|
|
191975
192360
|
/** ID of the device. */
|
|
191976
192361
|
device_id: string;
|
|
191977
192362
|
/** Type of the device. */
|
|
191978
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
192363
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
191979
192364
|
/** IDs of the spaces the device is in. */
|
|
191980
192365
|
space_ids: string[];
|
|
191981
192366
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -192578,6 +192963,21 @@ type Routes = {
|
|
|
192578
192963
|
/** IANA timezone for the Ultraloq device. */
|
|
192579
192964
|
time_zone: string | null;
|
|
192580
192965
|
} | undefined;
|
|
192966
|
+
/** Metadata for a Korelock device. */
|
|
192967
|
+
korelock_metadata?: {
|
|
192968
|
+
/** Device ID for a Korelock device. */
|
|
192969
|
+
device_id?: string | undefined;
|
|
192970
|
+
/** Device name for a Korelock device. */
|
|
192971
|
+
device_name?: string | undefined;
|
|
192972
|
+
/** Model code for a Korelock device. */
|
|
192973
|
+
model_code?: string | undefined;
|
|
192974
|
+
/** Serial number for a Korelock device. */
|
|
192975
|
+
serial_number?: string | undefined;
|
|
192976
|
+
/** Firmware version for a Korelock device. */
|
|
192977
|
+
firmware_version?: string | undefined;
|
|
192978
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
192979
|
+
wifi_signal_strength?: number | undefined;
|
|
192980
|
+
} | undefined;
|
|
192581
192981
|
}) & ({
|
|
192582
192982
|
/** */
|
|
192583
192983
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -193239,7 +193639,7 @@ type Routes = {
|
|
|
193239
193639
|
/** ID of the device. */
|
|
193240
193640
|
device_id: string;
|
|
193241
193641
|
/** Type of the device. */
|
|
193242
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
193642
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
193243
193643
|
/** IDs of the spaces the device is in. */
|
|
193244
193644
|
space_ids: string[];
|
|
193245
193645
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -193842,6 +194242,21 @@ type Routes = {
|
|
|
193842
194242
|
/** IANA timezone for the Ultraloq device. */
|
|
193843
194243
|
time_zone: string | null;
|
|
193844
194244
|
} | undefined;
|
|
194245
|
+
/** Metadata for a Korelock device. */
|
|
194246
|
+
korelock_metadata?: {
|
|
194247
|
+
/** Device ID for a Korelock device. */
|
|
194248
|
+
device_id?: string | undefined;
|
|
194249
|
+
/** Device name for a Korelock device. */
|
|
194250
|
+
device_name?: string | undefined;
|
|
194251
|
+
/** Model code for a Korelock device. */
|
|
194252
|
+
model_code?: string | undefined;
|
|
194253
|
+
/** Serial number for a Korelock device. */
|
|
194254
|
+
serial_number?: string | undefined;
|
|
194255
|
+
/** Firmware version for a Korelock device. */
|
|
194256
|
+
firmware_version?: string | undefined;
|
|
194257
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
194258
|
+
wifi_signal_strength?: number | undefined;
|
|
194259
|
+
} | undefined;
|
|
193845
194260
|
}) & ({
|
|
193846
194261
|
/** */
|
|
193847
194262
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -195468,7 +195883,7 @@ type Routes = {
|
|
|
195468
195883
|
/** ID of the device. */
|
|
195469
195884
|
device_id: string;
|
|
195470
195885
|
/** Type of the device. */
|
|
195471
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
195886
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
195472
195887
|
/** IDs of the spaces the device is in. */
|
|
195473
195888
|
space_ids: string[];
|
|
195474
195889
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -196071,6 +196486,21 @@ type Routes = {
|
|
|
196071
196486
|
/** IANA timezone for the Ultraloq device. */
|
|
196072
196487
|
time_zone: string | null;
|
|
196073
196488
|
} | undefined;
|
|
196489
|
+
/** Metadata for a Korelock device. */
|
|
196490
|
+
korelock_metadata?: {
|
|
196491
|
+
/** Device ID for a Korelock device. */
|
|
196492
|
+
device_id?: string | undefined;
|
|
196493
|
+
/** Device name for a Korelock device. */
|
|
196494
|
+
device_name?: string | undefined;
|
|
196495
|
+
/** Model code for a Korelock device. */
|
|
196496
|
+
model_code?: string | undefined;
|
|
196497
|
+
/** Serial number for a Korelock device. */
|
|
196498
|
+
serial_number?: string | undefined;
|
|
196499
|
+
/** Firmware version for a Korelock device. */
|
|
196500
|
+
firmware_version?: string | undefined;
|
|
196501
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
196502
|
+
wifi_signal_strength?: number | undefined;
|
|
196503
|
+
} | undefined;
|
|
196074
196504
|
}) & ({
|
|
196075
196505
|
/** */
|
|
196076
196506
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -198803,7 +199233,7 @@ type Routes = {
|
|
|
198803
199233
|
/** ID of the device. */
|
|
198804
199234
|
device_id: string;
|
|
198805
199235
|
/** Type of the device. */
|
|
198806
|
-
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_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');
|
|
199236
|
+
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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_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');
|
|
198807
199237
|
/** Unique identifier for the account associated with the device. */
|
|
198808
199238
|
connected_account_id: string;
|
|
198809
199239
|
/** Location information for the device. */
|