@seamapi/types 1.288.1 → 1.289.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.
@@ -3688,11 +3688,11 @@ export interface Routes {
3688
3688
  door_name: string;
3689
3689
  locked_state: string;
3690
3690
  lock_type: string;
3691
- online: boolean;
3691
+ online?: boolean | undefined;
3692
3692
  battery_level: string;
3693
- left_open_alarm: boolean;
3694
- intrusion_alarm: boolean;
3695
- privacy_mode: boolean;
3693
+ left_open_alarm?: boolean | undefined;
3694
+ intrusion_alarm?: boolean | undefined;
3695
+ privacy_mode?: boolean | undefined;
3696
3696
  } | undefined;
3697
3697
  dormakaba_community_metadata?: {
3698
3698
  access_point_name: string;
@@ -4341,11 +4341,11 @@ export interface Routes {
4341
4341
  door_name: string;
4342
4342
  locked_state: string;
4343
4343
  lock_type: string;
4344
- online: boolean;
4344
+ online?: boolean | undefined;
4345
4345
  battery_level: string;
4346
- left_open_alarm: boolean;
4347
- intrusion_alarm: boolean;
4348
- privacy_mode: boolean;
4346
+ left_open_alarm?: boolean | undefined;
4347
+ intrusion_alarm?: boolean | undefined;
4348
+ privacy_mode?: boolean | undefined;
4349
4349
  } | undefined;
4350
4350
  dormakaba_community_metadata?: {
4351
4351
  access_point_name: string;
@@ -6658,11 +6658,11 @@ export interface Routes {
6658
6658
  door_name: string;
6659
6659
  locked_state: string;
6660
6660
  lock_type: string;
6661
- online: boolean;
6661
+ online?: boolean | undefined;
6662
6662
  battery_level: string;
6663
- left_open_alarm: boolean;
6664
- intrusion_alarm: boolean;
6665
- privacy_mode: boolean;
6663
+ left_open_alarm?: boolean | undefined;
6664
+ intrusion_alarm?: boolean | undefined;
6665
+ privacy_mode?: boolean | undefined;
6666
6666
  } | undefined;
6667
6667
  dormakaba_community_metadata?: {
6668
6668
  access_point_name: string;
@@ -6731,11 +6731,11 @@ export interface Routes {
6731
6731
  door_name: string;
6732
6732
  locked_state: string;
6733
6733
  lock_type: string;
6734
- online: boolean;
6734
+ online?: boolean | undefined;
6735
6735
  battery_level: string;
6736
- left_open_alarm: boolean;
6737
- intrusion_alarm: boolean;
6738
- privacy_mode: boolean;
6736
+ left_open_alarm?: boolean | undefined;
6737
+ intrusion_alarm?: boolean | undefined;
6738
+ privacy_mode?: boolean | undefined;
6739
6739
  } | undefined;
6740
6740
  dormakaba_community_metadata?: {
6741
6741
  access_point_name: string;
@@ -7540,11 +7540,11 @@ export interface Routes {
7540
7540
  door_name: string;
7541
7541
  locked_state: string;
7542
7542
  lock_type: string;
7543
- online: boolean;
7543
+ online?: boolean | undefined;
7544
7544
  battery_level: string;
7545
- left_open_alarm: boolean;
7546
- intrusion_alarm: boolean;
7547
- privacy_mode: boolean;
7545
+ left_open_alarm?: boolean | undefined;
7546
+ intrusion_alarm?: boolean | undefined;
7547
+ privacy_mode?: boolean | undefined;
7548
7548
  } | undefined;
7549
7549
  dormakaba_community_metadata?: {
7550
7550
  access_point_name: string;
@@ -18636,8 +18636,11 @@ export interface Routes {
18636
18636
  method: 'POST';
18637
18637
  queryParams: {};
18638
18638
  jsonBody: {
18639
+ /** ID of the thermostat device. */
18639
18640
  device_id: string;
18641
+ /** Temperature to which the HVAC system connected to the thermostat should cool (in °C). You must set one of the `cooling_set_point` parameters. */
18640
18642
  cooling_set_point_celsius?: number | undefined;
18643
+ /** Temperature to which the HVAC system connected to the thermostat should cool (in °F). You must set one of the `cooling_set_point` parameters. */
18641
18644
  cooling_set_point_fahrenheit?: number | undefined;
18642
18645
  sync?: boolean;
18643
18646
  };
@@ -19404,7 +19407,9 @@ export interface Routes {
19404
19407
  queryParams: {};
19405
19408
  jsonBody: {};
19406
19409
  commonParams: {
19410
+ /** ID of the thermostat device. */
19407
19411
  device_id?: string | undefined;
19412
+ /** Name of the thermostat. */
19408
19413
  name?: string | undefined;
19409
19414
  };
19410
19415
  formData: {};
@@ -19879,8 +19884,11 @@ export interface Routes {
19879
19884
  method: 'POST';
19880
19885
  queryParams: {};
19881
19886
  jsonBody: {
19887
+ /** ID of the thermostat device. */
19882
19888
  device_id: string;
19889
+ /** Temperature to which the HVAC system connected to the thermostat should heat (in °C). You must set one of the `heating_set_point` parameters. */
19883
19890
  heating_set_point_celsius?: number | undefined;
19891
+ /** Temperature to which the HVAC system connected to the thermostat should heat (in °F). You must set one of the `heating_set_point` parameters. */
19884
19892
  heating_set_point_fahrenheit?: number | undefined;
19885
19893
  sync?: boolean;
19886
19894
  };
@@ -20614,10 +20622,15 @@ export interface Routes {
20614
20622
  method: 'POST';
20615
20623
  queryParams: {};
20616
20624
  jsonBody: {
20625
+ /** ID of the thermostat device. */
20617
20626
  device_id: string;
20627
+ /** Temperature to which the HVAC system connected to the thermostat should heat (in °C). You must set one of the `heating_set_point` parameters. */
20618
20628
  heating_set_point_celsius?: number | undefined;
20629
+ /** Temperature the thermostat should heat to (in °F). You must set one of the heating_set_point parameters. */
20619
20630
  heating_set_point_fahrenheit?: number | undefined;
20631
+ /** Temperature to which the HVAC system connected to the thermostat should cool (in °C). You must set one of the `cooling_set_point` parameters. */
20620
20632
  cooling_set_point_celsius?: number | undefined;
20633
+ /** Temperature the thermostat should cool to (in °F). You must set one of the cooling_set_point parameters. */
20621
20634
  cooling_set_point_fahrenheit?: number | undefined;
20622
20635
  sync?: boolean;
20623
20636
  };
@@ -22302,6 +22315,7 @@ export interface Routes {
22302
22315
  method: 'POST';
22303
22316
  queryParams: {};
22304
22317
  jsonBody: {
22318
+ /** ID of the thermostat device. */
22305
22319
  device_id: string;
22306
22320
  sync?: boolean;
22307
22321
  };
@@ -23152,10 +23166,12 @@ export interface Routes {
23152
23166
  method: 'POST';
23153
23167
  queryParams: {};
23154
23168
  jsonBody: {
23169
+ /** ID of the thermostat device. */
23155
23170
  device_id: string;
23156
23171
  /**
23157
- * @deprecated use fan_mode_setting instead. */
23172
+ * @deprecated Use `fan_mode_setting` instead. */
23158
23173
  fan_mode?: ('auto' | 'on' | 'circulate') | undefined;
23174
+ /** Fan mode setting of the thermostat. See also [Fan Mode Settings](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings). */
23159
23175
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined;
23160
23176
  sync?: boolean;
23161
23177
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.288.1",
3
+ "version": "1.289.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -4,11 +4,11 @@ export const acs_entrance_salto_ks_metadata = z.object({
4
4
  door_name: z.string(),
5
5
  locked_state: z.string(),
6
6
  lock_type: z.string(),
7
- online: z.boolean(),
7
+ online: z.boolean().optional(),
8
8
  battery_level: z.string(),
9
- left_open_alarm: z.boolean(),
10
- intrusion_alarm: z.boolean(),
11
- privacy_mode: z.boolean(),
9
+ left_open_alarm: z.boolean().optional(),
10
+ intrusion_alarm: z.boolean().optional(),
11
+ privacy_mode: z.boolean().optional(),
12
12
  })
13
13
 
14
14
  export type AcsEntranceSaltoKSMetadata = z.infer<
@@ -548,11 +548,7 @@ export default {
548
548
  'door_name',
549
549
  'locked_state',
550
550
  'lock_type',
551
- 'online',
552
551
  'battery_level',
553
- 'left_open_alarm',
554
- 'intrusion_alarm',
555
- 'privacy_mode',
556
552
  ],
557
553
  type: 'object',
558
554
  },
@@ -15335,6 +15331,8 @@ export default {
15335
15331
  },
15336
15332
  '/thermostats/cool': {
15337
15333
  post: {
15334
+ description:
15335
+ 'Sets a thermostat to cooling mode. You must include a cooling set point in Celsius or Fahrenheit. See also [Setting the Current HVAC and Fan Mode Settings](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings).',
15338
15336
  operationId: 'thermostatsCoolPost',
15339
15337
  requestBody: {
15340
15338
  content: {
@@ -15342,14 +15340,22 @@ export default {
15342
15340
  schema: {
15343
15341
  properties: {
15344
15342
  cooling_set_point_celsius: {
15343
+ description:
15344
+ 'Temperature to which the HVAC system connected to the thermostat should cool (in °C). You must set one of the `cooling_set_point` parameters.',
15345
15345
  format: 'float',
15346
15346
  type: 'number',
15347
15347
  },
15348
15348
  cooling_set_point_fahrenheit: {
15349
+ description:
15350
+ 'Temperature to which the HVAC system connected to the thermostat should cool (in °F). You must set one of the `cooling_set_point` parameters.',
15349
15351
  format: 'float',
15350
15352
  type: 'number',
15351
15353
  },
15352
- device_id: { format: 'uuid', type: 'string' },
15354
+ device_id: {
15355
+ description: 'ID of the thermostat device.',
15356
+ format: 'uuid',
15357
+ type: 'string',
15358
+ },
15353
15359
  sync: { default: false, type: 'boolean' },
15354
15360
  },
15355
15361
  required: ['device_id'],
@@ -15391,6 +15397,7 @@ export default {
15391
15397
  'x-fern-sdk-method-name': 'cool',
15392
15398
  'x-fern-sdk-return-value': 'action_attempt',
15393
15399
  'x-response-key': 'action_attempt',
15400
+ 'x-title': 'Set to Cool Mode',
15394
15401
  },
15395
15402
  },
15396
15403
  '/thermostats/create_climate_preset': {
@@ -15515,14 +15522,22 @@ export default {
15515
15522
  },
15516
15523
  '/thermostats/get': {
15517
15524
  post: {
15525
+ description: 'Returns a specific thermostat.',
15518
15526
  operationId: 'thermostatsGetPost',
15519
15527
  requestBody: {
15520
15528
  content: {
15521
15529
  'application/json': {
15522
15530
  schema: {
15523
15531
  properties: {
15524
- device_id: { format: 'uuid', type: 'string' },
15525
- name: { type: 'string' },
15532
+ device_id: {
15533
+ description: 'ID of the thermostat device.',
15534
+ format: 'uuid',
15535
+ type: 'string',
15536
+ },
15537
+ name: {
15538
+ description: 'Name of the thermostat.',
15539
+ type: 'string',
15540
+ },
15526
15541
  },
15527
15542
  type: 'object',
15528
15543
  },
@@ -15561,22 +15576,33 @@ export default {
15561
15576
  'x-fern-sdk-method-name': 'get',
15562
15577
  'x-fern-sdk-return-value': 'thermostat',
15563
15578
  'x-response-key': 'thermostat',
15579
+ 'x-title': 'Get a Thermostat',
15564
15580
  },
15565
15581
  },
15566
15582
  '/thermostats/heat': {
15567
15583
  post: {
15584
+ description:
15585
+ 'Sets a thermostat to heating mode. You must include a heating set point in Celsius or Fahrenheit. See also [Setting the Current HVAC and Fan Mode Settings](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings).',
15568
15586
  operationId: 'thermostatsHeatPost',
15569
15587
  requestBody: {
15570
15588
  content: {
15571
15589
  'application/json': {
15572
15590
  schema: {
15573
15591
  properties: {
15574
- device_id: { format: 'uuid', type: 'string' },
15592
+ device_id: {
15593
+ description: 'ID of the thermostat device.',
15594
+ format: 'uuid',
15595
+ type: 'string',
15596
+ },
15575
15597
  heating_set_point_celsius: {
15598
+ description:
15599
+ 'Temperature to which the HVAC system connected to the thermostat should heat (in °C). You must set one of the `heating_set_point` parameters.',
15576
15600
  format: 'float',
15577
15601
  type: 'number',
15578
15602
  },
15579
15603
  heating_set_point_fahrenheit: {
15604
+ description:
15605
+ 'Temperature to which the HVAC system connected to the thermostat should heat (in °F). You must set one of the `heating_set_point` parameters.',
15580
15606
  format: 'float',
15581
15607
  type: 'number',
15582
15608
  },
@@ -15621,10 +15647,13 @@ export default {
15621
15647
  'x-fern-sdk-method-name': 'heat',
15622
15648
  'x-fern-sdk-return-value': 'action_attempt',
15623
15649
  'x-response-key': 'action_attempt',
15650
+ 'x-title': 'Set to Heat Mode',
15624
15651
  },
15625
15652
  },
15626
15653
  '/thermostats/heat_cool': {
15627
15654
  post: {
15655
+ description:
15656
+ 'Set a thermostat to heat-cool mode, also known as "auto" mode. To do so, you must include both cooling and heating set points in the payload, either in Celsius or Fahrenheit. For information about verifying the heating and cooling availability of the thermostat and validating the correct set points, see [HVAC Mode Constraints](https://docs.seam.co/latest/capability-guides/thermostats/hvac-mode#hvac-mode-constraints) and [Set Point Constraints](https://docs.seam.co/latest/capability-guides/thermostats/set-points#set-point-constraints).',
15628
15657
  operationId: 'thermostatsHeatCoolPost',
15629
15658
  requestBody: {
15630
15659
  content: {
@@ -15632,19 +15661,31 @@ export default {
15632
15661
  schema: {
15633
15662
  properties: {
15634
15663
  cooling_set_point_celsius: {
15664
+ description:
15665
+ 'Temperature to which the HVAC system connected to the thermostat should cool (in °C). You must set one of the `cooling_set_point` parameters.',
15635
15666
  format: 'float',
15636
15667
  type: 'number',
15637
15668
  },
15638
15669
  cooling_set_point_fahrenheit: {
15670
+ description:
15671
+ 'Temperature the thermostat should cool to (in °F). You must set one of the cooling_set_point parameters.',
15639
15672
  format: 'float',
15640
15673
  type: 'number',
15641
15674
  },
15642
- device_id: { format: 'uuid', type: 'string' },
15675
+ device_id: {
15676
+ description: 'ID of the thermostat device.',
15677
+ format: 'uuid',
15678
+ type: 'string',
15679
+ },
15643
15680
  heating_set_point_celsius: {
15681
+ description:
15682
+ 'Temperature to which the HVAC system connected to the thermostat should heat (in °C). You must set one of the `heating_set_point` parameters.',
15644
15683
  format: 'float',
15645
15684
  type: 'number',
15646
15685
  },
15647
15686
  heating_set_point_fahrenheit: {
15687
+ description:
15688
+ 'Temperature the thermostat should heat to (in °F). You must set one of the heating_set_point parameters.',
15648
15689
  format: 'float',
15649
15690
  type: 'number',
15650
15691
  },
@@ -15689,10 +15730,13 @@ export default {
15689
15730
  'x-fern-sdk-method-name': 'heat_cool',
15690
15731
  'x-fern-sdk-return-value': 'action_attempt',
15691
15732
  'x-response-key': 'action_attempt',
15733
+ 'x-title': 'Set to Heat-Cool (Auto) Mode',
15692
15734
  },
15693
15735
  },
15694
15736
  '/thermostats/list': {
15695
15737
  post: {
15738
+ description:
15739
+ 'Returns a list of thermostats connected to your workspace. If no thermostats are connected, the list will be empty.',
15696
15740
  operationId: 'thermostatsListPost',
15697
15741
  requestBody: {
15698
15742
  content: {
@@ -15963,17 +16007,24 @@ export default {
15963
16007
  'x-fern-sdk-method-name': 'list',
15964
16008
  'x-fern-sdk-return-value': 'devices',
15965
16009
  'x-response-key': 'devices',
16010
+ 'x-title': 'List Thermostats',
15966
16011
  },
15967
16012
  },
15968
16013
  '/thermostats/off': {
15969
16014
  post: {
16015
+ description:
16016
+ 'Sets a thermostat to "off" mode. See also [Setting the Current HVAC and Fan Mode Settings](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings).',
15970
16017
  operationId: 'thermostatsOffPost',
15971
16018
  requestBody: {
15972
16019
  content: {
15973
16020
  'application/json': {
15974
16021
  schema: {
15975
16022
  properties: {
15976
- device_id: { format: 'uuid', type: 'string' },
16023
+ device_id: {
16024
+ description: 'ID of the thermostat device.',
16025
+ format: 'uuid',
16026
+ type: 'string',
16027
+ },
15977
16028
  sync: { default: false, type: 'boolean' },
15978
16029
  },
15979
16030
  required: ['device_id'],
@@ -16015,6 +16066,7 @@ export default {
16015
16066
  'x-fern-sdk-method-name': 'off',
16016
16067
  'x-fern-sdk-return-value': 'action_attempt',
16017
16068
  'x-response-key': 'action_attempt',
16069
+ 'x-title': 'Set to Off Mode',
16018
16070
  },
16019
16071
  },
16020
16072
  '/thermostats/schedules/create': {
@@ -16377,20 +16429,28 @@ export default {
16377
16429
  },
16378
16430
  '/thermostats/set_fan_mode': {
16379
16431
  post: {
16432
+ description:
16433
+ 'Sets the fan mode setting for a thermostat. See also [Setting the Current HVAC and Fan Mode Settings](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings) and [Fan Mode Settings](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings).',
16380
16434
  operationId: 'thermostatsSetFanModePost',
16381
16435
  requestBody: {
16382
16436
  content: {
16383
16437
  'application/json': {
16384
16438
  schema: {
16385
16439
  properties: {
16386
- device_id: { format: 'uuid', type: 'string' },
16440
+ device_id: {
16441
+ description: 'ID of the thermostat device.',
16442
+ format: 'uuid',
16443
+ type: 'string',
16444
+ },
16387
16445
  fan_mode: {
16388
16446
  deprecated: true,
16389
16447
  enum: ['auto', 'on', 'circulate'],
16390
16448
  type: 'string',
16391
- 'x-deprecated': 'use fan_mode_setting instead.',
16449
+ 'x-deprecated': 'Use `fan_mode_setting` instead.',
16392
16450
  },
16393
16451
  fan_mode_setting: {
16452
+ description:
16453
+ 'Fan mode setting of the thermostat. See also [Fan Mode Settings](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings).',
16394
16454
  enum: ['auto', 'on', 'circulate'],
16395
16455
  type: 'string',
16396
16456
  },
@@ -16435,6 +16495,7 @@ export default {
16435
16495
  'x-fern-sdk-method-name': 'set_fan_mode',
16436
16496
  'x-fern-sdk-return-value': 'action_attempt',
16437
16497
  'x-response-key': 'action_attempt',
16498
+ 'x-title': 'Set Fan Mode Setting',
16438
16499
  },
16439
16500
  },
16440
16501
  '/thermostats/set_temperature_threshold': {
@@ -4252,11 +4252,11 @@ export interface Routes {
4252
4252
  door_name: string
4253
4253
  locked_state: string
4254
4254
  lock_type: string
4255
- online: boolean
4255
+ online?: boolean | undefined
4256
4256
  battery_level: string
4257
- left_open_alarm: boolean
4258
- intrusion_alarm: boolean
4259
- privacy_mode: boolean
4257
+ left_open_alarm?: boolean | undefined
4258
+ intrusion_alarm?: boolean | undefined
4259
+ privacy_mode?: boolean | undefined
4260
4260
  }
4261
4261
  | undefined
4262
4262
  dormakaba_community_metadata?:
@@ -5013,11 +5013,11 @@ export interface Routes {
5013
5013
  door_name: string
5014
5014
  locked_state: string
5015
5015
  lock_type: string
5016
- online: boolean
5016
+ online?: boolean | undefined
5017
5017
  battery_level: string
5018
- left_open_alarm: boolean
5019
- intrusion_alarm: boolean
5020
- privacy_mode: boolean
5018
+ left_open_alarm?: boolean | undefined
5019
+ intrusion_alarm?: boolean | undefined
5020
+ privacy_mode?: boolean | undefined
5021
5021
  }
5022
5022
  | undefined
5023
5023
  dormakaba_community_metadata?:
@@ -7833,11 +7833,11 @@ export interface Routes {
7833
7833
  door_name: string
7834
7834
  locked_state: string
7835
7835
  lock_type: string
7836
- online: boolean
7836
+ online?: boolean | undefined
7837
7837
  battery_level: string
7838
- left_open_alarm: boolean
7839
- intrusion_alarm: boolean
7840
- privacy_mode: boolean
7838
+ left_open_alarm?: boolean | undefined
7839
+ intrusion_alarm?: boolean | undefined
7840
+ privacy_mode?: boolean | undefined
7841
7841
  }
7842
7842
  | undefined
7843
7843
  dormakaba_community_metadata?:
@@ -7927,11 +7927,11 @@ export interface Routes {
7927
7927
  door_name: string
7928
7928
  locked_state: string
7929
7929
  lock_type: string
7930
- online: boolean
7930
+ online?: boolean | undefined
7931
7931
  battery_level: string
7932
- left_open_alarm: boolean
7933
- intrusion_alarm: boolean
7934
- privacy_mode: boolean
7932
+ left_open_alarm?: boolean | undefined
7933
+ intrusion_alarm?: boolean | undefined
7934
+ privacy_mode?: boolean | undefined
7935
7935
  }
7936
7936
  | undefined
7937
7937
  dormakaba_community_metadata?:
@@ -8943,11 +8943,11 @@ export interface Routes {
8943
8943
  door_name: string
8944
8944
  locked_state: string
8945
8945
  lock_type: string
8946
- online: boolean
8946
+ online?: boolean | undefined
8947
8947
  battery_level: string
8948
- left_open_alarm: boolean
8949
- intrusion_alarm: boolean
8950
- privacy_mode: boolean
8948
+ left_open_alarm?: boolean | undefined
8949
+ intrusion_alarm?: boolean | undefined
8950
+ privacy_mode?: boolean | undefined
8951
8951
  }
8952
8952
  | undefined
8953
8953
  dormakaba_community_metadata?:
@@ -23544,8 +23544,11 @@ export interface Routes {
23544
23544
  method: 'POST'
23545
23545
  queryParams: {}
23546
23546
  jsonBody: {
23547
+ /** ID of the thermostat device. */
23547
23548
  device_id: string
23549
+ /** Temperature to which the HVAC system connected to the thermostat should cool (in °C). You must set one of the `cooling_set_point` parameters. */
23548
23550
  cooling_set_point_celsius?: number | undefined
23551
+ /** Temperature to which the HVAC system connected to the thermostat should cool (in °F). You must set one of the `cooling_set_point` parameters. */
23549
23552
  cooling_set_point_fahrenheit?: number | undefined
23550
23553
  sync?: boolean
23551
23554
  }
@@ -24438,7 +24441,9 @@ export interface Routes {
24438
24441
  queryParams: {}
24439
24442
  jsonBody: {}
24440
24443
  commonParams: {
24444
+ /** ID of the thermostat device. */
24441
24445
  device_id?: string | undefined
24446
+ /** Name of the thermostat. */
24442
24447
  name?: string | undefined
24443
24448
  }
24444
24449
  formData: {}
@@ -25096,8 +25101,11 @@ export interface Routes {
25096
25101
  method: 'POST'
25097
25102
  queryParams: {}
25098
25103
  jsonBody: {
25104
+ /** ID of the thermostat device. */
25099
25105
  device_id: string
25106
+ /** Temperature to which the HVAC system connected to the thermostat should heat (in °C). You must set one of the `heating_set_point` parameters. */
25100
25107
  heating_set_point_celsius?: number | undefined
25108
+ /** Temperature to which the HVAC system connected to the thermostat should heat (in °F). You must set one of the `heating_set_point` parameters. */
25101
25109
  heating_set_point_fahrenheit?: number | undefined
25102
25110
  sync?: boolean
25103
25111
  }
@@ -25957,10 +25965,15 @@ export interface Routes {
25957
25965
  method: 'POST'
25958
25966
  queryParams: {}
25959
25967
  jsonBody: {
25968
+ /** ID of the thermostat device. */
25960
25969
  device_id: string
25970
+ /** Temperature to which the HVAC system connected to the thermostat should heat (in °C). You must set one of the `heating_set_point` parameters. */
25961
25971
  heating_set_point_celsius?: number | undefined
25972
+ /** Temperature the thermostat should heat to (in °F). You must set one of the heating_set_point parameters. */
25962
25973
  heating_set_point_fahrenheit?: number | undefined
25974
+ /** Temperature to which the HVAC system connected to the thermostat should cool (in °C). You must set one of the `cooling_set_point` parameters. */
25963
25975
  cooling_set_point_celsius?: number | undefined
25976
+ /** Temperature the thermostat should cool to (in °F). You must set one of the cooling_set_point parameters. */
25964
25977
  cooling_set_point_fahrenheit?: number | undefined
25965
25978
  sync?: boolean
25966
25979
  }
@@ -28283,6 +28296,7 @@ export interface Routes {
28283
28296
  method: 'POST'
28284
28297
  queryParams: {}
28285
28298
  jsonBody: {
28299
+ /** ID of the thermostat device. */
28286
28300
  device_id: string
28287
28301
  sync?: boolean
28288
28302
  }
@@ -29259,10 +29273,12 @@ export interface Routes {
29259
29273
  method: 'POST'
29260
29274
  queryParams: {}
29261
29275
  jsonBody: {
29276
+ /** ID of the thermostat device. */
29262
29277
  device_id: string
29263
29278
  /**
29264
- * @deprecated use fan_mode_setting instead. */
29279
+ * @deprecated Use `fan_mode_setting` instead. */
29265
29280
  fan_mode?: ('auto' | 'on' | 'circulate') | undefined
29281
+ /** Fan mode setting of the thermostat. See also [Fan Mode Settings](https://docs.seam.co/latest/capability-guides/thermostats/configure-current-climate-settings#fan-mode-settings). */
29266
29282
  fan_mode_setting?: ('auto' | 'on' | 'circulate') | undefined
29267
29283
  sync?: boolean
29268
29284
  }