@seamapi/types 1.733.0 → 1.734.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 +75 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +270 -40
- package/dist/index.cjs +75 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +62 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +18 -0
- package/lib/seam/connect/models/devices/device-metadata.js +6 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
- package/lib/seam/connect/models/devices/device-type.js +9 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +29 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -3
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +65 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +143 -24
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +7 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +17 -0
- package/src/lib/seam/connect/openapi.ts +65 -0
- package/src/lib/seam/connect/route-types.ts +177 -0
package/dist/connect.d.cts
CHANGED
|
@@ -11167,7 +11167,7 @@ declare const batch: z.ZodObject<{
|
|
|
11167
11167
|
}>, "many">>;
|
|
11168
11168
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11169
11169
|
device_id: z.ZodString;
|
|
11170
|
-
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"]>]>;
|
|
11170
|
+
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"]>]>;
|
|
11171
11171
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
11172
11172
|
nickname: z.ZodOptional<z.ZodString>;
|
|
11173
11173
|
display_name: z.ZodString;
|
|
@@ -12216,6 +12216,16 @@ declare const batch: z.ZodObject<{
|
|
|
12216
12216
|
device_type: string;
|
|
12217
12217
|
time_zone: string | null;
|
|
12218
12218
|
}>>;
|
|
12219
|
+
ring_metadata: z.ZodOptional<z.ZodObject<{
|
|
12220
|
+
device_id: z.ZodString;
|
|
12221
|
+
device_name: z.ZodString;
|
|
12222
|
+
}, "strip", z.ZodTypeAny, {
|
|
12223
|
+
device_id: string;
|
|
12224
|
+
device_name: string;
|
|
12225
|
+
}, {
|
|
12226
|
+
device_id: string;
|
|
12227
|
+
device_name: string;
|
|
12228
|
+
}>>;
|
|
12219
12229
|
korelock_metadata: z.ZodOptional<z.ZodObject<{
|
|
12220
12230
|
device_id: z.ZodOptional<z.ZodString>;
|
|
12221
12231
|
device_name: z.ZodOptional<z.ZodString>;
|
|
@@ -12505,6 +12515,10 @@ declare const batch: z.ZodObject<{
|
|
|
12505
12515
|
device_type: string;
|
|
12506
12516
|
time_zone: string | null;
|
|
12507
12517
|
} | undefined;
|
|
12518
|
+
ring_metadata?: {
|
|
12519
|
+
device_id: string;
|
|
12520
|
+
device_name: string;
|
|
12521
|
+
} | undefined;
|
|
12508
12522
|
korelock_metadata?: {
|
|
12509
12523
|
device_id?: string | undefined;
|
|
12510
12524
|
device_name?: string | undefined;
|
|
@@ -12778,6 +12792,10 @@ declare const batch: z.ZodObject<{
|
|
|
12778
12792
|
device_type: string;
|
|
12779
12793
|
time_zone: string | null;
|
|
12780
12794
|
} | undefined;
|
|
12795
|
+
ring_metadata?: {
|
|
12796
|
+
device_id: string;
|
|
12797
|
+
device_name: string;
|
|
12798
|
+
} | undefined;
|
|
12781
12799
|
korelock_metadata?: {
|
|
12782
12800
|
device_id?: string | undefined;
|
|
12783
12801
|
device_name?: string | undefined;
|
|
@@ -14382,7 +14400,7 @@ declare const batch: z.ZodObject<{
|
|
|
14382
14400
|
max_active_access_code_count: number;
|
|
14383
14401
|
})[];
|
|
14384
14402
|
custom_metadata: Record<string, string | boolean>;
|
|
14385
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
14403
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
14386
14404
|
space_ids: string[];
|
|
14387
14405
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
14388
14406
|
properties: {
|
|
@@ -14697,6 +14715,10 @@ declare const batch: z.ZodObject<{
|
|
|
14697
14715
|
device_type: string;
|
|
14698
14716
|
time_zone: string | null;
|
|
14699
14717
|
} | undefined;
|
|
14718
|
+
ring_metadata?: {
|
|
14719
|
+
device_id: string;
|
|
14720
|
+
device_name: string;
|
|
14721
|
+
} | undefined;
|
|
14700
14722
|
korelock_metadata?: {
|
|
14701
14723
|
device_id?: string | undefined;
|
|
14702
14724
|
device_name?: string | undefined;
|
|
@@ -15091,7 +15113,7 @@ declare const batch: z.ZodObject<{
|
|
|
15091
15113
|
max_active_access_code_count: number;
|
|
15092
15114
|
})[];
|
|
15093
15115
|
custom_metadata: Record<string, string | boolean>;
|
|
15094
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
15116
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
15095
15117
|
space_ids: string[];
|
|
15096
15118
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
15097
15119
|
properties: {
|
|
@@ -15406,6 +15428,10 @@ declare const batch: z.ZodObject<{
|
|
|
15406
15428
|
device_type: string;
|
|
15407
15429
|
time_zone: string | null;
|
|
15408
15430
|
} | undefined;
|
|
15431
|
+
ring_metadata?: {
|
|
15432
|
+
device_id: string;
|
|
15433
|
+
device_name: string;
|
|
15434
|
+
} | undefined;
|
|
15409
15435
|
korelock_metadata?: {
|
|
15410
15436
|
device_id?: string | undefined;
|
|
15411
15437
|
device_name?: string | undefined;
|
|
@@ -22700,7 +22726,7 @@ declare const batch: z.ZodObject<{
|
|
|
22700
22726
|
}>, "many">>;
|
|
22701
22727
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
22702
22728
|
device_id: z.ZodString;
|
|
22703
|
-
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"]>]>;
|
|
22729
|
+
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"]>]>;
|
|
22704
22730
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
22705
22731
|
nickname: z.ZodOptional<z.ZodString>;
|
|
22706
22732
|
display_name: z.ZodString;
|
|
@@ -23749,6 +23775,16 @@ declare const batch: z.ZodObject<{
|
|
|
23749
23775
|
device_type: string;
|
|
23750
23776
|
time_zone: string | null;
|
|
23751
23777
|
}>>;
|
|
23778
|
+
ring_metadata: z.ZodOptional<z.ZodObject<{
|
|
23779
|
+
device_id: z.ZodString;
|
|
23780
|
+
device_name: z.ZodString;
|
|
23781
|
+
}, "strip", z.ZodTypeAny, {
|
|
23782
|
+
device_id: string;
|
|
23783
|
+
device_name: string;
|
|
23784
|
+
}, {
|
|
23785
|
+
device_id: string;
|
|
23786
|
+
device_name: string;
|
|
23787
|
+
}>>;
|
|
23752
23788
|
korelock_metadata: z.ZodOptional<z.ZodObject<{
|
|
23753
23789
|
device_id: z.ZodOptional<z.ZodString>;
|
|
23754
23790
|
device_name: z.ZodOptional<z.ZodString>;
|
|
@@ -24038,6 +24074,10 @@ declare const batch: z.ZodObject<{
|
|
|
24038
24074
|
device_type: string;
|
|
24039
24075
|
time_zone: string | null;
|
|
24040
24076
|
} | undefined;
|
|
24077
|
+
ring_metadata?: {
|
|
24078
|
+
device_id: string;
|
|
24079
|
+
device_name: string;
|
|
24080
|
+
} | undefined;
|
|
24041
24081
|
korelock_metadata?: {
|
|
24042
24082
|
device_id?: string | undefined;
|
|
24043
24083
|
device_name?: string | undefined;
|
|
@@ -24311,6 +24351,10 @@ declare const batch: z.ZodObject<{
|
|
|
24311
24351
|
device_type: string;
|
|
24312
24352
|
time_zone: string | null;
|
|
24313
24353
|
} | undefined;
|
|
24354
|
+
ring_metadata?: {
|
|
24355
|
+
device_id: string;
|
|
24356
|
+
device_name: string;
|
|
24357
|
+
} | undefined;
|
|
24314
24358
|
korelock_metadata?: {
|
|
24315
24359
|
device_id?: string | undefined;
|
|
24316
24360
|
device_name?: string | undefined;
|
|
@@ -26070,7 +26114,7 @@ declare const batch: z.ZodObject<{
|
|
|
26070
26114
|
max_active_access_code_count: number;
|
|
26071
26115
|
})[];
|
|
26072
26116
|
custom_metadata: Record<string, string | boolean>;
|
|
26073
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
26117
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
26074
26118
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
26075
26119
|
properties: {
|
|
26076
26120
|
name: string;
|
|
@@ -26321,7 +26365,7 @@ declare const batch: z.ZodObject<{
|
|
|
26321
26365
|
max_active_access_code_count: number;
|
|
26322
26366
|
})[];
|
|
26323
26367
|
custom_metadata: Record<string, string | boolean>;
|
|
26324
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
26368
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
26325
26369
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
26326
26370
|
properties: {
|
|
26327
26371
|
name: string;
|
|
@@ -35416,7 +35460,7 @@ declare const batch: z.ZodObject<{
|
|
|
35416
35460
|
max_active_access_code_count: number;
|
|
35417
35461
|
})[];
|
|
35418
35462
|
custom_metadata: Record<string, string | boolean>;
|
|
35419
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
35463
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
35420
35464
|
space_ids: string[];
|
|
35421
35465
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
35422
35466
|
properties: {
|
|
@@ -35731,6 +35775,10 @@ declare const batch: z.ZodObject<{
|
|
|
35731
35775
|
device_type: string;
|
|
35732
35776
|
time_zone: string | null;
|
|
35733
35777
|
} | undefined;
|
|
35778
|
+
ring_metadata?: {
|
|
35779
|
+
device_id: string;
|
|
35780
|
+
device_name: string;
|
|
35781
|
+
} | undefined;
|
|
35734
35782
|
korelock_metadata?: {
|
|
35735
35783
|
device_id?: string | undefined;
|
|
35736
35784
|
device_name?: string | undefined;
|
|
@@ -37558,7 +37606,7 @@ declare const batch: z.ZodObject<{
|
|
|
37558
37606
|
max_active_access_code_count: number;
|
|
37559
37607
|
})[];
|
|
37560
37608
|
custom_metadata: Record<string, string | boolean>;
|
|
37561
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
37609
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
37562
37610
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
37563
37611
|
properties: {
|
|
37564
37612
|
name: string;
|
|
@@ -40047,7 +40095,7 @@ declare const batch: z.ZodObject<{
|
|
|
40047
40095
|
max_active_access_code_count: number;
|
|
40048
40096
|
})[];
|
|
40049
40097
|
custom_metadata: Record<string, string | boolean>;
|
|
40050
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
40098
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
40051
40099
|
space_ids: string[];
|
|
40052
40100
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
40053
40101
|
properties: {
|
|
@@ -40362,6 +40410,10 @@ declare const batch: z.ZodObject<{
|
|
|
40362
40410
|
device_type: string;
|
|
40363
40411
|
time_zone: string | null;
|
|
40364
40412
|
} | undefined;
|
|
40413
|
+
ring_metadata?: {
|
|
40414
|
+
device_id: string;
|
|
40415
|
+
device_name: string;
|
|
40416
|
+
} | undefined;
|
|
40365
40417
|
korelock_metadata?: {
|
|
40366
40418
|
device_id?: string | undefined;
|
|
40367
40419
|
device_name?: string | undefined;
|
|
@@ -42189,7 +42241,7 @@ declare const batch: z.ZodObject<{
|
|
|
42189
42241
|
max_active_access_code_count: number;
|
|
42190
42242
|
})[];
|
|
42191
42243
|
custom_metadata: Record<string, string | boolean>;
|
|
42192
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
42244
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
42193
42245
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
42194
42246
|
properties: {
|
|
42195
42247
|
name: string;
|
|
@@ -45913,7 +45965,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
45913
45965
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
45914
45966
|
declare const device: z.ZodObject<{
|
|
45915
45967
|
device_id: z.ZodString;
|
|
45916
|
-
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"]>]>;
|
|
45968
|
+
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"]>]>;
|
|
45917
45969
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
45918
45970
|
nickname: z.ZodOptional<z.ZodString>;
|
|
45919
45971
|
display_name: z.ZodString;
|
|
@@ -46962,6 +47014,16 @@ declare const device: z.ZodObject<{
|
|
|
46962
47014
|
device_type: string;
|
|
46963
47015
|
time_zone: string | null;
|
|
46964
47016
|
}>>;
|
|
47017
|
+
ring_metadata: z.ZodOptional<z.ZodObject<{
|
|
47018
|
+
device_id: z.ZodString;
|
|
47019
|
+
device_name: z.ZodString;
|
|
47020
|
+
}, "strip", z.ZodTypeAny, {
|
|
47021
|
+
device_id: string;
|
|
47022
|
+
device_name: string;
|
|
47023
|
+
}, {
|
|
47024
|
+
device_id: string;
|
|
47025
|
+
device_name: string;
|
|
47026
|
+
}>>;
|
|
46965
47027
|
korelock_metadata: z.ZodOptional<z.ZodObject<{
|
|
46966
47028
|
device_id: z.ZodOptional<z.ZodString>;
|
|
46967
47029
|
device_name: z.ZodOptional<z.ZodString>;
|
|
@@ -47251,6 +47313,10 @@ declare const device: z.ZodObject<{
|
|
|
47251
47313
|
device_type: string;
|
|
47252
47314
|
time_zone: string | null;
|
|
47253
47315
|
} | undefined;
|
|
47316
|
+
ring_metadata?: {
|
|
47317
|
+
device_id: string;
|
|
47318
|
+
device_name: string;
|
|
47319
|
+
} | undefined;
|
|
47254
47320
|
korelock_metadata?: {
|
|
47255
47321
|
device_id?: string | undefined;
|
|
47256
47322
|
device_name?: string | undefined;
|
|
@@ -47524,6 +47590,10 @@ declare const device: z.ZodObject<{
|
|
|
47524
47590
|
device_type: string;
|
|
47525
47591
|
time_zone: string | null;
|
|
47526
47592
|
} | undefined;
|
|
47593
|
+
ring_metadata?: {
|
|
47594
|
+
device_id: string;
|
|
47595
|
+
device_name: string;
|
|
47596
|
+
} | undefined;
|
|
47527
47597
|
korelock_metadata?: {
|
|
47528
47598
|
device_id?: string | undefined;
|
|
47529
47599
|
device_name?: string | undefined;
|
|
@@ -49128,7 +49198,7 @@ declare const device: z.ZodObject<{
|
|
|
49128
49198
|
max_active_access_code_count: number;
|
|
49129
49199
|
})[];
|
|
49130
49200
|
custom_metadata: Record<string, string | boolean>;
|
|
49131
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
49201
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
49132
49202
|
space_ids: string[];
|
|
49133
49203
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
49134
49204
|
properties: {
|
|
@@ -49443,6 +49513,10 @@ declare const device: z.ZodObject<{
|
|
|
49443
49513
|
device_type: string;
|
|
49444
49514
|
time_zone: string | null;
|
|
49445
49515
|
} | undefined;
|
|
49516
|
+
ring_metadata?: {
|
|
49517
|
+
device_id: string;
|
|
49518
|
+
device_name: string;
|
|
49519
|
+
} | undefined;
|
|
49446
49520
|
korelock_metadata?: {
|
|
49447
49521
|
device_id?: string | undefined;
|
|
49448
49522
|
device_name?: string | undefined;
|
|
@@ -49837,7 +49911,7 @@ declare const device: z.ZodObject<{
|
|
|
49837
49911
|
max_active_access_code_count: number;
|
|
49838
49912
|
})[];
|
|
49839
49913
|
custom_metadata: Record<string, string | boolean>;
|
|
49840
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
49914
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
49841
49915
|
space_ids: string[];
|
|
49842
49916
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
49843
49917
|
properties: {
|
|
@@ -50152,6 +50226,10 @@ declare const device: z.ZodObject<{
|
|
|
50152
50226
|
device_type: string;
|
|
50153
50227
|
time_zone: string | null;
|
|
50154
50228
|
} | undefined;
|
|
50229
|
+
ring_metadata?: {
|
|
50230
|
+
device_id: string;
|
|
50231
|
+
device_name: string;
|
|
50232
|
+
} | undefined;
|
|
50155
50233
|
korelock_metadata?: {
|
|
50156
50234
|
device_id?: string | undefined;
|
|
50157
50235
|
device_name?: string | undefined;
|
|
@@ -50481,7 +50559,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
50481
50559
|
|
|
50482
50560
|
declare const unmanaged_device: z.ZodObject<Pick<{
|
|
50483
50561
|
device_id: z.ZodString;
|
|
50484
|
-
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"]>]>;
|
|
50562
|
+
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"]>]>;
|
|
50485
50563
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
50486
50564
|
nickname: z.ZodOptional<z.ZodString>;
|
|
50487
50565
|
display_name: z.ZodString;
|
|
@@ -51530,6 +51608,16 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
51530
51608
|
device_type: string;
|
|
51531
51609
|
time_zone: string | null;
|
|
51532
51610
|
}>>;
|
|
51611
|
+
ring_metadata: z.ZodOptional<z.ZodObject<{
|
|
51612
|
+
device_id: z.ZodString;
|
|
51613
|
+
device_name: z.ZodString;
|
|
51614
|
+
}, "strip", z.ZodTypeAny, {
|
|
51615
|
+
device_id: string;
|
|
51616
|
+
device_name: string;
|
|
51617
|
+
}, {
|
|
51618
|
+
device_id: string;
|
|
51619
|
+
device_name: string;
|
|
51620
|
+
}>>;
|
|
51533
51621
|
korelock_metadata: z.ZodOptional<z.ZodObject<{
|
|
51534
51622
|
device_id: z.ZodOptional<z.ZodString>;
|
|
51535
51623
|
device_name: z.ZodOptional<z.ZodString>;
|
|
@@ -51819,6 +51907,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
51819
51907
|
device_type: string;
|
|
51820
51908
|
time_zone: string | null;
|
|
51821
51909
|
} | undefined;
|
|
51910
|
+
ring_metadata?: {
|
|
51911
|
+
device_id: string;
|
|
51912
|
+
device_name: string;
|
|
51913
|
+
} | undefined;
|
|
51822
51914
|
korelock_metadata?: {
|
|
51823
51915
|
device_id?: string | undefined;
|
|
51824
51916
|
device_name?: string | undefined;
|
|
@@ -52092,6 +52184,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
52092
52184
|
device_type: string;
|
|
52093
52185
|
time_zone: string | null;
|
|
52094
52186
|
} | undefined;
|
|
52187
|
+
ring_metadata?: {
|
|
52188
|
+
device_id: string;
|
|
52189
|
+
device_name: string;
|
|
52190
|
+
} | undefined;
|
|
52095
52191
|
korelock_metadata?: {
|
|
52096
52192
|
device_id?: string | undefined;
|
|
52097
52193
|
device_name?: string | undefined;
|
|
@@ -53851,7 +53947,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
53851
53947
|
max_active_access_code_count: number;
|
|
53852
53948
|
})[];
|
|
53853
53949
|
custom_metadata: Record<string, string | boolean>;
|
|
53854
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
53950
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
53855
53951
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
53856
53952
|
properties: {
|
|
53857
53953
|
name: string;
|
|
@@ -54102,7 +54198,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
54102
54198
|
max_active_access_code_count: number;
|
|
54103
54199
|
})[];
|
|
54104
54200
|
custom_metadata: Record<string, string | boolean>;
|
|
54105
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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");
|
|
54201
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_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";
|
|
54106
54202
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
54107
54203
|
properties: {
|
|
54108
54204
|
name: string;
|
|
@@ -66086,6 +66182,21 @@ declare const _default: {
|
|
|
66086
66182
|
required: string[];
|
|
66087
66183
|
type: string;
|
|
66088
66184
|
};
|
|
66185
|
+
ring_metadata: {
|
|
66186
|
+
description: string;
|
|
66187
|
+
properties: {
|
|
66188
|
+
device_id: {
|
|
66189
|
+
description: string;
|
|
66190
|
+
type: string;
|
|
66191
|
+
};
|
|
66192
|
+
device_name: {
|
|
66193
|
+
description: string;
|
|
66194
|
+
type: string;
|
|
66195
|
+
};
|
|
66196
|
+
};
|
|
66197
|
+
required: string[];
|
|
66198
|
+
type: string;
|
|
66199
|
+
};
|
|
66089
66200
|
salto_ks_metadata: {
|
|
66090
66201
|
description: string;
|
|
66091
66202
|
properties: {
|
|
@@ -138187,7 +138298,7 @@ type Routes = {
|
|
|
138187
138298
|
/** ID of the device. */
|
|
138188
138299
|
device_id: string;
|
|
138189
138300
|
/** Type of the device. */
|
|
138190
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
138301
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
138191
138302
|
/** IDs of the spaces the device is in. */
|
|
138192
138303
|
space_ids: string[];
|
|
138193
138304
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -138791,6 +138902,13 @@ type Routes = {
|
|
|
138791
138902
|
/** IANA timezone for the Ultraloq device. */
|
|
138792
138903
|
time_zone: string | null;
|
|
138793
138904
|
} | undefined;
|
|
138905
|
+
/** Metadata for a Ring device. */
|
|
138906
|
+
ring_metadata?: {
|
|
138907
|
+
/** Device ID for a Ring device. */
|
|
138908
|
+
device_id: string;
|
|
138909
|
+
/** Device name for a Ring device. */
|
|
138910
|
+
device_name: string;
|
|
138911
|
+
} | undefined;
|
|
138794
138912
|
/** Metadata for a Korelock device. */
|
|
138795
138913
|
korelock_metadata?: {
|
|
138796
138914
|
/** Device ID for a Korelock device. */
|
|
@@ -142261,7 +142379,7 @@ type Routes = {
|
|
|
142261
142379
|
/** ID of the device. */
|
|
142262
142380
|
device_id: string;
|
|
142263
142381
|
/** Type of the device. */
|
|
142264
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
142382
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
142265
142383
|
/** IDs of the spaces the device is in. */
|
|
142266
142384
|
space_ids: string[];
|
|
142267
142385
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -142865,6 +142983,13 @@ type Routes = {
|
|
|
142865
142983
|
/** IANA timezone for the Ultraloq device. */
|
|
142866
142984
|
time_zone: string | null;
|
|
142867
142985
|
} | undefined;
|
|
142986
|
+
/** Metadata for a Ring device. */
|
|
142987
|
+
ring_metadata?: {
|
|
142988
|
+
/** Device ID for a Ring device. */
|
|
142989
|
+
device_id: string;
|
|
142990
|
+
/** Device name for a Ring device. */
|
|
142991
|
+
device_name: string;
|
|
142992
|
+
} | undefined;
|
|
142868
142993
|
/** Metadata for a Korelock device. */
|
|
142869
142994
|
korelock_metadata?: {
|
|
142870
142995
|
/** Device ID for a Korelock device. */
|
|
@@ -156575,7 +156700,7 @@ type Routes = {
|
|
|
156575
156700
|
/** ID of the device. */
|
|
156576
156701
|
device_id: string;
|
|
156577
156702
|
/** Type of the device. */
|
|
156578
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
156703
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
156579
156704
|
/** IDs of the spaces the device is in. */
|
|
156580
156705
|
space_ids: string[];
|
|
156581
156706
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -157179,6 +157304,13 @@ type Routes = {
|
|
|
157179
157304
|
/** IANA timezone for the Ultraloq device. */
|
|
157180
157305
|
time_zone: string | null;
|
|
157181
157306
|
} | undefined;
|
|
157307
|
+
/** Metadata for a Ring device. */
|
|
157308
|
+
ring_metadata?: {
|
|
157309
|
+
/** Device ID for a Ring device. */
|
|
157310
|
+
device_id: string;
|
|
157311
|
+
/** Device name for a Ring device. */
|
|
157312
|
+
device_name: string;
|
|
157313
|
+
} | undefined;
|
|
157182
157314
|
/** Metadata for a Korelock device. */
|
|
157183
157315
|
korelock_metadata?: {
|
|
157184
157316
|
/** Device ID for a Korelock device. */
|
|
@@ -157887,9 +158019,9 @@ type Routes = {
|
|
|
157887
158019
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
157888
158020
|
connect_webview_id?: string | undefined;
|
|
157889
158021
|
/** Device type for which you want to list devices. */
|
|
157890
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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')) | undefined;
|
|
158022
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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;
|
|
157891
158023
|
/** Array of device types for which you want to list devices. */
|
|
157892
|
-
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'))[] | undefined;
|
|
158024
|
+
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;
|
|
157893
158025
|
/** Manufacturer for which you want to list devices. */
|
|
157894
158026
|
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') | undefined;
|
|
157895
158027
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -157924,7 +158056,7 @@ type Routes = {
|
|
|
157924
158056
|
/** ID of the device. */
|
|
157925
158057
|
device_id: string;
|
|
157926
158058
|
/** Type of the device. */
|
|
157927
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
158059
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
157928
158060
|
/** IDs of the spaces the device is in. */
|
|
157929
158061
|
space_ids: string[];
|
|
157930
158062
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -158528,6 +158660,13 @@ type Routes = {
|
|
|
158528
158660
|
/** IANA timezone for the Ultraloq device. */
|
|
158529
158661
|
time_zone: string | null;
|
|
158530
158662
|
} | undefined;
|
|
158663
|
+
/** Metadata for a Ring device. */
|
|
158664
|
+
ring_metadata?: {
|
|
158665
|
+
/** Device ID for a Ring device. */
|
|
158666
|
+
device_id: string;
|
|
158667
|
+
/** Device name for a Ring device. */
|
|
158668
|
+
device_name: string;
|
|
158669
|
+
} | undefined;
|
|
158531
158670
|
/** Metadata for a Korelock device. */
|
|
158532
158671
|
korelock_metadata?: {
|
|
158533
158672
|
/** Device ID for a Korelock device. */
|
|
@@ -159386,7 +159525,7 @@ type Routes = {
|
|
|
159386
159525
|
/** ID of the device. */
|
|
159387
159526
|
device_id: string;
|
|
159388
159527
|
/** Type of the device. */
|
|
159389
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
159528
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
159390
159529
|
/** Unique identifier for the account associated with the device. */
|
|
159391
159530
|
connected_account_id: string;
|
|
159392
159531
|
/** Location information for the device. */
|
|
@@ -159822,9 +159961,9 @@ type Routes = {
|
|
|
159822
159961
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
159823
159962
|
connect_webview_id?: string | undefined;
|
|
159824
159963
|
/** Device type for which you want to list devices. */
|
|
159825
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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')) | undefined;
|
|
159964
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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;
|
|
159826
159965
|
/** Array of device types for which you want to list devices. */
|
|
159827
|
-
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'))[] | undefined;
|
|
159966
|
+
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;
|
|
159828
159967
|
/** Manufacturer for which you want to list devices. */
|
|
159829
159968
|
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') | undefined;
|
|
159830
159969
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -159859,7 +159998,7 @@ type Routes = {
|
|
|
159859
159998
|
/** ID of the device. */
|
|
159860
159999
|
device_id: string;
|
|
159861
160000
|
/** Type of the device. */
|
|
159862
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
160001
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
159863
160002
|
/** Unique identifier for the account associated with the device. */
|
|
159864
160003
|
connected_account_id: string;
|
|
159865
160004
|
/** Location information for the device. */
|
|
@@ -165939,7 +166078,7 @@ type Routes = {
|
|
|
165939
166078
|
/** ID of the device. */
|
|
165940
166079
|
device_id: string;
|
|
165941
166080
|
/** Type of the device. */
|
|
165942
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
166081
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
165943
166082
|
/** IDs of the spaces the device is in. */
|
|
165944
166083
|
space_ids: string[];
|
|
165945
166084
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -166543,6 +166682,13 @@ type Routes = {
|
|
|
166543
166682
|
/** IANA timezone for the Ultraloq device. */
|
|
166544
166683
|
time_zone: string | null;
|
|
166545
166684
|
} | undefined;
|
|
166685
|
+
/** Metadata for a Ring device. */
|
|
166686
|
+
ring_metadata?: {
|
|
166687
|
+
/** Device ID for a Ring device. */
|
|
166688
|
+
device_id: string;
|
|
166689
|
+
/** Device name for a Ring device. */
|
|
166690
|
+
device_name: string;
|
|
166691
|
+
} | undefined;
|
|
166546
166692
|
/** Metadata for a Korelock device. */
|
|
166547
166693
|
korelock_metadata?: {
|
|
166548
166694
|
/** Device ID for a Korelock device. */
|
|
@@ -167238,7 +167384,7 @@ type Routes = {
|
|
|
167238
167384
|
/** ID of the device. */
|
|
167239
167385
|
device_id: string;
|
|
167240
167386
|
/** Type of the device. */
|
|
167241
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
167387
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
167242
167388
|
/** IDs of the spaces the device is in. */
|
|
167243
167389
|
space_ids: string[];
|
|
167244
167390
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -167842,6 +167988,13 @@ type Routes = {
|
|
|
167842
167988
|
/** IANA timezone for the Ultraloq device. */
|
|
167843
167989
|
time_zone: string | null;
|
|
167844
167990
|
} | undefined;
|
|
167991
|
+
/** Metadata for a Ring device. */
|
|
167992
|
+
ring_metadata?: {
|
|
167993
|
+
/** Device ID for a Ring device. */
|
|
167994
|
+
device_id: string;
|
|
167995
|
+
/** Device name for a Ring device. */
|
|
167996
|
+
device_name: string;
|
|
167997
|
+
} | undefined;
|
|
167845
167998
|
/** Metadata for a Korelock device. */
|
|
167846
167999
|
korelock_metadata?: {
|
|
167847
168000
|
/** Device ID for a Korelock device. */
|
|
@@ -168587,7 +168740,7 @@ type Routes = {
|
|
|
168587
168740
|
/** ID of the device. */
|
|
168588
168741
|
device_id: string;
|
|
168589
168742
|
/** Type of the device. */
|
|
168590
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
168743
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
168591
168744
|
/** IDs of the spaces the device is in. */
|
|
168592
168745
|
space_ids: string[];
|
|
168593
168746
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -169191,6 +169344,13 @@ type Routes = {
|
|
|
169191
169344
|
/** IANA timezone for the Ultraloq device. */
|
|
169192
169345
|
time_zone: string | null;
|
|
169193
169346
|
} | undefined;
|
|
169347
|
+
/** Metadata for a Ring device. */
|
|
169348
|
+
ring_metadata?: {
|
|
169349
|
+
/** Device ID for a Ring device. */
|
|
169350
|
+
device_id: string;
|
|
169351
|
+
/** Device name for a Ring device. */
|
|
169352
|
+
device_name: string;
|
|
169353
|
+
} | undefined;
|
|
169194
169354
|
/** Metadata for a Korelock device. */
|
|
169195
169355
|
korelock_metadata?: {
|
|
169196
169356
|
/** Device ID for a Korelock device. */
|
|
@@ -169885,7 +170045,7 @@ type Routes = {
|
|
|
169885
170045
|
/** ID of the device. */
|
|
169886
170046
|
device_id: string;
|
|
169887
170047
|
/** Type of the device. */
|
|
169888
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
170048
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
169889
170049
|
/** IDs of the spaces the device is in. */
|
|
169890
170050
|
space_ids: string[];
|
|
169891
170051
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -170489,6 +170649,13 @@ type Routes = {
|
|
|
170489
170649
|
/** IANA timezone for the Ultraloq device. */
|
|
170490
170650
|
time_zone: string | null;
|
|
170491
170651
|
} | undefined;
|
|
170652
|
+
/** Metadata for a Ring device. */
|
|
170653
|
+
ring_metadata?: {
|
|
170654
|
+
/** Device ID for a Ring device. */
|
|
170655
|
+
device_id: string;
|
|
170656
|
+
/** Device name for a Ring device. */
|
|
170657
|
+
device_name: string;
|
|
170658
|
+
} | undefined;
|
|
170492
170659
|
/** Metadata for a Korelock device. */
|
|
170493
170660
|
korelock_metadata?: {
|
|
170494
170661
|
/** Device ID for a Korelock device. */
|
|
@@ -176340,7 +176507,7 @@ type Routes = {
|
|
|
176340
176507
|
/** ID of the device. */
|
|
176341
176508
|
device_id: string;
|
|
176342
176509
|
/** Type of the device. */
|
|
176343
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
176510
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
176344
176511
|
/** IDs of the spaces the device is in. */
|
|
176345
176512
|
space_ids: string[];
|
|
176346
176513
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -176944,6 +177111,13 @@ type Routes = {
|
|
|
176944
177111
|
/** IANA timezone for the Ultraloq device. */
|
|
176945
177112
|
time_zone: string | null;
|
|
176946
177113
|
} | undefined;
|
|
177114
|
+
/** Metadata for a Ring device. */
|
|
177115
|
+
ring_metadata?: {
|
|
177116
|
+
/** Device ID for a Ring device. */
|
|
177117
|
+
device_id: string;
|
|
177118
|
+
/** Device name for a Ring device. */
|
|
177119
|
+
device_name: string;
|
|
177120
|
+
} | undefined;
|
|
176947
177121
|
/** Metadata for a Korelock device. */
|
|
176948
177122
|
korelock_metadata?: {
|
|
176949
177123
|
/** Device ID for a Korelock device. */
|
|
@@ -177638,7 +177812,7 @@ type Routes = {
|
|
|
177638
177812
|
/** ID of the device. */
|
|
177639
177813
|
device_id: string;
|
|
177640
177814
|
/** Type of the device. */
|
|
177641
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
177815
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
177642
177816
|
/** IDs of the spaces the device is in. */
|
|
177643
177817
|
space_ids: string[];
|
|
177644
177818
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -178242,6 +178416,13 @@ type Routes = {
|
|
|
178242
178416
|
/** IANA timezone for the Ultraloq device. */
|
|
178243
178417
|
time_zone: string | null;
|
|
178244
178418
|
} | undefined;
|
|
178419
|
+
/** Metadata for a Ring device. */
|
|
178420
|
+
ring_metadata?: {
|
|
178421
|
+
/** Device ID for a Ring device. */
|
|
178422
|
+
device_id: string;
|
|
178423
|
+
/** Device name for a Ring device. */
|
|
178424
|
+
device_name: string;
|
|
178425
|
+
} | undefined;
|
|
178245
178426
|
/** Metadata for a Korelock device. */
|
|
178246
178427
|
korelock_metadata?: {
|
|
178247
178428
|
/** Device ID for a Korelock device. */
|
|
@@ -189912,7 +190093,7 @@ type Routes = {
|
|
|
189912
190093
|
/** ID of the device. */
|
|
189913
190094
|
device_id: string;
|
|
189914
190095
|
/** Type of the device. */
|
|
189915
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
190096
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
189916
190097
|
/** IDs of the spaces the device is in. */
|
|
189917
190098
|
space_ids: string[];
|
|
189918
190099
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -190516,6 +190697,13 @@ type Routes = {
|
|
|
190516
190697
|
/** IANA timezone for the Ultraloq device. */
|
|
190517
190698
|
time_zone: string | null;
|
|
190518
190699
|
} | undefined;
|
|
190700
|
+
/** Metadata for a Ring device. */
|
|
190701
|
+
ring_metadata?: {
|
|
190702
|
+
/** Device ID for a Ring device. */
|
|
190703
|
+
device_id: string;
|
|
190704
|
+
/** Device name for a Ring device. */
|
|
190705
|
+
device_name: string;
|
|
190706
|
+
} | undefined;
|
|
190519
190707
|
/** Metadata for a Korelock device. */
|
|
190520
190708
|
korelock_metadata?: {
|
|
190521
190709
|
/** Device ID for a Korelock device. */
|
|
@@ -195791,7 +195979,7 @@ type Routes = {
|
|
|
195791
195979
|
/** ID of the device. */
|
|
195792
195980
|
device_id: string;
|
|
195793
195981
|
/** Type of the device. */
|
|
195794
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
195982
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
195795
195983
|
/** IDs of the spaces the device is in. */
|
|
195796
195984
|
space_ids: string[];
|
|
195797
195985
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -196395,6 +196583,13 @@ type Routes = {
|
|
|
196395
196583
|
/** IANA timezone for the Ultraloq device. */
|
|
196396
196584
|
time_zone: string | null;
|
|
196397
196585
|
} | undefined;
|
|
196586
|
+
/** Metadata for a Ring device. */
|
|
196587
|
+
ring_metadata?: {
|
|
196588
|
+
/** Device ID for a Ring device. */
|
|
196589
|
+
device_id: string;
|
|
196590
|
+
/** Device name for a Ring device. */
|
|
196591
|
+
device_name: string;
|
|
196592
|
+
} | undefined;
|
|
196398
196593
|
/** Metadata for a Korelock device. */
|
|
196399
196594
|
korelock_metadata?: {
|
|
196400
196595
|
/** Device ID for a Korelock device. */
|
|
@@ -199706,7 +199901,7 @@ type Routes = {
|
|
|
199706
199901
|
/** ID of the device. */
|
|
199707
199902
|
device_id: string;
|
|
199708
199903
|
/** Type of the device. */
|
|
199709
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
199904
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
199710
199905
|
/** IDs of the spaces the device is in. */
|
|
199711
199906
|
space_ids: string[];
|
|
199712
199907
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -200310,6 +200505,13 @@ type Routes = {
|
|
|
200310
200505
|
/** IANA timezone for the Ultraloq device. */
|
|
200311
200506
|
time_zone: string | null;
|
|
200312
200507
|
} | undefined;
|
|
200508
|
+
/** Metadata for a Ring device. */
|
|
200509
|
+
ring_metadata?: {
|
|
200510
|
+
/** Device ID for a Ring device. */
|
|
200511
|
+
device_id: string;
|
|
200512
|
+
/** Device name for a Ring device. */
|
|
200513
|
+
device_name: string;
|
|
200514
|
+
} | undefined;
|
|
200313
200515
|
/** Metadata for a Korelock device. */
|
|
200314
200516
|
korelock_metadata?: {
|
|
200315
200517
|
/** Device ID for a Korelock device. */
|
|
@@ -201004,7 +201206,7 @@ type Routes = {
|
|
|
201004
201206
|
/** ID of the device. */
|
|
201005
201207
|
device_id: string;
|
|
201006
201208
|
/** Type of the device. */
|
|
201007
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
201209
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
201008
201210
|
/** IDs of the spaces the device is in. */
|
|
201009
201211
|
space_ids: string[];
|
|
201010
201212
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -201608,6 +201810,13 @@ type Routes = {
|
|
|
201608
201810
|
/** IANA timezone for the Ultraloq device. */
|
|
201609
201811
|
time_zone: string | null;
|
|
201610
201812
|
} | undefined;
|
|
201813
|
+
/** Metadata for a Ring device. */
|
|
201814
|
+
ring_metadata?: {
|
|
201815
|
+
/** Device ID for a Ring device. */
|
|
201816
|
+
device_id: string;
|
|
201817
|
+
/** Device name for a Ring device. */
|
|
201818
|
+
device_name: string;
|
|
201819
|
+
} | undefined;
|
|
201611
201820
|
/** Metadata for a Korelock device. */
|
|
201612
201821
|
korelock_metadata?: {
|
|
201613
201822
|
/** Device ID for a Korelock device. */
|
|
@@ -208348,7 +208557,7 @@ type Routes = {
|
|
|
208348
208557
|
/** ID of the device. */
|
|
208349
208558
|
device_id: string;
|
|
208350
208559
|
/** Type of the device. */
|
|
208351
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
208560
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
208352
208561
|
/** IDs of the spaces the device is in. */
|
|
208353
208562
|
space_ids: string[];
|
|
208354
208563
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -208952,6 +209161,13 @@ type Routes = {
|
|
|
208952
209161
|
/** IANA timezone for the Ultraloq device. */
|
|
208953
209162
|
time_zone: string | null;
|
|
208954
209163
|
} | undefined;
|
|
209164
|
+
/** Metadata for a Ring device. */
|
|
209165
|
+
ring_metadata?: {
|
|
209166
|
+
/** Device ID for a Ring device. */
|
|
209167
|
+
device_id: string;
|
|
209168
|
+
/** Device name for a Ring device. */
|
|
209169
|
+
device_name: string;
|
|
209170
|
+
} | undefined;
|
|
208955
209171
|
/** Metadata for a Korelock device. */
|
|
208956
209172
|
korelock_metadata?: {
|
|
208957
209173
|
/** Device ID for a Korelock device. */
|
|
@@ -209648,7 +209864,7 @@ type Routes = {
|
|
|
209648
209864
|
/** ID of the device. */
|
|
209649
209865
|
device_id: string;
|
|
209650
209866
|
/** Type of the device. */
|
|
209651
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
209867
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
209652
209868
|
/** IDs of the spaces the device is in. */
|
|
209653
209869
|
space_ids: string[];
|
|
209654
209870
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -210252,6 +210468,13 @@ type Routes = {
|
|
|
210252
210468
|
/** IANA timezone for the Ultraloq device. */
|
|
210253
210469
|
time_zone: string | null;
|
|
210254
210470
|
} | undefined;
|
|
210471
|
+
/** Metadata for a Ring device. */
|
|
210472
|
+
ring_metadata?: {
|
|
210473
|
+
/** Device ID for a Ring device. */
|
|
210474
|
+
device_id: string;
|
|
210475
|
+
/** Device name for a Ring device. */
|
|
210476
|
+
device_name: string;
|
|
210477
|
+
} | undefined;
|
|
210255
210478
|
/** Metadata for a Korelock device. */
|
|
210256
210479
|
korelock_metadata?: {
|
|
210257
210480
|
/** Device ID for a Korelock device. */
|
|
@@ -211915,7 +212138,7 @@ type Routes = {
|
|
|
211915
212138
|
/** ID of the device. */
|
|
211916
212139
|
device_id: string;
|
|
211917
212140
|
/** Type of the device. */
|
|
211918
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
212141
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
211919
212142
|
/** IDs of the spaces the device is in. */
|
|
211920
212143
|
space_ids: string[];
|
|
211921
212144
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -212519,6 +212742,13 @@ type Routes = {
|
|
|
212519
212742
|
/** IANA timezone for the Ultraloq device. */
|
|
212520
212743
|
time_zone: string | null;
|
|
212521
212744
|
} | undefined;
|
|
212745
|
+
/** Metadata for a Ring device. */
|
|
212746
|
+
ring_metadata?: {
|
|
212747
|
+
/** Device ID for a Ring device. */
|
|
212748
|
+
device_id: string;
|
|
212749
|
+
/** Device name for a Ring device. */
|
|
212750
|
+
device_name: string;
|
|
212751
|
+
} | undefined;
|
|
212522
212752
|
/** Metadata for a Korelock device. */
|
|
212523
212753
|
korelock_metadata?: {
|
|
212524
212754
|
/** Device ID for a Korelock device. */
|
|
@@ -215312,7 +215542,7 @@ type Routes = {
|
|
|
215312
215542
|
/** ID of the device. */
|
|
215313
215543
|
device_id: string;
|
|
215314
215544
|
/** Type of the device. */
|
|
215315
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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');
|
|
215545
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
215316
215546
|
/** Unique identifier for the account associated with the device. */
|
|
215317
215547
|
connected_account_id: string;
|
|
215318
215548
|
/** Location information for the device. */
|