@seamapi/types 1.132.0 → 1.133.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 +80 -64
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +261 -215
- package/lib/seam/connect/openapi.d.ts +216 -170
- package/lib/seam/connect/openapi.js +77 -61
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +45 -45
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +8 -8
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +2 -2
- 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 -1
- package/lib/seam/connect/unstable/models/devices/device-type.js +1 -1
- package/lib/seam/connect/unstable/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +19 -19
- 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 +77 -61
- package/src/lib/seam/connect/route-types.ts +121 -43
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +2 -2
- package/src/lib/seam/connect/unstable/models/devices/device-type.ts +1 -1
|
@@ -589,7 +589,7 @@ export default {
|
|
|
589
589
|
enum: [
|
|
590
590
|
'ecobee_thermostat',
|
|
591
591
|
'nest_thermostat',
|
|
592
|
-
'
|
|
592
|
+
'honeywell_resideo_thermostat',
|
|
593
593
|
],
|
|
594
594
|
type: 'string',
|
|
595
595
|
},
|
|
@@ -909,12 +909,15 @@ export default {
|
|
|
909
909
|
required: ['device_name', 'door_name'],
|
|
910
910
|
type: 'object',
|
|
911
911
|
},
|
|
912
|
-
|
|
912
|
+
honeywell_resideo_metadata: {
|
|
913
913
|
properties: {
|
|
914
914
|
device_name: { type: 'string' },
|
|
915
|
-
|
|
915
|
+
honeywell_resideo_device_id: { type: 'string' },
|
|
916
916
|
},
|
|
917
|
-
required: [
|
|
917
|
+
required: [
|
|
918
|
+
'honeywell_resideo_device_id',
|
|
919
|
+
'device_name',
|
|
920
|
+
],
|
|
918
921
|
type: 'object',
|
|
919
922
|
},
|
|
920
923
|
hubitat_metadata: {
|
|
@@ -1740,7 +1743,7 @@ export default {
|
|
|
1740
1743
|
'assa_abloy_credential_service',
|
|
1741
1744
|
'seam_bridge',
|
|
1742
1745
|
'tedee',
|
|
1743
|
-
'
|
|
1746
|
+
'honeywell_resideo',
|
|
1744
1747
|
],
|
|
1745
1748
|
type: 'string',
|
|
1746
1749
|
},
|
|
@@ -2112,7 +2115,7 @@ export default {
|
|
|
2112
2115
|
enum: [
|
|
2113
2116
|
'ecobee_thermostat',
|
|
2114
2117
|
'nest_thermostat',
|
|
2115
|
-
'
|
|
2118
|
+
'honeywell_resideo_thermostat',
|
|
2116
2119
|
],
|
|
2117
2120
|
type: 'string',
|
|
2118
2121
|
},
|
|
@@ -7018,7 +7021,7 @@ export default {
|
|
|
7018
7021
|
'assa_abloy_credential_service',
|
|
7019
7022
|
'seam_bridge',
|
|
7020
7023
|
'tedee',
|
|
7021
|
-
'
|
|
7024
|
+
'honeywell_resideo',
|
|
7022
7025
|
'yale_access',
|
|
7023
7026
|
'hid_cm',
|
|
7024
7027
|
'google_nest',
|
|
@@ -7667,7 +7670,7 @@ export default {
|
|
|
7667
7670
|
enum: [
|
|
7668
7671
|
'ecobee_thermostat',
|
|
7669
7672
|
'nest_thermostat',
|
|
7670
|
-
'
|
|
7673
|
+
'honeywell_resideo_thermostat',
|
|
7671
7674
|
],
|
|
7672
7675
|
type: 'string',
|
|
7673
7676
|
},
|
|
@@ -7716,7 +7719,7 @@ export default {
|
|
|
7716
7719
|
enum: [
|
|
7717
7720
|
'ecobee_thermostat',
|
|
7718
7721
|
'nest_thermostat',
|
|
7719
|
-
'
|
|
7722
|
+
'honeywell_resideo_thermostat',
|
|
7720
7723
|
],
|
|
7721
7724
|
type: 'string',
|
|
7722
7725
|
},
|
|
@@ -7764,7 +7767,7 @@ export default {
|
|
|
7764
7767
|
'smartthings',
|
|
7765
7768
|
'dormakaba_oracode',
|
|
7766
7769
|
'tedee',
|
|
7767
|
-
'
|
|
7770
|
+
'honeywell_resideo',
|
|
7768
7771
|
],
|
|
7769
7772
|
type: 'string',
|
|
7770
7773
|
},
|
|
@@ -7993,7 +7996,7 @@ export default {
|
|
|
7993
7996
|
enum: [
|
|
7994
7997
|
'ecobee_thermostat',
|
|
7995
7998
|
'nest_thermostat',
|
|
7996
|
-
'
|
|
7999
|
+
'honeywell_resideo_thermostat',
|
|
7997
8000
|
],
|
|
7998
8001
|
type: 'string',
|
|
7999
8002
|
},
|
|
@@ -8042,7 +8045,7 @@ export default {
|
|
|
8042
8045
|
enum: [
|
|
8043
8046
|
'ecobee_thermostat',
|
|
8044
8047
|
'nest_thermostat',
|
|
8045
|
-
'
|
|
8048
|
+
'honeywell_resideo_thermostat',
|
|
8046
8049
|
],
|
|
8047
8050
|
type: 'string',
|
|
8048
8051
|
},
|
|
@@ -8090,7 +8093,7 @@ export default {
|
|
|
8090
8093
|
'smartthings',
|
|
8091
8094
|
'dormakaba_oracode',
|
|
8092
8095
|
'tedee',
|
|
8093
|
-
'
|
|
8096
|
+
'honeywell_resideo',
|
|
8094
8097
|
],
|
|
8095
8098
|
type: 'string',
|
|
8096
8099
|
},
|
|
@@ -8425,6 +8428,7 @@ export default {
|
|
|
8425
8428
|
'device.converted_to_unmanaged',
|
|
8426
8429
|
'device.unmanaged.converted_to_managed',
|
|
8427
8430
|
'device.removed',
|
|
8431
|
+
'device.deleted',
|
|
8428
8432
|
'device.tampered',
|
|
8429
8433
|
'device.low_battery',
|
|
8430
8434
|
'device.battery_status_changed',
|
|
@@ -8481,6 +8485,7 @@ export default {
|
|
|
8481
8485
|
'device.converted_to_unmanaged',
|
|
8482
8486
|
'device.unmanaged.converted_to_managed',
|
|
8483
8487
|
'device.removed',
|
|
8488
|
+
'device.deleted',
|
|
8484
8489
|
'device.tampered',
|
|
8485
8490
|
'device.low_battery',
|
|
8486
8491
|
'device.battery_status_changed',
|
|
@@ -8927,7 +8932,7 @@ export default {
|
|
|
8927
8932
|
enum: [
|
|
8928
8933
|
'ecobee_thermostat',
|
|
8929
8934
|
'nest_thermostat',
|
|
8930
|
-
'
|
|
8935
|
+
'honeywell_resideo_thermostat',
|
|
8931
8936
|
],
|
|
8932
8937
|
type: 'string',
|
|
8933
8938
|
},
|
|
@@ -8976,7 +8981,7 @@ export default {
|
|
|
8976
8981
|
enum: [
|
|
8977
8982
|
'ecobee_thermostat',
|
|
8978
8983
|
'nest_thermostat',
|
|
8979
|
-
'
|
|
8984
|
+
'honeywell_resideo_thermostat',
|
|
8980
8985
|
],
|
|
8981
8986
|
type: 'string',
|
|
8982
8987
|
},
|
|
@@ -9024,7 +9029,7 @@ export default {
|
|
|
9024
9029
|
'smartthings',
|
|
9025
9030
|
'dormakaba_oracode',
|
|
9026
9031
|
'tedee',
|
|
9027
|
-
'
|
|
9032
|
+
'honeywell_resideo',
|
|
9028
9033
|
],
|
|
9029
9034
|
type: 'string',
|
|
9030
9035
|
},
|
|
@@ -9929,9 +9934,10 @@ export default {
|
|
|
9929
9934
|
401: { description: 'Unauthorized' },
|
|
9930
9935
|
},
|
|
9931
9936
|
security: [
|
|
9932
|
-
{
|
|
9933
|
-
{
|
|
9934
|
-
{
|
|
9937
|
+
{ client_session: [] },
|
|
9938
|
+
{ pat_with_workspace: [] },
|
|
9939
|
+
{ console_session: [] },
|
|
9940
|
+
{ api_key: [] },
|
|
9935
9941
|
],
|
|
9936
9942
|
summary: '/thermostats/climate_setting_schedules/create',
|
|
9937
9943
|
tags: ['/thermostats'],
|
|
@@ -9976,9 +9982,10 @@ export default {
|
|
|
9976
9982
|
401: { description: 'Unauthorized' },
|
|
9977
9983
|
},
|
|
9978
9984
|
security: [
|
|
9979
|
-
{
|
|
9980
|
-
{
|
|
9981
|
-
{
|
|
9985
|
+
{ client_session: [] },
|
|
9986
|
+
{ pat_with_workspace: [] },
|
|
9987
|
+
{ console_session: [] },
|
|
9988
|
+
{ api_key: [] },
|
|
9982
9989
|
],
|
|
9983
9990
|
summary: '/thermostats/climate_setting_schedules/delete',
|
|
9984
9991
|
tags: ['/thermostats'],
|
|
@@ -10020,9 +10027,10 @@ export default {
|
|
|
10020
10027
|
401: { description: 'Unauthorized' },
|
|
10021
10028
|
},
|
|
10022
10029
|
security: [
|
|
10023
|
-
{
|
|
10024
|
-
{
|
|
10025
|
-
{
|
|
10030
|
+
{ client_session: [] },
|
|
10031
|
+
{ pat_with_workspace: [] },
|
|
10032
|
+
{ console_session: [] },
|
|
10033
|
+
{ api_key: [] },
|
|
10026
10034
|
],
|
|
10027
10035
|
summary: '/thermostats/climate_setting_schedules/delete',
|
|
10028
10036
|
tags: ['/thermostats'],
|
|
@@ -10070,9 +10078,10 @@ export default {
|
|
|
10070
10078
|
401: { description: 'Unauthorized' },
|
|
10071
10079
|
},
|
|
10072
10080
|
security: [
|
|
10073
|
-
{
|
|
10074
|
-
{
|
|
10075
|
-
{
|
|
10081
|
+
{ client_session: [] },
|
|
10082
|
+
{ pat_with_workspace: [] },
|
|
10083
|
+
{ console_session: [] },
|
|
10084
|
+
{ api_key: [] },
|
|
10076
10085
|
],
|
|
10077
10086
|
summary: '/thermostats/climate_setting_schedules/get',
|
|
10078
10087
|
tags: ['/thermostats'],
|
|
@@ -10123,9 +10132,10 @@ export default {
|
|
|
10123
10132
|
401: { description: 'Unauthorized' },
|
|
10124
10133
|
},
|
|
10125
10134
|
security: [
|
|
10126
|
-
{
|
|
10127
|
-
{
|
|
10128
|
-
{
|
|
10135
|
+
{ api_key: [] },
|
|
10136
|
+
{ client_session: [] },
|
|
10137
|
+
{ pat_with_workspace: [] },
|
|
10138
|
+
{ console_session: [] },
|
|
10129
10139
|
],
|
|
10130
10140
|
summary: '/thermostats/climate_setting_schedules/list',
|
|
10131
10141
|
tags: ['/thermostats'],
|
|
@@ -10194,9 +10204,10 @@ export default {
|
|
|
10194
10204
|
401: { description: 'Unauthorized' },
|
|
10195
10205
|
},
|
|
10196
10206
|
security: [
|
|
10197
|
-
{
|
|
10198
|
-
{
|
|
10199
|
-
{
|
|
10207
|
+
{ client_session: [] },
|
|
10208
|
+
{ pat_with_workspace: [] },
|
|
10209
|
+
{ console_session: [] },
|
|
10210
|
+
{ api_key: [] },
|
|
10200
10211
|
],
|
|
10201
10212
|
summary: '/thermostats/climate_setting_schedules/update',
|
|
10202
10213
|
tags: ['/thermostats'],
|
|
@@ -10261,9 +10272,10 @@ export default {
|
|
|
10261
10272
|
401: { description: 'Unauthorized' },
|
|
10262
10273
|
},
|
|
10263
10274
|
security: [
|
|
10264
|
-
{
|
|
10265
|
-
{
|
|
10266
|
-
{
|
|
10275
|
+
{ client_session: [] },
|
|
10276
|
+
{ pat_with_workspace: [] },
|
|
10277
|
+
{ console_session: [] },
|
|
10278
|
+
{ api_key: [] },
|
|
10267
10279
|
],
|
|
10268
10280
|
summary: '/thermostats/climate_setting_schedules/update',
|
|
10269
10281
|
tags: ['/thermostats'],
|
|
@@ -10330,9 +10342,10 @@ export default {
|
|
|
10330
10342
|
401: { description: 'Unauthorized' },
|
|
10331
10343
|
},
|
|
10332
10344
|
security: [
|
|
10333
|
-
{
|
|
10334
|
-
{
|
|
10335
|
-
{
|
|
10345
|
+
{ client_session: [] },
|
|
10346
|
+
{ pat_with_workspace: [] },
|
|
10347
|
+
{ console_session: [] },
|
|
10348
|
+
{ api_key: [] },
|
|
10336
10349
|
],
|
|
10337
10350
|
summary: '/thermostats/climate_setting_schedules/update',
|
|
10338
10351
|
tags: ['/thermostats'],
|
|
@@ -10380,9 +10393,9 @@ export default {
|
|
|
10380
10393
|
401: { description: 'Unauthorized' },
|
|
10381
10394
|
},
|
|
10382
10395
|
security: [
|
|
10383
|
-
{
|
|
10384
|
-
{
|
|
10385
|
-
{
|
|
10396
|
+
{ api_key: [] },
|
|
10397
|
+
{ client_session: [] },
|
|
10398
|
+
{ pat_with_workspace: [] },
|
|
10386
10399
|
],
|
|
10387
10400
|
summary: '/thermostats/cool',
|
|
10388
10401
|
tags: ['/thermostats'],
|
|
@@ -10427,9 +10440,9 @@ export default {
|
|
|
10427
10440
|
401: { description: 'Unauthorized' },
|
|
10428
10441
|
},
|
|
10429
10442
|
security: [
|
|
10430
|
-
{
|
|
10431
|
-
{
|
|
10432
|
-
{
|
|
10443
|
+
{ api_key: [] },
|
|
10444
|
+
{ client_session: [] },
|
|
10445
|
+
{ pat_with_workspace: [] },
|
|
10433
10446
|
],
|
|
10434
10447
|
summary: '/thermostats/get',
|
|
10435
10448
|
tags: ['/thermostats'],
|
|
@@ -10479,9 +10492,9 @@ export default {
|
|
|
10479
10492
|
401: { description: 'Unauthorized' },
|
|
10480
10493
|
},
|
|
10481
10494
|
security: [
|
|
10482
|
-
{
|
|
10483
|
-
{
|
|
10484
|
-
{
|
|
10495
|
+
{ api_key: [] },
|
|
10496
|
+
{ client_session: [] },
|
|
10497
|
+
{ pat_with_workspace: [] },
|
|
10485
10498
|
],
|
|
10486
10499
|
summary: '/thermostats/heat',
|
|
10487
10500
|
tags: ['/thermostats'],
|
|
@@ -10533,9 +10546,9 @@ export default {
|
|
|
10533
10546
|
401: { description: 'Unauthorized' },
|
|
10534
10547
|
},
|
|
10535
10548
|
security: [
|
|
10536
|
-
{
|
|
10537
|
-
{
|
|
10538
|
-
{
|
|
10549
|
+
{ api_key: [] },
|
|
10550
|
+
{ client_session: [] },
|
|
10551
|
+
{ pat_with_workspace: [] },
|
|
10539
10552
|
],
|
|
10540
10553
|
summary: '/thermostats/heat_cool',
|
|
10541
10554
|
tags: ['/thermostats'],
|
|
@@ -10623,7 +10636,7 @@ export default {
|
|
|
10623
10636
|
enum: [
|
|
10624
10637
|
'ecobee_thermostat',
|
|
10625
10638
|
'nest_thermostat',
|
|
10626
|
-
'
|
|
10639
|
+
'honeywell_resideo_thermostat',
|
|
10627
10640
|
],
|
|
10628
10641
|
type: 'string',
|
|
10629
10642
|
},
|
|
@@ -10672,7 +10685,7 @@ export default {
|
|
|
10672
10685
|
enum: [
|
|
10673
10686
|
'ecobee_thermostat',
|
|
10674
10687
|
'nest_thermostat',
|
|
10675
|
-
'
|
|
10688
|
+
'honeywell_resideo_thermostat',
|
|
10676
10689
|
],
|
|
10677
10690
|
type: 'string',
|
|
10678
10691
|
},
|
|
@@ -10720,7 +10733,7 @@ export default {
|
|
|
10720
10733
|
'smartthings',
|
|
10721
10734
|
'dormakaba_oracode',
|
|
10722
10735
|
'tedee',
|
|
10723
|
-
'
|
|
10736
|
+
'honeywell_resideo',
|
|
10724
10737
|
],
|
|
10725
10738
|
type: 'string',
|
|
10726
10739
|
},
|
|
@@ -10757,6 +10770,7 @@ export default {
|
|
|
10757
10770
|
{ api_key: [] },
|
|
10758
10771
|
{ pat_with_workspace: [] },
|
|
10759
10772
|
{ console_session: [] },
|
|
10773
|
+
{ client_session: [] },
|
|
10760
10774
|
],
|
|
10761
10775
|
summary: '/thermostats/list',
|
|
10762
10776
|
tags: ['/thermostats'],
|
|
@@ -10804,9 +10818,9 @@ export default {
|
|
|
10804
10818
|
401: { description: 'Unauthorized' },
|
|
10805
10819
|
},
|
|
10806
10820
|
security: [
|
|
10807
|
-
{
|
|
10808
|
-
{
|
|
10809
|
-
{
|
|
10821
|
+
{ api_key: [] },
|
|
10822
|
+
{ client_session: [] },
|
|
10823
|
+
{ pat_with_workspace: [] },
|
|
10810
10824
|
],
|
|
10811
10825
|
summary: '/thermostats/off',
|
|
10812
10826
|
tags: ['/thermostats'],
|
|
@@ -10856,9 +10870,9 @@ export default {
|
|
|
10856
10870
|
401: { description: 'Unauthorized' },
|
|
10857
10871
|
},
|
|
10858
10872
|
security: [
|
|
10859
|
-
{
|
|
10860
|
-
{
|
|
10861
|
-
{
|
|
10873
|
+
{ api_key: [] },
|
|
10874
|
+
{ client_session: [] },
|
|
10875
|
+
{ pat_with_workspace: [] },
|
|
10862
10876
|
],
|
|
10863
10877
|
summary: '/thermostats/set_fan_mode',
|
|
10864
10878
|
tags: ['/thermostats'],
|
|
@@ -10919,6 +10933,7 @@ export default {
|
|
|
10919
10933
|
{ api_key: [] },
|
|
10920
10934
|
{ pat_with_workspace: [] },
|
|
10921
10935
|
{ console_session: [] },
|
|
10936
|
+
{ client_session: [] },
|
|
10922
10937
|
],
|
|
10923
10938
|
summary: '/thermostats/update',
|
|
10924
10939
|
tags: ['/thermostats'],
|
|
@@ -10975,6 +10990,7 @@ export default {
|
|
|
10975
10990
|
{ api_key: [] },
|
|
10976
10991
|
{ pat_with_workspace: [] },
|
|
10977
10992
|
{ console_session: [] },
|
|
10993
|
+
{ client_session: [] },
|
|
10978
10994
|
],
|
|
10979
10995
|
summary: '/thermostats/update',
|
|
10980
10996
|
tags: ['/thermostats'],
|