@seamapi/types 1.310.0 → 1.311.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +14 -389
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +0 -2328
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +0 -312
- package/lib/seam/connect/models/action-attempts/action-attempt.js +0 -8
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/openapi.js +0 -304
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -2028
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +0 -8
- package/src/lib/seam/connect/openapi.ts +0 -304
- package/src/lib/seam/connect/route-types.ts +0 -2268
- package/lib/seam/connect/models/action-attempts/set-cool.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-cool.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-cool.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/set-heat-cool.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-heat-cool.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-heat-cool.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/set-heat.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-heat.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-heat.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/set-thermostat-off.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-thermostat-off.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-thermostat-off.js.map +0 -1
- package/src/lib/seam/connect/models/action-attempts/set-cool.ts +0 -33
- package/src/lib/seam/connect/models/action-attempts/set-heat-cool.ts +0 -33
- package/src/lib/seam/connect/models/action-attempts/set-heat.ts +0 -33
- package/src/lib/seam/connect/models/action-attempts/set-thermostat-off.ts +0 -36
|
@@ -650,87 +650,6 @@ export interface Routes {
|
|
|
650
650
|
message: string
|
|
651
651
|
}
|
|
652
652
|
}
|
|
653
|
-
| {
|
|
654
|
-
/** The ID of the action attempt. */
|
|
655
|
-
action_attempt_id: string
|
|
656
|
-
status: 'pending'
|
|
657
|
-
result: null
|
|
658
|
-
error: null
|
|
659
|
-
action_type: 'SET_COOL'
|
|
660
|
-
}
|
|
661
|
-
| {
|
|
662
|
-
/** The ID of the action attempt. */
|
|
663
|
-
action_attempt_id: string
|
|
664
|
-
status: 'success'
|
|
665
|
-
error: null
|
|
666
|
-
action_type: 'SET_COOL'
|
|
667
|
-
result: {}
|
|
668
|
-
}
|
|
669
|
-
| {
|
|
670
|
-
/** The ID of the action attempt. */
|
|
671
|
-
action_attempt_id: string
|
|
672
|
-
status: 'error'
|
|
673
|
-
result: null
|
|
674
|
-
action_type: 'SET_COOL'
|
|
675
|
-
error: {
|
|
676
|
-
type: string
|
|
677
|
-
message: string
|
|
678
|
-
}
|
|
679
|
-
}
|
|
680
|
-
| {
|
|
681
|
-
/** The ID of the action attempt. */
|
|
682
|
-
action_attempt_id: string
|
|
683
|
-
status: 'pending'
|
|
684
|
-
result: null
|
|
685
|
-
error: null
|
|
686
|
-
action_type: 'SET_HEAT'
|
|
687
|
-
}
|
|
688
|
-
| {
|
|
689
|
-
/** The ID of the action attempt. */
|
|
690
|
-
action_attempt_id: string
|
|
691
|
-
status: 'success'
|
|
692
|
-
error: null
|
|
693
|
-
action_type: 'SET_HEAT'
|
|
694
|
-
result: {}
|
|
695
|
-
}
|
|
696
|
-
| {
|
|
697
|
-
/** The ID of the action attempt. */
|
|
698
|
-
action_attempt_id: string
|
|
699
|
-
status: 'error'
|
|
700
|
-
result: null
|
|
701
|
-
action_type: 'SET_HEAT'
|
|
702
|
-
error: {
|
|
703
|
-
type: string
|
|
704
|
-
message: string
|
|
705
|
-
}
|
|
706
|
-
}
|
|
707
|
-
| {
|
|
708
|
-
/** The ID of the action attempt. */
|
|
709
|
-
action_attempt_id: string
|
|
710
|
-
status: 'pending'
|
|
711
|
-
result: null
|
|
712
|
-
error: null
|
|
713
|
-
action_type: 'SET_HEAT_COOL'
|
|
714
|
-
}
|
|
715
|
-
| {
|
|
716
|
-
/** The ID of the action attempt. */
|
|
717
|
-
action_attempt_id: string
|
|
718
|
-
status: 'success'
|
|
719
|
-
error: null
|
|
720
|
-
action_type: 'SET_HEAT_COOL'
|
|
721
|
-
result: {}
|
|
722
|
-
}
|
|
723
|
-
| {
|
|
724
|
-
/** The ID of the action attempt. */
|
|
725
|
-
action_attempt_id: string
|
|
726
|
-
status: 'error'
|
|
727
|
-
result: null
|
|
728
|
-
action_type: 'SET_HEAT_COOL'
|
|
729
|
-
error: {
|
|
730
|
-
type: string
|
|
731
|
-
message: string
|
|
732
|
-
}
|
|
733
|
-
}
|
|
734
653
|
| {
|
|
735
654
|
/** The ID of the action attempt. */
|
|
736
655
|
action_attempt_id: string
|
|
@@ -758,33 +677,6 @@ export interface Routes {
|
|
|
758
677
|
message: string
|
|
759
678
|
}
|
|
760
679
|
}
|
|
761
|
-
| {
|
|
762
|
-
/** The ID of the action attempt. */
|
|
763
|
-
action_attempt_id: string
|
|
764
|
-
status: 'pending'
|
|
765
|
-
result: null
|
|
766
|
-
error: null
|
|
767
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
768
|
-
}
|
|
769
|
-
| {
|
|
770
|
-
/** The ID of the action attempt. */
|
|
771
|
-
action_attempt_id: string
|
|
772
|
-
status: 'success'
|
|
773
|
-
error: null
|
|
774
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
775
|
-
result: {}
|
|
776
|
-
}
|
|
777
|
-
| {
|
|
778
|
-
/** The ID of the action attempt. */
|
|
779
|
-
action_attempt_id: string
|
|
780
|
-
status: 'error'
|
|
781
|
-
result: null
|
|
782
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
783
|
-
error: {
|
|
784
|
-
type: string
|
|
785
|
-
message: string
|
|
786
|
-
}
|
|
787
|
-
}
|
|
788
680
|
| {
|
|
789
681
|
/** The ID of the action attempt. */
|
|
790
682
|
action_attempt_id: string
|
|
@@ -1832,87 +1724,6 @@ export interface Routes {
|
|
|
1832
1724
|
message: string
|
|
1833
1725
|
}
|
|
1834
1726
|
}
|
|
1835
|
-
| {
|
|
1836
|
-
/** The ID of the action attempt. */
|
|
1837
|
-
action_attempt_id: string
|
|
1838
|
-
status: 'pending'
|
|
1839
|
-
result: null
|
|
1840
|
-
error: null
|
|
1841
|
-
action_type: 'SET_COOL'
|
|
1842
|
-
}
|
|
1843
|
-
| {
|
|
1844
|
-
/** The ID of the action attempt. */
|
|
1845
|
-
action_attempt_id: string
|
|
1846
|
-
status: 'success'
|
|
1847
|
-
error: null
|
|
1848
|
-
action_type: 'SET_COOL'
|
|
1849
|
-
result: {}
|
|
1850
|
-
}
|
|
1851
|
-
| {
|
|
1852
|
-
/** The ID of the action attempt. */
|
|
1853
|
-
action_attempt_id: string
|
|
1854
|
-
status: 'error'
|
|
1855
|
-
result: null
|
|
1856
|
-
action_type: 'SET_COOL'
|
|
1857
|
-
error: {
|
|
1858
|
-
type: string
|
|
1859
|
-
message: string
|
|
1860
|
-
}
|
|
1861
|
-
}
|
|
1862
|
-
| {
|
|
1863
|
-
/** The ID of the action attempt. */
|
|
1864
|
-
action_attempt_id: string
|
|
1865
|
-
status: 'pending'
|
|
1866
|
-
result: null
|
|
1867
|
-
error: null
|
|
1868
|
-
action_type: 'SET_HEAT'
|
|
1869
|
-
}
|
|
1870
|
-
| {
|
|
1871
|
-
/** The ID of the action attempt. */
|
|
1872
|
-
action_attempt_id: string
|
|
1873
|
-
status: 'success'
|
|
1874
|
-
error: null
|
|
1875
|
-
action_type: 'SET_HEAT'
|
|
1876
|
-
result: {}
|
|
1877
|
-
}
|
|
1878
|
-
| {
|
|
1879
|
-
/** The ID of the action attempt. */
|
|
1880
|
-
action_attempt_id: string
|
|
1881
|
-
status: 'error'
|
|
1882
|
-
result: null
|
|
1883
|
-
action_type: 'SET_HEAT'
|
|
1884
|
-
error: {
|
|
1885
|
-
type: string
|
|
1886
|
-
message: string
|
|
1887
|
-
}
|
|
1888
|
-
}
|
|
1889
|
-
| {
|
|
1890
|
-
/** The ID of the action attempt. */
|
|
1891
|
-
action_attempt_id: string
|
|
1892
|
-
status: 'pending'
|
|
1893
|
-
result: null
|
|
1894
|
-
error: null
|
|
1895
|
-
action_type: 'SET_HEAT_COOL'
|
|
1896
|
-
}
|
|
1897
|
-
| {
|
|
1898
|
-
/** The ID of the action attempt. */
|
|
1899
|
-
action_attempt_id: string
|
|
1900
|
-
status: 'success'
|
|
1901
|
-
error: null
|
|
1902
|
-
action_type: 'SET_HEAT_COOL'
|
|
1903
|
-
result: {}
|
|
1904
|
-
}
|
|
1905
|
-
| {
|
|
1906
|
-
/** The ID of the action attempt. */
|
|
1907
|
-
action_attempt_id: string
|
|
1908
|
-
status: 'error'
|
|
1909
|
-
result: null
|
|
1910
|
-
action_type: 'SET_HEAT_COOL'
|
|
1911
|
-
error: {
|
|
1912
|
-
type: string
|
|
1913
|
-
message: string
|
|
1914
|
-
}
|
|
1915
|
-
}
|
|
1916
1727
|
| {
|
|
1917
1728
|
/** The ID of the action attempt. */
|
|
1918
1729
|
action_attempt_id: string
|
|
@@ -1940,33 +1751,6 @@ export interface Routes {
|
|
|
1940
1751
|
message: string
|
|
1941
1752
|
}
|
|
1942
1753
|
}
|
|
1943
|
-
| {
|
|
1944
|
-
/** The ID of the action attempt. */
|
|
1945
|
-
action_attempt_id: string
|
|
1946
|
-
status: 'pending'
|
|
1947
|
-
result: null
|
|
1948
|
-
error: null
|
|
1949
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
1950
|
-
}
|
|
1951
|
-
| {
|
|
1952
|
-
/** The ID of the action attempt. */
|
|
1953
|
-
action_attempt_id: string
|
|
1954
|
-
status: 'success'
|
|
1955
|
-
error: null
|
|
1956
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
1957
|
-
result: {}
|
|
1958
|
-
}
|
|
1959
|
-
| {
|
|
1960
|
-
/** The ID of the action attempt. */
|
|
1961
|
-
action_attempt_id: string
|
|
1962
|
-
status: 'error'
|
|
1963
|
-
result: null
|
|
1964
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
1965
|
-
error: {
|
|
1966
|
-
type: string
|
|
1967
|
-
message: string
|
|
1968
|
-
}
|
|
1969
|
-
}
|
|
1970
1754
|
| {
|
|
1971
1755
|
/** The ID of the action attempt. */
|
|
1972
1756
|
action_attempt_id: string
|
|
@@ -3244,87 +3028,6 @@ export interface Routes {
|
|
|
3244
3028
|
message: string
|
|
3245
3029
|
}
|
|
3246
3030
|
}
|
|
3247
|
-
| {
|
|
3248
|
-
/** The ID of the action attempt. */
|
|
3249
|
-
action_attempt_id: string
|
|
3250
|
-
status: 'pending'
|
|
3251
|
-
result: null
|
|
3252
|
-
error: null
|
|
3253
|
-
action_type: 'SET_COOL'
|
|
3254
|
-
}
|
|
3255
|
-
| {
|
|
3256
|
-
/** The ID of the action attempt. */
|
|
3257
|
-
action_attempt_id: string
|
|
3258
|
-
status: 'success'
|
|
3259
|
-
error: null
|
|
3260
|
-
action_type: 'SET_COOL'
|
|
3261
|
-
result: {}
|
|
3262
|
-
}
|
|
3263
|
-
| {
|
|
3264
|
-
/** The ID of the action attempt. */
|
|
3265
|
-
action_attempt_id: string
|
|
3266
|
-
status: 'error'
|
|
3267
|
-
result: null
|
|
3268
|
-
action_type: 'SET_COOL'
|
|
3269
|
-
error: {
|
|
3270
|
-
type: string
|
|
3271
|
-
message: string
|
|
3272
|
-
}
|
|
3273
|
-
}
|
|
3274
|
-
| {
|
|
3275
|
-
/** The ID of the action attempt. */
|
|
3276
|
-
action_attempt_id: string
|
|
3277
|
-
status: 'pending'
|
|
3278
|
-
result: null
|
|
3279
|
-
error: null
|
|
3280
|
-
action_type: 'SET_HEAT'
|
|
3281
|
-
}
|
|
3282
|
-
| {
|
|
3283
|
-
/** The ID of the action attempt. */
|
|
3284
|
-
action_attempt_id: string
|
|
3285
|
-
status: 'success'
|
|
3286
|
-
error: null
|
|
3287
|
-
action_type: 'SET_HEAT'
|
|
3288
|
-
result: {}
|
|
3289
|
-
}
|
|
3290
|
-
| {
|
|
3291
|
-
/** The ID of the action attempt. */
|
|
3292
|
-
action_attempt_id: string
|
|
3293
|
-
status: 'error'
|
|
3294
|
-
result: null
|
|
3295
|
-
action_type: 'SET_HEAT'
|
|
3296
|
-
error: {
|
|
3297
|
-
type: string
|
|
3298
|
-
message: string
|
|
3299
|
-
}
|
|
3300
|
-
}
|
|
3301
|
-
| {
|
|
3302
|
-
/** The ID of the action attempt. */
|
|
3303
|
-
action_attempt_id: string
|
|
3304
|
-
status: 'pending'
|
|
3305
|
-
result: null
|
|
3306
|
-
error: null
|
|
3307
|
-
action_type: 'SET_HEAT_COOL'
|
|
3308
|
-
}
|
|
3309
|
-
| {
|
|
3310
|
-
/** The ID of the action attempt. */
|
|
3311
|
-
action_attempt_id: string
|
|
3312
|
-
status: 'success'
|
|
3313
|
-
error: null
|
|
3314
|
-
action_type: 'SET_HEAT_COOL'
|
|
3315
|
-
result: {}
|
|
3316
|
-
}
|
|
3317
|
-
| {
|
|
3318
|
-
/** The ID of the action attempt. */
|
|
3319
|
-
action_attempt_id: string
|
|
3320
|
-
status: 'error'
|
|
3321
|
-
result: null
|
|
3322
|
-
action_type: 'SET_HEAT_COOL'
|
|
3323
|
-
error: {
|
|
3324
|
-
type: string
|
|
3325
|
-
message: string
|
|
3326
|
-
}
|
|
3327
|
-
}
|
|
3328
3031
|
| {
|
|
3329
3032
|
/** The ID of the action attempt. */
|
|
3330
3033
|
action_attempt_id: string
|
|
@@ -3352,33 +3055,6 @@ export interface Routes {
|
|
|
3352
3055
|
message: string
|
|
3353
3056
|
}
|
|
3354
3057
|
}
|
|
3355
|
-
| {
|
|
3356
|
-
/** The ID of the action attempt. */
|
|
3357
|
-
action_attempt_id: string
|
|
3358
|
-
status: 'pending'
|
|
3359
|
-
result: null
|
|
3360
|
-
error: null
|
|
3361
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
3362
|
-
}
|
|
3363
|
-
| {
|
|
3364
|
-
/** The ID of the action attempt. */
|
|
3365
|
-
action_attempt_id: string
|
|
3366
|
-
status: 'success'
|
|
3367
|
-
error: null
|
|
3368
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
3369
|
-
result: {}
|
|
3370
|
-
}
|
|
3371
|
-
| {
|
|
3372
|
-
/** The ID of the action attempt. */
|
|
3373
|
-
action_attempt_id: string
|
|
3374
|
-
status: 'error'
|
|
3375
|
-
result: null
|
|
3376
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
3377
|
-
error: {
|
|
3378
|
-
type: string
|
|
3379
|
-
message: string
|
|
3380
|
-
}
|
|
3381
|
-
}
|
|
3382
3058
|
| {
|
|
3383
3059
|
/** The ID of the action attempt. */
|
|
3384
3060
|
action_attempt_id: string
|
|
@@ -4413,87 +4089,6 @@ export interface Routes {
|
|
|
4413
4089
|
message: string
|
|
4414
4090
|
}
|
|
4415
4091
|
}
|
|
4416
|
-
| {
|
|
4417
|
-
/** The ID of the action attempt. */
|
|
4418
|
-
action_attempt_id: string
|
|
4419
|
-
status: 'pending'
|
|
4420
|
-
result: null
|
|
4421
|
-
error: null
|
|
4422
|
-
action_type: 'SET_COOL'
|
|
4423
|
-
}
|
|
4424
|
-
| {
|
|
4425
|
-
/** The ID of the action attempt. */
|
|
4426
|
-
action_attempt_id: string
|
|
4427
|
-
status: 'success'
|
|
4428
|
-
error: null
|
|
4429
|
-
action_type: 'SET_COOL'
|
|
4430
|
-
result: {}
|
|
4431
|
-
}
|
|
4432
|
-
| {
|
|
4433
|
-
/** The ID of the action attempt. */
|
|
4434
|
-
action_attempt_id: string
|
|
4435
|
-
status: 'error'
|
|
4436
|
-
result: null
|
|
4437
|
-
action_type: 'SET_COOL'
|
|
4438
|
-
error: {
|
|
4439
|
-
type: string
|
|
4440
|
-
message: string
|
|
4441
|
-
}
|
|
4442
|
-
}
|
|
4443
|
-
| {
|
|
4444
|
-
/** The ID of the action attempt. */
|
|
4445
|
-
action_attempt_id: string
|
|
4446
|
-
status: 'pending'
|
|
4447
|
-
result: null
|
|
4448
|
-
error: null
|
|
4449
|
-
action_type: 'SET_HEAT'
|
|
4450
|
-
}
|
|
4451
|
-
| {
|
|
4452
|
-
/** The ID of the action attempt. */
|
|
4453
|
-
action_attempt_id: string
|
|
4454
|
-
status: 'success'
|
|
4455
|
-
error: null
|
|
4456
|
-
action_type: 'SET_HEAT'
|
|
4457
|
-
result: {}
|
|
4458
|
-
}
|
|
4459
|
-
| {
|
|
4460
|
-
/** The ID of the action attempt. */
|
|
4461
|
-
action_attempt_id: string
|
|
4462
|
-
status: 'error'
|
|
4463
|
-
result: null
|
|
4464
|
-
action_type: 'SET_HEAT'
|
|
4465
|
-
error: {
|
|
4466
|
-
type: string
|
|
4467
|
-
message: string
|
|
4468
|
-
}
|
|
4469
|
-
}
|
|
4470
|
-
| {
|
|
4471
|
-
/** The ID of the action attempt. */
|
|
4472
|
-
action_attempt_id: string
|
|
4473
|
-
status: 'pending'
|
|
4474
|
-
result: null
|
|
4475
|
-
error: null
|
|
4476
|
-
action_type: 'SET_HEAT_COOL'
|
|
4477
|
-
}
|
|
4478
|
-
| {
|
|
4479
|
-
/** The ID of the action attempt. */
|
|
4480
|
-
action_attempt_id: string
|
|
4481
|
-
status: 'success'
|
|
4482
|
-
error: null
|
|
4483
|
-
action_type: 'SET_HEAT_COOL'
|
|
4484
|
-
result: {}
|
|
4485
|
-
}
|
|
4486
|
-
| {
|
|
4487
|
-
/** The ID of the action attempt. */
|
|
4488
|
-
action_attempt_id: string
|
|
4489
|
-
status: 'error'
|
|
4490
|
-
result: null
|
|
4491
|
-
action_type: 'SET_HEAT_COOL'
|
|
4492
|
-
error: {
|
|
4493
|
-
type: string
|
|
4494
|
-
message: string
|
|
4495
|
-
}
|
|
4496
|
-
}
|
|
4497
4092
|
| {
|
|
4498
4093
|
/** The ID of the action attempt. */
|
|
4499
4094
|
action_attempt_id: string
|
|
@@ -4521,33 +4116,6 @@ export interface Routes {
|
|
|
4521
4116
|
message: string
|
|
4522
4117
|
}
|
|
4523
4118
|
}
|
|
4524
|
-
| {
|
|
4525
|
-
/** The ID of the action attempt. */
|
|
4526
|
-
action_attempt_id: string
|
|
4527
|
-
status: 'pending'
|
|
4528
|
-
result: null
|
|
4529
|
-
error: null
|
|
4530
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
4531
|
-
}
|
|
4532
|
-
| {
|
|
4533
|
-
/** The ID of the action attempt. */
|
|
4534
|
-
action_attempt_id: string
|
|
4535
|
-
status: 'success'
|
|
4536
|
-
error: null
|
|
4537
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
4538
|
-
result: {}
|
|
4539
|
-
}
|
|
4540
|
-
| {
|
|
4541
|
-
/** The ID of the action attempt. */
|
|
4542
|
-
action_attempt_id: string
|
|
4543
|
-
status: 'error'
|
|
4544
|
-
result: null
|
|
4545
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
4546
|
-
error: {
|
|
4547
|
-
type: string
|
|
4548
|
-
message: string
|
|
4549
|
-
}
|
|
4550
|
-
}
|
|
4551
4119
|
| {
|
|
4552
4120
|
/** The ID of the action attempt. */
|
|
4553
4121
|
action_attempt_id: string
|
|
@@ -7171,87 +6739,6 @@ export interface Routes {
|
|
|
7171
6739
|
message: string
|
|
7172
6740
|
}
|
|
7173
6741
|
}
|
|
7174
|
-
| {
|
|
7175
|
-
/** The ID of the action attempt. */
|
|
7176
|
-
action_attempt_id: string
|
|
7177
|
-
status: 'pending'
|
|
7178
|
-
result: null
|
|
7179
|
-
error: null
|
|
7180
|
-
action_type: 'SET_COOL'
|
|
7181
|
-
}
|
|
7182
|
-
| {
|
|
7183
|
-
/** The ID of the action attempt. */
|
|
7184
|
-
action_attempt_id: string
|
|
7185
|
-
status: 'success'
|
|
7186
|
-
error: null
|
|
7187
|
-
action_type: 'SET_COOL'
|
|
7188
|
-
result: {}
|
|
7189
|
-
}
|
|
7190
|
-
| {
|
|
7191
|
-
/** The ID of the action attempt. */
|
|
7192
|
-
action_attempt_id: string
|
|
7193
|
-
status: 'error'
|
|
7194
|
-
result: null
|
|
7195
|
-
action_type: 'SET_COOL'
|
|
7196
|
-
error: {
|
|
7197
|
-
type: string
|
|
7198
|
-
message: string
|
|
7199
|
-
}
|
|
7200
|
-
}
|
|
7201
|
-
| {
|
|
7202
|
-
/** The ID of the action attempt. */
|
|
7203
|
-
action_attempt_id: string
|
|
7204
|
-
status: 'pending'
|
|
7205
|
-
result: null
|
|
7206
|
-
error: null
|
|
7207
|
-
action_type: 'SET_HEAT'
|
|
7208
|
-
}
|
|
7209
|
-
| {
|
|
7210
|
-
/** The ID of the action attempt. */
|
|
7211
|
-
action_attempt_id: string
|
|
7212
|
-
status: 'success'
|
|
7213
|
-
error: null
|
|
7214
|
-
action_type: 'SET_HEAT'
|
|
7215
|
-
result: {}
|
|
7216
|
-
}
|
|
7217
|
-
| {
|
|
7218
|
-
/** The ID of the action attempt. */
|
|
7219
|
-
action_attempt_id: string
|
|
7220
|
-
status: 'error'
|
|
7221
|
-
result: null
|
|
7222
|
-
action_type: 'SET_HEAT'
|
|
7223
|
-
error: {
|
|
7224
|
-
type: string
|
|
7225
|
-
message: string
|
|
7226
|
-
}
|
|
7227
|
-
}
|
|
7228
|
-
| {
|
|
7229
|
-
/** The ID of the action attempt. */
|
|
7230
|
-
action_attempt_id: string
|
|
7231
|
-
status: 'pending'
|
|
7232
|
-
result: null
|
|
7233
|
-
error: null
|
|
7234
|
-
action_type: 'SET_HEAT_COOL'
|
|
7235
|
-
}
|
|
7236
|
-
| {
|
|
7237
|
-
/** The ID of the action attempt. */
|
|
7238
|
-
action_attempt_id: string
|
|
7239
|
-
status: 'success'
|
|
7240
|
-
error: null
|
|
7241
|
-
action_type: 'SET_HEAT_COOL'
|
|
7242
|
-
result: {}
|
|
7243
|
-
}
|
|
7244
|
-
| {
|
|
7245
|
-
/** The ID of the action attempt. */
|
|
7246
|
-
action_attempt_id: string
|
|
7247
|
-
status: 'error'
|
|
7248
|
-
result: null
|
|
7249
|
-
action_type: 'SET_HEAT_COOL'
|
|
7250
|
-
error: {
|
|
7251
|
-
type: string
|
|
7252
|
-
message: string
|
|
7253
|
-
}
|
|
7254
|
-
}
|
|
7255
6742
|
| {
|
|
7256
6743
|
/** The ID of the action attempt. */
|
|
7257
6744
|
action_attempt_id: string
|
|
@@ -7279,33 +6766,6 @@ export interface Routes {
|
|
|
7279
6766
|
message: string
|
|
7280
6767
|
}
|
|
7281
6768
|
}
|
|
7282
|
-
| {
|
|
7283
|
-
/** The ID of the action attempt. */
|
|
7284
|
-
action_attempt_id: string
|
|
7285
|
-
status: 'pending'
|
|
7286
|
-
result: null
|
|
7287
|
-
error: null
|
|
7288
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
7289
|
-
}
|
|
7290
|
-
| {
|
|
7291
|
-
/** The ID of the action attempt. */
|
|
7292
|
-
action_attempt_id: string
|
|
7293
|
-
status: 'success'
|
|
7294
|
-
error: null
|
|
7295
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
7296
|
-
result: {}
|
|
7297
|
-
}
|
|
7298
|
-
| {
|
|
7299
|
-
/** The ID of the action attempt. */
|
|
7300
|
-
action_attempt_id: string
|
|
7301
|
-
status: 'error'
|
|
7302
|
-
result: null
|
|
7303
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
7304
|
-
error: {
|
|
7305
|
-
type: string
|
|
7306
|
-
message: string
|
|
7307
|
-
}
|
|
7308
|
-
}
|
|
7309
6769
|
| {
|
|
7310
6770
|
/** The ID of the action attempt. */
|
|
7311
6771
|
action_attempt_id: string
|
|
@@ -8242,87 +7702,6 @@ export interface Routes {
|
|
|
8242
7702
|
message: string
|
|
8243
7703
|
}
|
|
8244
7704
|
}
|
|
8245
|
-
| {
|
|
8246
|
-
/** The ID of the action attempt. */
|
|
8247
|
-
action_attempt_id: string
|
|
8248
|
-
status: 'pending'
|
|
8249
|
-
result: null
|
|
8250
|
-
error: null
|
|
8251
|
-
action_type: 'SET_COOL'
|
|
8252
|
-
}
|
|
8253
|
-
| {
|
|
8254
|
-
/** The ID of the action attempt. */
|
|
8255
|
-
action_attempt_id: string
|
|
8256
|
-
status: 'success'
|
|
8257
|
-
error: null
|
|
8258
|
-
action_type: 'SET_COOL'
|
|
8259
|
-
result: {}
|
|
8260
|
-
}
|
|
8261
|
-
| {
|
|
8262
|
-
/** The ID of the action attempt. */
|
|
8263
|
-
action_attempt_id: string
|
|
8264
|
-
status: 'error'
|
|
8265
|
-
result: null
|
|
8266
|
-
action_type: 'SET_COOL'
|
|
8267
|
-
error: {
|
|
8268
|
-
type: string
|
|
8269
|
-
message: string
|
|
8270
|
-
}
|
|
8271
|
-
}
|
|
8272
|
-
| {
|
|
8273
|
-
/** The ID of the action attempt. */
|
|
8274
|
-
action_attempt_id: string
|
|
8275
|
-
status: 'pending'
|
|
8276
|
-
result: null
|
|
8277
|
-
error: null
|
|
8278
|
-
action_type: 'SET_HEAT'
|
|
8279
|
-
}
|
|
8280
|
-
| {
|
|
8281
|
-
/** The ID of the action attempt. */
|
|
8282
|
-
action_attempt_id: string
|
|
8283
|
-
status: 'success'
|
|
8284
|
-
error: null
|
|
8285
|
-
action_type: 'SET_HEAT'
|
|
8286
|
-
result: {}
|
|
8287
|
-
}
|
|
8288
|
-
| {
|
|
8289
|
-
/** The ID of the action attempt. */
|
|
8290
|
-
action_attempt_id: string
|
|
8291
|
-
status: 'error'
|
|
8292
|
-
result: null
|
|
8293
|
-
action_type: 'SET_HEAT'
|
|
8294
|
-
error: {
|
|
8295
|
-
type: string
|
|
8296
|
-
message: string
|
|
8297
|
-
}
|
|
8298
|
-
}
|
|
8299
|
-
| {
|
|
8300
|
-
/** The ID of the action attempt. */
|
|
8301
|
-
action_attempt_id: string
|
|
8302
|
-
status: 'pending'
|
|
8303
|
-
result: null
|
|
8304
|
-
error: null
|
|
8305
|
-
action_type: 'SET_HEAT_COOL'
|
|
8306
|
-
}
|
|
8307
|
-
| {
|
|
8308
|
-
/** The ID of the action attempt. */
|
|
8309
|
-
action_attempt_id: string
|
|
8310
|
-
status: 'success'
|
|
8311
|
-
error: null
|
|
8312
|
-
action_type: 'SET_HEAT_COOL'
|
|
8313
|
-
result: {}
|
|
8314
|
-
}
|
|
8315
|
-
| {
|
|
8316
|
-
/** The ID of the action attempt. */
|
|
8317
|
-
action_attempt_id: string
|
|
8318
|
-
status: 'error'
|
|
8319
|
-
result: null
|
|
8320
|
-
action_type: 'SET_HEAT_COOL'
|
|
8321
|
-
error: {
|
|
8322
|
-
type: string
|
|
8323
|
-
message: string
|
|
8324
|
-
}
|
|
8325
|
-
}
|
|
8326
7705
|
| {
|
|
8327
7706
|
/** The ID of the action attempt. */
|
|
8328
7707
|
action_attempt_id: string
|
|
@@ -8350,33 +7729,6 @@ export interface Routes {
|
|
|
8350
7729
|
message: string
|
|
8351
7730
|
}
|
|
8352
7731
|
}
|
|
8353
|
-
| {
|
|
8354
|
-
/** The ID of the action attempt. */
|
|
8355
|
-
action_attempt_id: string
|
|
8356
|
-
status: 'pending'
|
|
8357
|
-
result: null
|
|
8358
|
-
error: null
|
|
8359
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
8360
|
-
}
|
|
8361
|
-
| {
|
|
8362
|
-
/** The ID of the action attempt. */
|
|
8363
|
-
action_attempt_id: string
|
|
8364
|
-
status: 'success'
|
|
8365
|
-
error: null
|
|
8366
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
8367
|
-
result: {}
|
|
8368
|
-
}
|
|
8369
|
-
| {
|
|
8370
|
-
/** The ID of the action attempt. */
|
|
8371
|
-
action_attempt_id: string
|
|
8372
|
-
status: 'error'
|
|
8373
|
-
result: null
|
|
8374
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
8375
|
-
error: {
|
|
8376
|
-
type: string
|
|
8377
|
-
message: string
|
|
8378
|
-
}
|
|
8379
|
-
}
|
|
8380
7732
|
| {
|
|
8381
7733
|
/** The ID of the action attempt. */
|
|
8382
7734
|
action_attempt_id: string
|
|
@@ -10920,87 +10272,6 @@ export interface Routes {
|
|
|
10920
10272
|
message: string
|
|
10921
10273
|
}
|
|
10922
10274
|
}
|
|
10923
|
-
| {
|
|
10924
|
-
/** The ID of the action attempt. */
|
|
10925
|
-
action_attempt_id: string
|
|
10926
|
-
status: 'pending'
|
|
10927
|
-
result: null
|
|
10928
|
-
error: null
|
|
10929
|
-
action_type: 'SET_COOL'
|
|
10930
|
-
}
|
|
10931
|
-
| {
|
|
10932
|
-
/** The ID of the action attempt. */
|
|
10933
|
-
action_attempt_id: string
|
|
10934
|
-
status: 'success'
|
|
10935
|
-
error: null
|
|
10936
|
-
action_type: 'SET_COOL'
|
|
10937
|
-
result: {}
|
|
10938
|
-
}
|
|
10939
|
-
| {
|
|
10940
|
-
/** The ID of the action attempt. */
|
|
10941
|
-
action_attempt_id: string
|
|
10942
|
-
status: 'error'
|
|
10943
|
-
result: null
|
|
10944
|
-
action_type: 'SET_COOL'
|
|
10945
|
-
error: {
|
|
10946
|
-
type: string
|
|
10947
|
-
message: string
|
|
10948
|
-
}
|
|
10949
|
-
}
|
|
10950
|
-
| {
|
|
10951
|
-
/** The ID of the action attempt. */
|
|
10952
|
-
action_attempt_id: string
|
|
10953
|
-
status: 'pending'
|
|
10954
|
-
result: null
|
|
10955
|
-
error: null
|
|
10956
|
-
action_type: 'SET_HEAT'
|
|
10957
|
-
}
|
|
10958
|
-
| {
|
|
10959
|
-
/** The ID of the action attempt. */
|
|
10960
|
-
action_attempt_id: string
|
|
10961
|
-
status: 'success'
|
|
10962
|
-
error: null
|
|
10963
|
-
action_type: 'SET_HEAT'
|
|
10964
|
-
result: {}
|
|
10965
|
-
}
|
|
10966
|
-
| {
|
|
10967
|
-
/** The ID of the action attempt. */
|
|
10968
|
-
action_attempt_id: string
|
|
10969
|
-
status: 'error'
|
|
10970
|
-
result: null
|
|
10971
|
-
action_type: 'SET_HEAT'
|
|
10972
|
-
error: {
|
|
10973
|
-
type: string
|
|
10974
|
-
message: string
|
|
10975
|
-
}
|
|
10976
|
-
}
|
|
10977
|
-
| {
|
|
10978
|
-
/** The ID of the action attempt. */
|
|
10979
|
-
action_attempt_id: string
|
|
10980
|
-
status: 'pending'
|
|
10981
|
-
result: null
|
|
10982
|
-
error: null
|
|
10983
|
-
action_type: 'SET_HEAT_COOL'
|
|
10984
|
-
}
|
|
10985
|
-
| {
|
|
10986
|
-
/** The ID of the action attempt. */
|
|
10987
|
-
action_attempt_id: string
|
|
10988
|
-
status: 'success'
|
|
10989
|
-
error: null
|
|
10990
|
-
action_type: 'SET_HEAT_COOL'
|
|
10991
|
-
result: {}
|
|
10992
|
-
}
|
|
10993
|
-
| {
|
|
10994
|
-
/** The ID of the action attempt. */
|
|
10995
|
-
action_attempt_id: string
|
|
10996
|
-
status: 'error'
|
|
10997
|
-
result: null
|
|
10998
|
-
action_type: 'SET_HEAT_COOL'
|
|
10999
|
-
error: {
|
|
11000
|
-
type: string
|
|
11001
|
-
message: string
|
|
11002
|
-
}
|
|
11003
|
-
}
|
|
11004
10275
|
| {
|
|
11005
10276
|
/** The ID of the action attempt. */
|
|
11006
10277
|
action_attempt_id: string
|
|
@@ -11028,33 +10299,6 @@ export interface Routes {
|
|
|
11028
10299
|
message: string
|
|
11029
10300
|
}
|
|
11030
10301
|
}
|
|
11031
|
-
| {
|
|
11032
|
-
/** The ID of the action attempt. */
|
|
11033
|
-
action_attempt_id: string
|
|
11034
|
-
status: 'pending'
|
|
11035
|
-
result: null
|
|
11036
|
-
error: null
|
|
11037
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
11038
|
-
}
|
|
11039
|
-
| {
|
|
11040
|
-
/** The ID of the action attempt. */
|
|
11041
|
-
action_attempt_id: string
|
|
11042
|
-
status: 'success'
|
|
11043
|
-
error: null
|
|
11044
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
11045
|
-
result: {}
|
|
11046
|
-
}
|
|
11047
|
-
| {
|
|
11048
|
-
/** The ID of the action attempt. */
|
|
11049
|
-
action_attempt_id: string
|
|
11050
|
-
status: 'error'
|
|
11051
|
-
result: null
|
|
11052
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
11053
|
-
error: {
|
|
11054
|
-
type: string
|
|
11055
|
-
message: string
|
|
11056
|
-
}
|
|
11057
|
-
}
|
|
11058
10302
|
| {
|
|
11059
10303
|
/** The ID of the action attempt. */
|
|
11060
10304
|
action_attempt_id: string
|
|
@@ -11943,87 +11187,6 @@ export interface Routes {
|
|
|
11943
11187
|
message: string
|
|
11944
11188
|
}
|
|
11945
11189
|
}
|
|
11946
|
-
| {
|
|
11947
|
-
/** The ID of the action attempt. */
|
|
11948
|
-
action_attempt_id: string
|
|
11949
|
-
status: 'pending'
|
|
11950
|
-
result: null
|
|
11951
|
-
error: null
|
|
11952
|
-
action_type: 'SET_COOL'
|
|
11953
|
-
}
|
|
11954
|
-
| {
|
|
11955
|
-
/** The ID of the action attempt. */
|
|
11956
|
-
action_attempt_id: string
|
|
11957
|
-
status: 'success'
|
|
11958
|
-
error: null
|
|
11959
|
-
action_type: 'SET_COOL'
|
|
11960
|
-
result: {}
|
|
11961
|
-
}
|
|
11962
|
-
| {
|
|
11963
|
-
/** The ID of the action attempt. */
|
|
11964
|
-
action_attempt_id: string
|
|
11965
|
-
status: 'error'
|
|
11966
|
-
result: null
|
|
11967
|
-
action_type: 'SET_COOL'
|
|
11968
|
-
error: {
|
|
11969
|
-
type: string
|
|
11970
|
-
message: string
|
|
11971
|
-
}
|
|
11972
|
-
}
|
|
11973
|
-
| {
|
|
11974
|
-
/** The ID of the action attempt. */
|
|
11975
|
-
action_attempt_id: string
|
|
11976
|
-
status: 'pending'
|
|
11977
|
-
result: null
|
|
11978
|
-
error: null
|
|
11979
|
-
action_type: 'SET_HEAT'
|
|
11980
|
-
}
|
|
11981
|
-
| {
|
|
11982
|
-
/** The ID of the action attempt. */
|
|
11983
|
-
action_attempt_id: string
|
|
11984
|
-
status: 'success'
|
|
11985
|
-
error: null
|
|
11986
|
-
action_type: 'SET_HEAT'
|
|
11987
|
-
result: {}
|
|
11988
|
-
}
|
|
11989
|
-
| {
|
|
11990
|
-
/** The ID of the action attempt. */
|
|
11991
|
-
action_attempt_id: string
|
|
11992
|
-
status: 'error'
|
|
11993
|
-
result: null
|
|
11994
|
-
action_type: 'SET_HEAT'
|
|
11995
|
-
error: {
|
|
11996
|
-
type: string
|
|
11997
|
-
message: string
|
|
11998
|
-
}
|
|
11999
|
-
}
|
|
12000
|
-
| {
|
|
12001
|
-
/** The ID of the action attempt. */
|
|
12002
|
-
action_attempt_id: string
|
|
12003
|
-
status: 'pending'
|
|
12004
|
-
result: null
|
|
12005
|
-
error: null
|
|
12006
|
-
action_type: 'SET_HEAT_COOL'
|
|
12007
|
-
}
|
|
12008
|
-
| {
|
|
12009
|
-
/** The ID of the action attempt. */
|
|
12010
|
-
action_attempt_id: string
|
|
12011
|
-
status: 'success'
|
|
12012
|
-
error: null
|
|
12013
|
-
action_type: 'SET_HEAT_COOL'
|
|
12014
|
-
result: {}
|
|
12015
|
-
}
|
|
12016
|
-
| {
|
|
12017
|
-
/** The ID of the action attempt. */
|
|
12018
|
-
action_attempt_id: string
|
|
12019
|
-
status: 'error'
|
|
12020
|
-
result: null
|
|
12021
|
-
action_type: 'SET_HEAT_COOL'
|
|
12022
|
-
error: {
|
|
12023
|
-
type: string
|
|
12024
|
-
message: string
|
|
12025
|
-
}
|
|
12026
|
-
}
|
|
12027
11190
|
| {
|
|
12028
11191
|
/** The ID of the action attempt. */
|
|
12029
11192
|
action_attempt_id: string
|
|
@@ -12051,33 +11214,6 @@ export interface Routes {
|
|
|
12051
11214
|
message: string
|
|
12052
11215
|
}
|
|
12053
11216
|
}
|
|
12054
|
-
| {
|
|
12055
|
-
/** The ID of the action attempt. */
|
|
12056
|
-
action_attempt_id: string
|
|
12057
|
-
status: 'pending'
|
|
12058
|
-
result: null
|
|
12059
|
-
error: null
|
|
12060
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
12061
|
-
}
|
|
12062
|
-
| {
|
|
12063
|
-
/** The ID of the action attempt. */
|
|
12064
|
-
action_attempt_id: string
|
|
12065
|
-
status: 'success'
|
|
12066
|
-
error: null
|
|
12067
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
12068
|
-
result: {}
|
|
12069
|
-
}
|
|
12070
|
-
| {
|
|
12071
|
-
/** The ID of the action attempt. */
|
|
12072
|
-
action_attempt_id: string
|
|
12073
|
-
status: 'error'
|
|
12074
|
-
result: null
|
|
12075
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
12076
|
-
error: {
|
|
12077
|
-
type: string
|
|
12078
|
-
message: string
|
|
12079
|
-
}
|
|
12080
|
-
}
|
|
12081
11217
|
| {
|
|
12082
11218
|
/** The ID of the action attempt. */
|
|
12083
11219
|
action_attempt_id: string
|
|
@@ -18963,87 +18099,6 @@ export interface Routes {
|
|
|
18963
18099
|
message: string
|
|
18964
18100
|
}
|
|
18965
18101
|
}
|
|
18966
|
-
| {
|
|
18967
|
-
/** The ID of the action attempt. */
|
|
18968
|
-
action_attempt_id: string
|
|
18969
|
-
status: 'pending'
|
|
18970
|
-
result: null
|
|
18971
|
-
error: null
|
|
18972
|
-
action_type: 'SET_COOL'
|
|
18973
|
-
}
|
|
18974
|
-
| {
|
|
18975
|
-
/** The ID of the action attempt. */
|
|
18976
|
-
action_attempt_id: string
|
|
18977
|
-
status: 'success'
|
|
18978
|
-
error: null
|
|
18979
|
-
action_type: 'SET_COOL'
|
|
18980
|
-
result: {}
|
|
18981
|
-
}
|
|
18982
|
-
| {
|
|
18983
|
-
/** The ID of the action attempt. */
|
|
18984
|
-
action_attempt_id: string
|
|
18985
|
-
status: 'error'
|
|
18986
|
-
result: null
|
|
18987
|
-
action_type: 'SET_COOL'
|
|
18988
|
-
error: {
|
|
18989
|
-
type: string
|
|
18990
|
-
message: string
|
|
18991
|
-
}
|
|
18992
|
-
}
|
|
18993
|
-
| {
|
|
18994
|
-
/** The ID of the action attempt. */
|
|
18995
|
-
action_attempt_id: string
|
|
18996
|
-
status: 'pending'
|
|
18997
|
-
result: null
|
|
18998
|
-
error: null
|
|
18999
|
-
action_type: 'SET_HEAT'
|
|
19000
|
-
}
|
|
19001
|
-
| {
|
|
19002
|
-
/** The ID of the action attempt. */
|
|
19003
|
-
action_attempt_id: string
|
|
19004
|
-
status: 'success'
|
|
19005
|
-
error: null
|
|
19006
|
-
action_type: 'SET_HEAT'
|
|
19007
|
-
result: {}
|
|
19008
|
-
}
|
|
19009
|
-
| {
|
|
19010
|
-
/** The ID of the action attempt. */
|
|
19011
|
-
action_attempt_id: string
|
|
19012
|
-
status: 'error'
|
|
19013
|
-
result: null
|
|
19014
|
-
action_type: 'SET_HEAT'
|
|
19015
|
-
error: {
|
|
19016
|
-
type: string
|
|
19017
|
-
message: string
|
|
19018
|
-
}
|
|
19019
|
-
}
|
|
19020
|
-
| {
|
|
19021
|
-
/** The ID of the action attempt. */
|
|
19022
|
-
action_attempt_id: string
|
|
19023
|
-
status: 'pending'
|
|
19024
|
-
result: null
|
|
19025
|
-
error: null
|
|
19026
|
-
action_type: 'SET_HEAT_COOL'
|
|
19027
|
-
}
|
|
19028
|
-
| {
|
|
19029
|
-
/** The ID of the action attempt. */
|
|
19030
|
-
action_attempt_id: string
|
|
19031
|
-
status: 'success'
|
|
19032
|
-
error: null
|
|
19033
|
-
action_type: 'SET_HEAT_COOL'
|
|
19034
|
-
result: {}
|
|
19035
|
-
}
|
|
19036
|
-
| {
|
|
19037
|
-
/** The ID of the action attempt. */
|
|
19038
|
-
action_attempt_id: string
|
|
19039
|
-
status: 'error'
|
|
19040
|
-
result: null
|
|
19041
|
-
action_type: 'SET_HEAT_COOL'
|
|
19042
|
-
error: {
|
|
19043
|
-
type: string
|
|
19044
|
-
message: string
|
|
19045
|
-
}
|
|
19046
|
-
}
|
|
19047
18102
|
| {
|
|
19048
18103
|
/** The ID of the action attempt. */
|
|
19049
18104
|
action_attempt_id: string
|
|
@@ -19071,33 +18126,6 @@ export interface Routes {
|
|
|
19071
18126
|
message: string
|
|
19072
18127
|
}
|
|
19073
18128
|
}
|
|
19074
|
-
| {
|
|
19075
|
-
/** The ID of the action attempt. */
|
|
19076
|
-
action_attempt_id: string
|
|
19077
|
-
status: 'pending'
|
|
19078
|
-
result: null
|
|
19079
|
-
error: null
|
|
19080
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
19081
|
-
}
|
|
19082
|
-
| {
|
|
19083
|
-
/** The ID of the action attempt. */
|
|
19084
|
-
action_attempt_id: string
|
|
19085
|
-
status: 'success'
|
|
19086
|
-
error: null
|
|
19087
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
19088
|
-
result: {}
|
|
19089
|
-
}
|
|
19090
|
-
| {
|
|
19091
|
-
/** The ID of the action attempt. */
|
|
19092
|
-
action_attempt_id: string
|
|
19093
|
-
status: 'error'
|
|
19094
|
-
result: null
|
|
19095
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
19096
|
-
error: {
|
|
19097
|
-
type: string
|
|
19098
|
-
message: string
|
|
19099
|
-
}
|
|
19100
|
-
}
|
|
19101
18129
|
| {
|
|
19102
18130
|
/** The ID of the action attempt. */
|
|
19103
18131
|
action_attempt_id: string
|
|
@@ -19987,87 +19015,6 @@ export interface Routes {
|
|
|
19987
19015
|
message: string
|
|
19988
19016
|
}
|
|
19989
19017
|
}
|
|
19990
|
-
| {
|
|
19991
|
-
/** The ID of the action attempt. */
|
|
19992
|
-
action_attempt_id: string
|
|
19993
|
-
status: 'pending'
|
|
19994
|
-
result: null
|
|
19995
|
-
error: null
|
|
19996
|
-
action_type: 'SET_COOL'
|
|
19997
|
-
}
|
|
19998
|
-
| {
|
|
19999
|
-
/** The ID of the action attempt. */
|
|
20000
|
-
action_attempt_id: string
|
|
20001
|
-
status: 'success'
|
|
20002
|
-
error: null
|
|
20003
|
-
action_type: 'SET_COOL'
|
|
20004
|
-
result: {}
|
|
20005
|
-
}
|
|
20006
|
-
| {
|
|
20007
|
-
/** The ID of the action attempt. */
|
|
20008
|
-
action_attempt_id: string
|
|
20009
|
-
status: 'error'
|
|
20010
|
-
result: null
|
|
20011
|
-
action_type: 'SET_COOL'
|
|
20012
|
-
error: {
|
|
20013
|
-
type: string
|
|
20014
|
-
message: string
|
|
20015
|
-
}
|
|
20016
|
-
}
|
|
20017
|
-
| {
|
|
20018
|
-
/** The ID of the action attempt. */
|
|
20019
|
-
action_attempt_id: string
|
|
20020
|
-
status: 'pending'
|
|
20021
|
-
result: null
|
|
20022
|
-
error: null
|
|
20023
|
-
action_type: 'SET_HEAT'
|
|
20024
|
-
}
|
|
20025
|
-
| {
|
|
20026
|
-
/** The ID of the action attempt. */
|
|
20027
|
-
action_attempt_id: string
|
|
20028
|
-
status: 'success'
|
|
20029
|
-
error: null
|
|
20030
|
-
action_type: 'SET_HEAT'
|
|
20031
|
-
result: {}
|
|
20032
|
-
}
|
|
20033
|
-
| {
|
|
20034
|
-
/** The ID of the action attempt. */
|
|
20035
|
-
action_attempt_id: string
|
|
20036
|
-
status: 'error'
|
|
20037
|
-
result: null
|
|
20038
|
-
action_type: 'SET_HEAT'
|
|
20039
|
-
error: {
|
|
20040
|
-
type: string
|
|
20041
|
-
message: string
|
|
20042
|
-
}
|
|
20043
|
-
}
|
|
20044
|
-
| {
|
|
20045
|
-
/** The ID of the action attempt. */
|
|
20046
|
-
action_attempt_id: string
|
|
20047
|
-
status: 'pending'
|
|
20048
|
-
result: null
|
|
20049
|
-
error: null
|
|
20050
|
-
action_type: 'SET_HEAT_COOL'
|
|
20051
|
-
}
|
|
20052
|
-
| {
|
|
20053
|
-
/** The ID of the action attempt. */
|
|
20054
|
-
action_attempt_id: string
|
|
20055
|
-
status: 'success'
|
|
20056
|
-
error: null
|
|
20057
|
-
action_type: 'SET_HEAT_COOL'
|
|
20058
|
-
result: {}
|
|
20059
|
-
}
|
|
20060
|
-
| {
|
|
20061
|
-
/** The ID of the action attempt. */
|
|
20062
|
-
action_attempt_id: string
|
|
20063
|
-
status: 'error'
|
|
20064
|
-
result: null
|
|
20065
|
-
action_type: 'SET_HEAT_COOL'
|
|
20066
|
-
error: {
|
|
20067
|
-
type: string
|
|
20068
|
-
message: string
|
|
20069
|
-
}
|
|
20070
|
-
}
|
|
20071
19018
|
| {
|
|
20072
19019
|
/** The ID of the action attempt. */
|
|
20073
19020
|
action_attempt_id: string
|
|
@@ -20095,33 +19042,6 @@ export interface Routes {
|
|
|
20095
19042
|
message: string
|
|
20096
19043
|
}
|
|
20097
19044
|
}
|
|
20098
|
-
| {
|
|
20099
|
-
/** The ID of the action attempt. */
|
|
20100
|
-
action_attempt_id: string
|
|
20101
|
-
status: 'pending'
|
|
20102
|
-
result: null
|
|
20103
|
-
error: null
|
|
20104
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
20105
|
-
}
|
|
20106
|
-
| {
|
|
20107
|
-
/** The ID of the action attempt. */
|
|
20108
|
-
action_attempt_id: string
|
|
20109
|
-
status: 'success'
|
|
20110
|
-
error: null
|
|
20111
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
20112
|
-
result: {}
|
|
20113
|
-
}
|
|
20114
|
-
| {
|
|
20115
|
-
/** The ID of the action attempt. */
|
|
20116
|
-
action_attempt_id: string
|
|
20117
|
-
status: 'error'
|
|
20118
|
-
result: null
|
|
20119
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
20120
|
-
error: {
|
|
20121
|
-
type: string
|
|
20122
|
-
message: string
|
|
20123
|
-
}
|
|
20124
|
-
}
|
|
20125
19045
|
| {
|
|
20126
19046
|
/** The ID of the action attempt. */
|
|
20127
19047
|
action_attempt_id: string
|
|
@@ -22638,87 +21558,6 @@ export interface Routes {
|
|
|
22638
21558
|
message: string
|
|
22639
21559
|
}
|
|
22640
21560
|
}
|
|
22641
|
-
| {
|
|
22642
|
-
/** The ID of the action attempt. */
|
|
22643
|
-
action_attempt_id: string
|
|
22644
|
-
status: 'pending'
|
|
22645
|
-
result: null
|
|
22646
|
-
error: null
|
|
22647
|
-
action_type: 'SET_COOL'
|
|
22648
|
-
}
|
|
22649
|
-
| {
|
|
22650
|
-
/** The ID of the action attempt. */
|
|
22651
|
-
action_attempt_id: string
|
|
22652
|
-
status: 'success'
|
|
22653
|
-
error: null
|
|
22654
|
-
action_type: 'SET_COOL'
|
|
22655
|
-
result: {}
|
|
22656
|
-
}
|
|
22657
|
-
| {
|
|
22658
|
-
/** The ID of the action attempt. */
|
|
22659
|
-
action_attempt_id: string
|
|
22660
|
-
status: 'error'
|
|
22661
|
-
result: null
|
|
22662
|
-
action_type: 'SET_COOL'
|
|
22663
|
-
error: {
|
|
22664
|
-
type: string
|
|
22665
|
-
message: string
|
|
22666
|
-
}
|
|
22667
|
-
}
|
|
22668
|
-
| {
|
|
22669
|
-
/** The ID of the action attempt. */
|
|
22670
|
-
action_attempt_id: string
|
|
22671
|
-
status: 'pending'
|
|
22672
|
-
result: null
|
|
22673
|
-
error: null
|
|
22674
|
-
action_type: 'SET_HEAT'
|
|
22675
|
-
}
|
|
22676
|
-
| {
|
|
22677
|
-
/** The ID of the action attempt. */
|
|
22678
|
-
action_attempt_id: string
|
|
22679
|
-
status: 'success'
|
|
22680
|
-
error: null
|
|
22681
|
-
action_type: 'SET_HEAT'
|
|
22682
|
-
result: {}
|
|
22683
|
-
}
|
|
22684
|
-
| {
|
|
22685
|
-
/** The ID of the action attempt. */
|
|
22686
|
-
action_attempt_id: string
|
|
22687
|
-
status: 'error'
|
|
22688
|
-
result: null
|
|
22689
|
-
action_type: 'SET_HEAT'
|
|
22690
|
-
error: {
|
|
22691
|
-
type: string
|
|
22692
|
-
message: string
|
|
22693
|
-
}
|
|
22694
|
-
}
|
|
22695
|
-
| {
|
|
22696
|
-
/** The ID of the action attempt. */
|
|
22697
|
-
action_attempt_id: string
|
|
22698
|
-
status: 'pending'
|
|
22699
|
-
result: null
|
|
22700
|
-
error: null
|
|
22701
|
-
action_type: 'SET_HEAT_COOL'
|
|
22702
|
-
}
|
|
22703
|
-
| {
|
|
22704
|
-
/** The ID of the action attempt. */
|
|
22705
|
-
action_attempt_id: string
|
|
22706
|
-
status: 'success'
|
|
22707
|
-
error: null
|
|
22708
|
-
action_type: 'SET_HEAT_COOL'
|
|
22709
|
-
result: {}
|
|
22710
|
-
}
|
|
22711
|
-
| {
|
|
22712
|
-
/** The ID of the action attempt. */
|
|
22713
|
-
action_attempt_id: string
|
|
22714
|
-
status: 'error'
|
|
22715
|
-
result: null
|
|
22716
|
-
action_type: 'SET_HEAT_COOL'
|
|
22717
|
-
error: {
|
|
22718
|
-
type: string
|
|
22719
|
-
message: string
|
|
22720
|
-
}
|
|
22721
|
-
}
|
|
22722
21561
|
| {
|
|
22723
21562
|
/** The ID of the action attempt. */
|
|
22724
21563
|
action_attempt_id: string
|
|
@@ -22746,33 +21585,6 @@ export interface Routes {
|
|
|
22746
21585
|
message: string
|
|
22747
21586
|
}
|
|
22748
21587
|
}
|
|
22749
|
-
| {
|
|
22750
|
-
/** The ID of the action attempt. */
|
|
22751
|
-
action_attempt_id: string
|
|
22752
|
-
status: 'pending'
|
|
22753
|
-
result: null
|
|
22754
|
-
error: null
|
|
22755
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
22756
|
-
}
|
|
22757
|
-
| {
|
|
22758
|
-
/** The ID of the action attempt. */
|
|
22759
|
-
action_attempt_id: string
|
|
22760
|
-
status: 'success'
|
|
22761
|
-
error: null
|
|
22762
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
22763
|
-
result: {}
|
|
22764
|
-
}
|
|
22765
|
-
| {
|
|
22766
|
-
/** The ID of the action attempt. */
|
|
22767
|
-
action_attempt_id: string
|
|
22768
|
-
status: 'error'
|
|
22769
|
-
result: null
|
|
22770
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
22771
|
-
error: {
|
|
22772
|
-
type: string
|
|
22773
|
-
message: string
|
|
22774
|
-
}
|
|
22775
|
-
}
|
|
22776
21588
|
| {
|
|
22777
21589
|
/** The ID of the action attempt. */
|
|
22778
21590
|
action_attempt_id: string
|
|
@@ -23672,87 +22484,6 @@ export interface Routes {
|
|
|
23672
22484
|
message: string
|
|
23673
22485
|
}
|
|
23674
22486
|
}
|
|
23675
|
-
| {
|
|
23676
|
-
/** The ID of the action attempt. */
|
|
23677
|
-
action_attempt_id: string
|
|
23678
|
-
status: 'pending'
|
|
23679
|
-
result: null
|
|
23680
|
-
error: null
|
|
23681
|
-
action_type: 'SET_COOL'
|
|
23682
|
-
}
|
|
23683
|
-
| {
|
|
23684
|
-
/** The ID of the action attempt. */
|
|
23685
|
-
action_attempt_id: string
|
|
23686
|
-
status: 'success'
|
|
23687
|
-
error: null
|
|
23688
|
-
action_type: 'SET_COOL'
|
|
23689
|
-
result: {}
|
|
23690
|
-
}
|
|
23691
|
-
| {
|
|
23692
|
-
/** The ID of the action attempt. */
|
|
23693
|
-
action_attempt_id: string
|
|
23694
|
-
status: 'error'
|
|
23695
|
-
result: null
|
|
23696
|
-
action_type: 'SET_COOL'
|
|
23697
|
-
error: {
|
|
23698
|
-
type: string
|
|
23699
|
-
message: string
|
|
23700
|
-
}
|
|
23701
|
-
}
|
|
23702
|
-
| {
|
|
23703
|
-
/** The ID of the action attempt. */
|
|
23704
|
-
action_attempt_id: string
|
|
23705
|
-
status: 'pending'
|
|
23706
|
-
result: null
|
|
23707
|
-
error: null
|
|
23708
|
-
action_type: 'SET_HEAT'
|
|
23709
|
-
}
|
|
23710
|
-
| {
|
|
23711
|
-
/** The ID of the action attempt. */
|
|
23712
|
-
action_attempt_id: string
|
|
23713
|
-
status: 'success'
|
|
23714
|
-
error: null
|
|
23715
|
-
action_type: 'SET_HEAT'
|
|
23716
|
-
result: {}
|
|
23717
|
-
}
|
|
23718
|
-
| {
|
|
23719
|
-
/** The ID of the action attempt. */
|
|
23720
|
-
action_attempt_id: string
|
|
23721
|
-
status: 'error'
|
|
23722
|
-
result: null
|
|
23723
|
-
action_type: 'SET_HEAT'
|
|
23724
|
-
error: {
|
|
23725
|
-
type: string
|
|
23726
|
-
message: string
|
|
23727
|
-
}
|
|
23728
|
-
}
|
|
23729
|
-
| {
|
|
23730
|
-
/** The ID of the action attempt. */
|
|
23731
|
-
action_attempt_id: string
|
|
23732
|
-
status: 'pending'
|
|
23733
|
-
result: null
|
|
23734
|
-
error: null
|
|
23735
|
-
action_type: 'SET_HEAT_COOL'
|
|
23736
|
-
}
|
|
23737
|
-
| {
|
|
23738
|
-
/** The ID of the action attempt. */
|
|
23739
|
-
action_attempt_id: string
|
|
23740
|
-
status: 'success'
|
|
23741
|
-
error: null
|
|
23742
|
-
action_type: 'SET_HEAT_COOL'
|
|
23743
|
-
result: {}
|
|
23744
|
-
}
|
|
23745
|
-
| {
|
|
23746
|
-
/** The ID of the action attempt. */
|
|
23747
|
-
action_attempt_id: string
|
|
23748
|
-
status: 'error'
|
|
23749
|
-
result: null
|
|
23750
|
-
action_type: 'SET_HEAT_COOL'
|
|
23751
|
-
error: {
|
|
23752
|
-
type: string
|
|
23753
|
-
message: string
|
|
23754
|
-
}
|
|
23755
|
-
}
|
|
23756
22487
|
| {
|
|
23757
22488
|
/** The ID of the action attempt. */
|
|
23758
22489
|
action_attempt_id: string
|
|
@@ -23780,33 +22511,6 @@ export interface Routes {
|
|
|
23780
22511
|
message: string
|
|
23781
22512
|
}
|
|
23782
22513
|
}
|
|
23783
|
-
| {
|
|
23784
|
-
/** The ID of the action attempt. */
|
|
23785
|
-
action_attempt_id: string
|
|
23786
|
-
status: 'pending'
|
|
23787
|
-
result: null
|
|
23788
|
-
error: null
|
|
23789
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
23790
|
-
}
|
|
23791
|
-
| {
|
|
23792
|
-
/** The ID of the action attempt. */
|
|
23793
|
-
action_attempt_id: string
|
|
23794
|
-
status: 'success'
|
|
23795
|
-
error: null
|
|
23796
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
23797
|
-
result: {}
|
|
23798
|
-
}
|
|
23799
|
-
| {
|
|
23800
|
-
/** The ID of the action attempt. */
|
|
23801
|
-
action_attempt_id: string
|
|
23802
|
-
status: 'error'
|
|
23803
|
-
result: null
|
|
23804
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
23805
|
-
error: {
|
|
23806
|
-
type: string
|
|
23807
|
-
message: string
|
|
23808
|
-
}
|
|
23809
|
-
}
|
|
23810
22514
|
| {
|
|
23811
22515
|
/** The ID of the action attempt. */
|
|
23812
22516
|
action_attempt_id: string
|
|
@@ -24745,87 +23449,6 @@ export interface Routes {
|
|
|
24745
23449
|
message: string
|
|
24746
23450
|
}
|
|
24747
23451
|
}
|
|
24748
|
-
| {
|
|
24749
|
-
/** The ID of the action attempt. */
|
|
24750
|
-
action_attempt_id: string
|
|
24751
|
-
status: 'pending'
|
|
24752
|
-
result: null
|
|
24753
|
-
error: null
|
|
24754
|
-
action_type: 'SET_COOL'
|
|
24755
|
-
}
|
|
24756
|
-
| {
|
|
24757
|
-
/** The ID of the action attempt. */
|
|
24758
|
-
action_attempt_id: string
|
|
24759
|
-
status: 'success'
|
|
24760
|
-
error: null
|
|
24761
|
-
action_type: 'SET_COOL'
|
|
24762
|
-
result: {}
|
|
24763
|
-
}
|
|
24764
|
-
| {
|
|
24765
|
-
/** The ID of the action attempt. */
|
|
24766
|
-
action_attempt_id: string
|
|
24767
|
-
status: 'error'
|
|
24768
|
-
result: null
|
|
24769
|
-
action_type: 'SET_COOL'
|
|
24770
|
-
error: {
|
|
24771
|
-
type: string
|
|
24772
|
-
message: string
|
|
24773
|
-
}
|
|
24774
|
-
}
|
|
24775
|
-
| {
|
|
24776
|
-
/** The ID of the action attempt. */
|
|
24777
|
-
action_attempt_id: string
|
|
24778
|
-
status: 'pending'
|
|
24779
|
-
result: null
|
|
24780
|
-
error: null
|
|
24781
|
-
action_type: 'SET_HEAT'
|
|
24782
|
-
}
|
|
24783
|
-
| {
|
|
24784
|
-
/** The ID of the action attempt. */
|
|
24785
|
-
action_attempt_id: string
|
|
24786
|
-
status: 'success'
|
|
24787
|
-
error: null
|
|
24788
|
-
action_type: 'SET_HEAT'
|
|
24789
|
-
result: {}
|
|
24790
|
-
}
|
|
24791
|
-
| {
|
|
24792
|
-
/** The ID of the action attempt. */
|
|
24793
|
-
action_attempt_id: string
|
|
24794
|
-
status: 'error'
|
|
24795
|
-
result: null
|
|
24796
|
-
action_type: 'SET_HEAT'
|
|
24797
|
-
error: {
|
|
24798
|
-
type: string
|
|
24799
|
-
message: string
|
|
24800
|
-
}
|
|
24801
|
-
}
|
|
24802
|
-
| {
|
|
24803
|
-
/** The ID of the action attempt. */
|
|
24804
|
-
action_attempt_id: string
|
|
24805
|
-
status: 'pending'
|
|
24806
|
-
result: null
|
|
24807
|
-
error: null
|
|
24808
|
-
action_type: 'SET_HEAT_COOL'
|
|
24809
|
-
}
|
|
24810
|
-
| {
|
|
24811
|
-
/** The ID of the action attempt. */
|
|
24812
|
-
action_attempt_id: string
|
|
24813
|
-
status: 'success'
|
|
24814
|
-
error: null
|
|
24815
|
-
action_type: 'SET_HEAT_COOL'
|
|
24816
|
-
result: {}
|
|
24817
|
-
}
|
|
24818
|
-
| {
|
|
24819
|
-
/** The ID of the action attempt. */
|
|
24820
|
-
action_attempt_id: string
|
|
24821
|
-
status: 'error'
|
|
24822
|
-
result: null
|
|
24823
|
-
action_type: 'SET_HEAT_COOL'
|
|
24824
|
-
error: {
|
|
24825
|
-
type: string
|
|
24826
|
-
message: string
|
|
24827
|
-
}
|
|
24828
|
-
}
|
|
24829
23452
|
| {
|
|
24830
23453
|
/** The ID of the action attempt. */
|
|
24831
23454
|
action_attempt_id: string
|
|
@@ -24853,33 +23476,6 @@ export interface Routes {
|
|
|
24853
23476
|
message: string
|
|
24854
23477
|
}
|
|
24855
23478
|
}
|
|
24856
|
-
| {
|
|
24857
|
-
/** The ID of the action attempt. */
|
|
24858
|
-
action_attempt_id: string
|
|
24859
|
-
status: 'pending'
|
|
24860
|
-
result: null
|
|
24861
|
-
error: null
|
|
24862
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
24863
|
-
}
|
|
24864
|
-
| {
|
|
24865
|
-
/** The ID of the action attempt. */
|
|
24866
|
-
action_attempt_id: string
|
|
24867
|
-
status: 'success'
|
|
24868
|
-
error: null
|
|
24869
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
24870
|
-
result: {}
|
|
24871
|
-
}
|
|
24872
|
-
| {
|
|
24873
|
-
/** The ID of the action attempt. */
|
|
24874
|
-
action_attempt_id: string
|
|
24875
|
-
status: 'error'
|
|
24876
|
-
result: null
|
|
24877
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
24878
|
-
error: {
|
|
24879
|
-
type: string
|
|
24880
|
-
message: string
|
|
24881
|
-
}
|
|
24882
|
-
}
|
|
24883
23479
|
| {
|
|
24884
23480
|
/** The ID of the action attempt. */
|
|
24885
23481
|
action_attempt_id: string
|
|
@@ -25977,87 +24573,6 @@ export interface Routes {
|
|
|
25977
24573
|
message: string
|
|
25978
24574
|
}
|
|
25979
24575
|
}
|
|
25980
|
-
| {
|
|
25981
|
-
/** The ID of the action attempt. */
|
|
25982
|
-
action_attempt_id: string
|
|
25983
|
-
status: 'pending'
|
|
25984
|
-
result: null
|
|
25985
|
-
error: null
|
|
25986
|
-
action_type: 'SET_COOL'
|
|
25987
|
-
}
|
|
25988
|
-
| {
|
|
25989
|
-
/** The ID of the action attempt. */
|
|
25990
|
-
action_attempt_id: string
|
|
25991
|
-
status: 'success'
|
|
25992
|
-
error: null
|
|
25993
|
-
action_type: 'SET_COOL'
|
|
25994
|
-
result: {}
|
|
25995
|
-
}
|
|
25996
|
-
| {
|
|
25997
|
-
/** The ID of the action attempt. */
|
|
25998
|
-
action_attempt_id: string
|
|
25999
|
-
status: 'error'
|
|
26000
|
-
result: null
|
|
26001
|
-
action_type: 'SET_COOL'
|
|
26002
|
-
error: {
|
|
26003
|
-
type: string
|
|
26004
|
-
message: string
|
|
26005
|
-
}
|
|
26006
|
-
}
|
|
26007
|
-
| {
|
|
26008
|
-
/** The ID of the action attempt. */
|
|
26009
|
-
action_attempt_id: string
|
|
26010
|
-
status: 'pending'
|
|
26011
|
-
result: null
|
|
26012
|
-
error: null
|
|
26013
|
-
action_type: 'SET_HEAT'
|
|
26014
|
-
}
|
|
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
|
-
| {
|
|
26024
|
-
/** The ID of the action attempt. */
|
|
26025
|
-
action_attempt_id: string
|
|
26026
|
-
status: 'error'
|
|
26027
|
-
result: null
|
|
26028
|
-
action_type: 'SET_HEAT'
|
|
26029
|
-
error: {
|
|
26030
|
-
type: string
|
|
26031
|
-
message: string
|
|
26032
|
-
}
|
|
26033
|
-
}
|
|
26034
|
-
| {
|
|
26035
|
-
/** The ID of the action attempt. */
|
|
26036
|
-
action_attempt_id: string
|
|
26037
|
-
status: 'pending'
|
|
26038
|
-
result: null
|
|
26039
|
-
error: null
|
|
26040
|
-
action_type: 'SET_HEAT_COOL'
|
|
26041
|
-
}
|
|
26042
|
-
| {
|
|
26043
|
-
/** The ID of the action attempt. */
|
|
26044
|
-
action_attempt_id: string
|
|
26045
|
-
status: 'success'
|
|
26046
|
-
error: null
|
|
26047
|
-
action_type: 'SET_HEAT_COOL'
|
|
26048
|
-
result: {}
|
|
26049
|
-
}
|
|
26050
|
-
| {
|
|
26051
|
-
/** The ID of the action attempt. */
|
|
26052
|
-
action_attempt_id: string
|
|
26053
|
-
status: 'error'
|
|
26054
|
-
result: null
|
|
26055
|
-
action_type: 'SET_HEAT_COOL'
|
|
26056
|
-
error: {
|
|
26057
|
-
type: string
|
|
26058
|
-
message: string
|
|
26059
|
-
}
|
|
26060
|
-
}
|
|
26061
24576
|
| {
|
|
26062
24577
|
/** The ID of the action attempt. */
|
|
26063
24578
|
action_attempt_id: string
|
|
@@ -26085,33 +24600,6 @@ export interface Routes {
|
|
|
26085
24600
|
message: string
|
|
26086
24601
|
}
|
|
26087
24602
|
}
|
|
26088
|
-
| {
|
|
26089
|
-
/** The ID of the action attempt. */
|
|
26090
|
-
action_attempt_id: string
|
|
26091
|
-
status: 'pending'
|
|
26092
|
-
result: null
|
|
26093
|
-
error: null
|
|
26094
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
26095
|
-
}
|
|
26096
|
-
| {
|
|
26097
|
-
/** The ID of the action attempt. */
|
|
26098
|
-
action_attempt_id: string
|
|
26099
|
-
status: 'success'
|
|
26100
|
-
error: null
|
|
26101
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
26102
|
-
result: {}
|
|
26103
|
-
}
|
|
26104
|
-
| {
|
|
26105
|
-
/** The ID of the action attempt. */
|
|
26106
|
-
action_attempt_id: string
|
|
26107
|
-
status: 'error'
|
|
26108
|
-
result: null
|
|
26109
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
26110
|
-
error: {
|
|
26111
|
-
type: string
|
|
26112
|
-
message: string
|
|
26113
|
-
}
|
|
26114
|
-
}
|
|
26115
24603
|
| {
|
|
26116
24604
|
/** The ID of the action attempt. */
|
|
26117
24605
|
action_attempt_id: string
|
|
@@ -27007,87 +25495,6 @@ export interface Routes {
|
|
|
27007
25495
|
message: string
|
|
27008
25496
|
}
|
|
27009
25497
|
}
|
|
27010
|
-
| {
|
|
27011
|
-
/** The ID of the action attempt. */
|
|
27012
|
-
action_attempt_id: string
|
|
27013
|
-
status: 'pending'
|
|
27014
|
-
result: null
|
|
27015
|
-
error: null
|
|
27016
|
-
action_type: 'SET_COOL'
|
|
27017
|
-
}
|
|
27018
|
-
| {
|
|
27019
|
-
/** The ID of the action attempt. */
|
|
27020
|
-
action_attempt_id: string
|
|
27021
|
-
status: 'success'
|
|
27022
|
-
error: null
|
|
27023
|
-
action_type: 'SET_COOL'
|
|
27024
|
-
result: {}
|
|
27025
|
-
}
|
|
27026
|
-
| {
|
|
27027
|
-
/** The ID of the action attempt. */
|
|
27028
|
-
action_attempt_id: string
|
|
27029
|
-
status: 'error'
|
|
27030
|
-
result: null
|
|
27031
|
-
action_type: 'SET_COOL'
|
|
27032
|
-
error: {
|
|
27033
|
-
type: string
|
|
27034
|
-
message: string
|
|
27035
|
-
}
|
|
27036
|
-
}
|
|
27037
|
-
| {
|
|
27038
|
-
/** The ID of the action attempt. */
|
|
27039
|
-
action_attempt_id: string
|
|
27040
|
-
status: 'pending'
|
|
27041
|
-
result: null
|
|
27042
|
-
error: null
|
|
27043
|
-
action_type: 'SET_HEAT'
|
|
27044
|
-
}
|
|
27045
|
-
| {
|
|
27046
|
-
/** The ID of the action attempt. */
|
|
27047
|
-
action_attempt_id: string
|
|
27048
|
-
status: 'success'
|
|
27049
|
-
error: null
|
|
27050
|
-
action_type: 'SET_HEAT'
|
|
27051
|
-
result: {}
|
|
27052
|
-
}
|
|
27053
|
-
| {
|
|
27054
|
-
/** The ID of the action attempt. */
|
|
27055
|
-
action_attempt_id: string
|
|
27056
|
-
status: 'error'
|
|
27057
|
-
result: null
|
|
27058
|
-
action_type: 'SET_HEAT'
|
|
27059
|
-
error: {
|
|
27060
|
-
type: string
|
|
27061
|
-
message: string
|
|
27062
|
-
}
|
|
27063
|
-
}
|
|
27064
|
-
| {
|
|
27065
|
-
/** The ID of the action attempt. */
|
|
27066
|
-
action_attempt_id: string
|
|
27067
|
-
status: 'pending'
|
|
27068
|
-
result: null
|
|
27069
|
-
error: null
|
|
27070
|
-
action_type: 'SET_HEAT_COOL'
|
|
27071
|
-
}
|
|
27072
|
-
| {
|
|
27073
|
-
/** The ID of the action attempt. */
|
|
27074
|
-
action_attempt_id: string
|
|
27075
|
-
status: 'success'
|
|
27076
|
-
error: null
|
|
27077
|
-
action_type: 'SET_HEAT_COOL'
|
|
27078
|
-
result: {}
|
|
27079
|
-
}
|
|
27080
|
-
| {
|
|
27081
|
-
/** The ID of the action attempt. */
|
|
27082
|
-
action_attempt_id: string
|
|
27083
|
-
status: 'error'
|
|
27084
|
-
result: null
|
|
27085
|
-
action_type: 'SET_HEAT_COOL'
|
|
27086
|
-
error: {
|
|
27087
|
-
type: string
|
|
27088
|
-
message: string
|
|
27089
|
-
}
|
|
27090
|
-
}
|
|
27091
25498
|
| {
|
|
27092
25499
|
/** The ID of the action attempt. */
|
|
27093
25500
|
action_attempt_id: string
|
|
@@ -27115,33 +25522,6 @@ export interface Routes {
|
|
|
27115
25522
|
message: string
|
|
27116
25523
|
}
|
|
27117
25524
|
}
|
|
27118
|
-
| {
|
|
27119
|
-
/** The ID of the action attempt. */
|
|
27120
|
-
action_attempt_id: string
|
|
27121
|
-
status: 'pending'
|
|
27122
|
-
result: null
|
|
27123
|
-
error: null
|
|
27124
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
27125
|
-
}
|
|
27126
|
-
| {
|
|
27127
|
-
/** The ID of the action attempt. */
|
|
27128
|
-
action_attempt_id: string
|
|
27129
|
-
status: 'success'
|
|
27130
|
-
error: null
|
|
27131
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
27132
|
-
result: {}
|
|
27133
|
-
}
|
|
27134
|
-
| {
|
|
27135
|
-
/** The ID of the action attempt. */
|
|
27136
|
-
action_attempt_id: string
|
|
27137
|
-
status: 'error'
|
|
27138
|
-
result: null
|
|
27139
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
27140
|
-
error: {
|
|
27141
|
-
type: string
|
|
27142
|
-
message: string
|
|
27143
|
-
}
|
|
27144
|
-
}
|
|
27145
25525
|
| {
|
|
27146
25526
|
/** The ID of the action attempt. */
|
|
27147
25527
|
action_attempt_id: string
|
|
@@ -28797,87 +27177,6 @@ export interface Routes {
|
|
|
28797
27177
|
message: string
|
|
28798
27178
|
}
|
|
28799
27179
|
}
|
|
28800
|
-
| {
|
|
28801
|
-
/** The ID of the action attempt. */
|
|
28802
|
-
action_attempt_id: string
|
|
28803
|
-
status: 'pending'
|
|
28804
|
-
result: null
|
|
28805
|
-
error: null
|
|
28806
|
-
action_type: 'SET_COOL'
|
|
28807
|
-
}
|
|
28808
|
-
| {
|
|
28809
|
-
/** The ID of the action attempt. */
|
|
28810
|
-
action_attempt_id: string
|
|
28811
|
-
status: 'success'
|
|
28812
|
-
error: null
|
|
28813
|
-
action_type: 'SET_COOL'
|
|
28814
|
-
result: {}
|
|
28815
|
-
}
|
|
28816
|
-
| {
|
|
28817
|
-
/** The ID of the action attempt. */
|
|
28818
|
-
action_attempt_id: string
|
|
28819
|
-
status: 'error'
|
|
28820
|
-
result: null
|
|
28821
|
-
action_type: 'SET_COOL'
|
|
28822
|
-
error: {
|
|
28823
|
-
type: string
|
|
28824
|
-
message: string
|
|
28825
|
-
}
|
|
28826
|
-
}
|
|
28827
|
-
| {
|
|
28828
|
-
/** The ID of the action attempt. */
|
|
28829
|
-
action_attempt_id: string
|
|
28830
|
-
status: 'pending'
|
|
28831
|
-
result: null
|
|
28832
|
-
error: null
|
|
28833
|
-
action_type: 'SET_HEAT'
|
|
28834
|
-
}
|
|
28835
|
-
| {
|
|
28836
|
-
/** The ID of the action attempt. */
|
|
28837
|
-
action_attempt_id: string
|
|
28838
|
-
status: 'success'
|
|
28839
|
-
error: null
|
|
28840
|
-
action_type: 'SET_HEAT'
|
|
28841
|
-
result: {}
|
|
28842
|
-
}
|
|
28843
|
-
| {
|
|
28844
|
-
/** The ID of the action attempt. */
|
|
28845
|
-
action_attempt_id: string
|
|
28846
|
-
status: 'error'
|
|
28847
|
-
result: null
|
|
28848
|
-
action_type: 'SET_HEAT'
|
|
28849
|
-
error: {
|
|
28850
|
-
type: string
|
|
28851
|
-
message: string
|
|
28852
|
-
}
|
|
28853
|
-
}
|
|
28854
|
-
| {
|
|
28855
|
-
/** The ID of the action attempt. */
|
|
28856
|
-
action_attempt_id: string
|
|
28857
|
-
status: 'pending'
|
|
28858
|
-
result: null
|
|
28859
|
-
error: null
|
|
28860
|
-
action_type: 'SET_HEAT_COOL'
|
|
28861
|
-
}
|
|
28862
|
-
| {
|
|
28863
|
-
/** The ID of the action attempt. */
|
|
28864
|
-
action_attempt_id: string
|
|
28865
|
-
status: 'success'
|
|
28866
|
-
error: null
|
|
28867
|
-
action_type: 'SET_HEAT_COOL'
|
|
28868
|
-
result: {}
|
|
28869
|
-
}
|
|
28870
|
-
| {
|
|
28871
|
-
/** The ID of the action attempt. */
|
|
28872
|
-
action_attempt_id: string
|
|
28873
|
-
status: 'error'
|
|
28874
|
-
result: null
|
|
28875
|
-
action_type: 'SET_HEAT_COOL'
|
|
28876
|
-
error: {
|
|
28877
|
-
type: string
|
|
28878
|
-
message: string
|
|
28879
|
-
}
|
|
28880
|
-
}
|
|
28881
27180
|
| {
|
|
28882
27181
|
/** The ID of the action attempt. */
|
|
28883
27182
|
action_attempt_id: string
|
|
@@ -28905,33 +27204,6 @@ export interface Routes {
|
|
|
28905
27204
|
message: string
|
|
28906
27205
|
}
|
|
28907
27206
|
}
|
|
28908
|
-
| {
|
|
28909
|
-
/** The ID of the action attempt. */
|
|
28910
|
-
action_attempt_id: string
|
|
28911
|
-
status: 'pending'
|
|
28912
|
-
result: null
|
|
28913
|
-
error: null
|
|
28914
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
28915
|
-
}
|
|
28916
|
-
| {
|
|
28917
|
-
/** The ID of the action attempt. */
|
|
28918
|
-
action_attempt_id: string
|
|
28919
|
-
status: 'success'
|
|
28920
|
-
error: null
|
|
28921
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
28922
|
-
result: {}
|
|
28923
|
-
}
|
|
28924
|
-
| {
|
|
28925
|
-
/** The ID of the action attempt. */
|
|
28926
|
-
action_attempt_id: string
|
|
28927
|
-
status: 'error'
|
|
28928
|
-
result: null
|
|
28929
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
28930
|
-
error: {
|
|
28931
|
-
type: string
|
|
28932
|
-
message: string
|
|
28933
|
-
}
|
|
28934
|
-
}
|
|
28935
27207
|
| {
|
|
28936
27208
|
/** The ID of the action attempt. */
|
|
28937
27209
|
action_attempt_id: string
|
|
@@ -29831,87 +28103,6 @@ export interface Routes {
|
|
|
29831
28103
|
message: string
|
|
29832
28104
|
}
|
|
29833
28105
|
}
|
|
29834
|
-
| {
|
|
29835
|
-
/** The ID of the action attempt. */
|
|
29836
|
-
action_attempt_id: string
|
|
29837
|
-
status: 'pending'
|
|
29838
|
-
result: null
|
|
29839
|
-
error: null
|
|
29840
|
-
action_type: 'SET_COOL'
|
|
29841
|
-
}
|
|
29842
|
-
| {
|
|
29843
|
-
/** The ID of the action attempt. */
|
|
29844
|
-
action_attempt_id: string
|
|
29845
|
-
status: 'success'
|
|
29846
|
-
error: null
|
|
29847
|
-
action_type: 'SET_COOL'
|
|
29848
|
-
result: {}
|
|
29849
|
-
}
|
|
29850
|
-
| {
|
|
29851
|
-
/** The ID of the action attempt. */
|
|
29852
|
-
action_attempt_id: string
|
|
29853
|
-
status: 'error'
|
|
29854
|
-
result: null
|
|
29855
|
-
action_type: 'SET_COOL'
|
|
29856
|
-
error: {
|
|
29857
|
-
type: string
|
|
29858
|
-
message: string
|
|
29859
|
-
}
|
|
29860
|
-
}
|
|
29861
|
-
| {
|
|
29862
|
-
/** The ID of the action attempt. */
|
|
29863
|
-
action_attempt_id: string
|
|
29864
|
-
status: 'pending'
|
|
29865
|
-
result: null
|
|
29866
|
-
error: null
|
|
29867
|
-
action_type: 'SET_HEAT'
|
|
29868
|
-
}
|
|
29869
|
-
| {
|
|
29870
|
-
/** The ID of the action attempt. */
|
|
29871
|
-
action_attempt_id: string
|
|
29872
|
-
status: 'success'
|
|
29873
|
-
error: null
|
|
29874
|
-
action_type: 'SET_HEAT'
|
|
29875
|
-
result: {}
|
|
29876
|
-
}
|
|
29877
|
-
| {
|
|
29878
|
-
/** The ID of the action attempt. */
|
|
29879
|
-
action_attempt_id: string
|
|
29880
|
-
status: 'error'
|
|
29881
|
-
result: null
|
|
29882
|
-
action_type: 'SET_HEAT'
|
|
29883
|
-
error: {
|
|
29884
|
-
type: string
|
|
29885
|
-
message: string
|
|
29886
|
-
}
|
|
29887
|
-
}
|
|
29888
|
-
| {
|
|
29889
|
-
/** The ID of the action attempt. */
|
|
29890
|
-
action_attempt_id: string
|
|
29891
|
-
status: 'pending'
|
|
29892
|
-
result: null
|
|
29893
|
-
error: null
|
|
29894
|
-
action_type: 'SET_HEAT_COOL'
|
|
29895
|
-
}
|
|
29896
|
-
| {
|
|
29897
|
-
/** The ID of the action attempt. */
|
|
29898
|
-
action_attempt_id: string
|
|
29899
|
-
status: 'success'
|
|
29900
|
-
error: null
|
|
29901
|
-
action_type: 'SET_HEAT_COOL'
|
|
29902
|
-
result: {}
|
|
29903
|
-
}
|
|
29904
|
-
| {
|
|
29905
|
-
/** The ID of the action attempt. */
|
|
29906
|
-
action_attempt_id: string
|
|
29907
|
-
status: 'error'
|
|
29908
|
-
result: null
|
|
29909
|
-
action_type: 'SET_HEAT_COOL'
|
|
29910
|
-
error: {
|
|
29911
|
-
type: string
|
|
29912
|
-
message: string
|
|
29913
|
-
}
|
|
29914
|
-
}
|
|
29915
28106
|
| {
|
|
29916
28107
|
/** The ID of the action attempt. */
|
|
29917
28108
|
action_attempt_id: string
|
|
@@ -29939,33 +28130,6 @@ export interface Routes {
|
|
|
29939
28130
|
message: string
|
|
29940
28131
|
}
|
|
29941
28132
|
}
|
|
29942
|
-
| {
|
|
29943
|
-
/** The ID of the action attempt. */
|
|
29944
|
-
action_attempt_id: string
|
|
29945
|
-
status: 'pending'
|
|
29946
|
-
result: null
|
|
29947
|
-
error: null
|
|
29948
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
29949
|
-
}
|
|
29950
|
-
| {
|
|
29951
|
-
/** The ID of the action attempt. */
|
|
29952
|
-
action_attempt_id: string
|
|
29953
|
-
status: 'success'
|
|
29954
|
-
error: null
|
|
29955
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
29956
|
-
result: {}
|
|
29957
|
-
}
|
|
29958
|
-
| {
|
|
29959
|
-
/** The ID of the action attempt. */
|
|
29960
|
-
action_attempt_id: string
|
|
29961
|
-
status: 'error'
|
|
29962
|
-
result: null
|
|
29963
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
29964
|
-
error: {
|
|
29965
|
-
type: string
|
|
29966
|
-
message: string
|
|
29967
|
-
}
|
|
29968
|
-
}
|
|
29969
28133
|
| {
|
|
29970
28134
|
/** The ID of the action attempt. */
|
|
29971
28135
|
action_attempt_id: string
|
|
@@ -32445,87 +30609,6 @@ export interface Routes {
|
|
|
32445
30609
|
message: string
|
|
32446
30610
|
}
|
|
32447
30611
|
}
|
|
32448
|
-
| {
|
|
32449
|
-
/** The ID of the action attempt. */
|
|
32450
|
-
action_attempt_id: string
|
|
32451
|
-
status: 'pending'
|
|
32452
|
-
result: null
|
|
32453
|
-
error: null
|
|
32454
|
-
action_type: 'SET_COOL'
|
|
32455
|
-
}
|
|
32456
|
-
| {
|
|
32457
|
-
/** The ID of the action attempt. */
|
|
32458
|
-
action_attempt_id: string
|
|
32459
|
-
status: 'success'
|
|
32460
|
-
error: null
|
|
32461
|
-
action_type: 'SET_COOL'
|
|
32462
|
-
result: {}
|
|
32463
|
-
}
|
|
32464
|
-
| {
|
|
32465
|
-
/** The ID of the action attempt. */
|
|
32466
|
-
action_attempt_id: string
|
|
32467
|
-
status: 'error'
|
|
32468
|
-
result: null
|
|
32469
|
-
action_type: 'SET_COOL'
|
|
32470
|
-
error: {
|
|
32471
|
-
type: string
|
|
32472
|
-
message: string
|
|
32473
|
-
}
|
|
32474
|
-
}
|
|
32475
|
-
| {
|
|
32476
|
-
/** The ID of the action attempt. */
|
|
32477
|
-
action_attempt_id: string
|
|
32478
|
-
status: 'pending'
|
|
32479
|
-
result: null
|
|
32480
|
-
error: null
|
|
32481
|
-
action_type: 'SET_HEAT'
|
|
32482
|
-
}
|
|
32483
|
-
| {
|
|
32484
|
-
/** The ID of the action attempt. */
|
|
32485
|
-
action_attempt_id: string
|
|
32486
|
-
status: 'success'
|
|
32487
|
-
error: null
|
|
32488
|
-
action_type: 'SET_HEAT'
|
|
32489
|
-
result: {}
|
|
32490
|
-
}
|
|
32491
|
-
| {
|
|
32492
|
-
/** The ID of the action attempt. */
|
|
32493
|
-
action_attempt_id: string
|
|
32494
|
-
status: 'error'
|
|
32495
|
-
result: null
|
|
32496
|
-
action_type: 'SET_HEAT'
|
|
32497
|
-
error: {
|
|
32498
|
-
type: string
|
|
32499
|
-
message: string
|
|
32500
|
-
}
|
|
32501
|
-
}
|
|
32502
|
-
| {
|
|
32503
|
-
/** The ID of the action attempt. */
|
|
32504
|
-
action_attempt_id: string
|
|
32505
|
-
status: 'pending'
|
|
32506
|
-
result: null
|
|
32507
|
-
error: null
|
|
32508
|
-
action_type: 'SET_HEAT_COOL'
|
|
32509
|
-
}
|
|
32510
|
-
| {
|
|
32511
|
-
/** The ID of the action attempt. */
|
|
32512
|
-
action_attempt_id: string
|
|
32513
|
-
status: 'success'
|
|
32514
|
-
error: null
|
|
32515
|
-
action_type: 'SET_HEAT_COOL'
|
|
32516
|
-
result: {}
|
|
32517
|
-
}
|
|
32518
|
-
| {
|
|
32519
|
-
/** The ID of the action attempt. */
|
|
32520
|
-
action_attempt_id: string
|
|
32521
|
-
status: 'error'
|
|
32522
|
-
result: null
|
|
32523
|
-
action_type: 'SET_HEAT_COOL'
|
|
32524
|
-
error: {
|
|
32525
|
-
type: string
|
|
32526
|
-
message: string
|
|
32527
|
-
}
|
|
32528
|
-
}
|
|
32529
30612
|
| {
|
|
32530
30613
|
/** The ID of the action attempt. */
|
|
32531
30614
|
action_attempt_id: string
|
|
@@ -32553,33 +30636,6 @@ export interface Routes {
|
|
|
32553
30636
|
message: string
|
|
32554
30637
|
}
|
|
32555
30638
|
}
|
|
32556
|
-
| {
|
|
32557
|
-
/** The ID of the action attempt. */
|
|
32558
|
-
action_attempt_id: string
|
|
32559
|
-
status: 'pending'
|
|
32560
|
-
result: null
|
|
32561
|
-
error: null
|
|
32562
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
32563
|
-
}
|
|
32564
|
-
| {
|
|
32565
|
-
/** The ID of the action attempt. */
|
|
32566
|
-
action_attempt_id: string
|
|
32567
|
-
status: 'success'
|
|
32568
|
-
error: null
|
|
32569
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
32570
|
-
result: {}
|
|
32571
|
-
}
|
|
32572
|
-
| {
|
|
32573
|
-
/** The ID of the action attempt. */
|
|
32574
|
-
action_attempt_id: string
|
|
32575
|
-
status: 'error'
|
|
32576
|
-
result: null
|
|
32577
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
32578
|
-
error: {
|
|
32579
|
-
type: string
|
|
32580
|
-
message: string
|
|
32581
|
-
}
|
|
32582
|
-
}
|
|
32583
30639
|
| {
|
|
32584
30640
|
/** The ID of the action attempt. */
|
|
32585
30641
|
action_attempt_id: string
|
|
@@ -33644,87 +31700,6 @@ export interface Routes {
|
|
|
33644
31700
|
message: string
|
|
33645
31701
|
}
|
|
33646
31702
|
}
|
|
33647
|
-
| {
|
|
33648
|
-
/** The ID of the action attempt. */
|
|
33649
|
-
action_attempt_id: string
|
|
33650
|
-
status: 'pending'
|
|
33651
|
-
result: null
|
|
33652
|
-
error: null
|
|
33653
|
-
action_type: 'SET_COOL'
|
|
33654
|
-
}
|
|
33655
|
-
| {
|
|
33656
|
-
/** The ID of the action attempt. */
|
|
33657
|
-
action_attempt_id: string
|
|
33658
|
-
status: 'success'
|
|
33659
|
-
error: null
|
|
33660
|
-
action_type: 'SET_COOL'
|
|
33661
|
-
result: {}
|
|
33662
|
-
}
|
|
33663
|
-
| {
|
|
33664
|
-
/** The ID of the action attempt. */
|
|
33665
|
-
action_attempt_id: string
|
|
33666
|
-
status: 'error'
|
|
33667
|
-
result: null
|
|
33668
|
-
action_type: 'SET_COOL'
|
|
33669
|
-
error: {
|
|
33670
|
-
type: string
|
|
33671
|
-
message: string
|
|
33672
|
-
}
|
|
33673
|
-
}
|
|
33674
|
-
| {
|
|
33675
|
-
/** The ID of the action attempt. */
|
|
33676
|
-
action_attempt_id: string
|
|
33677
|
-
status: 'pending'
|
|
33678
|
-
result: null
|
|
33679
|
-
error: null
|
|
33680
|
-
action_type: 'SET_HEAT'
|
|
33681
|
-
}
|
|
33682
|
-
| {
|
|
33683
|
-
/** The ID of the action attempt. */
|
|
33684
|
-
action_attempt_id: string
|
|
33685
|
-
status: 'success'
|
|
33686
|
-
error: null
|
|
33687
|
-
action_type: 'SET_HEAT'
|
|
33688
|
-
result: {}
|
|
33689
|
-
}
|
|
33690
|
-
| {
|
|
33691
|
-
/** The ID of the action attempt. */
|
|
33692
|
-
action_attempt_id: string
|
|
33693
|
-
status: 'error'
|
|
33694
|
-
result: null
|
|
33695
|
-
action_type: 'SET_HEAT'
|
|
33696
|
-
error: {
|
|
33697
|
-
type: string
|
|
33698
|
-
message: string
|
|
33699
|
-
}
|
|
33700
|
-
}
|
|
33701
|
-
| {
|
|
33702
|
-
/** The ID of the action attempt. */
|
|
33703
|
-
action_attempt_id: string
|
|
33704
|
-
status: 'pending'
|
|
33705
|
-
result: null
|
|
33706
|
-
error: null
|
|
33707
|
-
action_type: 'SET_HEAT_COOL'
|
|
33708
|
-
}
|
|
33709
|
-
| {
|
|
33710
|
-
/** The ID of the action attempt. */
|
|
33711
|
-
action_attempt_id: string
|
|
33712
|
-
status: 'success'
|
|
33713
|
-
error: null
|
|
33714
|
-
action_type: 'SET_HEAT_COOL'
|
|
33715
|
-
result: {}
|
|
33716
|
-
}
|
|
33717
|
-
| {
|
|
33718
|
-
/** The ID of the action attempt. */
|
|
33719
|
-
action_attempt_id: string
|
|
33720
|
-
status: 'error'
|
|
33721
|
-
result: null
|
|
33722
|
-
action_type: 'SET_HEAT_COOL'
|
|
33723
|
-
error: {
|
|
33724
|
-
type: string
|
|
33725
|
-
message: string
|
|
33726
|
-
}
|
|
33727
|
-
}
|
|
33728
31703
|
| {
|
|
33729
31704
|
/** The ID of the action attempt. */
|
|
33730
31705
|
action_attempt_id: string
|
|
@@ -33752,33 +31727,6 @@ export interface Routes {
|
|
|
33752
31727
|
message: string
|
|
33753
31728
|
}
|
|
33754
31729
|
}
|
|
33755
|
-
| {
|
|
33756
|
-
/** The ID of the action attempt. */
|
|
33757
|
-
action_attempt_id: string
|
|
33758
|
-
status: 'pending'
|
|
33759
|
-
result: null
|
|
33760
|
-
error: null
|
|
33761
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
33762
|
-
}
|
|
33763
|
-
| {
|
|
33764
|
-
/** The ID of the action attempt. */
|
|
33765
|
-
action_attempt_id: string
|
|
33766
|
-
status: 'success'
|
|
33767
|
-
error: null
|
|
33768
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
33769
|
-
result: {}
|
|
33770
|
-
}
|
|
33771
|
-
| {
|
|
33772
|
-
/** The ID of the action attempt. */
|
|
33773
|
-
action_attempt_id: string
|
|
33774
|
-
status: 'error'
|
|
33775
|
-
result: null
|
|
33776
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
33777
|
-
error: {
|
|
33778
|
-
type: string
|
|
33779
|
-
message: string
|
|
33780
|
-
}
|
|
33781
|
-
}
|
|
33782
31730
|
| {
|
|
33783
31731
|
/** The ID of the action attempt. */
|
|
33784
31732
|
action_attempt_id: string
|
|
@@ -34701,87 +32649,6 @@ export interface Routes {
|
|
|
34701
32649
|
message: string
|
|
34702
32650
|
}
|
|
34703
32651
|
}
|
|
34704
|
-
| {
|
|
34705
|
-
/** The ID of the action attempt. */
|
|
34706
|
-
action_attempt_id: string
|
|
34707
|
-
status: 'pending'
|
|
34708
|
-
result: null
|
|
34709
|
-
error: null
|
|
34710
|
-
action_type: 'SET_COOL'
|
|
34711
|
-
}
|
|
34712
|
-
| {
|
|
34713
|
-
/** The ID of the action attempt. */
|
|
34714
|
-
action_attempt_id: string
|
|
34715
|
-
status: 'success'
|
|
34716
|
-
error: null
|
|
34717
|
-
action_type: 'SET_COOL'
|
|
34718
|
-
result: {}
|
|
34719
|
-
}
|
|
34720
|
-
| {
|
|
34721
|
-
/** The ID of the action attempt. */
|
|
34722
|
-
action_attempt_id: string
|
|
34723
|
-
status: 'error'
|
|
34724
|
-
result: null
|
|
34725
|
-
action_type: 'SET_COOL'
|
|
34726
|
-
error: {
|
|
34727
|
-
type: string
|
|
34728
|
-
message: string
|
|
34729
|
-
}
|
|
34730
|
-
}
|
|
34731
|
-
| {
|
|
34732
|
-
/** The ID of the action attempt. */
|
|
34733
|
-
action_attempt_id: string
|
|
34734
|
-
status: 'pending'
|
|
34735
|
-
result: null
|
|
34736
|
-
error: null
|
|
34737
|
-
action_type: 'SET_HEAT'
|
|
34738
|
-
}
|
|
34739
|
-
| {
|
|
34740
|
-
/** The ID of the action attempt. */
|
|
34741
|
-
action_attempt_id: string
|
|
34742
|
-
status: 'success'
|
|
34743
|
-
error: null
|
|
34744
|
-
action_type: 'SET_HEAT'
|
|
34745
|
-
result: {}
|
|
34746
|
-
}
|
|
34747
|
-
| {
|
|
34748
|
-
/** The ID of the action attempt. */
|
|
34749
|
-
action_attempt_id: string
|
|
34750
|
-
status: 'error'
|
|
34751
|
-
result: null
|
|
34752
|
-
action_type: 'SET_HEAT'
|
|
34753
|
-
error: {
|
|
34754
|
-
type: string
|
|
34755
|
-
message: string
|
|
34756
|
-
}
|
|
34757
|
-
}
|
|
34758
|
-
| {
|
|
34759
|
-
/** The ID of the action attempt. */
|
|
34760
|
-
action_attempt_id: string
|
|
34761
|
-
status: 'pending'
|
|
34762
|
-
result: null
|
|
34763
|
-
error: null
|
|
34764
|
-
action_type: 'SET_HEAT_COOL'
|
|
34765
|
-
}
|
|
34766
|
-
| {
|
|
34767
|
-
/** The ID of the action attempt. */
|
|
34768
|
-
action_attempt_id: string
|
|
34769
|
-
status: 'success'
|
|
34770
|
-
error: null
|
|
34771
|
-
action_type: 'SET_HEAT_COOL'
|
|
34772
|
-
result: {}
|
|
34773
|
-
}
|
|
34774
|
-
| {
|
|
34775
|
-
/** The ID of the action attempt. */
|
|
34776
|
-
action_attempt_id: string
|
|
34777
|
-
status: 'error'
|
|
34778
|
-
result: null
|
|
34779
|
-
action_type: 'SET_HEAT_COOL'
|
|
34780
|
-
error: {
|
|
34781
|
-
type: string
|
|
34782
|
-
message: string
|
|
34783
|
-
}
|
|
34784
|
-
}
|
|
34785
32652
|
| {
|
|
34786
32653
|
/** The ID of the action attempt. */
|
|
34787
32654
|
action_attempt_id: string
|
|
@@ -34809,33 +32676,6 @@ export interface Routes {
|
|
|
34809
32676
|
message: string
|
|
34810
32677
|
}
|
|
34811
32678
|
}
|
|
34812
|
-
| {
|
|
34813
|
-
/** The ID of the action attempt. */
|
|
34814
|
-
action_attempt_id: string
|
|
34815
|
-
status: 'pending'
|
|
34816
|
-
result: null
|
|
34817
|
-
error: null
|
|
34818
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
34819
|
-
}
|
|
34820
|
-
| {
|
|
34821
|
-
/** The ID of the action attempt. */
|
|
34822
|
-
action_attempt_id: string
|
|
34823
|
-
status: 'success'
|
|
34824
|
-
error: null
|
|
34825
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
34826
|
-
result: {}
|
|
34827
|
-
}
|
|
34828
|
-
| {
|
|
34829
|
-
/** The ID of the action attempt. */
|
|
34830
|
-
action_attempt_id: string
|
|
34831
|
-
status: 'error'
|
|
34832
|
-
result: null
|
|
34833
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
34834
|
-
error: {
|
|
34835
|
-
type: string
|
|
34836
|
-
message: string
|
|
34837
|
-
}
|
|
34838
|
-
}
|
|
34839
32679
|
| {
|
|
34840
32680
|
/** The ID of the action attempt. */
|
|
34841
32681
|
action_attempt_id: string
|
|
@@ -37902,87 +35742,6 @@ export interface Routes {
|
|
|
37902
35742
|
message: string
|
|
37903
35743
|
}
|
|
37904
35744
|
}
|
|
37905
|
-
| {
|
|
37906
|
-
/** The ID of the action attempt. */
|
|
37907
|
-
action_attempt_id: string
|
|
37908
|
-
status: 'pending'
|
|
37909
|
-
result: null
|
|
37910
|
-
error: null
|
|
37911
|
-
action_type: 'SET_COOL'
|
|
37912
|
-
}
|
|
37913
|
-
| {
|
|
37914
|
-
/** The ID of the action attempt. */
|
|
37915
|
-
action_attempt_id: string
|
|
37916
|
-
status: 'success'
|
|
37917
|
-
error: null
|
|
37918
|
-
action_type: 'SET_COOL'
|
|
37919
|
-
result: {}
|
|
37920
|
-
}
|
|
37921
|
-
| {
|
|
37922
|
-
/** The ID of the action attempt. */
|
|
37923
|
-
action_attempt_id: string
|
|
37924
|
-
status: 'error'
|
|
37925
|
-
result: null
|
|
37926
|
-
action_type: 'SET_COOL'
|
|
37927
|
-
error: {
|
|
37928
|
-
type: string
|
|
37929
|
-
message: string
|
|
37930
|
-
}
|
|
37931
|
-
}
|
|
37932
|
-
| {
|
|
37933
|
-
/** The ID of the action attempt. */
|
|
37934
|
-
action_attempt_id: string
|
|
37935
|
-
status: 'pending'
|
|
37936
|
-
result: null
|
|
37937
|
-
error: null
|
|
37938
|
-
action_type: 'SET_HEAT'
|
|
37939
|
-
}
|
|
37940
|
-
| {
|
|
37941
|
-
/** The ID of the action attempt. */
|
|
37942
|
-
action_attempt_id: string
|
|
37943
|
-
status: 'success'
|
|
37944
|
-
error: null
|
|
37945
|
-
action_type: 'SET_HEAT'
|
|
37946
|
-
result: {}
|
|
37947
|
-
}
|
|
37948
|
-
| {
|
|
37949
|
-
/** The ID of the action attempt. */
|
|
37950
|
-
action_attempt_id: string
|
|
37951
|
-
status: 'error'
|
|
37952
|
-
result: null
|
|
37953
|
-
action_type: 'SET_HEAT'
|
|
37954
|
-
error: {
|
|
37955
|
-
type: string
|
|
37956
|
-
message: string
|
|
37957
|
-
}
|
|
37958
|
-
}
|
|
37959
|
-
| {
|
|
37960
|
-
/** The ID of the action attempt. */
|
|
37961
|
-
action_attempt_id: string
|
|
37962
|
-
status: 'pending'
|
|
37963
|
-
result: null
|
|
37964
|
-
error: null
|
|
37965
|
-
action_type: 'SET_HEAT_COOL'
|
|
37966
|
-
}
|
|
37967
|
-
| {
|
|
37968
|
-
/** The ID of the action attempt. */
|
|
37969
|
-
action_attempt_id: string
|
|
37970
|
-
status: 'success'
|
|
37971
|
-
error: null
|
|
37972
|
-
action_type: 'SET_HEAT_COOL'
|
|
37973
|
-
result: {}
|
|
37974
|
-
}
|
|
37975
|
-
| {
|
|
37976
|
-
/** The ID of the action attempt. */
|
|
37977
|
-
action_attempt_id: string
|
|
37978
|
-
status: 'error'
|
|
37979
|
-
result: null
|
|
37980
|
-
action_type: 'SET_HEAT_COOL'
|
|
37981
|
-
error: {
|
|
37982
|
-
type: string
|
|
37983
|
-
message: string
|
|
37984
|
-
}
|
|
37985
|
-
}
|
|
37986
35745
|
| {
|
|
37987
35746
|
/** The ID of the action attempt. */
|
|
37988
35747
|
action_attempt_id: string
|
|
@@ -38010,33 +35769,6 @@ export interface Routes {
|
|
|
38010
35769
|
message: string
|
|
38011
35770
|
}
|
|
38012
35771
|
}
|
|
38013
|
-
| {
|
|
38014
|
-
/** The ID of the action attempt. */
|
|
38015
|
-
action_attempt_id: string
|
|
38016
|
-
status: 'pending'
|
|
38017
|
-
result: null
|
|
38018
|
-
error: null
|
|
38019
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
38020
|
-
}
|
|
38021
|
-
| {
|
|
38022
|
-
/** The ID of the action attempt. */
|
|
38023
|
-
action_attempt_id: string
|
|
38024
|
-
status: 'success'
|
|
38025
|
-
error: null
|
|
38026
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
38027
|
-
result: {}
|
|
38028
|
-
}
|
|
38029
|
-
| {
|
|
38030
|
-
/** The ID of the action attempt. */
|
|
38031
|
-
action_attempt_id: string
|
|
38032
|
-
status: 'error'
|
|
38033
|
-
result: null
|
|
38034
|
-
action_type: 'SET_THERMOSTAT_OFF'
|
|
38035
|
-
error: {
|
|
38036
|
-
type: string
|
|
38037
|
-
message: string
|
|
38038
|
-
}
|
|
38039
|
-
}
|
|
38040
35772
|
| {
|
|
38041
35773
|
/** The ID of the action attempt. */
|
|
38042
35774
|
action_attempt_id: string
|