@seamapi/types 1.715.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 +91 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +535 -48
- package/dist/index.cjs +91 -28
- 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 -0
- package/lib/seam/connect/openapi.js +63 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +287 -32
- 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 +65 -10
- package/src/lib/seam/connect/route-types.ts +325 -5
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: {
|
|
@@ -126984,7 +127216,7 @@ type Routes = {
|
|
|
126984
127216
|
/** ID of the device. */
|
|
126985
127217
|
device_id: string;
|
|
126986
127218
|
/** Type of the device. */
|
|
126987
|
-
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');
|
|
126988
127220
|
/** IDs of the spaces the device is in. */
|
|
126989
127221
|
space_ids: string[];
|
|
126990
127222
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -127587,6 +127819,21 @@ type Routes = {
|
|
|
127587
127819
|
/** IANA timezone for the Ultraloq device. */
|
|
127588
127820
|
time_zone: string | null;
|
|
127589
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;
|
|
127590
127837
|
}) & ({
|
|
127591
127838
|
/** */
|
|
127592
127839
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -130467,7 +130714,7 @@ type Routes = {
|
|
|
130467
130714
|
/** ID of the device. */
|
|
130468
130715
|
device_id: string;
|
|
130469
130716
|
/** Type of the device. */
|
|
130470
|
-
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');
|
|
130471
130718
|
/** IDs of the spaces the device is in. */
|
|
130472
130719
|
space_ids: string[];
|
|
130473
130720
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -131070,6 +131317,21 @@ type Routes = {
|
|
|
131070
131317
|
/** IANA timezone for the Ultraloq device. */
|
|
131071
131318
|
time_zone: string | null;
|
|
131072
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;
|
|
131073
131335
|
}) & ({
|
|
131074
131336
|
/** */
|
|
131075
131337
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -142687,7 +142949,7 @@ type Routes = {
|
|
|
142687
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. */
|
|
142688
142950
|
customer_key?: string | undefined;
|
|
142689
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. */
|
|
142690
|
-
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;
|
|
142691
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. */
|
|
142692
142954
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
142693
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). */
|
|
@@ -144221,7 +144483,7 @@ type Routes = {
|
|
|
144221
144483
|
/** ID of the device. */
|
|
144222
144484
|
device_id: string;
|
|
144223
144485
|
/** Type of the device. */
|
|
144224
|
-
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');
|
|
144225
144487
|
/** IDs of the spaces the device is in. */
|
|
144226
144488
|
space_ids: string[];
|
|
144227
144489
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -144824,6 +145086,21 @@ type Routes = {
|
|
|
144824
145086
|
/** IANA timezone for the Ultraloq device. */
|
|
144825
145087
|
time_zone: string | null;
|
|
144826
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;
|
|
144827
145104
|
}) & ({
|
|
144828
145105
|
/** */
|
|
144829
145106
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -145497,11 +145774,11 @@ type Routes = {
|
|
|
145497
145774
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
145498
145775
|
connect_webview_id?: string | undefined;
|
|
145499
145776
|
/** Device type for which you want to list devices. */
|
|
145500
|
-
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;
|
|
145501
145778
|
/** Array of device types for which you want to list devices. */
|
|
145502
|
-
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;
|
|
145503
145780
|
/** Manufacturer for which you want to list devices. */
|
|
145504
|
-
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;
|
|
145505
145782
|
/** Array of device IDs for which you want to list devices. */
|
|
145506
145783
|
device_ids?: string[] | undefined;
|
|
145507
145784
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -145534,7 +145811,7 @@ type Routes = {
|
|
|
145534
145811
|
/** ID of the device. */
|
|
145535
145812
|
device_id: string;
|
|
145536
145813
|
/** Type of the device. */
|
|
145537
|
-
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');
|
|
145538
145815
|
/** IDs of the spaces the device is in. */
|
|
145539
145816
|
space_ids: string[];
|
|
145540
145817
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -146137,6 +146414,21 @@ type Routes = {
|
|
|
146137
146414
|
/** IANA timezone for the Ultraloq device. */
|
|
146138
146415
|
time_zone: string | null;
|
|
146139
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;
|
|
146140
146432
|
}) & ({
|
|
146141
146433
|
/** */
|
|
146142
146434
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -146816,7 +147108,7 @@ type Routes = {
|
|
|
146816
147108
|
formData: {};
|
|
146817
147109
|
jsonResponse: {
|
|
146818
147110
|
device_providers: {
|
|
146819
|
-
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';
|
|
146820
147112
|
display_name: string;
|
|
146821
147113
|
image_url: string;
|
|
146822
147114
|
provider_categories: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems')[];
|
|
@@ -146960,7 +147252,7 @@ type Routes = {
|
|
|
146960
147252
|
/** ID of the device. */
|
|
146961
147253
|
device_id: string;
|
|
146962
147254
|
/** Type of the device. */
|
|
146963
|
-
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');
|
|
146964
147256
|
/** Unique identifier for the account associated with the device. */
|
|
146965
147257
|
connected_account_id: string;
|
|
146966
147258
|
/** Location information for the device. */
|
|
@@ -147378,11 +147670,11 @@ type Routes = {
|
|
|
147378
147670
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
147379
147671
|
connect_webview_id?: string | undefined;
|
|
147380
147672
|
/** Device type for which you want to list devices. */
|
|
147381
|
-
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;
|
|
147382
147674
|
/** Array of device types for which you want to list devices. */
|
|
147383
|
-
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;
|
|
147384
147676
|
/** Manufacturer for which you want to list devices. */
|
|
147385
|
-
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;
|
|
147386
147678
|
/** Array of device IDs for which you want to list devices. */
|
|
147387
147679
|
device_ids?: string[] | undefined;
|
|
147388
147680
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -147415,7 +147707,7 @@ type Routes = {
|
|
|
147415
147707
|
/** ID of the device. */
|
|
147416
147708
|
device_id: string;
|
|
147417
147709
|
/** Type of the device. */
|
|
147418
|
-
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');
|
|
147419
147711
|
/** Unique identifier for the account associated with the device. */
|
|
147420
147712
|
connected_account_id: string;
|
|
147421
147713
|
/** Location information for the device. */
|
|
@@ -152175,7 +152467,7 @@ type Routes = {
|
|
|
152175
152467
|
/** ID of the device. */
|
|
152176
152468
|
device_id: string;
|
|
152177
152469
|
/** Type of the device. */
|
|
152178
|
-
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');
|
|
152179
152471
|
/** IDs of the spaces the device is in. */
|
|
152180
152472
|
space_ids: string[];
|
|
152181
152473
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -152778,6 +153070,21 @@ type Routes = {
|
|
|
152778
153070
|
/** IANA timezone for the Ultraloq device. */
|
|
152779
153071
|
time_zone: string | null;
|
|
152780
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;
|
|
152781
153088
|
}) & ({
|
|
152782
153089
|
/** */
|
|
152783
153090
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -153438,7 +153745,7 @@ type Routes = {
|
|
|
153438
153745
|
/** ID of the device. */
|
|
153439
153746
|
device_id: string;
|
|
153440
153747
|
/** Type of the device. */
|
|
153441
|
-
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');
|
|
153442
153749
|
/** IDs of the spaces the device is in. */
|
|
153443
153750
|
space_ids: string[];
|
|
153444
153751
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -154041,6 +154348,21 @@ type Routes = {
|
|
|
154041
154348
|
/** IANA timezone for the Ultraloq device. */
|
|
154042
154349
|
time_zone: string | null;
|
|
154043
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;
|
|
154044
154366
|
}) & ({
|
|
154045
154367
|
/** */
|
|
154046
154368
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -154714,11 +155036,11 @@ type Routes = {
|
|
|
154714
155036
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
154715
155037
|
connect_webview_id?: string | undefined;
|
|
154716
155038
|
/** Device type of the locks that you want to list. */
|
|
154717
|
-
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;
|
|
154718
155040
|
/** Device types of the locks that you want to list. */
|
|
154719
|
-
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;
|
|
154720
155042
|
/** Manufacturer of the locks that you want to list. */
|
|
154721
|
-
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;
|
|
154722
155044
|
/** Array of device IDs for which you want to list devices. */
|
|
154723
155045
|
device_ids?: string[] | undefined;
|
|
154724
155046
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -154751,7 +155073,7 @@ type Routes = {
|
|
|
154751
155073
|
/** ID of the device. */
|
|
154752
155074
|
device_id: string;
|
|
154753
155075
|
/** Type of the device. */
|
|
154754
|
-
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');
|
|
154755
155077
|
/** IDs of the spaces the device is in. */
|
|
154756
155078
|
space_ids: string[];
|
|
154757
155079
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -155354,6 +155676,21 @@ type Routes = {
|
|
|
155354
155676
|
/** IANA timezone for the Ultraloq device. */
|
|
155355
155677
|
time_zone: string | null;
|
|
155356
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;
|
|
155357
155694
|
}) & ({
|
|
155358
155695
|
/** */
|
|
155359
155696
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -156013,7 +156350,7 @@ type Routes = {
|
|
|
156013
156350
|
/** ID of the device. */
|
|
156014
156351
|
device_id: string;
|
|
156015
156352
|
/** Type of the device. */
|
|
156016
|
-
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');
|
|
156017
156354
|
/** IDs of the spaces the device is in. */
|
|
156018
156355
|
space_ids: string[];
|
|
156019
156356
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -156616,6 +156953,21 @@ type Routes = {
|
|
|
156616
156953
|
/** IANA timezone for the Ultraloq device. */
|
|
156617
156954
|
time_zone: string | null;
|
|
156618
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;
|
|
156619
156971
|
}) & ({
|
|
156620
156972
|
/** */
|
|
156621
156973
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -162408,7 +162760,7 @@ type Routes = {
|
|
|
162408
162760
|
/** ID of the device. */
|
|
162409
162761
|
device_id: string;
|
|
162410
162762
|
/** Type of the device. */
|
|
162411
|
-
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');
|
|
162412
162764
|
/** IDs of the spaces the device is in. */
|
|
162413
162765
|
space_ids: string[];
|
|
162414
162766
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -163011,6 +163363,21 @@ type Routes = {
|
|
|
163011
163363
|
/** IANA timezone for the Ultraloq device. */
|
|
163012
163364
|
time_zone: string | null;
|
|
163013
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;
|
|
163014
163381
|
}) & ({
|
|
163015
163382
|
/** */
|
|
163016
163383
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -163670,7 +164037,7 @@ type Routes = {
|
|
|
163670
164037
|
/** ID of the device. */
|
|
163671
164038
|
device_id: string;
|
|
163672
164039
|
/** Type of the device. */
|
|
163673
|
-
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');
|
|
163674
164041
|
/** IDs of the spaces the device is in. */
|
|
163675
164042
|
space_ids: string[];
|
|
163676
164043
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -164273,6 +164640,21 @@ type Routes = {
|
|
|
164273
164640
|
/** IANA timezone for the Ultraloq device. */
|
|
164274
164641
|
time_zone: string | null;
|
|
164275
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;
|
|
164276
164658
|
}) & ({
|
|
164277
164659
|
/** */
|
|
164278
164660
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -173794,7 +174176,7 @@ type Routes = {
|
|
|
173794
174176
|
/** ID of the device. */
|
|
173795
174177
|
device_id: string;
|
|
173796
174178
|
/** Type of the device. */
|
|
173797
|
-
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');
|
|
173798
174180
|
/** IDs of the spaces the device is in. */
|
|
173799
174181
|
space_ids: string[];
|
|
173800
174182
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -174397,6 +174779,21 @@ type Routes = {
|
|
|
174397
174779
|
/** IANA timezone for the Ultraloq device. */
|
|
174398
174780
|
time_zone: string | null;
|
|
174399
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;
|
|
174400
174797
|
}) & ({
|
|
174401
174798
|
/** */
|
|
174402
174799
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -179507,7 +179904,7 @@ type Routes = {
|
|
|
179507
179904
|
/** ID of the device. */
|
|
179508
179905
|
device_id: string;
|
|
179509
179906
|
/** Type of the device. */
|
|
179510
|
-
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');
|
|
179511
179908
|
/** IDs of the spaces the device is in. */
|
|
179512
179909
|
space_ids: string[];
|
|
179513
179910
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -180110,6 +180507,21 @@ type Routes = {
|
|
|
180110
180507
|
/** IANA timezone for the Ultraloq device. */
|
|
180111
180508
|
time_zone: string | null;
|
|
180112
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;
|
|
180113
180525
|
}) & ({
|
|
180114
180526
|
/** */
|
|
180115
180527
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -183341,7 +183753,7 @@ type Routes = {
|
|
|
183341
183753
|
/** Array of device types by which you want to filter thermostat devices. */
|
|
183342
183754
|
device_types?: ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat')[] | undefined;
|
|
183343
183755
|
/** Manufacturer by which you want to filter thermostat devices. */
|
|
183344
|
-
manufacturer?: ('ecobee' | 'honeywell_resideo' | 'nest' | '
|
|
183756
|
+
manufacturer?: ('ecobee' | 'honeywell_resideo' | 'nest' | 'sensi' | 'smartthings' | 'tado') | undefined;
|
|
183345
183757
|
/** Array of device IDs for which you want to list devices. */
|
|
183346
183758
|
device_ids?: string[] | undefined;
|
|
183347
183759
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -183374,7 +183786,7 @@ type Routes = {
|
|
|
183374
183786
|
/** ID of the device. */
|
|
183375
183787
|
device_id: string;
|
|
183376
183788
|
/** Type of the device. */
|
|
183377
|
-
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');
|
|
183378
183790
|
/** IDs of the spaces the device is in. */
|
|
183379
183791
|
space_ids: string[];
|
|
183380
183792
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -183977,6 +184389,21 @@ type Routes = {
|
|
|
183977
184389
|
/** IANA timezone for the Ultraloq device. */
|
|
183978
184390
|
time_zone: string | null;
|
|
183979
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;
|
|
183980
184407
|
}) & ({
|
|
183981
184408
|
/** */
|
|
183982
184409
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -184636,7 +185063,7 @@ type Routes = {
|
|
|
184636
185063
|
/** ID of the device. */
|
|
184637
185064
|
device_id: string;
|
|
184638
185065
|
/** Type of the device. */
|
|
184639
|
-
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');
|
|
184640
185067
|
/** IDs of the spaces the device is in. */
|
|
184641
185068
|
space_ids: string[];
|
|
184642
185069
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -185239,6 +185666,21 @@ type Routes = {
|
|
|
185239
185666
|
/** IANA timezone for the Ultraloq device. */
|
|
185240
185667
|
time_zone: string | null;
|
|
185241
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;
|
|
185242
185684
|
}) & ({
|
|
185243
185685
|
/** */
|
|
185244
185686
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -191918,7 +192360,7 @@ type Routes = {
|
|
|
191918
192360
|
/** ID of the device. */
|
|
191919
192361
|
device_id: string;
|
|
191920
192362
|
/** Type of the device. */
|
|
191921
|
-
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');
|
|
191922
192364
|
/** IDs of the spaces the device is in. */
|
|
191923
192365
|
space_ids: string[];
|
|
191924
192366
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -192521,6 +192963,21 @@ type Routes = {
|
|
|
192521
192963
|
/** IANA timezone for the Ultraloq device. */
|
|
192522
192964
|
time_zone: string | null;
|
|
192523
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;
|
|
192524
192981
|
}) & ({
|
|
192525
192982
|
/** */
|
|
192526
192983
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -193182,7 +193639,7 @@ type Routes = {
|
|
|
193182
193639
|
/** ID of the device. */
|
|
193183
193640
|
device_id: string;
|
|
193184
193641
|
/** Type of the device. */
|
|
193185
|
-
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');
|
|
193186
193643
|
/** IDs of the spaces the device is in. */
|
|
193187
193644
|
space_ids: string[];
|
|
193188
193645
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -193785,6 +194242,21 @@ type Routes = {
|
|
|
193785
194242
|
/** IANA timezone for the Ultraloq device. */
|
|
193786
194243
|
time_zone: string | null;
|
|
193787
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;
|
|
193788
194260
|
}) & ({
|
|
193789
194261
|
/** */
|
|
193790
194262
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -195411,7 +195883,7 @@ type Routes = {
|
|
|
195411
195883
|
/** ID of the device. */
|
|
195412
195884
|
device_id: string;
|
|
195413
195885
|
/** Type of the device. */
|
|
195414
|
-
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');
|
|
195415
195887
|
/** IDs of the spaces the device is in. */
|
|
195416
195888
|
space_ids: string[];
|
|
195417
195889
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -196014,6 +196486,21 @@ type Routes = {
|
|
|
196014
196486
|
/** IANA timezone for the Ultraloq device. */
|
|
196015
196487
|
time_zone: string | null;
|
|
196016
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;
|
|
196017
196504
|
}) & ({
|
|
196018
196505
|
/** */
|
|
196019
196506
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -198746,7 +199233,7 @@ type Routes = {
|
|
|
198746
199233
|
/** ID of the device. */
|
|
198747
199234
|
device_id: string;
|
|
198748
199235
|
/** Type of the device. */
|
|
198749
|
-
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');
|
|
198750
199237
|
/** Unique identifier for the account associated with the device. */
|
|
198751
199238
|
connected_account_id: string;
|
|
198752
199239
|
/** Location information for the device. */
|