@seamapi/types 1.852.0 → 1.854.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 +85 -24
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +383 -47
- package/dist/index.cjs +85 -24
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +90 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +28 -0
- package/lib/seam/connect/models/devices/device-metadata.js +12 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- 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 +43 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +31 -3
- package/lib/seam/connect/openapi.js +51 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +218 -31
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +15 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +53 -0
- package/src/lib/seam/connect/route-types.ts +252 -0
package/dist/connect.d.cts
CHANGED
|
@@ -13452,7 +13452,7 @@ declare const batch: z.ZodObject<{
|
|
|
13452
13452
|
}>, "many">>;
|
|
13453
13453
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13454
13454
|
device_id: z.ZodString;
|
|
13455
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
13455
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
13456
13456
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
13457
13457
|
nickname: z.ZodOptional<z.ZodString>;
|
|
13458
13458
|
display_name: z.ZodString;
|
|
@@ -14400,6 +14400,22 @@ declare const batch: z.ZodObject<{
|
|
|
14400
14400
|
}, {
|
|
14401
14401
|
encoder_name: string;
|
|
14402
14402
|
}>>;
|
|
14403
|
+
omnitec_metadata: z.ZodOptional<z.ZodObject<{
|
|
14404
|
+
lock_id: z.ZodNumber;
|
|
14405
|
+
lock_name: z.ZodString;
|
|
14406
|
+
lock_mac: z.ZodString;
|
|
14407
|
+
has_gateway: z.ZodBoolean;
|
|
14408
|
+
}, "strip", z.ZodTypeAny, {
|
|
14409
|
+
lock_id: number;
|
|
14410
|
+
lock_name: string;
|
|
14411
|
+
has_gateway: boolean;
|
|
14412
|
+
lock_mac: string;
|
|
14413
|
+
}, {
|
|
14414
|
+
lock_id: number;
|
|
14415
|
+
lock_name: string;
|
|
14416
|
+
has_gateway: boolean;
|
|
14417
|
+
lock_mac: string;
|
|
14418
|
+
}>>;
|
|
14403
14419
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
14404
14420
|
serial_no: z.ZodString;
|
|
14405
14421
|
device_type: z.ZodString;
|
|
@@ -14774,6 +14790,12 @@ declare const batch: z.ZodObject<{
|
|
|
14774
14790
|
assa_abloy_vostio_metadata?: {
|
|
14775
14791
|
encoder_name: string;
|
|
14776
14792
|
} | undefined;
|
|
14793
|
+
omnitec_metadata?: {
|
|
14794
|
+
lock_id: number;
|
|
14795
|
+
lock_name: string;
|
|
14796
|
+
has_gateway: boolean;
|
|
14797
|
+
lock_mac: string;
|
|
14798
|
+
} | undefined;
|
|
14777
14799
|
tado_metadata?: {
|
|
14778
14800
|
serial_no: string;
|
|
14779
14801
|
device_type: string;
|
|
@@ -15054,6 +15076,12 @@ declare const batch: z.ZodObject<{
|
|
|
15054
15076
|
assa_abloy_vostio_metadata?: {
|
|
15055
15077
|
encoder_name: string;
|
|
15056
15078
|
} | undefined;
|
|
15079
|
+
omnitec_metadata?: {
|
|
15080
|
+
lock_id: number;
|
|
15081
|
+
lock_name: string;
|
|
15082
|
+
has_gateway: boolean;
|
|
15083
|
+
lock_mac: string;
|
|
15084
|
+
} | undefined;
|
|
15057
15085
|
tado_metadata?: {
|
|
15058
15086
|
serial_no: string;
|
|
15059
15087
|
device_type: string;
|
|
@@ -16746,7 +16774,7 @@ declare const batch: z.ZodObject<{
|
|
|
16746
16774
|
max_active_access_code_count: number;
|
|
16747
16775
|
})[];
|
|
16748
16776
|
custom_metadata: Record<string, string | boolean>;
|
|
16749
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
16777
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
16750
16778
|
space_ids: string[];
|
|
16751
16779
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
16752
16780
|
properties: {
|
|
@@ -17024,6 +17052,12 @@ declare const batch: z.ZodObject<{
|
|
|
17024
17052
|
assa_abloy_vostio_metadata?: {
|
|
17025
17053
|
encoder_name: string;
|
|
17026
17054
|
} | undefined;
|
|
17055
|
+
omnitec_metadata?: {
|
|
17056
|
+
lock_id: number;
|
|
17057
|
+
lock_name: string;
|
|
17058
|
+
has_gateway: boolean;
|
|
17059
|
+
lock_mac: string;
|
|
17060
|
+
} | undefined;
|
|
17027
17061
|
tado_metadata?: {
|
|
17028
17062
|
serial_no: string;
|
|
17029
17063
|
device_type: string;
|
|
@@ -17474,7 +17508,7 @@ declare const batch: z.ZodObject<{
|
|
|
17474
17508
|
max_active_access_code_count: number;
|
|
17475
17509
|
})[];
|
|
17476
17510
|
custom_metadata: Record<string, string | boolean>;
|
|
17477
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
17511
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
17478
17512
|
space_ids: string[];
|
|
17479
17513
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
17480
17514
|
properties: {
|
|
@@ -17752,6 +17786,12 @@ declare const batch: z.ZodObject<{
|
|
|
17752
17786
|
assa_abloy_vostio_metadata?: {
|
|
17753
17787
|
encoder_name: string;
|
|
17754
17788
|
} | undefined;
|
|
17789
|
+
omnitec_metadata?: {
|
|
17790
|
+
lock_id: number;
|
|
17791
|
+
lock_name: string;
|
|
17792
|
+
has_gateway: boolean;
|
|
17793
|
+
lock_mac: string;
|
|
17794
|
+
} | undefined;
|
|
17755
17795
|
tado_metadata?: {
|
|
17756
17796
|
serial_no: string;
|
|
17757
17797
|
device_type: string;
|
|
@@ -26881,7 +26921,7 @@ declare const batch: z.ZodObject<{
|
|
|
26881
26921
|
}>, "many">>;
|
|
26882
26922
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
26883
26923
|
device_id: z.ZodString;
|
|
26884
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
26924
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
26885
26925
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
26886
26926
|
nickname: z.ZodOptional<z.ZodString>;
|
|
26887
26927
|
display_name: z.ZodString;
|
|
@@ -27829,6 +27869,22 @@ declare const batch: z.ZodObject<{
|
|
|
27829
27869
|
}, {
|
|
27830
27870
|
encoder_name: string;
|
|
27831
27871
|
}>>;
|
|
27872
|
+
omnitec_metadata: z.ZodOptional<z.ZodObject<{
|
|
27873
|
+
lock_id: z.ZodNumber;
|
|
27874
|
+
lock_name: z.ZodString;
|
|
27875
|
+
lock_mac: z.ZodString;
|
|
27876
|
+
has_gateway: z.ZodBoolean;
|
|
27877
|
+
}, "strip", z.ZodTypeAny, {
|
|
27878
|
+
lock_id: number;
|
|
27879
|
+
lock_name: string;
|
|
27880
|
+
has_gateway: boolean;
|
|
27881
|
+
lock_mac: string;
|
|
27882
|
+
}, {
|
|
27883
|
+
lock_id: number;
|
|
27884
|
+
lock_name: string;
|
|
27885
|
+
has_gateway: boolean;
|
|
27886
|
+
lock_mac: string;
|
|
27887
|
+
}>>;
|
|
27832
27888
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
27833
27889
|
serial_no: z.ZodString;
|
|
27834
27890
|
device_type: z.ZodString;
|
|
@@ -28203,6 +28259,12 @@ declare const batch: z.ZodObject<{
|
|
|
28203
28259
|
assa_abloy_vostio_metadata?: {
|
|
28204
28260
|
encoder_name: string;
|
|
28205
28261
|
} | undefined;
|
|
28262
|
+
omnitec_metadata?: {
|
|
28263
|
+
lock_id: number;
|
|
28264
|
+
lock_name: string;
|
|
28265
|
+
has_gateway: boolean;
|
|
28266
|
+
lock_mac: string;
|
|
28267
|
+
} | undefined;
|
|
28206
28268
|
tado_metadata?: {
|
|
28207
28269
|
serial_no: string;
|
|
28208
28270
|
device_type: string;
|
|
@@ -28483,6 +28545,12 @@ declare const batch: z.ZodObject<{
|
|
|
28483
28545
|
assa_abloy_vostio_metadata?: {
|
|
28484
28546
|
encoder_name: string;
|
|
28485
28547
|
} | undefined;
|
|
28548
|
+
omnitec_metadata?: {
|
|
28549
|
+
lock_id: number;
|
|
28550
|
+
lock_name: string;
|
|
28551
|
+
has_gateway: boolean;
|
|
28552
|
+
lock_mac: string;
|
|
28553
|
+
} | undefined;
|
|
28486
28554
|
tado_metadata?: {
|
|
28487
28555
|
serial_no: string;
|
|
28488
28556
|
device_type: string;
|
|
@@ -30331,7 +30399,7 @@ declare const batch: z.ZodObject<{
|
|
|
30331
30399
|
max_active_access_code_count: number;
|
|
30332
30400
|
})[];
|
|
30333
30401
|
custom_metadata: Record<string, string | boolean>;
|
|
30334
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
30402
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
30335
30403
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
30336
30404
|
properties: {
|
|
30337
30405
|
name: string;
|
|
@@ -30592,7 +30660,7 @@ declare const batch: z.ZodObject<{
|
|
|
30592
30660
|
max_active_access_code_count: number;
|
|
30593
30661
|
})[];
|
|
30594
30662
|
custom_metadata: Record<string, string | boolean>;
|
|
30595
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
30663
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
30596
30664
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
30597
30665
|
properties: {
|
|
30598
30666
|
name: string;
|
|
@@ -40276,7 +40344,7 @@ declare const batch: z.ZodObject<{
|
|
|
40276
40344
|
max_active_access_code_count: number;
|
|
40277
40345
|
})[];
|
|
40278
40346
|
custom_metadata: Record<string, string | boolean>;
|
|
40279
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
40347
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
40280
40348
|
space_ids: string[];
|
|
40281
40349
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
40282
40350
|
properties: {
|
|
@@ -40554,6 +40622,12 @@ declare const batch: z.ZodObject<{
|
|
|
40554
40622
|
assa_abloy_vostio_metadata?: {
|
|
40555
40623
|
encoder_name: string;
|
|
40556
40624
|
} | undefined;
|
|
40625
|
+
omnitec_metadata?: {
|
|
40626
|
+
lock_id: number;
|
|
40627
|
+
lock_name: string;
|
|
40628
|
+
has_gateway: boolean;
|
|
40629
|
+
lock_mac: string;
|
|
40630
|
+
} | undefined;
|
|
40557
40631
|
tado_metadata?: {
|
|
40558
40632
|
serial_no: string;
|
|
40559
40633
|
device_type: string;
|
|
@@ -42769,7 +42843,7 @@ declare const batch: z.ZodObject<{
|
|
|
42769
42843
|
max_active_access_code_count: number;
|
|
42770
42844
|
})[];
|
|
42771
42845
|
custom_metadata: Record<string, string | boolean>;
|
|
42772
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
42846
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
42773
42847
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
42774
42848
|
properties: {
|
|
42775
42849
|
name: string;
|
|
@@ -45393,7 +45467,7 @@ declare const batch: z.ZodObject<{
|
|
|
45393
45467
|
max_active_access_code_count: number;
|
|
45394
45468
|
})[];
|
|
45395
45469
|
custom_metadata: Record<string, string | boolean>;
|
|
45396
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
45470
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
45397
45471
|
space_ids: string[];
|
|
45398
45472
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
45399
45473
|
properties: {
|
|
@@ -45671,6 +45745,12 @@ declare const batch: z.ZodObject<{
|
|
|
45671
45745
|
assa_abloy_vostio_metadata?: {
|
|
45672
45746
|
encoder_name: string;
|
|
45673
45747
|
} | undefined;
|
|
45748
|
+
omnitec_metadata?: {
|
|
45749
|
+
lock_id: number;
|
|
45750
|
+
lock_name: string;
|
|
45751
|
+
has_gateway: boolean;
|
|
45752
|
+
lock_mac: string;
|
|
45753
|
+
} | undefined;
|
|
45674
45754
|
tado_metadata?: {
|
|
45675
45755
|
serial_no: string;
|
|
45676
45756
|
device_type: string;
|
|
@@ -47886,7 +47966,7 @@ declare const batch: z.ZodObject<{
|
|
|
47886
47966
|
max_active_access_code_count: number;
|
|
47887
47967
|
})[];
|
|
47888
47968
|
custom_metadata: Record<string, string | boolean>;
|
|
47889
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
47969
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
47890
47970
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
47891
47971
|
properties: {
|
|
47892
47972
|
name: string;
|
|
@@ -51800,7 +51880,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
51800
51880
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
51801
51881
|
declare const device: z.ZodObject<{
|
|
51802
51882
|
device_id: z.ZodString;
|
|
51803
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
51883
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
51804
51884
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
51805
51885
|
nickname: z.ZodOptional<z.ZodString>;
|
|
51806
51886
|
display_name: z.ZodString;
|
|
@@ -52748,6 +52828,22 @@ declare const device: z.ZodObject<{
|
|
|
52748
52828
|
}, {
|
|
52749
52829
|
encoder_name: string;
|
|
52750
52830
|
}>>;
|
|
52831
|
+
omnitec_metadata: z.ZodOptional<z.ZodObject<{
|
|
52832
|
+
lock_id: z.ZodNumber;
|
|
52833
|
+
lock_name: z.ZodString;
|
|
52834
|
+
lock_mac: z.ZodString;
|
|
52835
|
+
has_gateway: z.ZodBoolean;
|
|
52836
|
+
}, "strip", z.ZodTypeAny, {
|
|
52837
|
+
lock_id: number;
|
|
52838
|
+
lock_name: string;
|
|
52839
|
+
has_gateway: boolean;
|
|
52840
|
+
lock_mac: string;
|
|
52841
|
+
}, {
|
|
52842
|
+
lock_id: number;
|
|
52843
|
+
lock_name: string;
|
|
52844
|
+
has_gateway: boolean;
|
|
52845
|
+
lock_mac: string;
|
|
52846
|
+
}>>;
|
|
52751
52847
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
52752
52848
|
serial_no: z.ZodString;
|
|
52753
52849
|
device_type: z.ZodString;
|
|
@@ -53122,6 +53218,12 @@ declare const device: z.ZodObject<{
|
|
|
53122
53218
|
assa_abloy_vostio_metadata?: {
|
|
53123
53219
|
encoder_name: string;
|
|
53124
53220
|
} | undefined;
|
|
53221
|
+
omnitec_metadata?: {
|
|
53222
|
+
lock_id: number;
|
|
53223
|
+
lock_name: string;
|
|
53224
|
+
has_gateway: boolean;
|
|
53225
|
+
lock_mac: string;
|
|
53226
|
+
} | undefined;
|
|
53125
53227
|
tado_metadata?: {
|
|
53126
53228
|
serial_no: string;
|
|
53127
53229
|
device_type: string;
|
|
@@ -53402,6 +53504,12 @@ declare const device: z.ZodObject<{
|
|
|
53402
53504
|
assa_abloy_vostio_metadata?: {
|
|
53403
53505
|
encoder_name: string;
|
|
53404
53506
|
} | undefined;
|
|
53507
|
+
omnitec_metadata?: {
|
|
53508
|
+
lock_id: number;
|
|
53509
|
+
lock_name: string;
|
|
53510
|
+
has_gateway: boolean;
|
|
53511
|
+
lock_mac: string;
|
|
53512
|
+
} | undefined;
|
|
53405
53513
|
tado_metadata?: {
|
|
53406
53514
|
serial_no: string;
|
|
53407
53515
|
device_type: string;
|
|
@@ -55094,7 +55202,7 @@ declare const device: z.ZodObject<{
|
|
|
55094
55202
|
max_active_access_code_count: number;
|
|
55095
55203
|
})[];
|
|
55096
55204
|
custom_metadata: Record<string, string | boolean>;
|
|
55097
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
55205
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
55098
55206
|
space_ids: string[];
|
|
55099
55207
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
55100
55208
|
properties: {
|
|
@@ -55372,6 +55480,12 @@ declare const device: z.ZodObject<{
|
|
|
55372
55480
|
assa_abloy_vostio_metadata?: {
|
|
55373
55481
|
encoder_name: string;
|
|
55374
55482
|
} | undefined;
|
|
55483
|
+
omnitec_metadata?: {
|
|
55484
|
+
lock_id: number;
|
|
55485
|
+
lock_name: string;
|
|
55486
|
+
has_gateway: boolean;
|
|
55487
|
+
lock_mac: string;
|
|
55488
|
+
} | undefined;
|
|
55375
55489
|
tado_metadata?: {
|
|
55376
55490
|
serial_no: string;
|
|
55377
55491
|
device_type: string;
|
|
@@ -55822,7 +55936,7 @@ declare const device: z.ZodObject<{
|
|
|
55822
55936
|
max_active_access_code_count: number;
|
|
55823
55937
|
})[];
|
|
55824
55938
|
custom_metadata: Record<string, string | boolean>;
|
|
55825
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
55939
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
55826
55940
|
space_ids: string[];
|
|
55827
55941
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
55828
55942
|
properties: {
|
|
@@ -56100,6 +56214,12 @@ declare const device: z.ZodObject<{
|
|
|
56100
56214
|
assa_abloy_vostio_metadata?: {
|
|
56101
56215
|
encoder_name: string;
|
|
56102
56216
|
} | undefined;
|
|
56217
|
+
omnitec_metadata?: {
|
|
56218
|
+
lock_id: number;
|
|
56219
|
+
lock_name: string;
|
|
56220
|
+
has_gateway: boolean;
|
|
56221
|
+
lock_mac: string;
|
|
56222
|
+
} | undefined;
|
|
56103
56223
|
tado_metadata?: {
|
|
56104
56224
|
serial_no: string;
|
|
56105
56225
|
device_type: string;
|
|
@@ -56403,6 +56523,7 @@ declare const DEVICE_PROVIDERS: {
|
|
|
56403
56523
|
readonly LODGIFY: "lodgify";
|
|
56404
56524
|
readonly HOSTAWAY: "hostaway";
|
|
56405
56525
|
readonly ACUITY_SCHEDULING: "acuity_scheduling";
|
|
56526
|
+
readonly OMNITEC: "omnitec";
|
|
56406
56527
|
};
|
|
56407
56528
|
type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
56408
56529
|
declare const device_provider: z.ZodObject<{
|
|
@@ -56486,7 +56607,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
56486
56607
|
|
|
56487
56608
|
declare const unmanaged_device: z.ZodObject<Pick<{
|
|
56488
56609
|
device_id: z.ZodString;
|
|
56489
|
-
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
56610
|
+
device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
56490
56611
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
56491
56612
|
nickname: z.ZodOptional<z.ZodString>;
|
|
56492
56613
|
display_name: z.ZodString;
|
|
@@ -57434,6 +57555,22 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
57434
57555
|
}, {
|
|
57435
57556
|
encoder_name: string;
|
|
57436
57557
|
}>>;
|
|
57558
|
+
omnitec_metadata: z.ZodOptional<z.ZodObject<{
|
|
57559
|
+
lock_id: z.ZodNumber;
|
|
57560
|
+
lock_name: z.ZodString;
|
|
57561
|
+
lock_mac: z.ZodString;
|
|
57562
|
+
has_gateway: z.ZodBoolean;
|
|
57563
|
+
}, "strip", z.ZodTypeAny, {
|
|
57564
|
+
lock_id: number;
|
|
57565
|
+
lock_name: string;
|
|
57566
|
+
has_gateway: boolean;
|
|
57567
|
+
lock_mac: string;
|
|
57568
|
+
}, {
|
|
57569
|
+
lock_id: number;
|
|
57570
|
+
lock_name: string;
|
|
57571
|
+
has_gateway: boolean;
|
|
57572
|
+
lock_mac: string;
|
|
57573
|
+
}>>;
|
|
57437
57574
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
57438
57575
|
serial_no: z.ZodString;
|
|
57439
57576
|
device_type: z.ZodString;
|
|
@@ -57808,6 +57945,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
57808
57945
|
assa_abloy_vostio_metadata?: {
|
|
57809
57946
|
encoder_name: string;
|
|
57810
57947
|
} | undefined;
|
|
57948
|
+
omnitec_metadata?: {
|
|
57949
|
+
lock_id: number;
|
|
57950
|
+
lock_name: string;
|
|
57951
|
+
has_gateway: boolean;
|
|
57952
|
+
lock_mac: string;
|
|
57953
|
+
} | undefined;
|
|
57811
57954
|
tado_metadata?: {
|
|
57812
57955
|
serial_no: string;
|
|
57813
57956
|
device_type: string;
|
|
@@ -58088,6 +58231,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
58088
58231
|
assa_abloy_vostio_metadata?: {
|
|
58089
58232
|
encoder_name: string;
|
|
58090
58233
|
} | undefined;
|
|
58234
|
+
omnitec_metadata?: {
|
|
58235
|
+
lock_id: number;
|
|
58236
|
+
lock_name: string;
|
|
58237
|
+
has_gateway: boolean;
|
|
58238
|
+
lock_mac: string;
|
|
58239
|
+
} | undefined;
|
|
58091
58240
|
tado_metadata?: {
|
|
58092
58241
|
serial_no: string;
|
|
58093
58242
|
device_type: string;
|
|
@@ -59936,7 +60085,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
59936
60085
|
max_active_access_code_count: number;
|
|
59937
60086
|
})[];
|
|
59938
60087
|
custom_metadata: Record<string, string | boolean>;
|
|
59939
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
60088
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
59940
60089
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
59941
60090
|
properties: {
|
|
59942
60091
|
name: string;
|
|
@@ -60197,7 +60346,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
60197
60346
|
max_active_access_code_count: number;
|
|
60198
60347
|
})[];
|
|
60199
60348
|
custom_metadata: Record<string, string | boolean>;
|
|
60200
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "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") | "ring_camera";
|
|
60349
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "korelock_lock" | "omnitec_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone") | "ring_camera";
|
|
60201
60350
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
60202
60351
|
properties: {
|
|
60203
60352
|
name: string;
|
|
@@ -77946,7 +78095,7 @@ type Routes = {
|
|
|
77946
78095
|
/** ID of the device. */
|
|
77947
78096
|
device_id: string;
|
|
77948
78097
|
/** Type of the device. */
|
|
77949
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
78098
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
77950
78099
|
/** IDs of the spaces the device is in. */
|
|
77951
78100
|
space_ids: string[];
|
|
77952
78101
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -78480,6 +78629,17 @@ type Routes = {
|
|
|
78480
78629
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
78481
78630
|
encoder_name: string;
|
|
78482
78631
|
} | undefined;
|
|
78632
|
+
/** Metadata for an Omnitec device. */
|
|
78633
|
+
omnitec_metadata?: {
|
|
78634
|
+
/** Lock ID for an Omnitec device. */
|
|
78635
|
+
lock_id: number;
|
|
78636
|
+
/** Lock name for an Omnitec device. */
|
|
78637
|
+
lock_name: string;
|
|
78638
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
78639
|
+
lock_mac: string;
|
|
78640
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
78641
|
+
has_gateway: boolean;
|
|
78642
|
+
} | undefined;
|
|
78483
78643
|
/** Metadata for a tado° device. */
|
|
78484
78644
|
tado_metadata?: {
|
|
78485
78645
|
/** Serial number for a tado° device. */
|
|
@@ -82606,7 +82766,7 @@ type Routes = {
|
|
|
82606
82766
|
/** ID of the device. */
|
|
82607
82767
|
device_id: string;
|
|
82608
82768
|
/** Type of the device. */
|
|
82609
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
82769
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
82610
82770
|
/** IDs of the spaces the device is in. */
|
|
82611
82771
|
space_ids: string[];
|
|
82612
82772
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -83140,6 +83300,17 @@ type Routes = {
|
|
|
83140
83300
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
83141
83301
|
encoder_name: string;
|
|
83142
83302
|
} | undefined;
|
|
83303
|
+
/** Metadata for an Omnitec device. */
|
|
83304
|
+
omnitec_metadata?: {
|
|
83305
|
+
/** Lock ID for an Omnitec device. */
|
|
83306
|
+
lock_id: number;
|
|
83307
|
+
/** Lock name for an Omnitec device. */
|
|
83308
|
+
lock_name: string;
|
|
83309
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
83310
|
+
lock_mac: string;
|
|
83311
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
83312
|
+
has_gateway: boolean;
|
|
83313
|
+
} | undefined;
|
|
83143
83314
|
/** Metadata for a tado° device. */
|
|
83144
83315
|
tado_metadata?: {
|
|
83145
83316
|
/** Serial number for a tado° device. */
|
|
@@ -100262,7 +100433,7 @@ type Routes = {
|
|
|
100262
100433
|
/** 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. */
|
|
100263
100434
|
customer_key?: string | undefined;
|
|
100264
100435
|
/** 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. */
|
|
100265
|
-
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' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
100436
|
+
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' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
100266
100437
|
/** 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. */
|
|
100267
100438
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
|
|
100268
100439
|
/** 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). */
|
|
@@ -101942,7 +102113,7 @@ type Routes = {
|
|
|
101942
102113
|
/** ID of the device. */
|
|
101943
102114
|
device_id: string;
|
|
101944
102115
|
/** Type of the device. */
|
|
101945
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
102116
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
101946
102117
|
/** IDs of the spaces the device is in. */
|
|
101947
102118
|
space_ids: string[];
|
|
101948
102119
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -102476,6 +102647,17 @@ type Routes = {
|
|
|
102476
102647
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
102477
102648
|
encoder_name: string;
|
|
102478
102649
|
} | undefined;
|
|
102650
|
+
/** Metadata for an Omnitec device. */
|
|
102651
|
+
omnitec_metadata?: {
|
|
102652
|
+
/** Lock ID for an Omnitec device. */
|
|
102653
|
+
lock_id: number;
|
|
102654
|
+
/** Lock name for an Omnitec device. */
|
|
102655
|
+
lock_name: string;
|
|
102656
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
102657
|
+
lock_mac: string;
|
|
102658
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
102659
|
+
has_gateway: boolean;
|
|
102660
|
+
} | undefined;
|
|
102479
102661
|
/** Metadata for a tado° device. */
|
|
102480
102662
|
tado_metadata?: {
|
|
102481
102663
|
/** Serial number for a tado° device. */
|
|
@@ -103289,11 +103471,11 @@ type Routes = {
|
|
|
103289
103471
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
103290
103472
|
connect_webview_id?: string | undefined;
|
|
103291
103473
|
/** Device type for which you want to list devices. */
|
|
103292
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera') | undefined;
|
|
103474
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
|
|
103293
103475
|
/** Array of device types for which you want to list devices. */
|
|
103294
|
-
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera')[] | undefined;
|
|
103476
|
+
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
103295
103477
|
/** Manufacturer for which you want to list devices. */
|
|
103296
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling') | undefined;
|
|
103478
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec') | undefined;
|
|
103297
103479
|
/** Array of device IDs for which you want to list devices. */
|
|
103298
103480
|
device_ids?: string[] | undefined;
|
|
103299
103481
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -103326,7 +103508,7 @@ type Routes = {
|
|
|
103326
103508
|
/** ID of the device. */
|
|
103327
103509
|
device_id: string;
|
|
103328
103510
|
/** Type of the device. */
|
|
103329
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
103511
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
103330
103512
|
/** IDs of the spaces the device is in. */
|
|
103331
103513
|
space_ids: string[];
|
|
103332
103514
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -103860,6 +104042,17 @@ type Routes = {
|
|
|
103860
104042
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
103861
104043
|
encoder_name: string;
|
|
103862
104044
|
} | undefined;
|
|
104045
|
+
/** Metadata for an Omnitec device. */
|
|
104046
|
+
omnitec_metadata?: {
|
|
104047
|
+
/** Lock ID for an Omnitec device. */
|
|
104048
|
+
lock_id: number;
|
|
104049
|
+
/** Lock name for an Omnitec device. */
|
|
104050
|
+
lock_name: string;
|
|
104051
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
104052
|
+
lock_mac: string;
|
|
104053
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
104054
|
+
has_gateway: boolean;
|
|
104055
|
+
} | undefined;
|
|
103863
104056
|
/** Metadata for a tado° device. */
|
|
103864
104057
|
tado_metadata?: {
|
|
103865
104058
|
/** Serial number for a tado° device. */
|
|
@@ -104679,7 +104872,7 @@ type Routes = {
|
|
|
104679
104872
|
formData: {};
|
|
104680
104873
|
jsonResponse: {
|
|
104681
104874
|
device_providers: {
|
|
104682
|
-
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' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling';
|
|
104875
|
+
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' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec';
|
|
104683
104876
|
display_name: string;
|
|
104684
104877
|
image_url: string;
|
|
104685
104878
|
provider_categories: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors')[];
|
|
@@ -104829,7 +105022,7 @@ type Routes = {
|
|
|
104829
105022
|
/** ID of the device. */
|
|
104830
105023
|
device_id: string;
|
|
104831
105024
|
/** Type of the device. */
|
|
104832
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
105025
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
104833
105026
|
/** Unique identifier for the account associated with the device. */
|
|
104834
105027
|
connected_account_id: string;
|
|
104835
105028
|
/** Location information for the device. */
|
|
@@ -105283,11 +105476,11 @@ type Routes = {
|
|
|
105283
105476
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
105284
105477
|
connect_webview_id?: string | undefined;
|
|
105285
105478
|
/** Device type for which you want to list devices. */
|
|
105286
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera') | undefined;
|
|
105479
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
|
|
105287
105480
|
/** Array of device types for which you want to list devices. */
|
|
105288
|
-
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera')[] | undefined;
|
|
105481
|
+
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
105289
105482
|
/** Manufacturer for which you want to list devices. */
|
|
105290
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling') | undefined;
|
|
105483
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec') | undefined;
|
|
105291
105484
|
/** Array of device IDs for which you want to list devices. */
|
|
105292
105485
|
device_ids?: string[] | undefined;
|
|
105293
105486
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -105320,7 +105513,7 @@ type Routes = {
|
|
|
105320
105513
|
/** ID of the device. */
|
|
105321
105514
|
device_id: string;
|
|
105322
105515
|
/** Type of the device. */
|
|
105323
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
105516
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
105324
105517
|
/** Unique identifier for the account associated with the device. */
|
|
105325
105518
|
connected_account_id: string;
|
|
105326
105519
|
/** Location information for the device. */
|
|
@@ -113092,7 +113285,7 @@ type Routes = {
|
|
|
113092
113285
|
/** ID of the device. */
|
|
113093
113286
|
device_id: string;
|
|
113094
113287
|
/** Type of the device. */
|
|
113095
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
113288
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
113096
113289
|
/** IDs of the spaces the device is in. */
|
|
113097
113290
|
space_ids: string[];
|
|
113098
113291
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -113626,6 +113819,17 @@ type Routes = {
|
|
|
113626
113819
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
113627
113820
|
encoder_name: string;
|
|
113628
113821
|
} | undefined;
|
|
113822
|
+
/** Metadata for an Omnitec device. */
|
|
113823
|
+
omnitec_metadata?: {
|
|
113824
|
+
/** Lock ID for an Omnitec device. */
|
|
113825
|
+
lock_id: number;
|
|
113826
|
+
/** Lock name for an Omnitec device. */
|
|
113827
|
+
lock_name: string;
|
|
113828
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
113829
|
+
lock_mac: string;
|
|
113830
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
113831
|
+
has_gateway: boolean;
|
|
113832
|
+
} | undefined;
|
|
113629
113833
|
/** Metadata for a tado° device. */
|
|
113630
113834
|
tado_metadata?: {
|
|
113631
113835
|
/** Serial number for a tado° device. */
|
|
@@ -114426,7 +114630,7 @@ type Routes = {
|
|
|
114426
114630
|
/** ID of the device. */
|
|
114427
114631
|
device_id: string;
|
|
114428
114632
|
/** Type of the device. */
|
|
114429
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
114633
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
114430
114634
|
/** IDs of the spaces the device is in. */
|
|
114431
114635
|
space_ids: string[];
|
|
114432
114636
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -114960,6 +115164,17 @@ type Routes = {
|
|
|
114960
115164
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
114961
115165
|
encoder_name: string;
|
|
114962
115166
|
} | undefined;
|
|
115167
|
+
/** Metadata for an Omnitec device. */
|
|
115168
|
+
omnitec_metadata?: {
|
|
115169
|
+
/** Lock ID for an Omnitec device. */
|
|
115170
|
+
lock_id: number;
|
|
115171
|
+
/** Lock name for an Omnitec device. */
|
|
115172
|
+
lock_name: string;
|
|
115173
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
115174
|
+
lock_mac: string;
|
|
115175
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
115176
|
+
has_gateway: boolean;
|
|
115177
|
+
} | undefined;
|
|
114963
115178
|
/** Metadata for a tado° device. */
|
|
114964
115179
|
tado_metadata?: {
|
|
114965
115180
|
/** Serial number for a tado° device. */
|
|
@@ -115773,11 +115988,11 @@ type Routes = {
|
|
|
115773
115988
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
115774
115989
|
connect_webview_id?: string | undefined;
|
|
115775
115990
|
/** Device type of the locks that you want to list. */
|
|
115776
|
-
device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | undefined;
|
|
115991
|
+
device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | undefined;
|
|
115777
115992
|
/** Device types of the locks that you want to list. */
|
|
115778
|
-
device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock')[] | undefined;
|
|
115993
|
+
device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock')[] | undefined;
|
|
115779
115994
|
/** Manufacturer of the locks that you want to list. */
|
|
115780
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq') | undefined;
|
|
115995
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec') | undefined;
|
|
115781
115996
|
/** Array of device IDs for which you want to list devices. */
|
|
115782
115997
|
device_ids?: string[] | undefined;
|
|
115783
115998
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -115810,7 +116025,7 @@ type Routes = {
|
|
|
115810
116025
|
/** ID of the device. */
|
|
115811
116026
|
device_id: string;
|
|
115812
116027
|
/** Type of the device. */
|
|
115813
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
116028
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
115814
116029
|
/** IDs of the spaces the device is in. */
|
|
115815
116030
|
space_ids: string[];
|
|
115816
116031
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -116344,6 +116559,17 @@ type Routes = {
|
|
|
116344
116559
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
116345
116560
|
encoder_name: string;
|
|
116346
116561
|
} | undefined;
|
|
116562
|
+
/** Metadata for an Omnitec device. */
|
|
116563
|
+
omnitec_metadata?: {
|
|
116564
|
+
/** Lock ID for an Omnitec device. */
|
|
116565
|
+
lock_id: number;
|
|
116566
|
+
/** Lock name for an Omnitec device. */
|
|
116567
|
+
lock_name: string;
|
|
116568
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
116569
|
+
lock_mac: string;
|
|
116570
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
116571
|
+
has_gateway: boolean;
|
|
116572
|
+
} | undefined;
|
|
116347
116573
|
/** Metadata for a tado° device. */
|
|
116348
116574
|
tado_metadata?: {
|
|
116349
116575
|
/** Serial number for a tado° device. */
|
|
@@ -117143,7 +117369,7 @@ type Routes = {
|
|
|
117143
117369
|
/** ID of the device. */
|
|
117144
117370
|
device_id: string;
|
|
117145
117371
|
/** Type of the device. */
|
|
117146
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
117372
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
117147
117373
|
/** IDs of the spaces the device is in. */
|
|
117148
117374
|
space_ids: string[];
|
|
117149
117375
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -117677,6 +117903,17 @@ type Routes = {
|
|
|
117677
117903
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
117678
117904
|
encoder_name: string;
|
|
117679
117905
|
} | undefined;
|
|
117906
|
+
/** Metadata for an Omnitec device. */
|
|
117907
|
+
omnitec_metadata?: {
|
|
117908
|
+
/** Lock ID for an Omnitec device. */
|
|
117909
|
+
lock_id: number;
|
|
117910
|
+
/** Lock name for an Omnitec device. */
|
|
117911
|
+
lock_name: string;
|
|
117912
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
117913
|
+
lock_mac: string;
|
|
117914
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
117915
|
+
has_gateway: boolean;
|
|
117916
|
+
} | undefined;
|
|
117680
117917
|
/** Metadata for a tado° device. */
|
|
117681
117918
|
tado_metadata?: {
|
|
117682
117919
|
/** Serial number for a tado° device. */
|
|
@@ -124589,7 +124826,7 @@ type Routes = {
|
|
|
124589
124826
|
/** ID of the device. */
|
|
124590
124827
|
device_id: string;
|
|
124591
124828
|
/** Type of the device. */
|
|
124592
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
124829
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
124593
124830
|
/** IDs of the spaces the device is in. */
|
|
124594
124831
|
space_ids: string[];
|
|
124595
124832
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -125123,6 +125360,17 @@ type Routes = {
|
|
|
125123
125360
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
125124
125361
|
encoder_name: string;
|
|
125125
125362
|
} | undefined;
|
|
125363
|
+
/** Metadata for an Omnitec device. */
|
|
125364
|
+
omnitec_metadata?: {
|
|
125365
|
+
/** Lock ID for an Omnitec device. */
|
|
125366
|
+
lock_id: number;
|
|
125367
|
+
/** Lock name for an Omnitec device. */
|
|
125368
|
+
lock_name: string;
|
|
125369
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
125370
|
+
lock_mac: string;
|
|
125371
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
125372
|
+
has_gateway: boolean;
|
|
125373
|
+
} | undefined;
|
|
125126
125374
|
/** Metadata for a tado° device. */
|
|
125127
125375
|
tado_metadata?: {
|
|
125128
125376
|
/** Serial number for a tado° device. */
|
|
@@ -125922,7 +126170,7 @@ type Routes = {
|
|
|
125922
126170
|
/** ID of the device. */
|
|
125923
126171
|
device_id: string;
|
|
125924
126172
|
/** Type of the device. */
|
|
125925
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
126173
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
125926
126174
|
/** IDs of the spaces the device is in. */
|
|
125927
126175
|
space_ids: string[];
|
|
125928
126176
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -126456,6 +126704,17 @@ type Routes = {
|
|
|
126456
126704
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
126457
126705
|
encoder_name: string;
|
|
126458
126706
|
} | undefined;
|
|
126707
|
+
/** Metadata for an Omnitec device. */
|
|
126708
|
+
omnitec_metadata?: {
|
|
126709
|
+
/** Lock ID for an Omnitec device. */
|
|
126710
|
+
lock_id: number;
|
|
126711
|
+
/** Lock name for an Omnitec device. */
|
|
126712
|
+
lock_name: string;
|
|
126713
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
126714
|
+
lock_mac: string;
|
|
126715
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
126716
|
+
has_gateway: boolean;
|
|
126717
|
+
} | undefined;
|
|
126459
126718
|
/** Metadata for a tado° device. */
|
|
126460
126719
|
tado_metadata?: {
|
|
126461
126720
|
/** Serial number for a tado° device. */
|
|
@@ -140165,7 +140424,7 @@ type Routes = {
|
|
|
140165
140424
|
/** ID of the device. */
|
|
140166
140425
|
device_id: string;
|
|
140167
140426
|
/** Type of the device. */
|
|
140168
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
140427
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
140169
140428
|
/** IDs of the spaces the device is in. */
|
|
140170
140429
|
space_ids: string[];
|
|
140171
140430
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -140699,6 +140958,17 @@ type Routes = {
|
|
|
140699
140958
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
140700
140959
|
encoder_name: string;
|
|
140701
140960
|
} | undefined;
|
|
140961
|
+
/** Metadata for an Omnitec device. */
|
|
140962
|
+
omnitec_metadata?: {
|
|
140963
|
+
/** Lock ID for an Omnitec device. */
|
|
140964
|
+
lock_id: number;
|
|
140965
|
+
/** Lock name for an Omnitec device. */
|
|
140966
|
+
lock_name: string;
|
|
140967
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
140968
|
+
lock_mac: string;
|
|
140969
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
140970
|
+
has_gateway: boolean;
|
|
140971
|
+
} | undefined;
|
|
140702
140972
|
/** Metadata for a tado° device. */
|
|
140703
140973
|
tado_metadata?: {
|
|
140704
140974
|
/** Serial number for a tado° device. */
|
|
@@ -146921,7 +147191,7 @@ type Routes = {
|
|
|
146921
147191
|
/** ID of the device. */
|
|
146922
147192
|
device_id: string;
|
|
146923
147193
|
/** Type of the device. */
|
|
146924
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
147194
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
146925
147195
|
/** IDs of the spaces the device is in. */
|
|
146926
147196
|
space_ids: string[];
|
|
146927
147197
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -147455,6 +147725,17 @@ type Routes = {
|
|
|
147455
147725
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
147456
147726
|
encoder_name: string;
|
|
147457
147727
|
} | undefined;
|
|
147728
|
+
/** Metadata for an Omnitec device. */
|
|
147729
|
+
omnitec_metadata?: {
|
|
147730
|
+
/** Lock ID for an Omnitec device. */
|
|
147731
|
+
lock_id: number;
|
|
147732
|
+
/** Lock name for an Omnitec device. */
|
|
147733
|
+
lock_name: string;
|
|
147734
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
147735
|
+
lock_mac: string;
|
|
147736
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
147737
|
+
has_gateway: boolean;
|
|
147738
|
+
} | undefined;
|
|
147458
147739
|
/** Metadata for a tado° device. */
|
|
147459
147740
|
tado_metadata?: {
|
|
147460
147741
|
/** Serial number for a tado° device. */
|
|
@@ -151349,7 +151630,7 @@ type Routes = {
|
|
|
151349
151630
|
/** ID of the device. */
|
|
151350
151631
|
device_id: string;
|
|
151351
151632
|
/** Type of the device. */
|
|
151352
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
151633
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
151353
151634
|
/** IDs of the spaces the device is in. */
|
|
151354
151635
|
space_ids: string[];
|
|
151355
151636
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -151883,6 +152164,17 @@ type Routes = {
|
|
|
151883
152164
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
151884
152165
|
encoder_name: string;
|
|
151885
152166
|
} | undefined;
|
|
152167
|
+
/** Metadata for an Omnitec device. */
|
|
152168
|
+
omnitec_metadata?: {
|
|
152169
|
+
/** Lock ID for an Omnitec device. */
|
|
152170
|
+
lock_id: number;
|
|
152171
|
+
/** Lock name for an Omnitec device. */
|
|
152172
|
+
lock_name: string;
|
|
152173
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
152174
|
+
lock_mac: string;
|
|
152175
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
152176
|
+
has_gateway: boolean;
|
|
152177
|
+
} | undefined;
|
|
151886
152178
|
/** Metadata for a tado° device. */
|
|
151887
152179
|
tado_metadata?: {
|
|
151888
152180
|
/** Serial number for a tado° device. */
|
|
@@ -152682,7 +152974,7 @@ type Routes = {
|
|
|
152682
152974
|
/** ID of the device. */
|
|
152683
152975
|
device_id: string;
|
|
152684
152976
|
/** Type of the device. */
|
|
152685
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
152977
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
152686
152978
|
/** IDs of the spaces the device is in. */
|
|
152687
152979
|
space_ids: string[];
|
|
152688
152980
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -153216,6 +153508,17 @@ type Routes = {
|
|
|
153216
153508
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
153217
153509
|
encoder_name: string;
|
|
153218
153510
|
} | undefined;
|
|
153511
|
+
/** Metadata for an Omnitec device. */
|
|
153512
|
+
omnitec_metadata?: {
|
|
153513
|
+
/** Lock ID for an Omnitec device. */
|
|
153514
|
+
lock_id: number;
|
|
153515
|
+
/** Lock name for an Omnitec device. */
|
|
153516
|
+
lock_name: string;
|
|
153517
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
153518
|
+
lock_mac: string;
|
|
153519
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
153520
|
+
has_gateway: boolean;
|
|
153521
|
+
} | undefined;
|
|
153219
153522
|
/** Metadata for a tado° device. */
|
|
153220
153523
|
tado_metadata?: {
|
|
153221
153524
|
/** Serial number for a tado° device. */
|
|
@@ -161025,7 +161328,7 @@ type Routes = {
|
|
|
161025
161328
|
/** ID of the device. */
|
|
161026
161329
|
device_id: string;
|
|
161027
161330
|
/** Type of the device. */
|
|
161028
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
161331
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
161029
161332
|
/** IDs of the spaces the device is in. */
|
|
161030
161333
|
space_ids: string[];
|
|
161031
161334
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -161559,6 +161862,17 @@ type Routes = {
|
|
|
161559
161862
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
161560
161863
|
encoder_name: string;
|
|
161561
161864
|
} | undefined;
|
|
161865
|
+
/** Metadata for an Omnitec device. */
|
|
161866
|
+
omnitec_metadata?: {
|
|
161867
|
+
/** Lock ID for an Omnitec device. */
|
|
161868
|
+
lock_id: number;
|
|
161869
|
+
/** Lock name for an Omnitec device. */
|
|
161870
|
+
lock_name: string;
|
|
161871
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
161872
|
+
lock_mac: string;
|
|
161873
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
161874
|
+
has_gateway: boolean;
|
|
161875
|
+
} | undefined;
|
|
161562
161876
|
/** Metadata for a tado° device. */
|
|
161563
161877
|
tado_metadata?: {
|
|
161564
161878
|
/** Serial number for a tado° device. */
|
|
@@ -162360,7 +162674,7 @@ type Routes = {
|
|
|
162360
162674
|
/** ID of the device. */
|
|
162361
162675
|
device_id: string;
|
|
162362
162676
|
/** Type of the device. */
|
|
162363
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
162677
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
162364
162678
|
/** IDs of the spaces the device is in. */
|
|
162365
162679
|
space_ids: string[];
|
|
162366
162680
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -162894,6 +163208,17 @@ type Routes = {
|
|
|
162894
163208
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
162895
163209
|
encoder_name: string;
|
|
162896
163210
|
} | undefined;
|
|
163211
|
+
/** Metadata for an Omnitec device. */
|
|
163212
|
+
omnitec_metadata?: {
|
|
163213
|
+
/** Lock ID for an Omnitec device. */
|
|
163214
|
+
lock_id: number;
|
|
163215
|
+
/** Lock name for an Omnitec device. */
|
|
163216
|
+
lock_name: string;
|
|
163217
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
163218
|
+
lock_mac: string;
|
|
163219
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
163220
|
+
has_gateway: boolean;
|
|
163221
|
+
} | undefined;
|
|
162897
163222
|
/** Metadata for a tado° device. */
|
|
162898
163223
|
tado_metadata?: {
|
|
162899
163224
|
/** Serial number for a tado° device. */
|
|
@@ -164875,7 +165200,7 @@ type Routes = {
|
|
|
164875
165200
|
/** ID of the device. */
|
|
164876
165201
|
device_id: string;
|
|
164877
165202
|
/** Type of the device. */
|
|
164878
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
165203
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
164879
165204
|
/** IDs of the spaces the device is in. */
|
|
164880
165205
|
space_ids: string[];
|
|
164881
165206
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -165409,6 +165734,17 @@ type Routes = {
|
|
|
165409
165734
|
/** Encoder name for an ASSA ABLOY Vostio system. */
|
|
165410
165735
|
encoder_name: string;
|
|
165411
165736
|
} | undefined;
|
|
165737
|
+
/** Metadata for an Omnitec device. */
|
|
165738
|
+
omnitec_metadata?: {
|
|
165739
|
+
/** Lock ID for an Omnitec device. */
|
|
165740
|
+
lock_id: number;
|
|
165741
|
+
/** Lock name for an Omnitec device. */
|
|
165742
|
+
lock_name: string;
|
|
165743
|
+
/** Bluetooth MAC address for an Omnitec device. */
|
|
165744
|
+
lock_mac: string;
|
|
165745
|
+
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
165746
|
+
has_gateway: boolean;
|
|
165747
|
+
} | undefined;
|
|
165412
165748
|
/** Metadata for a tado° device. */
|
|
165413
165749
|
tado_metadata?: {
|
|
165414
165750
|
/** Serial number for a tado° device. */
|
|
@@ -168874,7 +169210,7 @@ type Routes = {
|
|
|
168874
169210
|
/** ID of the device. */
|
|
168875
169211
|
device_id: string;
|
|
168876
169212
|
/** Type of the device. */
|
|
168877
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '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') | 'ring_camera';
|
|
169213
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock' | 'omnitec_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
168878
169214
|
/** Unique identifier for the account associated with the device. */
|
|
168879
169215
|
connected_account_id: string;
|
|
168880
169216
|
/** Location information for the device. */
|