@seamapi/types 1.732.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 +81 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +279 -40
- package/dist/index.cjs +81 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +62 -10
- package/lib/seam/connect/models/customer/customer-portal.d.ts +4 -0
- package/lib/seam/connect/models/customer/customer-portal.js +8 -0
- package/lib/seam/connect/models/customer/customer-portal.js.map +1 -1
- 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 +22 -0
- package/lib/seam/connect/openapi.js +71 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +145 -24
- package/package.json +1 -1
- package/src/lib/seam/connect/models/customer/customer-portal.ts +8 -0
- 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 +72 -0
- package/src/lib/seam/connect/route-types.ts +179 -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: {
|
|
@@ -97103,6 +97214,12 @@ declare const _default: {
|
|
|
97103
97214
|
};
|
|
97104
97215
|
description: string;
|
|
97105
97216
|
properties: {
|
|
97217
|
+
_dev: {
|
|
97218
|
+
default: boolean;
|
|
97219
|
+
description: string;
|
|
97220
|
+
type: string;
|
|
97221
|
+
'x-undocumented': string;
|
|
97222
|
+
};
|
|
97106
97223
|
customer_resources_filters: {
|
|
97107
97224
|
description: string;
|
|
97108
97225
|
items: {
|
|
@@ -98316,6 +98433,7 @@ declare const _default: {
|
|
|
98316
98433
|
required: string[];
|
|
98317
98434
|
type: string;
|
|
98318
98435
|
};
|
|
98436
|
+
_dev?: never;
|
|
98319
98437
|
customer_resources_filters?: never;
|
|
98320
98438
|
customization_profile_id?: never;
|
|
98321
98439
|
deep_link?: never;
|
|
@@ -138180,7 +138298,7 @@ type Routes = {
|
|
|
138180
138298
|
/** ID of the device. */
|
|
138181
138299
|
device_id: string;
|
|
138182
138300
|
/** Type of the device. */
|
|
138183
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
138184
138302
|
/** IDs of the spaces the device is in. */
|
|
138185
138303
|
space_ids: string[];
|
|
138186
138304
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -138784,6 +138902,13 @@ type Routes = {
|
|
|
138784
138902
|
/** IANA timezone for the Ultraloq device. */
|
|
138785
138903
|
time_zone: string | null;
|
|
138786
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;
|
|
138787
138912
|
/** Metadata for a Korelock device. */
|
|
138788
138913
|
korelock_metadata?: {
|
|
138789
138914
|
/** Device ID for a Korelock device. */
|
|
@@ -142254,7 +142379,7 @@ type Routes = {
|
|
|
142254
142379
|
/** ID of the device. */
|
|
142255
142380
|
device_id: string;
|
|
142256
142381
|
/** Type of the device. */
|
|
142257
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
142258
142383
|
/** IDs of the spaces the device is in. */
|
|
142259
142384
|
space_ids: string[];
|
|
142260
142385
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -142858,6 +142983,13 @@ type Routes = {
|
|
|
142858
142983
|
/** IANA timezone for the Ultraloq device. */
|
|
142859
142984
|
time_zone: string | null;
|
|
142860
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;
|
|
142861
142993
|
/** Metadata for a Korelock device. */
|
|
142862
142994
|
korelock_metadata?: {
|
|
142863
142995
|
/** Device ID for a Korelock device. */
|
|
@@ -155847,6 +155979,8 @@ type Routes = {
|
|
|
155847
155979
|
resource_type: 'reservation' | 'space';
|
|
155848
155980
|
resource_key: string;
|
|
155849
155981
|
} | undefined;
|
|
155982
|
+
/** Whether the portal is in developer mode. Only available for Seam employees. */
|
|
155983
|
+
_dev?: boolean;
|
|
155850
155984
|
} & {
|
|
155851
155985
|
customer_data?: {
|
|
155852
155986
|
/** Your unique identifier for the customer. */
|
|
@@ -156566,7 +156700,7 @@ type Routes = {
|
|
|
156566
156700
|
/** ID of the device. */
|
|
156567
156701
|
device_id: string;
|
|
156568
156702
|
/** Type of the device. */
|
|
156569
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
156570
156704
|
/** IDs of the spaces the device is in. */
|
|
156571
156705
|
space_ids: string[];
|
|
156572
156706
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -157170,6 +157304,13 @@ type Routes = {
|
|
|
157170
157304
|
/** IANA timezone for the Ultraloq device. */
|
|
157171
157305
|
time_zone: string | null;
|
|
157172
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;
|
|
157173
157314
|
/** Metadata for a Korelock device. */
|
|
157174
157315
|
korelock_metadata?: {
|
|
157175
157316
|
/** Device ID for a Korelock device. */
|
|
@@ -157878,9 +158019,9 @@ type Routes = {
|
|
|
157878
158019
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
157879
158020
|
connect_webview_id?: string | undefined;
|
|
157880
158021
|
/** Device type for which you want to list devices. */
|
|
157881
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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;
|
|
157882
158023
|
/** Array of device types for which you want to list devices. */
|
|
157883
|
-
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;
|
|
157884
158025
|
/** Manufacturer for which you want to list devices. */
|
|
157885
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;
|
|
157886
158027
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -157915,7 +158056,7 @@ type Routes = {
|
|
|
157915
158056
|
/** ID of the device. */
|
|
157916
158057
|
device_id: string;
|
|
157917
158058
|
/** Type of the device. */
|
|
157918
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
157919
158060
|
/** IDs of the spaces the device is in. */
|
|
157920
158061
|
space_ids: string[];
|
|
157921
158062
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -158519,6 +158660,13 @@ type Routes = {
|
|
|
158519
158660
|
/** IANA timezone for the Ultraloq device. */
|
|
158520
158661
|
time_zone: string | null;
|
|
158521
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;
|
|
158522
158670
|
/** Metadata for a Korelock device. */
|
|
158523
158671
|
korelock_metadata?: {
|
|
158524
158672
|
/** Device ID for a Korelock device. */
|
|
@@ -159377,7 +159525,7 @@ type Routes = {
|
|
|
159377
159525
|
/** ID of the device. */
|
|
159378
159526
|
device_id: string;
|
|
159379
159527
|
/** Type of the device. */
|
|
159380
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
159381
159529
|
/** Unique identifier for the account associated with the device. */
|
|
159382
159530
|
connected_account_id: string;
|
|
159383
159531
|
/** Location information for the device. */
|
|
@@ -159813,9 +159961,9 @@ type Routes = {
|
|
|
159813
159961
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
159814
159962
|
connect_webview_id?: string | undefined;
|
|
159815
159963
|
/** Device type for which you want to list devices. */
|
|
159816
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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;
|
|
159817
159965
|
/** Array of device types for which you want to list devices. */
|
|
159818
|
-
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;
|
|
159819
159967
|
/** Manufacturer for which you want to list devices. */
|
|
159820
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;
|
|
159821
159969
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -159850,7 +159998,7 @@ type Routes = {
|
|
|
159850
159998
|
/** ID of the device. */
|
|
159851
159999
|
device_id: string;
|
|
159852
160000
|
/** Type of the device. */
|
|
159853
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
159854
160002
|
/** Unique identifier for the account associated with the device. */
|
|
159855
160003
|
connected_account_id: string;
|
|
159856
160004
|
/** Location information for the device. */
|
|
@@ -165930,7 +166078,7 @@ type Routes = {
|
|
|
165930
166078
|
/** ID of the device. */
|
|
165931
166079
|
device_id: string;
|
|
165932
166080
|
/** Type of the device. */
|
|
165933
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
165934
166082
|
/** IDs of the spaces the device is in. */
|
|
165935
166083
|
space_ids: string[];
|
|
165936
166084
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -166534,6 +166682,13 @@ type Routes = {
|
|
|
166534
166682
|
/** IANA timezone for the Ultraloq device. */
|
|
166535
166683
|
time_zone: string | null;
|
|
166536
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;
|
|
166537
166692
|
/** Metadata for a Korelock device. */
|
|
166538
166693
|
korelock_metadata?: {
|
|
166539
166694
|
/** Device ID for a Korelock device. */
|
|
@@ -167229,7 +167384,7 @@ type Routes = {
|
|
|
167229
167384
|
/** ID of the device. */
|
|
167230
167385
|
device_id: string;
|
|
167231
167386
|
/** Type of the device. */
|
|
167232
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
167233
167388
|
/** IDs of the spaces the device is in. */
|
|
167234
167389
|
space_ids: string[];
|
|
167235
167390
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -167833,6 +167988,13 @@ type Routes = {
|
|
|
167833
167988
|
/** IANA timezone for the Ultraloq device. */
|
|
167834
167989
|
time_zone: string | null;
|
|
167835
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;
|
|
167836
167998
|
/** Metadata for a Korelock device. */
|
|
167837
167999
|
korelock_metadata?: {
|
|
167838
168000
|
/** Device ID for a Korelock device. */
|
|
@@ -168578,7 +168740,7 @@ type Routes = {
|
|
|
168578
168740
|
/** ID of the device. */
|
|
168579
168741
|
device_id: string;
|
|
168580
168742
|
/** Type of the device. */
|
|
168581
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
168582
168744
|
/** IDs of the spaces the device is in. */
|
|
168583
168745
|
space_ids: string[];
|
|
168584
168746
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -169182,6 +169344,13 @@ type Routes = {
|
|
|
169182
169344
|
/** IANA timezone for the Ultraloq device. */
|
|
169183
169345
|
time_zone: string | null;
|
|
169184
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;
|
|
169185
169354
|
/** Metadata for a Korelock device. */
|
|
169186
169355
|
korelock_metadata?: {
|
|
169187
169356
|
/** Device ID for a Korelock device. */
|
|
@@ -169876,7 +170045,7 @@ type Routes = {
|
|
|
169876
170045
|
/** ID of the device. */
|
|
169877
170046
|
device_id: string;
|
|
169878
170047
|
/** Type of the device. */
|
|
169879
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
169880
170049
|
/** IDs of the spaces the device is in. */
|
|
169881
170050
|
space_ids: string[];
|
|
169882
170051
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -170480,6 +170649,13 @@ type Routes = {
|
|
|
170480
170649
|
/** IANA timezone for the Ultraloq device. */
|
|
170481
170650
|
time_zone: string | null;
|
|
170482
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;
|
|
170483
170659
|
/** Metadata for a Korelock device. */
|
|
170484
170660
|
korelock_metadata?: {
|
|
170485
170661
|
/** Device ID for a Korelock device. */
|
|
@@ -176331,7 +176507,7 @@ type Routes = {
|
|
|
176331
176507
|
/** ID of the device. */
|
|
176332
176508
|
device_id: string;
|
|
176333
176509
|
/** Type of the device. */
|
|
176334
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
176335
176511
|
/** IDs of the spaces the device is in. */
|
|
176336
176512
|
space_ids: string[];
|
|
176337
176513
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -176935,6 +177111,13 @@ type Routes = {
|
|
|
176935
177111
|
/** IANA timezone for the Ultraloq device. */
|
|
176936
177112
|
time_zone: string | null;
|
|
176937
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;
|
|
176938
177121
|
/** Metadata for a Korelock device. */
|
|
176939
177122
|
korelock_metadata?: {
|
|
176940
177123
|
/** Device ID for a Korelock device. */
|
|
@@ -177629,7 +177812,7 @@ type Routes = {
|
|
|
177629
177812
|
/** ID of the device. */
|
|
177630
177813
|
device_id: string;
|
|
177631
177814
|
/** Type of the device. */
|
|
177632
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
177633
177816
|
/** IDs of the spaces the device is in. */
|
|
177634
177817
|
space_ids: string[];
|
|
177635
177818
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -178233,6 +178416,13 @@ type Routes = {
|
|
|
178233
178416
|
/** IANA timezone for the Ultraloq device. */
|
|
178234
178417
|
time_zone: string | null;
|
|
178235
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;
|
|
178236
178426
|
/** Metadata for a Korelock device. */
|
|
178237
178427
|
korelock_metadata?: {
|
|
178238
178428
|
/** Device ID for a Korelock device. */
|
|
@@ -189903,7 +190093,7 @@ type Routes = {
|
|
|
189903
190093
|
/** ID of the device. */
|
|
189904
190094
|
device_id: string;
|
|
189905
190095
|
/** Type of the device. */
|
|
189906
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
189907
190097
|
/** IDs of the spaces the device is in. */
|
|
189908
190098
|
space_ids: string[];
|
|
189909
190099
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -190507,6 +190697,13 @@ type Routes = {
|
|
|
190507
190697
|
/** IANA timezone for the Ultraloq device. */
|
|
190508
190698
|
time_zone: string | null;
|
|
190509
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;
|
|
190510
190707
|
/** Metadata for a Korelock device. */
|
|
190511
190708
|
korelock_metadata?: {
|
|
190512
190709
|
/** Device ID for a Korelock device. */
|
|
@@ -195782,7 +195979,7 @@ type Routes = {
|
|
|
195782
195979
|
/** ID of the device. */
|
|
195783
195980
|
device_id: string;
|
|
195784
195981
|
/** Type of the device. */
|
|
195785
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
195786
195983
|
/** IDs of the spaces the device is in. */
|
|
195787
195984
|
space_ids: string[];
|
|
195788
195985
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -196386,6 +196583,13 @@ type Routes = {
|
|
|
196386
196583
|
/** IANA timezone for the Ultraloq device. */
|
|
196387
196584
|
time_zone: string | null;
|
|
196388
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;
|
|
196389
196593
|
/** Metadata for a Korelock device. */
|
|
196390
196594
|
korelock_metadata?: {
|
|
196391
196595
|
/** Device ID for a Korelock device. */
|
|
@@ -199697,7 +199901,7 @@ type Routes = {
|
|
|
199697
199901
|
/** ID of the device. */
|
|
199698
199902
|
device_id: string;
|
|
199699
199903
|
/** Type of the device. */
|
|
199700
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
199701
199905
|
/** IDs of the spaces the device is in. */
|
|
199702
199906
|
space_ids: string[];
|
|
199703
199907
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -200301,6 +200505,13 @@ type Routes = {
|
|
|
200301
200505
|
/** IANA timezone for the Ultraloq device. */
|
|
200302
200506
|
time_zone: string | null;
|
|
200303
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;
|
|
200304
200515
|
/** Metadata for a Korelock device. */
|
|
200305
200516
|
korelock_metadata?: {
|
|
200306
200517
|
/** Device ID for a Korelock device. */
|
|
@@ -200995,7 +201206,7 @@ type Routes = {
|
|
|
200995
201206
|
/** ID of the device. */
|
|
200996
201207
|
device_id: string;
|
|
200997
201208
|
/** Type of the device. */
|
|
200998
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
200999
201210
|
/** IDs of the spaces the device is in. */
|
|
201000
201211
|
space_ids: string[];
|
|
201001
201212
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -201599,6 +201810,13 @@ type Routes = {
|
|
|
201599
201810
|
/** IANA timezone for the Ultraloq device. */
|
|
201600
201811
|
time_zone: string | null;
|
|
201601
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;
|
|
201602
201820
|
/** Metadata for a Korelock device. */
|
|
201603
201821
|
korelock_metadata?: {
|
|
201604
201822
|
/** Device ID for a Korelock device. */
|
|
@@ -208339,7 +208557,7 @@ type Routes = {
|
|
|
208339
208557
|
/** ID of the device. */
|
|
208340
208558
|
device_id: string;
|
|
208341
208559
|
/** Type of the device. */
|
|
208342
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
208343
208561
|
/** IDs of the spaces the device is in. */
|
|
208344
208562
|
space_ids: string[];
|
|
208345
208563
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -208943,6 +209161,13 @@ type Routes = {
|
|
|
208943
209161
|
/** IANA timezone for the Ultraloq device. */
|
|
208944
209162
|
time_zone: string | null;
|
|
208945
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;
|
|
208946
209171
|
/** Metadata for a Korelock device. */
|
|
208947
209172
|
korelock_metadata?: {
|
|
208948
209173
|
/** Device ID for a Korelock device. */
|
|
@@ -209639,7 +209864,7 @@ type Routes = {
|
|
|
209639
209864
|
/** ID of the device. */
|
|
209640
209865
|
device_id: string;
|
|
209641
209866
|
/** Type of the device. */
|
|
209642
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
209643
209868
|
/** IDs of the spaces the device is in. */
|
|
209644
209869
|
space_ids: string[];
|
|
209645
209870
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -210243,6 +210468,13 @@ type Routes = {
|
|
|
210243
210468
|
/** IANA timezone for the Ultraloq device. */
|
|
210244
210469
|
time_zone: string | null;
|
|
210245
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;
|
|
210246
210478
|
/** Metadata for a Korelock device. */
|
|
210247
210479
|
korelock_metadata?: {
|
|
210248
210480
|
/** Device ID for a Korelock device. */
|
|
@@ -211906,7 +212138,7 @@ type Routes = {
|
|
|
211906
212138
|
/** ID of the device. */
|
|
211907
212139
|
device_id: string;
|
|
211908
212140
|
/** Type of the device. */
|
|
211909
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
211910
212142
|
/** IDs of the spaces the device is in. */
|
|
211911
212143
|
space_ids: string[];
|
|
211912
212144
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -212510,6 +212742,13 @@ type Routes = {
|
|
|
212510
212742
|
/** IANA timezone for the Ultraloq device. */
|
|
212511
212743
|
time_zone: string | null;
|
|
212512
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;
|
|
212513
212752
|
/** Metadata for a Korelock device. */
|
|
212514
212753
|
korelock_metadata?: {
|
|
212515
212754
|
/** Device ID for a Korelock device. */
|
|
@@ -215303,7 +215542,7 @@ type Routes = {
|
|
|
215303
215542
|
/** ID of the device. */
|
|
215304
215543
|
device_id: string;
|
|
215305
215544
|
/** Type of the device. */
|
|
215306
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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';
|
|
215307
215546
|
/** Unique identifier for the account associated with the device. */
|
|
215308
215547
|
connected_account_id: string;
|
|
215309
215548
|
/** Location information for the device. */
|