@seamapi/types 1.96.1 → 1.98.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 +142 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +268 -23
- package/lib/seam/connect/openapi.d.ts +151 -0
- package/lib/seam/connect/openapi.js +127 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +117 -23
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +21 -0
- package/lib/seam/connect/unstable/models/acs/credential.js +4 -0
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +38 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +8 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/unstable/models/devices/device-type.js +1 -0
- package/lib/seam/connect/unstable/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +73 -3
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +3 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +127 -0
- package/src/lib/seam/connect/route-types.ts +149 -0
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +9 -0
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +9 -0
- package/src/lib/seam/connect/unstable/models/devices/device-type.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -1423,6 +1423,30 @@ declare const _default: {
|
|
|
1423
1423
|
required: string[];
|
|
1424
1424
|
type: string;
|
|
1425
1425
|
};
|
|
1426
|
+
tedee_metadata: {
|
|
1427
|
+
properties: {
|
|
1428
|
+
bridge_id: {
|
|
1429
|
+
type: string;
|
|
1430
|
+
};
|
|
1431
|
+
bridge_name: {
|
|
1432
|
+
type: string;
|
|
1433
|
+
};
|
|
1434
|
+
device_id: {
|
|
1435
|
+
type: string;
|
|
1436
|
+
};
|
|
1437
|
+
device_model: {
|
|
1438
|
+
type: string;
|
|
1439
|
+
};
|
|
1440
|
+
device_name: {
|
|
1441
|
+
type: string;
|
|
1442
|
+
};
|
|
1443
|
+
serial_number: {
|
|
1444
|
+
type: string;
|
|
1445
|
+
};
|
|
1446
|
+
};
|
|
1447
|
+
required: string[];
|
|
1448
|
+
type: string;
|
|
1449
|
+
};
|
|
1426
1450
|
ttlock_metadata: {
|
|
1427
1451
|
properties: {
|
|
1428
1452
|
lock_alias: {
|
|
@@ -5295,6 +5319,18 @@ declare const _default: {
|
|
|
5295
5319
|
starts_at: {
|
|
5296
5320
|
type: string;
|
|
5297
5321
|
};
|
|
5322
|
+
visionline_metadata: {
|
|
5323
|
+
properties: {
|
|
5324
|
+
joiner_acs_credential_ids: {
|
|
5325
|
+
items: {
|
|
5326
|
+
format: string;
|
|
5327
|
+
type: string;
|
|
5328
|
+
};
|
|
5329
|
+
type: string;
|
|
5330
|
+
};
|
|
5331
|
+
};
|
|
5332
|
+
type: string;
|
|
5333
|
+
};
|
|
5298
5334
|
workspace_id: {
|
|
5299
5335
|
format: string;
|
|
5300
5336
|
type: string;
|
|
@@ -5416,6 +5452,18 @@ declare const _default: {
|
|
|
5416
5452
|
starts_at: {
|
|
5417
5453
|
type: string;
|
|
5418
5454
|
};
|
|
5455
|
+
visionline_metadata: {
|
|
5456
|
+
properties: {
|
|
5457
|
+
joiner_acs_credential_ids: {
|
|
5458
|
+
items: {
|
|
5459
|
+
format: string;
|
|
5460
|
+
type: string;
|
|
5461
|
+
};
|
|
5462
|
+
type: string;
|
|
5463
|
+
};
|
|
5464
|
+
};
|
|
5465
|
+
type: string;
|
|
5466
|
+
};
|
|
5419
5467
|
workspace_id: {
|
|
5420
5468
|
format: string;
|
|
5421
5469
|
type: string;
|
|
@@ -5509,6 +5557,13 @@ declare const _default: {
|
|
|
5509
5557
|
is_override_key: {
|
|
5510
5558
|
type: string;
|
|
5511
5559
|
};
|
|
5560
|
+
joiner_acs_credential_ids: {
|
|
5561
|
+
items: {
|
|
5562
|
+
format: string;
|
|
5563
|
+
type: string;
|
|
5564
|
+
};
|
|
5565
|
+
type: string;
|
|
5566
|
+
};
|
|
5512
5567
|
};
|
|
5513
5568
|
type: string;
|
|
5514
5569
|
};
|
|
@@ -5575,6 +5630,18 @@ declare const _default: {
|
|
|
5575
5630
|
starts_at: {
|
|
5576
5631
|
type: string;
|
|
5577
5632
|
};
|
|
5633
|
+
visionline_metadata: {
|
|
5634
|
+
properties: {
|
|
5635
|
+
joiner_acs_credential_ids: {
|
|
5636
|
+
items: {
|
|
5637
|
+
format: string;
|
|
5638
|
+
type: string;
|
|
5639
|
+
};
|
|
5640
|
+
type: string;
|
|
5641
|
+
};
|
|
5642
|
+
};
|
|
5643
|
+
type: string;
|
|
5644
|
+
};
|
|
5578
5645
|
workspace_id: {
|
|
5579
5646
|
format: string;
|
|
5580
5647
|
type: string;
|
|
@@ -5757,6 +5824,18 @@ declare const _default: {
|
|
|
5757
5824
|
starts_at: {
|
|
5758
5825
|
type: string;
|
|
5759
5826
|
};
|
|
5827
|
+
visionline_metadata: {
|
|
5828
|
+
properties: {
|
|
5829
|
+
joiner_acs_credential_ids: {
|
|
5830
|
+
items: {
|
|
5831
|
+
format: string;
|
|
5832
|
+
type: string;
|
|
5833
|
+
};
|
|
5834
|
+
type: string;
|
|
5835
|
+
};
|
|
5836
|
+
};
|
|
5837
|
+
type: string;
|
|
5838
|
+
};
|
|
5760
5839
|
workspace_id: {
|
|
5761
5840
|
format: string;
|
|
5762
5841
|
type: string;
|
|
@@ -5918,6 +5997,18 @@ declare const _default: {
|
|
|
5918
5997
|
starts_at: {
|
|
5919
5998
|
type: string;
|
|
5920
5999
|
};
|
|
6000
|
+
visionline_metadata: {
|
|
6001
|
+
properties: {
|
|
6002
|
+
joiner_acs_credential_ids: {
|
|
6003
|
+
items: {
|
|
6004
|
+
format: string;
|
|
6005
|
+
type: string;
|
|
6006
|
+
};
|
|
6007
|
+
type: string;
|
|
6008
|
+
};
|
|
6009
|
+
};
|
|
6010
|
+
type: string;
|
|
6011
|
+
};
|
|
5921
6012
|
workspace_id: {
|
|
5922
6013
|
format: string;
|
|
5923
6014
|
type: string;
|
|
@@ -6052,6 +6143,18 @@ declare const _default: {
|
|
|
6052
6143
|
starts_at: {
|
|
6053
6144
|
type: string;
|
|
6054
6145
|
};
|
|
6146
|
+
visionline_metadata: {
|
|
6147
|
+
properties: {
|
|
6148
|
+
joiner_acs_credential_ids: {
|
|
6149
|
+
items: {
|
|
6150
|
+
format: string;
|
|
6151
|
+
type: string;
|
|
6152
|
+
};
|
|
6153
|
+
type: string;
|
|
6154
|
+
};
|
|
6155
|
+
};
|
|
6156
|
+
type: string;
|
|
6157
|
+
};
|
|
6055
6158
|
workspace_id: {
|
|
6056
6159
|
format: string;
|
|
6057
6160
|
type: string;
|
|
@@ -6173,6 +6276,18 @@ declare const _default: {
|
|
|
6173
6276
|
starts_at: {
|
|
6174
6277
|
type: string;
|
|
6175
6278
|
};
|
|
6279
|
+
visionline_metadata: {
|
|
6280
|
+
properties: {
|
|
6281
|
+
joiner_acs_credential_ids: {
|
|
6282
|
+
items: {
|
|
6283
|
+
format: string;
|
|
6284
|
+
type: string;
|
|
6285
|
+
};
|
|
6286
|
+
type: string;
|
|
6287
|
+
};
|
|
6288
|
+
};
|
|
6289
|
+
type: string;
|
|
6290
|
+
};
|
|
6176
6291
|
workspace_id: {
|
|
6177
6292
|
format: string;
|
|
6178
6293
|
type: string;
|
|
@@ -6296,6 +6411,18 @@ declare const _default: {
|
|
|
6296
6411
|
starts_at: {
|
|
6297
6412
|
type: string;
|
|
6298
6413
|
};
|
|
6414
|
+
visionline_metadata: {
|
|
6415
|
+
properties: {
|
|
6416
|
+
joiner_acs_credential_ids: {
|
|
6417
|
+
items: {
|
|
6418
|
+
format: string;
|
|
6419
|
+
type: string;
|
|
6420
|
+
};
|
|
6421
|
+
type: string;
|
|
6422
|
+
};
|
|
6423
|
+
};
|
|
6424
|
+
type: string;
|
|
6425
|
+
};
|
|
6299
6426
|
workspace_id: {
|
|
6300
6427
|
format: string;
|
|
6301
6428
|
type: string;
|
|
@@ -6416,6 +6543,18 @@ declare const _default: {
|
|
|
6416
6543
|
starts_at: {
|
|
6417
6544
|
type: string;
|
|
6418
6545
|
};
|
|
6546
|
+
visionline_metadata: {
|
|
6547
|
+
properties: {
|
|
6548
|
+
joiner_acs_credential_ids: {
|
|
6549
|
+
items: {
|
|
6550
|
+
format: string;
|
|
6551
|
+
type: string;
|
|
6552
|
+
};
|
|
6553
|
+
type: string;
|
|
6554
|
+
};
|
|
6555
|
+
};
|
|
6556
|
+
type: string;
|
|
6557
|
+
};
|
|
6419
6558
|
workspace_id: {
|
|
6420
6559
|
format: string;
|
|
6421
6560
|
type: string;
|
|
@@ -6858,6 +6997,18 @@ declare const _default: {
|
|
|
6858
6997
|
starts_at: {
|
|
6859
6998
|
type: string;
|
|
6860
6999
|
};
|
|
7000
|
+
visionline_metadata: {
|
|
7001
|
+
properties: {
|
|
7002
|
+
joiner_acs_credential_ids: {
|
|
7003
|
+
items: {
|
|
7004
|
+
format: string;
|
|
7005
|
+
type: string;
|
|
7006
|
+
};
|
|
7007
|
+
type: string;
|
|
7008
|
+
};
|
|
7009
|
+
};
|
|
7010
|
+
type: string;
|
|
7011
|
+
};
|
|
6861
7012
|
workspace_id: {
|
|
6862
7013
|
format: string;
|
|
6863
7014
|
type: string;
|
|
@@ -16720,6 +16871,9 @@ interface Routes {
|
|
|
16720
16871
|
starts_at?: string | undefined;
|
|
16721
16872
|
ends_at?: string | undefined;
|
|
16722
16873
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16874
|
+
visionline_metadata?: {
|
|
16875
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
16876
|
+
} | undefined;
|
|
16723
16877
|
};
|
|
16724
16878
|
};
|
|
16725
16879
|
};
|
|
@@ -16738,6 +16892,7 @@ interface Routes {
|
|
|
16738
16892
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
16739
16893
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
16740
16894
|
is_override_key?: boolean | undefined;
|
|
16895
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
16741
16896
|
} | undefined;
|
|
16742
16897
|
starts_at?: string | undefined;
|
|
16743
16898
|
ends_at?: string | undefined;
|
|
@@ -16759,6 +16914,9 @@ interface Routes {
|
|
|
16759
16914
|
starts_at?: string | undefined;
|
|
16760
16915
|
ends_at?: string | undefined;
|
|
16761
16916
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16917
|
+
visionline_metadata?: {
|
|
16918
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
16919
|
+
} | undefined;
|
|
16762
16920
|
};
|
|
16763
16921
|
};
|
|
16764
16922
|
};
|
|
@@ -16798,6 +16956,9 @@ interface Routes {
|
|
|
16798
16956
|
starts_at?: string | undefined;
|
|
16799
16957
|
ends_at?: string | undefined;
|
|
16800
16958
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16959
|
+
visionline_metadata?: {
|
|
16960
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
16961
|
+
} | undefined;
|
|
16801
16962
|
};
|
|
16802
16963
|
};
|
|
16803
16964
|
};
|
|
@@ -16833,6 +16994,9 @@ interface Routes {
|
|
|
16833
16994
|
starts_at?: string | undefined;
|
|
16834
16995
|
ends_at?: string | undefined;
|
|
16835
16996
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16997
|
+
visionline_metadata?: {
|
|
16998
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
16999
|
+
} | undefined;
|
|
16836
17000
|
}>;
|
|
16837
17001
|
};
|
|
16838
17002
|
};
|
|
@@ -16862,6 +17026,9 @@ interface Routes {
|
|
|
16862
17026
|
starts_at?: string | undefined;
|
|
16863
17027
|
ends_at?: string | undefined;
|
|
16864
17028
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17029
|
+
visionline_metadata?: {
|
|
17030
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
17031
|
+
} | undefined;
|
|
16865
17032
|
};
|
|
16866
17033
|
};
|
|
16867
17034
|
};
|
|
@@ -16891,6 +17058,9 @@ interface Routes {
|
|
|
16891
17058
|
starts_at?: string | undefined;
|
|
16892
17059
|
ends_at?: string | undefined;
|
|
16893
17060
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17061
|
+
visionline_metadata?: {
|
|
17062
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
17063
|
+
} | undefined;
|
|
16894
17064
|
};
|
|
16895
17065
|
};
|
|
16896
17066
|
};
|
|
@@ -16983,6 +17153,9 @@ interface Routes {
|
|
|
16983
17153
|
starts_at?: string | undefined;
|
|
16984
17154
|
ends_at?: string | undefined;
|
|
16985
17155
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
17156
|
+
visionline_metadata?: {
|
|
17157
|
+
joiner_acs_credential_ids?: string[] | undefined;
|
|
17158
|
+
} | undefined;
|
|
16986
17159
|
}>;
|
|
16987
17160
|
};
|
|
16988
17161
|
};
|
|
@@ -17731,7 +17904,7 @@ interface Routes {
|
|
|
17731
17904
|
/** Unique identifier for the device. */
|
|
17732
17905
|
device_id: string;
|
|
17733
17906
|
/** Type of the device. */
|
|
17734
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
17907
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
17735
17908
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
17736
17909
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
17737
17910
|
/** Properties of the device. */
|
|
@@ -17954,6 +18127,14 @@ interface Routes {
|
|
|
17954
18127
|
product_model: string;
|
|
17955
18128
|
device_info_model: string;
|
|
17956
18129
|
} | undefined;
|
|
18130
|
+
tedee_metadata?: {
|
|
18131
|
+
device_id: number;
|
|
18132
|
+
serial_number: string;
|
|
18133
|
+
device_name: string;
|
|
18134
|
+
device_model: string;
|
|
18135
|
+
bridge_id: number;
|
|
18136
|
+
bridge_name: string;
|
|
18137
|
+
} | undefined;
|
|
17957
18138
|
}) & ({
|
|
17958
18139
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
17959
18140
|
code_constraints?: (Array<{
|
|
@@ -18192,9 +18373,9 @@ interface Routes {
|
|
|
18192
18373
|
connected_account_id?: string | undefined;
|
|
18193
18374
|
connected_account_ids?: string[] | undefined;
|
|
18194
18375
|
connect_webview_id?: string | undefined;
|
|
18195
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
18196
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
18197
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode') | undefined;
|
|
18376
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
18377
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
18378
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee') | undefined;
|
|
18198
18379
|
device_ids?: string[] | undefined;
|
|
18199
18380
|
limit?: number;
|
|
18200
18381
|
created_before?: Date | undefined;
|
|
@@ -18207,7 +18388,7 @@ interface Routes {
|
|
|
18207
18388
|
/** Unique identifier for the device. */
|
|
18208
18389
|
device_id: string;
|
|
18209
18390
|
/** Type of the device. */
|
|
18210
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
18391
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
18211
18392
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
18212
18393
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
18213
18394
|
/** Properties of the device. */
|
|
@@ -18430,6 +18611,14 @@ interface Routes {
|
|
|
18430
18611
|
product_model: string;
|
|
18431
18612
|
device_info_model: string;
|
|
18432
18613
|
} | undefined;
|
|
18614
|
+
tedee_metadata?: {
|
|
18615
|
+
device_id: number;
|
|
18616
|
+
serial_number: string;
|
|
18617
|
+
device_name: string;
|
|
18618
|
+
device_model: string;
|
|
18619
|
+
bridge_id: number;
|
|
18620
|
+
bridge_name: string;
|
|
18621
|
+
} | undefined;
|
|
18433
18622
|
}) & ({
|
|
18434
18623
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
18435
18624
|
code_constraints?: (Array<{
|
|
@@ -18691,7 +18880,7 @@ interface Routes {
|
|
|
18691
18880
|
/** Unique identifier for the device. */
|
|
18692
18881
|
device_id: string;
|
|
18693
18882
|
/** Type of the device. */
|
|
18694
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
18883
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
18695
18884
|
/** Unique identifier for the account associated with the device. */
|
|
18696
18885
|
connected_account_id: string;
|
|
18697
18886
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
@@ -18759,9 +18948,9 @@ interface Routes {
|
|
|
18759
18948
|
connected_account_id?: string | undefined;
|
|
18760
18949
|
connected_account_ids?: string[] | undefined;
|
|
18761
18950
|
connect_webview_id?: string | undefined;
|
|
18762
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
18763
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
18764
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode') | undefined;
|
|
18951
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
18952
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
18953
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee') | undefined;
|
|
18765
18954
|
device_ids?: string[] | undefined;
|
|
18766
18955
|
limit?: number;
|
|
18767
18956
|
created_before?: Date | undefined;
|
|
@@ -18774,7 +18963,7 @@ interface Routes {
|
|
|
18774
18963
|
/** Unique identifier for the device. */
|
|
18775
18964
|
device_id: string;
|
|
18776
18965
|
/** Type of the device. */
|
|
18777
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
18966
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
18778
18967
|
/** Unique identifier for the account associated with the device. */
|
|
18779
18968
|
connected_account_id: string;
|
|
18780
18969
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
@@ -19002,7 +19191,7 @@ interface Routes {
|
|
|
19002
19191
|
/** Unique identifier for the device. */
|
|
19003
19192
|
device_id: string;
|
|
19004
19193
|
/** Type of the device. */
|
|
19005
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
19194
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
19006
19195
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
19007
19196
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
19008
19197
|
/** Properties of the device. */
|
|
@@ -19225,6 +19414,14 @@ interface Routes {
|
|
|
19225
19414
|
product_model: string;
|
|
19226
19415
|
device_info_model: string;
|
|
19227
19416
|
} | undefined;
|
|
19417
|
+
tedee_metadata?: {
|
|
19418
|
+
device_id: number;
|
|
19419
|
+
serial_number: string;
|
|
19420
|
+
device_name: string;
|
|
19421
|
+
device_model: string;
|
|
19422
|
+
bridge_id: number;
|
|
19423
|
+
bridge_name: string;
|
|
19424
|
+
} | undefined;
|
|
19228
19425
|
}) & ({
|
|
19229
19426
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
19230
19427
|
code_constraints?: (Array<{
|
|
@@ -19455,7 +19652,7 @@ interface Routes {
|
|
|
19455
19652
|
/** Unique identifier for the device. */
|
|
19456
19653
|
device_id: string;
|
|
19457
19654
|
/** Type of the device. */
|
|
19458
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
19655
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
19459
19656
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
19460
19657
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
19461
19658
|
/** Properties of the device. */
|
|
@@ -19678,6 +19875,14 @@ interface Routes {
|
|
|
19678
19875
|
product_model: string;
|
|
19679
19876
|
device_info_model: string;
|
|
19680
19877
|
} | undefined;
|
|
19878
|
+
tedee_metadata?: {
|
|
19879
|
+
device_id: number;
|
|
19880
|
+
serial_number: string;
|
|
19881
|
+
device_name: string;
|
|
19882
|
+
device_model: string;
|
|
19883
|
+
bridge_id: number;
|
|
19884
|
+
bridge_name: string;
|
|
19885
|
+
} | undefined;
|
|
19681
19886
|
}) & ({
|
|
19682
19887
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
19683
19888
|
code_constraints?: (Array<{
|
|
@@ -19916,9 +20121,9 @@ interface Routes {
|
|
|
19916
20121
|
connected_account_id?: string | undefined;
|
|
19917
20122
|
connected_account_ids?: string[] | undefined;
|
|
19918
20123
|
connect_webview_id?: string | undefined;
|
|
19919
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
19920
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
19921
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode') | undefined;
|
|
20124
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
20125
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
20126
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee') | undefined;
|
|
19922
20127
|
device_ids?: string[] | undefined;
|
|
19923
20128
|
limit?: number;
|
|
19924
20129
|
created_before?: Date | undefined;
|
|
@@ -19931,7 +20136,7 @@ interface Routes {
|
|
|
19931
20136
|
/** Unique identifier for the device. */
|
|
19932
20137
|
device_id: string;
|
|
19933
20138
|
/** Type of the device. */
|
|
19934
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
20139
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
19935
20140
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
19936
20141
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
19937
20142
|
/** Properties of the device. */
|
|
@@ -20154,6 +20359,14 @@ interface Routes {
|
|
|
20154
20359
|
product_model: string;
|
|
20155
20360
|
device_info_model: string;
|
|
20156
20361
|
} | undefined;
|
|
20362
|
+
tedee_metadata?: {
|
|
20363
|
+
device_id: number;
|
|
20364
|
+
serial_number: string;
|
|
20365
|
+
device_name: string;
|
|
20366
|
+
device_model: string;
|
|
20367
|
+
bridge_id: number;
|
|
20368
|
+
bridge_name: string;
|
|
20369
|
+
} | undefined;
|
|
20157
20370
|
}) & ({
|
|
20158
20371
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
20159
20372
|
code_constraints?: (Array<{
|
|
@@ -20384,7 +20597,7 @@ interface Routes {
|
|
|
20384
20597
|
/** Unique identifier for the device. */
|
|
20385
20598
|
device_id: string;
|
|
20386
20599
|
/** Type of the device. */
|
|
20387
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
20600
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
20388
20601
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
20389
20602
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
20390
20603
|
/** Properties of the device. */
|
|
@@ -20607,6 +20820,14 @@ interface Routes {
|
|
|
20607
20820
|
product_model: string;
|
|
20608
20821
|
device_info_model: string;
|
|
20609
20822
|
} | undefined;
|
|
20823
|
+
tedee_metadata?: {
|
|
20824
|
+
device_id: number;
|
|
20825
|
+
serial_number: string;
|
|
20826
|
+
device_name: string;
|
|
20827
|
+
device_model: string;
|
|
20828
|
+
bridge_id: number;
|
|
20829
|
+
bridge_name: string;
|
|
20830
|
+
} | undefined;
|
|
20610
20831
|
}) & ({
|
|
20611
20832
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
20612
20833
|
code_constraints?: (Array<{
|
|
@@ -21429,7 +21650,7 @@ interface Routes {
|
|
|
21429
21650
|
/** Unique identifier for the device. */
|
|
21430
21651
|
device_id: string;
|
|
21431
21652
|
/** Type of the device. */
|
|
21432
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
21653
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
21433
21654
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
21434
21655
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
21435
21656
|
/** Properties of the device. */
|
|
@@ -21652,6 +21873,14 @@ interface Routes {
|
|
|
21652
21873
|
product_model: string;
|
|
21653
21874
|
device_info_model: string;
|
|
21654
21875
|
} | undefined;
|
|
21876
|
+
tedee_metadata?: {
|
|
21877
|
+
device_id: number;
|
|
21878
|
+
serial_number: string;
|
|
21879
|
+
device_name: string;
|
|
21880
|
+
device_model: string;
|
|
21881
|
+
bridge_id: number;
|
|
21882
|
+
bridge_name: string;
|
|
21883
|
+
} | undefined;
|
|
21655
21884
|
}) & ({
|
|
21656
21885
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
21657
21886
|
code_constraints?: (Array<{
|
|
@@ -21920,9 +22149,9 @@ interface Routes {
|
|
|
21920
22149
|
connected_account_id?: string | undefined;
|
|
21921
22150
|
connected_account_ids?: string[] | undefined;
|
|
21922
22151
|
connect_webview_id?: string | undefined;
|
|
21923
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
21924
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
21925
|
-
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode') | undefined;
|
|
22152
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
22153
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone')> | undefined;
|
|
22154
|
+
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee') | undefined;
|
|
21926
22155
|
device_ids?: string[] | undefined;
|
|
21927
22156
|
limit?: number;
|
|
21928
22157
|
created_before?: Date | undefined;
|
|
@@ -21935,7 +22164,7 @@ interface Routes {
|
|
|
21935
22164
|
/** Unique identifier for the device. */
|
|
21936
22165
|
device_id: string;
|
|
21937
22166
|
/** Type of the device. */
|
|
21938
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
22167
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
21939
22168
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
21940
22169
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
21941
22170
|
/** Properties of the device. */
|
|
@@ -22158,6 +22387,14 @@ interface Routes {
|
|
|
22158
22387
|
product_model: string;
|
|
22159
22388
|
device_info_model: string;
|
|
22160
22389
|
} | undefined;
|
|
22390
|
+
tedee_metadata?: {
|
|
22391
|
+
device_id: number;
|
|
22392
|
+
serial_number: string;
|
|
22393
|
+
device_name: string;
|
|
22394
|
+
device_model: string;
|
|
22395
|
+
bridge_id: number;
|
|
22396
|
+
bridge_name: string;
|
|
22397
|
+
} | undefined;
|
|
22161
22398
|
}) & ({
|
|
22162
22399
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
22163
22400
|
code_constraints?: (Array<{
|
|
@@ -22613,7 +22850,7 @@ interface Routes {
|
|
|
22613
22850
|
/** Unique identifier for the device. */
|
|
22614
22851
|
device_id: string;
|
|
22615
22852
|
/** Type of the device. */
|
|
22616
|
-
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') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
22853
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat') | ('ios_phone' | 'android_phone');
|
|
22617
22854
|
/** Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health. */
|
|
22618
22855
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery' | 'phone'>;
|
|
22619
22856
|
/** Properties of the device. */
|
|
@@ -22836,6 +23073,14 @@ interface Routes {
|
|
|
22836
23073
|
product_model: string;
|
|
22837
23074
|
device_info_model: string;
|
|
22838
23075
|
} | undefined;
|
|
23076
|
+
tedee_metadata?: {
|
|
23077
|
+
device_id: number;
|
|
23078
|
+
serial_number: string;
|
|
23079
|
+
device_name: string;
|
|
23080
|
+
device_model: string;
|
|
23081
|
+
bridge_id: number;
|
|
23082
|
+
bridge_name: string;
|
|
23083
|
+
} | undefined;
|
|
22839
23084
|
}) & ({
|
|
22840
23085
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
22841
23086
|
code_constraints?: (Array<{
|