@seamapi/types 1.309.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.
Files changed (42) hide show
  1. package/dist/connect.cjs +43 -392
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +93 -2328
  4. package/lib/seam/connect/models/acs/acs-entrance.d.ts +33 -0
  5. package/lib/seam/connect/models/acs/acs-entrance.js +2 -0
  6. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  7. package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +6 -0
  8. package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +2 -0
  9. package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
  10. package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +15 -0
  11. package/lib/seam/connect/models/acs/metadata/salto-space.js +7 -0
  12. package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -0
  13. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +0 -312
  14. package/lib/seam/connect/models/action-attempts/action-attempt.js +0 -8
  15. package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
  16. package/lib/seam/connect/openapi.d.ts +25 -0
  17. package/lib/seam/connect/openapi.js +17 -305
  18. package/lib/seam/connect/openapi.js.map +1 -1
  19. package/lib/seam/connect/route-types.d.ts +122 -2103
  20. package/package.json +1 -1
  21. package/src/lib/seam/connect/models/acs/acs-entrance.ts +2 -0
  22. package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +2 -0
  23. package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +11 -0
  24. package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +0 -8
  25. package/src/lib/seam/connect/openapi.ts +17 -305
  26. package/src/lib/seam/connect/route-types.ts +45 -2268
  27. package/lib/seam/connect/models/action-attempts/set-cool.d.ts +0 -80
  28. package/lib/seam/connect/models/action-attempts/set-cool.js +0 -25
  29. package/lib/seam/connect/models/action-attempts/set-cool.js.map +0 -1
  30. package/lib/seam/connect/models/action-attempts/set-heat-cool.d.ts +0 -80
  31. package/lib/seam/connect/models/action-attempts/set-heat-cool.js +0 -25
  32. package/lib/seam/connect/models/action-attempts/set-heat-cool.js.map +0 -1
  33. package/lib/seam/connect/models/action-attempts/set-heat.d.ts +0 -80
  34. package/lib/seam/connect/models/action-attempts/set-heat.js +0 -25
  35. package/lib/seam/connect/models/action-attempts/set-heat.js.map +0 -1
  36. package/lib/seam/connect/models/action-attempts/set-thermostat-off.d.ts +0 -80
  37. package/lib/seam/connect/models/action-attempts/set-thermostat-off.js +0 -25
  38. package/lib/seam/connect/models/action-attempts/set-thermostat-off.js.map +0 -1
  39. package/src/lib/seam/connect/models/action-attempts/set-cool.ts +0 -33
  40. package/src/lib/seam/connect/models/action-attempts/set-heat-cool.ts +0 -33
  41. package/src/lib/seam/connect/models/action-attempts/set-heat.ts +0 -33
  42. 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
@@ -4987,6 +4555,8 @@ export interface Routes {
4987
4555
  dormakaba_community_metadata?:
4988
4556
  | {
4989
4557
  access_point_name: string
4558
+ common_area_number?: number | undefined
4559
+ inner_access_points_names?: string[] | undefined
4990
4560
  }
4991
4561
  | undefined
4992
4562
  assa_abloy_vostio_metadata?:
@@ -5002,6 +4572,13 @@ export interface Routes {
5002
4572
  pms_id?: string | undefined
5003
4573
  }
5004
4574
  | undefined
4575
+ salto_space_metadata?:
4576
+ | {
4577
+ door_name: string
4578
+ ext_door_id: string
4579
+ door_description?: string | undefined
4580
+ }
4581
+ | undefined
5005
4582
  }>
5006
4583
  }
5007
4584
  }
@@ -6010,6 +5587,8 @@ export interface Routes {
6010
5587
  dormakaba_community_metadata?:
6011
5588
  | {
6012
5589
  access_point_name: string
5590
+ common_area_number?: number | undefined
5591
+ inner_access_points_names?: string[] | undefined
6013
5592
  }
6014
5593
  | undefined
6015
5594
  assa_abloy_vostio_metadata?:
@@ -6025,6 +5604,13 @@ export interface Routes {
6025
5604
  pms_id?: string | undefined
6026
5605
  }
6027
5606
  | undefined
5607
+ salto_space_metadata?:
5608
+ | {
5609
+ door_name: string
5610
+ ext_door_id: string
5611
+ door_description?: string | undefined
5612
+ }
5613
+ | undefined
6028
5614
  }>
6029
5615
  }
6030
5616
  }
@@ -7153,87 +6739,6 @@ export interface Routes {
7153
6739
  message: string
7154
6740
  }
7155
6741
  }
7156
- | {
7157
- /** The ID of the action attempt. */
7158
- action_attempt_id: string
7159
- status: 'pending'
7160
- result: null
7161
- error: null
7162
- action_type: 'SET_COOL'
7163
- }
7164
- | {
7165
- /** The ID of the action attempt. */
7166
- action_attempt_id: string
7167
- status: 'success'
7168
- error: null
7169
- action_type: 'SET_COOL'
7170
- result: {}
7171
- }
7172
- | {
7173
- /** The ID of the action attempt. */
7174
- action_attempt_id: string
7175
- status: 'error'
7176
- result: null
7177
- action_type: 'SET_COOL'
7178
- error: {
7179
- type: string
7180
- message: string
7181
- }
7182
- }
7183
- | {
7184
- /** The ID of the action attempt. */
7185
- action_attempt_id: string
7186
- status: 'pending'
7187
- result: null
7188
- error: null
7189
- action_type: 'SET_HEAT'
7190
- }
7191
- | {
7192
- /** The ID of the action attempt. */
7193
- action_attempt_id: string
7194
- status: 'success'
7195
- error: null
7196
- action_type: 'SET_HEAT'
7197
- result: {}
7198
- }
7199
- | {
7200
- /** The ID of the action attempt. */
7201
- action_attempt_id: string
7202
- status: 'error'
7203
- result: null
7204
- action_type: 'SET_HEAT'
7205
- error: {
7206
- type: string
7207
- message: string
7208
- }
7209
- }
7210
- | {
7211
- /** The ID of the action attempt. */
7212
- action_attempt_id: string
7213
- status: 'pending'
7214
- result: null
7215
- error: null
7216
- action_type: 'SET_HEAT_COOL'
7217
- }
7218
- | {
7219
- /** The ID of the action attempt. */
7220
- action_attempt_id: string
7221
- status: 'success'
7222
- error: null
7223
- action_type: 'SET_HEAT_COOL'
7224
- result: {}
7225
- }
7226
- | {
7227
- /** The ID of the action attempt. */
7228
- action_attempt_id: string
7229
- status: 'error'
7230
- result: null
7231
- action_type: 'SET_HEAT_COOL'
7232
- error: {
7233
- type: string
7234
- message: string
7235
- }
7236
- }
7237
6742
  | {
7238
6743
  /** The ID of the action attempt. */
7239
6744
  action_attempt_id: string
@@ -7261,33 +6766,6 @@ export interface Routes {
7261
6766
  message: string
7262
6767
  }
7263
6768
  }
7264
- | {
7265
- /** The ID of the action attempt. */
7266
- action_attempt_id: string
7267
- status: 'pending'
7268
- result: null
7269
- error: null
7270
- action_type: 'SET_THERMOSTAT_OFF'
7271
- }
7272
- | {
7273
- /** The ID of the action attempt. */
7274
- action_attempt_id: string
7275
- status: 'success'
7276
- error: null
7277
- action_type: 'SET_THERMOSTAT_OFF'
7278
- result: {}
7279
- }
7280
- | {
7281
- /** The ID of the action attempt. */
7282
- action_attempt_id: string
7283
- status: 'error'
7284
- result: null
7285
- action_type: 'SET_THERMOSTAT_OFF'
7286
- error: {
7287
- type: string
7288
- message: string
7289
- }
7290
- }
7291
6769
  | {
7292
6770
  /** The ID of the action attempt. */
7293
6771
  action_attempt_id: string
@@ -8224,87 +7702,6 @@ export interface Routes {
8224
7702
  message: string
8225
7703
  }
8226
7704
  }
8227
- | {
8228
- /** The ID of the action attempt. */
8229
- action_attempt_id: string
8230
- status: 'pending'
8231
- result: null
8232
- error: null
8233
- action_type: 'SET_COOL'
8234
- }
8235
- | {
8236
- /** The ID of the action attempt. */
8237
- action_attempt_id: string
8238
- status: 'success'
8239
- error: null
8240
- action_type: 'SET_COOL'
8241
- result: {}
8242
- }
8243
- | {
8244
- /** The ID of the action attempt. */
8245
- action_attempt_id: string
8246
- status: 'error'
8247
- result: null
8248
- action_type: 'SET_COOL'
8249
- error: {
8250
- type: string
8251
- message: string
8252
- }
8253
- }
8254
- | {
8255
- /** The ID of the action attempt. */
8256
- action_attempt_id: string
8257
- status: 'pending'
8258
- result: null
8259
- error: null
8260
- action_type: 'SET_HEAT'
8261
- }
8262
- | {
8263
- /** The ID of the action attempt. */
8264
- action_attempt_id: string
8265
- status: 'success'
8266
- error: null
8267
- action_type: 'SET_HEAT'
8268
- result: {}
8269
- }
8270
- | {
8271
- /** The ID of the action attempt. */
8272
- action_attempt_id: string
8273
- status: 'error'
8274
- result: null
8275
- action_type: 'SET_HEAT'
8276
- error: {
8277
- type: string
8278
- message: string
8279
- }
8280
- }
8281
- | {
8282
- /** The ID of the action attempt. */
8283
- action_attempt_id: string
8284
- status: 'pending'
8285
- result: null
8286
- error: null
8287
- action_type: 'SET_HEAT_COOL'
8288
- }
8289
- | {
8290
- /** The ID of the action attempt. */
8291
- action_attempt_id: string
8292
- status: 'success'
8293
- error: null
8294
- action_type: 'SET_HEAT_COOL'
8295
- result: {}
8296
- }
8297
- | {
8298
- /** The ID of the action attempt. */
8299
- action_attempt_id: string
8300
- status: 'error'
8301
- result: null
8302
- action_type: 'SET_HEAT_COOL'
8303
- error: {
8304
- type: string
8305
- message: string
8306
- }
8307
- }
8308
7705
  | {
8309
7706
  /** The ID of the action attempt. */
8310
7707
  action_attempt_id: string
@@ -8332,33 +7729,6 @@ export interface Routes {
8332
7729
  message: string
8333
7730
  }
8334
7731
  }
8335
- | {
8336
- /** The ID of the action attempt. */
8337
- action_attempt_id: string
8338
- status: 'pending'
8339
- result: null
8340
- error: null
8341
- action_type: 'SET_THERMOSTAT_OFF'
8342
- }
8343
- | {
8344
- /** The ID of the action attempt. */
8345
- action_attempt_id: string
8346
- status: 'success'
8347
- error: null
8348
- action_type: 'SET_THERMOSTAT_OFF'
8349
- result: {}
8350
- }
8351
- | {
8352
- /** The ID of the action attempt. */
8353
- action_attempt_id: string
8354
- status: 'error'
8355
- result: null
8356
- action_type: 'SET_THERMOSTAT_OFF'
8357
- error: {
8358
- type: string
8359
- message: string
8360
- }
8361
- }
8362
7732
  | {
8363
7733
  /** The ID of the action attempt. */
8364
7734
  action_attempt_id: string
@@ -8676,6 +8046,8 @@ export interface Routes {
8676
8046
  dormakaba_community_metadata?:
8677
8047
  | {
8678
8048
  access_point_name: string
8049
+ common_area_number?: number | undefined
8050
+ inner_access_points_names?: string[] | undefined
8679
8051
  }
8680
8052
  | undefined
8681
8053
  assa_abloy_vostio_metadata?:
@@ -8691,6 +8063,13 @@ export interface Routes {
8691
8063
  pms_id?: string | undefined
8692
8064
  }
8693
8065
  | undefined
8066
+ salto_space_metadata?:
8067
+ | {
8068
+ door_name: string
8069
+ ext_door_id: string
8070
+ door_description?: string | undefined
8071
+ }
8072
+ | undefined
8694
8073
  }
8695
8074
  }
8696
8075
  }
@@ -8770,6 +8149,8 @@ export interface Routes {
8770
8149
  dormakaba_community_metadata?:
8771
8150
  | {
8772
8151
  access_point_name: string
8152
+ common_area_number?: number | undefined
8153
+ inner_access_points_names?: string[] | undefined
8773
8154
  }
8774
8155
  | undefined
8775
8156
  assa_abloy_vostio_metadata?:
@@ -8785,6 +8166,13 @@ export interface Routes {
8785
8166
  pms_id?: string | undefined
8786
8167
  }
8787
8168
  | undefined
8169
+ salto_space_metadata?:
8170
+ | {
8171
+ door_name: string
8172
+ ext_door_id: string
8173
+ door_description?: string | undefined
8174
+ }
8175
+ | undefined
8788
8176
  }>
8789
8177
  }
8790
8178
  }
@@ -9894,6 +9282,8 @@ export interface Routes {
9894
9282
  dormakaba_community_metadata?:
9895
9283
  | {
9896
9284
  access_point_name: string
9285
+ common_area_number?: number | undefined
9286
+ inner_access_points_names?: string[] | undefined
9897
9287
  }
9898
9288
  | undefined
9899
9289
  assa_abloy_vostio_metadata?:
@@ -9909,6 +9299,13 @@ export interface Routes {
9909
9299
  pms_id?: string | undefined
9910
9300
  }
9911
9301
  | undefined
9302
+ salto_space_metadata?:
9303
+ | {
9304
+ door_name: string
9305
+ ext_door_id: string
9306
+ door_description?: string | undefined
9307
+ }
9308
+ | undefined
9912
9309
  }>
9913
9310
  }
9914
9311
  }
@@ -10875,87 +10272,6 @@ export interface Routes {
10875
10272
  message: string
10876
10273
  }
10877
10274
  }
10878
- | {
10879
- /** The ID of the action attempt. */
10880
- action_attempt_id: string
10881
- status: 'pending'
10882
- result: null
10883
- error: null
10884
- action_type: 'SET_COOL'
10885
- }
10886
- | {
10887
- /** The ID of the action attempt. */
10888
- action_attempt_id: string
10889
- status: 'success'
10890
- error: null
10891
- action_type: 'SET_COOL'
10892
- result: {}
10893
- }
10894
- | {
10895
- /** The ID of the action attempt. */
10896
- action_attempt_id: string
10897
- status: 'error'
10898
- result: null
10899
- action_type: 'SET_COOL'
10900
- error: {
10901
- type: string
10902
- message: string
10903
- }
10904
- }
10905
- | {
10906
- /** The ID of the action attempt. */
10907
- action_attempt_id: string
10908
- status: 'pending'
10909
- result: null
10910
- error: null
10911
- action_type: 'SET_HEAT'
10912
- }
10913
- | {
10914
- /** The ID of the action attempt. */
10915
- action_attempt_id: string
10916
- status: 'success'
10917
- error: null
10918
- action_type: 'SET_HEAT'
10919
- result: {}
10920
- }
10921
- | {
10922
- /** The ID of the action attempt. */
10923
- action_attempt_id: string
10924
- status: 'error'
10925
- result: null
10926
- action_type: 'SET_HEAT'
10927
- error: {
10928
- type: string
10929
- message: string
10930
- }
10931
- }
10932
- | {
10933
- /** The ID of the action attempt. */
10934
- action_attempt_id: string
10935
- status: 'pending'
10936
- result: null
10937
- error: null
10938
- action_type: 'SET_HEAT_COOL'
10939
- }
10940
- | {
10941
- /** The ID of the action attempt. */
10942
- action_attempt_id: string
10943
- status: 'success'
10944
- error: null
10945
- action_type: 'SET_HEAT_COOL'
10946
- result: {}
10947
- }
10948
- | {
10949
- /** The ID of the action attempt. */
10950
- action_attempt_id: string
10951
- status: 'error'
10952
- result: null
10953
- action_type: 'SET_HEAT_COOL'
10954
- error: {
10955
- type: string
10956
- message: string
10957
- }
10958
- }
10959
10275
  | {
10960
10276
  /** The ID of the action attempt. */
10961
10277
  action_attempt_id: string
@@ -10983,33 +10299,6 @@ export interface Routes {
10983
10299
  message: string
10984
10300
  }
10985
10301
  }
10986
- | {
10987
- /** The ID of the action attempt. */
10988
- action_attempt_id: string
10989
- status: 'pending'
10990
- result: null
10991
- error: null
10992
- action_type: 'SET_THERMOSTAT_OFF'
10993
- }
10994
- | {
10995
- /** The ID of the action attempt. */
10996
- action_attempt_id: string
10997
- status: 'success'
10998
- error: null
10999
- action_type: 'SET_THERMOSTAT_OFF'
11000
- result: {}
11001
- }
11002
- | {
11003
- /** The ID of the action attempt. */
11004
- action_attempt_id: string
11005
- status: 'error'
11006
- result: null
11007
- action_type: 'SET_THERMOSTAT_OFF'
11008
- error: {
11009
- type: string
11010
- message: string
11011
- }
11012
- }
11013
10302
  | {
11014
10303
  /** The ID of the action attempt. */
11015
10304
  action_attempt_id: string
@@ -11898,87 +11187,6 @@ export interface Routes {
11898
11187
  message: string
11899
11188
  }
11900
11189
  }
11901
- | {
11902
- /** The ID of the action attempt. */
11903
- action_attempt_id: string
11904
- status: 'pending'
11905
- result: null
11906
- error: null
11907
- action_type: 'SET_COOL'
11908
- }
11909
- | {
11910
- /** The ID of the action attempt. */
11911
- action_attempt_id: string
11912
- status: 'success'
11913
- error: null
11914
- action_type: 'SET_COOL'
11915
- result: {}
11916
- }
11917
- | {
11918
- /** The ID of the action attempt. */
11919
- action_attempt_id: string
11920
- status: 'error'
11921
- result: null
11922
- action_type: 'SET_COOL'
11923
- error: {
11924
- type: string
11925
- message: string
11926
- }
11927
- }
11928
- | {
11929
- /** The ID of the action attempt. */
11930
- action_attempt_id: string
11931
- status: 'pending'
11932
- result: null
11933
- error: null
11934
- action_type: 'SET_HEAT'
11935
- }
11936
- | {
11937
- /** The ID of the action attempt. */
11938
- action_attempt_id: string
11939
- status: 'success'
11940
- error: null
11941
- action_type: 'SET_HEAT'
11942
- result: {}
11943
- }
11944
- | {
11945
- /** The ID of the action attempt. */
11946
- action_attempt_id: string
11947
- status: 'error'
11948
- result: null
11949
- action_type: 'SET_HEAT'
11950
- error: {
11951
- type: string
11952
- message: string
11953
- }
11954
- }
11955
- | {
11956
- /** The ID of the action attempt. */
11957
- action_attempt_id: string
11958
- status: 'pending'
11959
- result: null
11960
- error: null
11961
- action_type: 'SET_HEAT_COOL'
11962
- }
11963
- | {
11964
- /** The ID of the action attempt. */
11965
- action_attempt_id: string
11966
- status: 'success'
11967
- error: null
11968
- action_type: 'SET_HEAT_COOL'
11969
- result: {}
11970
- }
11971
- | {
11972
- /** The ID of the action attempt. */
11973
- action_attempt_id: string
11974
- status: 'error'
11975
- result: null
11976
- action_type: 'SET_HEAT_COOL'
11977
- error: {
11978
- type: string
11979
- message: string
11980
- }
11981
- }
11982
11190
  | {
11983
11191
  /** The ID of the action attempt. */
11984
11192
  action_attempt_id: string
@@ -12006,33 +11214,6 @@ export interface Routes {
12006
11214
  message: string
12007
11215
  }
12008
11216
  }
12009
- | {
12010
- /** The ID of the action attempt. */
12011
- action_attempt_id: string
12012
- status: 'pending'
12013
- result: null
12014
- error: null
12015
- action_type: 'SET_THERMOSTAT_OFF'
12016
- }
12017
- | {
12018
- /** The ID of the action attempt. */
12019
- action_attempt_id: string
12020
- status: 'success'
12021
- error: null
12022
- action_type: 'SET_THERMOSTAT_OFF'
12023
- result: {}
12024
- }
12025
- | {
12026
- /** The ID of the action attempt. */
12027
- action_attempt_id: string
12028
- status: 'error'
12029
- result: null
12030
- action_type: 'SET_THERMOSTAT_OFF'
12031
- error: {
12032
- type: string
12033
- message: string
12034
- }
12035
- }
12036
11217
  | {
12037
11218
  /** The ID of the action attempt. */
12038
11219
  action_attempt_id: string
@@ -18918,87 +18099,6 @@ export interface Routes {
18918
18099
  message: string
18919
18100
  }
18920
18101
  }
18921
- | {
18922
- /** The ID of the action attempt. */
18923
- action_attempt_id: string
18924
- status: 'pending'
18925
- result: null
18926
- error: null
18927
- action_type: 'SET_COOL'
18928
- }
18929
- | {
18930
- /** The ID of the action attempt. */
18931
- action_attempt_id: string
18932
- status: 'success'
18933
- error: null
18934
- action_type: 'SET_COOL'
18935
- result: {}
18936
- }
18937
- | {
18938
- /** The ID of the action attempt. */
18939
- action_attempt_id: string
18940
- status: 'error'
18941
- result: null
18942
- action_type: 'SET_COOL'
18943
- error: {
18944
- type: string
18945
- message: string
18946
- }
18947
- }
18948
- | {
18949
- /** The ID of the action attempt. */
18950
- action_attempt_id: string
18951
- status: 'pending'
18952
- result: null
18953
- error: null
18954
- action_type: 'SET_HEAT'
18955
- }
18956
- | {
18957
- /** The ID of the action attempt. */
18958
- action_attempt_id: string
18959
- status: 'success'
18960
- error: null
18961
- action_type: 'SET_HEAT'
18962
- result: {}
18963
- }
18964
- | {
18965
- /** The ID of the action attempt. */
18966
- action_attempt_id: string
18967
- status: 'error'
18968
- result: null
18969
- action_type: 'SET_HEAT'
18970
- error: {
18971
- type: string
18972
- message: string
18973
- }
18974
- }
18975
- | {
18976
- /** The ID of the action attempt. */
18977
- action_attempt_id: string
18978
- status: 'pending'
18979
- result: null
18980
- error: null
18981
- action_type: 'SET_HEAT_COOL'
18982
- }
18983
- | {
18984
- /** The ID of the action attempt. */
18985
- action_attempt_id: string
18986
- status: 'success'
18987
- error: null
18988
- action_type: 'SET_HEAT_COOL'
18989
- result: {}
18990
- }
18991
- | {
18992
- /** The ID of the action attempt. */
18993
- action_attempt_id: string
18994
- status: 'error'
18995
- result: null
18996
- action_type: 'SET_HEAT_COOL'
18997
- error: {
18998
- type: string
18999
- message: string
19000
- }
19001
- }
19002
18102
  | {
19003
18103
  /** The ID of the action attempt. */
19004
18104
  action_attempt_id: string
@@ -19026,33 +18126,6 @@ export interface Routes {
19026
18126
  message: string
19027
18127
  }
19028
18128
  }
19029
- | {
19030
- /** The ID of the action attempt. */
19031
- action_attempt_id: string
19032
- status: 'pending'
19033
- result: null
19034
- error: null
19035
- action_type: 'SET_THERMOSTAT_OFF'
19036
- }
19037
- | {
19038
- /** The ID of the action attempt. */
19039
- action_attempt_id: string
19040
- status: 'success'
19041
- error: null
19042
- action_type: 'SET_THERMOSTAT_OFF'
19043
- result: {}
19044
- }
19045
- | {
19046
- /** The ID of the action attempt. */
19047
- action_attempt_id: string
19048
- status: 'error'
19049
- result: null
19050
- action_type: 'SET_THERMOSTAT_OFF'
19051
- error: {
19052
- type: string
19053
- message: string
19054
- }
19055
- }
19056
18129
  | {
19057
18130
  /** The ID of the action attempt. */
19058
18131
  action_attempt_id: string
@@ -19942,87 +19015,6 @@ export interface Routes {
19942
19015
  message: string
19943
19016
  }
19944
19017
  }
19945
- | {
19946
- /** The ID of the action attempt. */
19947
- action_attempt_id: string
19948
- status: 'pending'
19949
- result: null
19950
- error: null
19951
- action_type: 'SET_COOL'
19952
- }
19953
- | {
19954
- /** The ID of the action attempt. */
19955
- action_attempt_id: string
19956
- status: 'success'
19957
- error: null
19958
- action_type: 'SET_COOL'
19959
- result: {}
19960
- }
19961
- | {
19962
- /** The ID of the action attempt. */
19963
- action_attempt_id: string
19964
- status: 'error'
19965
- result: null
19966
- action_type: 'SET_COOL'
19967
- error: {
19968
- type: string
19969
- message: string
19970
- }
19971
- }
19972
- | {
19973
- /** The ID of the action attempt. */
19974
- action_attempt_id: string
19975
- status: 'pending'
19976
- result: null
19977
- error: null
19978
- action_type: 'SET_HEAT'
19979
- }
19980
- | {
19981
- /** The ID of the action attempt. */
19982
- action_attempt_id: string
19983
- status: 'success'
19984
- error: null
19985
- action_type: 'SET_HEAT'
19986
- result: {}
19987
- }
19988
- | {
19989
- /** The ID of the action attempt. */
19990
- action_attempt_id: string
19991
- status: 'error'
19992
- result: null
19993
- action_type: 'SET_HEAT'
19994
- error: {
19995
- type: string
19996
- message: string
19997
- }
19998
- }
19999
- | {
20000
- /** The ID of the action attempt. */
20001
- action_attempt_id: string
20002
- status: 'pending'
20003
- result: null
20004
- error: null
20005
- action_type: 'SET_HEAT_COOL'
20006
- }
20007
- | {
20008
- /** The ID of the action attempt. */
20009
- action_attempt_id: string
20010
- status: 'success'
20011
- error: null
20012
- action_type: 'SET_HEAT_COOL'
20013
- result: {}
20014
- }
20015
- | {
20016
- /** The ID of the action attempt. */
20017
- action_attempt_id: string
20018
- status: 'error'
20019
- result: null
20020
- action_type: 'SET_HEAT_COOL'
20021
- error: {
20022
- type: string
20023
- message: string
20024
- }
20025
- }
20026
19018
  | {
20027
19019
  /** The ID of the action attempt. */
20028
19020
  action_attempt_id: string
@@ -20050,33 +19042,6 @@ export interface Routes {
20050
19042
  message: string
20051
19043
  }
20052
19044
  }
20053
- | {
20054
- /** The ID of the action attempt. */
20055
- action_attempt_id: string
20056
- status: 'pending'
20057
- result: null
20058
- error: null
20059
- action_type: 'SET_THERMOSTAT_OFF'
20060
- }
20061
- | {
20062
- /** The ID of the action attempt. */
20063
- action_attempt_id: string
20064
- status: 'success'
20065
- error: null
20066
- action_type: 'SET_THERMOSTAT_OFF'
20067
- result: {}
20068
- }
20069
- | {
20070
- /** The ID of the action attempt. */
20071
- action_attempt_id: string
20072
- status: 'error'
20073
- result: null
20074
- action_type: 'SET_THERMOSTAT_OFF'
20075
- error: {
20076
- type: string
20077
- message: string
20078
- }
20079
- }
20080
19045
  | {
20081
19046
  /** The ID of the action attempt. */
20082
19047
  action_attempt_id: string
@@ -22593,87 +21558,6 @@ export interface Routes {
22593
21558
  message: string
22594
21559
  }
22595
21560
  }
22596
- | {
22597
- /** The ID of the action attempt. */
22598
- action_attempt_id: string
22599
- status: 'pending'
22600
- result: null
22601
- error: null
22602
- action_type: 'SET_COOL'
22603
- }
22604
- | {
22605
- /** The ID of the action attempt. */
22606
- action_attempt_id: string
22607
- status: 'success'
22608
- error: null
22609
- action_type: 'SET_COOL'
22610
- result: {}
22611
- }
22612
- | {
22613
- /** The ID of the action attempt. */
22614
- action_attempt_id: string
22615
- status: 'error'
22616
- result: null
22617
- action_type: 'SET_COOL'
22618
- error: {
22619
- type: string
22620
- message: string
22621
- }
22622
- }
22623
- | {
22624
- /** The ID of the action attempt. */
22625
- action_attempt_id: string
22626
- status: 'pending'
22627
- result: null
22628
- error: null
22629
- action_type: 'SET_HEAT'
22630
- }
22631
- | {
22632
- /** The ID of the action attempt. */
22633
- action_attempt_id: string
22634
- status: 'success'
22635
- error: null
22636
- action_type: 'SET_HEAT'
22637
- result: {}
22638
- }
22639
- | {
22640
- /** The ID of the action attempt. */
22641
- action_attempt_id: string
22642
- status: 'error'
22643
- result: null
22644
- action_type: 'SET_HEAT'
22645
- error: {
22646
- type: string
22647
- message: string
22648
- }
22649
- }
22650
- | {
22651
- /** The ID of the action attempt. */
22652
- action_attempt_id: string
22653
- status: 'pending'
22654
- result: null
22655
- error: null
22656
- action_type: 'SET_HEAT_COOL'
22657
- }
22658
- | {
22659
- /** The ID of the action attempt. */
22660
- action_attempt_id: string
22661
- status: 'success'
22662
- error: null
22663
- action_type: 'SET_HEAT_COOL'
22664
- result: {}
22665
- }
22666
- | {
22667
- /** The ID of the action attempt. */
22668
- action_attempt_id: string
22669
- status: 'error'
22670
- result: null
22671
- action_type: 'SET_HEAT_COOL'
22672
- error: {
22673
- type: string
22674
- message: string
22675
- }
22676
- }
22677
21561
  | {
22678
21562
  /** The ID of the action attempt. */
22679
21563
  action_attempt_id: string
@@ -22701,33 +21585,6 @@ export interface Routes {
22701
21585
  message: string
22702
21586
  }
22703
21587
  }
22704
- | {
22705
- /** The ID of the action attempt. */
22706
- action_attempt_id: string
22707
- status: 'pending'
22708
- result: null
22709
- error: null
22710
- action_type: 'SET_THERMOSTAT_OFF'
22711
- }
22712
- | {
22713
- /** The ID of the action attempt. */
22714
- action_attempt_id: string
22715
- status: 'success'
22716
- error: null
22717
- action_type: 'SET_THERMOSTAT_OFF'
22718
- result: {}
22719
- }
22720
- | {
22721
- /** The ID of the action attempt. */
22722
- action_attempt_id: string
22723
- status: 'error'
22724
- result: null
22725
- action_type: 'SET_THERMOSTAT_OFF'
22726
- error: {
22727
- type: string
22728
- message: string
22729
- }
22730
- }
22731
21588
  | {
22732
21589
  /** The ID of the action attempt. */
22733
21590
  action_attempt_id: string
@@ -23627,87 +22484,6 @@ export interface Routes {
23627
22484
  message: string
23628
22485
  }
23629
22486
  }
23630
- | {
23631
- /** The ID of the action attempt. */
23632
- action_attempt_id: string
23633
- status: 'pending'
23634
- result: null
23635
- error: null
23636
- action_type: 'SET_COOL'
23637
- }
23638
- | {
23639
- /** The ID of the action attempt. */
23640
- action_attempt_id: string
23641
- status: 'success'
23642
- error: null
23643
- action_type: 'SET_COOL'
23644
- result: {}
23645
- }
23646
- | {
23647
- /** The ID of the action attempt. */
23648
- action_attempt_id: string
23649
- status: 'error'
23650
- result: null
23651
- action_type: 'SET_COOL'
23652
- error: {
23653
- type: string
23654
- message: string
23655
- }
23656
- }
23657
- | {
23658
- /** The ID of the action attempt. */
23659
- action_attempt_id: string
23660
- status: 'pending'
23661
- result: null
23662
- error: null
23663
- action_type: 'SET_HEAT'
23664
- }
23665
- | {
23666
- /** The ID of the action attempt. */
23667
- action_attempt_id: string
23668
- status: 'success'
23669
- error: null
23670
- action_type: 'SET_HEAT'
23671
- result: {}
23672
- }
23673
- | {
23674
- /** The ID of the action attempt. */
23675
- action_attempt_id: string
23676
- status: 'error'
23677
- result: null
23678
- action_type: 'SET_HEAT'
23679
- error: {
23680
- type: string
23681
- message: string
23682
- }
23683
- }
23684
- | {
23685
- /** The ID of the action attempt. */
23686
- action_attempt_id: string
23687
- status: 'pending'
23688
- result: null
23689
- error: null
23690
- action_type: 'SET_HEAT_COOL'
23691
- }
23692
- | {
23693
- /** The ID of the action attempt. */
23694
- action_attempt_id: string
23695
- status: 'success'
23696
- error: null
23697
- action_type: 'SET_HEAT_COOL'
23698
- result: {}
23699
- }
23700
- | {
23701
- /** The ID of the action attempt. */
23702
- action_attempt_id: string
23703
- status: 'error'
23704
- result: null
23705
- action_type: 'SET_HEAT_COOL'
23706
- error: {
23707
- type: string
23708
- message: string
23709
- }
23710
- }
23711
22487
  | {
23712
22488
  /** The ID of the action attempt. */
23713
22489
  action_attempt_id: string
@@ -23735,33 +22511,6 @@ export interface Routes {
23735
22511
  message: string
23736
22512
  }
23737
22513
  }
23738
- | {
23739
- /** The ID of the action attempt. */
23740
- action_attempt_id: string
23741
- status: 'pending'
23742
- result: null
23743
- error: null
23744
- action_type: 'SET_THERMOSTAT_OFF'
23745
- }
23746
- | {
23747
- /** The ID of the action attempt. */
23748
- action_attempt_id: string
23749
- status: 'success'
23750
- error: null
23751
- action_type: 'SET_THERMOSTAT_OFF'
23752
- result: {}
23753
- }
23754
- | {
23755
- /** The ID of the action attempt. */
23756
- action_attempt_id: string
23757
- status: 'error'
23758
- result: null
23759
- action_type: 'SET_THERMOSTAT_OFF'
23760
- error: {
23761
- type: string
23762
- message: string
23763
- }
23764
- }
23765
22514
  | {
23766
22515
  /** The ID of the action attempt. */
23767
22516
  action_attempt_id: string
@@ -24700,87 +23449,6 @@ export interface Routes {
24700
23449
  message: string
24701
23450
  }
24702
23451
  }
24703
- | {
24704
- /** The ID of the action attempt. */
24705
- action_attempt_id: string
24706
- status: 'pending'
24707
- result: null
24708
- error: null
24709
- action_type: 'SET_COOL'
24710
- }
24711
- | {
24712
- /** The ID of the action attempt. */
24713
- action_attempt_id: string
24714
- status: 'success'
24715
- error: null
24716
- action_type: 'SET_COOL'
24717
- result: {}
24718
- }
24719
- | {
24720
- /** The ID of the action attempt. */
24721
- action_attempt_id: string
24722
- status: 'error'
24723
- result: null
24724
- action_type: 'SET_COOL'
24725
- error: {
24726
- type: string
24727
- message: string
24728
- }
24729
- }
24730
- | {
24731
- /** The ID of the action attempt. */
24732
- action_attempt_id: string
24733
- status: 'pending'
24734
- result: null
24735
- error: null
24736
- action_type: 'SET_HEAT'
24737
- }
24738
- | {
24739
- /** The ID of the action attempt. */
24740
- action_attempt_id: string
24741
- status: 'success'
24742
- error: null
24743
- action_type: 'SET_HEAT'
24744
- result: {}
24745
- }
24746
- | {
24747
- /** The ID of the action attempt. */
24748
- action_attempt_id: string
24749
- status: 'error'
24750
- result: null
24751
- action_type: 'SET_HEAT'
24752
- error: {
24753
- type: string
24754
- message: string
24755
- }
24756
- }
24757
- | {
24758
- /** The ID of the action attempt. */
24759
- action_attempt_id: string
24760
- status: 'pending'
24761
- result: null
24762
- error: null
24763
- action_type: 'SET_HEAT_COOL'
24764
- }
24765
- | {
24766
- /** The ID of the action attempt. */
24767
- action_attempt_id: string
24768
- status: 'success'
24769
- error: null
24770
- action_type: 'SET_HEAT_COOL'
24771
- result: {}
24772
- }
24773
- | {
24774
- /** The ID of the action attempt. */
24775
- action_attempt_id: string
24776
- status: 'error'
24777
- result: null
24778
- action_type: 'SET_HEAT_COOL'
24779
- error: {
24780
- type: string
24781
- message: string
24782
- }
24783
- }
24784
23452
  | {
24785
23453
  /** The ID of the action attempt. */
24786
23454
  action_attempt_id: string
@@ -24808,33 +23476,6 @@ export interface Routes {
24808
23476
  message: string
24809
23477
  }
24810
23478
  }
24811
- | {
24812
- /** The ID of the action attempt. */
24813
- action_attempt_id: string
24814
- status: 'pending'
24815
- result: null
24816
- error: null
24817
- action_type: 'SET_THERMOSTAT_OFF'
24818
- }
24819
- | {
24820
- /** The ID of the action attempt. */
24821
- action_attempt_id: string
24822
- status: 'success'
24823
- error: null
24824
- action_type: 'SET_THERMOSTAT_OFF'
24825
- result: {}
24826
- }
24827
- | {
24828
- /** The ID of the action attempt. */
24829
- action_attempt_id: string
24830
- status: 'error'
24831
- result: null
24832
- action_type: 'SET_THERMOSTAT_OFF'
24833
- error: {
24834
- type: string
24835
- message: string
24836
- }
24837
- }
24838
23479
  | {
24839
23480
  /** The ID of the action attempt. */
24840
23481
  action_attempt_id: string
@@ -25932,87 +24573,6 @@ export interface Routes {
25932
24573
  message: string
25933
24574
  }
25934
24575
  }
25935
- | {
25936
- /** The ID of the action attempt. */
25937
- action_attempt_id: string
25938
- status: 'pending'
25939
- result: null
25940
- error: null
25941
- action_type: 'SET_COOL'
25942
- }
25943
- | {
25944
- /** The ID of the action attempt. */
25945
- action_attempt_id: string
25946
- status: 'success'
25947
- error: null
25948
- action_type: 'SET_COOL'
25949
- result: {}
25950
- }
25951
- | {
25952
- /** The ID of the action attempt. */
25953
- action_attempt_id: string
25954
- status: 'error'
25955
- result: null
25956
- action_type: 'SET_COOL'
25957
- error: {
25958
- type: string
25959
- message: string
25960
- }
25961
- }
25962
- | {
25963
- /** The ID of the action attempt. */
25964
- action_attempt_id: string
25965
- status: 'pending'
25966
- result: null
25967
- error: null
25968
- action_type: 'SET_HEAT'
25969
- }
25970
- | {
25971
- /** The ID of the action attempt. */
25972
- action_attempt_id: string
25973
- status: 'success'
25974
- error: null
25975
- action_type: 'SET_HEAT'
25976
- result: {}
25977
- }
25978
- | {
25979
- /** The ID of the action attempt. */
25980
- action_attempt_id: string
25981
- status: 'error'
25982
- result: null
25983
- action_type: 'SET_HEAT'
25984
- error: {
25985
- type: string
25986
- message: string
25987
- }
25988
- }
25989
- | {
25990
- /** The ID of the action attempt. */
25991
- action_attempt_id: string
25992
- status: 'pending'
25993
- result: null
25994
- error: null
25995
- action_type: 'SET_HEAT_COOL'
25996
- }
25997
- | {
25998
- /** The ID of the action attempt. */
25999
- action_attempt_id: string
26000
- status: 'success'
26001
- error: null
26002
- action_type: 'SET_HEAT_COOL'
26003
- result: {}
26004
- }
26005
- | {
26006
- /** The ID of the action attempt. */
26007
- action_attempt_id: string
26008
- status: 'error'
26009
- result: null
26010
- action_type: 'SET_HEAT_COOL'
26011
- error: {
26012
- type: string
26013
- message: string
26014
- }
26015
- }
26016
24576
  | {
26017
24577
  /** The ID of the action attempt. */
26018
24578
  action_attempt_id: string
@@ -26040,33 +24600,6 @@ export interface Routes {
26040
24600
  message: string
26041
24601
  }
26042
24602
  }
26043
- | {
26044
- /** The ID of the action attempt. */
26045
- action_attempt_id: string
26046
- status: 'pending'
26047
- result: null
26048
- error: null
26049
- action_type: 'SET_THERMOSTAT_OFF'
26050
- }
26051
- | {
26052
- /** The ID of the action attempt. */
26053
- action_attempt_id: string
26054
- status: 'success'
26055
- error: null
26056
- action_type: 'SET_THERMOSTAT_OFF'
26057
- result: {}
26058
- }
26059
- | {
26060
- /** The ID of the action attempt. */
26061
- action_attempt_id: string
26062
- status: 'error'
26063
- result: null
26064
- action_type: 'SET_THERMOSTAT_OFF'
26065
- error: {
26066
- type: string
26067
- message: string
26068
- }
26069
- }
26070
24603
  | {
26071
24604
  /** The ID of the action attempt. */
26072
24605
  action_attempt_id: string
@@ -26962,87 +25495,6 @@ export interface Routes {
26962
25495
  message: string
26963
25496
  }
26964
25497
  }
26965
- | {
26966
- /** The ID of the action attempt. */
26967
- action_attempt_id: string
26968
- status: 'pending'
26969
- result: null
26970
- error: null
26971
- action_type: 'SET_COOL'
26972
- }
26973
- | {
26974
- /** The ID of the action attempt. */
26975
- action_attempt_id: string
26976
- status: 'success'
26977
- error: null
26978
- action_type: 'SET_COOL'
26979
- result: {}
26980
- }
26981
- | {
26982
- /** The ID of the action attempt. */
26983
- action_attempt_id: string
26984
- status: 'error'
26985
- result: null
26986
- action_type: 'SET_COOL'
26987
- error: {
26988
- type: string
26989
- message: string
26990
- }
26991
- }
26992
- | {
26993
- /** The ID of the action attempt. */
26994
- action_attempt_id: string
26995
- status: 'pending'
26996
- result: null
26997
- error: null
26998
- action_type: 'SET_HEAT'
26999
- }
27000
- | {
27001
- /** The ID of the action attempt. */
27002
- action_attempt_id: string
27003
- status: 'success'
27004
- error: null
27005
- action_type: 'SET_HEAT'
27006
- result: {}
27007
- }
27008
- | {
27009
- /** The ID of the action attempt. */
27010
- action_attempt_id: string
27011
- status: 'error'
27012
- result: null
27013
- action_type: 'SET_HEAT'
27014
- error: {
27015
- type: string
27016
- message: string
27017
- }
27018
- }
27019
- | {
27020
- /** The ID of the action attempt. */
27021
- action_attempt_id: string
27022
- status: 'pending'
27023
- result: null
27024
- error: null
27025
- action_type: 'SET_HEAT_COOL'
27026
- }
27027
- | {
27028
- /** The ID of the action attempt. */
27029
- action_attempt_id: string
27030
- status: 'success'
27031
- error: null
27032
- action_type: 'SET_HEAT_COOL'
27033
- result: {}
27034
- }
27035
- | {
27036
- /** The ID of the action attempt. */
27037
- action_attempt_id: string
27038
- status: 'error'
27039
- result: null
27040
- action_type: 'SET_HEAT_COOL'
27041
- error: {
27042
- type: string
27043
- message: string
27044
- }
27045
- }
27046
25498
  | {
27047
25499
  /** The ID of the action attempt. */
27048
25500
  action_attempt_id: string
@@ -27070,33 +25522,6 @@ export interface Routes {
27070
25522
  message: string
27071
25523
  }
27072
25524
  }
27073
- | {
27074
- /** The ID of the action attempt. */
27075
- action_attempt_id: string
27076
- status: 'pending'
27077
- result: null
27078
- error: null
27079
- action_type: 'SET_THERMOSTAT_OFF'
27080
- }
27081
- | {
27082
- /** The ID of the action attempt. */
27083
- action_attempt_id: string
27084
- status: 'success'
27085
- error: null
27086
- action_type: 'SET_THERMOSTAT_OFF'
27087
- result: {}
27088
- }
27089
- | {
27090
- /** The ID of the action attempt. */
27091
- action_attempt_id: string
27092
- status: 'error'
27093
- result: null
27094
- action_type: 'SET_THERMOSTAT_OFF'
27095
- error: {
27096
- type: string
27097
- message: string
27098
- }
27099
- }
27100
25525
  | {
27101
25526
  /** The ID of the action attempt. */
27102
25527
  action_attempt_id: string
@@ -28752,87 +27177,6 @@ export interface Routes {
28752
27177
  message: string
28753
27178
  }
28754
27179
  }
28755
- | {
28756
- /** The ID of the action attempt. */
28757
- action_attempt_id: string
28758
- status: 'pending'
28759
- result: null
28760
- error: null
28761
- action_type: 'SET_COOL'
28762
- }
28763
- | {
28764
- /** The ID of the action attempt. */
28765
- action_attempt_id: string
28766
- status: 'success'
28767
- error: null
28768
- action_type: 'SET_COOL'
28769
- result: {}
28770
- }
28771
- | {
28772
- /** The ID of the action attempt. */
28773
- action_attempt_id: string
28774
- status: 'error'
28775
- result: null
28776
- action_type: 'SET_COOL'
28777
- error: {
28778
- type: string
28779
- message: string
28780
- }
28781
- }
28782
- | {
28783
- /** The ID of the action attempt. */
28784
- action_attempt_id: string
28785
- status: 'pending'
28786
- result: null
28787
- error: null
28788
- action_type: 'SET_HEAT'
28789
- }
28790
- | {
28791
- /** The ID of the action attempt. */
28792
- action_attempt_id: string
28793
- status: 'success'
28794
- error: null
28795
- action_type: 'SET_HEAT'
28796
- result: {}
28797
- }
28798
- | {
28799
- /** The ID of the action attempt. */
28800
- action_attempt_id: string
28801
- status: 'error'
28802
- result: null
28803
- action_type: 'SET_HEAT'
28804
- error: {
28805
- type: string
28806
- message: string
28807
- }
28808
- }
28809
- | {
28810
- /** The ID of the action attempt. */
28811
- action_attempt_id: string
28812
- status: 'pending'
28813
- result: null
28814
- error: null
28815
- action_type: 'SET_HEAT_COOL'
28816
- }
28817
- | {
28818
- /** The ID of the action attempt. */
28819
- action_attempt_id: string
28820
- status: 'success'
28821
- error: null
28822
- action_type: 'SET_HEAT_COOL'
28823
- result: {}
28824
- }
28825
- | {
28826
- /** The ID of the action attempt. */
28827
- action_attempt_id: string
28828
- status: 'error'
28829
- result: null
28830
- action_type: 'SET_HEAT_COOL'
28831
- error: {
28832
- type: string
28833
- message: string
28834
- }
28835
- }
28836
27180
  | {
28837
27181
  /** The ID of the action attempt. */
28838
27182
  action_attempt_id: string
@@ -28860,33 +27204,6 @@ export interface Routes {
28860
27204
  message: string
28861
27205
  }
28862
27206
  }
28863
- | {
28864
- /** The ID of the action attempt. */
28865
- action_attempt_id: string
28866
- status: 'pending'
28867
- result: null
28868
- error: null
28869
- action_type: 'SET_THERMOSTAT_OFF'
28870
- }
28871
- | {
28872
- /** The ID of the action attempt. */
28873
- action_attempt_id: string
28874
- status: 'success'
28875
- error: null
28876
- action_type: 'SET_THERMOSTAT_OFF'
28877
- result: {}
28878
- }
28879
- | {
28880
- /** The ID of the action attempt. */
28881
- action_attempt_id: string
28882
- status: 'error'
28883
- result: null
28884
- action_type: 'SET_THERMOSTAT_OFF'
28885
- error: {
28886
- type: string
28887
- message: string
28888
- }
28889
- }
28890
27207
  | {
28891
27208
  /** The ID of the action attempt. */
28892
27209
  action_attempt_id: string
@@ -29786,87 +28103,6 @@ export interface Routes {
29786
28103
  message: string
29787
28104
  }
29788
28105
  }
29789
- | {
29790
- /** The ID of the action attempt. */
29791
- action_attempt_id: string
29792
- status: 'pending'
29793
- result: null
29794
- error: null
29795
- action_type: 'SET_COOL'
29796
- }
29797
- | {
29798
- /** The ID of the action attempt. */
29799
- action_attempt_id: string
29800
- status: 'success'
29801
- error: null
29802
- action_type: 'SET_COOL'
29803
- result: {}
29804
- }
29805
- | {
29806
- /** The ID of the action attempt. */
29807
- action_attempt_id: string
29808
- status: 'error'
29809
- result: null
29810
- action_type: 'SET_COOL'
29811
- error: {
29812
- type: string
29813
- message: string
29814
- }
29815
- }
29816
- | {
29817
- /** The ID of the action attempt. */
29818
- action_attempt_id: string
29819
- status: 'pending'
29820
- result: null
29821
- error: null
29822
- action_type: 'SET_HEAT'
29823
- }
29824
- | {
29825
- /** The ID of the action attempt. */
29826
- action_attempt_id: string
29827
- status: 'success'
29828
- error: null
29829
- action_type: 'SET_HEAT'
29830
- result: {}
29831
- }
29832
- | {
29833
- /** The ID of the action attempt. */
29834
- action_attempt_id: string
29835
- status: 'error'
29836
- result: null
29837
- action_type: 'SET_HEAT'
29838
- error: {
29839
- type: string
29840
- message: string
29841
- }
29842
- }
29843
- | {
29844
- /** The ID of the action attempt. */
29845
- action_attempt_id: string
29846
- status: 'pending'
29847
- result: null
29848
- error: null
29849
- action_type: 'SET_HEAT_COOL'
29850
- }
29851
- | {
29852
- /** The ID of the action attempt. */
29853
- action_attempt_id: string
29854
- status: 'success'
29855
- error: null
29856
- action_type: 'SET_HEAT_COOL'
29857
- result: {}
29858
- }
29859
- | {
29860
- /** The ID of the action attempt. */
29861
- action_attempt_id: string
29862
- status: 'error'
29863
- result: null
29864
- action_type: 'SET_HEAT_COOL'
29865
- error: {
29866
- type: string
29867
- message: string
29868
- }
29869
- }
29870
28106
  | {
29871
28107
  /** The ID of the action attempt. */
29872
28108
  action_attempt_id: string
@@ -29894,33 +28130,6 @@ export interface Routes {
29894
28130
  message: string
29895
28131
  }
29896
28132
  }
29897
- | {
29898
- /** The ID of the action attempt. */
29899
- action_attempt_id: string
29900
- status: 'pending'
29901
- result: null
29902
- error: null
29903
- action_type: 'SET_THERMOSTAT_OFF'
29904
- }
29905
- | {
29906
- /** The ID of the action attempt. */
29907
- action_attempt_id: string
29908
- status: 'success'
29909
- error: null
29910
- action_type: 'SET_THERMOSTAT_OFF'
29911
- result: {}
29912
- }
29913
- | {
29914
- /** The ID of the action attempt. */
29915
- action_attempt_id: string
29916
- status: 'error'
29917
- result: null
29918
- action_type: 'SET_THERMOSTAT_OFF'
29919
- error: {
29920
- type: string
29921
- message: string
29922
- }
29923
- }
29924
28133
  | {
29925
28134
  /** The ID of the action attempt. */
29926
28135
  action_attempt_id: string
@@ -32400,87 +30609,6 @@ export interface Routes {
32400
30609
  message: string
32401
30610
  }
32402
30611
  }
32403
- | {
32404
- /** The ID of the action attempt. */
32405
- action_attempt_id: string
32406
- status: 'pending'
32407
- result: null
32408
- error: null
32409
- action_type: 'SET_COOL'
32410
- }
32411
- | {
32412
- /** The ID of the action attempt. */
32413
- action_attempt_id: string
32414
- status: 'success'
32415
- error: null
32416
- action_type: 'SET_COOL'
32417
- result: {}
32418
- }
32419
- | {
32420
- /** The ID of the action attempt. */
32421
- action_attempt_id: string
32422
- status: 'error'
32423
- result: null
32424
- action_type: 'SET_COOL'
32425
- error: {
32426
- type: string
32427
- message: string
32428
- }
32429
- }
32430
- | {
32431
- /** The ID of the action attempt. */
32432
- action_attempt_id: string
32433
- status: 'pending'
32434
- result: null
32435
- error: null
32436
- action_type: 'SET_HEAT'
32437
- }
32438
- | {
32439
- /** The ID of the action attempt. */
32440
- action_attempt_id: string
32441
- status: 'success'
32442
- error: null
32443
- action_type: 'SET_HEAT'
32444
- result: {}
32445
- }
32446
- | {
32447
- /** The ID of the action attempt. */
32448
- action_attempt_id: string
32449
- status: 'error'
32450
- result: null
32451
- action_type: 'SET_HEAT'
32452
- error: {
32453
- type: string
32454
- message: string
32455
- }
32456
- }
32457
- | {
32458
- /** The ID of the action attempt. */
32459
- action_attempt_id: string
32460
- status: 'pending'
32461
- result: null
32462
- error: null
32463
- action_type: 'SET_HEAT_COOL'
32464
- }
32465
- | {
32466
- /** The ID of the action attempt. */
32467
- action_attempt_id: string
32468
- status: 'success'
32469
- error: null
32470
- action_type: 'SET_HEAT_COOL'
32471
- result: {}
32472
- }
32473
- | {
32474
- /** The ID of the action attempt. */
32475
- action_attempt_id: string
32476
- status: 'error'
32477
- result: null
32478
- action_type: 'SET_HEAT_COOL'
32479
- error: {
32480
- type: string
32481
- message: string
32482
- }
32483
- }
32484
30612
  | {
32485
30613
  /** The ID of the action attempt. */
32486
30614
  action_attempt_id: string
@@ -32508,33 +30636,6 @@ export interface Routes {
32508
30636
  message: string
32509
30637
  }
32510
30638
  }
32511
- | {
32512
- /** The ID of the action attempt. */
32513
- action_attempt_id: string
32514
- status: 'pending'
32515
- result: null
32516
- error: null
32517
- action_type: 'SET_THERMOSTAT_OFF'
32518
- }
32519
- | {
32520
- /** The ID of the action attempt. */
32521
- action_attempt_id: string
32522
- status: 'success'
32523
- error: null
32524
- action_type: 'SET_THERMOSTAT_OFF'
32525
- result: {}
32526
- }
32527
- | {
32528
- /** The ID of the action attempt. */
32529
- action_attempt_id: string
32530
- status: 'error'
32531
- result: null
32532
- action_type: 'SET_THERMOSTAT_OFF'
32533
- error: {
32534
- type: string
32535
- message: string
32536
- }
32537
- }
32538
30639
  | {
32539
30640
  /** The ID of the action attempt. */
32540
30641
  action_attempt_id: string
@@ -33599,87 +31700,6 @@ export interface Routes {
33599
31700
  message: string
33600
31701
  }
33601
31702
  }
33602
- | {
33603
- /** The ID of the action attempt. */
33604
- action_attempt_id: string
33605
- status: 'pending'
33606
- result: null
33607
- error: null
33608
- action_type: 'SET_COOL'
33609
- }
33610
- | {
33611
- /** The ID of the action attempt. */
33612
- action_attempt_id: string
33613
- status: 'success'
33614
- error: null
33615
- action_type: 'SET_COOL'
33616
- result: {}
33617
- }
33618
- | {
33619
- /** The ID of the action attempt. */
33620
- action_attempt_id: string
33621
- status: 'error'
33622
- result: null
33623
- action_type: 'SET_COOL'
33624
- error: {
33625
- type: string
33626
- message: string
33627
- }
33628
- }
33629
- | {
33630
- /** The ID of the action attempt. */
33631
- action_attempt_id: string
33632
- status: 'pending'
33633
- result: null
33634
- error: null
33635
- action_type: 'SET_HEAT'
33636
- }
33637
- | {
33638
- /** The ID of the action attempt. */
33639
- action_attempt_id: string
33640
- status: 'success'
33641
- error: null
33642
- action_type: 'SET_HEAT'
33643
- result: {}
33644
- }
33645
- | {
33646
- /** The ID of the action attempt. */
33647
- action_attempt_id: string
33648
- status: 'error'
33649
- result: null
33650
- action_type: 'SET_HEAT'
33651
- error: {
33652
- type: string
33653
- message: string
33654
- }
33655
- }
33656
- | {
33657
- /** The ID of the action attempt. */
33658
- action_attempt_id: string
33659
- status: 'pending'
33660
- result: null
33661
- error: null
33662
- action_type: 'SET_HEAT_COOL'
33663
- }
33664
- | {
33665
- /** The ID of the action attempt. */
33666
- action_attempt_id: string
33667
- status: 'success'
33668
- error: null
33669
- action_type: 'SET_HEAT_COOL'
33670
- result: {}
33671
- }
33672
- | {
33673
- /** The ID of the action attempt. */
33674
- action_attempt_id: string
33675
- status: 'error'
33676
- result: null
33677
- action_type: 'SET_HEAT_COOL'
33678
- error: {
33679
- type: string
33680
- message: string
33681
- }
33682
- }
33683
31703
  | {
33684
31704
  /** The ID of the action attempt. */
33685
31705
  action_attempt_id: string
@@ -33707,33 +31727,6 @@ export interface Routes {
33707
31727
  message: string
33708
31728
  }
33709
31729
  }
33710
- | {
33711
- /** The ID of the action attempt. */
33712
- action_attempt_id: string
33713
- status: 'pending'
33714
- result: null
33715
- error: null
33716
- action_type: 'SET_THERMOSTAT_OFF'
33717
- }
33718
- | {
33719
- /** The ID of the action attempt. */
33720
- action_attempt_id: string
33721
- status: 'success'
33722
- error: null
33723
- action_type: 'SET_THERMOSTAT_OFF'
33724
- result: {}
33725
- }
33726
- | {
33727
- /** The ID of the action attempt. */
33728
- action_attempt_id: string
33729
- status: 'error'
33730
- result: null
33731
- action_type: 'SET_THERMOSTAT_OFF'
33732
- error: {
33733
- type: string
33734
- message: string
33735
- }
33736
- }
33737
31730
  | {
33738
31731
  /** The ID of the action attempt. */
33739
31732
  action_attempt_id: string
@@ -34656,87 +32649,6 @@ export interface Routes {
34656
32649
  message: string
34657
32650
  }
34658
32651
  }
34659
- | {
34660
- /** The ID of the action attempt. */
34661
- action_attempt_id: string
34662
- status: 'pending'
34663
- result: null
34664
- error: null
34665
- action_type: 'SET_COOL'
34666
- }
34667
- | {
34668
- /** The ID of the action attempt. */
34669
- action_attempt_id: string
34670
- status: 'success'
34671
- error: null
34672
- action_type: 'SET_COOL'
34673
- result: {}
34674
- }
34675
- | {
34676
- /** The ID of the action attempt. */
34677
- action_attempt_id: string
34678
- status: 'error'
34679
- result: null
34680
- action_type: 'SET_COOL'
34681
- error: {
34682
- type: string
34683
- message: string
34684
- }
34685
- }
34686
- | {
34687
- /** The ID of the action attempt. */
34688
- action_attempt_id: string
34689
- status: 'pending'
34690
- result: null
34691
- error: null
34692
- action_type: 'SET_HEAT'
34693
- }
34694
- | {
34695
- /** The ID of the action attempt. */
34696
- action_attempt_id: string
34697
- status: 'success'
34698
- error: null
34699
- action_type: 'SET_HEAT'
34700
- result: {}
34701
- }
34702
- | {
34703
- /** The ID of the action attempt. */
34704
- action_attempt_id: string
34705
- status: 'error'
34706
- result: null
34707
- action_type: 'SET_HEAT'
34708
- error: {
34709
- type: string
34710
- message: string
34711
- }
34712
- }
34713
- | {
34714
- /** The ID of the action attempt. */
34715
- action_attempt_id: string
34716
- status: 'pending'
34717
- result: null
34718
- error: null
34719
- action_type: 'SET_HEAT_COOL'
34720
- }
34721
- | {
34722
- /** The ID of the action attempt. */
34723
- action_attempt_id: string
34724
- status: 'success'
34725
- error: null
34726
- action_type: 'SET_HEAT_COOL'
34727
- result: {}
34728
- }
34729
- | {
34730
- /** The ID of the action attempt. */
34731
- action_attempt_id: string
34732
- status: 'error'
34733
- result: null
34734
- action_type: 'SET_HEAT_COOL'
34735
- error: {
34736
- type: string
34737
- message: string
34738
- }
34739
- }
34740
32652
  | {
34741
32653
  /** The ID of the action attempt. */
34742
32654
  action_attempt_id: string
@@ -34764,33 +32676,6 @@ export interface Routes {
34764
32676
  message: string
34765
32677
  }
34766
32678
  }
34767
- | {
34768
- /** The ID of the action attempt. */
34769
- action_attempt_id: string
34770
- status: 'pending'
34771
- result: null
34772
- error: null
34773
- action_type: 'SET_THERMOSTAT_OFF'
34774
- }
34775
- | {
34776
- /** The ID of the action attempt. */
34777
- action_attempt_id: string
34778
- status: 'success'
34779
- error: null
34780
- action_type: 'SET_THERMOSTAT_OFF'
34781
- result: {}
34782
- }
34783
- | {
34784
- /** The ID of the action attempt. */
34785
- action_attempt_id: string
34786
- status: 'error'
34787
- result: null
34788
- action_type: 'SET_THERMOSTAT_OFF'
34789
- error: {
34790
- type: string
34791
- message: string
34792
- }
34793
- }
34794
32679
  | {
34795
32680
  /** The ID of the action attempt. */
34796
32681
  action_attempt_id: string
@@ -37857,87 +35742,6 @@ export interface Routes {
37857
35742
  message: string
37858
35743
  }
37859
35744
  }
37860
- | {
37861
- /** The ID of the action attempt. */
37862
- action_attempt_id: string
37863
- status: 'pending'
37864
- result: null
37865
- error: null
37866
- action_type: 'SET_COOL'
37867
- }
37868
- | {
37869
- /** The ID of the action attempt. */
37870
- action_attempt_id: string
37871
- status: 'success'
37872
- error: null
37873
- action_type: 'SET_COOL'
37874
- result: {}
37875
- }
37876
- | {
37877
- /** The ID of the action attempt. */
37878
- action_attempt_id: string
37879
- status: 'error'
37880
- result: null
37881
- action_type: 'SET_COOL'
37882
- error: {
37883
- type: string
37884
- message: string
37885
- }
37886
- }
37887
- | {
37888
- /** The ID of the action attempt. */
37889
- action_attempt_id: string
37890
- status: 'pending'
37891
- result: null
37892
- error: null
37893
- action_type: 'SET_HEAT'
37894
- }
37895
- | {
37896
- /** The ID of the action attempt. */
37897
- action_attempt_id: string
37898
- status: 'success'
37899
- error: null
37900
- action_type: 'SET_HEAT'
37901
- result: {}
37902
- }
37903
- | {
37904
- /** The ID of the action attempt. */
37905
- action_attempt_id: string
37906
- status: 'error'
37907
- result: null
37908
- action_type: 'SET_HEAT'
37909
- error: {
37910
- type: string
37911
- message: string
37912
- }
37913
- }
37914
- | {
37915
- /** The ID of the action attempt. */
37916
- action_attempt_id: string
37917
- status: 'pending'
37918
- result: null
37919
- error: null
37920
- action_type: 'SET_HEAT_COOL'
37921
- }
37922
- | {
37923
- /** The ID of the action attempt. */
37924
- action_attempt_id: string
37925
- status: 'success'
37926
- error: null
37927
- action_type: 'SET_HEAT_COOL'
37928
- result: {}
37929
- }
37930
- | {
37931
- /** The ID of the action attempt. */
37932
- action_attempt_id: string
37933
- status: 'error'
37934
- result: null
37935
- action_type: 'SET_HEAT_COOL'
37936
- error: {
37937
- type: string
37938
- message: string
37939
- }
37940
- }
37941
35745
  | {
37942
35746
  /** The ID of the action attempt. */
37943
35747
  action_attempt_id: string
@@ -37965,33 +35769,6 @@ export interface Routes {
37965
35769
  message: string
37966
35770
  }
37967
35771
  }
37968
- | {
37969
- /** The ID of the action attempt. */
37970
- action_attempt_id: string
37971
- status: 'pending'
37972
- result: null
37973
- error: null
37974
- action_type: 'SET_THERMOSTAT_OFF'
37975
- }
37976
- | {
37977
- /** The ID of the action attempt. */
37978
- action_attempt_id: string
37979
- status: 'success'
37980
- error: null
37981
- action_type: 'SET_THERMOSTAT_OFF'
37982
- result: {}
37983
- }
37984
- | {
37985
- /** The ID of the action attempt. */
37986
- action_attempt_id: string
37987
- status: 'error'
37988
- result: null
37989
- action_type: 'SET_THERMOSTAT_OFF'
37990
- error: {
37991
- type: string
37992
- message: string
37993
- }
37994
- }
37995
35772
  | {
37996
35773
  /** The ID of the action attempt. */
37997
35774
  action_attempt_id: string