@seamapi/types 1.733.0 → 1.735.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 +108 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +312 -59
- package/dist/index.cjs +108 -21
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +62 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +18 -0
- package/lib/seam/connect/models/devices/device-metadata.js +6 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
- package/lib/seam/connect/models/devices/device-type.js +9 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +29 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -3
- package/lib/seam/connect/openapi.d.ts +50 -18
- package/lib/seam/connect/openapi.js +98 -20
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +150 -25
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +7 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +17 -0
- package/src/lib/seam/connect/openapi.ts +100 -20
- package/src/lib/seam/connect/route-types.ts +190 -4
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: {
|
|
@@ -84477,16 +84588,6 @@ declare const _default: {
|
|
|
84477
84588
|
delete: {
|
|
84478
84589
|
description: string;
|
|
84479
84590
|
operationId: string;
|
|
84480
|
-
parameters: {
|
|
84481
|
-
in: string;
|
|
84482
|
-
name: string;
|
|
84483
|
-
required: boolean;
|
|
84484
|
-
schema: {
|
|
84485
|
-
description: string;
|
|
84486
|
-
format: string;
|
|
84487
|
-
type: string;
|
|
84488
|
-
};
|
|
84489
|
-
}[];
|
|
84490
84591
|
responses: {
|
|
84491
84592
|
200: {
|
|
84492
84593
|
content: {
|
|
@@ -84547,15 +84648,42 @@ declare const _default: {
|
|
|
84547
84648
|
content: {
|
|
84548
84649
|
'application/json': {
|
|
84549
84650
|
schema: {
|
|
84550
|
-
|
|
84551
|
-
|
|
84552
|
-
|
|
84553
|
-
|
|
84554
|
-
|
|
84651
|
+
oneOf: ({
|
|
84652
|
+
properties: {
|
|
84653
|
+
access_method_id: {
|
|
84654
|
+
description: string;
|
|
84655
|
+
format: string;
|
|
84656
|
+
type: string;
|
|
84657
|
+
};
|
|
84658
|
+
access_grant_id?: never;
|
|
84659
|
+
reservation_key?: never;
|
|
84555
84660
|
};
|
|
84556
|
-
|
|
84557
|
-
|
|
84558
|
-
|
|
84661
|
+
required: string[];
|
|
84662
|
+
type: string;
|
|
84663
|
+
} | {
|
|
84664
|
+
properties: {
|
|
84665
|
+
access_grant_id: {
|
|
84666
|
+
description: string;
|
|
84667
|
+
format: string;
|
|
84668
|
+
type: string;
|
|
84669
|
+
};
|
|
84670
|
+
access_method_id?: never;
|
|
84671
|
+
reservation_key?: never;
|
|
84672
|
+
};
|
|
84673
|
+
required: string[];
|
|
84674
|
+
type: string;
|
|
84675
|
+
} | {
|
|
84676
|
+
properties: {
|
|
84677
|
+
reservation_key: {
|
|
84678
|
+
description: string;
|
|
84679
|
+
type: string;
|
|
84680
|
+
};
|
|
84681
|
+
access_method_id?: never;
|
|
84682
|
+
access_grant_id?: never;
|
|
84683
|
+
};
|
|
84684
|
+
required: string[];
|
|
84685
|
+
type: string;
|
|
84686
|
+
})[];
|
|
84559
84687
|
};
|
|
84560
84688
|
};
|
|
84561
84689
|
};
|
|
@@ -138187,7 +138315,7 @@ type Routes = {
|
|
|
138187
138315
|
/** ID of the device. */
|
|
138188
138316
|
device_id: string;
|
|
138189
138317
|
/** Type of the device. */
|
|
138190
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
138318
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
138191
138319
|
/** IDs of the spaces the device is in. */
|
|
138192
138320
|
space_ids: string[];
|
|
138193
138321
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -138791,6 +138919,13 @@ type Routes = {
|
|
|
138791
138919
|
/** IANA timezone for the Ultraloq device. */
|
|
138792
138920
|
time_zone: string | null;
|
|
138793
138921
|
} | undefined;
|
|
138922
|
+
/** Metadata for a Ring device. */
|
|
138923
|
+
ring_metadata?: {
|
|
138924
|
+
/** Device ID for a Ring device. */
|
|
138925
|
+
device_id: string;
|
|
138926
|
+
/** Device name for a Ring device. */
|
|
138927
|
+
device_name: string;
|
|
138928
|
+
} | undefined;
|
|
138794
138929
|
/** Metadata for a Korelock device. */
|
|
138795
138930
|
korelock_metadata?: {
|
|
138796
138931
|
/** Device ID for a Korelock device. */
|
|
@@ -140822,8 +140957,14 @@ type Routes = {
|
|
|
140822
140957
|
queryParams: {};
|
|
140823
140958
|
jsonBody: {};
|
|
140824
140959
|
commonParams: {
|
|
140825
|
-
/** ID of access method to
|
|
140960
|
+
/** ID of access method to delete. */
|
|
140826
140961
|
access_method_id: string;
|
|
140962
|
+
} | {
|
|
140963
|
+
/** ID of access grant whose access methods should be deleted. */
|
|
140964
|
+
access_grant_id: string;
|
|
140965
|
+
} | {
|
|
140966
|
+
/** Reservation key of the access grant whose access methods should be deleted. */
|
|
140967
|
+
reservation_key: string;
|
|
140827
140968
|
};
|
|
140828
140969
|
formData: {};
|
|
140829
140970
|
jsonResponse: {};
|
|
@@ -142261,7 +142402,7 @@ type Routes = {
|
|
|
142261
142402
|
/** ID of the device. */
|
|
142262
142403
|
device_id: string;
|
|
142263
142404
|
/** Type of the device. */
|
|
142264
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
142405
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
142265
142406
|
/** IDs of the spaces the device is in. */
|
|
142266
142407
|
space_ids: string[];
|
|
142267
142408
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -142865,6 +143006,13 @@ type Routes = {
|
|
|
142865
143006
|
/** IANA timezone for the Ultraloq device. */
|
|
142866
143007
|
time_zone: string | null;
|
|
142867
143008
|
} | undefined;
|
|
143009
|
+
/** Metadata for a Ring device. */
|
|
143010
|
+
ring_metadata?: {
|
|
143011
|
+
/** Device ID for a Ring device. */
|
|
143012
|
+
device_id: string;
|
|
143013
|
+
/** Device name for a Ring device. */
|
|
143014
|
+
device_name: string;
|
|
143015
|
+
} | undefined;
|
|
142868
143016
|
/** Metadata for a Korelock device. */
|
|
142869
143017
|
korelock_metadata?: {
|
|
142870
143018
|
/** Device ID for a Korelock device. */
|
|
@@ -156575,7 +156723,7 @@ type Routes = {
|
|
|
156575
156723
|
/** ID of the device. */
|
|
156576
156724
|
device_id: string;
|
|
156577
156725
|
/** Type of the device. */
|
|
156578
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
156726
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
156579
156727
|
/** IDs of the spaces the device is in. */
|
|
156580
156728
|
space_ids: string[];
|
|
156581
156729
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -157179,6 +157327,13 @@ type Routes = {
|
|
|
157179
157327
|
/** IANA timezone for the Ultraloq device. */
|
|
157180
157328
|
time_zone: string | null;
|
|
157181
157329
|
} | undefined;
|
|
157330
|
+
/** Metadata for a Ring device. */
|
|
157331
|
+
ring_metadata?: {
|
|
157332
|
+
/** Device ID for a Ring device. */
|
|
157333
|
+
device_id: string;
|
|
157334
|
+
/** Device name for a Ring device. */
|
|
157335
|
+
device_name: string;
|
|
157336
|
+
} | undefined;
|
|
157182
157337
|
/** Metadata for a Korelock device. */
|
|
157183
157338
|
korelock_metadata?: {
|
|
157184
157339
|
/** Device ID for a Korelock device. */
|
|
@@ -157887,9 +158042,9 @@ type Routes = {
|
|
|
157887
158042
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
157888
158043
|
connect_webview_id?: string | undefined;
|
|
157889
158044
|
/** Device type for which you want to list devices. */
|
|
157890
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
158045
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
|
|
157891
158046
|
/** Array of device types for which you want to list devices. */
|
|
157892
|
-
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
158047
|
+
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
157893
158048
|
/** Manufacturer for which you want to list devices. */
|
|
157894
158049
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
157895
158050
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -157924,7 +158079,7 @@ type Routes = {
|
|
|
157924
158079
|
/** ID of the device. */
|
|
157925
158080
|
device_id: string;
|
|
157926
158081
|
/** Type of the device. */
|
|
157927
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
158082
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
157928
158083
|
/** IDs of the spaces the device is in. */
|
|
157929
158084
|
space_ids: string[];
|
|
157930
158085
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -158528,6 +158683,13 @@ type Routes = {
|
|
|
158528
158683
|
/** IANA timezone for the Ultraloq device. */
|
|
158529
158684
|
time_zone: string | null;
|
|
158530
158685
|
} | undefined;
|
|
158686
|
+
/** Metadata for a Ring device. */
|
|
158687
|
+
ring_metadata?: {
|
|
158688
|
+
/** Device ID for a Ring device. */
|
|
158689
|
+
device_id: string;
|
|
158690
|
+
/** Device name for a Ring device. */
|
|
158691
|
+
device_name: string;
|
|
158692
|
+
} | undefined;
|
|
158531
158693
|
/** Metadata for a Korelock device. */
|
|
158532
158694
|
korelock_metadata?: {
|
|
158533
158695
|
/** Device ID for a Korelock device. */
|
|
@@ -159386,7 +159548,7 @@ type Routes = {
|
|
|
159386
159548
|
/** ID of the device. */
|
|
159387
159549
|
device_id: string;
|
|
159388
159550
|
/** Type of the device. */
|
|
159389
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
159551
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
159390
159552
|
/** Unique identifier for the account associated with the device. */
|
|
159391
159553
|
connected_account_id: string;
|
|
159392
159554
|
/** Location information for the device. */
|
|
@@ -159822,9 +159984,9 @@ type Routes = {
|
|
|
159822
159984
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
159823
159985
|
connect_webview_id?: string | undefined;
|
|
159824
159986
|
/** Device type for which you want to list devices. */
|
|
159825
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
159987
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera') | undefined;
|
|
159826
159988
|
/** Array of device types for which you want to list devices. */
|
|
159827
|
-
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
159989
|
+
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera')[] | undefined;
|
|
159828
159990
|
/** Manufacturer for which you want to list devices. */
|
|
159829
159991
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
159830
159992
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -159859,7 +160021,7 @@ type Routes = {
|
|
|
159859
160021
|
/** ID of the device. */
|
|
159860
160022
|
device_id: string;
|
|
159861
160023
|
/** Type of the device. */
|
|
159862
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
160024
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
159863
160025
|
/** Unique identifier for the account associated with the device. */
|
|
159864
160026
|
connected_account_id: string;
|
|
159865
160027
|
/** Location information for the device. */
|
|
@@ -165939,7 +166101,7 @@ type Routes = {
|
|
|
165939
166101
|
/** ID of the device. */
|
|
165940
166102
|
device_id: string;
|
|
165941
166103
|
/** Type of the device. */
|
|
165942
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
166104
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
165943
166105
|
/** IDs of the spaces the device is in. */
|
|
165944
166106
|
space_ids: string[];
|
|
165945
166107
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -166543,6 +166705,13 @@ type Routes = {
|
|
|
166543
166705
|
/** IANA timezone for the Ultraloq device. */
|
|
166544
166706
|
time_zone: string | null;
|
|
166545
166707
|
} | undefined;
|
|
166708
|
+
/** Metadata for a Ring device. */
|
|
166709
|
+
ring_metadata?: {
|
|
166710
|
+
/** Device ID for a Ring device. */
|
|
166711
|
+
device_id: string;
|
|
166712
|
+
/** Device name for a Ring device. */
|
|
166713
|
+
device_name: string;
|
|
166714
|
+
} | undefined;
|
|
166546
166715
|
/** Metadata for a Korelock device. */
|
|
166547
166716
|
korelock_metadata?: {
|
|
166548
166717
|
/** Device ID for a Korelock device. */
|
|
@@ -167238,7 +167407,7 @@ type Routes = {
|
|
|
167238
167407
|
/** ID of the device. */
|
|
167239
167408
|
device_id: string;
|
|
167240
167409
|
/** Type of the device. */
|
|
167241
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
167410
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
167242
167411
|
/** IDs of the spaces the device is in. */
|
|
167243
167412
|
space_ids: string[];
|
|
167244
167413
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -167842,6 +168011,13 @@ type Routes = {
|
|
|
167842
168011
|
/** IANA timezone for the Ultraloq device. */
|
|
167843
168012
|
time_zone: string | null;
|
|
167844
168013
|
} | undefined;
|
|
168014
|
+
/** Metadata for a Ring device. */
|
|
168015
|
+
ring_metadata?: {
|
|
168016
|
+
/** Device ID for a Ring device. */
|
|
168017
|
+
device_id: string;
|
|
168018
|
+
/** Device name for a Ring device. */
|
|
168019
|
+
device_name: string;
|
|
168020
|
+
} | undefined;
|
|
167845
168021
|
/** Metadata for a Korelock device. */
|
|
167846
168022
|
korelock_metadata?: {
|
|
167847
168023
|
/** Device ID for a Korelock device. */
|
|
@@ -168587,7 +168763,7 @@ type Routes = {
|
|
|
168587
168763
|
/** ID of the device. */
|
|
168588
168764
|
device_id: string;
|
|
168589
168765
|
/** Type of the device. */
|
|
168590
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
168766
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
168591
168767
|
/** IDs of the spaces the device is in. */
|
|
168592
168768
|
space_ids: string[];
|
|
168593
168769
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -169191,6 +169367,13 @@ type Routes = {
|
|
|
169191
169367
|
/** IANA timezone for the Ultraloq device. */
|
|
169192
169368
|
time_zone: string | null;
|
|
169193
169369
|
} | undefined;
|
|
169370
|
+
/** Metadata for a Ring device. */
|
|
169371
|
+
ring_metadata?: {
|
|
169372
|
+
/** Device ID for a Ring device. */
|
|
169373
|
+
device_id: string;
|
|
169374
|
+
/** Device name for a Ring device. */
|
|
169375
|
+
device_name: string;
|
|
169376
|
+
} | undefined;
|
|
169194
169377
|
/** Metadata for a Korelock device. */
|
|
169195
169378
|
korelock_metadata?: {
|
|
169196
169379
|
/** Device ID for a Korelock device. */
|
|
@@ -169885,7 +170068,7 @@ type Routes = {
|
|
|
169885
170068
|
/** ID of the device. */
|
|
169886
170069
|
device_id: string;
|
|
169887
170070
|
/** Type of the device. */
|
|
169888
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
170071
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
169889
170072
|
/** IDs of the spaces the device is in. */
|
|
169890
170073
|
space_ids: string[];
|
|
169891
170074
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -170489,6 +170672,13 @@ type Routes = {
|
|
|
170489
170672
|
/** IANA timezone for the Ultraloq device. */
|
|
170490
170673
|
time_zone: string | null;
|
|
170491
170674
|
} | undefined;
|
|
170675
|
+
/** Metadata for a Ring device. */
|
|
170676
|
+
ring_metadata?: {
|
|
170677
|
+
/** Device ID for a Ring device. */
|
|
170678
|
+
device_id: string;
|
|
170679
|
+
/** Device name for a Ring device. */
|
|
170680
|
+
device_name: string;
|
|
170681
|
+
} | undefined;
|
|
170492
170682
|
/** Metadata for a Korelock device. */
|
|
170493
170683
|
korelock_metadata?: {
|
|
170494
170684
|
/** Device ID for a Korelock device. */
|
|
@@ -176340,7 +176530,7 @@ type Routes = {
|
|
|
176340
176530
|
/** ID of the device. */
|
|
176341
176531
|
device_id: string;
|
|
176342
176532
|
/** Type of the device. */
|
|
176343
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
176533
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
176344
176534
|
/** IDs of the spaces the device is in. */
|
|
176345
176535
|
space_ids: string[];
|
|
176346
176536
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -176944,6 +177134,13 @@ type Routes = {
|
|
|
176944
177134
|
/** IANA timezone for the Ultraloq device. */
|
|
176945
177135
|
time_zone: string | null;
|
|
176946
177136
|
} | undefined;
|
|
177137
|
+
/** Metadata for a Ring device. */
|
|
177138
|
+
ring_metadata?: {
|
|
177139
|
+
/** Device ID for a Ring device. */
|
|
177140
|
+
device_id: string;
|
|
177141
|
+
/** Device name for a Ring device. */
|
|
177142
|
+
device_name: string;
|
|
177143
|
+
} | undefined;
|
|
176947
177144
|
/** Metadata for a Korelock device. */
|
|
176948
177145
|
korelock_metadata?: {
|
|
176949
177146
|
/** Device ID for a Korelock device. */
|
|
@@ -177638,7 +177835,7 @@ type Routes = {
|
|
|
177638
177835
|
/** ID of the device. */
|
|
177639
177836
|
device_id: string;
|
|
177640
177837
|
/** Type of the device. */
|
|
177641
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
177838
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
177642
177839
|
/** IDs of the spaces the device is in. */
|
|
177643
177840
|
space_ids: string[];
|
|
177644
177841
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -178242,6 +178439,13 @@ type Routes = {
|
|
|
178242
178439
|
/** IANA timezone for the Ultraloq device. */
|
|
178243
178440
|
time_zone: string | null;
|
|
178244
178441
|
} | undefined;
|
|
178442
|
+
/** Metadata for a Ring device. */
|
|
178443
|
+
ring_metadata?: {
|
|
178444
|
+
/** Device ID for a Ring device. */
|
|
178445
|
+
device_id: string;
|
|
178446
|
+
/** Device name for a Ring device. */
|
|
178447
|
+
device_name: string;
|
|
178448
|
+
} | undefined;
|
|
178245
178449
|
/** Metadata for a Korelock device. */
|
|
178246
178450
|
korelock_metadata?: {
|
|
178247
178451
|
/** Device ID for a Korelock device. */
|
|
@@ -189912,7 +190116,7 @@ type Routes = {
|
|
|
189912
190116
|
/** ID of the device. */
|
|
189913
190117
|
device_id: string;
|
|
189914
190118
|
/** Type of the device. */
|
|
189915
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
190119
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
189916
190120
|
/** IDs of the spaces the device is in. */
|
|
189917
190121
|
space_ids: string[];
|
|
189918
190122
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -190516,6 +190720,13 @@ type Routes = {
|
|
|
190516
190720
|
/** IANA timezone for the Ultraloq device. */
|
|
190517
190721
|
time_zone: string | null;
|
|
190518
190722
|
} | undefined;
|
|
190723
|
+
/** Metadata for a Ring device. */
|
|
190724
|
+
ring_metadata?: {
|
|
190725
|
+
/** Device ID for a Ring device. */
|
|
190726
|
+
device_id: string;
|
|
190727
|
+
/** Device name for a Ring device. */
|
|
190728
|
+
device_name: string;
|
|
190729
|
+
} | undefined;
|
|
190519
190730
|
/** Metadata for a Korelock device. */
|
|
190520
190731
|
korelock_metadata?: {
|
|
190521
190732
|
/** Device ID for a Korelock device. */
|
|
@@ -195791,7 +196002,7 @@ type Routes = {
|
|
|
195791
196002
|
/** ID of the device. */
|
|
195792
196003
|
device_id: string;
|
|
195793
196004
|
/** Type of the device. */
|
|
195794
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
196005
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
195795
196006
|
/** IDs of the spaces the device is in. */
|
|
195796
196007
|
space_ids: string[];
|
|
195797
196008
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -196395,6 +196606,13 @@ type Routes = {
|
|
|
196395
196606
|
/** IANA timezone for the Ultraloq device. */
|
|
196396
196607
|
time_zone: string | null;
|
|
196397
196608
|
} | undefined;
|
|
196609
|
+
/** Metadata for a Ring device. */
|
|
196610
|
+
ring_metadata?: {
|
|
196611
|
+
/** Device ID for a Ring device. */
|
|
196612
|
+
device_id: string;
|
|
196613
|
+
/** Device name for a Ring device. */
|
|
196614
|
+
device_name: string;
|
|
196615
|
+
} | undefined;
|
|
196398
196616
|
/** Metadata for a Korelock device. */
|
|
196399
196617
|
korelock_metadata?: {
|
|
196400
196618
|
/** Device ID for a Korelock device. */
|
|
@@ -199706,7 +199924,7 @@ type Routes = {
|
|
|
199706
199924
|
/** ID of the device. */
|
|
199707
199925
|
device_id: string;
|
|
199708
199926
|
/** Type of the device. */
|
|
199709
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
199927
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
199710
199928
|
/** IDs of the spaces the device is in. */
|
|
199711
199929
|
space_ids: string[];
|
|
199712
199930
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -200310,6 +200528,13 @@ type Routes = {
|
|
|
200310
200528
|
/** IANA timezone for the Ultraloq device. */
|
|
200311
200529
|
time_zone: string | null;
|
|
200312
200530
|
} | undefined;
|
|
200531
|
+
/** Metadata for a Ring device. */
|
|
200532
|
+
ring_metadata?: {
|
|
200533
|
+
/** Device ID for a Ring device. */
|
|
200534
|
+
device_id: string;
|
|
200535
|
+
/** Device name for a Ring device. */
|
|
200536
|
+
device_name: string;
|
|
200537
|
+
} | undefined;
|
|
200313
200538
|
/** Metadata for a Korelock device. */
|
|
200314
200539
|
korelock_metadata?: {
|
|
200315
200540
|
/** Device ID for a Korelock device. */
|
|
@@ -201004,7 +201229,7 @@ type Routes = {
|
|
|
201004
201229
|
/** ID of the device. */
|
|
201005
201230
|
device_id: string;
|
|
201006
201231
|
/** Type of the device. */
|
|
201007
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
201232
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
201008
201233
|
/** IDs of the spaces the device is in. */
|
|
201009
201234
|
space_ids: string[];
|
|
201010
201235
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -201608,6 +201833,13 @@ type Routes = {
|
|
|
201608
201833
|
/** IANA timezone for the Ultraloq device. */
|
|
201609
201834
|
time_zone: string | null;
|
|
201610
201835
|
} | undefined;
|
|
201836
|
+
/** Metadata for a Ring device. */
|
|
201837
|
+
ring_metadata?: {
|
|
201838
|
+
/** Device ID for a Ring device. */
|
|
201839
|
+
device_id: string;
|
|
201840
|
+
/** Device name for a Ring device. */
|
|
201841
|
+
device_name: string;
|
|
201842
|
+
} | undefined;
|
|
201611
201843
|
/** Metadata for a Korelock device. */
|
|
201612
201844
|
korelock_metadata?: {
|
|
201613
201845
|
/** Device ID for a Korelock device. */
|
|
@@ -208348,7 +208580,7 @@ type Routes = {
|
|
|
208348
208580
|
/** ID of the device. */
|
|
208349
208581
|
device_id: string;
|
|
208350
208582
|
/** Type of the device. */
|
|
208351
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
208583
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
208352
208584
|
/** IDs of the spaces the device is in. */
|
|
208353
208585
|
space_ids: string[];
|
|
208354
208586
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -208952,6 +209184,13 @@ type Routes = {
|
|
|
208952
209184
|
/** IANA timezone for the Ultraloq device. */
|
|
208953
209185
|
time_zone: string | null;
|
|
208954
209186
|
} | undefined;
|
|
209187
|
+
/** Metadata for a Ring device. */
|
|
209188
|
+
ring_metadata?: {
|
|
209189
|
+
/** Device ID for a Ring device. */
|
|
209190
|
+
device_id: string;
|
|
209191
|
+
/** Device name for a Ring device. */
|
|
209192
|
+
device_name: string;
|
|
209193
|
+
} | undefined;
|
|
208955
209194
|
/** Metadata for a Korelock device. */
|
|
208956
209195
|
korelock_metadata?: {
|
|
208957
209196
|
/** Device ID for a Korelock device. */
|
|
@@ -209648,7 +209887,7 @@ type Routes = {
|
|
|
209648
209887
|
/** ID of the device. */
|
|
209649
209888
|
device_id: string;
|
|
209650
209889
|
/** Type of the device. */
|
|
209651
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
209890
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
209652
209891
|
/** IDs of the spaces the device is in. */
|
|
209653
209892
|
space_ids: string[];
|
|
209654
209893
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -210252,6 +210491,13 @@ type Routes = {
|
|
|
210252
210491
|
/** IANA timezone for the Ultraloq device. */
|
|
210253
210492
|
time_zone: string | null;
|
|
210254
210493
|
} | undefined;
|
|
210494
|
+
/** Metadata for a Ring device. */
|
|
210495
|
+
ring_metadata?: {
|
|
210496
|
+
/** Device ID for a Ring device. */
|
|
210497
|
+
device_id: string;
|
|
210498
|
+
/** Device name for a Ring device. */
|
|
210499
|
+
device_name: string;
|
|
210500
|
+
} | undefined;
|
|
210255
210501
|
/** Metadata for a Korelock device. */
|
|
210256
210502
|
korelock_metadata?: {
|
|
210257
210503
|
/** Device ID for a Korelock device. */
|
|
@@ -211915,7 +212161,7 @@ type Routes = {
|
|
|
211915
212161
|
/** ID of the device. */
|
|
211916
212162
|
device_id: string;
|
|
211917
212163
|
/** Type of the device. */
|
|
211918
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
212164
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
211919
212165
|
/** IDs of the spaces the device is in. */
|
|
211920
212166
|
space_ids: string[];
|
|
211921
212167
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -212519,6 +212765,13 @@ type Routes = {
|
|
|
212519
212765
|
/** IANA timezone for the Ultraloq device. */
|
|
212520
212766
|
time_zone: string | null;
|
|
212521
212767
|
} | undefined;
|
|
212768
|
+
/** Metadata for a Ring device. */
|
|
212769
|
+
ring_metadata?: {
|
|
212770
|
+
/** Device ID for a Ring device. */
|
|
212771
|
+
device_id: string;
|
|
212772
|
+
/** Device name for a Ring device. */
|
|
212773
|
+
device_name: string;
|
|
212774
|
+
} | undefined;
|
|
212522
212775
|
/** Metadata for a Korelock device. */
|
|
212523
212776
|
korelock_metadata?: {
|
|
212524
212777
|
/** Device ID for a Korelock device. */
|
|
@@ -215312,7 +215565,7 @@ type Routes = {
|
|
|
215312
215565
|
/** ID of the device. */
|
|
215313
215566
|
device_id: string;
|
|
215314
215567
|
/** Type of the device. */
|
|
215315
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
215568
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone') | 'ring_camera';
|
|
215316
215569
|
/** Unique identifier for the account associated with the device. */
|
|
215317
215570
|
connected_account_id: string;
|
|
215318
215571
|
/** Location information for the device. */
|