@seamapi/types 1.715.0 → 1.717.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 +103 -31
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +578 -91
- package/dist/index.cjs +103 -31
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +132 -24
- package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +11 -11
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +2 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -5
- package/lib/seam/connect/models/devices/device-metadata.d.ts +38 -0
- package/lib/seam/connect/models/devices/device-metadata.js +17 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +64 -10
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +46 -8
- package/lib/seam/connect/openapi.d.ts +31 -0
- package/lib/seam/connect/openapi.js +70 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +304 -49
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +18 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +72 -10
- package/src/lib/seam/connect/route-types.ts +345 -5
|
@@ -10065,7 +10065,7 @@ export type Routes = {
|
|
|
10065
10065
|
/** ID of the device. */
|
|
10066
10066
|
device_id: string;
|
|
10067
10067
|
/** Type of the device. */
|
|
10068
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
10068
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
10069
10069
|
/** IDs of the spaces the device is in. */
|
|
10070
10070
|
space_ids: string[];
|
|
10071
10071
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -10668,13 +10668,28 @@ export type Routes = {
|
|
|
10668
10668
|
/** IANA timezone for the Ultraloq device. */
|
|
10669
10669
|
time_zone: string | null;
|
|
10670
10670
|
} | undefined;
|
|
10671
|
+
/** Metadata for a Korelock device. */
|
|
10672
|
+
korelock_metadata?: {
|
|
10673
|
+
/** Device ID for a Korelock device. */
|
|
10674
|
+
device_id?: string | undefined;
|
|
10675
|
+
/** Device name for a Korelock device. */
|
|
10676
|
+
device_name?: string | undefined;
|
|
10677
|
+
/** Model code for a Korelock device. */
|
|
10678
|
+
model_code?: string | undefined;
|
|
10679
|
+
/** Serial number for a Korelock device. */
|
|
10680
|
+
serial_number?: string | undefined;
|
|
10681
|
+
/** Firmware version for a Korelock device. */
|
|
10682
|
+
firmware_version?: string | undefined;
|
|
10683
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
10684
|
+
wifi_signal_strength?: number | undefined;
|
|
10685
|
+
} | undefined;
|
|
10671
10686
|
}) & ({
|
|
10672
10687
|
/** */
|
|
10673
10688
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
10674
10689
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
10675
10690
|
code_constraints?: (({
|
|
10676
10691
|
/** Code constraint type for access codes. */
|
|
10677
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
10692
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
10678
10693
|
} | {
|
|
10679
10694
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
10680
10695
|
/** Minimum name length constraint for access codes. */
|
|
@@ -13548,7 +13563,7 @@ export type Routes = {
|
|
|
13548
13563
|
/** ID of the device. */
|
|
13549
13564
|
device_id: string;
|
|
13550
13565
|
/** Type of the device. */
|
|
13551
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
13566
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
13552
13567
|
/** IDs of the spaces the device is in. */
|
|
13553
13568
|
space_ids: string[];
|
|
13554
13569
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -14151,13 +14166,28 @@ export type Routes = {
|
|
|
14151
14166
|
/** IANA timezone for the Ultraloq device. */
|
|
14152
14167
|
time_zone: string | null;
|
|
14153
14168
|
} | undefined;
|
|
14169
|
+
/** Metadata for a Korelock device. */
|
|
14170
|
+
korelock_metadata?: {
|
|
14171
|
+
/** Device ID for a Korelock device. */
|
|
14172
|
+
device_id?: string | undefined;
|
|
14173
|
+
/** Device name for a Korelock device. */
|
|
14174
|
+
device_name?: string | undefined;
|
|
14175
|
+
/** Model code for a Korelock device. */
|
|
14176
|
+
model_code?: string | undefined;
|
|
14177
|
+
/** Serial number for a Korelock device. */
|
|
14178
|
+
serial_number?: string | undefined;
|
|
14179
|
+
/** Firmware version for a Korelock device. */
|
|
14180
|
+
firmware_version?: string | undefined;
|
|
14181
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
14182
|
+
wifi_signal_strength?: number | undefined;
|
|
14183
|
+
} | undefined;
|
|
14154
14184
|
}) & ({
|
|
14155
14185
|
/** */
|
|
14156
14186
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
14157
14187
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
14158
14188
|
code_constraints?: (({
|
|
14159
14189
|
/** Code constraint type for access codes. */
|
|
14160
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
14190
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
14161
14191
|
} | {
|
|
14162
14192
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
14163
14193
|
/** Minimum name length constraint for access codes. */
|
|
@@ -25768,7 +25798,7 @@ export type Routes = {
|
|
|
25768
25798
|
/** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
|
|
25769
25799
|
customer_key?: string | undefined;
|
|
25770
25800
|
/** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with no filters. */
|
|
25771
|
-
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'dormakaba_ambiance' | 'ultraloq' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
25801
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq' | 'yale_access' | 'hid_cm' | 'google_nest')[] | undefined;
|
|
25772
25802
|
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
25773
25803
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
25774
25804
|
/** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/latest/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
@@ -27302,7 +27332,7 @@ export type Routes = {
|
|
|
27302
27332
|
/** ID of the device. */
|
|
27303
27333
|
device_id: string;
|
|
27304
27334
|
/** Type of the device. */
|
|
27305
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
27335
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
27306
27336
|
/** IDs of the spaces the device is in. */
|
|
27307
27337
|
space_ids: string[];
|
|
27308
27338
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -27905,13 +27935,28 @@ export type Routes = {
|
|
|
27905
27935
|
/** IANA timezone for the Ultraloq device. */
|
|
27906
27936
|
time_zone: string | null;
|
|
27907
27937
|
} | undefined;
|
|
27938
|
+
/** Metadata for a Korelock device. */
|
|
27939
|
+
korelock_metadata?: {
|
|
27940
|
+
/** Device ID for a Korelock device. */
|
|
27941
|
+
device_id?: string | undefined;
|
|
27942
|
+
/** Device name for a Korelock device. */
|
|
27943
|
+
device_name?: string | undefined;
|
|
27944
|
+
/** Model code for a Korelock device. */
|
|
27945
|
+
model_code?: string | undefined;
|
|
27946
|
+
/** Serial number for a Korelock device. */
|
|
27947
|
+
serial_number?: string | undefined;
|
|
27948
|
+
/** Firmware version for a Korelock device. */
|
|
27949
|
+
firmware_version?: string | undefined;
|
|
27950
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
27951
|
+
wifi_signal_strength?: number | undefined;
|
|
27952
|
+
} | undefined;
|
|
27908
27953
|
}) & ({
|
|
27909
27954
|
/** */
|
|
27910
27955
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
27911
27956
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
27912
27957
|
code_constraints?: (({
|
|
27913
27958
|
/** Code constraint type for access codes. */
|
|
27914
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
27959
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
27915
27960
|
} | {
|
|
27916
27961
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
27917
27962
|
/** Minimum name length constraint for access codes. */
|
|
@@ -28578,11 +28623,11 @@ export type Routes = {
|
|
|
28578
28623
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
28579
28624
|
connect_webview_id?: string | undefined;
|
|
28580
28625
|
/** Device type for which you want to list devices. */
|
|
28581
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
28626
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
28582
28627
|
/** Array of device types for which you want to list devices. */
|
|
28583
|
-
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | '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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
28628
|
+
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | '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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
28584
28629
|
/** Manufacturer for which you want to list devices. */
|
|
28585
|
-
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' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | '
|
|
28630
|
+
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' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
28586
28631
|
/** Array of device IDs for which you want to list devices. */
|
|
28587
28632
|
device_ids?: string[] | undefined;
|
|
28588
28633
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -28615,7 +28660,7 @@ export type Routes = {
|
|
|
28615
28660
|
/** ID of the device. */
|
|
28616
28661
|
device_id: string;
|
|
28617
28662
|
/** Type of the device. */
|
|
28618
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
28663
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
28619
28664
|
/** IDs of the spaces the device is in. */
|
|
28620
28665
|
space_ids: string[];
|
|
28621
28666
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -29218,13 +29263,28 @@ export type Routes = {
|
|
|
29218
29263
|
/** IANA timezone for the Ultraloq device. */
|
|
29219
29264
|
time_zone: string | null;
|
|
29220
29265
|
} | undefined;
|
|
29266
|
+
/** Metadata for a Korelock device. */
|
|
29267
|
+
korelock_metadata?: {
|
|
29268
|
+
/** Device ID for a Korelock device. */
|
|
29269
|
+
device_id?: string | undefined;
|
|
29270
|
+
/** Device name for a Korelock device. */
|
|
29271
|
+
device_name?: string | undefined;
|
|
29272
|
+
/** Model code for a Korelock device. */
|
|
29273
|
+
model_code?: string | undefined;
|
|
29274
|
+
/** Serial number for a Korelock device. */
|
|
29275
|
+
serial_number?: string | undefined;
|
|
29276
|
+
/** Firmware version for a Korelock device. */
|
|
29277
|
+
firmware_version?: string | undefined;
|
|
29278
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
29279
|
+
wifi_signal_strength?: number | undefined;
|
|
29280
|
+
} | undefined;
|
|
29221
29281
|
}) & ({
|
|
29222
29282
|
/** */
|
|
29223
29283
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
29224
29284
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
29225
29285
|
code_constraints?: (({
|
|
29226
29286
|
/** Code constraint type for access codes. */
|
|
29227
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
29287
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
29228
29288
|
} | {
|
|
29229
29289
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
29230
29290
|
/** Minimum name length constraint for access codes. */
|
|
@@ -29897,7 +29957,7 @@ export type Routes = {
|
|
|
29897
29957
|
formData: {};
|
|
29898
29958
|
jsonResponse: {
|
|
29899
29959
|
device_providers: {
|
|
29900
|
-
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'dormakaba_ambiance' | 'ultraloq';
|
|
29960
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'korelock' | 'dormakaba_ambiance' | 'ultraloq';
|
|
29901
29961
|
display_name: string;
|
|
29902
29962
|
image_url: string;
|
|
29903
29963
|
provider_categories: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems')[];
|
|
@@ -30041,7 +30101,7 @@ export type Routes = {
|
|
|
30041
30101
|
/** ID of the device. */
|
|
30042
30102
|
device_id: string;
|
|
30043
30103
|
/** Type of the device. */
|
|
30044
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
30104
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
30045
30105
|
/** Unique identifier for the account associated with the device. */
|
|
30046
30106
|
connected_account_id: string;
|
|
30047
30107
|
/** Location information for the device. */
|
|
@@ -30459,11 +30519,11 @@ export type Routes = {
|
|
|
30459
30519
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
30460
30520
|
connect_webview_id?: string | undefined;
|
|
30461
30521
|
/** Device type for which you want to list devices. */
|
|
30462
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
30522
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
30463
30523
|
/** Array of device types for which you want to list devices. */
|
|
30464
|
-
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | '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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
30524
|
+
device_types?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | '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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
30465
30525
|
/** Manufacturer for which you want to list devices. */
|
|
30466
|
-
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' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | '
|
|
30526
|
+
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' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq') | undefined;
|
|
30467
30527
|
/** Array of device IDs for which you want to list devices. */
|
|
30468
30528
|
device_ids?: string[] | undefined;
|
|
30469
30529
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -30496,7 +30556,7 @@ export type Routes = {
|
|
|
30496
30556
|
/** ID of the device. */
|
|
30497
30557
|
device_id: string;
|
|
30498
30558
|
/** Type of the device. */
|
|
30499
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
30559
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
30500
30560
|
/** Unique identifier for the account associated with the device. */
|
|
30501
30561
|
connected_account_id: string;
|
|
30502
30562
|
/** Location information for the device. */
|
|
@@ -35256,7 +35316,7 @@ export type Routes = {
|
|
|
35256
35316
|
/** ID of the device. */
|
|
35257
35317
|
device_id: string;
|
|
35258
35318
|
/** Type of the device. */
|
|
35259
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
35319
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
35260
35320
|
/** IDs of the spaces the device is in. */
|
|
35261
35321
|
space_ids: string[];
|
|
35262
35322
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -35859,13 +35919,28 @@ export type Routes = {
|
|
|
35859
35919
|
/** IANA timezone for the Ultraloq device. */
|
|
35860
35920
|
time_zone: string | null;
|
|
35861
35921
|
} | undefined;
|
|
35922
|
+
/** Metadata for a Korelock device. */
|
|
35923
|
+
korelock_metadata?: {
|
|
35924
|
+
/** Device ID for a Korelock device. */
|
|
35925
|
+
device_id?: string | undefined;
|
|
35926
|
+
/** Device name for a Korelock device. */
|
|
35927
|
+
device_name?: string | undefined;
|
|
35928
|
+
/** Model code for a Korelock device. */
|
|
35929
|
+
model_code?: string | undefined;
|
|
35930
|
+
/** Serial number for a Korelock device. */
|
|
35931
|
+
serial_number?: string | undefined;
|
|
35932
|
+
/** Firmware version for a Korelock device. */
|
|
35933
|
+
firmware_version?: string | undefined;
|
|
35934
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
35935
|
+
wifi_signal_strength?: number | undefined;
|
|
35936
|
+
} | undefined;
|
|
35862
35937
|
}) & ({
|
|
35863
35938
|
/** */
|
|
35864
35939
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
35865
35940
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
35866
35941
|
code_constraints?: (({
|
|
35867
35942
|
/** Code constraint type for access codes. */
|
|
35868
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
35943
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
35869
35944
|
} | {
|
|
35870
35945
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
35871
35946
|
/** Minimum name length constraint for access codes. */
|
|
@@ -36519,7 +36594,7 @@ export type Routes = {
|
|
|
36519
36594
|
/** ID of the device. */
|
|
36520
36595
|
device_id: string;
|
|
36521
36596
|
/** Type of the device. */
|
|
36522
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
36597
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
36523
36598
|
/** IDs of the spaces the device is in. */
|
|
36524
36599
|
space_ids: string[];
|
|
36525
36600
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -37122,13 +37197,28 @@ export type Routes = {
|
|
|
37122
37197
|
/** IANA timezone for the Ultraloq device. */
|
|
37123
37198
|
time_zone: string | null;
|
|
37124
37199
|
} | undefined;
|
|
37200
|
+
/** Metadata for a Korelock device. */
|
|
37201
|
+
korelock_metadata?: {
|
|
37202
|
+
/** Device ID for a Korelock device. */
|
|
37203
|
+
device_id?: string | undefined;
|
|
37204
|
+
/** Device name for a Korelock device. */
|
|
37205
|
+
device_name?: string | undefined;
|
|
37206
|
+
/** Model code for a Korelock device. */
|
|
37207
|
+
model_code?: string | undefined;
|
|
37208
|
+
/** Serial number for a Korelock device. */
|
|
37209
|
+
serial_number?: string | undefined;
|
|
37210
|
+
/** Firmware version for a Korelock device. */
|
|
37211
|
+
firmware_version?: string | undefined;
|
|
37212
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
37213
|
+
wifi_signal_strength?: number | undefined;
|
|
37214
|
+
} | undefined;
|
|
37125
37215
|
}) & ({
|
|
37126
37216
|
/** */
|
|
37127
37217
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
37128
37218
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
37129
37219
|
code_constraints?: (({
|
|
37130
37220
|
/** Code constraint type for access codes. */
|
|
37131
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
37221
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
37132
37222
|
} | {
|
|
37133
37223
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
37134
37224
|
/** Minimum name length constraint for access codes. */
|
|
@@ -37795,11 +37885,11 @@ export type Routes = {
|
|
|
37795
37885
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
37796
37886
|
connect_webview_id?: string | undefined;
|
|
37797
37887
|
/** Device type of the locks that you want to list. */
|
|
37798
|
-
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' | 'ultraloq_lock') | undefined;
|
|
37888
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | undefined;
|
|
37799
37889
|
/** Device types of the locks that you want to list. */
|
|
37800
|
-
device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | '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' | 'ultraloq_lock')[] | undefined;
|
|
37890
|
+
device_types?: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | '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' | 'ultraloq_lock' | 'korelock_lock')[] | undefined;
|
|
37801
37891
|
/** Manufacturer of the locks that you want to list. */
|
|
37802
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'kwikset2' | 'smartthings' | 'ultraloq') | undefined;
|
|
37892
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'korelock' | 'akiles' | 'korelock' | 'kwikset2' | 'smartthings' | 'ultraloq') | undefined;
|
|
37803
37893
|
/** Array of device IDs for which you want to list devices. */
|
|
37804
37894
|
device_ids?: string[] | undefined;
|
|
37805
37895
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -37832,7 +37922,7 @@ export type Routes = {
|
|
|
37832
37922
|
/** ID of the device. */
|
|
37833
37923
|
device_id: string;
|
|
37834
37924
|
/** Type of the device. */
|
|
37835
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
37925
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
37836
37926
|
/** IDs of the spaces the device is in. */
|
|
37837
37927
|
space_ids: string[];
|
|
37838
37928
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -38435,13 +38525,28 @@ export type Routes = {
|
|
|
38435
38525
|
/** IANA timezone for the Ultraloq device. */
|
|
38436
38526
|
time_zone: string | null;
|
|
38437
38527
|
} | undefined;
|
|
38528
|
+
/** Metadata for a Korelock device. */
|
|
38529
|
+
korelock_metadata?: {
|
|
38530
|
+
/** Device ID for a Korelock device. */
|
|
38531
|
+
device_id?: string | undefined;
|
|
38532
|
+
/** Device name for a Korelock device. */
|
|
38533
|
+
device_name?: string | undefined;
|
|
38534
|
+
/** Model code for a Korelock device. */
|
|
38535
|
+
model_code?: string | undefined;
|
|
38536
|
+
/** Serial number for a Korelock device. */
|
|
38537
|
+
serial_number?: string | undefined;
|
|
38538
|
+
/** Firmware version for a Korelock device. */
|
|
38539
|
+
firmware_version?: string | undefined;
|
|
38540
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
38541
|
+
wifi_signal_strength?: number | undefined;
|
|
38542
|
+
} | undefined;
|
|
38438
38543
|
}) & ({
|
|
38439
38544
|
/** */
|
|
38440
38545
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
38441
38546
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
38442
38547
|
code_constraints?: (({
|
|
38443
38548
|
/** Code constraint type for access codes. */
|
|
38444
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
38549
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
38445
38550
|
} | {
|
|
38446
38551
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
38447
38552
|
/** Minimum name length constraint for access codes. */
|
|
@@ -39094,7 +39199,7 @@ export type Routes = {
|
|
|
39094
39199
|
/** ID of the device. */
|
|
39095
39200
|
device_id: string;
|
|
39096
39201
|
/** Type of the device. */
|
|
39097
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
39202
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
39098
39203
|
/** IDs of the spaces the device is in. */
|
|
39099
39204
|
space_ids: string[];
|
|
39100
39205
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -39697,13 +39802,28 @@ export type Routes = {
|
|
|
39697
39802
|
/** IANA timezone for the Ultraloq device. */
|
|
39698
39803
|
time_zone: string | null;
|
|
39699
39804
|
} | undefined;
|
|
39805
|
+
/** Metadata for a Korelock device. */
|
|
39806
|
+
korelock_metadata?: {
|
|
39807
|
+
/** Device ID for a Korelock device. */
|
|
39808
|
+
device_id?: string | undefined;
|
|
39809
|
+
/** Device name for a Korelock device. */
|
|
39810
|
+
device_name?: string | undefined;
|
|
39811
|
+
/** Model code for a Korelock device. */
|
|
39812
|
+
model_code?: string | undefined;
|
|
39813
|
+
/** Serial number for a Korelock device. */
|
|
39814
|
+
serial_number?: string | undefined;
|
|
39815
|
+
/** Firmware version for a Korelock device. */
|
|
39816
|
+
firmware_version?: string | undefined;
|
|
39817
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
39818
|
+
wifi_signal_strength?: number | undefined;
|
|
39819
|
+
} | undefined;
|
|
39700
39820
|
}) & ({
|
|
39701
39821
|
/** */
|
|
39702
39822
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
39703
39823
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
39704
39824
|
code_constraints?: (({
|
|
39705
39825
|
/** Code constraint type for access codes. */
|
|
39706
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
39826
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
39707
39827
|
} | {
|
|
39708
39828
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
39709
39829
|
/** Minimum name length constraint for access codes. */
|
|
@@ -45489,7 +45609,7 @@ export type Routes = {
|
|
|
45489
45609
|
/** ID of the device. */
|
|
45490
45610
|
device_id: string;
|
|
45491
45611
|
/** Type of the device. */
|
|
45492
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
45612
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
45493
45613
|
/** IDs of the spaces the device is in. */
|
|
45494
45614
|
space_ids: string[];
|
|
45495
45615
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -46092,13 +46212,28 @@ export type Routes = {
|
|
|
46092
46212
|
/** IANA timezone for the Ultraloq device. */
|
|
46093
46213
|
time_zone: string | null;
|
|
46094
46214
|
} | undefined;
|
|
46215
|
+
/** Metadata for a Korelock device. */
|
|
46216
|
+
korelock_metadata?: {
|
|
46217
|
+
/** Device ID for a Korelock device. */
|
|
46218
|
+
device_id?: string | undefined;
|
|
46219
|
+
/** Device name for a Korelock device. */
|
|
46220
|
+
device_name?: string | undefined;
|
|
46221
|
+
/** Model code for a Korelock device. */
|
|
46222
|
+
model_code?: string | undefined;
|
|
46223
|
+
/** Serial number for a Korelock device. */
|
|
46224
|
+
serial_number?: string | undefined;
|
|
46225
|
+
/** Firmware version for a Korelock device. */
|
|
46226
|
+
firmware_version?: string | undefined;
|
|
46227
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
46228
|
+
wifi_signal_strength?: number | undefined;
|
|
46229
|
+
} | undefined;
|
|
46095
46230
|
}) & ({
|
|
46096
46231
|
/** */
|
|
46097
46232
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
46098
46233
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
46099
46234
|
code_constraints?: (({
|
|
46100
46235
|
/** Code constraint type for access codes. */
|
|
46101
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
46236
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
46102
46237
|
} | {
|
|
46103
46238
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
46104
46239
|
/** Minimum name length constraint for access codes. */
|
|
@@ -46751,7 +46886,7 @@ export type Routes = {
|
|
|
46751
46886
|
/** ID of the device. */
|
|
46752
46887
|
device_id: string;
|
|
46753
46888
|
/** Type of the device. */
|
|
46754
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
46889
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
46755
46890
|
/** IDs of the spaces the device is in. */
|
|
46756
46891
|
space_ids: string[];
|
|
46757
46892
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -47354,13 +47489,28 @@ export type Routes = {
|
|
|
47354
47489
|
/** IANA timezone for the Ultraloq device. */
|
|
47355
47490
|
time_zone: string | null;
|
|
47356
47491
|
} | undefined;
|
|
47492
|
+
/** Metadata for a Korelock device. */
|
|
47493
|
+
korelock_metadata?: {
|
|
47494
|
+
/** Device ID for a Korelock device. */
|
|
47495
|
+
device_id?: string | undefined;
|
|
47496
|
+
/** Device name for a Korelock device. */
|
|
47497
|
+
device_name?: string | undefined;
|
|
47498
|
+
/** Model code for a Korelock device. */
|
|
47499
|
+
model_code?: string | undefined;
|
|
47500
|
+
/** Serial number for a Korelock device. */
|
|
47501
|
+
serial_number?: string | undefined;
|
|
47502
|
+
/** Firmware version for a Korelock device. */
|
|
47503
|
+
firmware_version?: string | undefined;
|
|
47504
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
47505
|
+
wifi_signal_strength?: number | undefined;
|
|
47506
|
+
} | undefined;
|
|
47357
47507
|
}) & ({
|
|
47358
47508
|
/** */
|
|
47359
47509
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
47360
47510
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
47361
47511
|
code_constraints?: (({
|
|
47362
47512
|
/** Code constraint type for access codes. */
|
|
47363
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
47513
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
47364
47514
|
} | {
|
|
47365
47515
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
47366
47516
|
/** Minimum name length constraint for access codes. */
|
|
@@ -56875,7 +57025,7 @@ export type Routes = {
|
|
|
56875
57025
|
/** ID of the device. */
|
|
56876
57026
|
device_id: string;
|
|
56877
57027
|
/** Type of the device. */
|
|
56878
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
57028
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
56879
57029
|
/** IDs of the spaces the device is in. */
|
|
56880
57030
|
space_ids: string[];
|
|
56881
57031
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -57478,13 +57628,28 @@ export type Routes = {
|
|
|
57478
57628
|
/** IANA timezone for the Ultraloq device. */
|
|
57479
57629
|
time_zone: string | null;
|
|
57480
57630
|
} | undefined;
|
|
57631
|
+
/** Metadata for a Korelock device. */
|
|
57632
|
+
korelock_metadata?: {
|
|
57633
|
+
/** Device ID for a Korelock device. */
|
|
57634
|
+
device_id?: string | undefined;
|
|
57635
|
+
/** Device name for a Korelock device. */
|
|
57636
|
+
device_name?: string | undefined;
|
|
57637
|
+
/** Model code for a Korelock device. */
|
|
57638
|
+
model_code?: string | undefined;
|
|
57639
|
+
/** Serial number for a Korelock device. */
|
|
57640
|
+
serial_number?: string | undefined;
|
|
57641
|
+
/** Firmware version for a Korelock device. */
|
|
57642
|
+
firmware_version?: string | undefined;
|
|
57643
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
57644
|
+
wifi_signal_strength?: number | undefined;
|
|
57645
|
+
} | undefined;
|
|
57481
57646
|
}) & ({
|
|
57482
57647
|
/** */
|
|
57483
57648
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
57484
57649
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
57485
57650
|
code_constraints?: (({
|
|
57486
57651
|
/** Code constraint type for access codes. */
|
|
57487
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
57652
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
57488
57653
|
} | {
|
|
57489
57654
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
57490
57655
|
/** Minimum name length constraint for access codes. */
|
|
@@ -62588,7 +62753,7 @@ export type Routes = {
|
|
|
62588
62753
|
/** ID of the device. */
|
|
62589
62754
|
device_id: string;
|
|
62590
62755
|
/** Type of the device. */
|
|
62591
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
62756
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
62592
62757
|
/** IDs of the spaces the device is in. */
|
|
62593
62758
|
space_ids: string[];
|
|
62594
62759
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -63191,13 +63356,28 @@ export type Routes = {
|
|
|
63191
63356
|
/** IANA timezone for the Ultraloq device. */
|
|
63192
63357
|
time_zone: string | null;
|
|
63193
63358
|
} | undefined;
|
|
63359
|
+
/** Metadata for a Korelock device. */
|
|
63360
|
+
korelock_metadata?: {
|
|
63361
|
+
/** Device ID for a Korelock device. */
|
|
63362
|
+
device_id?: string | undefined;
|
|
63363
|
+
/** Device name for a Korelock device. */
|
|
63364
|
+
device_name?: string | undefined;
|
|
63365
|
+
/** Model code for a Korelock device. */
|
|
63366
|
+
model_code?: string | undefined;
|
|
63367
|
+
/** Serial number for a Korelock device. */
|
|
63368
|
+
serial_number?: string | undefined;
|
|
63369
|
+
/** Firmware version for a Korelock device. */
|
|
63370
|
+
firmware_version?: string | undefined;
|
|
63371
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
63372
|
+
wifi_signal_strength?: number | undefined;
|
|
63373
|
+
} | undefined;
|
|
63194
63374
|
}) & ({
|
|
63195
63375
|
/** */
|
|
63196
63376
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
63197
63377
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
63198
63378
|
code_constraints?: (({
|
|
63199
63379
|
/** Code constraint type for access codes. */
|
|
63200
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
63380
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
63201
63381
|
} | {
|
|
63202
63382
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
63203
63383
|
/** Minimum name length constraint for access codes. */
|
|
@@ -66422,7 +66602,7 @@ export type Routes = {
|
|
|
66422
66602
|
/** Array of device types by which you want to filter thermostat devices. */
|
|
66423
66603
|
device_types?: ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat')[] | undefined;
|
|
66424
66604
|
/** Manufacturer by which you want to filter thermostat devices. */
|
|
66425
|
-
manufacturer?: ('ecobee' | 'honeywell_resideo' | 'nest' | '
|
|
66605
|
+
manufacturer?: ('ecobee' | 'honeywell_resideo' | 'nest' | 'sensi' | 'smartthings' | 'tado') | undefined;
|
|
66426
66606
|
/** Array of device IDs for which you want to list devices. */
|
|
66427
66607
|
device_ids?: string[] | undefined;
|
|
66428
66608
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -66455,7 +66635,7 @@ export type Routes = {
|
|
|
66455
66635
|
/** ID of the device. */
|
|
66456
66636
|
device_id: string;
|
|
66457
66637
|
/** Type of the device. */
|
|
66458
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
66638
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
66459
66639
|
/** IDs of the spaces the device is in. */
|
|
66460
66640
|
space_ids: string[];
|
|
66461
66641
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -67058,13 +67238,28 @@ export type Routes = {
|
|
|
67058
67238
|
/** IANA timezone for the Ultraloq device. */
|
|
67059
67239
|
time_zone: string | null;
|
|
67060
67240
|
} | undefined;
|
|
67241
|
+
/** Metadata for a Korelock device. */
|
|
67242
|
+
korelock_metadata?: {
|
|
67243
|
+
/** Device ID for a Korelock device. */
|
|
67244
|
+
device_id?: string | undefined;
|
|
67245
|
+
/** Device name for a Korelock device. */
|
|
67246
|
+
device_name?: string | undefined;
|
|
67247
|
+
/** Model code for a Korelock device. */
|
|
67248
|
+
model_code?: string | undefined;
|
|
67249
|
+
/** Serial number for a Korelock device. */
|
|
67250
|
+
serial_number?: string | undefined;
|
|
67251
|
+
/** Firmware version for a Korelock device. */
|
|
67252
|
+
firmware_version?: string | undefined;
|
|
67253
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
67254
|
+
wifi_signal_strength?: number | undefined;
|
|
67255
|
+
} | undefined;
|
|
67061
67256
|
}) & ({
|
|
67062
67257
|
/** */
|
|
67063
67258
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
67064
67259
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
67065
67260
|
code_constraints?: (({
|
|
67066
67261
|
/** Code constraint type for access codes. */
|
|
67067
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
67262
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
67068
67263
|
} | {
|
|
67069
67264
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
67070
67265
|
/** Minimum name length constraint for access codes. */
|
|
@@ -67717,7 +67912,7 @@ export type Routes = {
|
|
|
67717
67912
|
/** ID of the device. */
|
|
67718
67913
|
device_id: string;
|
|
67719
67914
|
/** Type of the device. */
|
|
67720
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
67915
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
67721
67916
|
/** IDs of the spaces the device is in. */
|
|
67722
67917
|
space_ids: string[];
|
|
67723
67918
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -68320,13 +68515,28 @@ export type Routes = {
|
|
|
68320
68515
|
/** IANA timezone for the Ultraloq device. */
|
|
68321
68516
|
time_zone: string | null;
|
|
68322
68517
|
} | undefined;
|
|
68518
|
+
/** Metadata for a Korelock device. */
|
|
68519
|
+
korelock_metadata?: {
|
|
68520
|
+
/** Device ID for a Korelock device. */
|
|
68521
|
+
device_id?: string | undefined;
|
|
68522
|
+
/** Device name for a Korelock device. */
|
|
68523
|
+
device_name?: string | undefined;
|
|
68524
|
+
/** Model code for a Korelock device. */
|
|
68525
|
+
model_code?: string | undefined;
|
|
68526
|
+
/** Serial number for a Korelock device. */
|
|
68527
|
+
serial_number?: string | undefined;
|
|
68528
|
+
/** Firmware version for a Korelock device. */
|
|
68529
|
+
firmware_version?: string | undefined;
|
|
68530
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
68531
|
+
wifi_signal_strength?: number | undefined;
|
|
68532
|
+
} | undefined;
|
|
68323
68533
|
}) & ({
|
|
68324
68534
|
/** */
|
|
68325
68535
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
68326
68536
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
68327
68537
|
code_constraints?: (({
|
|
68328
68538
|
/** Code constraint type for access codes. */
|
|
68329
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
68539
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
68330
68540
|
} | {
|
|
68331
68541
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
68332
68542
|
/** Minimum name length constraint for access codes. */
|
|
@@ -74999,7 +75209,7 @@ export type Routes = {
|
|
|
74999
75209
|
/** ID of the device. */
|
|
75000
75210
|
device_id: string;
|
|
75001
75211
|
/** Type of the device. */
|
|
75002
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
75212
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
75003
75213
|
/** IDs of the spaces the device is in. */
|
|
75004
75214
|
space_ids: string[];
|
|
75005
75215
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -75602,13 +75812,28 @@ export type Routes = {
|
|
|
75602
75812
|
/** IANA timezone for the Ultraloq device. */
|
|
75603
75813
|
time_zone: string | null;
|
|
75604
75814
|
} | undefined;
|
|
75815
|
+
/** Metadata for a Korelock device. */
|
|
75816
|
+
korelock_metadata?: {
|
|
75817
|
+
/** Device ID for a Korelock device. */
|
|
75818
|
+
device_id?: string | undefined;
|
|
75819
|
+
/** Device name for a Korelock device. */
|
|
75820
|
+
device_name?: string | undefined;
|
|
75821
|
+
/** Model code for a Korelock device. */
|
|
75822
|
+
model_code?: string | undefined;
|
|
75823
|
+
/** Serial number for a Korelock device. */
|
|
75824
|
+
serial_number?: string | undefined;
|
|
75825
|
+
/** Firmware version for a Korelock device. */
|
|
75826
|
+
firmware_version?: string | undefined;
|
|
75827
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
75828
|
+
wifi_signal_strength?: number | undefined;
|
|
75829
|
+
} | undefined;
|
|
75605
75830
|
}) & ({
|
|
75606
75831
|
/** */
|
|
75607
75832
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
75608
75833
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
75609
75834
|
code_constraints?: (({
|
|
75610
75835
|
/** Code constraint type for access codes. */
|
|
75611
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
75836
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
75612
75837
|
} | {
|
|
75613
75838
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
75614
75839
|
/** Minimum name length constraint for access codes. */
|
|
@@ -76263,7 +76488,7 @@ export type Routes = {
|
|
|
76263
76488
|
/** ID of the device. */
|
|
76264
76489
|
device_id: string;
|
|
76265
76490
|
/** Type of the device. */
|
|
76266
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
76491
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
76267
76492
|
/** IDs of the spaces the device is in. */
|
|
76268
76493
|
space_ids: string[];
|
|
76269
76494
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -76866,13 +77091,28 @@ export type Routes = {
|
|
|
76866
77091
|
/** IANA timezone for the Ultraloq device. */
|
|
76867
77092
|
time_zone: string | null;
|
|
76868
77093
|
} | undefined;
|
|
77094
|
+
/** Metadata for a Korelock device. */
|
|
77095
|
+
korelock_metadata?: {
|
|
77096
|
+
/** Device ID for a Korelock device. */
|
|
77097
|
+
device_id?: string | undefined;
|
|
77098
|
+
/** Device name for a Korelock device. */
|
|
77099
|
+
device_name?: string | undefined;
|
|
77100
|
+
/** Model code for a Korelock device. */
|
|
77101
|
+
model_code?: string | undefined;
|
|
77102
|
+
/** Serial number for a Korelock device. */
|
|
77103
|
+
serial_number?: string | undefined;
|
|
77104
|
+
/** Firmware version for a Korelock device. */
|
|
77105
|
+
firmware_version?: string | undefined;
|
|
77106
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
77107
|
+
wifi_signal_strength?: number | undefined;
|
|
77108
|
+
} | undefined;
|
|
76869
77109
|
}) & ({
|
|
76870
77110
|
/** */
|
|
76871
77111
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
76872
77112
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
76873
77113
|
code_constraints?: (({
|
|
76874
77114
|
/** Code constraint type for access codes. */
|
|
76875
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
77115
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
76876
77116
|
} | {
|
|
76877
77117
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
76878
77118
|
/** Minimum name length constraint for access codes. */
|
|
@@ -78492,7 +78732,7 @@ export type Routes = {
|
|
|
78492
78732
|
/** ID of the device. */
|
|
78493
78733
|
device_id: string;
|
|
78494
78734
|
/** Type of the device. */
|
|
78495
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
78735
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
78496
78736
|
/** IDs of the spaces the device is in. */
|
|
78497
78737
|
space_ids: string[];
|
|
78498
78738
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -79095,13 +79335,28 @@ export type Routes = {
|
|
|
79095
79335
|
/** IANA timezone for the Ultraloq device. */
|
|
79096
79336
|
time_zone: string | null;
|
|
79097
79337
|
} | undefined;
|
|
79338
|
+
/** Metadata for a Korelock device. */
|
|
79339
|
+
korelock_metadata?: {
|
|
79340
|
+
/** Device ID for a Korelock device. */
|
|
79341
|
+
device_id?: string | undefined;
|
|
79342
|
+
/** Device name for a Korelock device. */
|
|
79343
|
+
device_name?: string | undefined;
|
|
79344
|
+
/** Model code for a Korelock device. */
|
|
79345
|
+
model_code?: string | undefined;
|
|
79346
|
+
/** Serial number for a Korelock device. */
|
|
79347
|
+
serial_number?: string | undefined;
|
|
79348
|
+
/** Firmware version for a Korelock device. */
|
|
79349
|
+
firmware_version?: string | undefined;
|
|
79350
|
+
/** WiFi signal strength (0-1) for a Korelock device. */
|
|
79351
|
+
wifi_signal_strength?: number | undefined;
|
|
79352
|
+
} | undefined;
|
|
79098
79353
|
}) & ({
|
|
79099
79354
|
/** */
|
|
79100
79355
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
79101
79356
|
/** Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific. */
|
|
79102
79357
|
code_constraints?: (({
|
|
79103
79358
|
/** Code constraint type for access codes. */
|
|
79104
|
-
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits';
|
|
79359
|
+
constraint_type: 'no_zeros' | 'cannot_start_with_12' | 'no_triple_consecutive_ints' | 'cannot_specify_pin_code' | 'pin_code_matches_existing_set' | 'start_date_in_future' | 'no_ascending_or_descending_sequence' | 'at_least_three_unique_digits' | 'cannot_contain_089' | 'cannot_contain_0789' | 'unique_first_four_digits' | 'no_all_same_digits';
|
|
79105
79360
|
} | {
|
|
79106
79361
|
constraint_type: 'name_length' | 'name_must_be_unique';
|
|
79107
79362
|
/** Minimum name length constraint for access codes. */
|
|
@@ -81827,7 +82082,7 @@ export type Routes = {
|
|
|
81827
82082
|
/** ID of the device. */
|
|
81828
82083
|
device_id: string;
|
|
81829
82084
|
/** Type of the device. */
|
|
81830
|
-
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
82085
|
+
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' | 'ultraloq_lock' | 'korelock_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
81831
82086
|
/** Unique identifier for the account associated with the device. */
|
|
81832
82087
|
connected_account_id: string;
|
|
81833
82088
|
/** Location information for the device. */
|