@seamapi/types 1.854.0 → 1.856.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 +43 -25
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +165 -45
- package/dist/index.cjs +43 -25
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +38 -10
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -0
- package/lib/seam/connect/models/devices/device-metadata.js +7 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -3
- package/lib/seam/connect/models/devices/device-provider.js +3 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-type.js +1 -1
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +17 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +13 -3
- package/lib/seam/connect/openapi.js +30 -20
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +97 -29
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +11 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +3 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +32 -20
- package/src/lib/seam/connect/route-types.ts +97 -29
|
@@ -12160,7 +12160,7 @@ export type Routes = {
|
|
|
12160
12160
|
/** ID of the device. */
|
|
12161
12161
|
device_id: string;
|
|
12162
12162
|
/** Type of the device. */
|
|
12163
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
12163
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
12164
12164
|
/** IDs of the spaces the device is in. */
|
|
12165
12165
|
space_ids: string[];
|
|
12166
12166
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -12704,6 +12704,10 @@ export type Routes = {
|
|
|
12704
12704
|
lock_mac: string;
|
|
12705
12705
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
12706
12706
|
has_gateway: boolean;
|
|
12707
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
12708
|
+
timezone_raw_offset_ms: number;
|
|
12709
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
12710
|
+
time_zone?: string | undefined;
|
|
12707
12711
|
} | undefined;
|
|
12708
12712
|
/** Metadata for a tado° device. */
|
|
12709
12713
|
tado_metadata?: {
|
|
@@ -16831,7 +16835,7 @@ export type Routes = {
|
|
|
16831
16835
|
/** ID of the device. */
|
|
16832
16836
|
device_id: string;
|
|
16833
16837
|
/** Type of the device. */
|
|
16834
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
16838
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
16835
16839
|
/** IDs of the spaces the device is in. */
|
|
16836
16840
|
space_ids: string[];
|
|
16837
16841
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -17375,6 +17379,10 @@ export type Routes = {
|
|
|
17375
17379
|
lock_mac: string;
|
|
17376
17380
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
17377
17381
|
has_gateway: boolean;
|
|
17382
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
17383
|
+
timezone_raw_offset_ms: number;
|
|
17384
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
17385
|
+
time_zone?: string | undefined;
|
|
17378
17386
|
} | undefined;
|
|
17379
17387
|
/** Metadata for a tado° device. */
|
|
17380
17388
|
tado_metadata?: {
|
|
@@ -36178,7 +36186,7 @@ export type Routes = {
|
|
|
36178
36186
|
/** ID of the device. */
|
|
36179
36187
|
device_id: string;
|
|
36180
36188
|
/** Type of the device. */
|
|
36181
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
36189
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
36182
36190
|
/** IDs of the spaces the device is in. */
|
|
36183
36191
|
space_ids: string[];
|
|
36184
36192
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -36722,6 +36730,10 @@ export type Routes = {
|
|
|
36722
36730
|
lock_mac: string;
|
|
36723
36731
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
36724
36732
|
has_gateway: boolean;
|
|
36733
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
36734
|
+
timezone_raw_offset_ms: number;
|
|
36735
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
36736
|
+
time_zone?: string | undefined;
|
|
36725
36737
|
} | undefined;
|
|
36726
36738
|
/** Metadata for a tado° device. */
|
|
36727
36739
|
tado_metadata?: {
|
|
@@ -37536,11 +37548,11 @@ export type Routes = {
|
|
|
37536
37548
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
37537
37549
|
connect_webview_id?: string | undefined;
|
|
37538
37550
|
/** Device type for which you want to list devices. */
|
|
37539
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
37551
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera') | undefined;
|
|
37540
37552
|
/** Array of device types for which you want to list devices. */
|
|
37541
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
37553
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera')[] | undefined;
|
|
37542
37554
|
/** Manufacturer for which you want to list devices. */
|
|
37543
|
-
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | '
|
|
37555
|
+
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec') | undefined;
|
|
37544
37556
|
/** Array of device IDs for which you want to list devices. */
|
|
37545
37557
|
device_ids?: string[] | undefined;
|
|
37546
37558
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -37573,7 +37585,7 @@ export type Routes = {
|
|
|
37573
37585
|
/** ID of the device. */
|
|
37574
37586
|
device_id: string;
|
|
37575
37587
|
/** Type of the device. */
|
|
37576
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
37588
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
37577
37589
|
/** IDs of the spaces the device is in. */
|
|
37578
37590
|
space_ids: string[];
|
|
37579
37591
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -38117,6 +38129,10 @@ export type Routes = {
|
|
|
38117
38129
|
lock_mac: string;
|
|
38118
38130
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
38119
38131
|
has_gateway: boolean;
|
|
38132
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
38133
|
+
timezone_raw_offset_ms: number;
|
|
38134
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
38135
|
+
time_zone?: string | undefined;
|
|
38120
38136
|
} | undefined;
|
|
38121
38137
|
/** Metadata for a tado° device. */
|
|
38122
38138
|
tado_metadata?: {
|
|
@@ -39087,7 +39103,7 @@ export type Routes = {
|
|
|
39087
39103
|
/** ID of the device. */
|
|
39088
39104
|
device_id: string;
|
|
39089
39105
|
/** Type of the device. */
|
|
39090
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
39106
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
39091
39107
|
/** Unique identifier for the account associated with the device. */
|
|
39092
39108
|
connected_account_id: string;
|
|
39093
39109
|
/** Location information for the device. */
|
|
@@ -39541,11 +39557,11 @@ export type Routes = {
|
|
|
39541
39557
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
39542
39558
|
connect_webview_id?: string | undefined;
|
|
39543
39559
|
/** Device type for which you want to list devices. */
|
|
39544
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
39560
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera') | undefined;
|
|
39545
39561
|
/** Array of device types for which you want to list devices. */
|
|
39546
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
39562
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera')[] | undefined;
|
|
39547
39563
|
/** Manufacturer for which you want to list devices. */
|
|
39548
|
-
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | '
|
|
39564
|
+
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'acuity_scheduling' | 'omnitec') | undefined;
|
|
39549
39565
|
/** Array of device IDs for which you want to list devices. */
|
|
39550
39566
|
device_ids?: string[] | undefined;
|
|
39551
39567
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -39578,7 +39594,7 @@ export type Routes = {
|
|
|
39578
39594
|
/** ID of the device. */
|
|
39579
39595
|
device_id: string;
|
|
39580
39596
|
/** Type of the device. */
|
|
39581
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
39597
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
39582
39598
|
/** Unique identifier for the account associated with the device. */
|
|
39583
39599
|
connected_account_id: string;
|
|
39584
39600
|
/** Location information for the device. */
|
|
@@ -47350,7 +47366,7 @@ export type Routes = {
|
|
|
47350
47366
|
/** ID of the device. */
|
|
47351
47367
|
device_id: string;
|
|
47352
47368
|
/** Type of the device. */
|
|
47353
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
47369
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
47354
47370
|
/** IDs of the spaces the device is in. */
|
|
47355
47371
|
space_ids: string[];
|
|
47356
47372
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -47894,6 +47910,10 @@ export type Routes = {
|
|
|
47894
47910
|
lock_mac: string;
|
|
47895
47911
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
47896
47912
|
has_gateway: boolean;
|
|
47913
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
47914
|
+
timezone_raw_offset_ms: number;
|
|
47915
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
47916
|
+
time_zone?: string | undefined;
|
|
47897
47917
|
} | undefined;
|
|
47898
47918
|
/** Metadata for a tado° device. */
|
|
47899
47919
|
tado_metadata?: {
|
|
@@ -48695,7 +48715,7 @@ export type Routes = {
|
|
|
48695
48715
|
/** ID of the device. */
|
|
48696
48716
|
device_id: string;
|
|
48697
48717
|
/** Type of the device. */
|
|
48698
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
48718
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
48699
48719
|
/** IDs of the spaces the device is in. */
|
|
48700
48720
|
space_ids: string[];
|
|
48701
48721
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -49239,6 +49259,10 @@ export type Routes = {
|
|
|
49239
49259
|
lock_mac: string;
|
|
49240
49260
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
49241
49261
|
has_gateway: boolean;
|
|
49262
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
49263
|
+
timezone_raw_offset_ms: number;
|
|
49264
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
49265
|
+
time_zone?: string | undefined;
|
|
49242
49266
|
} | undefined;
|
|
49243
49267
|
/** Metadata for a tado° device. */
|
|
49244
49268
|
tado_metadata?: {
|
|
@@ -50053,11 +50077,11 @@ export type Routes = {
|
|
|
50053
50077
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
50054
50078
|
connect_webview_id?: string | undefined;
|
|
50055
50079
|
/** Device type of the locks that you want to list. */
|
|
50056
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
50080
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | undefined;
|
|
50057
50081
|
/** Device types of the locks that you want to list. */
|
|
50058
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
50082
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock')[] | undefined;
|
|
50059
50083
|
/** Manufacturer of the locks that you want to list. */
|
|
50060
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | '
|
|
50084
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec') | undefined;
|
|
50061
50085
|
/** Array of device IDs for which you want to list devices. */
|
|
50062
50086
|
device_ids?: string[] | undefined;
|
|
50063
50087
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -50090,7 +50114,7 @@ export type Routes = {
|
|
|
50090
50114
|
/** ID of the device. */
|
|
50091
50115
|
device_id: string;
|
|
50092
50116
|
/** Type of the device. */
|
|
50093
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
50117
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
50094
50118
|
/** IDs of the spaces the device is in. */
|
|
50095
50119
|
space_ids: string[];
|
|
50096
50120
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -50634,6 +50658,10 @@ export type Routes = {
|
|
|
50634
50658
|
lock_mac: string;
|
|
50635
50659
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
50636
50660
|
has_gateway: boolean;
|
|
50661
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
50662
|
+
timezone_raw_offset_ms: number;
|
|
50663
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
50664
|
+
time_zone?: string | undefined;
|
|
50637
50665
|
} | undefined;
|
|
50638
50666
|
/** Metadata for a tado° device. */
|
|
50639
50667
|
tado_metadata?: {
|
|
@@ -51434,7 +51462,7 @@ export type Routes = {
|
|
|
51434
51462
|
/** ID of the device. */
|
|
51435
51463
|
device_id: string;
|
|
51436
51464
|
/** Type of the device. */
|
|
51437
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
51465
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
51438
51466
|
/** IDs of the spaces the device is in. */
|
|
51439
51467
|
space_ids: string[];
|
|
51440
51468
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -51978,6 +52006,10 @@ export type Routes = {
|
|
|
51978
52006
|
lock_mac: string;
|
|
51979
52007
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
51980
52008
|
has_gateway: boolean;
|
|
52009
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
52010
|
+
timezone_raw_offset_ms: number;
|
|
52011
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
52012
|
+
time_zone?: string | undefined;
|
|
51981
52013
|
} | undefined;
|
|
51982
52014
|
/** Metadata for a tado° device. */
|
|
51983
52015
|
tado_metadata?: {
|
|
@@ -58891,7 +58923,7 @@ export type Routes = {
|
|
|
58891
58923
|
/** ID of the device. */
|
|
58892
58924
|
device_id: string;
|
|
58893
58925
|
/** Type of the device. */
|
|
58894
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
58926
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
58895
58927
|
/** IDs of the spaces the device is in. */
|
|
58896
58928
|
space_ids: string[];
|
|
58897
58929
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -59435,6 +59467,10 @@ export type Routes = {
|
|
|
59435
59467
|
lock_mac: string;
|
|
59436
59468
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
59437
59469
|
has_gateway: boolean;
|
|
59470
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
59471
|
+
timezone_raw_offset_ms: number;
|
|
59472
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
59473
|
+
time_zone?: string | undefined;
|
|
59438
59474
|
} | undefined;
|
|
59439
59475
|
/** Metadata for a tado° device. */
|
|
59440
59476
|
tado_metadata?: {
|
|
@@ -60235,7 +60271,7 @@ export type Routes = {
|
|
|
60235
60271
|
/** ID of the device. */
|
|
60236
60272
|
device_id: string;
|
|
60237
60273
|
/** Type of the device. */
|
|
60238
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
60274
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
60239
60275
|
/** IDs of the spaces the device is in. */
|
|
60240
60276
|
space_ids: string[];
|
|
60241
60277
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -60779,6 +60815,10 @@ export type Routes = {
|
|
|
60779
60815
|
lock_mac: string;
|
|
60780
60816
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
60781
60817
|
has_gateway: boolean;
|
|
60818
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
60819
|
+
timezone_raw_offset_ms: number;
|
|
60820
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
60821
|
+
time_zone?: string | undefined;
|
|
60782
60822
|
} | undefined;
|
|
60783
60823
|
/** Metadata for a tado° device. */
|
|
60784
60824
|
tado_metadata?: {
|
|
@@ -74489,7 +74529,7 @@ export type Routes = {
|
|
|
74489
74529
|
/** ID of the device. */
|
|
74490
74530
|
device_id: string;
|
|
74491
74531
|
/** Type of the device. */
|
|
74492
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
74532
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
74493
74533
|
/** IDs of the spaces the device is in. */
|
|
74494
74534
|
space_ids: string[];
|
|
74495
74535
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -75033,6 +75073,10 @@ export type Routes = {
|
|
|
75033
75073
|
lock_mac: string;
|
|
75034
75074
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
75035
75075
|
has_gateway: boolean;
|
|
75076
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
75077
|
+
timezone_raw_offset_ms: number;
|
|
75078
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
75079
|
+
time_zone?: string | undefined;
|
|
75036
75080
|
} | undefined;
|
|
75037
75081
|
/** Metadata for a tado° device. */
|
|
75038
75082
|
tado_metadata?: {
|
|
@@ -81256,7 +81300,7 @@ export type Routes = {
|
|
|
81256
81300
|
/** ID of the device. */
|
|
81257
81301
|
device_id: string;
|
|
81258
81302
|
/** Type of the device. */
|
|
81259
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
81303
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
81260
81304
|
/** IDs of the spaces the device is in. */
|
|
81261
81305
|
space_ids: string[];
|
|
81262
81306
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -81800,6 +81844,10 @@ export type Routes = {
|
|
|
81800
81844
|
lock_mac: string;
|
|
81801
81845
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
81802
81846
|
has_gateway: boolean;
|
|
81847
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
81848
|
+
timezone_raw_offset_ms: number;
|
|
81849
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
81850
|
+
time_zone?: string | undefined;
|
|
81803
81851
|
} | undefined;
|
|
81804
81852
|
/** Metadata for a tado° device. */
|
|
81805
81853
|
tado_metadata?: {
|
|
@@ -85695,7 +85743,7 @@ export type Routes = {
|
|
|
85695
85743
|
/** ID of the device. */
|
|
85696
85744
|
device_id: string;
|
|
85697
85745
|
/** Type of the device. */
|
|
85698
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
85746
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
85699
85747
|
/** IDs of the spaces the device is in. */
|
|
85700
85748
|
space_ids: string[];
|
|
85701
85749
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -86239,6 +86287,10 @@ export type Routes = {
|
|
|
86239
86287
|
lock_mac: string;
|
|
86240
86288
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
86241
86289
|
has_gateway: boolean;
|
|
86290
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
86291
|
+
timezone_raw_offset_ms: number;
|
|
86292
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
86293
|
+
time_zone?: string | undefined;
|
|
86242
86294
|
} | undefined;
|
|
86243
86295
|
/** Metadata for a tado° device. */
|
|
86244
86296
|
tado_metadata?: {
|
|
@@ -87039,7 +87091,7 @@ export type Routes = {
|
|
|
87039
87091
|
/** ID of the device. */
|
|
87040
87092
|
device_id: string;
|
|
87041
87093
|
/** Type of the device. */
|
|
87042
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
87094
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
87043
87095
|
/** IDs of the spaces the device is in. */
|
|
87044
87096
|
space_ids: string[];
|
|
87045
87097
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -87583,6 +87635,10 @@ export type Routes = {
|
|
|
87583
87635
|
lock_mac: string;
|
|
87584
87636
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
87585
87637
|
has_gateway: boolean;
|
|
87638
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
87639
|
+
timezone_raw_offset_ms: number;
|
|
87640
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
87641
|
+
time_zone?: string | undefined;
|
|
87586
87642
|
} | undefined;
|
|
87587
87643
|
/** Metadata for a tado° device. */
|
|
87588
87644
|
tado_metadata?: {
|
|
@@ -95393,7 +95449,7 @@ export type Routes = {
|
|
|
95393
95449
|
/** ID of the device. */
|
|
95394
95450
|
device_id: string;
|
|
95395
95451
|
/** Type of the device. */
|
|
95396
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
95452
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
95397
95453
|
/** IDs of the spaces the device is in. */
|
|
95398
95454
|
space_ids: string[];
|
|
95399
95455
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -95937,6 +95993,10 @@ export type Routes = {
|
|
|
95937
95993
|
lock_mac: string;
|
|
95938
95994
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
95939
95995
|
has_gateway: boolean;
|
|
95996
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
95997
|
+
timezone_raw_offset_ms: number;
|
|
95998
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
95999
|
+
time_zone?: string | undefined;
|
|
95940
96000
|
} | undefined;
|
|
95941
96001
|
/** Metadata for a tado° device. */
|
|
95942
96002
|
tado_metadata?: {
|
|
@@ -96739,7 +96799,7 @@ export type Routes = {
|
|
|
96739
96799
|
/** ID of the device. */
|
|
96740
96800
|
device_id: string;
|
|
96741
96801
|
/** Type of the device. */
|
|
96742
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
96802
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
96743
96803
|
/** IDs of the spaces the device is in. */
|
|
96744
96804
|
space_ids: string[];
|
|
96745
96805
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -97283,6 +97343,10 @@ export type Routes = {
|
|
|
97283
97343
|
lock_mac: string;
|
|
97284
97344
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
97285
97345
|
has_gateway: boolean;
|
|
97346
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
97347
|
+
timezone_raw_offset_ms: number;
|
|
97348
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
97349
|
+
time_zone?: string | undefined;
|
|
97286
97350
|
} | undefined;
|
|
97287
97351
|
/** Metadata for a tado° device. */
|
|
97288
97352
|
tado_metadata?: {
|
|
@@ -99265,7 +99329,7 @@ export type Routes = {
|
|
|
99265
99329
|
/** ID of the device. */
|
|
99266
99330
|
device_id: string;
|
|
99267
99331
|
/** Type of the device. */
|
|
99268
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
99332
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
99269
99333
|
/** IDs of the spaces the device is in. */
|
|
99270
99334
|
space_ids: string[];
|
|
99271
99335
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -99809,6 +99873,10 @@ export type Routes = {
|
|
|
99809
99873
|
lock_mac: string;
|
|
99810
99874
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
99811
99875
|
has_gateway: boolean;
|
|
99876
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
99877
|
+
timezone_raw_offset_ms: number;
|
|
99878
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
99879
|
+
time_zone?: string | undefined;
|
|
99812
99880
|
} | undefined;
|
|
99813
99881
|
/** Metadata for a tado° device. */
|
|
99814
99882
|
tado_metadata?: {
|
|
@@ -103275,7 +103343,7 @@ export type Routes = {
|
|
|
103275
103343
|
/** ID of the device. */
|
|
103276
103344
|
device_id: string;
|
|
103277
103345
|
/** Type of the device. */
|
|
103278
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | '
|
|
103346
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
103279
103347
|
/** Unique identifier for the account associated with the device. */
|
|
103280
103348
|
connected_account_id: string;
|
|
103281
103349
|
/** Location information for the device. */
|
package/package.json
CHANGED
|
@@ -645,6 +645,17 @@ export const device_metadata = z
|
|
|
645
645
|
.describe(
|
|
646
646
|
`Whether the Omnitec lock has a connected gateway for remote operations.`,
|
|
647
647
|
),
|
|
648
|
+
timezone_raw_offset_ms: z
|
|
649
|
+
.number()
|
|
650
|
+
.describe(
|
|
651
|
+
`Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.`,
|
|
652
|
+
),
|
|
653
|
+
time_zone: z
|
|
654
|
+
.string()
|
|
655
|
+
.optional()
|
|
656
|
+
.describe(
|
|
657
|
+
`IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.`,
|
|
658
|
+
),
|
|
648
659
|
})
|
|
649
660
|
.describe(`Metadata for an Omnitec device.`),
|
|
650
661
|
|
|
@@ -107,6 +107,7 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
107
107
|
'dormakaba_oracode',
|
|
108
108
|
'ring',
|
|
109
109
|
'first_alert',
|
|
110
|
+
'korelock',
|
|
110
111
|
],
|
|
111
112
|
|
|
112
113
|
consumer_smartlocks: [
|
|
@@ -124,9 +125,10 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
124
125
|
'tedee',
|
|
125
126
|
'ultraloq',
|
|
126
127
|
'dormakaba_oracode',
|
|
128
|
+
'korelock',
|
|
127
129
|
],
|
|
128
130
|
|
|
129
|
-
beta: ['
|
|
131
|
+
beta: ['omnitec'],
|
|
130
132
|
|
|
131
133
|
thermostats: ['ecobee', 'nest', 'sensi', 'honeywell_resideo', 'first_alert'],
|
|
132
134
|
noise_sensors: ['minut', 'noiseaware'],
|