@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
package/dist/connect.cjs
CHANGED
|
@@ -546,6 +546,8 @@ var openapi_default = {
|
|
|
546
546
|
},
|
|
547
547
|
device: {
|
|
548
548
|
properties: {
|
|
549
|
+
can_program_online_access_codes: { type: "boolean" },
|
|
550
|
+
can_remotely_unlock: { type: "boolean" },
|
|
549
551
|
capabilities_supported: {
|
|
550
552
|
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.',
|
|
551
553
|
items: {
|
|
@@ -626,7 +628,11 @@ var openapi_default = {
|
|
|
626
628
|
type: "string"
|
|
627
629
|
},
|
|
628
630
|
{
|
|
629
|
-
enum: [
|
|
631
|
+
enum: [
|
|
632
|
+
"ecobee_thermostat",
|
|
633
|
+
"nest_thermostat",
|
|
634
|
+
"honeywell_thermostat"
|
|
635
|
+
],
|
|
630
636
|
type: "string"
|
|
631
637
|
},
|
|
632
638
|
{ enum: ["ios_phone", "android_phone"], type: "string" }
|
|
@@ -927,6 +933,14 @@ var openapi_default = {
|
|
|
927
933
|
required: ["device_name", "door_name"],
|
|
928
934
|
type: "object"
|
|
929
935
|
},
|
|
936
|
+
honeywell_metadata: {
|
|
937
|
+
properties: {
|
|
938
|
+
device_name: { type: "string" },
|
|
939
|
+
honeywell_device_id: { type: "string" }
|
|
940
|
+
},
|
|
941
|
+
required: ["honeywell_device_id", "device_name"],
|
|
942
|
+
type: "object"
|
|
943
|
+
},
|
|
930
944
|
hubitat_metadata: {
|
|
931
945
|
properties: {
|
|
932
946
|
device_id: { type: "string" },
|
|
@@ -1785,6 +1799,8 @@ var openapi_default = {
|
|
|
1785
1799
|
},
|
|
1786
1800
|
phone: {
|
|
1787
1801
|
properties: {
|
|
1802
|
+
can_program_online_access_codes: { type: "boolean" },
|
|
1803
|
+
can_remotely_unlock: { type: "boolean" },
|
|
1788
1804
|
capabilities_supported: {
|
|
1789
1805
|
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.',
|
|
1790
1806
|
items: {
|
|
@@ -2056,7 +2072,11 @@ var openapi_default = {
|
|
|
2056
2072
|
type: "string"
|
|
2057
2073
|
},
|
|
2058
2074
|
{
|
|
2059
|
-
enum: [
|
|
2075
|
+
enum: [
|
|
2076
|
+
"ecobee_thermostat",
|
|
2077
|
+
"nest_thermostat",
|
|
2078
|
+
"honeywell_thermostat"
|
|
2079
|
+
],
|
|
2060
2080
|
type: "string"
|
|
2061
2081
|
},
|
|
2062
2082
|
{ enum: ["ios_phone", "android_phone"], type: "string" }
|
|
@@ -7589,7 +7609,11 @@ var openapi_default = {
|
|
|
7589
7609
|
type: "string"
|
|
7590
7610
|
},
|
|
7591
7611
|
{
|
|
7592
|
-
enum: [
|
|
7612
|
+
enum: [
|
|
7613
|
+
"ecobee_thermostat",
|
|
7614
|
+
"nest_thermostat",
|
|
7615
|
+
"honeywell_thermostat"
|
|
7616
|
+
],
|
|
7593
7617
|
type: "string"
|
|
7594
7618
|
},
|
|
7595
7619
|
{ enum: ["ios_phone", "android_phone"], type: "string" }
|
|
@@ -7634,7 +7658,11 @@ var openapi_default = {
|
|
|
7634
7658
|
type: "string"
|
|
7635
7659
|
},
|
|
7636
7660
|
{
|
|
7637
|
-
enum: [
|
|
7661
|
+
enum: [
|
|
7662
|
+
"ecobee_thermostat",
|
|
7663
|
+
"nest_thermostat",
|
|
7664
|
+
"honeywell_thermostat"
|
|
7665
|
+
],
|
|
7638
7666
|
type: "string"
|
|
7639
7667
|
},
|
|
7640
7668
|
{
|
|
@@ -7680,7 +7708,8 @@ var openapi_default = {
|
|
|
7680
7708
|
"controlbyweb",
|
|
7681
7709
|
"smartthings",
|
|
7682
7710
|
"dormakaba_oracode",
|
|
7683
|
-
"tedee"
|
|
7711
|
+
"tedee",
|
|
7712
|
+
"honeywell"
|
|
7684
7713
|
],
|
|
7685
7714
|
type: "string"
|
|
7686
7715
|
},
|
|
@@ -7900,7 +7929,11 @@ var openapi_default = {
|
|
|
7900
7929
|
type: "string"
|
|
7901
7930
|
},
|
|
7902
7931
|
{
|
|
7903
|
-
enum: [
|
|
7932
|
+
enum: [
|
|
7933
|
+
"ecobee_thermostat",
|
|
7934
|
+
"nest_thermostat",
|
|
7935
|
+
"honeywell_thermostat"
|
|
7936
|
+
],
|
|
7904
7937
|
type: "string"
|
|
7905
7938
|
},
|
|
7906
7939
|
{ enum: ["ios_phone", "android_phone"], type: "string" }
|
|
@@ -7945,7 +7978,11 @@ var openapi_default = {
|
|
|
7945
7978
|
type: "string"
|
|
7946
7979
|
},
|
|
7947
7980
|
{
|
|
7948
|
-
enum: [
|
|
7981
|
+
enum: [
|
|
7982
|
+
"ecobee_thermostat",
|
|
7983
|
+
"nest_thermostat",
|
|
7984
|
+
"honeywell_thermostat"
|
|
7985
|
+
],
|
|
7949
7986
|
type: "string"
|
|
7950
7987
|
},
|
|
7951
7988
|
{
|
|
@@ -7991,7 +8028,8 @@ var openapi_default = {
|
|
|
7991
8028
|
"controlbyweb",
|
|
7992
8029
|
"smartthings",
|
|
7993
8030
|
"dormakaba_oracode",
|
|
7994
|
-
"tedee"
|
|
8031
|
+
"tedee",
|
|
8032
|
+
"honeywell"
|
|
7995
8033
|
],
|
|
7996
8034
|
type: "string"
|
|
7997
8035
|
},
|
|
@@ -8815,7 +8853,11 @@ var openapi_default = {
|
|
|
8815
8853
|
type: "string"
|
|
8816
8854
|
},
|
|
8817
8855
|
{
|
|
8818
|
-
enum: [
|
|
8856
|
+
enum: [
|
|
8857
|
+
"ecobee_thermostat",
|
|
8858
|
+
"nest_thermostat",
|
|
8859
|
+
"honeywell_thermostat"
|
|
8860
|
+
],
|
|
8819
8861
|
type: "string"
|
|
8820
8862
|
},
|
|
8821
8863
|
{ enum: ["ios_phone", "android_phone"], type: "string" }
|
|
@@ -8860,7 +8902,11 @@ var openapi_default = {
|
|
|
8860
8902
|
type: "string"
|
|
8861
8903
|
},
|
|
8862
8904
|
{
|
|
8863
|
-
enum: [
|
|
8905
|
+
enum: [
|
|
8906
|
+
"ecobee_thermostat",
|
|
8907
|
+
"nest_thermostat",
|
|
8908
|
+
"honeywell_thermostat"
|
|
8909
|
+
],
|
|
8864
8910
|
type: "string"
|
|
8865
8911
|
},
|
|
8866
8912
|
{
|
|
@@ -8906,7 +8952,8 @@ var openapi_default = {
|
|
|
8906
8952
|
"controlbyweb",
|
|
8907
8953
|
"smartthings",
|
|
8908
8954
|
"dormakaba_oracode",
|
|
8909
|
-
"tedee"
|
|
8955
|
+
"tedee",
|
|
8956
|
+
"honeywell"
|
|
8910
8957
|
],
|
|
8911
8958
|
type: "string"
|
|
8912
8959
|
},
|
|
@@ -10490,7 +10537,11 @@ var openapi_default = {
|
|
|
10490
10537
|
type: "string"
|
|
10491
10538
|
},
|
|
10492
10539
|
{
|
|
10493
|
-
enum: [
|
|
10540
|
+
enum: [
|
|
10541
|
+
"ecobee_thermostat",
|
|
10542
|
+
"nest_thermostat",
|
|
10543
|
+
"honeywell_thermostat"
|
|
10544
|
+
],
|
|
10494
10545
|
type: "string"
|
|
10495
10546
|
},
|
|
10496
10547
|
{ enum: ["ios_phone", "android_phone"], type: "string" }
|
|
@@ -10535,7 +10586,11 @@ var openapi_default = {
|
|
|
10535
10586
|
type: "string"
|
|
10536
10587
|
},
|
|
10537
10588
|
{
|
|
10538
|
-
enum: [
|
|
10589
|
+
enum: [
|
|
10590
|
+
"ecobee_thermostat",
|
|
10591
|
+
"nest_thermostat",
|
|
10592
|
+
"honeywell_thermostat"
|
|
10593
|
+
],
|
|
10539
10594
|
type: "string"
|
|
10540
10595
|
},
|
|
10541
10596
|
{
|
|
@@ -10581,7 +10636,8 @@ var openapi_default = {
|
|
|
10581
10636
|
"controlbyweb",
|
|
10582
10637
|
"smartthings",
|
|
10583
10638
|
"dormakaba_oracode",
|
|
10584
|
-
"tedee"
|
|
10639
|
+
"tedee",
|
|
10640
|
+
"honeywell"
|
|
10585
10641
|
],
|
|
10586
10642
|
type: "string"
|
|
10587
10643
|
},
|