@seamapi/types 1.109.0 → 1.111.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 +68 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +73 -25
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +64 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +61 -25
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +18 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/unstable/models/devices/device-type.js +1 -0
- package/lib/seam/connect/unstable/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +37 -3
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +64 -10
- package/src/lib/seam/connect/route-types.ts +79 -19
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/unstable/models/devices/device-type.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -1139,6 +1139,18 @@ declare const _default: {
|
|
|
1139
1139
|
required: string[];
|
|
1140
1140
|
type: string;
|
|
1141
1141
|
};
|
|
1142
|
+
honeywell_metadata: {
|
|
1143
|
+
properties: {
|
|
1144
|
+
device_name: {
|
|
1145
|
+
type: string;
|
|
1146
|
+
};
|
|
1147
|
+
honeywell_device_id: {
|
|
1148
|
+
type: string;
|
|
1149
|
+
};
|
|
1150
|
+
};
|
|
1151
|
+
required: string[];
|
|
1152
|
+
type: string;
|
|
1153
|
+
};
|
|
1142
1154
|
hubitat_metadata: {
|
|
1143
1155
|
properties: {
|
|
1144
1156
|
device_id: {
|
|
@@ -18803,7 +18815,7 @@ interface Routes {
|
|
|
18803
18815
|
/** Unique identifier for the device. */
|
|
18804
18816
|
device_id: string;
|
|
18805
18817
|
/** Type of the device. */
|
|
18806
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
18818
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
18807
18819
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
18808
18820
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
18809
18821
|
/** Properties of the device. */
|
|
@@ -18993,6 +19005,10 @@ interface Routes {
|
|
|
18993
19005
|
ecobee_device_id: string;
|
|
18994
19006
|
device_name: string;
|
|
18995
19007
|
} | undefined;
|
|
19008
|
+
honeywell_metadata?: {
|
|
19009
|
+
honeywell_device_id: string;
|
|
19010
|
+
device_name: string;
|
|
19011
|
+
} | undefined;
|
|
18996
19012
|
hubitat_metadata?: {
|
|
18997
19013
|
device_id: string;
|
|
18998
19014
|
device_name: string;
|
|
@@ -19272,9 +19288,9 @@ interface Routes {
|
|
|
19272
19288
|
connected_account_id?: string | undefined;
|
|
19273
19289
|
connected_account_ids?: string[] | undefined;
|
|
19274
19290
|
connect_webview_id?: string | undefined;
|
|
19275
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
19276
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
19277
|
-
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') | undefined;
|
|
19291
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
19292
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
19293
|
+
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') | undefined;
|
|
19278
19294
|
device_ids?: string[] | undefined;
|
|
19279
19295
|
limit?: number;
|
|
19280
19296
|
created_before?: Date | undefined;
|
|
@@ -19287,7 +19303,7 @@ interface Routes {
|
|
|
19287
19303
|
/** Unique identifier for the device. */
|
|
19288
19304
|
device_id: string;
|
|
19289
19305
|
/** Type of the device. */
|
|
19290
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
19306
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
19291
19307
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
19292
19308
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
19293
19309
|
/** Properties of the device. */
|
|
@@ -19477,6 +19493,10 @@ interface Routes {
|
|
|
19477
19493
|
ecobee_device_id: string;
|
|
19478
19494
|
device_name: string;
|
|
19479
19495
|
} | undefined;
|
|
19496
|
+
honeywell_metadata?: {
|
|
19497
|
+
honeywell_device_id: string;
|
|
19498
|
+
device_name: string;
|
|
19499
|
+
} | undefined;
|
|
19480
19500
|
hubitat_metadata?: {
|
|
19481
19501
|
device_id: string;
|
|
19482
19502
|
device_name: string;
|
|
@@ -19779,7 +19799,7 @@ interface Routes {
|
|
|
19779
19799
|
/** Unique identifier for the device. */
|
|
19780
19800
|
device_id: string;
|
|
19781
19801
|
/** Type of the device. */
|
|
19782
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
19802
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
19783
19803
|
/** Unique identifier for the account associated with the device. */
|
|
19784
19804
|
connected_account_id: string;
|
|
19785
19805
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
@@ -19847,9 +19867,9 @@ interface Routes {
|
|
|
19847
19867
|
connected_account_id?: string | undefined;
|
|
19848
19868
|
connected_account_ids?: string[] | undefined;
|
|
19849
19869
|
connect_webview_id?: string | undefined;
|
|
19850
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
19851
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
19852
|
-
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') | undefined;
|
|
19870
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
19871
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
19872
|
+
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') | undefined;
|
|
19853
19873
|
device_ids?: string[] | undefined;
|
|
19854
19874
|
limit?: number;
|
|
19855
19875
|
created_before?: Date | undefined;
|
|
@@ -19862,7 +19882,7 @@ interface Routes {
|
|
|
19862
19882
|
/** Unique identifier for the device. */
|
|
19863
19883
|
device_id: string;
|
|
19864
19884
|
/** Type of the device. */
|
|
19865
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
19885
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
19866
19886
|
/** Unique identifier for the account associated with the device. */
|
|
19867
19887
|
connected_account_id: string;
|
|
19868
19888
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
@@ -19984,8 +20004,8 @@ interface Routes {
|
|
|
19984
20004
|
device_ids?: string[] | undefined;
|
|
19985
20005
|
access_code_id?: string | undefined;
|
|
19986
20006
|
access_code_ids?: string[] | undefined;
|
|
19987
|
-
event_type?: ('device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | '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' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled') | undefined;
|
|
19988
|
-
event_types?: Array<'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | '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' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled'> | undefined;
|
|
20007
|
+
event_type?: ('device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | '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' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled') | undefined;
|
|
20008
|
+
event_types?: Array<'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | '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' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled'> | undefined;
|
|
19989
20009
|
connected_account_id?: string | undefined;
|
|
19990
20010
|
};
|
|
19991
20011
|
formData: {};
|
|
@@ -20090,7 +20110,7 @@ interface Routes {
|
|
|
20090
20110
|
/** Unique identifier for the device. */
|
|
20091
20111
|
device_id: string;
|
|
20092
20112
|
/** Type of the device. */
|
|
20093
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
20113
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
20094
20114
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
20095
20115
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
20096
20116
|
/** Properties of the device. */
|
|
@@ -20280,6 +20300,10 @@ interface Routes {
|
|
|
20280
20300
|
ecobee_device_id: string;
|
|
20281
20301
|
device_name: string;
|
|
20282
20302
|
} | undefined;
|
|
20303
|
+
honeywell_metadata?: {
|
|
20304
|
+
honeywell_device_id: string;
|
|
20305
|
+
device_name: string;
|
|
20306
|
+
} | undefined;
|
|
20283
20307
|
hubitat_metadata?: {
|
|
20284
20308
|
device_id: string;
|
|
20285
20309
|
device_name: string;
|
|
@@ -20551,7 +20575,7 @@ interface Routes {
|
|
|
20551
20575
|
/** Unique identifier for the device. */
|
|
20552
20576
|
device_id: string;
|
|
20553
20577
|
/** Type of the device. */
|
|
20554
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
20578
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
20555
20579
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
20556
20580
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
20557
20581
|
/** Properties of the device. */
|
|
@@ -20741,6 +20765,10 @@ interface Routes {
|
|
|
20741
20765
|
ecobee_device_id: string;
|
|
20742
20766
|
device_name: string;
|
|
20743
20767
|
} | undefined;
|
|
20768
|
+
honeywell_metadata?: {
|
|
20769
|
+
honeywell_device_id: string;
|
|
20770
|
+
device_name: string;
|
|
20771
|
+
} | undefined;
|
|
20744
20772
|
hubitat_metadata?: {
|
|
20745
20773
|
device_id: string;
|
|
20746
20774
|
device_name: string;
|
|
@@ -21020,9 +21048,9 @@ interface Routes {
|
|
|
21020
21048
|
connected_account_id?: string | undefined;
|
|
21021
21049
|
connected_account_ids?: string[] | undefined;
|
|
21022
21050
|
connect_webview_id?: string | undefined;
|
|
21023
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
21024
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
21025
|
-
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') | undefined;
|
|
21051
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
21052
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
21053
|
+
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') | undefined;
|
|
21026
21054
|
device_ids?: string[] | undefined;
|
|
21027
21055
|
limit?: number;
|
|
21028
21056
|
created_before?: Date | undefined;
|
|
@@ -21035,7 +21063,7 @@ interface Routes {
|
|
|
21035
21063
|
/** Unique identifier for the device. */
|
|
21036
21064
|
device_id: string;
|
|
21037
21065
|
/** Type of the device. */
|
|
21038
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
21066
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
21039
21067
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
21040
21068
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
21041
21069
|
/** Properties of the device. */
|
|
@@ -21225,6 +21253,10 @@ interface Routes {
|
|
|
21225
21253
|
ecobee_device_id: string;
|
|
21226
21254
|
device_name: string;
|
|
21227
21255
|
} | undefined;
|
|
21256
|
+
honeywell_metadata?: {
|
|
21257
|
+
honeywell_device_id: string;
|
|
21258
|
+
device_name: string;
|
|
21259
|
+
} | undefined;
|
|
21228
21260
|
hubitat_metadata?: {
|
|
21229
21261
|
device_id: string;
|
|
21230
21262
|
device_name: string;
|
|
@@ -21496,7 +21528,7 @@ interface Routes {
|
|
|
21496
21528
|
/** Unique identifier for the device. */
|
|
21497
21529
|
device_id: string;
|
|
21498
21530
|
/** Type of the device. */
|
|
21499
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
21531
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
21500
21532
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
21501
21533
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
21502
21534
|
/** Properties of the device. */
|
|
@@ -21686,6 +21718,10 @@ interface Routes {
|
|
|
21686
21718
|
ecobee_device_id: string;
|
|
21687
21719
|
device_name: string;
|
|
21688
21720
|
} | undefined;
|
|
21721
|
+
honeywell_metadata?: {
|
|
21722
|
+
honeywell_device_id: string;
|
|
21723
|
+
device_name: string;
|
|
21724
|
+
} | undefined;
|
|
21689
21725
|
hubitat_metadata?: {
|
|
21690
21726
|
device_id: string;
|
|
21691
21727
|
device_name: string;
|
|
@@ -22560,7 +22596,7 @@ interface Routes {
|
|
|
22560
22596
|
/** Unique identifier for the device. */
|
|
22561
22597
|
device_id: string;
|
|
22562
22598
|
/** Type of the device. */
|
|
22563
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
22599
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
22564
22600
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
22565
22601
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
22566
22602
|
/** Properties of the device. */
|
|
@@ -22750,6 +22786,10 @@ interface Routes {
|
|
|
22750
22786
|
ecobee_device_id: string;
|
|
22751
22787
|
device_name: string;
|
|
22752
22788
|
} | undefined;
|
|
22789
|
+
honeywell_metadata?: {
|
|
22790
|
+
honeywell_device_id: string;
|
|
22791
|
+
device_name: string;
|
|
22792
|
+
} | undefined;
|
|
22753
22793
|
hubitat_metadata?: {
|
|
22754
22794
|
device_id: string;
|
|
22755
22795
|
device_name: string;
|
|
@@ -23059,9 +23099,9 @@ interface Routes {
|
|
|
23059
23099
|
connected_account_id?: string | undefined;
|
|
23060
23100
|
connected_account_ids?: string[] | undefined;
|
|
23061
23101
|
connect_webview_id?: string | undefined;
|
|
23062
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
23063
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
23064
|
-
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') | undefined;
|
|
23102
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
23103
|
+
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
23104
|
+
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') | undefined;
|
|
23065
23105
|
device_ids?: string[] | undefined;
|
|
23066
23106
|
limit?: number;
|
|
23067
23107
|
created_before?: Date | undefined;
|
|
@@ -23074,7 +23114,7 @@ interface Routes {
|
|
|
23074
23114
|
/** Unique identifier for the device. */
|
|
23075
23115
|
device_id: string;
|
|
23076
23116
|
/** Type of the device. */
|
|
23077
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
23117
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
23078
23118
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
23079
23119
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
23080
23120
|
/** Properties of the device. */
|
|
@@ -23264,6 +23304,10 @@ interface Routes {
|
|
|
23264
23304
|
ecobee_device_id: string;
|
|
23265
23305
|
device_name: string;
|
|
23266
23306
|
} | undefined;
|
|
23307
|
+
honeywell_metadata?: {
|
|
23308
|
+
honeywell_device_id: string;
|
|
23309
|
+
device_name: string;
|
|
23310
|
+
} | undefined;
|
|
23267
23311
|
hubitat_metadata?: {
|
|
23268
23312
|
device_id: string;
|
|
23269
23313
|
device_name: string;
|
|
@@ -23760,7 +23804,7 @@ interface Routes {
|
|
|
23760
23804
|
/** Unique identifier for the device. */
|
|
23761
23805
|
device_id: string;
|
|
23762
23806
|
/** Type of the device. */
|
|
23763
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
23807
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_thermostat') | ('ios_phone' | 'android_phone');
|
|
23764
23808
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
23765
23809
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
23766
23810
|
/** Properties of the device. */
|
|
@@ -23950,6 +23994,10 @@ interface Routes {
|
|
|
23950
23994
|
ecobee_device_id: string;
|
|
23951
23995
|
device_name: string;
|
|
23952
23996
|
} | undefined;
|
|
23997
|
+
honeywell_metadata?: {
|
|
23998
|
+
honeywell_device_id: string;
|
|
23999
|
+
device_name: string;
|
|
24000
|
+
} | undefined;
|
|
23953
24001
|
hubitat_metadata?: {
|
|
23954
24002
|
device_id: string;
|
|
23955
24003
|
device_name: string;
|
|
@@ -1065,6 +1065,18 @@ declare const _default: {
|
|
|
1065
1065
|
required: string[];
|
|
1066
1066
|
type: string;
|
|
1067
1067
|
};
|
|
1068
|
+
honeywell_metadata: {
|
|
1069
|
+
properties: {
|
|
1070
|
+
device_name: {
|
|
1071
|
+
type: string;
|
|
1072
|
+
};
|
|
1073
|
+
honeywell_device_id: {
|
|
1074
|
+
type: string;
|
|
1075
|
+
};
|
|
1076
|
+
};
|
|
1077
|
+
required: string[];
|
|
1078
|
+
type: string;
|
|
1079
|
+
};
|
|
1068
1080
|
hubitat_metadata: {
|
|
1069
1081
|
properties: {
|
|
1070
1082
|
device_id: {
|
|
@@ -579,7 +579,11 @@ export default {
|
|
|
579
579
|
type: 'string',
|
|
580
580
|
},
|
|
581
581
|
{
|
|
582
|
-
enum: [
|
|
582
|
+
enum: [
|
|
583
|
+
'ecobee_thermostat',
|
|
584
|
+
'nest_thermostat',
|
|
585
|
+
'honeywell_thermostat',
|
|
586
|
+
],
|
|
583
587
|
type: 'string',
|
|
584
588
|
},
|
|
585
589
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -880,6 +884,14 @@ export default {
|
|
|
880
884
|
required: ['device_name', 'door_name'],
|
|
881
885
|
type: 'object',
|
|
882
886
|
},
|
|
887
|
+
honeywell_metadata: {
|
|
888
|
+
properties: {
|
|
889
|
+
device_name: { type: 'string' },
|
|
890
|
+
honeywell_device_id: { type: 'string' },
|
|
891
|
+
},
|
|
892
|
+
required: ['honeywell_device_id', 'device_name'],
|
|
893
|
+
type: 'object',
|
|
894
|
+
},
|
|
883
895
|
hubitat_metadata: {
|
|
884
896
|
properties: {
|
|
885
897
|
device_id: { type: 'string' },
|
|
@@ -2009,7 +2021,11 @@ export default {
|
|
|
2009
2021
|
type: 'string',
|
|
2010
2022
|
},
|
|
2011
2023
|
{
|
|
2012
|
-
enum: [
|
|
2024
|
+
enum: [
|
|
2025
|
+
'ecobee_thermostat',
|
|
2026
|
+
'nest_thermostat',
|
|
2027
|
+
'honeywell_thermostat',
|
|
2028
|
+
],
|
|
2013
2029
|
type: 'string',
|
|
2014
2030
|
},
|
|
2015
2031
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -7542,7 +7558,11 @@ export default {
|
|
|
7542
7558
|
type: 'string',
|
|
7543
7559
|
},
|
|
7544
7560
|
{
|
|
7545
|
-
enum: [
|
|
7561
|
+
enum: [
|
|
7562
|
+
'ecobee_thermostat',
|
|
7563
|
+
'nest_thermostat',
|
|
7564
|
+
'honeywell_thermostat',
|
|
7565
|
+
],
|
|
7546
7566
|
type: 'string',
|
|
7547
7567
|
},
|
|
7548
7568
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -7587,7 +7607,11 @@ export default {
|
|
|
7587
7607
|
type: 'string',
|
|
7588
7608
|
},
|
|
7589
7609
|
{
|
|
7590
|
-
enum: [
|
|
7610
|
+
enum: [
|
|
7611
|
+
'ecobee_thermostat',
|
|
7612
|
+
'nest_thermostat',
|
|
7613
|
+
'honeywell_thermostat',
|
|
7614
|
+
],
|
|
7591
7615
|
type: 'string',
|
|
7592
7616
|
},
|
|
7593
7617
|
{
|
|
@@ -7634,6 +7658,7 @@ export default {
|
|
|
7634
7658
|
'smartthings',
|
|
7635
7659
|
'dormakaba_oracode',
|
|
7636
7660
|
'tedee',
|
|
7661
|
+
'honeywell',
|
|
7637
7662
|
],
|
|
7638
7663
|
type: 'string',
|
|
7639
7664
|
},
|
|
@@ -7853,7 +7878,11 @@ export default {
|
|
|
7853
7878
|
type: 'string',
|
|
7854
7879
|
},
|
|
7855
7880
|
{
|
|
7856
|
-
enum: [
|
|
7881
|
+
enum: [
|
|
7882
|
+
'ecobee_thermostat',
|
|
7883
|
+
'nest_thermostat',
|
|
7884
|
+
'honeywell_thermostat',
|
|
7885
|
+
],
|
|
7857
7886
|
type: 'string',
|
|
7858
7887
|
},
|
|
7859
7888
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -7898,7 +7927,11 @@ export default {
|
|
|
7898
7927
|
type: 'string',
|
|
7899
7928
|
},
|
|
7900
7929
|
{
|
|
7901
|
-
enum: [
|
|
7930
|
+
enum: [
|
|
7931
|
+
'ecobee_thermostat',
|
|
7932
|
+
'nest_thermostat',
|
|
7933
|
+
'honeywell_thermostat',
|
|
7934
|
+
],
|
|
7902
7935
|
type: 'string',
|
|
7903
7936
|
},
|
|
7904
7937
|
{
|
|
@@ -7945,6 +7978,7 @@ export default {
|
|
|
7945
7978
|
'smartthings',
|
|
7946
7979
|
'dormakaba_oracode',
|
|
7947
7980
|
'tedee',
|
|
7981
|
+
'honeywell',
|
|
7948
7982
|
],
|
|
7949
7983
|
type: 'string',
|
|
7950
7984
|
},
|
|
@@ -8308,6 +8342,7 @@ export default {
|
|
|
8308
8342
|
'access_code.unmanaged.removed',
|
|
8309
8343
|
'lock.locked',
|
|
8310
8344
|
'lock.unlocked',
|
|
8345
|
+
'phone.deactivated',
|
|
8311
8346
|
'connected_account.connected',
|
|
8312
8347
|
'connected_account.successful_login',
|
|
8313
8348
|
'connected_account.created',
|
|
@@ -8358,6 +8393,7 @@ export default {
|
|
|
8358
8393
|
'access_code.unmanaged.removed',
|
|
8359
8394
|
'lock.locked',
|
|
8360
8395
|
'lock.unlocked',
|
|
8396
|
+
'phone.deactivated',
|
|
8361
8397
|
'connected_account.connected',
|
|
8362
8398
|
'connected_account.successful_login',
|
|
8363
8399
|
'connected_account.created',
|
|
@@ -8766,7 +8802,11 @@ export default {
|
|
|
8766
8802
|
type: 'string',
|
|
8767
8803
|
},
|
|
8768
8804
|
{
|
|
8769
|
-
enum: [
|
|
8805
|
+
enum: [
|
|
8806
|
+
'ecobee_thermostat',
|
|
8807
|
+
'nest_thermostat',
|
|
8808
|
+
'honeywell_thermostat',
|
|
8809
|
+
],
|
|
8770
8810
|
type: 'string',
|
|
8771
8811
|
},
|
|
8772
8812
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -8811,7 +8851,11 @@ export default {
|
|
|
8811
8851
|
type: 'string',
|
|
8812
8852
|
},
|
|
8813
8853
|
{
|
|
8814
|
-
enum: [
|
|
8854
|
+
enum: [
|
|
8855
|
+
'ecobee_thermostat',
|
|
8856
|
+
'nest_thermostat',
|
|
8857
|
+
'honeywell_thermostat',
|
|
8858
|
+
],
|
|
8815
8859
|
type: 'string',
|
|
8816
8860
|
},
|
|
8817
8861
|
{
|
|
@@ -8858,6 +8902,7 @@ export default {
|
|
|
8858
8902
|
'smartthings',
|
|
8859
8903
|
'dormakaba_oracode',
|
|
8860
8904
|
'tedee',
|
|
8905
|
+
'honeywell',
|
|
8861
8906
|
],
|
|
8862
8907
|
type: 'string',
|
|
8863
8908
|
},
|
|
@@ -10441,7 +10486,11 @@ export default {
|
|
|
10441
10486
|
type: 'string',
|
|
10442
10487
|
},
|
|
10443
10488
|
{
|
|
10444
|
-
enum: [
|
|
10489
|
+
enum: [
|
|
10490
|
+
'ecobee_thermostat',
|
|
10491
|
+
'nest_thermostat',
|
|
10492
|
+
'honeywell_thermostat',
|
|
10493
|
+
],
|
|
10445
10494
|
type: 'string',
|
|
10446
10495
|
},
|
|
10447
10496
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -10486,7 +10535,11 @@ export default {
|
|
|
10486
10535
|
type: 'string',
|
|
10487
10536
|
},
|
|
10488
10537
|
{
|
|
10489
|
-
enum: [
|
|
10538
|
+
enum: [
|
|
10539
|
+
'ecobee_thermostat',
|
|
10540
|
+
'nest_thermostat',
|
|
10541
|
+
'honeywell_thermostat',
|
|
10542
|
+
],
|
|
10490
10543
|
type: 'string',
|
|
10491
10544
|
},
|
|
10492
10545
|
{
|
|
@@ -10533,6 +10586,7 @@ export default {
|
|
|
10533
10586
|
'smartthings',
|
|
10534
10587
|
'dormakaba_oracode',
|
|
10535
10588
|
'tedee',
|
|
10589
|
+
'honeywell',
|
|
10536
10590
|
],
|
|
10537
10591
|
type: 'string',
|
|
10538
10592
|
},
|