@seamapi/types 1.396.0 → 1.397.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 +102 -94
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +113 -106
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +0 -53
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +0 -23
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +3 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +3 -3
- package/lib/seam/connect/models/thermostats/thermostat-program.js +16 -6
- package/lib/seam/connect/models/thermostats/thermostat-program.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +10 -5
- package/lib/seam/connect/openapi.js +72 -56
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +97 -95
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +0 -35
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/models/thermostats/thermostat-program.ts +29 -15
- package/src/lib/seam/connect/openapi.ts +111 -56
- package/src/lib/seam/connect/route-types.ts +97 -74
|
@@ -7610,6 +7610,7 @@ export default {
|
|
|
7610
7610
|
'honeywell_resideo_thermostat',
|
|
7611
7611
|
'tado_thermostat',
|
|
7612
7612
|
'sensi_thermostat',
|
|
7613
|
+
'smartthings_thermostat',
|
|
7613
7614
|
],
|
|
7614
7615
|
type: 'string',
|
|
7615
7616
|
},
|
|
@@ -9314,6 +9315,8 @@ export default {
|
|
|
9314
9315
|
},
|
|
9315
9316
|
thermostat_daily_programs: {
|
|
9316
9317
|
items: {
|
|
9318
|
+
description:
|
|
9319
|
+
'Represents a thermostat daily program, consisting of a set of periods, each of which has a starting time and the key that identifies the climate preset to apply at the starting time.',
|
|
9317
9320
|
properties: {
|
|
9318
9321
|
created_at: {
|
|
9319
9322
|
description:
|
|
@@ -9323,7 +9326,7 @@ export default {
|
|
|
9323
9326
|
},
|
|
9324
9327
|
device_id: {
|
|
9325
9328
|
description:
|
|
9326
|
-
'ID of the
|
|
9329
|
+
'ID of the thermostat device on which the thermostat daily program is configured.',
|
|
9327
9330
|
format: 'uuid',
|
|
9328
9331
|
type: 'string',
|
|
9329
9332
|
},
|
|
@@ -9337,15 +9340,17 @@ export default {
|
|
|
9337
9340
|
description:
|
|
9338
9341
|
'Array of thermostat daily program periods.',
|
|
9339
9342
|
items: {
|
|
9343
|
+
description:
|
|
9344
|
+
'Period for a thermostat daily program. Consists of a starts at time and the key that identifies the configured climate preset to apply at the starting time.',
|
|
9340
9345
|
properties: {
|
|
9341
9346
|
climate_preset_key: {
|
|
9342
9347
|
description:
|
|
9343
|
-
'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
9348
|
+
'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`.',
|
|
9344
9349
|
type: 'string',
|
|
9345
9350
|
},
|
|
9346
9351
|
starts_at_time: {
|
|
9347
9352
|
description:
|
|
9348
|
-
'Time at which the thermostat daily program
|
|
9353
|
+
'Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
9349
9354
|
pattern:
|
|
9350
9355
|
'^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
9351
9356
|
type: 'string',
|
|
@@ -9381,6 +9386,8 @@ export default {
|
|
|
9381
9386
|
'created_at',
|
|
9382
9387
|
],
|
|
9383
9388
|
type: 'object',
|
|
9389
|
+
'x-route-path':
|
|
9390
|
+
'/thermostats/thermostat_daily_programs',
|
|
9384
9391
|
},
|
|
9385
9392
|
type: 'array',
|
|
9386
9393
|
},
|
|
@@ -17891,6 +17898,7 @@ export default {
|
|
|
17891
17898
|
'honeywell_resideo_thermostat',
|
|
17892
17899
|
'tado_thermostat',
|
|
17893
17900
|
'sensi_thermostat',
|
|
17901
|
+
'smartthings_thermostat',
|
|
17894
17902
|
],
|
|
17895
17903
|
type: 'string',
|
|
17896
17904
|
},
|
|
@@ -26011,6 +26019,7 @@ export default {
|
|
|
26011
26019
|
'honeywell_resideo_thermostat',
|
|
26012
26020
|
'tado_thermostat',
|
|
26013
26021
|
'sensi_thermostat',
|
|
26022
|
+
'smartthings_thermostat',
|
|
26014
26023
|
],
|
|
26015
26024
|
type: 'string',
|
|
26016
26025
|
},
|
|
@@ -26069,6 +26078,7 @@ export default {
|
|
|
26069
26078
|
'honeywell_resideo_thermostat',
|
|
26070
26079
|
'tado_thermostat',
|
|
26071
26080
|
'sensi_thermostat',
|
|
26081
|
+
'smartthings_thermostat',
|
|
26072
26082
|
],
|
|
26073
26083
|
type: 'string',
|
|
26074
26084
|
},
|
|
@@ -26564,6 +26574,7 @@ export default {
|
|
|
26564
26574
|
'honeywell_resideo_thermostat',
|
|
26565
26575
|
'tado_thermostat',
|
|
26566
26576
|
'sensi_thermostat',
|
|
26577
|
+
'smartthings_thermostat',
|
|
26567
26578
|
],
|
|
26568
26579
|
type: 'string',
|
|
26569
26580
|
},
|
|
@@ -26622,6 +26633,7 @@ export default {
|
|
|
26622
26633
|
'honeywell_resideo_thermostat',
|
|
26623
26634
|
'tado_thermostat',
|
|
26624
26635
|
'sensi_thermostat',
|
|
26636
|
+
'smartthings_thermostat',
|
|
26625
26637
|
],
|
|
26626
26638
|
type: 'string',
|
|
26627
26639
|
},
|
|
@@ -30076,11 +30088,12 @@ export default {
|
|
|
30076
30088
|
properties: {
|
|
30077
30089
|
climate_preset_key: {
|
|
30078
30090
|
description:
|
|
30079
|
-
'Climate preset key of the
|
|
30091
|
+
'Climate preset key of the climate preset that you want to activate.',
|
|
30080
30092
|
type: 'string',
|
|
30081
30093
|
},
|
|
30082
30094
|
device_id: {
|
|
30083
|
-
description:
|
|
30095
|
+
description:
|
|
30096
|
+
'ID of the thermostat device for which you want to activate a climate preset.',
|
|
30084
30097
|
format: 'uuid',
|
|
30085
30098
|
type: 'string',
|
|
30086
30099
|
},
|
|
@@ -30150,7 +30163,8 @@ export default {
|
|
|
30150
30163
|
type: 'number',
|
|
30151
30164
|
},
|
|
30152
30165
|
device_id: {
|
|
30153
|
-
description:
|
|
30166
|
+
description:
|
|
30167
|
+
'ID of the thermostat device that you want to set to cool mode.',
|
|
30154
30168
|
format: 'uuid',
|
|
30155
30169
|
type: 'string',
|
|
30156
30170
|
},
|
|
@@ -30231,7 +30245,8 @@ export default {
|
|
|
30231
30245
|
type: 'number',
|
|
30232
30246
|
},
|
|
30233
30247
|
device_id: {
|
|
30234
|
-
description:
|
|
30248
|
+
description:
|
|
30249
|
+
'ID of the thermostat device for which you want create a climate preset.',
|
|
30235
30250
|
format: 'uuid',
|
|
30236
30251
|
type: 'string',
|
|
30237
30252
|
},
|
|
@@ -30314,7 +30329,8 @@ export default {
|
|
|
30314
30329
|
},
|
|
30315
30330
|
'/thermostats/daily_programs/create': {
|
|
30316
30331
|
post: {
|
|
30317
|
-
description:
|
|
30332
|
+
description:
|
|
30333
|
+
'Creates a thermostat daily program. A daily program consists of a set of periods, where each period includes a start time and the key of a configured climate preset. Once you have defined a daily program, you can assign it to one or more days within a weekly program.',
|
|
30318
30334
|
operationId: 'thermostatsDailyProgramsCreatePost',
|
|
30319
30335
|
requestBody: {
|
|
30320
30336
|
content: {
|
|
@@ -30322,7 +30338,8 @@ export default {
|
|
|
30322
30338
|
schema: {
|
|
30323
30339
|
properties: {
|
|
30324
30340
|
device_id: {
|
|
30325
|
-
description:
|
|
30341
|
+
description:
|
|
30342
|
+
'ID of the thermostat device for which you want to create a daily program.',
|
|
30326
30343
|
format: 'uuid',
|
|
30327
30344
|
type: 'string',
|
|
30328
30345
|
},
|
|
@@ -30334,15 +30351,17 @@ export default {
|
|
|
30334
30351
|
periods: {
|
|
30335
30352
|
description: 'Array of thermostat daily program periods.',
|
|
30336
30353
|
items: {
|
|
30354
|
+
description:
|
|
30355
|
+
'Period for a thermostat daily program. Consists of a starts at time and the key that identifies the configured climate preset to apply at the starting time.',
|
|
30337
30356
|
properties: {
|
|
30338
30357
|
climate_preset_key: {
|
|
30339
30358
|
description:
|
|
30340
|
-
'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
30359
|
+
'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`.',
|
|
30341
30360
|
type: 'string',
|
|
30342
30361
|
},
|
|
30343
30362
|
starts_at_time: {
|
|
30344
30363
|
description:
|
|
30345
|
-
'Time at which the thermostat daily program
|
|
30364
|
+
'Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
30346
30365
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
30347
30366
|
type: 'string',
|
|
30348
30367
|
},
|
|
@@ -30367,6 +30386,8 @@ export default {
|
|
|
30367
30386
|
properties: {
|
|
30368
30387
|
ok: { type: 'boolean' },
|
|
30369
30388
|
thermostat_daily_program: {
|
|
30389
|
+
description:
|
|
30390
|
+
'Represents a thermostat daily program, consisting of a set of periods, each of which has a starting time and the key that identifies the climate preset to apply at the starting time.',
|
|
30370
30391
|
properties: {
|
|
30371
30392
|
created_at: {
|
|
30372
30393
|
description:
|
|
@@ -30375,7 +30396,8 @@ export default {
|
|
|
30375
30396
|
type: 'string',
|
|
30376
30397
|
},
|
|
30377
30398
|
device_id: {
|
|
30378
|
-
description:
|
|
30399
|
+
description:
|
|
30400
|
+
'ID of the thermostat device on which the thermostat daily program is configured.',
|
|
30379
30401
|
format: 'uuid',
|
|
30380
30402
|
type: 'string',
|
|
30381
30403
|
},
|
|
@@ -30389,15 +30411,17 @@ export default {
|
|
|
30389
30411
|
description:
|
|
30390
30412
|
'Array of thermostat daily program periods.',
|
|
30391
30413
|
items: {
|
|
30414
|
+
description:
|
|
30415
|
+
'Period for a thermostat daily program. Consists of a starts at time and the key that identifies the configured climate preset to apply at the starting time.',
|
|
30392
30416
|
properties: {
|
|
30393
30417
|
climate_preset_key: {
|
|
30394
30418
|
description:
|
|
30395
|
-
'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
30419
|
+
'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`.',
|
|
30396
30420
|
type: 'string',
|
|
30397
30421
|
},
|
|
30398
30422
|
starts_at_time: {
|
|
30399
30423
|
description:
|
|
30400
|
-
'Time at which the thermostat daily program
|
|
30424
|
+
'Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
30401
30425
|
pattern:
|
|
30402
30426
|
'^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
30403
30427
|
type: 'string',
|
|
@@ -30429,6 +30453,7 @@ export default {
|
|
|
30429
30453
|
'created_at',
|
|
30430
30454
|
],
|
|
30431
30455
|
type: 'object',
|
|
30456
|
+
'x-route-path': '/thermostats/thermostat_daily_programs',
|
|
30432
30457
|
},
|
|
30433
30458
|
},
|
|
30434
30459
|
required: ['thermostat_daily_program', 'ok'],
|
|
@@ -30454,7 +30479,6 @@ export default {
|
|
|
30454
30479
|
'x-fern-sdk-return-value': 'thermostat_daily_program',
|
|
30455
30480
|
'x-response-key': 'thermostat_daily_program',
|
|
30456
30481
|
'x-title': 'Create a Thermostat Daily Program',
|
|
30457
|
-
'x-undocumented': 'Unreleased.',
|
|
30458
30482
|
},
|
|
30459
30483
|
},
|
|
30460
30484
|
'/thermostats/daily_programs/delete': {
|
|
@@ -30467,7 +30491,8 @@ export default {
|
|
|
30467
30491
|
schema: {
|
|
30468
30492
|
properties: {
|
|
30469
30493
|
thermostat_daily_program_id: {
|
|
30470
|
-
description:
|
|
30494
|
+
description:
|
|
30495
|
+
'ID of the thermostat daily program that you want to delete.',
|
|
30471
30496
|
format: 'uuid',
|
|
30472
30497
|
type: 'string',
|
|
30473
30498
|
},
|
|
@@ -30506,12 +30531,12 @@ export default {
|
|
|
30506
30531
|
'x-fern-sdk-method-name': 'delete',
|
|
30507
30532
|
'x-response-key': null,
|
|
30508
30533
|
'x-title': 'Delete a Thermostat Daily Program',
|
|
30509
|
-
'x-undocumented': 'Unreleased.',
|
|
30510
30534
|
},
|
|
30511
30535
|
},
|
|
30512
30536
|
'/thermostats/daily_programs/update': {
|
|
30513
30537
|
patch: {
|
|
30514
|
-
description:
|
|
30538
|
+
description:
|
|
30539
|
+
'Updates a specified thermostat daily program. The periods that you specify overwrite any existing periods for the daily program.',
|
|
30515
30540
|
operationId: 'thermostatsDailyProgramsUpdatePatch',
|
|
30516
30541
|
requestBody: {
|
|
30517
30542
|
content: {
|
|
@@ -30520,21 +30545,24 @@ export default {
|
|
|
30520
30545
|
properties: {
|
|
30521
30546
|
name: {
|
|
30522
30547
|
description:
|
|
30523
|
-
'User-friendly name to identify the thermostat daily program.',
|
|
30548
|
+
'User-friendly name to identify the thermostat daily program that you want to update.',
|
|
30524
30549
|
type: 'string',
|
|
30525
30550
|
},
|
|
30526
30551
|
periods: {
|
|
30527
|
-
description:
|
|
30552
|
+
description:
|
|
30553
|
+
'Array of thermostat daily program periods. The periods that you specify overwrite any existing periods for the daily program.',
|
|
30528
30554
|
items: {
|
|
30555
|
+
description:
|
|
30556
|
+
'Period for a thermostat daily program. Consists of a starts at time and the key that identifies the configured climate preset to apply at the starting time.',
|
|
30529
30557
|
properties: {
|
|
30530
30558
|
climate_preset_key: {
|
|
30531
30559
|
description:
|
|
30532
|
-
'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
30560
|
+
'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`.',
|
|
30533
30561
|
type: 'string',
|
|
30534
30562
|
},
|
|
30535
30563
|
starts_at_time: {
|
|
30536
30564
|
description:
|
|
30537
|
-
'Time at which the thermostat daily program
|
|
30565
|
+
'Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
30538
30566
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
30539
30567
|
type: 'string',
|
|
30540
30568
|
},
|
|
@@ -30545,7 +30573,8 @@ export default {
|
|
|
30545
30573
|
type: 'array',
|
|
30546
30574
|
},
|
|
30547
30575
|
thermostat_daily_program_id: {
|
|
30548
|
-
description:
|
|
30576
|
+
description:
|
|
30577
|
+
'ID of the thermostat daily program that you want to update.',
|
|
30549
30578
|
format: 'uuid',
|
|
30550
30579
|
type: 'string',
|
|
30551
30580
|
},
|
|
@@ -30589,10 +30618,10 @@ export default {
|
|
|
30589
30618
|
'x-fern-ignore': true,
|
|
30590
30619
|
'x-response-key': 'action_attempt',
|
|
30591
30620
|
'x-title': 'Update a Thermostat Daily Program',
|
|
30592
|
-
'x-undocumented': 'Unreleased.',
|
|
30593
30621
|
},
|
|
30594
30622
|
post: {
|
|
30595
|
-
description:
|
|
30623
|
+
description:
|
|
30624
|
+
'Updates a specified thermostat daily program. The periods that you specify overwrite any existing periods for the daily program.',
|
|
30596
30625
|
operationId: 'thermostatsDailyProgramsUpdatePost',
|
|
30597
30626
|
requestBody: {
|
|
30598
30627
|
content: {
|
|
@@ -30601,21 +30630,24 @@ export default {
|
|
|
30601
30630
|
properties: {
|
|
30602
30631
|
name: {
|
|
30603
30632
|
description:
|
|
30604
|
-
'User-friendly name to identify the thermostat daily program.',
|
|
30633
|
+
'User-friendly name to identify the thermostat daily program that you want to update.',
|
|
30605
30634
|
type: 'string',
|
|
30606
30635
|
},
|
|
30607
30636
|
periods: {
|
|
30608
|
-
description:
|
|
30637
|
+
description:
|
|
30638
|
+
'Array of thermostat daily program periods. The periods that you specify overwrite any existing periods for the daily program.',
|
|
30609
30639
|
items: {
|
|
30640
|
+
description:
|
|
30641
|
+
'Period for a thermostat daily program. Consists of a starts at time and the key that identifies the configured climate preset to apply at the starting time.',
|
|
30610
30642
|
properties: {
|
|
30611
30643
|
climate_preset_key: {
|
|
30612
30644
|
description:
|
|
30613
|
-
'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the starts_at_time
|
|
30645
|
+
'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to activate at the `starts_at_time`.',
|
|
30614
30646
|
type: 'string',
|
|
30615
30647
|
},
|
|
30616
30648
|
starts_at_time: {
|
|
30617
30649
|
description:
|
|
30618
|
-
'Time at which the thermostat daily program
|
|
30650
|
+
'Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
30619
30651
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
30620
30652
|
type: 'string',
|
|
30621
30653
|
},
|
|
@@ -30626,7 +30658,8 @@ export default {
|
|
|
30626
30658
|
type: 'array',
|
|
30627
30659
|
},
|
|
30628
30660
|
thermostat_daily_program_id: {
|
|
30629
|
-
description:
|
|
30661
|
+
description:
|
|
30662
|
+
'ID of the thermostat daily program that you want to update.',
|
|
30630
30663
|
format: 'uuid',
|
|
30631
30664
|
type: 'string',
|
|
30632
30665
|
},
|
|
@@ -30672,7 +30705,6 @@ export default {
|
|
|
30672
30705
|
'x-fern-sdk-return-value': 'action_attempt',
|
|
30673
30706
|
'x-response-key': 'action_attempt',
|
|
30674
30707
|
'x-title': 'Update a Thermostat Daily Program',
|
|
30675
|
-
'x-undocumented': 'Unreleased.',
|
|
30676
30708
|
},
|
|
30677
30709
|
},
|
|
30678
30710
|
'/thermostats/delete_climate_preset': {
|
|
@@ -30687,11 +30719,12 @@ export default {
|
|
|
30687
30719
|
properties: {
|
|
30688
30720
|
climate_preset_key: {
|
|
30689
30721
|
description:
|
|
30690
|
-
'Climate preset key of the
|
|
30722
|
+
'Climate preset key of the climate preset that you want to delete.',
|
|
30691
30723
|
type: 'string',
|
|
30692
30724
|
},
|
|
30693
30725
|
device_id: {
|
|
30694
|
-
description:
|
|
30726
|
+
description:
|
|
30727
|
+
'ID of the thermostat device for which you want to delete a climate preset.',
|
|
30695
30728
|
format: 'uuid',
|
|
30696
30729
|
type: 'string',
|
|
30697
30730
|
},
|
|
@@ -30743,13 +30776,14 @@ export default {
|
|
|
30743
30776
|
schema: {
|
|
30744
30777
|
properties: {
|
|
30745
30778
|
device_id: {
|
|
30746
|
-
description:
|
|
30779
|
+
description:
|
|
30780
|
+
'ID of the thermostat device that you want to retrieve.',
|
|
30747
30781
|
format: 'uuid',
|
|
30748
30782
|
type: 'string',
|
|
30749
30783
|
},
|
|
30750
30784
|
name: {
|
|
30751
30785
|
description:
|
|
30752
|
-
'User-friendly name of the
|
|
30786
|
+
'User-friendly name of the thermostat device that you want to retrieve.',
|
|
30753
30787
|
type: 'string',
|
|
30754
30788
|
},
|
|
30755
30789
|
},
|
|
@@ -30805,7 +30839,8 @@ export default {
|
|
|
30805
30839
|
schema: {
|
|
30806
30840
|
properties: {
|
|
30807
30841
|
device_id: {
|
|
30808
|
-
description:
|
|
30842
|
+
description:
|
|
30843
|
+
'ID of the thermostat device that you want to set to heat mode.',
|
|
30809
30844
|
format: 'uuid',
|
|
30810
30845
|
type: 'string',
|
|
30811
30846
|
},
|
|
@@ -30893,7 +30928,8 @@ export default {
|
|
|
30893
30928
|
type: 'number',
|
|
30894
30929
|
},
|
|
30895
30930
|
device_id: {
|
|
30896
|
-
description:
|
|
30931
|
+
description:
|
|
30932
|
+
'ID of the thermostat device that you want to set to heat-cool mode.',
|
|
30897
30933
|
format: 'uuid',
|
|
30898
30934
|
type: 'string',
|
|
30899
30935
|
},
|
|
@@ -31011,19 +31047,21 @@ export default {
|
|
|
31011
31047
|
type: 'array',
|
|
31012
31048
|
},
|
|
31013
31049
|
device_type: {
|
|
31014
|
-
description:
|
|
31050
|
+
description:
|
|
31051
|
+
'Device type by which to filter thermostat devices.',
|
|
31015
31052
|
enum: [
|
|
31016
31053
|
'ecobee_thermostat',
|
|
31017
31054
|
'nest_thermostat',
|
|
31018
31055
|
'honeywell_resideo_thermostat',
|
|
31019
31056
|
'tado_thermostat',
|
|
31020
31057
|
'sensi_thermostat',
|
|
31058
|
+
'smartthings_thermostat',
|
|
31021
31059
|
],
|
|
31022
31060
|
type: 'string',
|
|
31023
31061
|
},
|
|
31024
31062
|
device_types: {
|
|
31025
31063
|
description:
|
|
31026
|
-
'Array of device types by which to filter devices.',
|
|
31064
|
+
'Array of device types by which to filter thermostat devices.',
|
|
31027
31065
|
items: {
|
|
31028
31066
|
enum: [
|
|
31029
31067
|
'ecobee_thermostat',
|
|
@@ -31031,6 +31069,7 @@ export default {
|
|
|
31031
31069
|
'honeywell_resideo_thermostat',
|
|
31032
31070
|
'tado_thermostat',
|
|
31033
31071
|
'sensi_thermostat',
|
|
31072
|
+
'smartthings_thermostat',
|
|
31034
31073
|
],
|
|
31035
31074
|
type: 'string',
|
|
31036
31075
|
},
|
|
@@ -31084,7 +31123,8 @@ export default {
|
|
|
31084
31123
|
type: 'number',
|
|
31085
31124
|
},
|
|
31086
31125
|
manufacturer: {
|
|
31087
|
-
description:
|
|
31126
|
+
description:
|
|
31127
|
+
'Manufacturer by which to filter thermostat devices.',
|
|
31088
31128
|
enum: [
|
|
31089
31129
|
'ecobee',
|
|
31090
31130
|
'honeywell_resideo',
|
|
@@ -31169,7 +31209,8 @@ export default {
|
|
|
31169
31209
|
schema: {
|
|
31170
31210
|
properties: {
|
|
31171
31211
|
device_id: {
|
|
31172
|
-
description:
|
|
31212
|
+
description:
|
|
31213
|
+
'ID of the thermostat device that you want to set to off mode.',
|
|
31173
31214
|
format: 'uuid',
|
|
31174
31215
|
type: 'string',
|
|
31175
31216
|
},
|
|
@@ -31672,11 +31713,12 @@ export default {
|
|
|
31672
31713
|
properties: {
|
|
31673
31714
|
climate_preset_key: {
|
|
31674
31715
|
description:
|
|
31675
|
-
'Climate preset key of the
|
|
31716
|
+
'Climate preset key of the climate preset that you want to set as the fallback climate preset.',
|
|
31676
31717
|
type: 'string',
|
|
31677
31718
|
},
|
|
31678
31719
|
device_id: {
|
|
31679
|
-
description:
|
|
31720
|
+
description:
|
|
31721
|
+
'ID of the thermostat device for which you want to set the fallback climate preset.',
|
|
31680
31722
|
format: 'uuid',
|
|
31681
31723
|
type: 'string',
|
|
31682
31724
|
},
|
|
@@ -31726,7 +31768,12 @@ export default {
|
|
|
31726
31768
|
'application/json': {
|
|
31727
31769
|
schema: {
|
|
31728
31770
|
properties: {
|
|
31729
|
-
device_id: {
|
|
31771
|
+
device_id: {
|
|
31772
|
+
description:
|
|
31773
|
+
'ID of the thermostat device for which you want to set the fan mode.',
|
|
31774
|
+
format: 'uuid',
|
|
31775
|
+
type: 'string',
|
|
31776
|
+
},
|
|
31730
31777
|
fan_mode: {
|
|
31731
31778
|
deprecated: true,
|
|
31732
31779
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -31802,7 +31849,8 @@ export default {
|
|
|
31802
31849
|
{
|
|
31803
31850
|
properties: {
|
|
31804
31851
|
device_id: {
|
|
31805
|
-
description:
|
|
31852
|
+
description:
|
|
31853
|
+
'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
31806
31854
|
format: 'uuid',
|
|
31807
31855
|
type: 'string',
|
|
31808
31856
|
},
|
|
@@ -31826,7 +31874,8 @@ export default {
|
|
|
31826
31874
|
type: 'number',
|
|
31827
31875
|
},
|
|
31828
31876
|
device_id: {
|
|
31829
|
-
description:
|
|
31877
|
+
description:
|
|
31878
|
+
'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
31830
31879
|
format: 'uuid',
|
|
31831
31880
|
type: 'string',
|
|
31832
31881
|
},
|
|
@@ -31838,7 +31887,8 @@ export default {
|
|
|
31838
31887
|
{
|
|
31839
31888
|
properties: {
|
|
31840
31889
|
device_id: {
|
|
31841
|
-
description:
|
|
31890
|
+
description:
|
|
31891
|
+
'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
31842
31892
|
format: 'uuid',
|
|
31843
31893
|
type: 'string',
|
|
31844
31894
|
},
|
|
@@ -31874,7 +31924,8 @@ export default {
|
|
|
31874
31924
|
type: 'number',
|
|
31875
31925
|
},
|
|
31876
31926
|
device_id: {
|
|
31877
|
-
description:
|
|
31927
|
+
description:
|
|
31928
|
+
'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
31878
31929
|
format: 'uuid',
|
|
31879
31930
|
type: 'string',
|
|
31880
31931
|
},
|
|
@@ -31951,7 +32002,8 @@ export default {
|
|
|
31951
32002
|
schema: {
|
|
31952
32003
|
properties: {
|
|
31953
32004
|
device_id: {
|
|
31954
|
-
description:
|
|
32005
|
+
description:
|
|
32006
|
+
'ID of the thermostat device for which you want to set a temperature threshold.',
|
|
31955
32007
|
format: 'uuid',
|
|
31956
32008
|
type: 'string',
|
|
31957
32009
|
},
|
|
@@ -32031,7 +32083,8 @@ export default {
|
|
|
32031
32083
|
schema: {
|
|
32032
32084
|
properties: {
|
|
32033
32085
|
device_id: {
|
|
32034
|
-
description:
|
|
32086
|
+
description:
|
|
32087
|
+
'ID of the thermostat device for which you want to set a temperature threshold.',
|
|
32035
32088
|
format: 'uuid',
|
|
32036
32089
|
type: 'string',
|
|
32037
32090
|
},
|
|
@@ -32355,7 +32408,8 @@ export default {
|
|
|
32355
32408
|
type: 'number',
|
|
32356
32409
|
},
|
|
32357
32410
|
device_id: {
|
|
32358
|
-
description:
|
|
32411
|
+
description:
|
|
32412
|
+
'ID of the thermostat device for which you want to update a climate preset.',
|
|
32359
32413
|
format: 'uuid',
|
|
32360
32414
|
type: 'string',
|
|
32361
32415
|
},
|
|
@@ -32464,7 +32518,8 @@ export default {
|
|
|
32464
32518
|
type: 'number',
|
|
32465
32519
|
},
|
|
32466
32520
|
device_id: {
|
|
32467
|
-
description:
|
|
32521
|
+
description:
|
|
32522
|
+
'ID of the thermostat device for which you want to update a climate preset.',
|
|
32468
32523
|
format: 'uuid',
|
|
32469
32524
|
type: 'string',
|
|
32470
32525
|
},
|
|
@@ -32550,7 +32605,8 @@ export default {
|
|
|
32550
32605
|
},
|
|
32551
32606
|
'/thermostats/update_weekly_program': {
|
|
32552
32607
|
post: {
|
|
32553
|
-
description:
|
|
32608
|
+
description:
|
|
32609
|
+
'Updates the thermostat weekly program for a thermostat device. To configure a weekly program, specify the ID of the daily program that you want to use for each day of the week. When you update a weekly program, the set of programs that you specify overwrites any previous weekly program for the thermostat.',
|
|
32554
32610
|
operationId: 'thermostatsUpdateWeeklyProgramPost',
|
|
32555
32611
|
requestBody: {
|
|
32556
32612
|
content: {
|
|
@@ -32559,7 +32615,7 @@ export default {
|
|
|
32559
32615
|
properties: {
|
|
32560
32616
|
device_id: {
|
|
32561
32617
|
description:
|
|
32562
|
-
'ID of the thermostat device
|
|
32618
|
+
'ID of the thermostat device for which you want to update the weekly program.',
|
|
32563
32619
|
format: 'uuid',
|
|
32564
32620
|
type: 'string',
|
|
32565
32621
|
},
|
|
@@ -32653,8 +32709,7 @@ export default {
|
|
|
32653
32709
|
'x-fern-sdk-method-name': 'update_weekly_program',
|
|
32654
32710
|
'x-fern-sdk-return-value': 'action_attempt',
|
|
32655
32711
|
'x-response-key': 'action_attempt',
|
|
32656
|
-
'x-title': '
|
|
32657
|
-
'x-undocumented': 'Unreleased.',
|
|
32712
|
+
'x-title': 'Update the Thermostat Weekly Program',
|
|
32658
32713
|
},
|
|
32659
32714
|
},
|
|
32660
32715
|
'/unstable_access_grants/create': {
|