@seamapi/types 1.310.0 → 1.311.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.
Files changed (30) hide show
  1. package/dist/connect.cjs +37 -396
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +12 -2330
  4. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +0 -312
  5. package/lib/seam/connect/models/action-attempts/action-attempt.js +0 -8
  6. package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
  7. package/lib/seam/connect/openapi.d.ts +6 -0
  8. package/lib/seam/connect/openapi.js +23 -311
  9. package/lib/seam/connect/openapi.js.map +1 -1
  10. package/lib/seam/connect/route-types.d.ts +18 -2030
  11. package/package.json +1 -1
  12. package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +0 -8
  13. package/src/lib/seam/connect/openapi.ts +28 -311
  14. package/src/lib/seam/connect/route-types.ts +6 -2270
  15. package/lib/seam/connect/models/action-attempts/set-cool.d.ts +0 -80
  16. package/lib/seam/connect/models/action-attempts/set-cool.js +0 -25
  17. package/lib/seam/connect/models/action-attempts/set-cool.js.map +0 -1
  18. package/lib/seam/connect/models/action-attempts/set-heat-cool.d.ts +0 -80
  19. package/lib/seam/connect/models/action-attempts/set-heat-cool.js +0 -25
  20. package/lib/seam/connect/models/action-attempts/set-heat-cool.js.map +0 -1
  21. package/lib/seam/connect/models/action-attempts/set-heat.d.ts +0 -80
  22. package/lib/seam/connect/models/action-attempts/set-heat.js +0 -25
  23. package/lib/seam/connect/models/action-attempts/set-heat.js.map +0 -1
  24. package/lib/seam/connect/models/action-attempts/set-thermostat-off.d.ts +0 -80
  25. package/lib/seam/connect/models/action-attempts/set-thermostat-off.js +0 -25
  26. package/lib/seam/connect/models/action-attempts/set-thermostat-off.js.map +0 -1
  27. package/src/lib/seam/connect/models/action-attempts/set-cool.ts +0 -33
  28. package/src/lib/seam/connect/models/action-attempts/set-heat-cool.ts +0 -33
  29. package/src/lib/seam/connect/models/action-attempts/set-heat.ts +0 -33
  30. package/src/lib/seam/connect/models/action-attempts/set-thermostat-off.ts +0 -36
@@ -540,78 +540,6 @@ export interface Routes {
540
540
  type: string;
541
541
  message: string;
542
542
  };
543
- } | {
544
- /** The ID of the action attempt. */
545
- action_attempt_id: string;
546
- status: 'pending';
547
- result: null;
548
- error: null;
549
- action_type: 'SET_COOL';
550
- } | {
551
- /** The ID of the action attempt. */
552
- action_attempt_id: string;
553
- status: 'success';
554
- error: null;
555
- action_type: 'SET_COOL';
556
- result: {};
557
- } | {
558
- /** The ID of the action attempt. */
559
- action_attempt_id: string;
560
- status: 'error';
561
- result: null;
562
- action_type: 'SET_COOL';
563
- error: {
564
- type: string;
565
- message: string;
566
- };
567
- } | {
568
- /** The ID of the action attempt. */
569
- action_attempt_id: string;
570
- status: 'pending';
571
- result: null;
572
- error: null;
573
- action_type: 'SET_HEAT';
574
- } | {
575
- /** The ID of the action attempt. */
576
- action_attempt_id: string;
577
- status: 'success';
578
- error: null;
579
- action_type: 'SET_HEAT';
580
- result: {};
581
- } | {
582
- /** The ID of the action attempt. */
583
- action_attempt_id: string;
584
- status: 'error';
585
- result: null;
586
- action_type: 'SET_HEAT';
587
- error: {
588
- type: string;
589
- message: string;
590
- };
591
- } | {
592
- /** The ID of the action attempt. */
593
- action_attempt_id: string;
594
- status: 'pending';
595
- result: null;
596
- error: null;
597
- action_type: 'SET_HEAT_COOL';
598
- } | {
599
- /** The ID of the action attempt. */
600
- action_attempt_id: string;
601
- status: 'success';
602
- error: null;
603
- action_type: 'SET_HEAT_COOL';
604
- result: {};
605
- } | {
606
- /** The ID of the action attempt. */
607
- action_attempt_id: string;
608
- status: 'error';
609
- result: null;
610
- action_type: 'SET_HEAT_COOL';
611
- error: {
612
- type: string;
613
- message: string;
614
- };
615
543
  } | {
616
544
  /** The ID of the action attempt. */
617
545
  action_attempt_id: string;
@@ -636,30 +564,6 @@ export interface Routes {
636
564
  type: string;
637
565
  message: string;
638
566
  };
639
- } | {
640
- /** The ID of the action attempt. */
641
- action_attempt_id: string;
642
- status: 'pending';
643
- result: null;
644
- error: null;
645
- action_type: 'SET_THERMOSTAT_OFF';
646
- } | {
647
- /** The ID of the action attempt. */
648
- action_attempt_id: string;
649
- status: 'success';
650
- error: null;
651
- action_type: 'SET_THERMOSTAT_OFF';
652
- result: {};
653
- } | {
654
- /** The ID of the action attempt. */
655
- action_attempt_id: string;
656
- status: 'error';
657
- result: null;
658
- action_type: 'SET_THERMOSTAT_OFF';
659
- error: {
660
- type: string;
661
- message: string;
662
- };
663
567
  } | {
664
568
  /** The ID of the action attempt. */
665
569
  action_attempt_id: string;
@@ -1563,78 +1467,6 @@ export interface Routes {
1563
1467
  type: string;
1564
1468
  message: string;
1565
1469
  };
1566
- } | {
1567
- /** The ID of the action attempt. */
1568
- action_attempt_id: string;
1569
- status: 'pending';
1570
- result: null;
1571
- error: null;
1572
- action_type: 'SET_COOL';
1573
- } | {
1574
- /** The ID of the action attempt. */
1575
- action_attempt_id: string;
1576
- status: 'success';
1577
- error: null;
1578
- action_type: 'SET_COOL';
1579
- result: {};
1580
- } | {
1581
- /** The ID of the action attempt. */
1582
- action_attempt_id: string;
1583
- status: 'error';
1584
- result: null;
1585
- action_type: 'SET_COOL';
1586
- error: {
1587
- type: string;
1588
- message: string;
1589
- };
1590
- } | {
1591
- /** The ID of the action attempt. */
1592
- action_attempt_id: string;
1593
- status: 'pending';
1594
- result: null;
1595
- error: null;
1596
- action_type: 'SET_HEAT';
1597
- } | {
1598
- /** The ID of the action attempt. */
1599
- action_attempt_id: string;
1600
- status: 'success';
1601
- error: null;
1602
- action_type: 'SET_HEAT';
1603
- result: {};
1604
- } | {
1605
- /** The ID of the action attempt. */
1606
- action_attempt_id: string;
1607
- status: 'error';
1608
- result: null;
1609
- action_type: 'SET_HEAT';
1610
- error: {
1611
- type: string;
1612
- message: string;
1613
- };
1614
- } | {
1615
- /** The ID of the action attempt. */
1616
- action_attempt_id: string;
1617
- status: 'pending';
1618
- result: null;
1619
- error: null;
1620
- action_type: 'SET_HEAT_COOL';
1621
- } | {
1622
- /** The ID of the action attempt. */
1623
- action_attempt_id: string;
1624
- status: 'success';
1625
- error: null;
1626
- action_type: 'SET_HEAT_COOL';
1627
- result: {};
1628
- } | {
1629
- /** The ID of the action attempt. */
1630
- action_attempt_id: string;
1631
- status: 'error';
1632
- result: null;
1633
- action_type: 'SET_HEAT_COOL';
1634
- error: {
1635
- type: string;
1636
- message: string;
1637
- };
1638
1470
  } | {
1639
1471
  /** The ID of the action attempt. */
1640
1472
  action_attempt_id: string;
@@ -1659,30 +1491,6 @@ export interface Routes {
1659
1491
  type: string;
1660
1492
  message: string;
1661
1493
  };
1662
- } | {
1663
- /** The ID of the action attempt. */
1664
- action_attempt_id: string;
1665
- status: 'pending';
1666
- result: null;
1667
- error: null;
1668
- action_type: 'SET_THERMOSTAT_OFF';
1669
- } | {
1670
- /** The ID of the action attempt. */
1671
- action_attempt_id: string;
1672
- status: 'success';
1673
- error: null;
1674
- action_type: 'SET_THERMOSTAT_OFF';
1675
- result: {};
1676
- } | {
1677
- /** The ID of the action attempt. */
1678
- action_attempt_id: string;
1679
- status: 'error';
1680
- result: null;
1681
- action_type: 'SET_THERMOSTAT_OFF';
1682
- error: {
1683
- type: string;
1684
- message: string;
1685
- };
1686
1494
  } | {
1687
1495
  /** The ID of the action attempt. */
1688
1496
  action_attempt_id: string;
@@ -2804,78 +2612,6 @@ export interface Routes {
2804
2612
  type: string;
2805
2613
  message: string;
2806
2614
  };
2807
- } | {
2808
- /** The ID of the action attempt. */
2809
- action_attempt_id: string;
2810
- status: 'pending';
2811
- result: null;
2812
- error: null;
2813
- action_type: 'SET_COOL';
2814
- } | {
2815
- /** The ID of the action attempt. */
2816
- action_attempt_id: string;
2817
- status: 'success';
2818
- error: null;
2819
- action_type: 'SET_COOL';
2820
- result: {};
2821
- } | {
2822
- /** The ID of the action attempt. */
2823
- action_attempt_id: string;
2824
- status: 'error';
2825
- result: null;
2826
- action_type: 'SET_COOL';
2827
- error: {
2828
- type: string;
2829
- message: string;
2830
- };
2831
- } | {
2832
- /** The ID of the action attempt. */
2833
- action_attempt_id: string;
2834
- status: 'pending';
2835
- result: null;
2836
- error: null;
2837
- action_type: 'SET_HEAT';
2838
- } | {
2839
- /** The ID of the action attempt. */
2840
- action_attempt_id: string;
2841
- status: 'success';
2842
- error: null;
2843
- action_type: 'SET_HEAT';
2844
- result: {};
2845
- } | {
2846
- /** The ID of the action attempt. */
2847
- action_attempt_id: string;
2848
- status: 'error';
2849
- result: null;
2850
- action_type: 'SET_HEAT';
2851
- error: {
2852
- type: string;
2853
- message: string;
2854
- };
2855
- } | {
2856
- /** The ID of the action attempt. */
2857
- action_attempt_id: string;
2858
- status: 'pending';
2859
- result: null;
2860
- error: null;
2861
- action_type: 'SET_HEAT_COOL';
2862
- } | {
2863
- /** The ID of the action attempt. */
2864
- action_attempt_id: string;
2865
- status: 'success';
2866
- error: null;
2867
- action_type: 'SET_HEAT_COOL';
2868
- result: {};
2869
- } | {
2870
- /** The ID of the action attempt. */
2871
- action_attempt_id: string;
2872
- status: 'error';
2873
- result: null;
2874
- action_type: 'SET_HEAT_COOL';
2875
- error: {
2876
- type: string;
2877
- message: string;
2878
- };
2879
2615
  } | {
2880
2616
  /** The ID of the action attempt. */
2881
2617
  action_attempt_id: string;
@@ -2900,30 +2636,6 @@ export interface Routes {
2900
2636
  type: string;
2901
2637
  message: string;
2902
2638
  };
2903
- } | {
2904
- /** The ID of the action attempt. */
2905
- action_attempt_id: string;
2906
- status: 'pending';
2907
- result: null;
2908
- error: null;
2909
- action_type: 'SET_THERMOSTAT_OFF';
2910
- } | {
2911
- /** The ID of the action attempt. */
2912
- action_attempt_id: string;
2913
- status: 'success';
2914
- error: null;
2915
- action_type: 'SET_THERMOSTAT_OFF';
2916
- result: {};
2917
- } | {
2918
- /** The ID of the action attempt. */
2919
- action_attempt_id: string;
2920
- status: 'error';
2921
- result: null;
2922
- action_type: 'SET_THERMOSTAT_OFF';
2923
- error: {
2924
- type: string;
2925
- message: string;
2926
- };
2927
2639
  } | {
2928
2640
  /** The ID of the action attempt. */
2929
2641
  action_attempt_id: string;
@@ -3820,20 +3532,20 @@ export interface Routes {
3820
3532
  status: 'pending';
3821
3533
  result: null;
3822
3534
  error: null;
3823
- action_type: 'SET_COOL';
3535
+ action_type: 'SET_FAN_MODE';
3824
3536
  } | {
3825
3537
  /** The ID of the action attempt. */
3826
3538
  action_attempt_id: string;
3827
3539
  status: 'success';
3828
3540
  error: null;
3829
- action_type: 'SET_COOL';
3541
+ action_type: 'SET_FAN_MODE';
3830
3542
  result: {};
3831
3543
  } | {
3832
3544
  /** The ID of the action attempt. */
3833
3545
  action_attempt_id: string;
3834
3546
  status: 'error';
3835
3547
  result: null;
3836
- action_type: 'SET_COOL';
3548
+ action_type: 'SET_FAN_MODE';
3837
3549
  error: {
3838
3550
  type: string;
3839
3551
  message: string;
@@ -3844,103 +3556,7 @@ export interface Routes {
3844
3556
  status: 'pending';
3845
3557
  result: null;
3846
3558
  error: null;
3847
- action_type: 'SET_HEAT';
3848
- } | {
3849
- /** The ID of the action attempt. */
3850
- action_attempt_id: string;
3851
- status: 'success';
3852
- error: null;
3853
- action_type: 'SET_HEAT';
3854
- result: {};
3855
- } | {
3856
- /** The ID of the action attempt. */
3857
- action_attempt_id: string;
3858
- status: 'error';
3859
- result: null;
3860
- action_type: 'SET_HEAT';
3861
- error: {
3862
- type: string;
3863
- message: string;
3864
- };
3865
- } | {
3866
- /** The ID of the action attempt. */
3867
- action_attempt_id: string;
3868
- status: 'pending';
3869
- result: null;
3870
- error: null;
3871
- action_type: 'SET_HEAT_COOL';
3872
- } | {
3873
- /** The ID of the action attempt. */
3874
- action_attempt_id: string;
3875
- status: 'success';
3876
- error: null;
3877
- action_type: 'SET_HEAT_COOL';
3878
- result: {};
3879
- } | {
3880
- /** The ID of the action attempt. */
3881
- action_attempt_id: string;
3882
- status: 'error';
3883
- result: null;
3884
- action_type: 'SET_HEAT_COOL';
3885
- error: {
3886
- type: string;
3887
- message: string;
3888
- };
3889
- } | {
3890
- /** The ID of the action attempt. */
3891
- action_attempt_id: string;
3892
- status: 'pending';
3893
- result: null;
3894
- error: null;
3895
- action_type: 'SET_FAN_MODE';
3896
- } | {
3897
- /** The ID of the action attempt. */
3898
- action_attempt_id: string;
3899
- status: 'success';
3900
- error: null;
3901
- action_type: 'SET_FAN_MODE';
3902
- result: {};
3903
- } | {
3904
- /** The ID of the action attempt. */
3905
- action_attempt_id: string;
3906
- status: 'error';
3907
- result: null;
3908
- action_type: 'SET_FAN_MODE';
3909
- error: {
3910
- type: string;
3911
- message: string;
3912
- };
3913
- } | {
3914
- /** The ID of the action attempt. */
3915
- action_attempt_id: string;
3916
- status: 'pending';
3917
- result: null;
3918
- error: null;
3919
- action_type: 'SET_THERMOSTAT_OFF';
3920
- } | {
3921
- /** The ID of the action attempt. */
3922
- action_attempt_id: string;
3923
- status: 'success';
3924
- error: null;
3925
- action_type: 'SET_THERMOSTAT_OFF';
3926
- result: {};
3927
- } | {
3928
- /** The ID of the action attempt. */
3929
- action_attempt_id: string;
3930
- status: 'error';
3931
- result: null;
3932
- action_type: 'SET_THERMOSTAT_OFF';
3933
- error: {
3934
- type: string;
3935
- message: string;
3936
- };
3937
- } | {
3938
- /** The ID of the action attempt. */
3939
- action_attempt_id: string;
3940
- status: 'pending';
3941
- result: null;
3942
- error: null;
3943
- action_type: 'SET_HVAC_MODE';
3559
+ action_type: 'SET_HVAC_MODE';
3944
3560
  } | {
3945
3561
  /** The ID of the action attempt. */
3946
3562
  action_attempt_id: string;
@@ -6173,78 +5789,6 @@ export interface Routes {
6173
5789
  type: string;
6174
5790
  message: string;
6175
5791
  };
6176
- } | {
6177
- /** The ID of the action attempt. */
6178
- action_attempt_id: string;
6179
- status: 'pending';
6180
- result: null;
6181
- error: null;
6182
- action_type: 'SET_COOL';
6183
- } | {
6184
- /** The ID of the action attempt. */
6185
- action_attempt_id: string;
6186
- status: 'success';
6187
- error: null;
6188
- action_type: 'SET_COOL';
6189
- result: {};
6190
- } | {
6191
- /** The ID of the action attempt. */
6192
- action_attempt_id: string;
6193
- status: 'error';
6194
- result: null;
6195
- action_type: 'SET_COOL';
6196
- error: {
6197
- type: string;
6198
- message: string;
6199
- };
6200
- } | {
6201
- /** The ID of the action attempt. */
6202
- action_attempt_id: string;
6203
- status: 'pending';
6204
- result: null;
6205
- error: null;
6206
- action_type: 'SET_HEAT';
6207
- } | {
6208
- /** The ID of the action attempt. */
6209
- action_attempt_id: string;
6210
- status: 'success';
6211
- error: null;
6212
- action_type: 'SET_HEAT';
6213
- result: {};
6214
- } | {
6215
- /** The ID of the action attempt. */
6216
- action_attempt_id: string;
6217
- status: 'error';
6218
- result: null;
6219
- action_type: 'SET_HEAT';
6220
- error: {
6221
- type: string;
6222
- message: string;
6223
- };
6224
- } | {
6225
- /** The ID of the action attempt. */
6226
- action_attempt_id: string;
6227
- status: 'pending';
6228
- result: null;
6229
- error: null;
6230
- action_type: 'SET_HEAT_COOL';
6231
- } | {
6232
- /** The ID of the action attempt. */
6233
- action_attempt_id: string;
6234
- status: 'success';
6235
- error: null;
6236
- action_type: 'SET_HEAT_COOL';
6237
- result: {};
6238
- } | {
6239
- /** The ID of the action attempt. */
6240
- action_attempt_id: string;
6241
- status: 'error';
6242
- result: null;
6243
- action_type: 'SET_HEAT_COOL';
6244
- error: {
6245
- type: string;
6246
- message: string;
6247
- };
6248
5792
  } | {
6249
5793
  /** The ID of the action attempt. */
6250
5794
  action_attempt_id: string;
@@ -6269,30 +5813,6 @@ export interface Routes {
6269
5813
  type: string;
6270
5814
  message: string;
6271
5815
  };
6272
- } | {
6273
- /** The ID of the action attempt. */
6274
- action_attempt_id: string;
6275
- status: 'pending';
6276
- result: null;
6277
- error: null;
6278
- action_type: 'SET_THERMOSTAT_OFF';
6279
- } | {
6280
- /** The ID of the action attempt. */
6281
- action_attempt_id: string;
6282
- status: 'success';
6283
- error: null;
6284
- action_type: 'SET_THERMOSTAT_OFF';
6285
- result: {};
6286
- } | {
6287
- /** The ID of the action attempt. */
6288
- action_attempt_id: string;
6289
- status: 'error';
6290
- result: null;
6291
- action_type: 'SET_THERMOSTAT_OFF';
6292
- error: {
6293
- type: string;
6294
- message: string;
6295
- };
6296
5816
  } | {
6297
5817
  /** The ID of the action attempt. */
6298
5818
  action_attempt_id: string;
@@ -7090,78 +6610,6 @@ export interface Routes {
7090
6610
  type: string;
7091
6611
  message: string;
7092
6612
  };
7093
- } | {
7094
- /** The ID of the action attempt. */
7095
- action_attempt_id: string;
7096
- status: 'pending';
7097
- result: null;
7098
- error: null;
7099
- action_type: 'SET_COOL';
7100
- } | {
7101
- /** The ID of the action attempt. */
7102
- action_attempt_id: string;
7103
- status: 'success';
7104
- error: null;
7105
- action_type: 'SET_COOL';
7106
- result: {};
7107
- } | {
7108
- /** The ID of the action attempt. */
7109
- action_attempt_id: string;
7110
- status: 'error';
7111
- result: null;
7112
- action_type: 'SET_COOL';
7113
- error: {
7114
- type: string;
7115
- message: string;
7116
- };
7117
- } | {
7118
- /** The ID of the action attempt. */
7119
- action_attempt_id: string;
7120
- status: 'pending';
7121
- result: null;
7122
- error: null;
7123
- action_type: 'SET_HEAT';
7124
- } | {
7125
- /** The ID of the action attempt. */
7126
- action_attempt_id: string;
7127
- status: 'success';
7128
- error: null;
7129
- action_type: 'SET_HEAT';
7130
- result: {};
7131
- } | {
7132
- /** The ID of the action attempt. */
7133
- action_attempt_id: string;
7134
- status: 'error';
7135
- result: null;
7136
- action_type: 'SET_HEAT';
7137
- error: {
7138
- type: string;
7139
- message: string;
7140
- };
7141
- } | {
7142
- /** The ID of the action attempt. */
7143
- action_attempt_id: string;
7144
- status: 'pending';
7145
- result: null;
7146
- error: null;
7147
- action_type: 'SET_HEAT_COOL';
7148
- } | {
7149
- /** The ID of the action attempt. */
7150
- action_attempt_id: string;
7151
- status: 'success';
7152
- error: null;
7153
- action_type: 'SET_HEAT_COOL';
7154
- result: {};
7155
- } | {
7156
- /** The ID of the action attempt. */
7157
- action_attempt_id: string;
7158
- status: 'error';
7159
- result: null;
7160
- action_type: 'SET_HEAT_COOL';
7161
- error: {
7162
- type: string;
7163
- message: string;
7164
- };
7165
6613
  } | {
7166
6614
  /** The ID of the action attempt. */
7167
6615
  action_attempt_id: string;
@@ -7186,30 +6634,6 @@ export interface Routes {
7186
6634
  type: string;
7187
6635
  message: string;
7188
6636
  };
7189
- } | {
7190
- /** The ID of the action attempt. */
7191
- action_attempt_id: string;
7192
- status: 'pending';
7193
- result: null;
7194
- error: null;
7195
- action_type: 'SET_THERMOSTAT_OFF';
7196
- } | {
7197
- /** The ID of the action attempt. */
7198
- action_attempt_id: string;
7199
- status: 'success';
7200
- error: null;
7201
- action_type: 'SET_THERMOSTAT_OFF';
7202
- result: {};
7203
- } | {
7204
- /** The ID of the action attempt. */
7205
- action_attempt_id: string;
7206
- status: 'error';
7207
- result: null;
7208
- action_type: 'SET_THERMOSTAT_OFF';
7209
- error: {
7210
- type: string;
7211
- message: string;
7212
- };
7213
6637
  } | {
7214
6638
  /** The ID of the action attempt. */
7215
6639
  action_attempt_id: string;
@@ -9297,78 +8721,6 @@ export interface Routes {
9297
8721
  type: string;
9298
8722
  message: string;
9299
8723
  };
9300
- } | {
9301
- /** The ID of the action attempt. */
9302
- action_attempt_id: string;
9303
- status: 'pending';
9304
- result: null;
9305
- error: null;
9306
- action_type: 'SET_COOL';
9307
- } | {
9308
- /** The ID of the action attempt. */
9309
- action_attempt_id: string;
9310
- status: 'success';
9311
- error: null;
9312
- action_type: 'SET_COOL';
9313
- result: {};
9314
- } | {
9315
- /** The ID of the action attempt. */
9316
- action_attempt_id: string;
9317
- status: 'error';
9318
- result: null;
9319
- action_type: 'SET_COOL';
9320
- error: {
9321
- type: string;
9322
- message: string;
9323
- };
9324
- } | {
9325
- /** The ID of the action attempt. */
9326
- action_attempt_id: string;
9327
- status: 'pending';
9328
- result: null;
9329
- error: null;
9330
- action_type: 'SET_HEAT';
9331
- } | {
9332
- /** The ID of the action attempt. */
9333
- action_attempt_id: string;
9334
- status: 'success';
9335
- error: null;
9336
- action_type: 'SET_HEAT';
9337
- result: {};
9338
- } | {
9339
- /** The ID of the action attempt. */
9340
- action_attempt_id: string;
9341
- status: 'error';
9342
- result: null;
9343
- action_type: 'SET_HEAT';
9344
- error: {
9345
- type: string;
9346
- message: string;
9347
- };
9348
- } | {
9349
- /** The ID of the action attempt. */
9350
- action_attempt_id: string;
9351
- status: 'pending';
9352
- result: null;
9353
- error: null;
9354
- action_type: 'SET_HEAT_COOL';
9355
- } | {
9356
- /** The ID of the action attempt. */
9357
- action_attempt_id: string;
9358
- status: 'success';
9359
- error: null;
9360
- action_type: 'SET_HEAT_COOL';
9361
- result: {};
9362
- } | {
9363
- /** The ID of the action attempt. */
9364
- action_attempt_id: string;
9365
- status: 'error';
9366
- result: null;
9367
- action_type: 'SET_HEAT_COOL';
9368
- error: {
9369
- type: string;
9370
- message: string;
9371
- };
9372
8724
  } | {
9373
8725
  /** The ID of the action attempt. */
9374
8726
  action_attempt_id: string;
@@ -9393,30 +8745,6 @@ export interface Routes {
9393
8745
  type: string;
9394
8746
  message: string;
9395
8747
  };
9396
- } | {
9397
- /** The ID of the action attempt. */
9398
- action_attempt_id: string;
9399
- status: 'pending';
9400
- result: null;
9401
- error: null;
9402
- action_type: 'SET_THERMOSTAT_OFF';
9403
- } | {
9404
- /** The ID of the action attempt. */
9405
- action_attempt_id: string;
9406
- status: 'success';
9407
- error: null;
9408
- action_type: 'SET_THERMOSTAT_OFF';
9409
- result: {};
9410
- } | {
9411
- /** The ID of the action attempt. */
9412
- action_attempt_id: string;
9413
- status: 'error';
9414
- result: null;
9415
- action_type: 'SET_THERMOSTAT_OFF';
9416
- error: {
9417
- type: string;
9418
- message: string;
9419
- };
9420
8748
  } | {
9421
8749
  /** The ID of the action attempt. */
9422
8750
  action_attempt_id: string;
@@ -10169,78 +9497,6 @@ export interface Routes {
10169
9497
  type: string;
10170
9498
  message: string;
10171
9499
  };
10172
- } | {
10173
- /** The ID of the action attempt. */
10174
- action_attempt_id: string;
10175
- status: 'pending';
10176
- result: null;
10177
- error: null;
10178
- action_type: 'SET_COOL';
10179
- } | {
10180
- /** The ID of the action attempt. */
10181
- action_attempt_id: string;
10182
- status: 'success';
10183
- error: null;
10184
- action_type: 'SET_COOL';
10185
- result: {};
10186
- } | {
10187
- /** The ID of the action attempt. */
10188
- action_attempt_id: string;
10189
- status: 'error';
10190
- result: null;
10191
- action_type: 'SET_COOL';
10192
- error: {
10193
- type: string;
10194
- message: string;
10195
- };
10196
- } | {
10197
- /** The ID of the action attempt. */
10198
- action_attempt_id: string;
10199
- status: 'pending';
10200
- result: null;
10201
- error: null;
10202
- action_type: 'SET_HEAT';
10203
- } | {
10204
- /** The ID of the action attempt. */
10205
- action_attempt_id: string;
10206
- status: 'success';
10207
- error: null;
10208
- action_type: 'SET_HEAT';
10209
- result: {};
10210
- } | {
10211
- /** The ID of the action attempt. */
10212
- action_attempt_id: string;
10213
- status: 'error';
10214
- result: null;
10215
- action_type: 'SET_HEAT';
10216
- error: {
10217
- type: string;
10218
- message: string;
10219
- };
10220
- } | {
10221
- /** The ID of the action attempt. */
10222
- action_attempt_id: string;
10223
- status: 'pending';
10224
- result: null;
10225
- error: null;
10226
- action_type: 'SET_HEAT_COOL';
10227
- } | {
10228
- /** The ID of the action attempt. */
10229
- action_attempt_id: string;
10230
- status: 'success';
10231
- error: null;
10232
- action_type: 'SET_HEAT_COOL';
10233
- result: {};
10234
- } | {
10235
- /** The ID of the action attempt. */
10236
- action_attempt_id: string;
10237
- status: 'error';
10238
- result: null;
10239
- action_type: 'SET_HEAT_COOL';
10240
- error: {
10241
- type: string;
10242
- message: string;
10243
- };
10244
9500
  } | {
10245
9501
  /** The ID of the action attempt. */
10246
9502
  action_attempt_id: string;
@@ -10265,30 +9521,6 @@ export interface Routes {
10265
9521
  type: string;
10266
9522
  message: string;
10267
9523
  };
10268
- } | {
10269
- /** The ID of the action attempt. */
10270
- action_attempt_id: string;
10271
- status: 'pending';
10272
- result: null;
10273
- error: null;
10274
- action_type: 'SET_THERMOSTAT_OFF';
10275
- } | {
10276
- /** The ID of the action attempt. */
10277
- action_attempt_id: string;
10278
- status: 'success';
10279
- error: null;
10280
- action_type: 'SET_THERMOSTAT_OFF';
10281
- result: {};
10282
- } | {
10283
- /** The ID of the action attempt. */
10284
- action_attempt_id: string;
10285
- status: 'error';
10286
- result: null;
10287
- action_type: 'SET_THERMOSTAT_OFF';
10288
- error: {
10289
- type: string;
10290
- message: string;
10291
- };
10292
9524
  } | {
10293
9525
  /** The ID of the action attempt. */
10294
9526
  action_attempt_id: string;
@@ -15101,78 +14333,6 @@ export interface Routes {
15101
14333
  type: string;
15102
14334
  message: string;
15103
14335
  };
15104
- } | {
15105
- /** The ID of the action attempt. */
15106
- action_attempt_id: string;
15107
- status: 'pending';
15108
- result: null;
15109
- error: null;
15110
- action_type: 'SET_COOL';
15111
- } | {
15112
- /** The ID of the action attempt. */
15113
- action_attempt_id: string;
15114
- status: 'success';
15115
- error: null;
15116
- action_type: 'SET_COOL';
15117
- result: {};
15118
- } | {
15119
- /** The ID of the action attempt. */
15120
- action_attempt_id: string;
15121
- status: 'error';
15122
- result: null;
15123
- action_type: 'SET_COOL';
15124
- error: {
15125
- type: string;
15126
- message: string;
15127
- };
15128
- } | {
15129
- /** The ID of the action attempt. */
15130
- action_attempt_id: string;
15131
- status: 'pending';
15132
- result: null;
15133
- error: null;
15134
- action_type: 'SET_HEAT';
15135
- } | {
15136
- /** The ID of the action attempt. */
15137
- action_attempt_id: string;
15138
- status: 'success';
15139
- error: null;
15140
- action_type: 'SET_HEAT';
15141
- result: {};
15142
- } | {
15143
- /** The ID of the action attempt. */
15144
- action_attempt_id: string;
15145
- status: 'error';
15146
- result: null;
15147
- action_type: 'SET_HEAT';
15148
- error: {
15149
- type: string;
15150
- message: string;
15151
- };
15152
- } | {
15153
- /** The ID of the action attempt. */
15154
- action_attempt_id: string;
15155
- status: 'pending';
15156
- result: null;
15157
- error: null;
15158
- action_type: 'SET_HEAT_COOL';
15159
- } | {
15160
- /** The ID of the action attempt. */
15161
- action_attempt_id: string;
15162
- status: 'success';
15163
- error: null;
15164
- action_type: 'SET_HEAT_COOL';
15165
- result: {};
15166
- } | {
15167
- /** The ID of the action attempt. */
15168
- action_attempt_id: string;
15169
- status: 'error';
15170
- result: null;
15171
- action_type: 'SET_HEAT_COOL';
15172
- error: {
15173
- type: string;
15174
- message: string;
15175
- };
15176
14336
  } | {
15177
14337
  /** The ID of the action attempt. */
15178
14338
  action_attempt_id: string;
@@ -15197,30 +14357,6 @@ export interface Routes {
15197
14357
  type: string;
15198
14358
  message: string;
15199
14359
  };
15200
- } | {
15201
- /** The ID of the action attempt. */
15202
- action_attempt_id: string;
15203
- status: 'pending';
15204
- result: null;
15205
- error: null;
15206
- action_type: 'SET_THERMOSTAT_OFF';
15207
- } | {
15208
- /** The ID of the action attempt. */
15209
- action_attempt_id: string;
15210
- status: 'success';
15211
- error: null;
15212
- action_type: 'SET_THERMOSTAT_OFF';
15213
- result: {};
15214
- } | {
15215
- /** The ID of the action attempt. */
15216
- action_attempt_id: string;
15217
- status: 'error';
15218
- result: null;
15219
- action_type: 'SET_THERMOSTAT_OFF';
15220
- error: {
15221
- type: string;
15222
- message: string;
15223
- };
15224
14360
  } | {
15225
14361
  /** The ID of the action attempt. */
15226
14362
  action_attempt_id: string;
@@ -15980,20 +15116,20 @@ export interface Routes {
15980
15116
  status: 'pending';
15981
15117
  result: null;
15982
15118
  error: null;
15983
- action_type: 'SET_COOL';
15119
+ action_type: 'SET_FAN_MODE';
15984
15120
  } | {
15985
15121
  /** The ID of the action attempt. */
15986
15122
  action_attempt_id: string;
15987
15123
  status: 'success';
15988
15124
  error: null;
15989
- action_type: 'SET_COOL';
15125
+ action_type: 'SET_FAN_MODE';
15990
15126
  result: {};
15991
15127
  } | {
15992
15128
  /** The ID of the action attempt. */
15993
15129
  action_attempt_id: string;
15994
15130
  status: 'error';
15995
15131
  result: null;
15996
- action_type: 'SET_COOL';
15132
+ action_type: 'SET_FAN_MODE';
15997
15133
  error: {
15998
15134
  type: string;
15999
15135
  message: string;
@@ -16004,103 +15140,7 @@ export interface Routes {
16004
15140
  status: 'pending';
16005
15141
  result: null;
16006
15142
  error: null;
16007
- action_type: 'SET_HEAT';
16008
- } | {
16009
- /** The ID of the action attempt. */
16010
- action_attempt_id: string;
16011
- status: 'success';
16012
- error: null;
16013
- action_type: 'SET_HEAT';
16014
- result: {};
16015
- } | {
16016
- /** The ID of the action attempt. */
16017
- action_attempt_id: string;
16018
- status: 'error';
16019
- result: null;
16020
- action_type: 'SET_HEAT';
16021
- error: {
16022
- type: string;
16023
- message: string;
16024
- };
16025
- } | {
16026
- /** The ID of the action attempt. */
16027
- action_attempt_id: string;
16028
- status: 'pending';
16029
- result: null;
16030
- error: null;
16031
- action_type: 'SET_HEAT_COOL';
16032
- } | {
16033
- /** The ID of the action attempt. */
16034
- action_attempt_id: string;
16035
- status: 'success';
16036
- error: null;
16037
- action_type: 'SET_HEAT_COOL';
16038
- result: {};
16039
- } | {
16040
- /** The ID of the action attempt. */
16041
- action_attempt_id: string;
16042
- status: 'error';
16043
- result: null;
16044
- action_type: 'SET_HEAT_COOL';
16045
- error: {
16046
- type: string;
16047
- message: string;
16048
- };
16049
- } | {
16050
- /** The ID of the action attempt. */
16051
- action_attempt_id: string;
16052
- status: 'pending';
16053
- result: null;
16054
- error: null;
16055
- action_type: 'SET_FAN_MODE';
16056
- } | {
16057
- /** The ID of the action attempt. */
16058
- action_attempt_id: string;
16059
- status: 'success';
16060
- error: null;
16061
- action_type: 'SET_FAN_MODE';
16062
- result: {};
16063
- } | {
16064
- /** The ID of the action attempt. */
16065
- action_attempt_id: string;
16066
- status: 'error';
16067
- result: null;
16068
- action_type: 'SET_FAN_MODE';
16069
- error: {
16070
- type: string;
16071
- message: string;
16072
- };
16073
- } | {
16074
- /** The ID of the action attempt. */
16075
- action_attempt_id: string;
16076
- status: 'pending';
16077
- result: null;
16078
- error: null;
16079
- action_type: 'SET_THERMOSTAT_OFF';
16080
- } | {
16081
- /** The ID of the action attempt. */
16082
- action_attempt_id: string;
16083
- status: 'success';
16084
- error: null;
16085
- action_type: 'SET_THERMOSTAT_OFF';
16086
- result: {};
16087
- } | {
16088
- /** The ID of the action attempt. */
16089
- action_attempt_id: string;
16090
- status: 'error';
16091
- result: null;
16092
- action_type: 'SET_THERMOSTAT_OFF';
16093
- error: {
16094
- type: string;
16095
- message: string;
16096
- };
16097
- } | {
16098
- /** The ID of the action attempt. */
16099
- action_attempt_id: string;
16100
- status: 'pending';
16101
- result: null;
16102
- error: null;
16103
- action_type: 'SET_HVAC_MODE';
15143
+ action_type: 'SET_HVAC_MODE';
16104
15144
  } | {
16105
15145
  /** The ID of the action attempt. */
16106
15146
  action_attempt_id: string;
@@ -17957,78 +16997,6 @@ export interface Routes {
17957
16997
  type: string;
17958
16998
  message: string;
17959
16999
  };
17960
- } | {
17961
- /** The ID of the action attempt. */
17962
- action_attempt_id: string;
17963
- status: 'pending';
17964
- result: null;
17965
- error: null;
17966
- action_type: 'SET_COOL';
17967
- } | {
17968
- /** The ID of the action attempt. */
17969
- action_attempt_id: string;
17970
- status: 'success';
17971
- error: null;
17972
- action_type: 'SET_COOL';
17973
- result: {};
17974
- } | {
17975
- /** The ID of the action attempt. */
17976
- action_attempt_id: string;
17977
- status: 'error';
17978
- result: null;
17979
- action_type: 'SET_COOL';
17980
- error: {
17981
- type: string;
17982
- message: string;
17983
- };
17984
- } | {
17985
- /** The ID of the action attempt. */
17986
- action_attempt_id: string;
17987
- status: 'pending';
17988
- result: null;
17989
- error: null;
17990
- action_type: 'SET_HEAT';
17991
- } | {
17992
- /** The ID of the action attempt. */
17993
- action_attempt_id: string;
17994
- status: 'success';
17995
- error: null;
17996
- action_type: 'SET_HEAT';
17997
- result: {};
17998
- } | {
17999
- /** The ID of the action attempt. */
18000
- action_attempt_id: string;
18001
- status: 'error';
18002
- result: null;
18003
- action_type: 'SET_HEAT';
18004
- error: {
18005
- type: string;
18006
- message: string;
18007
- };
18008
- } | {
18009
- /** The ID of the action attempt. */
18010
- action_attempt_id: string;
18011
- status: 'pending';
18012
- result: null;
18013
- error: null;
18014
- action_type: 'SET_HEAT_COOL';
18015
- } | {
18016
- /** The ID of the action attempt. */
18017
- action_attempt_id: string;
18018
- status: 'success';
18019
- error: null;
18020
- action_type: 'SET_HEAT_COOL';
18021
- result: {};
18022
- } | {
18023
- /** The ID of the action attempt. */
18024
- action_attempt_id: string;
18025
- status: 'error';
18026
- result: null;
18027
- action_type: 'SET_HEAT_COOL';
18028
- error: {
18029
- type: string;
18030
- message: string;
18031
- };
18032
17000
  } | {
18033
17001
  /** The ID of the action attempt. */
18034
17002
  action_attempt_id: string;
@@ -18053,30 +17021,6 @@ export interface Routes {
18053
17021
  type: string;
18054
17022
  message: string;
18055
17023
  };
18056
- } | {
18057
- /** The ID of the action attempt. */
18058
- action_attempt_id: string;
18059
- status: 'pending';
18060
- result: null;
18061
- error: null;
18062
- action_type: 'SET_THERMOSTAT_OFF';
18063
- } | {
18064
- /** The ID of the action attempt. */
18065
- action_attempt_id: string;
18066
- status: 'success';
18067
- error: null;
18068
- action_type: 'SET_THERMOSTAT_OFF';
18069
- result: {};
18070
- } | {
18071
- /** The ID of the action attempt. */
18072
- action_attempt_id: string;
18073
- status: 'error';
18074
- result: null;
18075
- action_type: 'SET_THERMOSTAT_OFF';
18076
- error: {
18077
- type: string;
18078
- message: string;
18079
- };
18080
17024
  } | {
18081
17025
  /** The ID of the action attempt. */
18082
17026
  action_attempt_id: string;
@@ -18840,78 +17784,6 @@ export interface Routes {
18840
17784
  type: string;
18841
17785
  message: string;
18842
17786
  };
18843
- } | {
18844
- /** The ID of the action attempt. */
18845
- action_attempt_id: string;
18846
- status: 'pending';
18847
- result: null;
18848
- error: null;
18849
- action_type: 'SET_COOL';
18850
- } | {
18851
- /** The ID of the action attempt. */
18852
- action_attempt_id: string;
18853
- status: 'success';
18854
- error: null;
18855
- action_type: 'SET_COOL';
18856
- result: {};
18857
- } | {
18858
- /** The ID of the action attempt. */
18859
- action_attempt_id: string;
18860
- status: 'error';
18861
- result: null;
18862
- action_type: 'SET_COOL';
18863
- error: {
18864
- type: string;
18865
- message: string;
18866
- };
18867
- } | {
18868
- /** The ID of the action attempt. */
18869
- action_attempt_id: string;
18870
- status: 'pending';
18871
- result: null;
18872
- error: null;
18873
- action_type: 'SET_HEAT';
18874
- } | {
18875
- /** The ID of the action attempt. */
18876
- action_attempt_id: string;
18877
- status: 'success';
18878
- error: null;
18879
- action_type: 'SET_HEAT';
18880
- result: {};
18881
- } | {
18882
- /** The ID of the action attempt. */
18883
- action_attempt_id: string;
18884
- status: 'error';
18885
- result: null;
18886
- action_type: 'SET_HEAT';
18887
- error: {
18888
- type: string;
18889
- message: string;
18890
- };
18891
- } | {
18892
- /** The ID of the action attempt. */
18893
- action_attempt_id: string;
18894
- status: 'pending';
18895
- result: null;
18896
- error: null;
18897
- action_type: 'SET_HEAT_COOL';
18898
- } | {
18899
- /** The ID of the action attempt. */
18900
- action_attempt_id: string;
18901
- status: 'success';
18902
- error: null;
18903
- action_type: 'SET_HEAT_COOL';
18904
- result: {};
18905
- } | {
18906
- /** The ID of the action attempt. */
18907
- action_attempt_id: string;
18908
- status: 'error';
18909
- result: null;
18910
- action_type: 'SET_HEAT_COOL';
18911
- error: {
18912
- type: string;
18913
- message: string;
18914
- };
18915
17787
  } | {
18916
17788
  /** The ID of the action attempt. */
18917
17789
  action_attempt_id: string;
@@ -18936,30 +17808,6 @@ export interface Routes {
18936
17808
  type: string;
18937
17809
  message: string;
18938
17810
  };
18939
- } | {
18940
- /** The ID of the action attempt. */
18941
- action_attempt_id: string;
18942
- status: 'pending';
18943
- result: null;
18944
- error: null;
18945
- action_type: 'SET_THERMOSTAT_OFF';
18946
- } | {
18947
- /** The ID of the action attempt. */
18948
- action_attempt_id: string;
18949
- status: 'success';
18950
- error: null;
18951
- action_type: 'SET_THERMOSTAT_OFF';
18952
- result: {};
18953
- } | {
18954
- /** The ID of the action attempt. */
18955
- action_attempt_id: string;
18956
- status: 'error';
18957
- result: null;
18958
- action_type: 'SET_THERMOSTAT_OFF';
18959
- error: {
18960
- type: string;
18961
- message: string;
18962
- };
18963
17811
  } | {
18964
17812
  /** The ID of the action attempt. */
18965
17813
  action_attempt_id: string;
@@ -19762,78 +18610,6 @@ export interface Routes {
19762
18610
  type: string;
19763
18611
  message: string;
19764
18612
  };
19765
- } | {
19766
- /** The ID of the action attempt. */
19767
- action_attempt_id: string;
19768
- status: 'pending';
19769
- result: null;
19770
- error: null;
19771
- action_type: 'SET_COOL';
19772
- } | {
19773
- /** The ID of the action attempt. */
19774
- action_attempt_id: string;
19775
- status: 'success';
19776
- error: null;
19777
- action_type: 'SET_COOL';
19778
- result: {};
19779
- } | {
19780
- /** The ID of the action attempt. */
19781
- action_attempt_id: string;
19782
- status: 'error';
19783
- result: null;
19784
- action_type: 'SET_COOL';
19785
- error: {
19786
- type: string;
19787
- message: string;
19788
- };
19789
- } | {
19790
- /** The ID of the action attempt. */
19791
- action_attempt_id: string;
19792
- status: 'pending';
19793
- result: null;
19794
- error: null;
19795
- action_type: 'SET_HEAT';
19796
- } | {
19797
- /** The ID of the action attempt. */
19798
- action_attempt_id: string;
19799
- status: 'success';
19800
- error: null;
19801
- action_type: 'SET_HEAT';
19802
- result: {};
19803
- } | {
19804
- /** The ID of the action attempt. */
19805
- action_attempt_id: string;
19806
- status: 'error';
19807
- result: null;
19808
- action_type: 'SET_HEAT';
19809
- error: {
19810
- type: string;
19811
- message: string;
19812
- };
19813
- } | {
19814
- /** The ID of the action attempt. */
19815
- action_attempt_id: string;
19816
- status: 'pending';
19817
- result: null;
19818
- error: null;
19819
- action_type: 'SET_HEAT_COOL';
19820
- } | {
19821
- /** The ID of the action attempt. */
19822
- action_attempt_id: string;
19823
- status: 'success';
19824
- error: null;
19825
- action_type: 'SET_HEAT_COOL';
19826
- result: {};
19827
- } | {
19828
- /** The ID of the action attempt. */
19829
- action_attempt_id: string;
19830
- status: 'error';
19831
- result: null;
19832
- action_type: 'SET_HEAT_COOL';
19833
- error: {
19834
- type: string;
19835
- message: string;
19836
- };
19837
18613
  } | {
19838
18614
  /** The ID of the action attempt. */
19839
18615
  action_attempt_id: string;
@@ -19858,30 +18634,6 @@ export interface Routes {
19858
18634
  type: string;
19859
18635
  message: string;
19860
18636
  };
19861
- } | {
19862
- /** The ID of the action attempt. */
19863
- action_attempt_id: string;
19864
- status: 'pending';
19865
- result: null;
19866
- error: null;
19867
- action_type: 'SET_THERMOSTAT_OFF';
19868
- } | {
19869
- /** The ID of the action attempt. */
19870
- action_attempt_id: string;
19871
- status: 'success';
19872
- error: null;
19873
- action_type: 'SET_THERMOSTAT_OFF';
19874
- result: {};
19875
- } | {
19876
- /** The ID of the action attempt. */
19877
- action_attempt_id: string;
19878
- status: 'error';
19879
- result: null;
19880
- action_type: 'SET_THERMOSTAT_OFF';
19881
- error: {
19882
- type: string;
19883
- message: string;
19884
- };
19885
18637
  } | {
19886
18638
  /** The ID of the action attempt. */
19887
18639
  action_attempt_id: string;
@@ -20819,78 +19571,6 @@ export interface Routes {
20819
19571
  type: string;
20820
19572
  message: string;
20821
19573
  };
20822
- } | {
20823
- /** The ID of the action attempt. */
20824
- action_attempt_id: string;
20825
- status: 'pending';
20826
- result: null;
20827
- error: null;
20828
- action_type: 'SET_COOL';
20829
- } | {
20830
- /** The ID of the action attempt. */
20831
- action_attempt_id: string;
20832
- status: 'success';
20833
- error: null;
20834
- action_type: 'SET_COOL';
20835
- result: {};
20836
- } | {
20837
- /** The ID of the action attempt. */
20838
- action_attempt_id: string;
20839
- status: 'error';
20840
- result: null;
20841
- action_type: 'SET_COOL';
20842
- error: {
20843
- type: string;
20844
- message: string;
20845
- };
20846
- } | {
20847
- /** The ID of the action attempt. */
20848
- action_attempt_id: string;
20849
- status: 'pending';
20850
- result: null;
20851
- error: null;
20852
- action_type: 'SET_HEAT';
20853
- } | {
20854
- /** The ID of the action attempt. */
20855
- action_attempt_id: string;
20856
- status: 'success';
20857
- error: null;
20858
- action_type: 'SET_HEAT';
20859
- result: {};
20860
- } | {
20861
- /** The ID of the action attempt. */
20862
- action_attempt_id: string;
20863
- status: 'error';
20864
- result: null;
20865
- action_type: 'SET_HEAT';
20866
- error: {
20867
- type: string;
20868
- message: string;
20869
- };
20870
- } | {
20871
- /** The ID of the action attempt. */
20872
- action_attempt_id: string;
20873
- status: 'pending';
20874
- result: null;
20875
- error: null;
20876
- action_type: 'SET_HEAT_COOL';
20877
- } | {
20878
- /** The ID of the action attempt. */
20879
- action_attempt_id: string;
20880
- status: 'success';
20881
- error: null;
20882
- action_type: 'SET_HEAT_COOL';
20883
- result: {};
20884
- } | {
20885
- /** The ID of the action attempt. */
20886
- action_attempt_id: string;
20887
- status: 'error';
20888
- result: null;
20889
- action_type: 'SET_HEAT_COOL';
20890
- error: {
20891
- type: string;
20892
- message: string;
20893
- };
20894
19574
  } | {
20895
19575
  /** The ID of the action attempt. */
20896
19576
  action_attempt_id: string;
@@ -20915,30 +19595,6 @@ export interface Routes {
20915
19595
  type: string;
20916
19596
  message: string;
20917
19597
  };
20918
- } | {
20919
- /** The ID of the action attempt. */
20920
- action_attempt_id: string;
20921
- status: 'pending';
20922
- result: null;
20923
- error: null;
20924
- action_type: 'SET_THERMOSTAT_OFF';
20925
- } | {
20926
- /** The ID of the action attempt. */
20927
- action_attempt_id: string;
20928
- status: 'success';
20929
- error: null;
20930
- action_type: 'SET_THERMOSTAT_OFF';
20931
- result: {};
20932
- } | {
20933
- /** The ID of the action attempt. */
20934
- action_attempt_id: string;
20935
- status: 'error';
20936
- result: null;
20937
- action_type: 'SET_THERMOSTAT_OFF';
20938
- error: {
20939
- type: string;
20940
- message: string;
20941
- };
20942
19598
  } | {
20943
19599
  /** The ID of the action attempt. */
20944
19600
  action_attempt_id: string;
@@ -21698,78 +20354,6 @@ export interface Routes {
21698
20354
  type: string;
21699
20355
  message: string;
21700
20356
  };
21701
- } | {
21702
- /** The ID of the action attempt. */
21703
- action_attempt_id: string;
21704
- status: 'pending';
21705
- result: null;
21706
- error: null;
21707
- action_type: 'SET_COOL';
21708
- } | {
21709
- /** The ID of the action attempt. */
21710
- action_attempt_id: string;
21711
- status: 'success';
21712
- error: null;
21713
- action_type: 'SET_COOL';
21714
- result: {};
21715
- } | {
21716
- /** The ID of the action attempt. */
21717
- action_attempt_id: string;
21718
- status: 'error';
21719
- result: null;
21720
- action_type: 'SET_COOL';
21721
- error: {
21722
- type: string;
21723
- message: string;
21724
- };
21725
- } | {
21726
- /** The ID of the action attempt. */
21727
- action_attempt_id: string;
21728
- status: 'pending';
21729
- result: null;
21730
- error: null;
21731
- action_type: 'SET_HEAT';
21732
- } | {
21733
- /** The ID of the action attempt. */
21734
- action_attempt_id: string;
21735
- status: 'success';
21736
- error: null;
21737
- action_type: 'SET_HEAT';
21738
- result: {};
21739
- } | {
21740
- /** The ID of the action attempt. */
21741
- action_attempt_id: string;
21742
- status: 'error';
21743
- result: null;
21744
- action_type: 'SET_HEAT';
21745
- error: {
21746
- type: string;
21747
- message: string;
21748
- };
21749
- } | {
21750
- /** The ID of the action attempt. */
21751
- action_attempt_id: string;
21752
- status: 'pending';
21753
- result: null;
21754
- error: null;
21755
- action_type: 'SET_HEAT_COOL';
21756
- } | {
21757
- /** The ID of the action attempt. */
21758
- action_attempt_id: string;
21759
- status: 'success';
21760
- error: null;
21761
- action_type: 'SET_HEAT_COOL';
21762
- result: {};
21763
- } | {
21764
- /** The ID of the action attempt. */
21765
- action_attempt_id: string;
21766
- status: 'error';
21767
- result: null;
21768
- action_type: 'SET_HEAT_COOL';
21769
- error: {
21770
- type: string;
21771
- message: string;
21772
- };
21773
20357
  } | {
21774
20358
  /** The ID of the action attempt. */
21775
20359
  action_attempt_id: string;
@@ -21794,30 +20378,6 @@ export interface Routes {
21794
20378
  type: string;
21795
20379
  message: string;
21796
20380
  };
21797
- } | {
21798
- /** The ID of the action attempt. */
21799
- action_attempt_id: string;
21800
- status: 'pending';
21801
- result: null;
21802
- error: null;
21803
- action_type: 'SET_THERMOSTAT_OFF';
21804
- } | {
21805
- /** The ID of the action attempt. */
21806
- action_attempt_id: string;
21807
- status: 'success';
21808
- error: null;
21809
- action_type: 'SET_THERMOSTAT_OFF';
21810
- result: {};
21811
- } | {
21812
- /** The ID of the action attempt. */
21813
- action_attempt_id: string;
21814
- status: 'error';
21815
- result: null;
21816
- action_type: 'SET_THERMOSTAT_OFF';
21817
- error: {
21818
- type: string;
21819
- message: string;
21820
- };
21821
20381
  } | {
21822
20382
  /** The ID of the action attempt. */
21823
20383
  action_attempt_id: string;
@@ -22052,6 +20612,8 @@ export interface Routes {
22052
20612
  jsonBody: {
22053
20613
  /** ID of the desired thermostat device. */
22054
20614
  device_id: string;
20615
+ /** Indicates whether a person at the thermostat or using the API can change the thermostat's settings.
20616
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
22055
20617
  manual_override_allowed?: boolean;
22056
20618
  /** Unique key to identify the climate preset. */
22057
20619
  climate_preset_key: string;
@@ -23152,78 +21714,6 @@ export interface Routes {
23152
21714
  type: string;
23153
21715
  message: string;
23154
21716
  };
23155
- } | {
23156
- /** The ID of the action attempt. */
23157
- action_attempt_id: string;
23158
- status: 'pending';
23159
- result: null;
23160
- error: null;
23161
- action_type: 'SET_COOL';
23162
- } | {
23163
- /** The ID of the action attempt. */
23164
- action_attempt_id: string;
23165
- status: 'success';
23166
- error: null;
23167
- action_type: 'SET_COOL';
23168
- result: {};
23169
- } | {
23170
- /** The ID of the action attempt. */
23171
- action_attempt_id: string;
23172
- status: 'error';
23173
- result: null;
23174
- action_type: 'SET_COOL';
23175
- error: {
23176
- type: string;
23177
- message: string;
23178
- };
23179
- } | {
23180
- /** The ID of the action attempt. */
23181
- action_attempt_id: string;
23182
- status: 'pending';
23183
- result: null;
23184
- error: null;
23185
- action_type: 'SET_HEAT';
23186
- } | {
23187
- /** The ID of the action attempt. */
23188
- action_attempt_id: string;
23189
- status: 'success';
23190
- error: null;
23191
- action_type: 'SET_HEAT';
23192
- result: {};
23193
- } | {
23194
- /** The ID of the action attempt. */
23195
- action_attempt_id: string;
23196
- status: 'error';
23197
- result: null;
23198
- action_type: 'SET_HEAT';
23199
- error: {
23200
- type: string;
23201
- message: string;
23202
- };
23203
- } | {
23204
- /** The ID of the action attempt. */
23205
- action_attempt_id: string;
23206
- status: 'pending';
23207
- result: null;
23208
- error: null;
23209
- action_type: 'SET_HEAT_COOL';
23210
- } | {
23211
- /** The ID of the action attempt. */
23212
- action_attempt_id: string;
23213
- status: 'success';
23214
- error: null;
23215
- action_type: 'SET_HEAT_COOL';
23216
- result: {};
23217
- } | {
23218
- /** The ID of the action attempt. */
23219
- action_attempt_id: string;
23220
- status: 'error';
23221
- result: null;
23222
- action_type: 'SET_HEAT_COOL';
23223
- error: {
23224
- type: string;
23225
- message: string;
23226
- };
23227
21717
  } | {
23228
21718
  /** The ID of the action attempt. */
23229
21719
  action_attempt_id: string;
@@ -23248,30 +21738,6 @@ export interface Routes {
23248
21738
  type: string;
23249
21739
  message: string;
23250
21740
  };
23251
- } | {
23252
- /** The ID of the action attempt. */
23253
- action_attempt_id: string;
23254
- status: 'pending';
23255
- result: null;
23256
- error: null;
23257
- action_type: 'SET_THERMOSTAT_OFF';
23258
- } | {
23259
- /** The ID of the action attempt. */
23260
- action_attempt_id: string;
23261
- status: 'success';
23262
- error: null;
23263
- action_type: 'SET_THERMOSTAT_OFF';
23264
- result: {};
23265
- } | {
23266
- /** The ID of the action attempt. */
23267
- action_attempt_id: string;
23268
- status: 'error';
23269
- result: null;
23270
- action_type: 'SET_THERMOSTAT_OFF';
23271
- error: {
23272
- type: string;
23273
- message: string;
23274
- };
23275
21741
  } | {
23276
21742
  /** The ID of the action attempt. */
23277
21743
  action_attempt_id: string;
@@ -24035,78 +22501,6 @@ export interface Routes {
24035
22501
  type: string;
24036
22502
  message: string;
24037
22503
  };
24038
- } | {
24039
- /** The ID of the action attempt. */
24040
- action_attempt_id: string;
24041
- status: 'pending';
24042
- result: null;
24043
- error: null;
24044
- action_type: 'SET_COOL';
24045
- } | {
24046
- /** The ID of the action attempt. */
24047
- action_attempt_id: string;
24048
- status: 'success';
24049
- error: null;
24050
- action_type: 'SET_COOL';
24051
- result: {};
24052
- } | {
24053
- /** The ID of the action attempt. */
24054
- action_attempt_id: string;
24055
- status: 'error';
24056
- result: null;
24057
- action_type: 'SET_COOL';
24058
- error: {
24059
- type: string;
24060
- message: string;
24061
- };
24062
- } | {
24063
- /** The ID of the action attempt. */
24064
- action_attempt_id: string;
24065
- status: 'pending';
24066
- result: null;
24067
- error: null;
24068
- action_type: 'SET_HEAT';
24069
- } | {
24070
- /** The ID of the action attempt. */
24071
- action_attempt_id: string;
24072
- status: 'success';
24073
- error: null;
24074
- action_type: 'SET_HEAT';
24075
- result: {};
24076
- } | {
24077
- /** The ID of the action attempt. */
24078
- action_attempt_id: string;
24079
- status: 'error';
24080
- result: null;
24081
- action_type: 'SET_HEAT';
24082
- error: {
24083
- type: string;
24084
- message: string;
24085
- };
24086
- } | {
24087
- /** The ID of the action attempt. */
24088
- action_attempt_id: string;
24089
- status: 'pending';
24090
- result: null;
24091
- error: null;
24092
- action_type: 'SET_HEAT_COOL';
24093
- } | {
24094
- /** The ID of the action attempt. */
24095
- action_attempt_id: string;
24096
- status: 'success';
24097
- error: null;
24098
- action_type: 'SET_HEAT_COOL';
24099
- result: {};
24100
- } | {
24101
- /** The ID of the action attempt. */
24102
- action_attempt_id: string;
24103
- status: 'error';
24104
- result: null;
24105
- action_type: 'SET_HEAT_COOL';
24106
- error: {
24107
- type: string;
24108
- message: string;
24109
- };
24110
22504
  } | {
24111
22505
  /** The ID of the action attempt. */
24112
22506
  action_attempt_id: string;
@@ -24131,30 +22525,6 @@ export interface Routes {
24131
22525
  type: string;
24132
22526
  message: string;
24133
22527
  };
24134
- } | {
24135
- /** The ID of the action attempt. */
24136
- action_attempt_id: string;
24137
- status: 'pending';
24138
- result: null;
24139
- error: null;
24140
- action_type: 'SET_THERMOSTAT_OFF';
24141
- } | {
24142
- /** The ID of the action attempt. */
24143
- action_attempt_id: string;
24144
- status: 'success';
24145
- error: null;
24146
- action_type: 'SET_THERMOSTAT_OFF';
24147
- result: {};
24148
- } | {
24149
- /** The ID of the action attempt. */
24150
- action_attempt_id: string;
24151
- status: 'error';
24152
- result: null;
24153
- action_type: 'SET_THERMOSTAT_OFF';
24154
- error: {
24155
- type: string;
24156
- message: string;
24157
- };
24158
22528
  } | {
24159
22529
  /** The ID of the action attempt. */
24160
22530
  action_attempt_id: string;
@@ -25976,103 +24346,7 @@ export interface Routes {
25976
24346
  action_attempt_id: string;
25977
24347
  status: 'error';
25978
24348
  result: null;
25979
- action_type: 'RESET_SANDBOX_WORKSPACE';
25980
- error: {
25981
- type: string;
25982
- message: string;
25983
- };
25984
- } | {
25985
- /** The ID of the action attempt. */
25986
- action_attempt_id: string;
25987
- status: 'pending';
25988
- result: null;
25989
- error: null;
25990
- action_type: 'SET_COOL';
25991
- } | {
25992
- /** The ID of the action attempt. */
25993
- action_attempt_id: string;
25994
- status: 'success';
25995
- error: null;
25996
- action_type: 'SET_COOL';
25997
- result: {};
25998
- } | {
25999
- /** The ID of the action attempt. */
26000
- action_attempt_id: string;
26001
- status: 'error';
26002
- result: null;
26003
- action_type: 'SET_COOL';
26004
- error: {
26005
- type: string;
26006
- message: string;
26007
- };
26008
- } | {
26009
- /** The ID of the action attempt. */
26010
- action_attempt_id: string;
26011
- status: 'pending';
26012
- result: null;
26013
- error: null;
26014
- action_type: 'SET_HEAT';
26015
- } | {
26016
- /** The ID of the action attempt. */
26017
- action_attempt_id: string;
26018
- status: 'success';
26019
- error: null;
26020
- action_type: 'SET_HEAT';
26021
- result: {};
26022
- } | {
26023
- /** The ID of the action attempt. */
26024
- action_attempt_id: string;
26025
- status: 'error';
26026
- result: null;
26027
- action_type: 'SET_HEAT';
26028
- error: {
26029
- type: string;
26030
- message: string;
26031
- };
26032
- } | {
26033
- /** The ID of the action attempt. */
26034
- action_attempt_id: string;
26035
- status: 'pending';
26036
- result: null;
26037
- error: null;
26038
- action_type: 'SET_HEAT_COOL';
26039
- } | {
26040
- /** The ID of the action attempt. */
26041
- action_attempt_id: string;
26042
- status: 'success';
26043
- error: null;
26044
- action_type: 'SET_HEAT_COOL';
26045
- result: {};
26046
- } | {
26047
- /** The ID of the action attempt. */
26048
- action_attempt_id: string;
26049
- status: 'error';
26050
- result: null;
26051
- action_type: 'SET_HEAT_COOL';
26052
- error: {
26053
- type: string;
26054
- message: string;
26055
- };
26056
- } | {
26057
- /** The ID of the action attempt. */
26058
- action_attempt_id: string;
26059
- status: 'pending';
26060
- result: null;
26061
- error: null;
26062
- action_type: 'SET_FAN_MODE';
26063
- } | {
26064
- /** The ID of the action attempt. */
26065
- action_attempt_id: string;
26066
- status: 'success';
26067
- error: null;
26068
- action_type: 'SET_FAN_MODE';
26069
- result: {};
26070
- } | {
26071
- /** The ID of the action attempt. */
26072
- action_attempt_id: string;
26073
- status: 'error';
26074
- result: null;
26075
- action_type: 'SET_FAN_MODE';
24349
+ action_type: 'RESET_SANDBOX_WORKSPACE';
26076
24350
  error: {
26077
24351
  type: string;
26078
24352
  message: string;
@@ -26083,20 +24357,20 @@ export interface Routes {
26083
24357
  status: 'pending';
26084
24358
  result: null;
26085
24359
  error: null;
26086
- action_type: 'SET_THERMOSTAT_OFF';
24360
+ action_type: 'SET_FAN_MODE';
26087
24361
  } | {
26088
24362
  /** The ID of the action attempt. */
26089
24363
  action_attempt_id: string;
26090
24364
  status: 'success';
26091
24365
  error: null;
26092
- action_type: 'SET_THERMOSTAT_OFF';
24366
+ action_type: 'SET_FAN_MODE';
26093
24367
  result: {};
26094
24368
  } | {
26095
24369
  /** The ID of the action attempt. */
26096
24370
  action_attempt_id: string;
26097
24371
  status: 'error';
26098
24372
  result: null;
26099
- action_type: 'SET_THERMOSTAT_OFF';
24373
+ action_type: 'SET_FAN_MODE';
26100
24374
  error: {
26101
24375
  type: string;
26102
24376
  message: string;
@@ -26339,12 +24613,13 @@ export interface Routes {
26339
24613
  name?: string | undefined;
26340
24614
  /** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the thermostat schedule. */
26341
24615
  climate_preset_key: string;
26342
- /** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
24616
+ /** Number of minutes for which a person at the thermostat or using the API can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
26343
24617
  max_override_period_minutes?: number;
26344
24618
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
26345
24619
  starts_at: string;
26346
24620
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
26347
24621
  ends_at: string;
24622
+ /** Indicates whether a person at the thermostat or using the API can change the thermostat's settings while the schedule is active. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
26348
24623
  is_override_allowed?: boolean | undefined;
26349
24624
  };
26350
24625
  commonParams: {};
@@ -26471,12 +24746,13 @@ export interface Routes {
26471
24746
  name?: string | undefined;
26472
24747
  /** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the thermostat schedule. */
26473
24748
  climate_preset_key?: string | undefined;
26474
- /** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
24749
+ /** Number of minutes for which a person at the thermostat or using the API can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
26475
24750
  max_override_period_minutes?: number | undefined;
26476
24751
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
26477
24752
  starts_at?: string | undefined;
26478
24753
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
26479
24754
  ends_at?: string | undefined;
24755
+ /** Indicates whether a person at the thermostat or using the API can change the thermostat's settings while the schedule is active. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
26480
24756
  is_override_allowed?: boolean | undefined;
26481
24757
  };
26482
24758
  commonParams: {};
@@ -27029,78 +25305,6 @@ export interface Routes {
27029
25305
  type: string;
27030
25306
  message: string;
27031
25307
  };
27032
- } | {
27033
- /** The ID of the action attempt. */
27034
- action_attempt_id: string;
27035
- status: 'pending';
27036
- result: null;
27037
- error: null;
27038
- action_type: 'SET_COOL';
27039
- } | {
27040
- /** The ID of the action attempt. */
27041
- action_attempt_id: string;
27042
- status: 'success';
27043
- error: null;
27044
- action_type: 'SET_COOL';
27045
- result: {};
27046
- } | {
27047
- /** The ID of the action attempt. */
27048
- action_attempt_id: string;
27049
- status: 'error';
27050
- result: null;
27051
- action_type: 'SET_COOL';
27052
- error: {
27053
- type: string;
27054
- message: string;
27055
- };
27056
- } | {
27057
- /** The ID of the action attempt. */
27058
- action_attempt_id: string;
27059
- status: 'pending';
27060
- result: null;
27061
- error: null;
27062
- action_type: 'SET_HEAT';
27063
- } | {
27064
- /** The ID of the action attempt. */
27065
- action_attempt_id: string;
27066
- status: 'success';
27067
- error: null;
27068
- action_type: 'SET_HEAT';
27069
- result: {};
27070
- } | {
27071
- /** The ID of the action attempt. */
27072
- action_attempt_id: string;
27073
- status: 'error';
27074
- result: null;
27075
- action_type: 'SET_HEAT';
27076
- error: {
27077
- type: string;
27078
- message: string;
27079
- };
27080
- } | {
27081
- /** The ID of the action attempt. */
27082
- action_attempt_id: string;
27083
- status: 'pending';
27084
- result: null;
27085
- error: null;
27086
- action_type: 'SET_HEAT_COOL';
27087
- } | {
27088
- /** The ID of the action attempt. */
27089
- action_attempt_id: string;
27090
- status: 'success';
27091
- error: null;
27092
- action_type: 'SET_HEAT_COOL';
27093
- result: {};
27094
- } | {
27095
- /** The ID of the action attempt. */
27096
- action_attempt_id: string;
27097
- status: 'error';
27098
- result: null;
27099
- action_type: 'SET_HEAT_COOL';
27100
- error: {
27101
- type: string;
27102
- message: string;
27103
- };
27104
25308
  } | {
27105
25309
  /** The ID of the action attempt. */
27106
25310
  action_attempt_id: string;
@@ -27125,30 +25329,6 @@ export interface Routes {
27125
25329
  type: string;
27126
25330
  message: string;
27127
25331
  };
27128
- } | {
27129
- /** The ID of the action attempt. */
27130
- action_attempt_id: string;
27131
- status: 'pending';
27132
- result: null;
27133
- error: null;
27134
- action_type: 'SET_THERMOSTAT_OFF';
27135
- } | {
27136
- /** The ID of the action attempt. */
27137
- action_attempt_id: string;
27138
- status: 'success';
27139
- error: null;
27140
- action_type: 'SET_THERMOSTAT_OFF';
27141
- result: {};
27142
- } | {
27143
- /** The ID of the action attempt. */
27144
- action_attempt_id: string;
27145
- status: 'error';
27146
- result: null;
27147
- action_type: 'SET_THERMOSTAT_OFF';
27148
- error: {
27149
- type: string;
27150
- message: string;
27151
- };
27152
25332
  } | {
27153
25333
  /** The ID of the action attempt. */
27154
25334
  action_attempt_id: string;
@@ -27931,78 +26111,6 @@ export interface Routes {
27931
26111
  type: string;
27932
26112
  message: string;
27933
26113
  };
27934
- } | {
27935
- /** The ID of the action attempt. */
27936
- action_attempt_id: string;
27937
- status: 'pending';
27938
- result: null;
27939
- error: null;
27940
- action_type: 'SET_COOL';
27941
- } | {
27942
- /** The ID of the action attempt. */
27943
- action_attempt_id: string;
27944
- status: 'success';
27945
- error: null;
27946
- action_type: 'SET_COOL';
27947
- result: {};
27948
- } | {
27949
- /** The ID of the action attempt. */
27950
- action_attempt_id: string;
27951
- status: 'error';
27952
- result: null;
27953
- action_type: 'SET_COOL';
27954
- error: {
27955
- type: string;
27956
- message: string;
27957
- };
27958
- } | {
27959
- /** The ID of the action attempt. */
27960
- action_attempt_id: string;
27961
- status: 'pending';
27962
- result: null;
27963
- error: null;
27964
- action_type: 'SET_HEAT';
27965
- } | {
27966
- /** The ID of the action attempt. */
27967
- action_attempt_id: string;
27968
- status: 'success';
27969
- error: null;
27970
- action_type: 'SET_HEAT';
27971
- result: {};
27972
- } | {
27973
- /** The ID of the action attempt. */
27974
- action_attempt_id: string;
27975
- status: 'error';
27976
- result: null;
27977
- action_type: 'SET_HEAT';
27978
- error: {
27979
- type: string;
27980
- message: string;
27981
- };
27982
- } | {
27983
- /** The ID of the action attempt. */
27984
- action_attempt_id: string;
27985
- status: 'pending';
27986
- result: null;
27987
- error: null;
27988
- action_type: 'SET_HEAT_COOL';
27989
- } | {
27990
- /** The ID of the action attempt. */
27991
- action_attempt_id: string;
27992
- status: 'success';
27993
- error: null;
27994
- action_type: 'SET_HEAT_COOL';
27995
- result: {};
27996
- } | {
27997
- /** The ID of the action attempt. */
27998
- action_attempt_id: string;
27999
- status: 'error';
28000
- result: null;
28001
- action_type: 'SET_HEAT_COOL';
28002
- error: {
28003
- type: string;
28004
- message: string;
28005
- };
28006
26114
  } | {
28007
26115
  /** The ID of the action attempt. */
28008
26116
  action_attempt_id: string;
@@ -28027,30 +26135,6 @@ export interface Routes {
28027
26135
  type: string;
28028
26136
  message: string;
28029
26137
  };
28030
- } | {
28031
- /** The ID of the action attempt. */
28032
- action_attempt_id: string;
28033
- status: 'pending';
28034
- result: null;
28035
- error: null;
28036
- action_type: 'SET_THERMOSTAT_OFF';
28037
- } | {
28038
- /** The ID of the action attempt. */
28039
- action_attempt_id: string;
28040
- status: 'success';
28041
- error: null;
28042
- action_type: 'SET_THERMOSTAT_OFF';
28043
- result: {};
28044
- } | {
28045
- /** The ID of the action attempt. */
28046
- action_attempt_id: string;
28047
- status: 'error';
28048
- result: null;
28049
- action_type: 'SET_THERMOSTAT_OFF';
28050
- error: {
28051
- type: string;
28052
- message: string;
28053
- };
28054
26138
  } | {
28055
26139
  /** The ID of the action attempt. */
28056
26140
  action_attempt_id: string;
@@ -30545,78 +28629,6 @@ export interface Routes {
30545
28629
  type: string;
30546
28630
  message: string;
30547
28631
  };
30548
- } | {
30549
- /** The ID of the action attempt. */
30550
- action_attempt_id: string;
30551
- status: 'pending';
30552
- result: null;
30553
- error: null;
30554
- action_type: 'SET_COOL';
30555
- } | {
30556
- /** The ID of the action attempt. */
30557
- action_attempt_id: string;
30558
- status: 'success';
30559
- error: null;
30560
- action_type: 'SET_COOL';
30561
- result: {};
30562
- } | {
30563
- /** The ID of the action attempt. */
30564
- action_attempt_id: string;
30565
- status: 'error';
30566
- result: null;
30567
- action_type: 'SET_COOL';
30568
- error: {
30569
- type: string;
30570
- message: string;
30571
- };
30572
- } | {
30573
- /** The ID of the action attempt. */
30574
- action_attempt_id: string;
30575
- status: 'pending';
30576
- result: null;
30577
- error: null;
30578
- action_type: 'SET_HEAT';
30579
- } | {
30580
- /** The ID of the action attempt. */
30581
- action_attempt_id: string;
30582
- status: 'success';
30583
- error: null;
30584
- action_type: 'SET_HEAT';
30585
- result: {};
30586
- } | {
30587
- /** The ID of the action attempt. */
30588
- action_attempt_id: string;
30589
- status: 'error';
30590
- result: null;
30591
- action_type: 'SET_HEAT';
30592
- error: {
30593
- type: string;
30594
- message: string;
30595
- };
30596
- } | {
30597
- /** The ID of the action attempt. */
30598
- action_attempt_id: string;
30599
- status: 'pending';
30600
- result: null;
30601
- error: null;
30602
- action_type: 'SET_HEAT_COOL';
30603
- } | {
30604
- /** The ID of the action attempt. */
30605
- action_attempt_id: string;
30606
- status: 'success';
30607
- error: null;
30608
- action_type: 'SET_HEAT_COOL';
30609
- result: {};
30610
- } | {
30611
- /** The ID of the action attempt. */
30612
- action_attempt_id: string;
30613
- status: 'error';
30614
- result: null;
30615
- action_type: 'SET_HEAT_COOL';
30616
- error: {
30617
- type: string;
30618
- message: string;
30619
- };
30620
28632
  } | {
30621
28633
  /** The ID of the action attempt. */
30622
28634
  action_attempt_id: string;
@@ -30641,30 +28653,6 @@ export interface Routes {
30641
28653
  type: string;
30642
28654
  message: string;
30643
28655
  };
30644
- } | {
30645
- /** The ID of the action attempt. */
30646
- action_attempt_id: string;
30647
- status: 'pending';
30648
- result: null;
30649
- error: null;
30650
- action_type: 'SET_THERMOSTAT_OFF';
30651
- } | {
30652
- /** The ID of the action attempt. */
30653
- action_attempt_id: string;
30654
- status: 'success';
30655
- error: null;
30656
- action_type: 'SET_THERMOSTAT_OFF';
30657
- result: {};
30658
- } | {
30659
- /** The ID of the action attempt. */
30660
- action_attempt_id: string;
30661
- status: 'error';
30662
- result: null;
30663
- action_type: 'SET_THERMOSTAT_OFF';
30664
- error: {
30665
- type: string;
30666
- message: string;
30667
- };
30668
28656
  } | {
30669
28657
  /** The ID of the action attempt. */
30670
28658
  action_attempt_id: string;