@seamapi/types 1.396.0 → 1.396.1
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 +84 -85
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +86 -79
- 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/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 +64 -56
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +76 -74
- 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/thermostats/thermostat-program.ts +29 -15
- package/src/lib/seam/connect/openapi.ts +103 -56
- package/src/lib/seam/connect/route-types.ts +76 -74
|
@@ -9314,6 +9314,8 @@ export default {
|
|
|
9314
9314
|
},
|
|
9315
9315
|
thermostat_daily_programs: {
|
|
9316
9316
|
items: {
|
|
9317
|
+
description:
|
|
9318
|
+
'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
9319
|
properties: {
|
|
9318
9320
|
created_at: {
|
|
9319
9321
|
description:
|
|
@@ -9323,7 +9325,7 @@ export default {
|
|
|
9323
9325
|
},
|
|
9324
9326
|
device_id: {
|
|
9325
9327
|
description:
|
|
9326
|
-
'ID of the
|
|
9328
|
+
'ID of the thermostat device on which the thermostat daily program is configured.',
|
|
9327
9329
|
format: 'uuid',
|
|
9328
9330
|
type: 'string',
|
|
9329
9331
|
},
|
|
@@ -9337,15 +9339,17 @@ export default {
|
|
|
9337
9339
|
description:
|
|
9338
9340
|
'Array of thermostat daily program periods.',
|
|
9339
9341
|
items: {
|
|
9342
|
+
description:
|
|
9343
|
+
'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
9344
|
properties: {
|
|
9341
9345
|
climate_preset_key: {
|
|
9342
9346
|
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
|
|
9347
|
+
'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
9348
|
type: 'string',
|
|
9345
9349
|
},
|
|
9346
9350
|
starts_at_time: {
|
|
9347
9351
|
description:
|
|
9348
|
-
'Time at which the thermostat daily program
|
|
9352
|
+
'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
9353
|
pattern:
|
|
9350
9354
|
'^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
9351
9355
|
type: 'string',
|
|
@@ -9381,6 +9385,8 @@ export default {
|
|
|
9381
9385
|
'created_at',
|
|
9382
9386
|
],
|
|
9383
9387
|
type: 'object',
|
|
9388
|
+
'x-route-path':
|
|
9389
|
+
'/thermostats/thermostat_daily_programs',
|
|
9384
9390
|
},
|
|
9385
9391
|
type: 'array',
|
|
9386
9392
|
},
|
|
@@ -30076,11 +30082,12 @@ export default {
|
|
|
30076
30082
|
properties: {
|
|
30077
30083
|
climate_preset_key: {
|
|
30078
30084
|
description:
|
|
30079
|
-
'Climate preset key of the
|
|
30085
|
+
'Climate preset key of the climate preset that you want to activate.',
|
|
30080
30086
|
type: 'string',
|
|
30081
30087
|
},
|
|
30082
30088
|
device_id: {
|
|
30083
|
-
description:
|
|
30089
|
+
description:
|
|
30090
|
+
'ID of the thermostat device for which you want to activate a climate preset.',
|
|
30084
30091
|
format: 'uuid',
|
|
30085
30092
|
type: 'string',
|
|
30086
30093
|
},
|
|
@@ -30150,7 +30157,8 @@ export default {
|
|
|
30150
30157
|
type: 'number',
|
|
30151
30158
|
},
|
|
30152
30159
|
device_id: {
|
|
30153
|
-
description:
|
|
30160
|
+
description:
|
|
30161
|
+
'ID of the thermostat device that you want to set to cool mode.',
|
|
30154
30162
|
format: 'uuid',
|
|
30155
30163
|
type: 'string',
|
|
30156
30164
|
},
|
|
@@ -30231,7 +30239,8 @@ export default {
|
|
|
30231
30239
|
type: 'number',
|
|
30232
30240
|
},
|
|
30233
30241
|
device_id: {
|
|
30234
|
-
description:
|
|
30242
|
+
description:
|
|
30243
|
+
'ID of the thermostat device for which you want create a climate preset.',
|
|
30235
30244
|
format: 'uuid',
|
|
30236
30245
|
type: 'string',
|
|
30237
30246
|
},
|
|
@@ -30314,7 +30323,8 @@ export default {
|
|
|
30314
30323
|
},
|
|
30315
30324
|
'/thermostats/daily_programs/create': {
|
|
30316
30325
|
post: {
|
|
30317
|
-
description:
|
|
30326
|
+
description:
|
|
30327
|
+
'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
30328
|
operationId: 'thermostatsDailyProgramsCreatePost',
|
|
30319
30329
|
requestBody: {
|
|
30320
30330
|
content: {
|
|
@@ -30322,7 +30332,8 @@ export default {
|
|
|
30322
30332
|
schema: {
|
|
30323
30333
|
properties: {
|
|
30324
30334
|
device_id: {
|
|
30325
|
-
description:
|
|
30335
|
+
description:
|
|
30336
|
+
'ID of the thermostat device for which you want to create a daily program.',
|
|
30326
30337
|
format: 'uuid',
|
|
30327
30338
|
type: 'string',
|
|
30328
30339
|
},
|
|
@@ -30334,15 +30345,17 @@ export default {
|
|
|
30334
30345
|
periods: {
|
|
30335
30346
|
description: 'Array of thermostat daily program periods.',
|
|
30336
30347
|
items: {
|
|
30348
|
+
description:
|
|
30349
|
+
'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
30350
|
properties: {
|
|
30338
30351
|
climate_preset_key: {
|
|
30339
30352
|
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
|
|
30353
|
+
'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
30354
|
type: 'string',
|
|
30342
30355
|
},
|
|
30343
30356
|
starts_at_time: {
|
|
30344
30357
|
description:
|
|
30345
|
-
'Time at which the thermostat daily program
|
|
30358
|
+
'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
30359
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
30347
30360
|
type: 'string',
|
|
30348
30361
|
},
|
|
@@ -30367,6 +30380,8 @@ export default {
|
|
|
30367
30380
|
properties: {
|
|
30368
30381
|
ok: { type: 'boolean' },
|
|
30369
30382
|
thermostat_daily_program: {
|
|
30383
|
+
description:
|
|
30384
|
+
'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
30385
|
properties: {
|
|
30371
30386
|
created_at: {
|
|
30372
30387
|
description:
|
|
@@ -30375,7 +30390,8 @@ export default {
|
|
|
30375
30390
|
type: 'string',
|
|
30376
30391
|
},
|
|
30377
30392
|
device_id: {
|
|
30378
|
-
description:
|
|
30393
|
+
description:
|
|
30394
|
+
'ID of the thermostat device on which the thermostat daily program is configured.',
|
|
30379
30395
|
format: 'uuid',
|
|
30380
30396
|
type: 'string',
|
|
30381
30397
|
},
|
|
@@ -30389,15 +30405,17 @@ export default {
|
|
|
30389
30405
|
description:
|
|
30390
30406
|
'Array of thermostat daily program periods.',
|
|
30391
30407
|
items: {
|
|
30408
|
+
description:
|
|
30409
|
+
'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
30410
|
properties: {
|
|
30393
30411
|
climate_preset_key: {
|
|
30394
30412
|
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
|
|
30413
|
+
'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
30414
|
type: 'string',
|
|
30397
30415
|
},
|
|
30398
30416
|
starts_at_time: {
|
|
30399
30417
|
description:
|
|
30400
|
-
'Time at which the thermostat daily program
|
|
30418
|
+
'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
30419
|
pattern:
|
|
30402
30420
|
'^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
30403
30421
|
type: 'string',
|
|
@@ -30429,6 +30447,7 @@ export default {
|
|
|
30429
30447
|
'created_at',
|
|
30430
30448
|
],
|
|
30431
30449
|
type: 'object',
|
|
30450
|
+
'x-route-path': '/thermostats/thermostat_daily_programs',
|
|
30432
30451
|
},
|
|
30433
30452
|
},
|
|
30434
30453
|
required: ['thermostat_daily_program', 'ok'],
|
|
@@ -30454,7 +30473,6 @@ export default {
|
|
|
30454
30473
|
'x-fern-sdk-return-value': 'thermostat_daily_program',
|
|
30455
30474
|
'x-response-key': 'thermostat_daily_program',
|
|
30456
30475
|
'x-title': 'Create a Thermostat Daily Program',
|
|
30457
|
-
'x-undocumented': 'Unreleased.',
|
|
30458
30476
|
},
|
|
30459
30477
|
},
|
|
30460
30478
|
'/thermostats/daily_programs/delete': {
|
|
@@ -30467,7 +30485,8 @@ export default {
|
|
|
30467
30485
|
schema: {
|
|
30468
30486
|
properties: {
|
|
30469
30487
|
thermostat_daily_program_id: {
|
|
30470
|
-
description:
|
|
30488
|
+
description:
|
|
30489
|
+
'ID of the thermostat daily program that you want to delete.',
|
|
30471
30490
|
format: 'uuid',
|
|
30472
30491
|
type: 'string',
|
|
30473
30492
|
},
|
|
@@ -30506,12 +30525,12 @@ export default {
|
|
|
30506
30525
|
'x-fern-sdk-method-name': 'delete',
|
|
30507
30526
|
'x-response-key': null,
|
|
30508
30527
|
'x-title': 'Delete a Thermostat Daily Program',
|
|
30509
|
-
'x-undocumented': 'Unreleased.',
|
|
30510
30528
|
},
|
|
30511
30529
|
},
|
|
30512
30530
|
'/thermostats/daily_programs/update': {
|
|
30513
30531
|
patch: {
|
|
30514
|
-
description:
|
|
30532
|
+
description:
|
|
30533
|
+
'Updates a specified thermostat daily program. The periods that you specify overwrite any existing periods for the daily program.',
|
|
30515
30534
|
operationId: 'thermostatsDailyProgramsUpdatePatch',
|
|
30516
30535
|
requestBody: {
|
|
30517
30536
|
content: {
|
|
@@ -30520,21 +30539,24 @@ export default {
|
|
|
30520
30539
|
properties: {
|
|
30521
30540
|
name: {
|
|
30522
30541
|
description:
|
|
30523
|
-
'User-friendly name to identify the thermostat daily program.',
|
|
30542
|
+
'User-friendly name to identify the thermostat daily program that you want to update.',
|
|
30524
30543
|
type: 'string',
|
|
30525
30544
|
},
|
|
30526
30545
|
periods: {
|
|
30527
|
-
description:
|
|
30546
|
+
description:
|
|
30547
|
+
'Array of thermostat daily program periods. The periods that you specify overwrite any existing periods for the daily program.',
|
|
30528
30548
|
items: {
|
|
30549
|
+
description:
|
|
30550
|
+
'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
30551
|
properties: {
|
|
30530
30552
|
climate_preset_key: {
|
|
30531
30553
|
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
|
|
30554
|
+
'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
30555
|
type: 'string',
|
|
30534
30556
|
},
|
|
30535
30557
|
starts_at_time: {
|
|
30536
30558
|
description:
|
|
30537
|
-
'Time at which the thermostat daily program
|
|
30559
|
+
'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
30560
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
30539
30561
|
type: 'string',
|
|
30540
30562
|
},
|
|
@@ -30545,7 +30567,8 @@ export default {
|
|
|
30545
30567
|
type: 'array',
|
|
30546
30568
|
},
|
|
30547
30569
|
thermostat_daily_program_id: {
|
|
30548
|
-
description:
|
|
30570
|
+
description:
|
|
30571
|
+
'ID of the thermostat daily program that you want to update.',
|
|
30549
30572
|
format: 'uuid',
|
|
30550
30573
|
type: 'string',
|
|
30551
30574
|
},
|
|
@@ -30589,10 +30612,10 @@ export default {
|
|
|
30589
30612
|
'x-fern-ignore': true,
|
|
30590
30613
|
'x-response-key': 'action_attempt',
|
|
30591
30614
|
'x-title': 'Update a Thermostat Daily Program',
|
|
30592
|
-
'x-undocumented': 'Unreleased.',
|
|
30593
30615
|
},
|
|
30594
30616
|
post: {
|
|
30595
|
-
description:
|
|
30617
|
+
description:
|
|
30618
|
+
'Updates a specified thermostat daily program. The periods that you specify overwrite any existing periods for the daily program.',
|
|
30596
30619
|
operationId: 'thermostatsDailyProgramsUpdatePost',
|
|
30597
30620
|
requestBody: {
|
|
30598
30621
|
content: {
|
|
@@ -30601,21 +30624,24 @@ export default {
|
|
|
30601
30624
|
properties: {
|
|
30602
30625
|
name: {
|
|
30603
30626
|
description:
|
|
30604
|
-
'User-friendly name to identify the thermostat daily program.',
|
|
30627
|
+
'User-friendly name to identify the thermostat daily program that you want to update.',
|
|
30605
30628
|
type: 'string',
|
|
30606
30629
|
},
|
|
30607
30630
|
periods: {
|
|
30608
|
-
description:
|
|
30631
|
+
description:
|
|
30632
|
+
'Array of thermostat daily program periods. The periods that you specify overwrite any existing periods for the daily program.',
|
|
30609
30633
|
items: {
|
|
30634
|
+
description:
|
|
30635
|
+
'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
30636
|
properties: {
|
|
30611
30637
|
climate_preset_key: {
|
|
30612
30638
|
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
|
|
30639
|
+
'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
30640
|
type: 'string',
|
|
30615
30641
|
},
|
|
30616
30642
|
starts_at_time: {
|
|
30617
30643
|
description:
|
|
30618
|
-
'Time at which the thermostat daily program
|
|
30644
|
+
'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
30645
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
30620
30646
|
type: 'string',
|
|
30621
30647
|
},
|
|
@@ -30626,7 +30652,8 @@ export default {
|
|
|
30626
30652
|
type: 'array',
|
|
30627
30653
|
},
|
|
30628
30654
|
thermostat_daily_program_id: {
|
|
30629
|
-
description:
|
|
30655
|
+
description:
|
|
30656
|
+
'ID of the thermostat daily program that you want to update.',
|
|
30630
30657
|
format: 'uuid',
|
|
30631
30658
|
type: 'string',
|
|
30632
30659
|
},
|
|
@@ -30672,7 +30699,6 @@ export default {
|
|
|
30672
30699
|
'x-fern-sdk-return-value': 'action_attempt',
|
|
30673
30700
|
'x-response-key': 'action_attempt',
|
|
30674
30701
|
'x-title': 'Update a Thermostat Daily Program',
|
|
30675
|
-
'x-undocumented': 'Unreleased.',
|
|
30676
30702
|
},
|
|
30677
30703
|
},
|
|
30678
30704
|
'/thermostats/delete_climate_preset': {
|
|
@@ -30687,11 +30713,12 @@ export default {
|
|
|
30687
30713
|
properties: {
|
|
30688
30714
|
climate_preset_key: {
|
|
30689
30715
|
description:
|
|
30690
|
-
'Climate preset key of the
|
|
30716
|
+
'Climate preset key of the climate preset that you want to delete.',
|
|
30691
30717
|
type: 'string',
|
|
30692
30718
|
},
|
|
30693
30719
|
device_id: {
|
|
30694
|
-
description:
|
|
30720
|
+
description:
|
|
30721
|
+
'ID of the thermostat device for which you want to delete a climate preset.',
|
|
30695
30722
|
format: 'uuid',
|
|
30696
30723
|
type: 'string',
|
|
30697
30724
|
},
|
|
@@ -30743,13 +30770,14 @@ export default {
|
|
|
30743
30770
|
schema: {
|
|
30744
30771
|
properties: {
|
|
30745
30772
|
device_id: {
|
|
30746
|
-
description:
|
|
30773
|
+
description:
|
|
30774
|
+
'ID of the thermostat device that you want to retrieve.',
|
|
30747
30775
|
format: 'uuid',
|
|
30748
30776
|
type: 'string',
|
|
30749
30777
|
},
|
|
30750
30778
|
name: {
|
|
30751
30779
|
description:
|
|
30752
|
-
'User-friendly name of the
|
|
30780
|
+
'User-friendly name of the thermostat device that you want to retrieve.',
|
|
30753
30781
|
type: 'string',
|
|
30754
30782
|
},
|
|
30755
30783
|
},
|
|
@@ -30805,7 +30833,8 @@ export default {
|
|
|
30805
30833
|
schema: {
|
|
30806
30834
|
properties: {
|
|
30807
30835
|
device_id: {
|
|
30808
|
-
description:
|
|
30836
|
+
description:
|
|
30837
|
+
'ID of the thermostat device that you want to set to heat mode.',
|
|
30809
30838
|
format: 'uuid',
|
|
30810
30839
|
type: 'string',
|
|
30811
30840
|
},
|
|
@@ -30893,7 +30922,8 @@ export default {
|
|
|
30893
30922
|
type: 'number',
|
|
30894
30923
|
},
|
|
30895
30924
|
device_id: {
|
|
30896
|
-
description:
|
|
30925
|
+
description:
|
|
30926
|
+
'ID of the thermostat device that you want to set to heat-cool mode.',
|
|
30897
30927
|
format: 'uuid',
|
|
30898
30928
|
type: 'string',
|
|
30899
30929
|
},
|
|
@@ -31011,7 +31041,8 @@ export default {
|
|
|
31011
31041
|
type: 'array',
|
|
31012
31042
|
},
|
|
31013
31043
|
device_type: {
|
|
31014
|
-
description:
|
|
31044
|
+
description:
|
|
31045
|
+
'Device type by which to filter thermostat devices.',
|
|
31015
31046
|
enum: [
|
|
31016
31047
|
'ecobee_thermostat',
|
|
31017
31048
|
'nest_thermostat',
|
|
@@ -31023,7 +31054,7 @@ export default {
|
|
|
31023
31054
|
},
|
|
31024
31055
|
device_types: {
|
|
31025
31056
|
description:
|
|
31026
|
-
'Array of device types by which to filter devices.',
|
|
31057
|
+
'Array of device types by which to filter thermostat devices.',
|
|
31027
31058
|
items: {
|
|
31028
31059
|
enum: [
|
|
31029
31060
|
'ecobee_thermostat',
|
|
@@ -31084,7 +31115,8 @@ export default {
|
|
|
31084
31115
|
type: 'number',
|
|
31085
31116
|
},
|
|
31086
31117
|
manufacturer: {
|
|
31087
|
-
description:
|
|
31118
|
+
description:
|
|
31119
|
+
'Manufacturer by which to filter thermostat devices.',
|
|
31088
31120
|
enum: [
|
|
31089
31121
|
'ecobee',
|
|
31090
31122
|
'honeywell_resideo',
|
|
@@ -31169,7 +31201,8 @@ export default {
|
|
|
31169
31201
|
schema: {
|
|
31170
31202
|
properties: {
|
|
31171
31203
|
device_id: {
|
|
31172
|
-
description:
|
|
31204
|
+
description:
|
|
31205
|
+
'ID of the thermostat device that you want to set to off mode.',
|
|
31173
31206
|
format: 'uuid',
|
|
31174
31207
|
type: 'string',
|
|
31175
31208
|
},
|
|
@@ -31672,11 +31705,12 @@ export default {
|
|
|
31672
31705
|
properties: {
|
|
31673
31706
|
climate_preset_key: {
|
|
31674
31707
|
description:
|
|
31675
|
-
'Climate preset key of the
|
|
31708
|
+
'Climate preset key of the climate preset that you want to set as the fallback climate preset.',
|
|
31676
31709
|
type: 'string',
|
|
31677
31710
|
},
|
|
31678
31711
|
device_id: {
|
|
31679
|
-
description:
|
|
31712
|
+
description:
|
|
31713
|
+
'ID of the thermostat device for which you want to set the fallback climate preset.',
|
|
31680
31714
|
format: 'uuid',
|
|
31681
31715
|
type: 'string',
|
|
31682
31716
|
},
|
|
@@ -31726,7 +31760,12 @@ export default {
|
|
|
31726
31760
|
'application/json': {
|
|
31727
31761
|
schema: {
|
|
31728
31762
|
properties: {
|
|
31729
|
-
device_id: {
|
|
31763
|
+
device_id: {
|
|
31764
|
+
description:
|
|
31765
|
+
'ID of the thermostat device for which you want to set the fan mode.',
|
|
31766
|
+
format: 'uuid',
|
|
31767
|
+
type: 'string',
|
|
31768
|
+
},
|
|
31730
31769
|
fan_mode: {
|
|
31731
31770
|
deprecated: true,
|
|
31732
31771
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -31802,7 +31841,8 @@ export default {
|
|
|
31802
31841
|
{
|
|
31803
31842
|
properties: {
|
|
31804
31843
|
device_id: {
|
|
31805
|
-
description:
|
|
31844
|
+
description:
|
|
31845
|
+
'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
31806
31846
|
format: 'uuid',
|
|
31807
31847
|
type: 'string',
|
|
31808
31848
|
},
|
|
@@ -31826,7 +31866,8 @@ export default {
|
|
|
31826
31866
|
type: 'number',
|
|
31827
31867
|
},
|
|
31828
31868
|
device_id: {
|
|
31829
|
-
description:
|
|
31869
|
+
description:
|
|
31870
|
+
'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
31830
31871
|
format: 'uuid',
|
|
31831
31872
|
type: 'string',
|
|
31832
31873
|
},
|
|
@@ -31838,7 +31879,8 @@ export default {
|
|
|
31838
31879
|
{
|
|
31839
31880
|
properties: {
|
|
31840
31881
|
device_id: {
|
|
31841
|
-
description:
|
|
31882
|
+
description:
|
|
31883
|
+
'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
31842
31884
|
format: 'uuid',
|
|
31843
31885
|
type: 'string',
|
|
31844
31886
|
},
|
|
@@ -31874,7 +31916,8 @@ export default {
|
|
|
31874
31916
|
type: 'number',
|
|
31875
31917
|
},
|
|
31876
31918
|
device_id: {
|
|
31877
|
-
description:
|
|
31919
|
+
description:
|
|
31920
|
+
'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
31878
31921
|
format: 'uuid',
|
|
31879
31922
|
type: 'string',
|
|
31880
31923
|
},
|
|
@@ -31951,7 +31994,8 @@ export default {
|
|
|
31951
31994
|
schema: {
|
|
31952
31995
|
properties: {
|
|
31953
31996
|
device_id: {
|
|
31954
|
-
description:
|
|
31997
|
+
description:
|
|
31998
|
+
'ID of the thermostat device for which you want to set a temperature threshold.',
|
|
31955
31999
|
format: 'uuid',
|
|
31956
32000
|
type: 'string',
|
|
31957
32001
|
},
|
|
@@ -32031,7 +32075,8 @@ export default {
|
|
|
32031
32075
|
schema: {
|
|
32032
32076
|
properties: {
|
|
32033
32077
|
device_id: {
|
|
32034
|
-
description:
|
|
32078
|
+
description:
|
|
32079
|
+
'ID of the thermostat device for which you want to set a temperature threshold.',
|
|
32035
32080
|
format: 'uuid',
|
|
32036
32081
|
type: 'string',
|
|
32037
32082
|
},
|
|
@@ -32355,7 +32400,8 @@ export default {
|
|
|
32355
32400
|
type: 'number',
|
|
32356
32401
|
},
|
|
32357
32402
|
device_id: {
|
|
32358
|
-
description:
|
|
32403
|
+
description:
|
|
32404
|
+
'ID of the thermostat device for which you want to update a climate preset.',
|
|
32359
32405
|
format: 'uuid',
|
|
32360
32406
|
type: 'string',
|
|
32361
32407
|
},
|
|
@@ -32464,7 +32510,8 @@ export default {
|
|
|
32464
32510
|
type: 'number',
|
|
32465
32511
|
},
|
|
32466
32512
|
device_id: {
|
|
32467
|
-
description:
|
|
32513
|
+
description:
|
|
32514
|
+
'ID of the thermostat device for which you want to update a climate preset.',
|
|
32468
32515
|
format: 'uuid',
|
|
32469
32516
|
type: 'string',
|
|
32470
32517
|
},
|
|
@@ -32550,7 +32597,8 @@ export default {
|
|
|
32550
32597
|
},
|
|
32551
32598
|
'/thermostats/update_weekly_program': {
|
|
32552
32599
|
post: {
|
|
32553
|
-
description:
|
|
32600
|
+
description:
|
|
32601
|
+
'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
32602
|
operationId: 'thermostatsUpdateWeeklyProgramPost',
|
|
32555
32603
|
requestBody: {
|
|
32556
32604
|
content: {
|
|
@@ -32559,7 +32607,7 @@ export default {
|
|
|
32559
32607
|
properties: {
|
|
32560
32608
|
device_id: {
|
|
32561
32609
|
description:
|
|
32562
|
-
'ID of the thermostat device
|
|
32610
|
+
'ID of the thermostat device for which you want to update the weekly program.',
|
|
32563
32611
|
format: 'uuid',
|
|
32564
32612
|
type: 'string',
|
|
32565
32613
|
},
|
|
@@ -32653,8 +32701,7 @@ export default {
|
|
|
32653
32701
|
'x-fern-sdk-method-name': 'update_weekly_program',
|
|
32654
32702
|
'x-fern-sdk-return-value': 'action_attempt',
|
|
32655
32703
|
'x-response-key': 'action_attempt',
|
|
32656
|
-
'x-title': '
|
|
32657
|
-
'x-undocumented': 'Unreleased.',
|
|
32704
|
+
'x-title': 'Update the Thermostat Weekly Program',
|
|
32658
32705
|
},
|
|
32659
32706
|
},
|
|
32660
32707
|
'/unstable_access_grants/create': {
|