@seamapi/types 1.976.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 +270 -59
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +504 -46
- package/dist/index.cjs +270 -59
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/customer/customer-portal.d.ts +74 -14
- package/lib/seam/connect/models/customer/customer-portal.js +18 -4
- package/lib/seam/connect/models/customer/customer-portal.js.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 +239 -40
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +381 -40
- package/package.json +2 -2
- package/src/lib/seam/connect/models/customer/customer-portal.ts +18 -4
- 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 +244 -40
- package/src/lib/seam/connect/route-types.ts +438 -12
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). */
|
|
@@ -70634,10 +70789,16 @@ type Routes = {
|
|
|
70634
70789
|
/** Navigation mode for the portal. 'restricted' tells frontend to hide navigation UI, typically used for embedded deep links. */
|
|
70635
70790
|
navigation_mode?: 'full' | 'restricted';
|
|
70636
70791
|
/** Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource. */
|
|
70637
|
-
deep_link?: {
|
|
70638
|
-
resource_type: 'reservation'
|
|
70792
|
+
deep_link?: ({
|
|
70793
|
+
resource_type: 'reservation';
|
|
70639
70794
|
resource_key: string;
|
|
70640
|
-
} |
|
|
70795
|
+
} | {
|
|
70796
|
+
resource_type: 'space';
|
|
70797
|
+
resource_key: string;
|
|
70798
|
+
} | {
|
|
70799
|
+
resource_type: 'device';
|
|
70800
|
+
resource_id: string;
|
|
70801
|
+
}) | undefined;
|
|
70641
70802
|
/** Whether the portal is in developer mode. Only available for Seam employees. */
|
|
70642
70803
|
_dev?: boolean;
|
|
70643
70804
|
} & {
|
|
@@ -71420,7 +71581,7 @@ type Routes = {
|
|
|
71420
71581
|
/** ID of the device. */
|
|
71421
71582
|
device_id: string;
|
|
71422
71583
|
/** Type of the device. */
|
|
71423
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
71424
71585
|
/** IDs of the spaces the device is in. */
|
|
71425
71586
|
space_ids: string[];
|
|
71426
71587
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -72082,6 +72243,25 @@ type Routes = {
|
|
|
72082
72243
|
/** Description for a Kisi device. */
|
|
72083
72244
|
description?: ((string | null) | undefined) | undefined;
|
|
72084
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;
|
|
72085
72265
|
}) & ({
|
|
72086
72266
|
/** */
|
|
72087
72267
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -72883,11 +73063,11 @@ type Routes = {
|
|
|
72883
73063
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
72884
73064
|
connect_webview_id?: string | undefined;
|
|
72885
73065
|
/** Device type for which you want to list devices. */
|
|
72886
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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;
|
|
72887
73067
|
/** Array of device types for which you want to list devices. */
|
|
72888
|
-
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;
|
|
72889
73069
|
/** Manufacturer for which you want to list devices. */
|
|
72890
|
-
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;
|
|
72891
73071
|
/** Array of device IDs for which you want to list devices. */
|
|
72892
73072
|
device_ids?: string[] | undefined;
|
|
72893
73073
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -72920,7 +73100,7 @@ type Routes = {
|
|
|
72920
73100
|
/** ID of the device. */
|
|
72921
73101
|
device_id: string;
|
|
72922
73102
|
/** Type of the device. */
|
|
72923
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
72924
73104
|
/** IDs of the spaces the device is in. */
|
|
72925
73105
|
space_ids: string[];
|
|
72926
73106
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -73582,6 +73762,25 @@ type Routes = {
|
|
|
73582
73762
|
/** Description for a Kisi device. */
|
|
73583
73763
|
description?: ((string | null) | undefined) | undefined;
|
|
73584
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;
|
|
73585
73784
|
}) & ({
|
|
73586
73785
|
/** */
|
|
73587
73786
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -74390,7 +74589,7 @@ type Routes = {
|
|
|
74390
74589
|
jsonResponse: {
|
|
74391
74590
|
device_providers: {
|
|
74392
74591
|
/** Name of the device provider. */
|
|
74393
|
-
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';
|
|
74394
74593
|
/** Display name for the device provider. */
|
|
74395
74594
|
display_name: string;
|
|
74396
74595
|
/** Image URL for the device provider. */
|
|
@@ -74568,7 +74767,7 @@ type Routes = {
|
|
|
74568
74767
|
/** ID of the device. */
|
|
74569
74768
|
device_id: string;
|
|
74570
74769
|
/** Type of the device. */
|
|
74571
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
74572
74771
|
/** Unique identifier for the account associated with the device. */
|
|
74573
74772
|
connected_account_id: string;
|
|
74574
74773
|
/** Location information for the device. */
|
|
@@ -75055,11 +75254,11 @@ type Routes = {
|
|
|
75055
75254
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
75056
75255
|
connect_webview_id?: string | undefined;
|
|
75057
75256
|
/** Device type for which you want to list devices. */
|
|
75058
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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;
|
|
75059
75258
|
/** Array of device types for which you want to list devices. */
|
|
75060
|
-
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;
|
|
75061
75260
|
/** Manufacturer for which you want to list devices. */
|
|
75062
|
-
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;
|
|
75063
75262
|
/** Array of device IDs for which you want to list devices. */
|
|
75064
75263
|
device_ids?: string[] | undefined;
|
|
75065
75264
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -75092,7 +75291,7 @@ type Routes = {
|
|
|
75092
75291
|
/** ID of the device. */
|
|
75093
75292
|
device_id: string;
|
|
75094
75293
|
/** Type of the device. */
|
|
75095
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
75096
75295
|
/** Unique identifier for the account associated with the device. */
|
|
75097
75296
|
connected_account_id: string;
|
|
75098
75297
|
/** Location information for the device. */
|
|
@@ -84051,7 +84250,7 @@ type Routes = {
|
|
|
84051
84250
|
/** ID of the device. */
|
|
84052
84251
|
device_id: string;
|
|
84053
84252
|
/** Type of the device. */
|
|
84054
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
84055
84254
|
/** IDs of the spaces the device is in. */
|
|
84056
84255
|
space_ids: string[];
|
|
84057
84256
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -84713,6 +84912,25 @@ type Routes = {
|
|
|
84713
84912
|
/** Description for a Kisi device. */
|
|
84714
84913
|
description?: ((string | null) | undefined) | undefined;
|
|
84715
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;
|
|
84716
84934
|
}) & ({
|
|
84717
84935
|
/** */
|
|
84718
84936
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -85501,7 +85719,7 @@ type Routes = {
|
|
|
85501
85719
|
/** ID of the device. */
|
|
85502
85720
|
device_id: string;
|
|
85503
85721
|
/** Type of the device. */
|
|
85504
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
85505
85723
|
/** IDs of the spaces the device is in. */
|
|
85506
85724
|
space_ids: string[];
|
|
85507
85725
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -86163,6 +86381,25 @@ type Routes = {
|
|
|
86163
86381
|
/** Description for a Kisi device. */
|
|
86164
86382
|
description?: ((string | null) | undefined) | undefined;
|
|
86165
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;
|
|
86166
86403
|
}) & ({
|
|
86167
86404
|
/** */
|
|
86168
86405
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -86964,11 +87201,11 @@ type Routes = {
|
|
|
86964
87201
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
86965
87202
|
connect_webview_id?: string | undefined;
|
|
86966
87203
|
/** Device type of the locks that you want to list. */
|
|
86967
|
-
device_type?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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;
|
|
86968
87205
|
/** Device types of the locks that you want to list. */
|
|
86969
|
-
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;
|
|
86970
87207
|
/** Manufacturer of the locks that you want to list. */
|
|
86971
|
-
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;
|
|
86972
87209
|
/** Array of device IDs for which you want to list devices. */
|
|
86973
87210
|
device_ids?: string[] | undefined;
|
|
86974
87211
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -87001,7 +87238,7 @@ type Routes = {
|
|
|
87001
87238
|
/** ID of the device. */
|
|
87002
87239
|
device_id: string;
|
|
87003
87240
|
/** Type of the device. */
|
|
87004
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
87005
87242
|
/** IDs of the spaces the device is in. */
|
|
87006
87243
|
space_ids: string[];
|
|
87007
87244
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -87663,6 +87900,25 @@ type Routes = {
|
|
|
87663
87900
|
/** Description for a Kisi device. */
|
|
87664
87901
|
description?: ((string | null) | undefined) | undefined;
|
|
87665
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;
|
|
87666
87922
|
}) & ({
|
|
87667
87923
|
/** */
|
|
87668
87924
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -88450,7 +88706,7 @@ type Routes = {
|
|
|
88450
88706
|
/** ID of the device. */
|
|
88451
88707
|
device_id: string;
|
|
88452
88708
|
/** Type of the device. */
|
|
88453
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
88454
88710
|
/** IDs of the spaces the device is in. */
|
|
88455
88711
|
space_ids: string[];
|
|
88456
88712
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -89112,6 +89368,25 @@ type Routes = {
|
|
|
89112
89368
|
/** Description for a Kisi device. */
|
|
89113
89369
|
description?: ((string | null) | undefined) | undefined;
|
|
89114
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;
|
|
89115
89390
|
}) & ({
|
|
89116
89391
|
/** */
|
|
89117
89392
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -96780,7 +97055,7 @@ type Routes = {
|
|
|
96780
97055
|
/** ID of the device. */
|
|
96781
97056
|
device_id: string;
|
|
96782
97057
|
/** Type of the device. */
|
|
96783
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
96784
97059
|
/** IDs of the spaces the device is in. */
|
|
96785
97060
|
space_ids: string[];
|
|
96786
97061
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -97442,6 +97717,25 @@ type Routes = {
|
|
|
97442
97717
|
/** Description for a Kisi device. */
|
|
97443
97718
|
description?: ((string | null) | undefined) | undefined;
|
|
97444
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;
|
|
97445
97739
|
}) & ({
|
|
97446
97740
|
/** */
|
|
97447
97741
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -98229,7 +98523,7 @@ type Routes = {
|
|
|
98229
98523
|
/** ID of the device. */
|
|
98230
98524
|
device_id: string;
|
|
98231
98525
|
/** Type of the device. */
|
|
98232
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
98233
98527
|
/** IDs of the spaces the device is in. */
|
|
98234
98528
|
space_ids: string[];
|
|
98235
98529
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -98891,6 +99185,25 @@ type Routes = {
|
|
|
98891
99185
|
/** Description for a Kisi device. */
|
|
98892
99186
|
description?: ((string | null) | undefined) | undefined;
|
|
98893
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;
|
|
98894
99207
|
}) & ({
|
|
98895
99208
|
/** */
|
|
98896
99209
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -112711,10 +113024,16 @@ type Routes = {
|
|
|
112711
113024
|
/** Navigation mode for the portal. 'restricted' tells frontend to hide navigation UI, typically used for embedded deep links. */
|
|
112712
113025
|
navigation_mode?: 'full' | 'restricted';
|
|
112713
113026
|
/** Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource. */
|
|
112714
|
-
deep_link?: {
|
|
112715
|
-
resource_type: 'reservation'
|
|
113027
|
+
deep_link?: ({
|
|
113028
|
+
resource_type: 'reservation';
|
|
112716
113029
|
resource_key: string;
|
|
112717
|
-
} |
|
|
113030
|
+
} | {
|
|
113031
|
+
resource_type: 'space';
|
|
113032
|
+
resource_key: string;
|
|
113033
|
+
} | {
|
|
113034
|
+
resource_type: 'device';
|
|
113035
|
+
resource_id: string;
|
|
113036
|
+
}) | undefined;
|
|
112718
113037
|
/** Business vertical of the customer portal. */
|
|
112719
113038
|
business_vertical?: ('neutral' | 'short_term_rental' | 'hospitality' | 'multi_family' | 'gym_management' | 'property_tours') | undefined;
|
|
112720
113039
|
feature_flags?: {
|
|
@@ -112853,10 +113172,16 @@ type Routes = {
|
|
|
112853
113172
|
/** Navigation mode for the portal. 'restricted' tells frontend to hide navigation UI, typically used for embedded deep links. */
|
|
112854
113173
|
navigation_mode?: ('full' | 'restricted') | undefined;
|
|
112855
113174
|
/** Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource. */
|
|
112856
|
-
deep_link?: ({
|
|
112857
|
-
resource_type: 'reservation'
|
|
113175
|
+
deep_link?: (({
|
|
113176
|
+
resource_type: 'reservation';
|
|
112858
113177
|
resource_key: string;
|
|
112859
|
-
} |
|
|
113178
|
+
} | {
|
|
113179
|
+
resource_type: 'space';
|
|
113180
|
+
resource_key: string;
|
|
113181
|
+
} | {
|
|
113182
|
+
resource_type: 'device';
|
|
113183
|
+
resource_id: string;
|
|
113184
|
+
}) | undefined) | undefined;
|
|
112860
113185
|
};
|
|
112861
113186
|
};
|
|
112862
113187
|
commonParams: {};
|
|
@@ -114804,7 +115129,7 @@ type Routes = {
|
|
|
114804
115129
|
/** ID of the device. */
|
|
114805
115130
|
device_id: string;
|
|
114806
115131
|
/** Type of the device. */
|
|
114807
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
114808
115133
|
/** IDs of the spaces the device is in. */
|
|
114809
115134
|
space_ids: string[];
|
|
114810
115135
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -115466,6 +115791,25 @@ type Routes = {
|
|
|
115466
115791
|
/** Description for a Kisi device. */
|
|
115467
115792
|
description?: ((string | null) | undefined) | undefined;
|
|
115468
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;
|
|
115469
115813
|
}) & ({
|
|
115470
115814
|
/** */
|
|
115471
115815
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -122364,7 +122708,7 @@ type Routes = {
|
|
|
122364
122708
|
/** ID of the device. */
|
|
122365
122709
|
device_id: string;
|
|
122366
122710
|
/** Type of the device. */
|
|
122367
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
122368
122712
|
/** IDs of the spaces the device is in. */
|
|
122369
122713
|
space_ids: string[];
|
|
122370
122714
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -123026,6 +123370,25 @@ type Routes = {
|
|
|
123026
123370
|
/** Description for a Kisi device. */
|
|
123027
123371
|
description?: ((string | null) | undefined) | undefined;
|
|
123028
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;
|
|
123029
123392
|
}) & ({
|
|
123030
123393
|
/** */
|
|
123031
123394
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -127292,7 +127655,7 @@ type Routes = {
|
|
|
127292
127655
|
/** ID of the device. */
|
|
127293
127656
|
device_id: string;
|
|
127294
127657
|
/** Type of the device. */
|
|
127295
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
127296
127659
|
/** IDs of the spaces the device is in. */
|
|
127297
127660
|
space_ids: string[];
|
|
127298
127661
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -127954,6 +128317,25 @@ type Routes = {
|
|
|
127954
128317
|
/** Description for a Kisi device. */
|
|
127955
128318
|
description?: ((string | null) | undefined) | undefined;
|
|
127956
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;
|
|
127957
128339
|
}) & ({
|
|
127958
128340
|
/** */
|
|
127959
128341
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -128741,7 +129123,7 @@ type Routes = {
|
|
|
128741
129123
|
/** ID of the device. */
|
|
128742
129124
|
device_id: string;
|
|
128743
129125
|
/** Type of the device. */
|
|
128744
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
128745
129127
|
/** IDs of the spaces the device is in. */
|
|
128746
129128
|
space_ids: string[];
|
|
128747
129129
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -129403,6 +129785,25 @@ type Routes = {
|
|
|
129403
129785
|
/** Description for a Kisi device. */
|
|
129404
129786
|
description?: ((string | null) | undefined) | undefined;
|
|
129405
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;
|
|
129406
129807
|
}) & ({
|
|
129407
129808
|
/** */
|
|
129408
129809
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -138016,7 +138417,7 @@ type Routes = {
|
|
|
138016
138417
|
/** ID of the device. */
|
|
138017
138418
|
device_id: string;
|
|
138018
138419
|
/** Type of the device. */
|
|
138019
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
138020
138421
|
/** IDs of the spaces the device is in. */
|
|
138021
138422
|
space_ids: string[];
|
|
138022
138423
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -138678,6 +139079,25 @@ type Routes = {
|
|
|
138678
139079
|
/** Description for a Kisi device. */
|
|
138679
139080
|
description?: ((string | null) | undefined) | undefined;
|
|
138680
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;
|
|
138681
139101
|
}) & ({
|
|
138682
139102
|
/** */
|
|
138683
139103
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -139467,7 +139887,7 @@ type Routes = {
|
|
|
139467
139887
|
/** ID of the device. */
|
|
139468
139888
|
device_id: string;
|
|
139469
139889
|
/** Type of the device. */
|
|
139470
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
139471
139891
|
/** IDs of the spaces the device is in. */
|
|
139472
139892
|
space_ids: string[];
|
|
139473
139893
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -140129,6 +140549,25 @@ type Routes = {
|
|
|
140129
140549
|
/** Description for a Kisi device. */
|
|
140130
140550
|
description?: ((string | null) | undefined) | undefined;
|
|
140131
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;
|
|
140132
140571
|
}) & ({
|
|
140133
140572
|
/** */
|
|
140134
140573
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -142193,7 +142632,7 @@ type Routes = {
|
|
|
142193
142632
|
/** ID of the device. */
|
|
142194
142633
|
device_id: string;
|
|
142195
142634
|
/** Type of the device. */
|
|
142196
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
142197
142636
|
/** IDs of the spaces the device is in. */
|
|
142198
142637
|
space_ids: string[];
|
|
142199
142638
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -142855,6 +143294,25 @@ type Routes = {
|
|
|
142855
143294
|
/** Description for a Kisi device. */
|
|
142856
143295
|
description?: ((string | null) | undefined) | undefined;
|
|
142857
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;
|
|
142858
143316
|
}) & ({
|
|
142859
143317
|
/** */
|
|
142860
143318
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -146565,7 +147023,7 @@ type Routes = {
|
|
|
146565
147023
|
/** ID of the device. */
|
|
146566
147024
|
device_id: string;
|
|
146567
147025
|
/** Type of the device. */
|
|
146568
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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';
|
|
146569
147027
|
/** Unique identifier for the account associated with the device. */
|
|
146570
147028
|
connected_account_id: string;
|
|
146571
147029
|
/** Location information for the device. */
|