@seamapi/types 1.248.0 → 1.249.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 +35 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +125 -97
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +21 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +21 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +1 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +31 -26
- package/lib/seam/connect/models/devices/phone.d.ts +21 -18
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -18
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/modes.d.ts +3 -1
- package/lib/seam/connect/models/thermostats/modes.js +2 -1
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +32 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -53
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +1 -0
- package/src/lib/seam/connect/models/thermostats/modes.ts +7 -1
- package/src/lib/seam/connect/openapi.ts +32 -10
- package/src/lib/seam/connect/route-types.ts +137 -53
|
@@ -2237,7 +2237,10 @@ export default {
|
|
|
2237
2237
|
cooling_set_point_celsius: { format: 'float', type: 'number' },
|
|
2238
2238
|
cooling_set_point_fahrenheit: { format: 'float', type: 'number' },
|
|
2239
2239
|
display_name: { type: 'string' },
|
|
2240
|
-
fan_mode_setting: {
|
|
2240
|
+
fan_mode_setting: {
|
|
2241
|
+
enum: ['auto', 'on', 'circulate'],
|
|
2242
|
+
type: 'string',
|
|
2243
|
+
},
|
|
2241
2244
|
heating_set_point_celsius: { format: 'float', type: 'number' },
|
|
2242
2245
|
heating_set_point_fahrenheit: { format: 'float', type: 'number' },
|
|
2243
2246
|
hvac_mode_setting: {
|
|
@@ -3376,7 +3379,7 @@ export default {
|
|
|
3376
3379
|
},
|
|
3377
3380
|
display_name: { type: 'string' },
|
|
3378
3381
|
fan_mode_setting: {
|
|
3379
|
-
enum: ['auto', 'on'],
|
|
3382
|
+
enum: ['auto', 'on', 'circulate'],
|
|
3380
3383
|
type: 'string',
|
|
3381
3384
|
},
|
|
3382
3385
|
heating_set_point_celsius: {
|
|
@@ -3409,6 +3412,13 @@ export default {
|
|
|
3409
3412
|
},
|
|
3410
3413
|
type: 'array',
|
|
3411
3414
|
},
|
|
3415
|
+
available_fan_mode_settings: {
|
|
3416
|
+
items: {
|
|
3417
|
+
enum: ['auto', 'on', 'circulate'],
|
|
3418
|
+
type: 'string',
|
|
3419
|
+
},
|
|
3420
|
+
type: 'array',
|
|
3421
|
+
},
|
|
3412
3422
|
available_hvac_mode_settings: {
|
|
3413
3423
|
items: {
|
|
3414
3424
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
@@ -3431,7 +3441,7 @@ export default {
|
|
|
3431
3441
|
},
|
|
3432
3442
|
display_name: { type: 'string' },
|
|
3433
3443
|
fan_mode_setting: {
|
|
3434
|
-
enum: ['auto', 'on'],
|
|
3444
|
+
enum: ['auto', 'on', 'circulate'],
|
|
3435
3445
|
type: 'string',
|
|
3436
3446
|
},
|
|
3437
3447
|
heating_set_point_celsius: {
|
|
@@ -3471,7 +3481,7 @@ export default {
|
|
|
3471
3481
|
},
|
|
3472
3482
|
display_name: { type: 'string' },
|
|
3473
3483
|
fan_mode_setting: {
|
|
3474
|
-
enum: ['auto', 'on'],
|
|
3484
|
+
enum: ['auto', 'on', 'circulate'],
|
|
3475
3485
|
type: 'string',
|
|
3476
3486
|
},
|
|
3477
3487
|
heating_set_point_celsius: {
|
|
@@ -3505,7 +3515,7 @@ export default {
|
|
|
3505
3515
|
},
|
|
3506
3516
|
fan_mode_setting: {
|
|
3507
3517
|
deprecated: true,
|
|
3508
|
-
enum: ['auto', 'on'],
|
|
3518
|
+
enum: ['auto', 'on', 'circulate'],
|
|
3509
3519
|
type: 'string',
|
|
3510
3520
|
'x-deprecated':
|
|
3511
3521
|
'use current_climate_setting.fan_mode_setting instead.',
|
|
@@ -13067,7 +13077,10 @@ export default {
|
|
|
13067
13077
|
type: 'number',
|
|
13068
13078
|
},
|
|
13069
13079
|
device_id: { format: 'uuid', type: 'string' },
|
|
13070
|
-
fan_mode_setting: {
|
|
13080
|
+
fan_mode_setting: {
|
|
13081
|
+
enum: ['auto', 'on', 'circulate'],
|
|
13082
|
+
type: 'string',
|
|
13083
|
+
},
|
|
13071
13084
|
heating_set_point_celsius: {
|
|
13072
13085
|
format: 'float',
|
|
13073
13086
|
type: 'number',
|
|
@@ -14009,11 +14022,14 @@ export default {
|
|
|
14009
14022
|
device_id: { format: 'uuid', type: 'string' },
|
|
14010
14023
|
fan_mode: {
|
|
14011
14024
|
deprecated: true,
|
|
14012
|
-
enum: ['auto', 'on'],
|
|
14025
|
+
enum: ['auto', 'on', 'circulate'],
|
|
14013
14026
|
type: 'string',
|
|
14014
14027
|
'x-deprecated': 'use fan_mode_setting instead.',
|
|
14015
14028
|
},
|
|
14016
|
-
fan_mode_setting: {
|
|
14029
|
+
fan_mode_setting: {
|
|
14030
|
+
enum: ['auto', 'on', 'circulate'],
|
|
14031
|
+
type: 'string',
|
|
14032
|
+
},
|
|
14017
14033
|
sync: { default: false, type: 'boolean' },
|
|
14018
14034
|
},
|
|
14019
14035
|
required: ['device_id'],
|
|
@@ -14074,7 +14090,10 @@ export default {
|
|
|
14074
14090
|
type: 'number',
|
|
14075
14091
|
},
|
|
14076
14092
|
device_id: { format: 'uuid', type: 'string' },
|
|
14077
|
-
fan_mode_setting: {
|
|
14093
|
+
fan_mode_setting: {
|
|
14094
|
+
enum: ['auto', 'on', 'circulate'],
|
|
14095
|
+
type: 'string',
|
|
14096
|
+
},
|
|
14078
14097
|
heating_set_point_celsius: {
|
|
14079
14098
|
format: 'float',
|
|
14080
14099
|
type: 'number',
|
|
@@ -14142,7 +14161,10 @@ export default {
|
|
|
14142
14161
|
type: 'number',
|
|
14143
14162
|
},
|
|
14144
14163
|
device_id: { format: 'uuid', type: 'string' },
|
|
14145
|
-
fan_mode_setting: {
|
|
14164
|
+
fan_mode_setting: {
|
|
14165
|
+
enum: ['auto', 'on', 'circulate'],
|
|
14166
|
+
type: 'string',
|
|
14167
|
+
},
|
|
14146
14168
|
heating_set_point_celsius: {
|
|
14147
14169
|
format: 'float',
|
|
14148
14170
|
type: 'number',
|