@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
|
@@ -6868,6 +6868,7 @@ export default {
|
|
|
6868
6868
|
'honeywell_resideo_thermostat',
|
|
6869
6869
|
'tado_thermostat',
|
|
6870
6870
|
'sensi_thermostat',
|
|
6871
|
+
'smartthings_thermostat',
|
|
6871
6872
|
],
|
|
6872
6873
|
type: 'string',
|
|
6873
6874
|
},
|
|
@@ -8465,6 +8466,7 @@ export default {
|
|
|
8465
8466
|
},
|
|
8466
8467
|
thermostat_daily_programs: {
|
|
8467
8468
|
items: {
|
|
8469
|
+
description: '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.',
|
|
8468
8470
|
properties: {
|
|
8469
8471
|
created_at: {
|
|
8470
8472
|
description: 'Date and time at which the thermostat daily program was created.',
|
|
@@ -8472,7 +8474,7 @@ export default {
|
|
|
8472
8474
|
type: 'string',
|
|
8473
8475
|
},
|
|
8474
8476
|
device_id: {
|
|
8475
|
-
description: 'ID of the
|
|
8477
|
+
description: 'ID of the thermostat device on which the thermostat daily program is configured.',
|
|
8476
8478
|
format: 'uuid',
|
|
8477
8479
|
type: 'string',
|
|
8478
8480
|
},
|
|
@@ -8484,13 +8486,14 @@ export default {
|
|
|
8484
8486
|
periods: {
|
|
8485
8487
|
description: 'Array of thermostat daily program periods.',
|
|
8486
8488
|
items: {
|
|
8489
|
+
description: '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.',
|
|
8487
8490
|
properties: {
|
|
8488
8491
|
climate_preset_key: {
|
|
8489
|
-
description: '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
|
|
8492
|
+
description: '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`.',
|
|
8490
8493
|
type: 'string',
|
|
8491
8494
|
},
|
|
8492
8495
|
starts_at_time: {
|
|
8493
|
-
description: 'Time at which the thermostat daily program
|
|
8496
|
+
description: 'Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
8494
8497
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
8495
8498
|
type: 'string',
|
|
8496
8499
|
},
|
|
@@ -8523,6 +8526,7 @@ export default {
|
|
|
8523
8526
|
'created_at',
|
|
8524
8527
|
],
|
|
8525
8528
|
type: 'object',
|
|
8529
|
+
'x-route-path': '/thermostats/thermostat_daily_programs',
|
|
8526
8530
|
},
|
|
8527
8531
|
type: 'array',
|
|
8528
8532
|
},
|
|
@@ -16314,6 +16318,7 @@ export default {
|
|
|
16314
16318
|
'honeywell_resideo_thermostat',
|
|
16315
16319
|
'tado_thermostat',
|
|
16316
16320
|
'sensi_thermostat',
|
|
16321
|
+
'smartthings_thermostat',
|
|
16317
16322
|
],
|
|
16318
16323
|
type: 'string',
|
|
16319
16324
|
},
|
|
@@ -24078,6 +24083,7 @@ export default {
|
|
|
24078
24083
|
'honeywell_resideo_thermostat',
|
|
24079
24084
|
'tado_thermostat',
|
|
24080
24085
|
'sensi_thermostat',
|
|
24086
|
+
'smartthings_thermostat',
|
|
24081
24087
|
],
|
|
24082
24088
|
type: 'string',
|
|
24083
24089
|
},
|
|
@@ -24135,6 +24141,7 @@ export default {
|
|
|
24135
24141
|
'honeywell_resideo_thermostat',
|
|
24136
24142
|
'tado_thermostat',
|
|
24137
24143
|
'sensi_thermostat',
|
|
24144
|
+
'smartthings_thermostat',
|
|
24138
24145
|
],
|
|
24139
24146
|
type: 'string',
|
|
24140
24147
|
},
|
|
@@ -24621,6 +24628,7 @@ export default {
|
|
|
24621
24628
|
'honeywell_resideo_thermostat',
|
|
24622
24629
|
'tado_thermostat',
|
|
24623
24630
|
'sensi_thermostat',
|
|
24631
|
+
'smartthings_thermostat',
|
|
24624
24632
|
],
|
|
24625
24633
|
type: 'string',
|
|
24626
24634
|
},
|
|
@@ -24678,6 +24686,7 @@ export default {
|
|
|
24678
24686
|
'honeywell_resideo_thermostat',
|
|
24679
24687
|
'tado_thermostat',
|
|
24680
24688
|
'sensi_thermostat',
|
|
24689
|
+
'smartthings_thermostat',
|
|
24681
24690
|
],
|
|
24682
24691
|
type: 'string',
|
|
24683
24692
|
},
|
|
@@ -28023,11 +28032,11 @@ export default {
|
|
|
28023
28032
|
schema: {
|
|
28024
28033
|
properties: {
|
|
28025
28034
|
climate_preset_key: {
|
|
28026
|
-
description: 'Climate preset key of the
|
|
28035
|
+
description: 'Climate preset key of the climate preset that you want to activate.',
|
|
28027
28036
|
type: 'string',
|
|
28028
28037
|
},
|
|
28029
28038
|
device_id: {
|
|
28030
|
-
description: 'ID of the
|
|
28039
|
+
description: 'ID of the thermostat device for which you want to activate a climate preset.',
|
|
28031
28040
|
format: 'uuid',
|
|
28032
28041
|
type: 'string',
|
|
28033
28042
|
},
|
|
@@ -28094,7 +28103,7 @@ export default {
|
|
|
28094
28103
|
type: 'number',
|
|
28095
28104
|
},
|
|
28096
28105
|
device_id: {
|
|
28097
|
-
description: 'ID of the
|
|
28106
|
+
description: 'ID of the thermostat device that you want to set to cool mode.',
|
|
28098
28107
|
format: 'uuid',
|
|
28099
28108
|
type: 'string',
|
|
28100
28109
|
},
|
|
@@ -28171,7 +28180,7 @@ export default {
|
|
|
28171
28180
|
type: 'number',
|
|
28172
28181
|
},
|
|
28173
28182
|
device_id: {
|
|
28174
|
-
description: 'ID of the
|
|
28183
|
+
description: 'ID of the thermostat device for which you want create a climate preset.',
|
|
28175
28184
|
format: 'uuid',
|
|
28176
28185
|
type: 'string',
|
|
28177
28186
|
},
|
|
@@ -28247,7 +28256,7 @@ export default {
|
|
|
28247
28256
|
},
|
|
28248
28257
|
'/thermostats/daily_programs/create': {
|
|
28249
28258
|
post: {
|
|
28250
|
-
description: 'Creates a thermostat daily program.',
|
|
28259
|
+
description: '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.',
|
|
28251
28260
|
operationId: 'thermostatsDailyProgramsCreatePost',
|
|
28252
28261
|
requestBody: {
|
|
28253
28262
|
content: {
|
|
@@ -28255,7 +28264,7 @@ export default {
|
|
|
28255
28264
|
schema: {
|
|
28256
28265
|
properties: {
|
|
28257
28266
|
device_id: {
|
|
28258
|
-
description: 'ID of the
|
|
28267
|
+
description: 'ID of the thermostat device for which you want to create a daily program.',
|
|
28259
28268
|
format: 'uuid',
|
|
28260
28269
|
type: 'string',
|
|
28261
28270
|
},
|
|
@@ -28266,13 +28275,14 @@ export default {
|
|
|
28266
28275
|
periods: {
|
|
28267
28276
|
description: 'Array of thermostat daily program periods.',
|
|
28268
28277
|
items: {
|
|
28278
|
+
description: '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.',
|
|
28269
28279
|
properties: {
|
|
28270
28280
|
climate_preset_key: {
|
|
28271
|
-
description: '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
|
|
28281
|
+
description: '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`.',
|
|
28272
28282
|
type: 'string',
|
|
28273
28283
|
},
|
|
28274
28284
|
starts_at_time: {
|
|
28275
|
-
description: 'Time at which the thermostat daily program
|
|
28285
|
+
description: 'Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
28276
28286
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
28277
28287
|
type: 'string',
|
|
28278
28288
|
},
|
|
@@ -28297,6 +28307,7 @@ export default {
|
|
|
28297
28307
|
properties: {
|
|
28298
28308
|
ok: { type: 'boolean' },
|
|
28299
28309
|
thermostat_daily_program: {
|
|
28310
|
+
description: '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.',
|
|
28300
28311
|
properties: {
|
|
28301
28312
|
created_at: {
|
|
28302
28313
|
description: 'Date and time at which the thermostat daily program was created.',
|
|
@@ -28304,7 +28315,7 @@ export default {
|
|
|
28304
28315
|
type: 'string',
|
|
28305
28316
|
},
|
|
28306
28317
|
device_id: {
|
|
28307
|
-
description: 'ID of the
|
|
28318
|
+
description: 'ID of the thermostat device on which the thermostat daily program is configured.',
|
|
28308
28319
|
format: 'uuid',
|
|
28309
28320
|
type: 'string',
|
|
28310
28321
|
},
|
|
@@ -28316,13 +28327,14 @@ export default {
|
|
|
28316
28327
|
periods: {
|
|
28317
28328
|
description: 'Array of thermostat daily program periods.',
|
|
28318
28329
|
items: {
|
|
28330
|
+
description: '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.',
|
|
28319
28331
|
properties: {
|
|
28320
28332
|
climate_preset_key: {
|
|
28321
|
-
description: '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
|
|
28333
|
+
description: '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`.',
|
|
28322
28334
|
type: 'string',
|
|
28323
28335
|
},
|
|
28324
28336
|
starts_at_time: {
|
|
28325
|
-
description: 'Time at which the thermostat daily program
|
|
28337
|
+
description: 'Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
28326
28338
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
28327
28339
|
type: 'string',
|
|
28328
28340
|
},
|
|
@@ -28352,6 +28364,7 @@ export default {
|
|
|
28352
28364
|
'created_at',
|
|
28353
28365
|
],
|
|
28354
28366
|
type: 'object',
|
|
28367
|
+
'x-route-path': '/thermostats/thermostat_daily_programs',
|
|
28355
28368
|
},
|
|
28356
28369
|
},
|
|
28357
28370
|
required: ['thermostat_daily_program', 'ok'],
|
|
@@ -28377,7 +28390,6 @@ export default {
|
|
|
28377
28390
|
'x-fern-sdk-return-value': 'thermostat_daily_program',
|
|
28378
28391
|
'x-response-key': 'thermostat_daily_program',
|
|
28379
28392
|
'x-title': 'Create a Thermostat Daily Program',
|
|
28380
|
-
'x-undocumented': 'Unreleased.',
|
|
28381
28393
|
},
|
|
28382
28394
|
},
|
|
28383
28395
|
'/thermostats/daily_programs/delete': {
|
|
@@ -28390,7 +28402,7 @@ export default {
|
|
|
28390
28402
|
schema: {
|
|
28391
28403
|
properties: {
|
|
28392
28404
|
thermostat_daily_program_id: {
|
|
28393
|
-
description: 'ID of the
|
|
28405
|
+
description: 'ID of the thermostat daily program that you want to delete.',
|
|
28394
28406
|
format: 'uuid',
|
|
28395
28407
|
type: 'string',
|
|
28396
28408
|
},
|
|
@@ -28429,12 +28441,11 @@ export default {
|
|
|
28429
28441
|
'x-fern-sdk-method-name': 'delete',
|
|
28430
28442
|
'x-response-key': null,
|
|
28431
28443
|
'x-title': 'Delete a Thermostat Daily Program',
|
|
28432
|
-
'x-undocumented': 'Unreleased.',
|
|
28433
28444
|
},
|
|
28434
28445
|
},
|
|
28435
28446
|
'/thermostats/daily_programs/update': {
|
|
28436
28447
|
patch: {
|
|
28437
|
-
description: 'Updates a specified thermostat daily program.',
|
|
28448
|
+
description: 'Updates a specified thermostat daily program. The periods that you specify overwrite any existing periods for the daily program.',
|
|
28438
28449
|
operationId: 'thermostatsDailyProgramsUpdatePatch',
|
|
28439
28450
|
requestBody: {
|
|
28440
28451
|
content: {
|
|
@@ -28442,19 +28453,20 @@ export default {
|
|
|
28442
28453
|
schema: {
|
|
28443
28454
|
properties: {
|
|
28444
28455
|
name: {
|
|
28445
|
-
description: 'User-friendly name to identify the thermostat daily program.',
|
|
28456
|
+
description: 'User-friendly name to identify the thermostat daily program that you want to update.',
|
|
28446
28457
|
type: 'string',
|
|
28447
28458
|
},
|
|
28448
28459
|
periods: {
|
|
28449
|
-
description: 'Array of thermostat daily program periods.',
|
|
28460
|
+
description: 'Array of thermostat daily program periods. The periods that you specify overwrite any existing periods for the daily program.',
|
|
28450
28461
|
items: {
|
|
28462
|
+
description: '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.',
|
|
28451
28463
|
properties: {
|
|
28452
28464
|
climate_preset_key: {
|
|
28453
|
-
description: '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
|
|
28465
|
+
description: '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`.',
|
|
28454
28466
|
type: 'string',
|
|
28455
28467
|
},
|
|
28456
28468
|
starts_at_time: {
|
|
28457
|
-
description: 'Time at which the thermostat daily program
|
|
28469
|
+
description: 'Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
28458
28470
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
28459
28471
|
type: 'string',
|
|
28460
28472
|
},
|
|
@@ -28465,7 +28477,7 @@ export default {
|
|
|
28465
28477
|
type: 'array',
|
|
28466
28478
|
},
|
|
28467
28479
|
thermostat_daily_program_id: {
|
|
28468
|
-
description: 'ID of the
|
|
28480
|
+
description: 'ID of the thermostat daily program that you want to update.',
|
|
28469
28481
|
format: 'uuid',
|
|
28470
28482
|
type: 'string',
|
|
28471
28483
|
},
|
|
@@ -28509,10 +28521,9 @@ export default {
|
|
|
28509
28521
|
'x-fern-ignore': true,
|
|
28510
28522
|
'x-response-key': 'action_attempt',
|
|
28511
28523
|
'x-title': 'Update a Thermostat Daily Program',
|
|
28512
|
-
'x-undocumented': 'Unreleased.',
|
|
28513
28524
|
},
|
|
28514
28525
|
post: {
|
|
28515
|
-
description: 'Updates a specified thermostat daily program.',
|
|
28526
|
+
description: 'Updates a specified thermostat daily program. The periods that you specify overwrite any existing periods for the daily program.',
|
|
28516
28527
|
operationId: 'thermostatsDailyProgramsUpdatePost',
|
|
28517
28528
|
requestBody: {
|
|
28518
28529
|
content: {
|
|
@@ -28520,19 +28531,20 @@ export default {
|
|
|
28520
28531
|
schema: {
|
|
28521
28532
|
properties: {
|
|
28522
28533
|
name: {
|
|
28523
|
-
description: 'User-friendly name to identify the thermostat daily program.',
|
|
28534
|
+
description: 'User-friendly name to identify the thermostat daily program that you want to update.',
|
|
28524
28535
|
type: 'string',
|
|
28525
28536
|
},
|
|
28526
28537
|
periods: {
|
|
28527
|
-
description: 'Array of thermostat daily program periods.',
|
|
28538
|
+
description: 'Array of thermostat daily program periods. The periods that you specify overwrite any existing periods for the daily program.',
|
|
28528
28539
|
items: {
|
|
28540
|
+
description: '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.',
|
|
28529
28541
|
properties: {
|
|
28530
28542
|
climate_preset_key: {
|
|
28531
|
-
description: '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
|
|
28543
|
+
description: '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`.',
|
|
28532
28544
|
type: 'string',
|
|
28533
28545
|
},
|
|
28534
28546
|
starts_at_time: {
|
|
28535
|
-
description: 'Time at which the thermostat daily program
|
|
28547
|
+
description: 'Time at which the thermostat daily program period starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
28536
28548
|
pattern: '^([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)$',
|
|
28537
28549
|
type: 'string',
|
|
28538
28550
|
},
|
|
@@ -28543,7 +28555,7 @@ export default {
|
|
|
28543
28555
|
type: 'array',
|
|
28544
28556
|
},
|
|
28545
28557
|
thermostat_daily_program_id: {
|
|
28546
|
-
description: 'ID of the
|
|
28558
|
+
description: 'ID of the thermostat daily program that you want to update.',
|
|
28547
28559
|
format: 'uuid',
|
|
28548
28560
|
type: 'string',
|
|
28549
28561
|
},
|
|
@@ -28589,7 +28601,6 @@ export default {
|
|
|
28589
28601
|
'x-fern-sdk-return-value': 'action_attempt',
|
|
28590
28602
|
'x-response-key': 'action_attempt',
|
|
28591
28603
|
'x-title': 'Update a Thermostat Daily Program',
|
|
28592
|
-
'x-undocumented': 'Unreleased.',
|
|
28593
28604
|
},
|
|
28594
28605
|
},
|
|
28595
28606
|
'/thermostats/delete_climate_preset': {
|
|
@@ -28602,11 +28613,11 @@ export default {
|
|
|
28602
28613
|
schema: {
|
|
28603
28614
|
properties: {
|
|
28604
28615
|
climate_preset_key: {
|
|
28605
|
-
description: 'Climate preset key of the
|
|
28616
|
+
description: 'Climate preset key of the climate preset that you want to delete.',
|
|
28606
28617
|
type: 'string',
|
|
28607
28618
|
},
|
|
28608
28619
|
device_id: {
|
|
28609
|
-
description: 'ID of the
|
|
28620
|
+
description: 'ID of the thermostat device for which you want to delete a climate preset.',
|
|
28610
28621
|
format: 'uuid',
|
|
28611
28622
|
type: 'string',
|
|
28612
28623
|
},
|
|
@@ -28657,12 +28668,12 @@ export default {
|
|
|
28657
28668
|
schema: {
|
|
28658
28669
|
properties: {
|
|
28659
28670
|
device_id: {
|
|
28660
|
-
description: 'ID of the
|
|
28671
|
+
description: 'ID of the thermostat device that you want to retrieve.',
|
|
28661
28672
|
format: 'uuid',
|
|
28662
28673
|
type: 'string',
|
|
28663
28674
|
},
|
|
28664
28675
|
name: {
|
|
28665
|
-
description: 'User-friendly name of the
|
|
28676
|
+
description: 'User-friendly name of the thermostat device that you want to retrieve.',
|
|
28666
28677
|
type: 'string',
|
|
28667
28678
|
},
|
|
28668
28679
|
},
|
|
@@ -28717,7 +28728,7 @@ export default {
|
|
|
28717
28728
|
schema: {
|
|
28718
28729
|
properties: {
|
|
28719
28730
|
device_id: {
|
|
28720
|
-
description: 'ID of the
|
|
28731
|
+
description: 'ID of the thermostat device that you want to set to heat mode.',
|
|
28721
28732
|
format: 'uuid',
|
|
28722
28733
|
type: 'string',
|
|
28723
28734
|
},
|
|
@@ -28800,7 +28811,7 @@ export default {
|
|
|
28800
28811
|
type: 'number',
|
|
28801
28812
|
},
|
|
28802
28813
|
device_id: {
|
|
28803
|
-
description: 'ID of the
|
|
28814
|
+
description: 'ID of the thermostat device that you want to set to heat-cool mode.',
|
|
28804
28815
|
format: 'uuid',
|
|
28805
28816
|
type: 'string',
|
|
28806
28817
|
},
|
|
@@ -28909,18 +28920,19 @@ export default {
|
|
|
28909
28920
|
type: 'array',
|
|
28910
28921
|
},
|
|
28911
28922
|
device_type: {
|
|
28912
|
-
description: 'Device type by which to filter devices.',
|
|
28923
|
+
description: 'Device type by which to filter thermostat devices.',
|
|
28913
28924
|
enum: [
|
|
28914
28925
|
'ecobee_thermostat',
|
|
28915
28926
|
'nest_thermostat',
|
|
28916
28927
|
'honeywell_resideo_thermostat',
|
|
28917
28928
|
'tado_thermostat',
|
|
28918
28929
|
'sensi_thermostat',
|
|
28930
|
+
'smartthings_thermostat',
|
|
28919
28931
|
],
|
|
28920
28932
|
type: 'string',
|
|
28921
28933
|
},
|
|
28922
28934
|
device_types: {
|
|
28923
|
-
description: 'Array of device types by which to filter devices.',
|
|
28935
|
+
description: 'Array of device types by which to filter thermostat devices.',
|
|
28924
28936
|
items: {
|
|
28925
28937
|
enum: [
|
|
28926
28938
|
'ecobee_thermostat',
|
|
@@ -28928,6 +28940,7 @@ export default {
|
|
|
28928
28940
|
'honeywell_resideo_thermostat',
|
|
28929
28941
|
'tado_thermostat',
|
|
28930
28942
|
'sensi_thermostat',
|
|
28943
|
+
'smartthings_thermostat',
|
|
28931
28944
|
],
|
|
28932
28945
|
type: 'string',
|
|
28933
28946
|
},
|
|
@@ -28980,7 +28993,7 @@ export default {
|
|
|
28980
28993
|
type: 'number',
|
|
28981
28994
|
},
|
|
28982
28995
|
manufacturer: {
|
|
28983
|
-
description: 'Manufacturer by which to filter devices.',
|
|
28996
|
+
description: 'Manufacturer by which to filter thermostat devices.',
|
|
28984
28997
|
enum: [
|
|
28985
28998
|
'ecobee',
|
|
28986
28999
|
'honeywell_resideo',
|
|
@@ -29062,7 +29075,7 @@ export default {
|
|
|
29062
29075
|
schema: {
|
|
29063
29076
|
properties: {
|
|
29064
29077
|
device_id: {
|
|
29065
|
-
description: 'ID of the
|
|
29078
|
+
description: 'ID of the thermostat device that you want to set to off mode.',
|
|
29066
29079
|
format: 'uuid',
|
|
29067
29080
|
type: 'string',
|
|
29068
29081
|
},
|
|
@@ -29538,11 +29551,11 @@ export default {
|
|
|
29538
29551
|
schema: {
|
|
29539
29552
|
properties: {
|
|
29540
29553
|
climate_preset_key: {
|
|
29541
|
-
description: 'Climate preset key of the
|
|
29554
|
+
description: 'Climate preset key of the climate preset that you want to set as the fallback climate preset.',
|
|
29542
29555
|
type: 'string',
|
|
29543
29556
|
},
|
|
29544
29557
|
device_id: {
|
|
29545
|
-
description: 'ID of the
|
|
29558
|
+
description: 'ID of the thermostat device for which you want to set the fallback climate preset.',
|
|
29546
29559
|
format: 'uuid',
|
|
29547
29560
|
type: 'string',
|
|
29548
29561
|
},
|
|
@@ -29591,7 +29604,11 @@ export default {
|
|
|
29591
29604
|
'application/json': {
|
|
29592
29605
|
schema: {
|
|
29593
29606
|
properties: {
|
|
29594
|
-
device_id: {
|
|
29607
|
+
device_id: {
|
|
29608
|
+
description: 'ID of the thermostat device for which you want to set the fan mode.',
|
|
29609
|
+
format: 'uuid',
|
|
29610
|
+
type: 'string',
|
|
29611
|
+
},
|
|
29595
29612
|
fan_mode: {
|
|
29596
29613
|
deprecated: true,
|
|
29597
29614
|
enum: ['auto', 'on', 'circulate'],
|
|
@@ -29665,7 +29682,7 @@ export default {
|
|
|
29665
29682
|
{
|
|
29666
29683
|
properties: {
|
|
29667
29684
|
device_id: {
|
|
29668
|
-
description: 'ID of the
|
|
29685
|
+
description: 'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
29669
29686
|
format: 'uuid',
|
|
29670
29687
|
type: 'string',
|
|
29671
29688
|
},
|
|
@@ -29687,7 +29704,7 @@ export default {
|
|
|
29687
29704
|
type: 'number',
|
|
29688
29705
|
},
|
|
29689
29706
|
device_id: {
|
|
29690
|
-
description: 'ID of the
|
|
29707
|
+
description: 'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
29691
29708
|
format: 'uuid',
|
|
29692
29709
|
type: 'string',
|
|
29693
29710
|
},
|
|
@@ -29699,7 +29716,7 @@ export default {
|
|
|
29699
29716
|
{
|
|
29700
29717
|
properties: {
|
|
29701
29718
|
device_id: {
|
|
29702
|
-
description: 'ID of the
|
|
29719
|
+
description: 'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
29703
29720
|
format: 'uuid',
|
|
29704
29721
|
type: 'string',
|
|
29705
29722
|
},
|
|
@@ -29731,7 +29748,7 @@ export default {
|
|
|
29731
29748
|
type: 'number',
|
|
29732
29749
|
},
|
|
29733
29750
|
device_id: {
|
|
29734
|
-
description: 'ID of the
|
|
29751
|
+
description: 'ID of the thermostat device for which you want to set the HVAC mode.',
|
|
29735
29752
|
format: 'uuid',
|
|
29736
29753
|
type: 'string',
|
|
29737
29754
|
},
|
|
@@ -29805,7 +29822,7 @@ export default {
|
|
|
29805
29822
|
schema: {
|
|
29806
29823
|
properties: {
|
|
29807
29824
|
device_id: {
|
|
29808
|
-
description: 'ID of the
|
|
29825
|
+
description: 'ID of the thermostat device for which you want to set a temperature threshold.',
|
|
29809
29826
|
format: 'uuid',
|
|
29810
29827
|
type: 'string',
|
|
29811
29828
|
},
|
|
@@ -29880,7 +29897,7 @@ export default {
|
|
|
29880
29897
|
schema: {
|
|
29881
29898
|
properties: {
|
|
29882
29899
|
device_id: {
|
|
29883
|
-
description: 'ID of the
|
|
29900
|
+
description: 'ID of the thermostat device for which you want to set a temperature threshold.',
|
|
29884
29901
|
format: 'uuid',
|
|
29885
29902
|
type: 'string',
|
|
29886
29903
|
},
|
|
@@ -30180,7 +30197,7 @@ export default {
|
|
|
30180
30197
|
type: 'number',
|
|
30181
30198
|
},
|
|
30182
30199
|
device_id: {
|
|
30183
|
-
description: 'ID of the
|
|
30200
|
+
description: 'ID of the thermostat device for which you want to update a climate preset.',
|
|
30184
30201
|
format: 'uuid',
|
|
30185
30202
|
type: 'string',
|
|
30186
30203
|
},
|
|
@@ -30278,7 +30295,7 @@ export default {
|
|
|
30278
30295
|
type: 'number',
|
|
30279
30296
|
},
|
|
30280
30297
|
device_id: {
|
|
30281
|
-
description: 'ID of the
|
|
30298
|
+
description: 'ID of the thermostat device for which you want to update a climate preset.',
|
|
30282
30299
|
format: 'uuid',
|
|
30283
30300
|
type: 'string',
|
|
30284
30301
|
},
|
|
@@ -30357,7 +30374,7 @@ export default {
|
|
|
30357
30374
|
},
|
|
30358
30375
|
'/thermostats/update_weekly_program': {
|
|
30359
30376
|
post: {
|
|
30360
|
-
description: '
|
|
30377
|
+
description: '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.',
|
|
30361
30378
|
operationId: 'thermostatsUpdateWeeklyProgramPost',
|
|
30362
30379
|
requestBody: {
|
|
30363
30380
|
content: {
|
|
@@ -30365,7 +30382,7 @@ export default {
|
|
|
30365
30382
|
schema: {
|
|
30366
30383
|
properties: {
|
|
30367
30384
|
device_id: {
|
|
30368
|
-
description: 'ID of the thermostat device
|
|
30385
|
+
description: 'ID of the thermostat device for which you want to update the weekly program.',
|
|
30369
30386
|
format: 'uuid',
|
|
30370
30387
|
type: 'string',
|
|
30371
30388
|
},
|
|
@@ -30452,8 +30469,7 @@ export default {
|
|
|
30452
30469
|
'x-fern-sdk-method-name': 'update_weekly_program',
|
|
30453
30470
|
'x-fern-sdk-return-value': 'action_attempt',
|
|
30454
30471
|
'x-response-key': 'action_attempt',
|
|
30455
|
-
'x-title': '
|
|
30456
|
-
'x-undocumented': 'Unreleased.',
|
|
30472
|
+
'x-title': 'Update the Thermostat Weekly Program',
|
|
30457
30473
|
},
|
|
30458
30474
|
},
|
|
30459
30475
|
'/unstable_access_grants/create': {
|