@seamapi/types 1.977.0 → 1.978.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 +95 -19
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +477 -37
- package/dist/index.cjs +95 -19
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-metadata.d.ts +48 -0
- package/lib/seam/connect/models/devices/device-metadata.js +40 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +71 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +51 -3
- package/lib/seam/connect/openapi.js +64 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +354 -31
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +41 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +69 -0
- package/src/lib/seam/connect/route-types.ts +396 -0
package/dist/connect.d.cts
CHANGED
|
@@ -14761,7 +14761,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
14761
14761
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
14762
14762
|
declare const device: z.ZodObject<{
|
|
14763
14763
|
device_id: z.ZodString;
|
|
14764
|
-
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" | "keyincode_lock" | "omnitec_lock" | "kisi_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"]>]>;
|
|
14764
|
+
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" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_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"]>]>;
|
|
14765
14765
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
14766
14766
|
nickname: z.ZodOptional<z.ZodString>;
|
|
14767
14767
|
display_name: z.ZodString;
|
|
@@ -15897,6 +15897,34 @@ declare const device: z.ZodObject<{
|
|
|
15897
15897
|
place_name?: string | null | undefined;
|
|
15898
15898
|
description?: string | null | undefined;
|
|
15899
15899
|
}>>;
|
|
15900
|
+
aqara_metadata: z.ZodOptional<z.ZodObject<{
|
|
15901
|
+
did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15902
|
+
parent_did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15903
|
+
device_name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15904
|
+
model: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
15905
|
+
model_type: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
15906
|
+
time_zone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15907
|
+
position_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15908
|
+
firmware_version: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15909
|
+
}, "strip", z.ZodTypeAny, {
|
|
15910
|
+
time_zone?: string | null | undefined;
|
|
15911
|
+
model?: string | undefined;
|
|
15912
|
+
device_name?: string | undefined;
|
|
15913
|
+
firmware_version?: string | null | undefined;
|
|
15914
|
+
did?: string | undefined;
|
|
15915
|
+
parent_did?: string | undefined;
|
|
15916
|
+
model_type?: number | undefined;
|
|
15917
|
+
position_id?: string | null | undefined;
|
|
15918
|
+
}, {
|
|
15919
|
+
time_zone?: string | null | undefined;
|
|
15920
|
+
model?: string | undefined;
|
|
15921
|
+
device_name?: string | undefined;
|
|
15922
|
+
firmware_version?: string | null | undefined;
|
|
15923
|
+
did?: string | undefined;
|
|
15924
|
+
parent_did?: string | undefined;
|
|
15925
|
+
model_type?: number | undefined;
|
|
15926
|
+
position_id?: string | null | undefined;
|
|
15927
|
+
}>>;
|
|
15900
15928
|
}, "strip", z.ZodTypeAny, {
|
|
15901
15929
|
ecobee_metadata?: {
|
|
15902
15930
|
device_name?: string | undefined;
|
|
@@ -16192,6 +16220,16 @@ declare const device: z.ZodObject<{
|
|
|
16192
16220
|
place_name?: string | null | undefined;
|
|
16193
16221
|
description?: string | null | undefined;
|
|
16194
16222
|
} | undefined;
|
|
16223
|
+
aqara_metadata?: {
|
|
16224
|
+
time_zone?: string | null | undefined;
|
|
16225
|
+
model?: string | undefined;
|
|
16226
|
+
device_name?: string | undefined;
|
|
16227
|
+
firmware_version?: string | null | undefined;
|
|
16228
|
+
did?: string | undefined;
|
|
16229
|
+
parent_did?: string | undefined;
|
|
16230
|
+
model_type?: number | undefined;
|
|
16231
|
+
position_id?: string | null | undefined;
|
|
16232
|
+
} | undefined;
|
|
16195
16233
|
}, {
|
|
16196
16234
|
ecobee_metadata?: {
|
|
16197
16235
|
device_name?: string | undefined;
|
|
@@ -16487,6 +16525,16 @@ declare const device: z.ZodObject<{
|
|
|
16487
16525
|
place_name?: string | null | undefined;
|
|
16488
16526
|
description?: string | null | undefined;
|
|
16489
16527
|
} | undefined;
|
|
16528
|
+
aqara_metadata?: {
|
|
16529
|
+
time_zone?: string | null | undefined;
|
|
16530
|
+
model?: string | undefined;
|
|
16531
|
+
device_name?: string | undefined;
|
|
16532
|
+
firmware_version?: string | null | undefined;
|
|
16533
|
+
did?: string | undefined;
|
|
16534
|
+
parent_did?: string | undefined;
|
|
16535
|
+
model_type?: number | undefined;
|
|
16536
|
+
position_id?: string | null | undefined;
|
|
16537
|
+
} | undefined;
|
|
16490
16538
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
16491
16539
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
16492
16540
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -18343,7 +18391,7 @@ declare const device: z.ZodObject<{
|
|
|
18343
18391
|
warning_code: "insufficient_permissions";
|
|
18344
18392
|
})[];
|
|
18345
18393
|
custom_metadata: Record<string, string | boolean>;
|
|
18346
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock") | "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";
|
|
18394
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_lock") | "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";
|
|
18347
18395
|
space_ids: string[];
|
|
18348
18396
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
18349
18397
|
properties: {
|
|
@@ -18689,6 +18737,16 @@ declare const device: z.ZodObject<{
|
|
|
18689
18737
|
place_name?: string | null | undefined;
|
|
18690
18738
|
description?: string | null | undefined;
|
|
18691
18739
|
} | undefined;
|
|
18740
|
+
aqara_metadata?: {
|
|
18741
|
+
time_zone?: string | null | undefined;
|
|
18742
|
+
model?: string | undefined;
|
|
18743
|
+
device_name?: string | undefined;
|
|
18744
|
+
firmware_version?: string | null | undefined;
|
|
18745
|
+
did?: string | undefined;
|
|
18746
|
+
parent_did?: string | undefined;
|
|
18747
|
+
model_type?: number | undefined;
|
|
18748
|
+
position_id?: string | null | undefined;
|
|
18749
|
+
} | undefined;
|
|
18692
18750
|
} & {
|
|
18693
18751
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
18694
18752
|
code_constraints?: ({
|
|
@@ -19129,7 +19187,7 @@ declare const device: z.ZodObject<{
|
|
|
19129
19187
|
warning_code: "insufficient_permissions";
|
|
19130
19188
|
})[];
|
|
19131
19189
|
custom_metadata: Record<string, string | boolean>;
|
|
19132
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock") | "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";
|
|
19190
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_lock") | "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";
|
|
19133
19191
|
space_ids: string[];
|
|
19134
19192
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
19135
19193
|
properties: {
|
|
@@ -19475,6 +19533,16 @@ declare const device: z.ZodObject<{
|
|
|
19475
19533
|
place_name?: string | null | undefined;
|
|
19476
19534
|
description?: string | null | undefined;
|
|
19477
19535
|
} | undefined;
|
|
19536
|
+
aqara_metadata?: {
|
|
19537
|
+
time_zone?: string | null | undefined;
|
|
19538
|
+
model?: string | undefined;
|
|
19539
|
+
device_name?: string | undefined;
|
|
19540
|
+
firmware_version?: string | null | undefined;
|
|
19541
|
+
did?: string | undefined;
|
|
19542
|
+
parent_did?: string | undefined;
|
|
19543
|
+
model_type?: number | undefined;
|
|
19544
|
+
position_id?: string | null | undefined;
|
|
19545
|
+
} | undefined;
|
|
19478
19546
|
} & {
|
|
19479
19547
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
19480
19548
|
code_constraints?: ({
|
|
@@ -19763,6 +19831,7 @@ declare const DEVICE_PROVIDERS: {
|
|
|
19763
19831
|
readonly ACUITY_SCHEDULING: "acuity_scheduling";
|
|
19764
19832
|
readonly OMNITEC: "omnitec";
|
|
19765
19833
|
readonly KISI: "kisi";
|
|
19834
|
+
readonly AQARA: "aqara";
|
|
19766
19835
|
};
|
|
19767
19836
|
type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
19768
19837
|
declare const device_provider: z.ZodObject<{
|
|
@@ -19846,7 +19915,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
19846
19915
|
|
|
19847
19916
|
declare const unmanaged_device: z.ZodObject<Pick<{
|
|
19848
19917
|
device_id: z.ZodString;
|
|
19849
|
-
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" | "keyincode_lock" | "omnitec_lock" | "kisi_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"]>]>;
|
|
19918
|
+
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" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_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"]>]>;
|
|
19850
19919
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
19851
19920
|
nickname: z.ZodOptional<z.ZodString>;
|
|
19852
19921
|
display_name: z.ZodString;
|
|
@@ -20982,6 +21051,34 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
20982
21051
|
place_name?: string | null | undefined;
|
|
20983
21052
|
description?: string | null | undefined;
|
|
20984
21053
|
}>>;
|
|
21054
|
+
aqara_metadata: z.ZodOptional<z.ZodObject<{
|
|
21055
|
+
did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21056
|
+
parent_did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21057
|
+
device_name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21058
|
+
model: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
21059
|
+
model_type: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
21060
|
+
time_zone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21061
|
+
position_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21062
|
+
firmware_version: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21063
|
+
}, "strip", z.ZodTypeAny, {
|
|
21064
|
+
time_zone?: string | null | undefined;
|
|
21065
|
+
model?: string | undefined;
|
|
21066
|
+
device_name?: string | undefined;
|
|
21067
|
+
firmware_version?: string | null | undefined;
|
|
21068
|
+
did?: string | undefined;
|
|
21069
|
+
parent_did?: string | undefined;
|
|
21070
|
+
model_type?: number | undefined;
|
|
21071
|
+
position_id?: string | null | undefined;
|
|
21072
|
+
}, {
|
|
21073
|
+
time_zone?: string | null | undefined;
|
|
21074
|
+
model?: string | undefined;
|
|
21075
|
+
device_name?: string | undefined;
|
|
21076
|
+
firmware_version?: string | null | undefined;
|
|
21077
|
+
did?: string | undefined;
|
|
21078
|
+
parent_did?: string | undefined;
|
|
21079
|
+
model_type?: number | undefined;
|
|
21080
|
+
position_id?: string | null | undefined;
|
|
21081
|
+
}>>;
|
|
20985
21082
|
}, "strip", z.ZodTypeAny, {
|
|
20986
21083
|
ecobee_metadata?: {
|
|
20987
21084
|
device_name?: string | undefined;
|
|
@@ -21277,6 +21374,16 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21277
21374
|
place_name?: string | null | undefined;
|
|
21278
21375
|
description?: string | null | undefined;
|
|
21279
21376
|
} | undefined;
|
|
21377
|
+
aqara_metadata?: {
|
|
21378
|
+
time_zone?: string | null | undefined;
|
|
21379
|
+
model?: string | undefined;
|
|
21380
|
+
device_name?: string | undefined;
|
|
21381
|
+
firmware_version?: string | null | undefined;
|
|
21382
|
+
did?: string | undefined;
|
|
21383
|
+
parent_did?: string | undefined;
|
|
21384
|
+
model_type?: number | undefined;
|
|
21385
|
+
position_id?: string | null | undefined;
|
|
21386
|
+
} | undefined;
|
|
21280
21387
|
}, {
|
|
21281
21388
|
ecobee_metadata?: {
|
|
21282
21389
|
device_name?: string | undefined;
|
|
@@ -21572,6 +21679,16 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21572
21679
|
place_name?: string | null | undefined;
|
|
21573
21680
|
description?: string | null | undefined;
|
|
21574
21681
|
} | undefined;
|
|
21682
|
+
aqara_metadata?: {
|
|
21683
|
+
time_zone?: string | null | undefined;
|
|
21684
|
+
model?: string | undefined;
|
|
21685
|
+
device_name?: string | undefined;
|
|
21686
|
+
firmware_version?: string | null | undefined;
|
|
21687
|
+
did?: string | undefined;
|
|
21688
|
+
parent_did?: string | undefined;
|
|
21689
|
+
model_type?: number | undefined;
|
|
21690
|
+
position_id?: string | null | undefined;
|
|
21691
|
+
} | undefined;
|
|
21575
21692
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
21576
21693
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
21577
21694
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -23584,7 +23701,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23584
23701
|
warning_code: "insufficient_permissions";
|
|
23585
23702
|
})[];
|
|
23586
23703
|
custom_metadata: Record<string, string | boolean>;
|
|
23587
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock") | "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";
|
|
23704
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_lock") | "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";
|
|
23588
23705
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
23589
23706
|
properties: {
|
|
23590
23707
|
name: string;
|
|
@@ -23858,7 +23975,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23858
23975
|
warning_code: "insufficient_permissions";
|
|
23859
23976
|
})[];
|
|
23860
23977
|
custom_metadata: Record<string, string | boolean>;
|
|
23861
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock") | "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";
|
|
23978
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_lock" | "aqara_lock") | "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";
|
|
23862
23979
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
23863
23980
|
properties: {
|
|
23864
23981
|
name: string;
|
|
@@ -41753,7 +41870,7 @@ type Routes = {
|
|
|
41753
41870
|
/** ID of the device. */
|
|
41754
41871
|
device_id: string;
|
|
41755
41872
|
/** Type of the device. */
|
|
41756
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
41873
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
41757
41874
|
/** IDs of the spaces the device is in. */
|
|
41758
41875
|
space_ids: string[];
|
|
41759
41876
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -42415,6 +42532,25 @@ type Routes = {
|
|
|
42415
42532
|
/** Description for a Kisi device. */
|
|
42416
42533
|
description?: ((string | null) | undefined) | undefined;
|
|
42417
42534
|
} | undefined;
|
|
42535
|
+
/** Metadata for an Aqara device. */
|
|
42536
|
+
aqara_metadata?: {
|
|
42537
|
+
/** Device ID (did) for an Aqara device. */
|
|
42538
|
+
did?: (string | undefined) | undefined;
|
|
42539
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
42540
|
+
parent_did?: (string | undefined) | undefined;
|
|
42541
|
+
/** Device name for an Aqara device. */
|
|
42542
|
+
device_name?: (string | undefined) | undefined;
|
|
42543
|
+
/** Model identifier for an Aqara device. */
|
|
42544
|
+
model?: (string | undefined) | undefined;
|
|
42545
|
+
/** Model type for an Aqara device. */
|
|
42546
|
+
model_type?: (number | undefined) | undefined;
|
|
42547
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
42548
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
42549
|
+
/** Position (room) ID for an Aqara device. */
|
|
42550
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
42551
|
+
/** Firmware version for an Aqara device. */
|
|
42552
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
42553
|
+
} | undefined;
|
|
42418
42554
|
}) & ({
|
|
42419
42555
|
/** */
|
|
42420
42556
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -48552,7 +48688,7 @@ type Routes = {
|
|
|
48552
48688
|
/** ID of the device. */
|
|
48553
48689
|
device_id: string;
|
|
48554
48690
|
/** Type of the device. */
|
|
48555
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
48691
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
48556
48692
|
/** IDs of the spaces the device is in. */
|
|
48557
48693
|
space_ids: string[];
|
|
48558
48694
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -49214,6 +49350,25 @@ type Routes = {
|
|
|
49214
49350
|
/** Description for a Kisi device. */
|
|
49215
49351
|
description?: ((string | null) | undefined) | undefined;
|
|
49216
49352
|
} | undefined;
|
|
49353
|
+
/** Metadata for an Aqara device. */
|
|
49354
|
+
aqara_metadata?: {
|
|
49355
|
+
/** Device ID (did) for an Aqara device. */
|
|
49356
|
+
did?: (string | undefined) | undefined;
|
|
49357
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
49358
|
+
parent_did?: (string | undefined) | undefined;
|
|
49359
|
+
/** Device name for an Aqara device. */
|
|
49360
|
+
device_name?: (string | undefined) | undefined;
|
|
49361
|
+
/** Model identifier for an Aqara device. */
|
|
49362
|
+
model?: (string | undefined) | undefined;
|
|
49363
|
+
/** Model type for an Aqara device. */
|
|
49364
|
+
model_type?: (number | undefined) | undefined;
|
|
49365
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
49366
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
49367
|
+
/** Position (room) ID for an Aqara device. */
|
|
49368
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
49369
|
+
/** Firmware version for an Aqara device. */
|
|
49370
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
49371
|
+
} | undefined;
|
|
49217
49372
|
}) & ({
|
|
49218
49373
|
/** */
|
|
49219
49374
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -69597,7 +69752,7 @@ type Routes = {
|
|
|
69597
69752
|
/** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
|
|
69598
69753
|
customer_key?: string | undefined;
|
|
69599
69754
|
/** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with no filters. */
|
|
69600
|
-
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
69755
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'aqara' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
69601
69756
|
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
69602
69757
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
|
|
69603
69758
|
/** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
@@ -71426,7 +71581,7 @@ type Routes = {
|
|
|
71426
71581
|
/** ID of the device. */
|
|
71427
71582
|
device_id: string;
|
|
71428
71583
|
/** Type of the device. */
|
|
71429
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
71584
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
71430
71585
|
/** IDs of the spaces the device is in. */
|
|
71431
71586
|
space_ids: string[];
|
|
71432
71587
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -72088,6 +72243,25 @@ type Routes = {
|
|
|
72088
72243
|
/** Description for a Kisi device. */
|
|
72089
72244
|
description?: ((string | null) | undefined) | undefined;
|
|
72090
72245
|
} | undefined;
|
|
72246
|
+
/** Metadata for an Aqara device. */
|
|
72247
|
+
aqara_metadata?: {
|
|
72248
|
+
/** Device ID (did) for an Aqara device. */
|
|
72249
|
+
did?: (string | undefined) | undefined;
|
|
72250
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
72251
|
+
parent_did?: (string | undefined) | undefined;
|
|
72252
|
+
/** Device name for an Aqara device. */
|
|
72253
|
+
device_name?: (string | undefined) | undefined;
|
|
72254
|
+
/** Model identifier for an Aqara device. */
|
|
72255
|
+
model?: (string | undefined) | undefined;
|
|
72256
|
+
/** Model type for an Aqara device. */
|
|
72257
|
+
model_type?: (number | undefined) | undefined;
|
|
72258
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
72259
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
72260
|
+
/** Position (room) ID for an Aqara device. */
|
|
72261
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
72262
|
+
/** Firmware version for an Aqara device. */
|
|
72263
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
72264
|
+
} | undefined;
|
|
72091
72265
|
}) & ({
|
|
72092
72266
|
/** */
|
|
72093
72267
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -72889,11 +73063,11 @@ type Routes = {
|
|
|
72889
73063
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
72890
73064
|
connect_webview_id?: string | undefined;
|
|
72891
73065
|
/** Device type for which you want to list devices. */
|
|
72892
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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;
|
|
73066
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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;
|
|
72893
73067
|
/** Array of device types for which you want to list devices. */
|
|
72894
|
-
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' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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;
|
|
73068
|
+
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' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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;
|
|
72895
73069
|
/** Manufacturer for which you want to list devices. */
|
|
72896
|
-
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' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
73070
|
+
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' | 'keyincode' | 'akiles' | 'aqara' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
72897
73071
|
/** Array of device IDs for which you want to list devices. */
|
|
72898
73072
|
device_ids?: string[] | undefined;
|
|
72899
73073
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -72926,7 +73100,7 @@ type Routes = {
|
|
|
72926
73100
|
/** ID of the device. */
|
|
72927
73101
|
device_id: string;
|
|
72928
73102
|
/** Type of the device. */
|
|
72929
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
73103
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
72930
73104
|
/** IDs of the spaces the device is in. */
|
|
72931
73105
|
space_ids: string[];
|
|
72932
73106
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -73588,6 +73762,25 @@ type Routes = {
|
|
|
73588
73762
|
/** Description for a Kisi device. */
|
|
73589
73763
|
description?: ((string | null) | undefined) | undefined;
|
|
73590
73764
|
} | undefined;
|
|
73765
|
+
/** Metadata for an Aqara device. */
|
|
73766
|
+
aqara_metadata?: {
|
|
73767
|
+
/** Device ID (did) for an Aqara device. */
|
|
73768
|
+
did?: (string | undefined) | undefined;
|
|
73769
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
73770
|
+
parent_did?: (string | undefined) | undefined;
|
|
73771
|
+
/** Device name for an Aqara device. */
|
|
73772
|
+
device_name?: (string | undefined) | undefined;
|
|
73773
|
+
/** Model identifier for an Aqara device. */
|
|
73774
|
+
model?: (string | undefined) | undefined;
|
|
73775
|
+
/** Model type for an Aqara device. */
|
|
73776
|
+
model_type?: (number | undefined) | undefined;
|
|
73777
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
73778
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
73779
|
+
/** Position (room) ID for an Aqara device. */
|
|
73780
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
73781
|
+
/** Firmware version for an Aqara device. */
|
|
73782
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
73783
|
+
} | undefined;
|
|
73591
73784
|
}) & ({
|
|
73592
73785
|
/** */
|
|
73593
73786
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -74396,7 +74589,7 @@ type Routes = {
|
|
|
74396
74589
|
jsonResponse: {
|
|
74397
74590
|
device_providers: {
|
|
74398
74591
|
/** Name of the device provider. */
|
|
74399
|
-
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi';
|
|
74592
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'salto_ks_accept' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'aqara';
|
|
74400
74593
|
/** Display name for the device provider. */
|
|
74401
74594
|
display_name: string;
|
|
74402
74595
|
/** Image URL for the device provider. */
|
|
@@ -74574,7 +74767,7 @@ type Routes = {
|
|
|
74574
74767
|
/** ID of the device. */
|
|
74575
74768
|
device_id: string;
|
|
74576
74769
|
/** Type of the device. */
|
|
74577
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
74770
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
74578
74771
|
/** Unique identifier for the account associated with the device. */
|
|
74579
74772
|
connected_account_id: string;
|
|
74580
74773
|
/** Location information for the device. */
|
|
@@ -75061,11 +75254,11 @@ type Routes = {
|
|
|
75061
75254
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
75062
75255
|
connect_webview_id?: string | undefined;
|
|
75063
75256
|
/** Device type for which you want to list devices. */
|
|
75064
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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;
|
|
75257
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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;
|
|
75065
75258
|
/** Array of device types for which you want to list devices. */
|
|
75066
|
-
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' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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;
|
|
75259
|
+
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' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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;
|
|
75067
75260
|
/** Manufacturer for which you want to list devices. */
|
|
75068
|
-
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' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
75261
|
+
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' | 'keyincode' | 'akiles' | 'aqara' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
75069
75262
|
/** Array of device IDs for which you want to list devices. */
|
|
75070
75263
|
device_ids?: string[] | undefined;
|
|
75071
75264
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -75098,7 +75291,7 @@ type Routes = {
|
|
|
75098
75291
|
/** ID of the device. */
|
|
75099
75292
|
device_id: string;
|
|
75100
75293
|
/** Type of the device. */
|
|
75101
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
75294
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
75102
75295
|
/** Unique identifier for the account associated with the device. */
|
|
75103
75296
|
connected_account_id: string;
|
|
75104
75297
|
/** Location information for the device. */
|
|
@@ -84057,7 +84250,7 @@ type Routes = {
|
|
|
84057
84250
|
/** ID of the device. */
|
|
84058
84251
|
device_id: string;
|
|
84059
84252
|
/** Type of the device. */
|
|
84060
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
84253
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
84061
84254
|
/** IDs of the spaces the device is in. */
|
|
84062
84255
|
space_ids: string[];
|
|
84063
84256
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -84719,6 +84912,25 @@ type Routes = {
|
|
|
84719
84912
|
/** Description for a Kisi device. */
|
|
84720
84913
|
description?: ((string | null) | undefined) | undefined;
|
|
84721
84914
|
} | undefined;
|
|
84915
|
+
/** Metadata for an Aqara device. */
|
|
84916
|
+
aqara_metadata?: {
|
|
84917
|
+
/** Device ID (did) for an Aqara device. */
|
|
84918
|
+
did?: (string | undefined) | undefined;
|
|
84919
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
84920
|
+
parent_did?: (string | undefined) | undefined;
|
|
84921
|
+
/** Device name for an Aqara device. */
|
|
84922
|
+
device_name?: (string | undefined) | undefined;
|
|
84923
|
+
/** Model identifier for an Aqara device. */
|
|
84924
|
+
model?: (string | undefined) | undefined;
|
|
84925
|
+
/** Model type for an Aqara device. */
|
|
84926
|
+
model_type?: (number | undefined) | undefined;
|
|
84927
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
84928
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
84929
|
+
/** Position (room) ID for an Aqara device. */
|
|
84930
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
84931
|
+
/** Firmware version for an Aqara device. */
|
|
84932
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
84933
|
+
} | undefined;
|
|
84722
84934
|
}) & ({
|
|
84723
84935
|
/** */
|
|
84724
84936
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -85507,7 +85719,7 @@ type Routes = {
|
|
|
85507
85719
|
/** ID of the device. */
|
|
85508
85720
|
device_id: string;
|
|
85509
85721
|
/** Type of the device. */
|
|
85510
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
85722
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
85511
85723
|
/** IDs of the spaces the device is in. */
|
|
85512
85724
|
space_ids: string[];
|
|
85513
85725
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -86169,6 +86381,25 @@ type Routes = {
|
|
|
86169
86381
|
/** Description for a Kisi device. */
|
|
86170
86382
|
description?: ((string | null) | undefined) | undefined;
|
|
86171
86383
|
} | undefined;
|
|
86384
|
+
/** Metadata for an Aqara device. */
|
|
86385
|
+
aqara_metadata?: {
|
|
86386
|
+
/** Device ID (did) for an Aqara device. */
|
|
86387
|
+
did?: (string | undefined) | undefined;
|
|
86388
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
86389
|
+
parent_did?: (string | undefined) | undefined;
|
|
86390
|
+
/** Device name for an Aqara device. */
|
|
86391
|
+
device_name?: (string | undefined) | undefined;
|
|
86392
|
+
/** Model identifier for an Aqara device. */
|
|
86393
|
+
model?: (string | undefined) | undefined;
|
|
86394
|
+
/** Model type for an Aqara device. */
|
|
86395
|
+
model_type?: (number | undefined) | undefined;
|
|
86396
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
86397
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
86398
|
+
/** Position (room) ID for an Aqara device. */
|
|
86399
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
86400
|
+
/** Firmware version for an Aqara device. */
|
|
86401
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
86402
|
+
} | undefined;
|
|
86172
86403
|
}) & ({
|
|
86173
86404
|
/** */
|
|
86174
86405
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -86970,11 +87201,11 @@ type Routes = {
|
|
|
86970
87201
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
86971
87202
|
connect_webview_id?: string | undefined;
|
|
86972
87203
|
/** Device type of the locks that you want to list. */
|
|
86973
|
-
device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | undefined;
|
|
87204
|
+
device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | undefined;
|
|
86974
87205
|
/** Device types of the locks that you want to list. */
|
|
86975
|
-
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' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock')[] | undefined;
|
|
87206
|
+
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' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock')[] | undefined;
|
|
86976
87207
|
/** Manufacturer of the locks that you want to list. */
|
|
86977
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi') | undefined;
|
|
87208
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'aqara' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi') | undefined;
|
|
86978
87209
|
/** Array of device IDs for which you want to list devices. */
|
|
86979
87210
|
device_ids?: string[] | undefined;
|
|
86980
87211
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -87007,7 +87238,7 @@ type Routes = {
|
|
|
87007
87238
|
/** ID of the device. */
|
|
87008
87239
|
device_id: string;
|
|
87009
87240
|
/** Type of the device. */
|
|
87010
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
87241
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
87011
87242
|
/** IDs of the spaces the device is in. */
|
|
87012
87243
|
space_ids: string[];
|
|
87013
87244
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -87669,6 +87900,25 @@ type Routes = {
|
|
|
87669
87900
|
/** Description for a Kisi device. */
|
|
87670
87901
|
description?: ((string | null) | undefined) | undefined;
|
|
87671
87902
|
} | undefined;
|
|
87903
|
+
/** Metadata for an Aqara device. */
|
|
87904
|
+
aqara_metadata?: {
|
|
87905
|
+
/** Device ID (did) for an Aqara device. */
|
|
87906
|
+
did?: (string | undefined) | undefined;
|
|
87907
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
87908
|
+
parent_did?: (string | undefined) | undefined;
|
|
87909
|
+
/** Device name for an Aqara device. */
|
|
87910
|
+
device_name?: (string | undefined) | undefined;
|
|
87911
|
+
/** Model identifier for an Aqara device. */
|
|
87912
|
+
model?: (string | undefined) | undefined;
|
|
87913
|
+
/** Model type for an Aqara device. */
|
|
87914
|
+
model_type?: (number | undefined) | undefined;
|
|
87915
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
87916
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
87917
|
+
/** Position (room) ID for an Aqara device. */
|
|
87918
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
87919
|
+
/** Firmware version for an Aqara device. */
|
|
87920
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
87921
|
+
} | undefined;
|
|
87672
87922
|
}) & ({
|
|
87673
87923
|
/** */
|
|
87674
87924
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -88456,7 +88706,7 @@ type Routes = {
|
|
|
88456
88706
|
/** ID of the device. */
|
|
88457
88707
|
device_id: string;
|
|
88458
88708
|
/** Type of the device. */
|
|
88459
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
88709
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
88460
88710
|
/** IDs of the spaces the device is in. */
|
|
88461
88711
|
space_ids: string[];
|
|
88462
88712
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -89118,6 +89368,25 @@ type Routes = {
|
|
|
89118
89368
|
/** Description for a Kisi device. */
|
|
89119
89369
|
description?: ((string | null) | undefined) | undefined;
|
|
89120
89370
|
} | undefined;
|
|
89371
|
+
/** Metadata for an Aqara device. */
|
|
89372
|
+
aqara_metadata?: {
|
|
89373
|
+
/** Device ID (did) for an Aqara device. */
|
|
89374
|
+
did?: (string | undefined) | undefined;
|
|
89375
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
89376
|
+
parent_did?: (string | undefined) | undefined;
|
|
89377
|
+
/** Device name for an Aqara device. */
|
|
89378
|
+
device_name?: (string | undefined) | undefined;
|
|
89379
|
+
/** Model identifier for an Aqara device. */
|
|
89380
|
+
model?: (string | undefined) | undefined;
|
|
89381
|
+
/** Model type for an Aqara device. */
|
|
89382
|
+
model_type?: (number | undefined) | undefined;
|
|
89383
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
89384
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
89385
|
+
/** Position (room) ID for an Aqara device. */
|
|
89386
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
89387
|
+
/** Firmware version for an Aqara device. */
|
|
89388
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
89389
|
+
} | undefined;
|
|
89121
89390
|
}) & ({
|
|
89122
89391
|
/** */
|
|
89123
89392
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -96786,7 +97055,7 @@ type Routes = {
|
|
|
96786
97055
|
/** ID of the device. */
|
|
96787
97056
|
device_id: string;
|
|
96788
97057
|
/** Type of the device. */
|
|
96789
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
97058
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
96790
97059
|
/** IDs of the spaces the device is in. */
|
|
96791
97060
|
space_ids: string[];
|
|
96792
97061
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -97448,6 +97717,25 @@ type Routes = {
|
|
|
97448
97717
|
/** Description for a Kisi device. */
|
|
97449
97718
|
description?: ((string | null) | undefined) | undefined;
|
|
97450
97719
|
} | undefined;
|
|
97720
|
+
/** Metadata for an Aqara device. */
|
|
97721
|
+
aqara_metadata?: {
|
|
97722
|
+
/** Device ID (did) for an Aqara device. */
|
|
97723
|
+
did?: (string | undefined) | undefined;
|
|
97724
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
97725
|
+
parent_did?: (string | undefined) | undefined;
|
|
97726
|
+
/** Device name for an Aqara device. */
|
|
97727
|
+
device_name?: (string | undefined) | undefined;
|
|
97728
|
+
/** Model identifier for an Aqara device. */
|
|
97729
|
+
model?: (string | undefined) | undefined;
|
|
97730
|
+
/** Model type for an Aqara device. */
|
|
97731
|
+
model_type?: (number | undefined) | undefined;
|
|
97732
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
97733
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
97734
|
+
/** Position (room) ID for an Aqara device. */
|
|
97735
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
97736
|
+
/** Firmware version for an Aqara device. */
|
|
97737
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
97738
|
+
} | undefined;
|
|
97451
97739
|
}) & ({
|
|
97452
97740
|
/** */
|
|
97453
97741
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -98235,7 +98523,7 @@ type Routes = {
|
|
|
98235
98523
|
/** ID of the device. */
|
|
98236
98524
|
device_id: string;
|
|
98237
98525
|
/** Type of the device. */
|
|
98238
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
98526
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
98239
98527
|
/** IDs of the spaces the device is in. */
|
|
98240
98528
|
space_ids: string[];
|
|
98241
98529
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -98897,6 +99185,25 @@ type Routes = {
|
|
|
98897
99185
|
/** Description for a Kisi device. */
|
|
98898
99186
|
description?: ((string | null) | undefined) | undefined;
|
|
98899
99187
|
} | undefined;
|
|
99188
|
+
/** Metadata for an Aqara device. */
|
|
99189
|
+
aqara_metadata?: {
|
|
99190
|
+
/** Device ID (did) for an Aqara device. */
|
|
99191
|
+
did?: (string | undefined) | undefined;
|
|
99192
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
99193
|
+
parent_did?: (string | undefined) | undefined;
|
|
99194
|
+
/** Device name for an Aqara device. */
|
|
99195
|
+
device_name?: (string | undefined) | undefined;
|
|
99196
|
+
/** Model identifier for an Aqara device. */
|
|
99197
|
+
model?: (string | undefined) | undefined;
|
|
99198
|
+
/** Model type for an Aqara device. */
|
|
99199
|
+
model_type?: (number | undefined) | undefined;
|
|
99200
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
99201
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
99202
|
+
/** Position (room) ID for an Aqara device. */
|
|
99203
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
99204
|
+
/** Firmware version for an Aqara device. */
|
|
99205
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
99206
|
+
} | undefined;
|
|
98900
99207
|
}) & ({
|
|
98901
99208
|
/** */
|
|
98902
99209
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -114822,7 +115129,7 @@ type Routes = {
|
|
|
114822
115129
|
/** ID of the device. */
|
|
114823
115130
|
device_id: string;
|
|
114824
115131
|
/** Type of the device. */
|
|
114825
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
115132
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
114826
115133
|
/** IDs of the spaces the device is in. */
|
|
114827
115134
|
space_ids: string[];
|
|
114828
115135
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -115484,6 +115791,25 @@ type Routes = {
|
|
|
115484
115791
|
/** Description for a Kisi device. */
|
|
115485
115792
|
description?: ((string | null) | undefined) | undefined;
|
|
115486
115793
|
} | undefined;
|
|
115794
|
+
/** Metadata for an Aqara device. */
|
|
115795
|
+
aqara_metadata?: {
|
|
115796
|
+
/** Device ID (did) for an Aqara device. */
|
|
115797
|
+
did?: (string | undefined) | undefined;
|
|
115798
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
115799
|
+
parent_did?: (string | undefined) | undefined;
|
|
115800
|
+
/** Device name for an Aqara device. */
|
|
115801
|
+
device_name?: (string | undefined) | undefined;
|
|
115802
|
+
/** Model identifier for an Aqara device. */
|
|
115803
|
+
model?: (string | undefined) | undefined;
|
|
115804
|
+
/** Model type for an Aqara device. */
|
|
115805
|
+
model_type?: (number | undefined) | undefined;
|
|
115806
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
115807
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
115808
|
+
/** Position (room) ID for an Aqara device. */
|
|
115809
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
115810
|
+
/** Firmware version for an Aqara device. */
|
|
115811
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
115812
|
+
} | undefined;
|
|
115487
115813
|
}) & ({
|
|
115488
115814
|
/** */
|
|
115489
115815
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -122382,7 +122708,7 @@ type Routes = {
|
|
|
122382
122708
|
/** ID of the device. */
|
|
122383
122709
|
device_id: string;
|
|
122384
122710
|
/** Type of the device. */
|
|
122385
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
122711
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
122386
122712
|
/** IDs of the spaces the device is in. */
|
|
122387
122713
|
space_ids: string[];
|
|
122388
122714
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -123044,6 +123370,25 @@ type Routes = {
|
|
|
123044
123370
|
/** Description for a Kisi device. */
|
|
123045
123371
|
description?: ((string | null) | undefined) | undefined;
|
|
123046
123372
|
} | undefined;
|
|
123373
|
+
/** Metadata for an Aqara device. */
|
|
123374
|
+
aqara_metadata?: {
|
|
123375
|
+
/** Device ID (did) for an Aqara device. */
|
|
123376
|
+
did?: (string | undefined) | undefined;
|
|
123377
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
123378
|
+
parent_did?: (string | undefined) | undefined;
|
|
123379
|
+
/** Device name for an Aqara device. */
|
|
123380
|
+
device_name?: (string | undefined) | undefined;
|
|
123381
|
+
/** Model identifier for an Aqara device. */
|
|
123382
|
+
model?: (string | undefined) | undefined;
|
|
123383
|
+
/** Model type for an Aqara device. */
|
|
123384
|
+
model_type?: (number | undefined) | undefined;
|
|
123385
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
123386
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
123387
|
+
/** Position (room) ID for an Aqara device. */
|
|
123388
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
123389
|
+
/** Firmware version for an Aqara device. */
|
|
123390
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
123391
|
+
} | undefined;
|
|
123047
123392
|
}) & ({
|
|
123048
123393
|
/** */
|
|
123049
123394
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -127310,7 +127655,7 @@ type Routes = {
|
|
|
127310
127655
|
/** ID of the device. */
|
|
127311
127656
|
device_id: string;
|
|
127312
127657
|
/** Type of the device. */
|
|
127313
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
127658
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
127314
127659
|
/** IDs of the spaces the device is in. */
|
|
127315
127660
|
space_ids: string[];
|
|
127316
127661
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -127972,6 +128317,25 @@ type Routes = {
|
|
|
127972
128317
|
/** Description for a Kisi device. */
|
|
127973
128318
|
description?: ((string | null) | undefined) | undefined;
|
|
127974
128319
|
} | undefined;
|
|
128320
|
+
/** Metadata for an Aqara device. */
|
|
128321
|
+
aqara_metadata?: {
|
|
128322
|
+
/** Device ID (did) for an Aqara device. */
|
|
128323
|
+
did?: (string | undefined) | undefined;
|
|
128324
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
128325
|
+
parent_did?: (string | undefined) | undefined;
|
|
128326
|
+
/** Device name for an Aqara device. */
|
|
128327
|
+
device_name?: (string | undefined) | undefined;
|
|
128328
|
+
/** Model identifier for an Aqara device. */
|
|
128329
|
+
model?: (string | undefined) | undefined;
|
|
128330
|
+
/** Model type for an Aqara device. */
|
|
128331
|
+
model_type?: (number | undefined) | undefined;
|
|
128332
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
128333
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
128334
|
+
/** Position (room) ID for an Aqara device. */
|
|
128335
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
128336
|
+
/** Firmware version for an Aqara device. */
|
|
128337
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
128338
|
+
} | undefined;
|
|
127975
128339
|
}) & ({
|
|
127976
128340
|
/** */
|
|
127977
128341
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -128759,7 +129123,7 @@ type Routes = {
|
|
|
128759
129123
|
/** ID of the device. */
|
|
128760
129124
|
device_id: string;
|
|
128761
129125
|
/** Type of the device. */
|
|
128762
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
129126
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
128763
129127
|
/** IDs of the spaces the device is in. */
|
|
128764
129128
|
space_ids: string[];
|
|
128765
129129
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -129421,6 +129785,25 @@ type Routes = {
|
|
|
129421
129785
|
/** Description for a Kisi device. */
|
|
129422
129786
|
description?: ((string | null) | undefined) | undefined;
|
|
129423
129787
|
} | undefined;
|
|
129788
|
+
/** Metadata for an Aqara device. */
|
|
129789
|
+
aqara_metadata?: {
|
|
129790
|
+
/** Device ID (did) for an Aqara device. */
|
|
129791
|
+
did?: (string | undefined) | undefined;
|
|
129792
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
129793
|
+
parent_did?: (string | undefined) | undefined;
|
|
129794
|
+
/** Device name for an Aqara device. */
|
|
129795
|
+
device_name?: (string | undefined) | undefined;
|
|
129796
|
+
/** Model identifier for an Aqara device. */
|
|
129797
|
+
model?: (string | undefined) | undefined;
|
|
129798
|
+
/** Model type for an Aqara device. */
|
|
129799
|
+
model_type?: (number | undefined) | undefined;
|
|
129800
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
129801
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
129802
|
+
/** Position (room) ID for an Aqara device. */
|
|
129803
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
129804
|
+
/** Firmware version for an Aqara device. */
|
|
129805
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
129806
|
+
} | undefined;
|
|
129424
129807
|
}) & ({
|
|
129425
129808
|
/** */
|
|
129426
129809
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -138034,7 +138417,7 @@ type Routes = {
|
|
|
138034
138417
|
/** ID of the device. */
|
|
138035
138418
|
device_id: string;
|
|
138036
138419
|
/** Type of the device. */
|
|
138037
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
138420
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
138038
138421
|
/** IDs of the spaces the device is in. */
|
|
138039
138422
|
space_ids: string[];
|
|
138040
138423
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -138696,6 +139079,25 @@ type Routes = {
|
|
|
138696
139079
|
/** Description for a Kisi device. */
|
|
138697
139080
|
description?: ((string | null) | undefined) | undefined;
|
|
138698
139081
|
} | undefined;
|
|
139082
|
+
/** Metadata for an Aqara device. */
|
|
139083
|
+
aqara_metadata?: {
|
|
139084
|
+
/** Device ID (did) for an Aqara device. */
|
|
139085
|
+
did?: (string | undefined) | undefined;
|
|
139086
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
139087
|
+
parent_did?: (string | undefined) | undefined;
|
|
139088
|
+
/** Device name for an Aqara device. */
|
|
139089
|
+
device_name?: (string | undefined) | undefined;
|
|
139090
|
+
/** Model identifier for an Aqara device. */
|
|
139091
|
+
model?: (string | undefined) | undefined;
|
|
139092
|
+
/** Model type for an Aqara device. */
|
|
139093
|
+
model_type?: (number | undefined) | undefined;
|
|
139094
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
139095
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
139096
|
+
/** Position (room) ID for an Aqara device. */
|
|
139097
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
139098
|
+
/** Firmware version for an Aqara device. */
|
|
139099
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
139100
|
+
} | undefined;
|
|
138699
139101
|
}) & ({
|
|
138700
139102
|
/** */
|
|
138701
139103
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -139485,7 +139887,7 @@ type Routes = {
|
|
|
139485
139887
|
/** ID of the device. */
|
|
139486
139888
|
device_id: string;
|
|
139487
139889
|
/** Type of the device. */
|
|
139488
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
139890
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
139489
139891
|
/** IDs of the spaces the device is in. */
|
|
139490
139892
|
space_ids: string[];
|
|
139491
139893
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -140147,6 +140549,25 @@ type Routes = {
|
|
|
140147
140549
|
/** Description for a Kisi device. */
|
|
140148
140550
|
description?: ((string | null) | undefined) | undefined;
|
|
140149
140551
|
} | undefined;
|
|
140552
|
+
/** Metadata for an Aqara device. */
|
|
140553
|
+
aqara_metadata?: {
|
|
140554
|
+
/** Device ID (did) for an Aqara device. */
|
|
140555
|
+
did?: (string | undefined) | undefined;
|
|
140556
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
140557
|
+
parent_did?: (string | undefined) | undefined;
|
|
140558
|
+
/** Device name for an Aqara device. */
|
|
140559
|
+
device_name?: (string | undefined) | undefined;
|
|
140560
|
+
/** Model identifier for an Aqara device. */
|
|
140561
|
+
model?: (string | undefined) | undefined;
|
|
140562
|
+
/** Model type for an Aqara device. */
|
|
140563
|
+
model_type?: (number | undefined) | undefined;
|
|
140564
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
140565
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
140566
|
+
/** Position (room) ID for an Aqara device. */
|
|
140567
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
140568
|
+
/** Firmware version for an Aqara device. */
|
|
140569
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
140570
|
+
} | undefined;
|
|
140150
140571
|
}) & ({
|
|
140151
140572
|
/** */
|
|
140152
140573
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -142211,7 +142632,7 @@ type Routes = {
|
|
|
142211
142632
|
/** ID of the device. */
|
|
142212
142633
|
device_id: string;
|
|
142213
142634
|
/** Type of the device. */
|
|
142214
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
142635
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
142215
142636
|
/** IDs of the spaces the device is in. */
|
|
142216
142637
|
space_ids: string[];
|
|
142217
142638
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -142873,6 +143294,25 @@ type Routes = {
|
|
|
142873
143294
|
/** Description for a Kisi device. */
|
|
142874
143295
|
description?: ((string | null) | undefined) | undefined;
|
|
142875
143296
|
} | undefined;
|
|
143297
|
+
/** Metadata for an Aqara device. */
|
|
143298
|
+
aqara_metadata?: {
|
|
143299
|
+
/** Device ID (did) for an Aqara device. */
|
|
143300
|
+
did?: (string | undefined) | undefined;
|
|
143301
|
+
/** Parent gateway device ID for an Aqara device. */
|
|
143302
|
+
parent_did?: (string | undefined) | undefined;
|
|
143303
|
+
/** Device name for an Aqara device. */
|
|
143304
|
+
device_name?: (string | undefined) | undefined;
|
|
143305
|
+
/** Model identifier for an Aqara device. */
|
|
143306
|
+
model?: (string | undefined) | undefined;
|
|
143307
|
+
/** Model type for an Aqara device. */
|
|
143308
|
+
model_type?: (number | undefined) | undefined;
|
|
143309
|
+
/** Time zone reported for an Aqara device (e.g. GMT-07:00). */
|
|
143310
|
+
time_zone?: ((string | null) | undefined) | undefined;
|
|
143311
|
+
/** Position (room) ID for an Aqara device. */
|
|
143312
|
+
position_id?: ((string | null) | undefined) | undefined;
|
|
143313
|
+
/** Firmware version for an Aqara device. */
|
|
143314
|
+
firmware_version?: ((string | null) | undefined) | undefined;
|
|
143315
|
+
} | undefined;
|
|
142876
143316
|
}) & ({
|
|
142877
143317
|
/** */
|
|
142878
143318
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -146583,7 +147023,7 @@ type Routes = {
|
|
|
146583
147023
|
/** ID of the device. */
|
|
146584
147024
|
device_id: string;
|
|
146585
147025
|
/** Type of the device. */
|
|
146586
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | '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';
|
|
147026
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock' | 'aqara_lock') | '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';
|
|
146587
147027
|
/** Unique identifier for the account associated with the device. */
|
|
146588
147028
|
connected_account_id: string;
|
|
146589
147029
|
/** Location information for the device. */
|