@seamapi/types 1.396.0 → 1.397.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 +102 -94
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +113 -106
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +0 -53
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +0 -23
- package/lib/seam/connect/models/acs/acs-users/acs-user.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 +3 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +3 -3
- package/lib/seam/connect/models/thermostats/thermostat-program.js +16 -6
- package/lib/seam/connect/models/thermostats/thermostat-program.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +10 -5
- package/lib/seam/connect/openapi.js +72 -56
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +97 -95
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +0 -35
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/models/thermostats/thermostat-program.ts +29 -15
- package/src/lib/seam/connect/openapi.ts +111 -56
- package/src/lib/seam/connect/route-types.ts +97 -74
|
@@ -19049,7 +19049,7 @@ export interface Routes {
|
|
|
19049
19049
|
/** Unique identifier for the device. */
|
|
19050
19050
|
device_id: string;
|
|
19051
19051
|
/** Type of the device. */
|
|
19052
|
-
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');
|
|
19052
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
19053
19053
|
/** Optional nickname to describe the device, settable through Seam */
|
|
19054
19054
|
nickname?: string | undefined;
|
|
19055
19055
|
/** 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. */
|
|
@@ -19533,15 +19533,15 @@ export interface Routes {
|
|
|
19533
19533
|
thermostat_daily_programs?: (Array<{
|
|
19534
19534
|
/** ID of the thermostat daily program. */
|
|
19535
19535
|
thermostat_daily_program_id: string;
|
|
19536
|
-
/** ID of the
|
|
19536
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
19537
19537
|
device_id: string;
|
|
19538
19538
|
/** User-friendly name to identify the thermostat daily program. */
|
|
19539
19539
|
name: string | null;
|
|
19540
19540
|
/** Array of thermostat daily program periods. */
|
|
19541
19541
|
periods: Array<{
|
|
19542
|
-
/** Time at which the thermostat daily program
|
|
19542
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
19543
19543
|
starts_at_time: string;
|
|
19544
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
19544
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
19545
19545
|
climate_preset_key: string;
|
|
19546
19546
|
}>;
|
|
19547
19547
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -19813,9 +19813,9 @@ export interface Routes {
|
|
|
19813
19813
|
/** ID of the Connect Webview by which to filter devices. */
|
|
19814
19814
|
connect_webview_id?: string | undefined;
|
|
19815
19815
|
/** Device type by which to filter devices. */
|
|
19816
|
-
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;
|
|
19816
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
19817
19817
|
/** Array of device types by which to filter devices. */
|
|
19818
|
-
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;
|
|
19818
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
19819
19819
|
/** Manufacturer by which to filter devices. */
|
|
19820
19820
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi') | undefined;
|
|
19821
19821
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -19843,7 +19843,7 @@ export interface Routes {
|
|
|
19843
19843
|
/** Unique identifier for the device. */
|
|
19844
19844
|
device_id: string;
|
|
19845
19845
|
/** Type of the device. */
|
|
19846
|
-
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');
|
|
19846
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
19847
19847
|
/** Optional nickname to describe the device, settable through Seam */
|
|
19848
19848
|
nickname?: string | undefined;
|
|
19849
19849
|
/** 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. */
|
|
@@ -20327,15 +20327,15 @@ export interface Routes {
|
|
|
20327
20327
|
thermostat_daily_programs?: (Array<{
|
|
20328
20328
|
/** ID of the thermostat daily program. */
|
|
20329
20329
|
thermostat_daily_program_id: string;
|
|
20330
|
-
/** ID of the
|
|
20330
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
20331
20331
|
device_id: string;
|
|
20332
20332
|
/** User-friendly name to identify the thermostat daily program. */
|
|
20333
20333
|
name: string | null;
|
|
20334
20334
|
/** Array of thermostat daily program periods. */
|
|
20335
20335
|
periods: Array<{
|
|
20336
|
-
/** Time at which the thermostat daily program
|
|
20336
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
20337
20337
|
starts_at_time: string;
|
|
20338
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
20338
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
20339
20339
|
climate_preset_key: string;
|
|
20340
20340
|
}>;
|
|
20341
20341
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -20680,7 +20680,7 @@ export interface Routes {
|
|
|
20680
20680
|
/** Unique identifier for the device. */
|
|
20681
20681
|
device_id: string;
|
|
20682
20682
|
/** Type of the device. */
|
|
20683
|
-
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');
|
|
20683
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
20684
20684
|
/** Unique identifier for the account associated with the device. */
|
|
20685
20685
|
connected_account_id: string;
|
|
20686
20686
|
/** Location information for the device. */
|
|
@@ -20960,9 +20960,9 @@ export interface Routes {
|
|
|
20960
20960
|
/** ID of the Connect Webview by which to filter devices. */
|
|
20961
20961
|
connect_webview_id?: string | undefined;
|
|
20962
20962
|
/** Device type by which to filter devices. */
|
|
20963
|
-
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;
|
|
20963
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
20964
20964
|
/** Array of device types by which to filter devices. */
|
|
20965
|
-
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;
|
|
20965
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
20966
20966
|
/** Manufacturer by which to filter devices. */
|
|
20967
20967
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi') | undefined;
|
|
20968
20968
|
/** Array of device IDs by which to filter devices. */
|
|
@@ -20990,7 +20990,7 @@ export interface Routes {
|
|
|
20990
20990
|
/** Unique identifier for the device. */
|
|
20991
20991
|
device_id: string;
|
|
20992
20992
|
/** Type of the device. */
|
|
20993
|
-
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');
|
|
20993
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
20994
20994
|
/** Unique identifier for the account associated with the device. */
|
|
20995
20995
|
connected_account_id: string;
|
|
20996
20996
|
/** Location information for the device. */
|
|
@@ -24066,7 +24066,7 @@ export interface Routes {
|
|
|
24066
24066
|
/** Unique identifier for the device. */
|
|
24067
24067
|
device_id: string;
|
|
24068
24068
|
/** Type of the device. */
|
|
24069
|
-
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');
|
|
24069
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
24070
24070
|
/** Optional nickname to describe the device, settable through Seam */
|
|
24071
24071
|
nickname?: string | undefined;
|
|
24072
24072
|
/** 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. */
|
|
@@ -24550,15 +24550,15 @@ export interface Routes {
|
|
|
24550
24550
|
thermostat_daily_programs?: (Array<{
|
|
24551
24551
|
/** ID of the thermostat daily program. */
|
|
24552
24552
|
thermostat_daily_program_id: string;
|
|
24553
|
-
/** ID of the
|
|
24553
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
24554
24554
|
device_id: string;
|
|
24555
24555
|
/** User-friendly name to identify the thermostat daily program. */
|
|
24556
24556
|
name: string | null;
|
|
24557
24557
|
/** Array of thermostat daily program periods. */
|
|
24558
24558
|
periods: Array<{
|
|
24559
|
-
/** Time at which the thermostat daily program
|
|
24559
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
24560
24560
|
starts_at_time: string;
|
|
24561
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
24561
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
24562
24562
|
climate_preset_key: string;
|
|
24563
24563
|
}>;
|
|
24564
24564
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -24819,7 +24819,7 @@ export interface Routes {
|
|
|
24819
24819
|
/** Unique identifier for the device. */
|
|
24820
24820
|
device_id: string;
|
|
24821
24821
|
/** Type of the device. */
|
|
24822
|
-
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');
|
|
24822
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
24823
24823
|
/** Optional nickname to describe the device, settable through Seam */
|
|
24824
24824
|
nickname?: string | undefined;
|
|
24825
24825
|
/** 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. */
|
|
@@ -25303,15 +25303,15 @@ export interface Routes {
|
|
|
25303
25303
|
thermostat_daily_programs?: (Array<{
|
|
25304
25304
|
/** ID of the thermostat daily program. */
|
|
25305
25305
|
thermostat_daily_program_id: string;
|
|
25306
|
-
/** ID of the
|
|
25306
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
25307
25307
|
device_id: string;
|
|
25308
25308
|
/** User-friendly name to identify the thermostat daily program. */
|
|
25309
25309
|
name: string | null;
|
|
25310
25310
|
/** Array of thermostat daily program periods. */
|
|
25311
25311
|
periods: Array<{
|
|
25312
|
-
/** Time at which the thermostat daily program
|
|
25312
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
25313
25313
|
starts_at_time: string;
|
|
25314
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
25314
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
25315
25315
|
climate_preset_key: string;
|
|
25316
25316
|
}>;
|
|
25317
25317
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -25613,7 +25613,7 @@ export interface Routes {
|
|
|
25613
25613
|
/** Unique identifier for the device. */
|
|
25614
25614
|
device_id: string;
|
|
25615
25615
|
/** Type of the device. */
|
|
25616
|
-
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');
|
|
25616
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
25617
25617
|
/** Optional nickname to describe the device, settable through Seam */
|
|
25618
25618
|
nickname?: string | undefined;
|
|
25619
25619
|
/** 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. */
|
|
@@ -26097,15 +26097,15 @@ export interface Routes {
|
|
|
26097
26097
|
thermostat_daily_programs?: (Array<{
|
|
26098
26098
|
/** ID of the thermostat daily program. */
|
|
26099
26099
|
thermostat_daily_program_id: string;
|
|
26100
|
-
/** ID of the
|
|
26100
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
26101
26101
|
device_id: string;
|
|
26102
26102
|
/** User-friendly name to identify the thermostat daily program. */
|
|
26103
26103
|
name: string | null;
|
|
26104
26104
|
/** Array of thermostat daily program periods. */
|
|
26105
26105
|
periods: Array<{
|
|
26106
|
-
/** Time at which the thermostat daily program
|
|
26106
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
26107
26107
|
starts_at_time: string;
|
|
26108
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
26108
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
26109
26109
|
climate_preset_key: string;
|
|
26110
26110
|
}>;
|
|
26111
26111
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -26365,7 +26365,7 @@ export interface Routes {
|
|
|
26365
26365
|
/** Unique identifier for the device. */
|
|
26366
26366
|
device_id: string;
|
|
26367
26367
|
/** Type of the device. */
|
|
26368
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | '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');
|
|
26368
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | '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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
26369
26369
|
/** Optional nickname to describe the device, settable through Seam */
|
|
26370
26370
|
nickname?: string | undefined;
|
|
26371
26371
|
/** 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. */
|
|
@@ -26849,15 +26849,15 @@ export interface Routes {
|
|
|
26849
26849
|
thermostat_daily_programs?: (Array<{
|
|
26850
26850
|
/** ID of the thermostat daily program. */
|
|
26851
26851
|
thermostat_daily_program_id: string;
|
|
26852
|
-
/** ID of the
|
|
26852
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
26853
26853
|
device_id: string;
|
|
26854
26854
|
/** User-friendly name to identify the thermostat daily program. */
|
|
26855
26855
|
name: string | null;
|
|
26856
26856
|
/** Array of thermostat daily program periods. */
|
|
26857
26857
|
periods: Array<{
|
|
26858
|
-
/** Time at which the thermostat daily program
|
|
26858
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
26859
26859
|
starts_at_time: string;
|
|
26860
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
26860
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
26861
26861
|
climate_preset_key: string;
|
|
26862
26862
|
}>;
|
|
26863
26863
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -31657,7 +31657,7 @@ export interface Routes {
|
|
|
31657
31657
|
/** Unique identifier for the device. */
|
|
31658
31658
|
device_id: string;
|
|
31659
31659
|
/** Type of the device. */
|
|
31660
|
-
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');
|
|
31660
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
31661
31661
|
/** Optional nickname to describe the device, settable through Seam */
|
|
31662
31662
|
nickname?: string | undefined;
|
|
31663
31663
|
/** 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. */
|
|
@@ -32141,15 +32141,15 @@ export interface Routes {
|
|
|
32141
32141
|
thermostat_daily_programs?: (Array<{
|
|
32142
32142
|
/** ID of the thermostat daily program. */
|
|
32143
32143
|
thermostat_daily_program_id: string;
|
|
32144
|
-
/** ID of the
|
|
32144
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
32145
32145
|
device_id: string;
|
|
32146
32146
|
/** User-friendly name to identify the thermostat daily program. */
|
|
32147
32147
|
name: string | null;
|
|
32148
32148
|
/** Array of thermostat daily program periods. */
|
|
32149
32149
|
periods: Array<{
|
|
32150
|
-
/** Time at which the thermostat daily program
|
|
32150
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
32151
32151
|
starts_at_time: string;
|
|
32152
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
32152
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
32153
32153
|
climate_preset_key: string;
|
|
32154
32154
|
}>;
|
|
32155
32155
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -32409,7 +32409,7 @@ export interface Routes {
|
|
|
32409
32409
|
/** Unique identifier for the device. */
|
|
32410
32410
|
device_id: string;
|
|
32411
32411
|
/** Type of the device. */
|
|
32412
|
-
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');
|
|
32412
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
32413
32413
|
/** Optional nickname to describe the device, settable through Seam */
|
|
32414
32414
|
nickname?: string | undefined;
|
|
32415
32415
|
/** 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. */
|
|
@@ -32893,15 +32893,15 @@ export interface Routes {
|
|
|
32893
32893
|
thermostat_daily_programs?: (Array<{
|
|
32894
32894
|
/** ID of the thermostat daily program. */
|
|
32895
32895
|
thermostat_daily_program_id: string;
|
|
32896
|
-
/** ID of the
|
|
32896
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
32897
32897
|
device_id: string;
|
|
32898
32898
|
/** User-friendly name to identify the thermostat daily program. */
|
|
32899
32899
|
name: string | null;
|
|
32900
32900
|
/** Array of thermostat daily program periods. */
|
|
32901
32901
|
periods: Array<{
|
|
32902
|
-
/** Time at which the thermostat daily program
|
|
32902
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
32903
32903
|
starts_at_time: string;
|
|
32904
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
32904
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
32905
32905
|
climate_preset_key: string;
|
|
32906
32906
|
}>;
|
|
32907
32907
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -37183,9 +37183,9 @@ export interface Routes {
|
|
|
37183
37183
|
method: 'POST';
|
|
37184
37184
|
queryParams: {};
|
|
37185
37185
|
jsonBody: {
|
|
37186
|
-
/** ID of the
|
|
37186
|
+
/** ID of the thermostat device for which you want to activate a climate preset. */
|
|
37187
37187
|
device_id: string;
|
|
37188
|
-
/** Climate preset key of the
|
|
37188
|
+
/** Climate preset key of the climate preset that you want to activate. */
|
|
37189
37189
|
climate_preset_key: string;
|
|
37190
37190
|
};
|
|
37191
37191
|
commonParams: {};
|
|
@@ -38301,7 +38301,7 @@ export interface Routes {
|
|
|
38301
38301
|
method: 'POST';
|
|
38302
38302
|
queryParams: {};
|
|
38303
38303
|
jsonBody: {
|
|
38304
|
-
/** ID of the
|
|
38304
|
+
/** ID of the thermostat device that you want to set to cool mode. */
|
|
38305
38305
|
device_id: string;
|
|
38306
38306
|
/** Desired [cooling set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `cooling_set_point` parameters. */
|
|
38307
38307
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -39423,7 +39423,7 @@ export interface Routes {
|
|
|
39423
39423
|
method: 'POST';
|
|
39424
39424
|
queryParams: {};
|
|
39425
39425
|
jsonBody: {
|
|
39426
|
-
/** ID of the
|
|
39426
|
+
/** ID of the thermostat device for which you want create a climate preset. */
|
|
39427
39427
|
device_id: string;
|
|
39428
39428
|
/** Indicates whether a person at the thermostat or using the API can change the thermostat's settings.
|
|
39429
39429
|
* @deprecated Use 'thermostat_schedule.is_override_allowed' */
|
|
@@ -39454,33 +39454,34 @@ export interface Routes {
|
|
|
39454
39454
|
method: 'POST';
|
|
39455
39455
|
queryParams: {};
|
|
39456
39456
|
jsonBody: {
|
|
39457
|
-
/** ID of the
|
|
39457
|
+
/** ID of the thermostat device for which you want to create a daily program. */
|
|
39458
39458
|
device_id: string;
|
|
39459
39459
|
/** User-friendly name to identify the thermostat daily program. */
|
|
39460
39460
|
name?: string | undefined;
|
|
39461
39461
|
/** Array of thermostat daily program periods. */
|
|
39462
39462
|
periods: Array<{
|
|
39463
|
-
/** Time at which the thermostat daily program
|
|
39463
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
39464
39464
|
starts_at_time: string;
|
|
39465
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
39465
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
39466
39466
|
climate_preset_key: string;
|
|
39467
39467
|
}>;
|
|
39468
39468
|
};
|
|
39469
39469
|
commonParams: {};
|
|
39470
39470
|
formData: {};
|
|
39471
39471
|
jsonResponse: {
|
|
39472
|
+
/** Represents a thermostat daily program, consisting of a set of periods, each of which has a starting time and the key that identifies the climate preset to apply at the starting time. */
|
|
39472
39473
|
thermostat_daily_program: {
|
|
39473
39474
|
/** ID of the thermostat daily program. */
|
|
39474
39475
|
thermostat_daily_program_id: string;
|
|
39475
|
-
/** ID of the
|
|
39476
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
39476
39477
|
device_id: string;
|
|
39477
39478
|
/** User-friendly name to identify the thermostat daily program. */
|
|
39478
39479
|
name: string | null;
|
|
39479
39480
|
/** Array of thermostat daily program periods. */
|
|
39480
39481
|
periods: Array<{
|
|
39481
|
-
/** Time at which the thermostat daily program
|
|
39482
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
39482
39483
|
starts_at_time: string;
|
|
39483
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
39484
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
39484
39485
|
climate_preset_key: string;
|
|
39485
39486
|
}>;
|
|
39486
39487
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -39496,7 +39497,7 @@ export interface Routes {
|
|
|
39496
39497
|
queryParams: {};
|
|
39497
39498
|
jsonBody: {};
|
|
39498
39499
|
commonParams: {
|
|
39499
|
-
/** ID of the
|
|
39500
|
+
/** ID of the thermostat daily program that you want to delete. */
|
|
39500
39501
|
thermostat_daily_program_id: string;
|
|
39501
39502
|
};
|
|
39502
39503
|
formData: {};
|
|
@@ -39507,15 +39508,15 @@ export interface Routes {
|
|
|
39507
39508
|
method: 'PATCH' | 'POST';
|
|
39508
39509
|
queryParams: {};
|
|
39509
39510
|
jsonBody: {
|
|
39510
|
-
/** ID of the
|
|
39511
|
+
/** ID of the thermostat daily program that you want to update. */
|
|
39511
39512
|
thermostat_daily_program_id: string;
|
|
39512
|
-
/** User-friendly name to identify the thermostat daily program. */
|
|
39513
|
+
/** User-friendly name to identify the thermostat daily program that you want to update. */
|
|
39513
39514
|
name?: string | undefined;
|
|
39514
|
-
/** Array of thermostat daily program periods. */
|
|
39515
|
+
/** Array of thermostat daily program periods. The periods that you specify overwrite any existing periods for the daily program. */
|
|
39515
39516
|
periods: Array<{
|
|
39516
|
-
/** Time at which the thermostat daily program
|
|
39517
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
39517
39518
|
starts_at_time: string;
|
|
39518
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
39519
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
39519
39520
|
climate_preset_key: string;
|
|
39520
39521
|
}>;
|
|
39521
39522
|
};
|
|
@@ -40632,9 +40633,9 @@ export interface Routes {
|
|
|
40632
40633
|
method: 'POST' | 'DELETE';
|
|
40633
40634
|
queryParams: {};
|
|
40634
40635
|
jsonBody: {
|
|
40635
|
-
/** ID of the
|
|
40636
|
+
/** ID of the thermostat device for which you want to delete a climate preset. */
|
|
40636
40637
|
device_id: string;
|
|
40637
|
-
/** Climate preset key of the
|
|
40638
|
+
/** Climate preset key of the climate preset that you want to delete. */
|
|
40638
40639
|
climate_preset_key: string;
|
|
40639
40640
|
};
|
|
40640
40641
|
commonParams: {};
|
|
@@ -40647,9 +40648,9 @@ export interface Routes {
|
|
|
40647
40648
|
queryParams: {};
|
|
40648
40649
|
jsonBody: {};
|
|
40649
40650
|
commonParams: {
|
|
40650
|
-
/** ID of the
|
|
40651
|
+
/** ID of the thermostat device that you want to retrieve. */
|
|
40651
40652
|
device_id?: string | undefined;
|
|
40652
|
-
/** User-friendly name of the
|
|
40653
|
+
/** User-friendly name of the thermostat device that you want to retrieve. */
|
|
40653
40654
|
name?: string | undefined;
|
|
40654
40655
|
};
|
|
40655
40656
|
formData: {};
|
|
@@ -40659,7 +40660,7 @@ export interface Routes {
|
|
|
40659
40660
|
/** Unique identifier for the device. */
|
|
40660
40661
|
device_id: string;
|
|
40661
40662
|
/** Type of the device. */
|
|
40662
|
-
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');
|
|
40663
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
40663
40664
|
/** Optional nickname to describe the device, settable through Seam */
|
|
40664
40665
|
nickname?: string | undefined;
|
|
40665
40666
|
/** 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. */
|
|
@@ -41143,15 +41144,15 @@ export interface Routes {
|
|
|
41143
41144
|
thermostat_daily_programs?: (Array<{
|
|
41144
41145
|
/** ID of the thermostat daily program. */
|
|
41145
41146
|
thermostat_daily_program_id: string;
|
|
41146
|
-
/** ID of the
|
|
41147
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
41147
41148
|
device_id: string;
|
|
41148
41149
|
/** User-friendly name to identify the thermostat daily program. */
|
|
41149
41150
|
name: string | null;
|
|
41150
41151
|
/** Array of thermostat daily program periods. */
|
|
41151
41152
|
periods: Array<{
|
|
41152
|
-
/** Time at which the thermostat daily program
|
|
41153
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
41153
41154
|
starts_at_time: string;
|
|
41154
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
41155
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
41155
41156
|
climate_preset_key: string;
|
|
41156
41157
|
}>;
|
|
41157
41158
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -41414,7 +41415,7 @@ export interface Routes {
|
|
|
41414
41415
|
method: 'POST';
|
|
41415
41416
|
queryParams: {};
|
|
41416
41417
|
jsonBody: {
|
|
41417
|
-
/** ID of the
|
|
41418
|
+
/** ID of the thermostat device that you want to set to heat mode. */
|
|
41418
41419
|
device_id: string;
|
|
41419
41420
|
/** Desired [heating set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `heating_set_point` parameters. */
|
|
41420
41421
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -42536,7 +42537,7 @@ export interface Routes {
|
|
|
42536
42537
|
method: 'POST';
|
|
42537
42538
|
queryParams: {};
|
|
42538
42539
|
jsonBody: {
|
|
42539
|
-
/** ID of the
|
|
42540
|
+
/** ID of the thermostat device that you want to set to heat-cool mode. */
|
|
42540
42541
|
device_id: string;
|
|
42541
42542
|
/** Desired [heating set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `heating_set_point` parameters. */
|
|
42542
42543
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -43670,11 +43671,11 @@ export interface Routes {
|
|
|
43670
43671
|
connected_account_ids?: string[] | undefined;
|
|
43671
43672
|
/** ID of the Connect Webview by which to filter devices. */
|
|
43672
43673
|
connect_webview_id?: string | undefined;
|
|
43673
|
-
/** Device type by which to filter devices. */
|
|
43674
|
-
device_type?: ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat') | undefined;
|
|
43675
|
-
/** Array of device types by which to filter devices. */
|
|
43676
|
-
device_types?: Array<'ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat'> | undefined;
|
|
43677
|
-
/** Manufacturer by which to filter devices. */
|
|
43674
|
+
/** Device type by which to filter thermostat devices. */
|
|
43675
|
+
device_type?: ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | undefined;
|
|
43676
|
+
/** Array of device types by which to filter thermostat devices. */
|
|
43677
|
+
device_types?: Array<'ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat'> | undefined;
|
|
43678
|
+
/** Manufacturer by which to filter thermostat devices. */
|
|
43678
43679
|
manufacturer?: ('ecobee' | 'honeywell_resideo' | 'nest' | 'tado' | 'sensi') | undefined;
|
|
43679
43680
|
/** Array of device IDs by which to filter devices. */
|
|
43680
43681
|
device_ids?: string[] | undefined;
|
|
@@ -43701,7 +43702,7 @@ export interface Routes {
|
|
|
43701
43702
|
/** Unique identifier for the device. */
|
|
43702
43703
|
device_id: string;
|
|
43703
43704
|
/** Type of the device. */
|
|
43704
|
-
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');
|
|
43705
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
43705
43706
|
/** Optional nickname to describe the device, settable through Seam */
|
|
43706
43707
|
nickname?: string | undefined;
|
|
43707
43708
|
/** 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. */
|
|
@@ -44185,15 +44186,15 @@ export interface Routes {
|
|
|
44185
44186
|
thermostat_daily_programs?: (Array<{
|
|
44186
44187
|
/** ID of the thermostat daily program. */
|
|
44187
44188
|
thermostat_daily_program_id: string;
|
|
44188
|
-
/** ID of the
|
|
44189
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
44189
44190
|
device_id: string;
|
|
44190
44191
|
/** User-friendly name to identify the thermostat daily program. */
|
|
44191
44192
|
name: string | null;
|
|
44192
44193
|
/** Array of thermostat daily program periods. */
|
|
44193
44194
|
periods: Array<{
|
|
44194
|
-
/** Time at which the thermostat daily program
|
|
44195
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
44195
44196
|
starts_at_time: string;
|
|
44196
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
44197
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
44197
44198
|
climate_preset_key: string;
|
|
44198
44199
|
}>;
|
|
44199
44200
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -44453,7 +44454,7 @@ export interface Routes {
|
|
|
44453
44454
|
/** Unique identifier for the device. */
|
|
44454
44455
|
device_id: string;
|
|
44455
44456
|
/** Type of the device. */
|
|
44456
|
-
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');
|
|
44457
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
44457
44458
|
/** Optional nickname to describe the device, settable through Seam */
|
|
44458
44459
|
nickname?: string | undefined;
|
|
44459
44460
|
/** 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. */
|
|
@@ -44937,15 +44938,15 @@ export interface Routes {
|
|
|
44937
44938
|
thermostat_daily_programs?: (Array<{
|
|
44938
44939
|
/** ID of the thermostat daily program. */
|
|
44939
44940
|
thermostat_daily_program_id: string;
|
|
44940
|
-
/** ID of the
|
|
44941
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
44941
44942
|
device_id: string;
|
|
44942
44943
|
/** User-friendly name to identify the thermostat daily program. */
|
|
44943
44944
|
name: string | null;
|
|
44944
44945
|
/** Array of thermostat daily program periods. */
|
|
44945
44946
|
periods: Array<{
|
|
44946
|
-
/** Time at which the thermostat daily program
|
|
44947
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
44947
44948
|
starts_at_time: string;
|
|
44948
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
44949
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
44949
44950
|
climate_preset_key: string;
|
|
44950
44951
|
}>;
|
|
44951
44952
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -45208,7 +45209,7 @@ export interface Routes {
|
|
|
45208
45209
|
method: 'POST';
|
|
45209
45210
|
queryParams: {};
|
|
45210
45211
|
jsonBody: {
|
|
45211
|
-
/** ID of the
|
|
45212
|
+
/** ID of the thermostat device that you want to set to off mode. */
|
|
45212
45213
|
device_id: string;
|
|
45213
45214
|
/** */
|
|
45214
45215
|
sync?: boolean;
|
|
@@ -46504,9 +46505,9 @@ export interface Routes {
|
|
|
46504
46505
|
method: 'POST';
|
|
46505
46506
|
queryParams: {};
|
|
46506
46507
|
jsonBody: {
|
|
46507
|
-
/** ID of the
|
|
46508
|
+
/** ID of the thermostat device for which you want to set the fallback climate preset. */
|
|
46508
46509
|
device_id: string;
|
|
46509
|
-
/** Climate preset key of the
|
|
46510
|
+
/** Climate preset key of the climate preset that you want to set as the fallback climate preset. */
|
|
46510
46511
|
climate_preset_key: string;
|
|
46511
46512
|
};
|
|
46512
46513
|
commonParams: {};
|
|
@@ -46518,6 +46519,7 @@ export interface Routes {
|
|
|
46518
46519
|
method: 'POST';
|
|
46519
46520
|
queryParams: {};
|
|
46520
46521
|
jsonBody: {
|
|
46522
|
+
/** ID of the thermostat device for which you want to set the fan mode. */
|
|
46521
46523
|
device_id: string;
|
|
46522
46524
|
/**
|
|
46523
46525
|
* @deprecated Use `fan_mode_setting` instead. */
|
|
@@ -47641,11 +47643,11 @@ export interface Routes {
|
|
|
47641
47643
|
queryParams: {};
|
|
47642
47644
|
jsonBody: {
|
|
47643
47645
|
hvac_mode_setting: 'off';
|
|
47644
|
-
/** ID of the
|
|
47646
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
47645
47647
|
device_id: string;
|
|
47646
47648
|
} | {
|
|
47647
47649
|
hvac_mode_setting: 'cool';
|
|
47648
|
-
/** ID of the
|
|
47650
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
47649
47651
|
device_id: string;
|
|
47650
47652
|
/** Desired [cooling set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `cooling_set_point` parameters. */
|
|
47651
47653
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -47653,7 +47655,7 @@ export interface Routes {
|
|
|
47653
47655
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
47654
47656
|
} | {
|
|
47655
47657
|
hvac_mode_setting: 'heat';
|
|
47656
|
-
/** ID of the
|
|
47658
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
47657
47659
|
device_id: string;
|
|
47658
47660
|
/** Desired [heating set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `heating_set_point` parameters. */
|
|
47659
47661
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -47661,7 +47663,7 @@ export interface Routes {
|
|
|
47661
47663
|
heating_set_point_fahrenheit?: number | undefined;
|
|
47662
47664
|
} | {
|
|
47663
47665
|
hvac_mode_setting: 'heat_cool';
|
|
47664
|
-
/** ID of the
|
|
47666
|
+
/** ID of the thermostat device for which you want to set the HVAC mode. */
|
|
47665
47667
|
device_id: string;
|
|
47666
47668
|
/** Desired [cooling set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points) in °C. You must set one of the `cooling_set_point` parameters. */
|
|
47667
47669
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -48785,7 +48787,7 @@ export interface Routes {
|
|
|
48785
48787
|
method: 'POST' | 'PATCH';
|
|
48786
48788
|
queryParams: {};
|
|
48787
48789
|
jsonBody: {
|
|
48788
|
-
/** ID of the
|
|
48790
|
+
/** ID of the thermostat device for which you want to set a temperature threshold. */
|
|
48789
48791
|
device_id: string;
|
|
48790
48792
|
/** Lower temperature limit in in °C. Seam alerts you if the reported temperature is lower than this value. You can specify either `lower_limit` but not both. */
|
|
48791
48793
|
lower_limit_celsius?: (number | undefined) | null;
|
|
@@ -48866,7 +48868,7 @@ export interface Routes {
|
|
|
48866
48868
|
method: 'POST' | 'PATCH';
|
|
48867
48869
|
queryParams: {};
|
|
48868
48870
|
jsonBody: {
|
|
48869
|
-
/** ID of the
|
|
48871
|
+
/** ID of the thermostat device for which you want to update a climate preset. */
|
|
48870
48872
|
device_id: string;
|
|
48871
48873
|
/** Unique key to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
|
|
48872
48874
|
climate_preset_key: string;
|
|
@@ -48897,7 +48899,7 @@ export interface Routes {
|
|
|
48897
48899
|
method: 'POST';
|
|
48898
48900
|
queryParams: {};
|
|
48899
48901
|
jsonBody: {
|
|
48900
|
-
/** ID of the thermostat device
|
|
48902
|
+
/** ID of the thermostat device for which you want to update the weekly program. */
|
|
48901
48903
|
device_id: string;
|
|
48902
48904
|
/** ID of the thermostat daily program to run on Mondays. */
|
|
48903
48905
|
monday_program_id?: (string | undefined) | null;
|
|
@@ -50706,7 +50708,7 @@ export interface Routes {
|
|
|
50706
50708
|
/** Unique identifier for the device. */
|
|
50707
50709
|
device_id: string;
|
|
50708
50710
|
/** Type of the device. */
|
|
50709
|
-
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');
|
|
50711
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
50710
50712
|
/** Optional nickname to describe the device, settable through Seam */
|
|
50711
50713
|
nickname?: string | undefined;
|
|
50712
50714
|
/** 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. */
|
|
@@ -51190,15 +51192,15 @@ export interface Routes {
|
|
|
51190
51192
|
thermostat_daily_programs?: (Array<{
|
|
51191
51193
|
/** ID of the thermostat daily program. */
|
|
51192
51194
|
thermostat_daily_program_id: string;
|
|
51193
|
-
/** ID of the
|
|
51195
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
51194
51196
|
device_id: string;
|
|
51195
51197
|
/** User-friendly name to identify the thermostat daily program. */
|
|
51196
51198
|
name: string | null;
|
|
51197
51199
|
/** Array of thermostat daily program periods. */
|
|
51198
51200
|
periods: Array<{
|
|
51199
|
-
/** Time at which the thermostat daily program
|
|
51201
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
51200
51202
|
starts_at_time: string;
|
|
51201
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
51203
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
51202
51204
|
climate_preset_key: string;
|
|
51203
51205
|
}>;
|
|
51204
51206
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|
|
@@ -51460,7 +51462,7 @@ export interface Routes {
|
|
|
51460
51462
|
/** Unique identifier for the device. */
|
|
51461
51463
|
device_id: string;
|
|
51462
51464
|
/** Type of the device. */
|
|
51463
|
-
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');
|
|
51465
|
+
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' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
51464
51466
|
/** Optional nickname to describe the device, settable through Seam */
|
|
51465
51467
|
nickname?: string | undefined;
|
|
51466
51468
|
/** 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. */
|
|
@@ -51944,15 +51946,15 @@ export interface Routes {
|
|
|
51944
51946
|
thermostat_daily_programs?: (Array<{
|
|
51945
51947
|
/** ID of the thermostat daily program. */
|
|
51946
51948
|
thermostat_daily_program_id: string;
|
|
51947
|
-
/** ID of the
|
|
51949
|
+
/** ID of the thermostat device on which the thermostat daily program is configured. */
|
|
51948
51950
|
device_id: string;
|
|
51949
51951
|
/** User-friendly name to identify the thermostat daily program. */
|
|
51950
51952
|
name: string | null;
|
|
51951
51953
|
/** Array of thermostat daily program periods. */
|
|
51952
51954
|
periods: Array<{
|
|
51953
|
-
/** Time at which the thermostat daily program
|
|
51955
|
+
/** Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
51954
51956
|
starts_at_time: string;
|
|
51955
|
-
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
51957
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`. */
|
|
51956
51958
|
climate_preset_key: string;
|
|
51957
51959
|
}>;
|
|
51958
51960
|
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the thermostat daily program. */
|