@seamapi/types 1.258.2 → 1.259.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 +52 -25
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +169 -63
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +3 -3
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +3 -3
- package/lib/seam/connect/models/devices/device-metadata.d.ts +18 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.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 +33 -7
- package/lib/seam/connect/models/devices/phone.d.ts +22 -4
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +24 -6
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +2 -2
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +12 -2
- package/lib/seam/connect/openapi.js +28 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +98 -46
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +28 -6
- package/src/lib/seam/connect/route-types.ts +124 -16
|
@@ -3765,7 +3765,7 @@ export interface Routes {
|
|
|
3765
3765
|
/** Unique identifier for the device. */
|
|
3766
3766
|
device_id: string;
|
|
3767
3767
|
/** Type of the device. */
|
|
3768
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
3768
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
3769
3769
|
/** Optional nickname to describe the device, settable through Seam */
|
|
3770
3770
|
nickname?: string | undefined;
|
|
3771
3771
|
/** 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. */
|
|
@@ -4054,6 +4054,10 @@ export interface Routes {
|
|
|
4054
4054
|
visionline_metadata?: {
|
|
4055
4055
|
encoder_id: string;
|
|
4056
4056
|
} | undefined;
|
|
4057
|
+
akiles_metadata?: {
|
|
4058
|
+
gadget_name: string;
|
|
4059
|
+
gadget_id: string;
|
|
4060
|
+
} | undefined;
|
|
4057
4061
|
}) & ({
|
|
4058
4062
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
4059
4063
|
code_constraints?: (Array<{
|
|
@@ -4135,7 +4139,7 @@ export interface Routes {
|
|
|
4135
4139
|
device_id: string;
|
|
4136
4140
|
name?: string | undefined;
|
|
4137
4141
|
climate_preset_key: string;
|
|
4138
|
-
max_override_period_minutes
|
|
4142
|
+
max_override_period_minutes: number;
|
|
4139
4143
|
starts_at: string;
|
|
4140
4144
|
ends_at: string;
|
|
4141
4145
|
created_at: string;
|
|
@@ -7152,7 +7156,7 @@ export interface Routes {
|
|
|
7152
7156
|
/** Unique identifier for the device. */
|
|
7153
7157
|
device_id: string;
|
|
7154
7158
|
/** Type of the device. */
|
|
7155
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
7159
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
7156
7160
|
/** Optional nickname to describe the device, settable through Seam */
|
|
7157
7161
|
nickname?: string | undefined;
|
|
7158
7162
|
/** 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. */
|
|
@@ -7441,6 +7445,10 @@ export interface Routes {
|
|
|
7441
7445
|
visionline_metadata?: {
|
|
7442
7446
|
encoder_id: string;
|
|
7443
7447
|
} | undefined;
|
|
7448
|
+
akiles_metadata?: {
|
|
7449
|
+
gadget_name: string;
|
|
7450
|
+
gadget_id: string;
|
|
7451
|
+
} | undefined;
|
|
7444
7452
|
}) & ({
|
|
7445
7453
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
7446
7454
|
code_constraints?: (Array<{
|
|
@@ -7522,7 +7530,7 @@ export interface Routes {
|
|
|
7522
7530
|
device_id: string;
|
|
7523
7531
|
name?: string | undefined;
|
|
7524
7532
|
climate_preset_key: string;
|
|
7525
|
-
max_override_period_minutes
|
|
7533
|
+
max_override_period_minutes: number;
|
|
7526
7534
|
starts_at: string;
|
|
7527
7535
|
ends_at: string;
|
|
7528
7536
|
created_at: string;
|
|
@@ -7595,9 +7603,9 @@ export interface Routes {
|
|
|
7595
7603
|
connected_account_id?: string | undefined;
|
|
7596
7604
|
connected_account_ids?: string[] | undefined;
|
|
7597
7605
|
connect_webview_id?: string | undefined;
|
|
7598
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
7599
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
7600
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
7606
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
7607
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
7608
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
7601
7609
|
device_ids?: string[] | undefined;
|
|
7602
7610
|
limit?: number;
|
|
7603
7611
|
created_before?: Date | undefined;
|
|
@@ -7612,7 +7620,7 @@ export interface Routes {
|
|
|
7612
7620
|
/** Unique identifier for the device. */
|
|
7613
7621
|
device_id: string;
|
|
7614
7622
|
/** Type of the device. */
|
|
7615
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
7623
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
7616
7624
|
/** Optional nickname to describe the device, settable through Seam */
|
|
7617
7625
|
nickname?: string | undefined;
|
|
7618
7626
|
/** 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. */
|
|
@@ -7901,6 +7909,10 @@ export interface Routes {
|
|
|
7901
7909
|
visionline_metadata?: {
|
|
7902
7910
|
encoder_id: string;
|
|
7903
7911
|
} | undefined;
|
|
7912
|
+
akiles_metadata?: {
|
|
7913
|
+
gadget_name: string;
|
|
7914
|
+
gadget_id: string;
|
|
7915
|
+
} | undefined;
|
|
7904
7916
|
}) & ({
|
|
7905
7917
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
7906
7918
|
code_constraints?: (Array<{
|
|
@@ -7982,7 +7994,7 @@ export interface Routes {
|
|
|
7982
7994
|
device_id: string;
|
|
7983
7995
|
name?: string | undefined;
|
|
7984
7996
|
climate_preset_key: string;
|
|
7985
|
-
max_override_period_minutes
|
|
7997
|
+
max_override_period_minutes: number;
|
|
7986
7998
|
starts_at: string;
|
|
7987
7999
|
ends_at: string;
|
|
7988
8000
|
created_at: string;
|
|
@@ -8122,7 +8134,7 @@ export interface Routes {
|
|
|
8122
8134
|
/** Unique identifier for the device. */
|
|
8123
8135
|
device_id: string;
|
|
8124
8136
|
/** Type of the device. */
|
|
8125
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8137
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8126
8138
|
/** Unique identifier for the account associated with the device. */
|
|
8127
8139
|
connected_account_id: string;
|
|
8128
8140
|
/** Location information for the device. */
|
|
@@ -8228,9 +8240,9 @@ export interface Routes {
|
|
|
8228
8240
|
connected_account_id?: string | undefined;
|
|
8229
8241
|
connected_account_ids?: string[] | undefined;
|
|
8230
8242
|
connect_webview_id?: string | undefined;
|
|
8231
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
8232
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
8233
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
8243
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
8244
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
8245
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
8234
8246
|
device_ids?: string[] | undefined;
|
|
8235
8247
|
limit?: number;
|
|
8236
8248
|
created_before?: Date | undefined;
|
|
@@ -8245,7 +8257,7 @@ export interface Routes {
|
|
|
8245
8257
|
/** Unique identifier for the device. */
|
|
8246
8258
|
device_id: string;
|
|
8247
8259
|
/** Type of the device. */
|
|
8248
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8260
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8249
8261
|
/** Unique identifier for the account associated with the device. */
|
|
8250
8262
|
connected_account_id: string;
|
|
8251
8263
|
/** Location information for the device. */
|
|
@@ -8470,7 +8482,7 @@ export interface Routes {
|
|
|
8470
8482
|
/** Unique identifier for the device. */
|
|
8471
8483
|
device_id: string;
|
|
8472
8484
|
/** Type of the device. */
|
|
8473
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8485
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8474
8486
|
/** Optional nickname to describe the device, settable through Seam */
|
|
8475
8487
|
nickname?: string | undefined;
|
|
8476
8488
|
/** 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. */
|
|
@@ -8759,6 +8771,10 @@ export interface Routes {
|
|
|
8759
8771
|
visionline_metadata?: {
|
|
8760
8772
|
encoder_id: string;
|
|
8761
8773
|
} | undefined;
|
|
8774
|
+
akiles_metadata?: {
|
|
8775
|
+
gadget_name: string;
|
|
8776
|
+
gadget_id: string;
|
|
8777
|
+
} | undefined;
|
|
8762
8778
|
}) & ({
|
|
8763
8779
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
8764
8780
|
code_constraints?: (Array<{
|
|
@@ -8840,7 +8856,7 @@ export interface Routes {
|
|
|
8840
8856
|
device_id: string;
|
|
8841
8857
|
name?: string | undefined;
|
|
8842
8858
|
climate_preset_key: string;
|
|
8843
|
-
max_override_period_minutes
|
|
8859
|
+
max_override_period_minutes: number;
|
|
8844
8860
|
starts_at: string;
|
|
8845
8861
|
ends_at: string;
|
|
8846
8862
|
created_at: string;
|
|
@@ -8905,7 +8921,7 @@ export interface Routes {
|
|
|
8905
8921
|
/** Unique identifier for the device. */
|
|
8906
8922
|
device_id: string;
|
|
8907
8923
|
/** Type of the device. */
|
|
8908
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8924
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
8909
8925
|
/** Optional nickname to describe the device, settable through Seam */
|
|
8910
8926
|
nickname?: string | undefined;
|
|
8911
8927
|
/** 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. */
|
|
@@ -9194,6 +9210,10 @@ export interface Routes {
|
|
|
9194
9210
|
visionline_metadata?: {
|
|
9195
9211
|
encoder_id: string;
|
|
9196
9212
|
} | undefined;
|
|
9213
|
+
akiles_metadata?: {
|
|
9214
|
+
gadget_name: string;
|
|
9215
|
+
gadget_id: string;
|
|
9216
|
+
} | undefined;
|
|
9197
9217
|
}) & ({
|
|
9198
9218
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
9199
9219
|
code_constraints?: (Array<{
|
|
@@ -9275,7 +9295,7 @@ export interface Routes {
|
|
|
9275
9295
|
device_id: string;
|
|
9276
9296
|
name?: string | undefined;
|
|
9277
9297
|
climate_preset_key: string;
|
|
9278
|
-
max_override_period_minutes
|
|
9298
|
+
max_override_period_minutes: number;
|
|
9279
9299
|
starts_at: string;
|
|
9280
9300
|
ends_at: string;
|
|
9281
9301
|
created_at: string;
|
|
@@ -9348,9 +9368,9 @@ export interface Routes {
|
|
|
9348
9368
|
connected_account_id?: string | undefined;
|
|
9349
9369
|
connected_account_ids?: string[] | undefined;
|
|
9350
9370
|
connect_webview_id?: string | undefined;
|
|
9351
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
9352
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
9353
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
9371
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
9372
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
9373
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
9354
9374
|
device_ids?: string[] | undefined;
|
|
9355
9375
|
limit?: number;
|
|
9356
9376
|
created_before?: Date | undefined;
|
|
@@ -9365,7 +9385,7 @@ export interface Routes {
|
|
|
9365
9385
|
/** Unique identifier for the device. */
|
|
9366
9386
|
device_id: string;
|
|
9367
9387
|
/** Type of the device. */
|
|
9368
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
9388
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
9369
9389
|
/** Optional nickname to describe the device, settable through Seam */
|
|
9370
9390
|
nickname?: string | undefined;
|
|
9371
9391
|
/** 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. */
|
|
@@ -9654,6 +9674,10 @@ export interface Routes {
|
|
|
9654
9674
|
visionline_metadata?: {
|
|
9655
9675
|
encoder_id: string;
|
|
9656
9676
|
} | undefined;
|
|
9677
|
+
akiles_metadata?: {
|
|
9678
|
+
gadget_name: string;
|
|
9679
|
+
gadget_id: string;
|
|
9680
|
+
} | undefined;
|
|
9657
9681
|
}) & ({
|
|
9658
9682
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
9659
9683
|
code_constraints?: (Array<{
|
|
@@ -9735,7 +9759,7 @@ export interface Routes {
|
|
|
9735
9759
|
device_id: string;
|
|
9736
9760
|
name?: string | undefined;
|
|
9737
9761
|
climate_preset_key: string;
|
|
9738
|
-
max_override_period_minutes
|
|
9762
|
+
max_override_period_minutes: number;
|
|
9739
9763
|
starts_at: string;
|
|
9740
9764
|
ends_at: string;
|
|
9741
9765
|
created_at: string;
|
|
@@ -9800,7 +9824,7 @@ export interface Routes {
|
|
|
9800
9824
|
/** Unique identifier for the device. */
|
|
9801
9825
|
device_id: string;
|
|
9802
9826
|
/** Type of the device. */
|
|
9803
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
9827
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
9804
9828
|
/** Optional nickname to describe the device, settable through Seam */
|
|
9805
9829
|
nickname?: string | undefined;
|
|
9806
9830
|
/** 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. */
|
|
@@ -10089,6 +10113,10 @@ export interface Routes {
|
|
|
10089
10113
|
visionline_metadata?: {
|
|
10090
10114
|
encoder_id: string;
|
|
10091
10115
|
} | undefined;
|
|
10116
|
+
akiles_metadata?: {
|
|
10117
|
+
gadget_name: string;
|
|
10118
|
+
gadget_id: string;
|
|
10119
|
+
} | undefined;
|
|
10092
10120
|
}) & ({
|
|
10093
10121
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
10094
10122
|
code_constraints?: (Array<{
|
|
@@ -10170,7 +10198,7 @@ export interface Routes {
|
|
|
10170
10198
|
device_id: string;
|
|
10171
10199
|
name?: string | undefined;
|
|
10172
10200
|
climate_preset_key: string;
|
|
10173
|
-
max_override_period_minutes
|
|
10201
|
+
max_override_period_minutes: number;
|
|
10174
10202
|
starts_at: string;
|
|
10175
10203
|
ends_at: string;
|
|
10176
10204
|
created_at: string;
|
|
@@ -11189,9 +11217,9 @@ export interface Routes {
|
|
|
11189
11217
|
connected_account_id?: string | undefined;
|
|
11190
11218
|
connected_account_ids?: string[] | undefined;
|
|
11191
11219
|
connect_webview_id?: string | undefined;
|
|
11192
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
11193
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
11194
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
11220
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
11221
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
11222
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
11195
11223
|
device_ids?: string[] | undefined;
|
|
11196
11224
|
limit?: number;
|
|
11197
11225
|
created_before?: Date | undefined;
|
|
@@ -11206,7 +11234,7 @@ export interface Routes {
|
|
|
11206
11234
|
/** Unique identifier for the device. */
|
|
11207
11235
|
device_id: string;
|
|
11208
11236
|
/** Type of the device. */
|
|
11209
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
11237
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
11210
11238
|
/** Optional nickname to describe the device, settable through Seam */
|
|
11211
11239
|
nickname?: string | undefined;
|
|
11212
11240
|
/** 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. */
|
|
@@ -11495,6 +11523,10 @@ export interface Routes {
|
|
|
11495
11523
|
visionline_metadata?: {
|
|
11496
11524
|
encoder_id: string;
|
|
11497
11525
|
} | undefined;
|
|
11526
|
+
akiles_metadata?: {
|
|
11527
|
+
gadget_name: string;
|
|
11528
|
+
gadget_id: string;
|
|
11529
|
+
} | undefined;
|
|
11498
11530
|
}) & ({
|
|
11499
11531
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
11500
11532
|
code_constraints?: (Array<{
|
|
@@ -11576,7 +11608,7 @@ export interface Routes {
|
|
|
11576
11608
|
device_id: string;
|
|
11577
11609
|
name?: string | undefined;
|
|
11578
11610
|
climate_preset_key: string;
|
|
11579
|
-
max_override_period_minutes
|
|
11611
|
+
max_override_period_minutes: number;
|
|
11580
11612
|
starts_at: string;
|
|
11581
11613
|
ends_at: string;
|
|
11582
11614
|
created_at: string;
|
|
@@ -11641,7 +11673,7 @@ export interface Routes {
|
|
|
11641
11673
|
/** Unique identifier for the device. */
|
|
11642
11674
|
device_id: string;
|
|
11643
11675
|
/** Type of the device. */
|
|
11644
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
11676
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
11645
11677
|
/** Optional nickname to describe the device, settable through Seam */
|
|
11646
11678
|
nickname?: string | undefined;
|
|
11647
11679
|
/** 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. */
|
|
@@ -11930,6 +11962,10 @@ export interface Routes {
|
|
|
11930
11962
|
visionline_metadata?: {
|
|
11931
11963
|
encoder_id: string;
|
|
11932
11964
|
} | undefined;
|
|
11965
|
+
akiles_metadata?: {
|
|
11966
|
+
gadget_name: string;
|
|
11967
|
+
gadget_id: string;
|
|
11968
|
+
} | undefined;
|
|
11933
11969
|
}) & ({
|
|
11934
11970
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
11935
11971
|
code_constraints?: (Array<{
|
|
@@ -12011,7 +12047,7 @@ export interface Routes {
|
|
|
12011
12047
|
device_id: string;
|
|
12012
12048
|
name?: string | undefined;
|
|
12013
12049
|
climate_preset_key: string;
|
|
12014
|
-
max_override_period_minutes
|
|
12050
|
+
max_override_period_minutes: number;
|
|
12015
12051
|
starts_at: string;
|
|
12016
12052
|
ends_at: string;
|
|
12017
12053
|
created_at: string;
|
|
@@ -14649,7 +14685,7 @@ export interface Routes {
|
|
|
14649
14685
|
/** Unique identifier for the device. */
|
|
14650
14686
|
device_id: string;
|
|
14651
14687
|
/** Type of the device. */
|
|
14652
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
14688
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
14653
14689
|
/** Optional nickname to describe the device, settable through Seam */
|
|
14654
14690
|
nickname?: string | undefined;
|
|
14655
14691
|
/** 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. */
|
|
@@ -14938,6 +14974,10 @@ export interface Routes {
|
|
|
14938
14974
|
visionline_metadata?: {
|
|
14939
14975
|
encoder_id: string;
|
|
14940
14976
|
} | undefined;
|
|
14977
|
+
akiles_metadata?: {
|
|
14978
|
+
gadget_name: string;
|
|
14979
|
+
gadget_id: string;
|
|
14980
|
+
} | undefined;
|
|
14941
14981
|
}) & ({
|
|
14942
14982
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
14943
14983
|
code_constraints?: (Array<{
|
|
@@ -15019,7 +15059,7 @@ export interface Routes {
|
|
|
15019
15059
|
device_id: string;
|
|
15020
15060
|
name?: string | undefined;
|
|
15021
15061
|
climate_preset_key: string;
|
|
15022
|
-
max_override_period_minutes
|
|
15062
|
+
max_override_period_minutes: number;
|
|
15023
15063
|
starts_at: string;
|
|
15024
15064
|
ends_at: string;
|
|
15025
15065
|
created_at: string;
|
|
@@ -16010,9 +16050,9 @@ export interface Routes {
|
|
|
16010
16050
|
connected_account_id?: string | undefined;
|
|
16011
16051
|
connected_account_ids?: string[] | undefined;
|
|
16012
16052
|
connect_webview_id?: string | undefined;
|
|
16013
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
16014
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
16015
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo') | undefined;
|
|
16053
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
16054
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
16055
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
16016
16056
|
device_ids?: string[] | undefined;
|
|
16017
16057
|
limit?: number;
|
|
16018
16058
|
created_before?: Date | undefined;
|
|
@@ -16027,7 +16067,7 @@ export interface Routes {
|
|
|
16027
16067
|
/** Unique identifier for the device. */
|
|
16028
16068
|
device_id: string;
|
|
16029
16069
|
/** Type of the device. */
|
|
16030
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
16070
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
16031
16071
|
/** Optional nickname to describe the device, settable through Seam */
|
|
16032
16072
|
nickname?: string | undefined;
|
|
16033
16073
|
/** 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. */
|
|
@@ -16316,6 +16356,10 @@ export interface Routes {
|
|
|
16316
16356
|
visionline_metadata?: {
|
|
16317
16357
|
encoder_id: string;
|
|
16318
16358
|
} | undefined;
|
|
16359
|
+
akiles_metadata?: {
|
|
16360
|
+
gadget_name: string;
|
|
16361
|
+
gadget_id: string;
|
|
16362
|
+
} | undefined;
|
|
16319
16363
|
}) & ({
|
|
16320
16364
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
16321
16365
|
code_constraints?: (Array<{
|
|
@@ -16397,7 +16441,7 @@ export interface Routes {
|
|
|
16397
16441
|
device_id: string;
|
|
16398
16442
|
name?: string | undefined;
|
|
16399
16443
|
climate_preset_key: string;
|
|
16400
|
-
max_override_period_minutes
|
|
16444
|
+
max_override_period_minutes: number;
|
|
16401
16445
|
starts_at: string;
|
|
16402
16446
|
ends_at: string;
|
|
16403
16447
|
created_at: string;
|
|
@@ -16936,7 +16980,7 @@ export interface Routes {
|
|
|
16936
16980
|
device_id: string;
|
|
16937
16981
|
name?: string | undefined;
|
|
16938
16982
|
climate_preset_key: string;
|
|
16939
|
-
max_override_period_minutes
|
|
16983
|
+
max_override_period_minutes: number;
|
|
16940
16984
|
starts_at: string;
|
|
16941
16985
|
ends_at: string;
|
|
16942
16986
|
created_at: string;
|
|
@@ -16971,7 +17015,7 @@ export interface Routes {
|
|
|
16971
17015
|
device_id: string;
|
|
16972
17016
|
name?: string | undefined;
|
|
16973
17017
|
climate_preset_key: string;
|
|
16974
|
-
max_override_period_minutes
|
|
17018
|
+
max_override_period_minutes: number;
|
|
16975
17019
|
starts_at: string;
|
|
16976
17020
|
ends_at: string;
|
|
16977
17021
|
created_at: string;
|
|
@@ -16996,7 +17040,7 @@ export interface Routes {
|
|
|
16996
17040
|
device_id: string;
|
|
16997
17041
|
name?: string | undefined;
|
|
16998
17042
|
climate_preset_key: string;
|
|
16999
|
-
max_override_period_minutes
|
|
17043
|
+
max_override_period_minutes: number;
|
|
17000
17044
|
starts_at: string;
|
|
17001
17045
|
ends_at: string;
|
|
17002
17046
|
created_at: string;
|
|
@@ -17706,7 +17750,7 @@ export interface Routes {
|
|
|
17706
17750
|
/** Unique identifier for the device. */
|
|
17707
17751
|
device_id: string;
|
|
17708
17752
|
/** Type of the device. */
|
|
17709
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
17753
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
17710
17754
|
/** Optional nickname to describe the device, settable through Seam */
|
|
17711
17755
|
nickname?: string | undefined;
|
|
17712
17756
|
/** 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. */
|
|
@@ -17995,6 +18039,10 @@ export interface Routes {
|
|
|
17995
18039
|
visionline_metadata?: {
|
|
17996
18040
|
encoder_id: string;
|
|
17997
18041
|
} | undefined;
|
|
18042
|
+
akiles_metadata?: {
|
|
18043
|
+
gadget_name: string;
|
|
18044
|
+
gadget_id: string;
|
|
18045
|
+
} | undefined;
|
|
17998
18046
|
}) & ({
|
|
17999
18047
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
18000
18048
|
code_constraints?: (Array<{
|
|
@@ -18076,7 +18124,7 @@ export interface Routes {
|
|
|
18076
18124
|
device_id: string;
|
|
18077
18125
|
name?: string | undefined;
|
|
18078
18126
|
climate_preset_key: string;
|
|
18079
|
-
max_override_period_minutes
|
|
18127
|
+
max_override_period_minutes: number;
|
|
18080
18128
|
starts_at: string;
|
|
18081
18129
|
ends_at: string;
|
|
18082
18130
|
created_at: string;
|
|
@@ -18143,7 +18191,7 @@ export interface Routes {
|
|
|
18143
18191
|
/** Unique identifier for the device. */
|
|
18144
18192
|
device_id: string;
|
|
18145
18193
|
/** Type of the device. */
|
|
18146
|
-
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_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
18194
|
+
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') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
18147
18195
|
/** Optional nickname to describe the device, settable through Seam */
|
|
18148
18196
|
nickname?: string | undefined;
|
|
18149
18197
|
/** 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. */
|
|
@@ -18432,6 +18480,10 @@ export interface Routes {
|
|
|
18432
18480
|
visionline_metadata?: {
|
|
18433
18481
|
encoder_id: string;
|
|
18434
18482
|
} | undefined;
|
|
18483
|
+
akiles_metadata?: {
|
|
18484
|
+
gadget_name: string;
|
|
18485
|
+
gadget_id: string;
|
|
18486
|
+
} | undefined;
|
|
18435
18487
|
}) & ({
|
|
18436
18488
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
18437
18489
|
code_constraints?: (Array<{
|
|
@@ -18513,7 +18565,7 @@ export interface Routes {
|
|
|
18513
18565
|
device_id: string;
|
|
18514
18566
|
name?: string | undefined;
|
|
18515
18567
|
climate_preset_key: string;
|
|
18516
|
-
max_override_period_minutes
|
|
18568
|
+
max_override_period_minutes: number;
|
|
18517
18569
|
starts_at: string;
|
|
18518
18570
|
ends_at: string;
|
|
18519
18571
|
created_at: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.259.0",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"zod": "^3.21.4"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@seamapi/blueprint": "^0.
|
|
95
|
+
"@seamapi/blueprint": "^0.23.0",
|
|
96
96
|
"@types/node": "^20.8.10",
|
|
97
97
|
"concurrently": "^8.2.0",
|
|
98
98
|
"del-cli": "^5.0.0",
|
|
@@ -5,7 +5,7 @@ export const thermostat_schedule = z.object({
|
|
|
5
5
|
device_id: z.string().uuid(),
|
|
6
6
|
name: z.string().optional(),
|
|
7
7
|
climate_preset_key: z.string(),
|
|
8
|
-
max_override_period_minutes: z.number().int().nonnegative()
|
|
8
|
+
max_override_period_minutes: z.number().int().nonnegative(),
|
|
9
9
|
starts_at: z.string().datetime(),
|
|
10
10
|
ends_at: z.string().datetime(),
|
|
11
11
|
created_at: z.string().datetime(),
|