@seamapi/types 1.110.0 → 1.112.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 +70 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +105 -23
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +66 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +81 -23
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +18 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +4 -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 +59 -19
- package/lib/seam/connect/unstable/models/devices/managed-device.js +5 -2
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/phone.d.ts +6 -0
- 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 +66 -10
- package/src/lib/seam/connect/route-types.ts +99 -19
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/unstable/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +72 -66
|
@@ -499,6 +499,8 @@ export default {
|
|
|
499
499
|
},
|
|
500
500
|
device: {
|
|
501
501
|
properties: {
|
|
502
|
+
can_program_online_access_codes: { type: 'boolean' },
|
|
503
|
+
can_remotely_unlock: { type: 'boolean' },
|
|
502
504
|
capabilities_supported: {
|
|
503
505
|
description: '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.',
|
|
504
506
|
items: {
|
|
@@ -579,7 +581,11 @@ export default {
|
|
|
579
581
|
type: 'string',
|
|
580
582
|
},
|
|
581
583
|
{
|
|
582
|
-
enum: [
|
|
584
|
+
enum: [
|
|
585
|
+
'ecobee_thermostat',
|
|
586
|
+
'nest_thermostat',
|
|
587
|
+
'honeywell_thermostat',
|
|
588
|
+
],
|
|
583
589
|
type: 'string',
|
|
584
590
|
},
|
|
585
591
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -880,6 +886,14 @@ export default {
|
|
|
880
886
|
required: ['device_name', 'door_name'],
|
|
881
887
|
type: 'object',
|
|
882
888
|
},
|
|
889
|
+
honeywell_metadata: {
|
|
890
|
+
properties: {
|
|
891
|
+
device_name: { type: 'string' },
|
|
892
|
+
honeywell_device_id: { type: 'string' },
|
|
893
|
+
},
|
|
894
|
+
required: ['honeywell_device_id', 'device_name'],
|
|
895
|
+
type: 'object',
|
|
896
|
+
},
|
|
883
897
|
hubitat_metadata: {
|
|
884
898
|
properties: {
|
|
885
899
|
device_id: { type: 'string' },
|
|
@@ -1738,6 +1752,8 @@ export default {
|
|
|
1738
1752
|
},
|
|
1739
1753
|
phone: {
|
|
1740
1754
|
properties: {
|
|
1755
|
+
can_program_online_access_codes: { type: 'boolean' },
|
|
1756
|
+
can_remotely_unlock: { type: 'boolean' },
|
|
1741
1757
|
capabilities_supported: {
|
|
1742
1758
|
description: '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.',
|
|
1743
1759
|
items: {
|
|
@@ -2009,7 +2025,11 @@ export default {
|
|
|
2009
2025
|
type: 'string',
|
|
2010
2026
|
},
|
|
2011
2027
|
{
|
|
2012
|
-
enum: [
|
|
2028
|
+
enum: [
|
|
2029
|
+
'ecobee_thermostat',
|
|
2030
|
+
'nest_thermostat',
|
|
2031
|
+
'honeywell_thermostat',
|
|
2032
|
+
],
|
|
2013
2033
|
type: 'string',
|
|
2014
2034
|
},
|
|
2015
2035
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -7542,7 +7562,11 @@ export default {
|
|
|
7542
7562
|
type: 'string',
|
|
7543
7563
|
},
|
|
7544
7564
|
{
|
|
7545
|
-
enum: [
|
|
7565
|
+
enum: [
|
|
7566
|
+
'ecobee_thermostat',
|
|
7567
|
+
'nest_thermostat',
|
|
7568
|
+
'honeywell_thermostat',
|
|
7569
|
+
],
|
|
7546
7570
|
type: 'string',
|
|
7547
7571
|
},
|
|
7548
7572
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -7587,7 +7611,11 @@ export default {
|
|
|
7587
7611
|
type: 'string',
|
|
7588
7612
|
},
|
|
7589
7613
|
{
|
|
7590
|
-
enum: [
|
|
7614
|
+
enum: [
|
|
7615
|
+
'ecobee_thermostat',
|
|
7616
|
+
'nest_thermostat',
|
|
7617
|
+
'honeywell_thermostat',
|
|
7618
|
+
],
|
|
7591
7619
|
type: 'string',
|
|
7592
7620
|
},
|
|
7593
7621
|
{
|
|
@@ -7634,6 +7662,7 @@ export default {
|
|
|
7634
7662
|
'smartthings',
|
|
7635
7663
|
'dormakaba_oracode',
|
|
7636
7664
|
'tedee',
|
|
7665
|
+
'honeywell',
|
|
7637
7666
|
],
|
|
7638
7667
|
type: 'string',
|
|
7639
7668
|
},
|
|
@@ -7853,7 +7882,11 @@ export default {
|
|
|
7853
7882
|
type: 'string',
|
|
7854
7883
|
},
|
|
7855
7884
|
{
|
|
7856
|
-
enum: [
|
|
7885
|
+
enum: [
|
|
7886
|
+
'ecobee_thermostat',
|
|
7887
|
+
'nest_thermostat',
|
|
7888
|
+
'honeywell_thermostat',
|
|
7889
|
+
],
|
|
7857
7890
|
type: 'string',
|
|
7858
7891
|
},
|
|
7859
7892
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -7898,7 +7931,11 @@ export default {
|
|
|
7898
7931
|
type: 'string',
|
|
7899
7932
|
},
|
|
7900
7933
|
{
|
|
7901
|
-
enum: [
|
|
7934
|
+
enum: [
|
|
7935
|
+
'ecobee_thermostat',
|
|
7936
|
+
'nest_thermostat',
|
|
7937
|
+
'honeywell_thermostat',
|
|
7938
|
+
],
|
|
7902
7939
|
type: 'string',
|
|
7903
7940
|
},
|
|
7904
7941
|
{
|
|
@@ -7945,6 +7982,7 @@ export default {
|
|
|
7945
7982
|
'smartthings',
|
|
7946
7983
|
'dormakaba_oracode',
|
|
7947
7984
|
'tedee',
|
|
7985
|
+
'honeywell',
|
|
7948
7986
|
],
|
|
7949
7987
|
type: 'string',
|
|
7950
7988
|
},
|
|
@@ -8768,7 +8806,11 @@ export default {
|
|
|
8768
8806
|
type: 'string',
|
|
8769
8807
|
},
|
|
8770
8808
|
{
|
|
8771
|
-
enum: [
|
|
8809
|
+
enum: [
|
|
8810
|
+
'ecobee_thermostat',
|
|
8811
|
+
'nest_thermostat',
|
|
8812
|
+
'honeywell_thermostat',
|
|
8813
|
+
],
|
|
8772
8814
|
type: 'string',
|
|
8773
8815
|
},
|
|
8774
8816
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -8813,7 +8855,11 @@ export default {
|
|
|
8813
8855
|
type: 'string',
|
|
8814
8856
|
},
|
|
8815
8857
|
{
|
|
8816
|
-
enum: [
|
|
8858
|
+
enum: [
|
|
8859
|
+
'ecobee_thermostat',
|
|
8860
|
+
'nest_thermostat',
|
|
8861
|
+
'honeywell_thermostat',
|
|
8862
|
+
],
|
|
8817
8863
|
type: 'string',
|
|
8818
8864
|
},
|
|
8819
8865
|
{
|
|
@@ -8860,6 +8906,7 @@ export default {
|
|
|
8860
8906
|
'smartthings',
|
|
8861
8907
|
'dormakaba_oracode',
|
|
8862
8908
|
'tedee',
|
|
8909
|
+
'honeywell',
|
|
8863
8910
|
],
|
|
8864
8911
|
type: 'string',
|
|
8865
8912
|
},
|
|
@@ -10443,7 +10490,11 @@ export default {
|
|
|
10443
10490
|
type: 'string',
|
|
10444
10491
|
},
|
|
10445
10492
|
{
|
|
10446
|
-
enum: [
|
|
10493
|
+
enum: [
|
|
10494
|
+
'ecobee_thermostat',
|
|
10495
|
+
'nest_thermostat',
|
|
10496
|
+
'honeywell_thermostat',
|
|
10497
|
+
],
|
|
10447
10498
|
type: 'string',
|
|
10448
10499
|
},
|
|
10449
10500
|
{ enum: ['ios_phone', 'android_phone'], type: 'string' },
|
|
@@ -10488,7 +10539,11 @@ export default {
|
|
|
10488
10539
|
type: 'string',
|
|
10489
10540
|
},
|
|
10490
10541
|
{
|
|
10491
|
-
enum: [
|
|
10542
|
+
enum: [
|
|
10543
|
+
'ecobee_thermostat',
|
|
10544
|
+
'nest_thermostat',
|
|
10545
|
+
'honeywell_thermostat',
|
|
10546
|
+
],
|
|
10492
10547
|
type: 'string',
|
|
10493
10548
|
},
|
|
10494
10549
|
{
|
|
@@ -10535,6 +10590,7 @@ export default {
|
|
|
10535
10590
|
'smartthings',
|
|
10536
10591
|
'dormakaba_oracode',
|
|
10537
10592
|
'tedee',
|
|
10593
|
+
'honeywell',
|
|
10538
10594
|
],
|
|
10539
10595
|
type: 'string',
|
|
10540
10596
|
},
|