@seamapi/types 1.371.0 → 1.373.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 +129 -160
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +241 -58
- package/lib/seam/connect/models/devices/device-metadata.d.ts +23 -0
- package/lib/seam/connect/models/devices/device-metadata.js +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- 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 +36 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +26 -3
- package/lib/seam/connect/models/events/acs/credentials.d.ts +61 -0
- package/lib/seam/connect/models/events/acs/credentials.js +9 -0
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/index.d.ts +30 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +31 -1
- package/lib/seam/connect/openapi.d.ts +19 -18
- package/lib/seam/connect/openapi.js +93 -140
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +129 -34
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +6 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/models/events/acs/credentials.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +97 -140
- package/src/lib/seam/connect/route-types.ts +165 -112
package/dist/connect.d.cts
CHANGED
|
@@ -10246,7 +10246,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
10246
10246
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
10247
10247
|
declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
10248
10248
|
device_id: z.ZodString;
|
|
10249
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
10249
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
10250
10250
|
nickname: z.ZodOptional<z.ZodString>;
|
|
10251
10251
|
display_name: z.ZodString;
|
|
10252
10252
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -11190,6 +11190,19 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11190
11190
|
serial_no: string;
|
|
11191
11191
|
device_type: string;
|
|
11192
11192
|
}>>;
|
|
11193
|
+
sensi_metadata: z.ZodOptional<z.ZodObject<{
|
|
11194
|
+
device_id: z.ZodString;
|
|
11195
|
+
device_name: z.ZodString;
|
|
11196
|
+
product_type: z.ZodString;
|
|
11197
|
+
}, "strip", z.ZodTypeAny, {
|
|
11198
|
+
device_id: string;
|
|
11199
|
+
device_name: string;
|
|
11200
|
+
product_type: string;
|
|
11201
|
+
}, {
|
|
11202
|
+
device_id: string;
|
|
11203
|
+
device_name: string;
|
|
11204
|
+
product_type: string;
|
|
11205
|
+
}>>;
|
|
11193
11206
|
}, "strip", z.ZodTypeAny, {
|
|
11194
11207
|
salto_ks_metadata?: {
|
|
11195
11208
|
lock_type: string;
|
|
@@ -11418,6 +11431,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11418
11431
|
serial_no: string;
|
|
11419
11432
|
device_type: string;
|
|
11420
11433
|
} | undefined;
|
|
11434
|
+
sensi_metadata?: {
|
|
11435
|
+
device_id: string;
|
|
11436
|
+
device_name: string;
|
|
11437
|
+
product_type: string;
|
|
11438
|
+
} | undefined;
|
|
11421
11439
|
}, {
|
|
11422
11440
|
salto_ks_metadata?: {
|
|
11423
11441
|
lock_type: string;
|
|
@@ -11646,6 +11664,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11646
11664
|
serial_no: string;
|
|
11647
11665
|
device_type: string;
|
|
11648
11666
|
} | undefined;
|
|
11667
|
+
sensi_metadata?: {
|
|
11668
|
+
device_id: string;
|
|
11669
|
+
device_name: string;
|
|
11670
|
+
product_type: string;
|
|
11671
|
+
} | undefined;
|
|
11649
11672
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
11650
11673
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
11651
11674
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -12807,7 +12830,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12807
12830
|
warning_code: "unknown_issue_with_phone";
|
|
12808
12831
|
})[];
|
|
12809
12832
|
custom_metadata: Record<string, string | boolean>;
|
|
12810
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
|
|
12833
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat") | ("ios_phone" | "android_phone");
|
|
12811
12834
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
12812
12835
|
properties: {
|
|
12813
12836
|
name: string;
|
|
@@ -13085,6 +13108,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13085
13108
|
serial_no: string;
|
|
13086
13109
|
device_type: string;
|
|
13087
13110
|
} | undefined;
|
|
13111
|
+
sensi_metadata?: {
|
|
13112
|
+
device_id: string;
|
|
13113
|
+
device_name: string;
|
|
13114
|
+
product_type: string;
|
|
13115
|
+
} | undefined;
|
|
13088
13116
|
} & {
|
|
13089
13117
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
13090
13118
|
code_constraints?: ({
|
|
@@ -13369,7 +13397,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13369
13397
|
warning_code: "unknown_issue_with_phone";
|
|
13370
13398
|
})[];
|
|
13371
13399
|
custom_metadata: Record<string, string | boolean>;
|
|
13372
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
|
|
13400
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat") | ("ios_phone" | "android_phone");
|
|
13373
13401
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
13374
13402
|
properties: {
|
|
13375
13403
|
name: string;
|
|
@@ -13647,6 +13675,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13647
13675
|
serial_no: string;
|
|
13648
13676
|
device_type: string;
|
|
13649
13677
|
} | undefined;
|
|
13678
|
+
sensi_metadata?: {
|
|
13679
|
+
device_id: string;
|
|
13680
|
+
device_name: string;
|
|
13681
|
+
product_type: string;
|
|
13682
|
+
} | undefined;
|
|
13650
13683
|
} & {
|
|
13651
13684
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
13652
13685
|
code_constraints?: ({
|
|
@@ -13818,6 +13851,7 @@ declare const DEVICE_PROVIDERS: {
|
|
|
13818
13851
|
readonly ASSA_ABLOY_VOSTIO_CREDENTIAL_SERVICE: "assa_abloy_vostio_credential_service";
|
|
13819
13852
|
readonly TADO: "tado";
|
|
13820
13853
|
readonly SALTO_SPACE: "salto_space";
|
|
13854
|
+
readonly SENSI: "sensi";
|
|
13821
13855
|
};
|
|
13822
13856
|
type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
13823
13857
|
declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -13875,7 +13909,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
13875
13909
|
|
|
13876
13910
|
declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Pick<z.objectUtil.extendShape<{
|
|
13877
13911
|
device_id: z.ZodString;
|
|
13878
|
-
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
13912
|
+
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" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
13879
13913
|
nickname: z.ZodOptional<z.ZodString>;
|
|
13880
13914
|
display_name: z.ZodString;
|
|
13881
13915
|
capabilities_supported: z.ZodArray<z.ZodEnum<["access_code", "lock", "noise_detection", "thermostat", "battery", "phone"]>, "many">;
|
|
@@ -14819,6 +14853,19 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
14819
14853
|
serial_no: string;
|
|
14820
14854
|
device_type: string;
|
|
14821
14855
|
}>>;
|
|
14856
|
+
sensi_metadata: z.ZodOptional<z.ZodObject<{
|
|
14857
|
+
device_id: z.ZodString;
|
|
14858
|
+
device_name: z.ZodString;
|
|
14859
|
+
product_type: z.ZodString;
|
|
14860
|
+
}, "strip", z.ZodTypeAny, {
|
|
14861
|
+
device_id: string;
|
|
14862
|
+
device_name: string;
|
|
14863
|
+
product_type: string;
|
|
14864
|
+
}, {
|
|
14865
|
+
device_id: string;
|
|
14866
|
+
device_name: string;
|
|
14867
|
+
product_type: string;
|
|
14868
|
+
}>>;
|
|
14822
14869
|
}, "strip", z.ZodTypeAny, {
|
|
14823
14870
|
salto_ks_metadata?: {
|
|
14824
14871
|
lock_type: string;
|
|
@@ -15047,6 +15094,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
15047
15094
|
serial_no: string;
|
|
15048
15095
|
device_type: string;
|
|
15049
15096
|
} | undefined;
|
|
15097
|
+
sensi_metadata?: {
|
|
15098
|
+
device_id: string;
|
|
15099
|
+
device_name: string;
|
|
15100
|
+
product_type: string;
|
|
15101
|
+
} | undefined;
|
|
15050
15102
|
}, {
|
|
15051
15103
|
salto_ks_metadata?: {
|
|
15052
15104
|
lock_type: string;
|
|
@@ -15275,6 +15327,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
15275
15327
|
serial_no: string;
|
|
15276
15328
|
device_type: string;
|
|
15277
15329
|
} | undefined;
|
|
15330
|
+
sensi_metadata?: {
|
|
15331
|
+
device_id: string;
|
|
15332
|
+
device_name: string;
|
|
15333
|
+
product_type: string;
|
|
15334
|
+
} | undefined;
|
|
15278
15335
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
15279
15336
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
15280
15337
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -16583,7 +16640,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16583
16640
|
created_at: string;
|
|
16584
16641
|
warning_code: "unknown_issue_with_phone";
|
|
16585
16642
|
})[];
|
|
16586
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
|
|
16643
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat") | ("ios_phone" | "android_phone");
|
|
16587
16644
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
16588
16645
|
properties: {
|
|
16589
16646
|
name: string;
|
|
@@ -16791,7 +16848,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16791
16848
|
created_at: string;
|
|
16792
16849
|
warning_code: "unknown_issue_with_phone";
|
|
16793
16850
|
})[];
|
|
16794
|
-
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat") | ("ios_phone" | "android_phone");
|
|
16851
|
+
device_type: ("akuvox_lock" | "august_lock" | "brivo_access_point" | "butterflymx_panel" | "avigilon_alta_entry" | "doorking_lock" | "genie_door" | "igloo_lock" | "linear_lock" | "lockly_lock" | "kwikset_lock" | "nuki_lock" | "salto_lock" | "schlage_lock" | "seam_relay" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "hubitat_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock") | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat") | ("ios_phone" | "android_phone");
|
|
16795
16852
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
16796
16853
|
properties: {
|
|
16797
16854
|
name: string;
|
|
@@ -17523,6 +17580,36 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<z.o
|
|
|
17523
17580
|
}, {
|
|
17524
17581
|
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
17525
17582
|
acs_system_id: z.ZodString;
|
|
17583
|
+
}>, {
|
|
17584
|
+
acs_credential_id: z.ZodString;
|
|
17585
|
+
}>, {
|
|
17586
|
+
event_type: z.ZodLiteral<"acs_credential.invalidated">;
|
|
17587
|
+
}>, "strip", z.ZodTypeAny, {
|
|
17588
|
+
created_at: string;
|
|
17589
|
+
workspace_id: string;
|
|
17590
|
+
acs_system_id: string;
|
|
17591
|
+
acs_credential_id: string;
|
|
17592
|
+
event_id: string;
|
|
17593
|
+
occurred_at: string;
|
|
17594
|
+
event_type: "acs_credential.invalidated";
|
|
17595
|
+
connected_account_id?: string | undefined;
|
|
17596
|
+
}, {
|
|
17597
|
+
created_at: string;
|
|
17598
|
+
workspace_id: string;
|
|
17599
|
+
acs_system_id: string;
|
|
17600
|
+
acs_credential_id: string;
|
|
17601
|
+
event_id: string;
|
|
17602
|
+
occurred_at: string;
|
|
17603
|
+
event_type: "acs_credential.invalidated";
|
|
17604
|
+
connected_account_id?: string | undefined;
|
|
17605
|
+
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
17606
|
+
event_id: z.ZodString;
|
|
17607
|
+
workspace_id: z.ZodString;
|
|
17608
|
+
created_at: z.ZodString;
|
|
17609
|
+
occurred_at: z.ZodString;
|
|
17610
|
+
}, {
|
|
17611
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
17612
|
+
acs_system_id: z.ZodString;
|
|
17526
17613
|
}>, {
|
|
17527
17614
|
acs_user_id: z.ZodString;
|
|
17528
17615
|
}>, {
|
|
@@ -23282,6 +23369,21 @@ declare const _default: {
|
|
|
23282
23369
|
required: string[];
|
|
23283
23370
|
type: string;
|
|
23284
23371
|
};
|
|
23372
|
+
sensi_metadata: {
|
|
23373
|
+
properties: {
|
|
23374
|
+
device_id: {
|
|
23375
|
+
type: string;
|
|
23376
|
+
};
|
|
23377
|
+
device_name: {
|
|
23378
|
+
type: string;
|
|
23379
|
+
};
|
|
23380
|
+
product_type: {
|
|
23381
|
+
type: string;
|
|
23382
|
+
};
|
|
23383
|
+
};
|
|
23384
|
+
required: string[];
|
|
23385
|
+
type: string;
|
|
23386
|
+
};
|
|
23285
23387
|
smartthings_metadata: {
|
|
23286
23388
|
properties: {
|
|
23287
23389
|
device_id: {
|
|
@@ -41547,28 +41649,14 @@ declare const _default: {
|
|
|
41547
41649
|
};
|
|
41548
41650
|
device_type: {
|
|
41549
41651
|
description: string;
|
|
41550
|
-
|
|
41551
|
-
|
|
41552
|
-
type: string;
|
|
41553
|
-
description?: never;
|
|
41554
|
-
} | {
|
|
41555
|
-
description: string;
|
|
41556
|
-
enum: string[];
|
|
41557
|
-
type: string;
|
|
41558
|
-
})[];
|
|
41652
|
+
enum: string[];
|
|
41653
|
+
type: string;
|
|
41559
41654
|
};
|
|
41560
41655
|
device_types: {
|
|
41561
41656
|
description: string;
|
|
41562
41657
|
items: {
|
|
41563
|
-
|
|
41564
|
-
|
|
41565
|
-
type: string;
|
|
41566
|
-
description?: never;
|
|
41567
|
-
} | {
|
|
41568
|
-
description: string;
|
|
41569
|
-
enum: string[];
|
|
41570
|
-
type: string;
|
|
41571
|
-
})[];
|
|
41658
|
+
enum: string[];
|
|
41659
|
+
type: string;
|
|
41572
41660
|
};
|
|
41573
41661
|
type: string;
|
|
41574
41662
|
};
|
|
@@ -61669,7 +61757,7 @@ interface Routes {
|
|
|
61669
61757
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
61670
61758
|
custom_redirect_url?: string | undefined;
|
|
61671
61759
|
custom_redirect_failure_url?: string | undefined;
|
|
61672
|
-
accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
61760
|
+
accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
61673
61761
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
61674
61762
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
61675
61763
|
automatically_manage_new_devices?: boolean;
|
|
@@ -62109,7 +62197,7 @@ interface Routes {
|
|
|
62109
62197
|
/** Unique identifier for the device. */
|
|
62110
62198
|
device_id: string;
|
|
62111
62199
|
/** Type of the device. */
|
|
62112
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
62200
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
62113
62201
|
/** Optional nickname to describe the device, settable through Seam */
|
|
62114
62202
|
nickname?: string | undefined;
|
|
62115
62203
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -62435,6 +62523,11 @@ interface Routes {
|
|
|
62435
62523
|
serial_no: string;
|
|
62436
62524
|
device_type: string;
|
|
62437
62525
|
} | undefined;
|
|
62526
|
+
sensi_metadata?: {
|
|
62527
|
+
device_id: string;
|
|
62528
|
+
device_name: string;
|
|
62529
|
+
product_type: string;
|
|
62530
|
+
} | undefined;
|
|
62438
62531
|
}) & ({
|
|
62439
62532
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
62440
62533
|
code_constraints?: (Array<{
|
|
@@ -62809,11 +62902,11 @@ interface Routes {
|
|
|
62809
62902
|
/** ID of the Connect Webview by which to filter devices. */
|
|
62810
62903
|
connect_webview_id?: string | undefined;
|
|
62811
62904
|
/** Device type by which to filter devices. */
|
|
62812
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
62905
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
62813
62906
|
/** Array of device types by which to filter devices. */
|
|
62814
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
62907
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
62815
62908
|
/** Manufacturer by which to filter devices. */
|
|
62816
|
-
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado') | undefined;
|
|
62909
|
+
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado' | 'sensi') | undefined;
|
|
62817
62910
|
/** Array of device IDs by which to filter devices. */
|
|
62818
62911
|
device_ids?: string[] | undefined;
|
|
62819
62912
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -62837,7 +62930,7 @@ interface Routes {
|
|
|
62837
62930
|
/** Unique identifier for the device. */
|
|
62838
62931
|
device_id: string;
|
|
62839
62932
|
/** Type of the device. */
|
|
62840
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
62933
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
62841
62934
|
/** Optional nickname to describe the device, settable through Seam */
|
|
62842
62935
|
nickname?: string | undefined;
|
|
62843
62936
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -63163,6 +63256,11 @@ interface Routes {
|
|
|
63163
63256
|
serial_no: string;
|
|
63164
63257
|
device_type: string;
|
|
63165
63258
|
} | undefined;
|
|
63259
|
+
sensi_metadata?: {
|
|
63260
|
+
device_id: string;
|
|
63261
|
+
device_name: string;
|
|
63262
|
+
product_type: string;
|
|
63263
|
+
} | undefined;
|
|
63166
63264
|
}) & ({
|
|
63167
63265
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
63168
63266
|
code_constraints?: (Array<{
|
|
@@ -63535,7 +63633,7 @@ interface Routes {
|
|
|
63535
63633
|
formData: {};
|
|
63536
63634
|
jsonResponse: {
|
|
63537
63635
|
device_providers: Array<{
|
|
63538
|
-
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space';
|
|
63636
|
+
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi';
|
|
63539
63637
|
display_name: string;
|
|
63540
63638
|
image_url: string;
|
|
63541
63639
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -63626,7 +63724,7 @@ interface Routes {
|
|
|
63626
63724
|
/** Unique identifier for the device. */
|
|
63627
63725
|
device_id: string;
|
|
63628
63726
|
/** Type of the device. */
|
|
63629
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
63727
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
63630
63728
|
/** Unique identifier for the account associated with the device. */
|
|
63631
63729
|
connected_account_id: string;
|
|
63632
63730
|
/** Location information for the device. */
|
|
@@ -63891,11 +63989,11 @@ interface Routes {
|
|
|
63891
63989
|
/** ID of the Connect Webview by which to filter devices. */
|
|
63892
63990
|
connect_webview_id?: string | undefined;
|
|
63893
63991
|
/** Device type by which to filter devices. */
|
|
63894
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
63992
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
63895
63993
|
/** Array of device types by which to filter devices. */
|
|
63896
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
63994
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
63897
63995
|
/** Manufacturer by which to filter devices. */
|
|
63898
|
-
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado') | undefined;
|
|
63996
|
+
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado' | 'sensi') | undefined;
|
|
63899
63997
|
/** Array of device IDs by which to filter devices. */
|
|
63900
63998
|
device_ids?: string[] | undefined;
|
|
63901
63999
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -63919,7 +64017,7 @@ interface Routes {
|
|
|
63919
64017
|
/** Unique identifier for the device. */
|
|
63920
64018
|
device_id: string;
|
|
63921
64019
|
/** Type of the device. */
|
|
63922
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
64020
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
63923
64021
|
/** Unique identifier for the account associated with the device. */
|
|
63924
64022
|
connected_account_id: string;
|
|
63925
64023
|
/** Location information for the device. */
|
|
@@ -64579,6 +64677,21 @@ interface Routes {
|
|
|
64579
64677
|
acs_system_id: string;
|
|
64580
64678
|
acs_credential_id: string;
|
|
64581
64679
|
event_type: 'acs_credential.reissued';
|
|
64680
|
+
} | {
|
|
64681
|
+
/** ID of the event. */
|
|
64682
|
+
event_id: string;
|
|
64683
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
64684
|
+
workspace_id: string;
|
|
64685
|
+
/** Date and time at which the event was created. */
|
|
64686
|
+
created_at: string;
|
|
64687
|
+
/** Date and time at which the event occurred. */
|
|
64688
|
+
occurred_at: string;
|
|
64689
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
64690
|
+
connected_account_id?: string | undefined;
|
|
64691
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
64692
|
+
acs_system_id: string;
|
|
64693
|
+
acs_credential_id: string;
|
|
64694
|
+
event_type: 'acs_credential.invalidated';
|
|
64582
64695
|
} | {
|
|
64583
64696
|
/** ID of the event. */
|
|
64584
64697
|
event_id: string;
|
|
@@ -65462,8 +65575,8 @@ interface Routes {
|
|
|
65462
65575
|
acs_system_ids?: string[] | undefined;
|
|
65463
65576
|
access_code_id?: string | undefined;
|
|
65464
65577
|
access_code_ids?: string[] | undefined;
|
|
65465
|
-
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated') | undefined;
|
|
65466
|
-
event_types?: Array<'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated'> | undefined;
|
|
65578
|
+
event_type?: ('access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated') | undefined;
|
|
65579
|
+
event_types?: Array<'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.removed_from_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_set_on_device' | 'access_code.deleted' | 'access_code.delay_in_removing_from_device' | 'access_code.failed_to_remove_from_device' | 'access_code.modified_external_to_seam' | 'access_code.deleted_external_to_seam' | 'access_code.backup_access_code_pulled' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'acs_system.connected' | 'acs_system.added' | 'acs_system.disconnected' | 'acs_credential.deleted' | 'acs_credential.issued' | 'acs_credential.reissued' | 'acs_credential.invalidated' | 'acs_user.deleted' | 'acs_encoder.added' | 'acs_encoder.removed' | 'acs_access_group.deleted' | 'acs_entrance.added' | 'acs_entrance.removed' | 'client_session.deleted' | 'connected_account.connected' | 'connected_account.created' | 'connected_account.successful_login' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.deleted' | 'connected_account.completed_first_sync_after_reconnection' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'device.connected' | 'device.added' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.removed' | 'device.deleted' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'noise_sensor.noise_threshold_triggered' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'thermostat.climate_preset_activated' | 'thermostat.manually_adjusted' | 'thermostat.temperature_threshold_exceeded' | 'thermostat.temperature_threshold_no_longer_exceeded' | 'thermostat.temperature_reached_set_point' | 'thermostat.temperature_changed' | 'device.name_changed' | 'enrollment_automation.deleted' | 'phone.deactivated'> | undefined;
|
|
65467
65580
|
connected_account_id?: string | undefined;
|
|
65468
65581
|
connect_webview_id?: string | undefined;
|
|
65469
65582
|
limit?: number;
|
|
@@ -65837,6 +65950,21 @@ interface Routes {
|
|
|
65837
65950
|
acs_system_id: string;
|
|
65838
65951
|
acs_credential_id: string;
|
|
65839
65952
|
event_type: 'acs_credential.reissued';
|
|
65953
|
+
} | {
|
|
65954
|
+
/** ID of the event. */
|
|
65955
|
+
event_id: string;
|
|
65956
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
65957
|
+
workspace_id: string;
|
|
65958
|
+
/** Date and time at which the event was created. */
|
|
65959
|
+
created_at: string;
|
|
65960
|
+
/** Date and time at which the event occurred. */
|
|
65961
|
+
occurred_at: string;
|
|
65962
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
65963
|
+
connected_account_id?: string | undefined;
|
|
65964
|
+
/** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
65965
|
+
acs_system_id: string;
|
|
65966
|
+
acs_credential_id: string;
|
|
65967
|
+
event_type: 'acs_credential.invalidated';
|
|
65840
65968
|
} | {
|
|
65841
65969
|
/** ID of the event. */
|
|
65842
65970
|
event_id: string;
|
|
@@ -66720,7 +66848,7 @@ interface Routes {
|
|
|
66720
66848
|
/** Unique identifier for the device. */
|
|
66721
66849
|
device_id: string;
|
|
66722
66850
|
/** Type of the device. */
|
|
66723
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
66851
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
66724
66852
|
/** Optional nickname to describe the device, settable through Seam */
|
|
66725
66853
|
nickname?: string | undefined;
|
|
66726
66854
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -67046,6 +67174,11 @@ interface Routes {
|
|
|
67046
67174
|
serial_no: string;
|
|
67047
67175
|
device_type: string;
|
|
67048
67176
|
} | undefined;
|
|
67177
|
+
sensi_metadata?: {
|
|
67178
|
+
device_id: string;
|
|
67179
|
+
device_name: string;
|
|
67180
|
+
product_type: string;
|
|
67181
|
+
} | undefined;
|
|
67049
67182
|
}) & ({
|
|
67050
67183
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
67051
67184
|
code_constraints?: (Array<{
|
|
@@ -67410,7 +67543,7 @@ interface Routes {
|
|
|
67410
67543
|
/** Unique identifier for the device. */
|
|
67411
67544
|
device_id: string;
|
|
67412
67545
|
/** Type of the device. */
|
|
67413
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
67546
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
67414
67547
|
/** Optional nickname to describe the device, settable through Seam */
|
|
67415
67548
|
nickname?: string | undefined;
|
|
67416
67549
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -67736,6 +67869,11 @@ interface Routes {
|
|
|
67736
67869
|
serial_no: string;
|
|
67737
67870
|
device_type: string;
|
|
67738
67871
|
} | undefined;
|
|
67872
|
+
sensi_metadata?: {
|
|
67873
|
+
device_id: string;
|
|
67874
|
+
device_name: string;
|
|
67875
|
+
product_type: string;
|
|
67876
|
+
} | undefined;
|
|
67739
67877
|
}) & ({
|
|
67740
67878
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
67741
67879
|
code_constraints?: (Array<{
|
|
@@ -68110,11 +68248,11 @@ interface Routes {
|
|
|
68110
68248
|
/** ID of the Connect Webview by which to filter devices. */
|
|
68111
68249
|
connect_webview_id?: string | undefined;
|
|
68112
68250
|
/** Device type by which to filter devices. */
|
|
68113
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
68251
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
68114
68252
|
/** Array of device types by which to filter devices. */
|
|
68115
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
68253
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
68116
68254
|
/** Manufacturer by which to filter devices. */
|
|
68117
|
-
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado') | undefined;
|
|
68255
|
+
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado' | 'sensi') | undefined;
|
|
68118
68256
|
/** Array of device IDs by which to filter devices. */
|
|
68119
68257
|
device_ids?: string[] | undefined;
|
|
68120
68258
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -68138,7 +68276,7 @@ interface Routes {
|
|
|
68138
68276
|
/** Unique identifier for the device. */
|
|
68139
68277
|
device_id: string;
|
|
68140
68278
|
/** Type of the device. */
|
|
68141
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
68279
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
68142
68280
|
/** Optional nickname to describe the device, settable through Seam */
|
|
68143
68281
|
nickname?: string | undefined;
|
|
68144
68282
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -68464,6 +68602,11 @@ interface Routes {
|
|
|
68464
68602
|
serial_no: string;
|
|
68465
68603
|
device_type: string;
|
|
68466
68604
|
} | undefined;
|
|
68605
|
+
sensi_metadata?: {
|
|
68606
|
+
device_id: string;
|
|
68607
|
+
device_name: string;
|
|
68608
|
+
product_type: string;
|
|
68609
|
+
} | undefined;
|
|
68467
68610
|
}) & ({
|
|
68468
68611
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
68469
68612
|
code_constraints?: (Array<{
|
|
@@ -68827,7 +68970,7 @@ interface Routes {
|
|
|
68827
68970
|
/** Unique identifier for the device. */
|
|
68828
68971
|
device_id: string;
|
|
68829
68972
|
/** Type of the device. */
|
|
68830
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
68973
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
68831
68974
|
/** Optional nickname to describe the device, settable through Seam */
|
|
68832
68975
|
nickname?: string | undefined;
|
|
68833
68976
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -69153,6 +69296,11 @@ interface Routes {
|
|
|
69153
69296
|
serial_no: string;
|
|
69154
69297
|
device_type: string;
|
|
69155
69298
|
} | undefined;
|
|
69299
|
+
sensi_metadata?: {
|
|
69300
|
+
device_id: string;
|
|
69301
|
+
device_name: string;
|
|
69302
|
+
product_type: string;
|
|
69303
|
+
} | undefined;
|
|
69156
69304
|
}) & ({
|
|
69157
69305
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
69158
69306
|
code_constraints?: (Array<{
|
|
@@ -71488,11 +71636,11 @@ interface Routes {
|
|
|
71488
71636
|
/** ID of the Connect Webview by which to filter devices. */
|
|
71489
71637
|
connect_webview_id?: string | undefined;
|
|
71490
71638
|
/** Device type by which to filter devices. */
|
|
71491
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
71639
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
71492
71640
|
/** Array of device types by which to filter devices. */
|
|
71493
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
71641
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
71494
71642
|
/** Manufacturer by which to filter devices. */
|
|
71495
|
-
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado') | undefined;
|
|
71643
|
+
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' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles' | 'tado' | 'sensi') | undefined;
|
|
71496
71644
|
/** Array of device IDs by which to filter devices. */
|
|
71497
71645
|
device_ids?: string[] | undefined;
|
|
71498
71646
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -71516,7 +71664,7 @@ interface Routes {
|
|
|
71516
71664
|
/** Unique identifier for the device. */
|
|
71517
71665
|
device_id: string;
|
|
71518
71666
|
/** Type of the device. */
|
|
71519
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
71667
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
71520
71668
|
/** Optional nickname to describe the device, settable through Seam */
|
|
71521
71669
|
nickname?: string | undefined;
|
|
71522
71670
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -71842,6 +71990,11 @@ interface Routes {
|
|
|
71842
71990
|
serial_no: string;
|
|
71843
71991
|
device_type: string;
|
|
71844
71992
|
} | undefined;
|
|
71993
|
+
sensi_metadata?: {
|
|
71994
|
+
device_id: string;
|
|
71995
|
+
device_name: string;
|
|
71996
|
+
product_type: string;
|
|
71997
|
+
} | undefined;
|
|
71845
71998
|
}) & ({
|
|
71846
71999
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
71847
72000
|
code_constraints?: (Array<{
|
|
@@ -72205,7 +72358,7 @@ interface Routes {
|
|
|
72205
72358
|
/** Unique identifier for the device. */
|
|
72206
72359
|
device_id: string;
|
|
72207
72360
|
/** Type of the device. */
|
|
72208
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
72361
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
72209
72362
|
/** Optional nickname to describe the device, settable through Seam */
|
|
72210
72363
|
nickname?: string | undefined;
|
|
72211
72364
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -72531,6 +72684,11 @@ interface Routes {
|
|
|
72531
72684
|
serial_no: string;
|
|
72532
72685
|
device_type: string;
|
|
72533
72686
|
} | undefined;
|
|
72687
|
+
sensi_metadata?: {
|
|
72688
|
+
device_id: string;
|
|
72689
|
+
device_name: string;
|
|
72690
|
+
product_type: string;
|
|
72691
|
+
} | undefined;
|
|
72534
72692
|
}) & ({
|
|
72535
72693
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
72536
72694
|
code_constraints?: (Array<{
|
|
@@ -78232,7 +78390,7 @@ interface Routes {
|
|
|
78232
78390
|
/** Unique identifier for the device. */
|
|
78233
78391
|
device_id: string;
|
|
78234
78392
|
/** Type of the device. */
|
|
78235
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
78393
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
78236
78394
|
/** Optional nickname to describe the device, settable through Seam */
|
|
78237
78395
|
nickname?: string | undefined;
|
|
78238
78396
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -78558,6 +78716,11 @@ interface Routes {
|
|
|
78558
78716
|
serial_no: string;
|
|
78559
78717
|
device_type: string;
|
|
78560
78718
|
} | undefined;
|
|
78719
|
+
sensi_metadata?: {
|
|
78720
|
+
device_id: string;
|
|
78721
|
+
device_name: string;
|
|
78722
|
+
product_type: string;
|
|
78723
|
+
} | undefined;
|
|
78561
78724
|
}) & ({
|
|
78562
78725
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
78563
78726
|
code_constraints?: (Array<{
|
|
@@ -80874,11 +81037,11 @@ interface Routes {
|
|
|
80874
81037
|
/** ID of the Connect Webview by which to filter devices. */
|
|
80875
81038
|
connect_webview_id?: string | undefined;
|
|
80876
81039
|
/** Device type by which to filter devices. */
|
|
80877
|
-
device_type?: (
|
|
81040
|
+
device_type?: ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | undefined;
|
|
80878
81041
|
/** Array of device types by which to filter devices. */
|
|
80879
|
-
device_types?: Array<
|
|
81042
|
+
device_types?: Array<'ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat'> | undefined;
|
|
80880
81043
|
/** Manufacturer by which to filter devices. */
|
|
80881
|
-
manufacturer?: ('
|
|
81044
|
+
manufacturer?: ('ecobee' | 'nest' | 'honeywell_resideo' | 'tado') | undefined;
|
|
80882
81045
|
/** Array of device IDs by which to filter devices. */
|
|
80883
81046
|
device_ids?: string[] | undefined;
|
|
80884
81047
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -80902,7 +81065,7 @@ interface Routes {
|
|
|
80902
81065
|
/** Unique identifier for the device. */
|
|
80903
81066
|
device_id: string;
|
|
80904
81067
|
/** Type of the device. */
|
|
80905
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
81068
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
80906
81069
|
/** Optional nickname to describe the device, settable through Seam */
|
|
80907
81070
|
nickname?: string | undefined;
|
|
80908
81071
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -81228,6 +81391,11 @@ interface Routes {
|
|
|
81228
81391
|
serial_no: string;
|
|
81229
81392
|
device_type: string;
|
|
81230
81393
|
} | undefined;
|
|
81394
|
+
sensi_metadata?: {
|
|
81395
|
+
device_id: string;
|
|
81396
|
+
device_name: string;
|
|
81397
|
+
product_type: string;
|
|
81398
|
+
} | undefined;
|
|
81231
81399
|
}) & ({
|
|
81232
81400
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
81233
81401
|
code_constraints?: (Array<{
|
|
@@ -81591,7 +81759,7 @@ interface Routes {
|
|
|
81591
81759
|
/** Unique identifier for the device. */
|
|
81592
81760
|
device_id: string;
|
|
81593
81761
|
/** Type of the device. */
|
|
81594
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
81762
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
81595
81763
|
/** Optional nickname to describe the device, settable through Seam */
|
|
81596
81764
|
nickname?: string | undefined;
|
|
81597
81765
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -81917,6 +82085,11 @@ interface Routes {
|
|
|
81917
82085
|
serial_no: string;
|
|
81918
82086
|
device_type: string;
|
|
81919
82087
|
} | undefined;
|
|
82088
|
+
sensi_metadata?: {
|
|
82089
|
+
device_id: string;
|
|
82090
|
+
device_name: string;
|
|
82091
|
+
product_type: string;
|
|
82092
|
+
} | undefined;
|
|
81920
82093
|
}) & ({
|
|
81921
82094
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
81922
82095
|
code_constraints?: (Array<{
|
|
@@ -85981,7 +86154,7 @@ interface Routes {
|
|
|
85981
86154
|
/** Unique identifier for the device. */
|
|
85982
86155
|
device_id: string;
|
|
85983
86156
|
/** Type of the device. */
|
|
85984
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
86157
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
85985
86158
|
/** Optional nickname to describe the device, settable through Seam */
|
|
85986
86159
|
nickname?: string | undefined;
|
|
85987
86160
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -86307,6 +86480,11 @@ interface Routes {
|
|
|
86307
86480
|
serial_no: string;
|
|
86308
86481
|
device_type: string;
|
|
86309
86482
|
} | undefined;
|
|
86483
|
+
sensi_metadata?: {
|
|
86484
|
+
device_id: string;
|
|
86485
|
+
device_name: string;
|
|
86486
|
+
product_type: string;
|
|
86487
|
+
} | undefined;
|
|
86310
86488
|
}) & ({
|
|
86311
86489
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
86312
86490
|
code_constraints?: (Array<{
|
|
@@ -86672,7 +86850,7 @@ interface Routes {
|
|
|
86672
86850
|
/** Unique identifier for the device. */
|
|
86673
86851
|
device_id: string;
|
|
86674
86852
|
/** Type of the device. */
|
|
86675
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat') | ('ios_phone' | 'android_phone');
|
|
86853
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | ('ios_phone' | 'android_phone');
|
|
86676
86854
|
/** Optional nickname to describe the device, settable through Seam */
|
|
86677
86855
|
nickname?: string | undefined;
|
|
86678
86856
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -86998,6 +87176,11 @@ interface Routes {
|
|
|
86998
87176
|
serial_no: string;
|
|
86999
87177
|
device_type: string;
|
|
87000
87178
|
} | undefined;
|
|
87179
|
+
sensi_metadata?: {
|
|
87180
|
+
device_id: string;
|
|
87181
|
+
device_name: string;
|
|
87182
|
+
product_type: string;
|
|
87183
|
+
} | undefined;
|
|
87001
87184
|
}) & ({
|
|
87002
87185
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
87003
87186
|
code_constraints?: (Array<{
|