@seamapi/types 1.304.0 → 1.306.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 +119 -17
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +625 -4
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +78 -0
- package/lib/seam/connect/models/action-attempts/action-attempt.js +2 -0
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/set-hvac-mode.d.ts +80 -0
- package/lib/seam/connect/models/action-attempts/set-hvac-mode.js +25 -0
- package/lib/seam/connect/models/action-attempts/set-hvac-mode.js.map +1 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +40 -2
- package/lib/seam/connect/openapi.js +85 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +506 -2
- package/package.json +2 -2
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +2 -0
- package/src/lib/seam/connect/models/action-attempts/set-hvac-mode.ts +33 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +85 -1
- package/src/lib/seam/connect/route-types.ts +569 -0
|
@@ -783,6 +783,33 @@ export interface Routes {
|
|
|
783
783
|
message: string
|
|
784
784
|
}
|
|
785
785
|
}
|
|
786
|
+
| {
|
|
787
|
+
/** The ID of the action attempt. */
|
|
788
|
+
action_attempt_id: string
|
|
789
|
+
status: 'pending'
|
|
790
|
+
result: null
|
|
791
|
+
error: null
|
|
792
|
+
action_type: 'SET_HVAC_MODE'
|
|
793
|
+
}
|
|
794
|
+
| {
|
|
795
|
+
/** The ID of the action attempt. */
|
|
796
|
+
action_attempt_id: string
|
|
797
|
+
status: 'success'
|
|
798
|
+
error: null
|
|
799
|
+
action_type: 'SET_HVAC_MODE'
|
|
800
|
+
result: {}
|
|
801
|
+
}
|
|
802
|
+
| {
|
|
803
|
+
/** The ID of the action attempt. */
|
|
804
|
+
action_attempt_id: string
|
|
805
|
+
status: 'error'
|
|
806
|
+
result: null
|
|
807
|
+
action_type: 'SET_HVAC_MODE'
|
|
808
|
+
error: {
|
|
809
|
+
type: string
|
|
810
|
+
message: string
|
|
811
|
+
}
|
|
812
|
+
}
|
|
786
813
|
| {
|
|
787
814
|
/** The ID of the action attempt. */
|
|
788
815
|
action_attempt_id: string
|
|
@@ -1936,6 +1963,33 @@ export interface Routes {
|
|
|
1936
1963
|
message: string
|
|
1937
1964
|
}
|
|
1938
1965
|
}
|
|
1966
|
+
| {
|
|
1967
|
+
/** The ID of the action attempt. */
|
|
1968
|
+
action_attempt_id: string
|
|
1969
|
+
status: 'pending'
|
|
1970
|
+
result: null
|
|
1971
|
+
error: null
|
|
1972
|
+
action_type: 'SET_HVAC_MODE'
|
|
1973
|
+
}
|
|
1974
|
+
| {
|
|
1975
|
+
/** The ID of the action attempt. */
|
|
1976
|
+
action_attempt_id: string
|
|
1977
|
+
status: 'success'
|
|
1978
|
+
error: null
|
|
1979
|
+
action_type: 'SET_HVAC_MODE'
|
|
1980
|
+
result: {}
|
|
1981
|
+
}
|
|
1982
|
+
| {
|
|
1983
|
+
/** The ID of the action attempt. */
|
|
1984
|
+
action_attempt_id: string
|
|
1985
|
+
status: 'error'
|
|
1986
|
+
result: null
|
|
1987
|
+
action_type: 'SET_HVAC_MODE'
|
|
1988
|
+
error: {
|
|
1989
|
+
type: string
|
|
1990
|
+
message: string
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1939
1993
|
| {
|
|
1940
1994
|
/** The ID of the action attempt. */
|
|
1941
1995
|
action_attempt_id: string
|
|
@@ -3319,6 +3373,33 @@ export interface Routes {
|
|
|
3319
3373
|
message: string
|
|
3320
3374
|
}
|
|
3321
3375
|
}
|
|
3376
|
+
| {
|
|
3377
|
+
/** The ID of the action attempt. */
|
|
3378
|
+
action_attempt_id: string
|
|
3379
|
+
status: 'pending'
|
|
3380
|
+
result: null
|
|
3381
|
+
error: null
|
|
3382
|
+
action_type: 'SET_HVAC_MODE'
|
|
3383
|
+
}
|
|
3384
|
+
| {
|
|
3385
|
+
/** The ID of the action attempt. */
|
|
3386
|
+
action_attempt_id: string
|
|
3387
|
+
status: 'success'
|
|
3388
|
+
error: null
|
|
3389
|
+
action_type: 'SET_HVAC_MODE'
|
|
3390
|
+
result: {}
|
|
3391
|
+
}
|
|
3392
|
+
| {
|
|
3393
|
+
/** The ID of the action attempt. */
|
|
3394
|
+
action_attempt_id: string
|
|
3395
|
+
status: 'error'
|
|
3396
|
+
result: null
|
|
3397
|
+
action_type: 'SET_HVAC_MODE'
|
|
3398
|
+
error: {
|
|
3399
|
+
type: string
|
|
3400
|
+
message: string
|
|
3401
|
+
}
|
|
3402
|
+
}
|
|
3322
3403
|
| {
|
|
3323
3404
|
/** The ID of the action attempt. */
|
|
3324
3405
|
action_attempt_id: string
|
|
@@ -4459,6 +4540,33 @@ export interface Routes {
|
|
|
4459
4540
|
message: string
|
|
4460
4541
|
}
|
|
4461
4542
|
}
|
|
4543
|
+
| {
|
|
4544
|
+
/** The ID of the action attempt. */
|
|
4545
|
+
action_attempt_id: string
|
|
4546
|
+
status: 'pending'
|
|
4547
|
+
result: null
|
|
4548
|
+
error: null
|
|
4549
|
+
action_type: 'SET_HVAC_MODE'
|
|
4550
|
+
}
|
|
4551
|
+
| {
|
|
4552
|
+
/** The ID of the action attempt. */
|
|
4553
|
+
action_attempt_id: string
|
|
4554
|
+
status: 'success'
|
|
4555
|
+
error: null
|
|
4556
|
+
action_type: 'SET_HVAC_MODE'
|
|
4557
|
+
result: {}
|
|
4558
|
+
}
|
|
4559
|
+
| {
|
|
4560
|
+
/** The ID of the action attempt. */
|
|
4561
|
+
action_attempt_id: string
|
|
4562
|
+
status: 'error'
|
|
4563
|
+
result: null
|
|
4564
|
+
action_type: 'SET_HVAC_MODE'
|
|
4565
|
+
error: {
|
|
4566
|
+
type: string
|
|
4567
|
+
message: string
|
|
4568
|
+
}
|
|
4569
|
+
}
|
|
4462
4570
|
| {
|
|
4463
4571
|
/** The ID of the action attempt. */
|
|
4464
4572
|
action_attempt_id: string
|
|
@@ -7170,6 +7278,33 @@ export interface Routes {
|
|
|
7170
7278
|
message: string
|
|
7171
7279
|
}
|
|
7172
7280
|
}
|
|
7281
|
+
| {
|
|
7282
|
+
/** The ID of the action attempt. */
|
|
7283
|
+
action_attempt_id: string
|
|
7284
|
+
status: 'pending'
|
|
7285
|
+
result: null
|
|
7286
|
+
error: null
|
|
7287
|
+
action_type: 'SET_HVAC_MODE'
|
|
7288
|
+
}
|
|
7289
|
+
| {
|
|
7290
|
+
/** The ID of the action attempt. */
|
|
7291
|
+
action_attempt_id: string
|
|
7292
|
+
status: 'success'
|
|
7293
|
+
error: null
|
|
7294
|
+
action_type: 'SET_HVAC_MODE'
|
|
7295
|
+
result: {}
|
|
7296
|
+
}
|
|
7297
|
+
| {
|
|
7298
|
+
/** The ID of the action attempt. */
|
|
7299
|
+
action_attempt_id: string
|
|
7300
|
+
status: 'error'
|
|
7301
|
+
result: null
|
|
7302
|
+
action_type: 'SET_HVAC_MODE'
|
|
7303
|
+
error: {
|
|
7304
|
+
type: string
|
|
7305
|
+
message: string
|
|
7306
|
+
}
|
|
7307
|
+
}
|
|
7173
7308
|
| {
|
|
7174
7309
|
/** The ID of the action attempt. */
|
|
7175
7310
|
action_attempt_id: string
|
|
@@ -8212,6 +8347,33 @@ export interface Routes {
|
|
|
8212
8347
|
message: string
|
|
8213
8348
|
}
|
|
8214
8349
|
}
|
|
8350
|
+
| {
|
|
8351
|
+
/** The ID of the action attempt. */
|
|
8352
|
+
action_attempt_id: string
|
|
8353
|
+
status: 'pending'
|
|
8354
|
+
result: null
|
|
8355
|
+
error: null
|
|
8356
|
+
action_type: 'SET_HVAC_MODE'
|
|
8357
|
+
}
|
|
8358
|
+
| {
|
|
8359
|
+
/** The ID of the action attempt. */
|
|
8360
|
+
action_attempt_id: string
|
|
8361
|
+
status: 'success'
|
|
8362
|
+
error: null
|
|
8363
|
+
action_type: 'SET_HVAC_MODE'
|
|
8364
|
+
result: {}
|
|
8365
|
+
}
|
|
8366
|
+
| {
|
|
8367
|
+
/** The ID of the action attempt. */
|
|
8368
|
+
action_attempt_id: string
|
|
8369
|
+
status: 'error'
|
|
8370
|
+
result: null
|
|
8371
|
+
action_type: 'SET_HVAC_MODE'
|
|
8372
|
+
error: {
|
|
8373
|
+
type: string
|
|
8374
|
+
message: string
|
|
8375
|
+
}
|
|
8376
|
+
}
|
|
8215
8377
|
| {
|
|
8216
8378
|
/** The ID of the action attempt. */
|
|
8217
8379
|
action_attempt_id: string
|
|
@@ -10798,6 +10960,33 @@ export interface Routes {
|
|
|
10798
10960
|
message: string
|
|
10799
10961
|
}
|
|
10800
10962
|
}
|
|
10963
|
+
| {
|
|
10964
|
+
/** The ID of the action attempt. */
|
|
10965
|
+
action_attempt_id: string
|
|
10966
|
+
status: 'pending'
|
|
10967
|
+
result: null
|
|
10968
|
+
error: null
|
|
10969
|
+
action_type: 'SET_HVAC_MODE'
|
|
10970
|
+
}
|
|
10971
|
+
| {
|
|
10972
|
+
/** The ID of the action attempt. */
|
|
10973
|
+
action_attempt_id: string
|
|
10974
|
+
status: 'success'
|
|
10975
|
+
error: null
|
|
10976
|
+
action_type: 'SET_HVAC_MODE'
|
|
10977
|
+
result: {}
|
|
10978
|
+
}
|
|
10979
|
+
| {
|
|
10980
|
+
/** The ID of the action attempt. */
|
|
10981
|
+
action_attempt_id: string
|
|
10982
|
+
status: 'error'
|
|
10983
|
+
result: null
|
|
10984
|
+
action_type: 'SET_HVAC_MODE'
|
|
10985
|
+
error: {
|
|
10986
|
+
type: string
|
|
10987
|
+
message: string
|
|
10988
|
+
}
|
|
10989
|
+
}
|
|
10801
10990
|
| {
|
|
10802
10991
|
/** The ID of the action attempt. */
|
|
10803
10992
|
action_attempt_id: string
|
|
@@ -11792,6 +11981,33 @@ export interface Routes {
|
|
|
11792
11981
|
message: string
|
|
11793
11982
|
}
|
|
11794
11983
|
}
|
|
11984
|
+
| {
|
|
11985
|
+
/** The ID of the action attempt. */
|
|
11986
|
+
action_attempt_id: string
|
|
11987
|
+
status: 'pending'
|
|
11988
|
+
result: null
|
|
11989
|
+
error: null
|
|
11990
|
+
action_type: 'SET_HVAC_MODE'
|
|
11991
|
+
}
|
|
11992
|
+
| {
|
|
11993
|
+
/** The ID of the action attempt. */
|
|
11994
|
+
action_attempt_id: string
|
|
11995
|
+
status: 'success'
|
|
11996
|
+
error: null
|
|
11997
|
+
action_type: 'SET_HVAC_MODE'
|
|
11998
|
+
result: {}
|
|
11999
|
+
}
|
|
12000
|
+
| {
|
|
12001
|
+
/** The ID of the action attempt. */
|
|
12002
|
+
action_attempt_id: string
|
|
12003
|
+
status: 'error'
|
|
12004
|
+
result: null
|
|
12005
|
+
action_type: 'SET_HVAC_MODE'
|
|
12006
|
+
error: {
|
|
12007
|
+
type: string
|
|
12008
|
+
message: string
|
|
12009
|
+
}
|
|
12010
|
+
}
|
|
11795
12011
|
| {
|
|
11796
12012
|
/** The ID of the action attempt. */
|
|
11797
12013
|
action_attempt_id: string
|
|
@@ -12226,6 +12442,7 @@ export interface Routes {
|
|
|
12226
12442
|
| 'akiles'
|
|
12227
12443
|
| 'assa_abloy_vostio'
|
|
12228
12444
|
| 'assa_abloy_vostio_credential_service'
|
|
12445
|
+
| 'tado'
|
|
12229
12446
|
| 'yale_access'
|
|
12230
12447
|
| 'hid_cm'
|
|
12231
12448
|
| 'google_nest'
|
|
@@ -14157,6 +14374,7 @@ export interface Routes {
|
|
|
14157
14374
|
| 'akiles'
|
|
14158
14375
|
| 'assa_abloy_vostio'
|
|
14159
14376
|
| 'assa_abloy_vostio_credential_service'
|
|
14377
|
+
| 'tado'
|
|
14160
14378
|
display_name: string
|
|
14161
14379
|
image_url: string
|
|
14162
14380
|
provider_categories: Array<
|
|
@@ -18721,6 +18939,33 @@ export interface Routes {
|
|
|
18721
18939
|
message: string
|
|
18722
18940
|
}
|
|
18723
18941
|
}
|
|
18942
|
+
| {
|
|
18943
|
+
/** The ID of the action attempt. */
|
|
18944
|
+
action_attempt_id: string
|
|
18945
|
+
status: 'pending'
|
|
18946
|
+
result: null
|
|
18947
|
+
error: null
|
|
18948
|
+
action_type: 'SET_HVAC_MODE'
|
|
18949
|
+
}
|
|
18950
|
+
| {
|
|
18951
|
+
/** The ID of the action attempt. */
|
|
18952
|
+
action_attempt_id: string
|
|
18953
|
+
status: 'success'
|
|
18954
|
+
error: null
|
|
18955
|
+
action_type: 'SET_HVAC_MODE'
|
|
18956
|
+
result: {}
|
|
18957
|
+
}
|
|
18958
|
+
| {
|
|
18959
|
+
/** The ID of the action attempt. */
|
|
18960
|
+
action_attempt_id: string
|
|
18961
|
+
status: 'error'
|
|
18962
|
+
result: null
|
|
18963
|
+
action_type: 'SET_HVAC_MODE'
|
|
18964
|
+
error: {
|
|
18965
|
+
type: string
|
|
18966
|
+
message: string
|
|
18967
|
+
}
|
|
18968
|
+
}
|
|
18724
18969
|
| {
|
|
18725
18970
|
/** The ID of the action attempt. */
|
|
18726
18971
|
action_attempt_id: string
|
|
@@ -19716,6 +19961,33 @@ export interface Routes {
|
|
|
19716
19961
|
message: string
|
|
19717
19962
|
}
|
|
19718
19963
|
}
|
|
19964
|
+
| {
|
|
19965
|
+
/** The ID of the action attempt. */
|
|
19966
|
+
action_attempt_id: string
|
|
19967
|
+
status: 'pending'
|
|
19968
|
+
result: null
|
|
19969
|
+
error: null
|
|
19970
|
+
action_type: 'SET_HVAC_MODE'
|
|
19971
|
+
}
|
|
19972
|
+
| {
|
|
19973
|
+
/** The ID of the action attempt. */
|
|
19974
|
+
action_attempt_id: string
|
|
19975
|
+
status: 'success'
|
|
19976
|
+
error: null
|
|
19977
|
+
action_type: 'SET_HVAC_MODE'
|
|
19978
|
+
result: {}
|
|
19979
|
+
}
|
|
19980
|
+
| {
|
|
19981
|
+
/** The ID of the action attempt. */
|
|
19982
|
+
action_attempt_id: string
|
|
19983
|
+
status: 'error'
|
|
19984
|
+
result: null
|
|
19985
|
+
action_type: 'SET_HVAC_MODE'
|
|
19986
|
+
error: {
|
|
19987
|
+
type: string
|
|
19988
|
+
message: string
|
|
19989
|
+
}
|
|
19990
|
+
}
|
|
19719
19991
|
| {
|
|
19720
19992
|
/** The ID of the action attempt. */
|
|
19721
19993
|
action_attempt_id: string
|
|
@@ -22321,6 +22593,33 @@ export interface Routes {
|
|
|
22321
22593
|
message: string
|
|
22322
22594
|
}
|
|
22323
22595
|
}
|
|
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_HVAC_MODE'
|
|
22603
|
+
}
|
|
22604
|
+
| {
|
|
22605
|
+
/** The ID of the action attempt. */
|
|
22606
|
+
action_attempt_id: string
|
|
22607
|
+
status: 'success'
|
|
22608
|
+
error: null
|
|
22609
|
+
action_type: 'SET_HVAC_MODE'
|
|
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_HVAC_MODE'
|
|
22618
|
+
error: {
|
|
22619
|
+
type: string
|
|
22620
|
+
message: string
|
|
22621
|
+
}
|
|
22622
|
+
}
|
|
22324
22623
|
| {
|
|
22325
22624
|
/** The ID of the action attempt. */
|
|
22326
22625
|
action_attempt_id: string
|
|
@@ -23326,6 +23625,33 @@ export interface Routes {
|
|
|
23326
23625
|
message: string
|
|
23327
23626
|
}
|
|
23328
23627
|
}
|
|
23628
|
+
| {
|
|
23629
|
+
/** The ID of the action attempt. */
|
|
23630
|
+
action_attempt_id: string
|
|
23631
|
+
status: 'pending'
|
|
23632
|
+
result: null
|
|
23633
|
+
error: null
|
|
23634
|
+
action_type: 'SET_HVAC_MODE'
|
|
23635
|
+
}
|
|
23636
|
+
| {
|
|
23637
|
+
/** The ID of the action attempt. */
|
|
23638
|
+
action_attempt_id: string
|
|
23639
|
+
status: 'success'
|
|
23640
|
+
error: null
|
|
23641
|
+
action_type: 'SET_HVAC_MODE'
|
|
23642
|
+
result: {}
|
|
23643
|
+
}
|
|
23644
|
+
| {
|
|
23645
|
+
/** The ID of the action attempt. */
|
|
23646
|
+
action_attempt_id: string
|
|
23647
|
+
status: 'error'
|
|
23648
|
+
result: null
|
|
23649
|
+
action_type: 'SET_HVAC_MODE'
|
|
23650
|
+
error: {
|
|
23651
|
+
type: string
|
|
23652
|
+
message: string
|
|
23653
|
+
}
|
|
23654
|
+
}
|
|
23329
23655
|
| {
|
|
23330
23656
|
/** The ID of the action attempt. */
|
|
23331
23657
|
action_attempt_id: string
|
|
@@ -24370,6 +24696,33 @@ export interface Routes {
|
|
|
24370
24696
|
message: string
|
|
24371
24697
|
}
|
|
24372
24698
|
}
|
|
24699
|
+
| {
|
|
24700
|
+
/** The ID of the action attempt. */
|
|
24701
|
+
action_attempt_id: string
|
|
24702
|
+
status: 'pending'
|
|
24703
|
+
result: null
|
|
24704
|
+
error: null
|
|
24705
|
+
action_type: 'SET_HVAC_MODE'
|
|
24706
|
+
}
|
|
24707
|
+
| {
|
|
24708
|
+
/** The ID of the action attempt. */
|
|
24709
|
+
action_attempt_id: string
|
|
24710
|
+
status: 'success'
|
|
24711
|
+
error: null
|
|
24712
|
+
action_type: 'SET_HVAC_MODE'
|
|
24713
|
+
result: {}
|
|
24714
|
+
}
|
|
24715
|
+
| {
|
|
24716
|
+
/** The ID of the action attempt. */
|
|
24717
|
+
action_attempt_id: string
|
|
24718
|
+
status: 'error'
|
|
24719
|
+
result: null
|
|
24720
|
+
action_type: 'SET_HVAC_MODE'
|
|
24721
|
+
error: {
|
|
24722
|
+
type: string
|
|
24723
|
+
message: string
|
|
24724
|
+
}
|
|
24725
|
+
}
|
|
24373
24726
|
| {
|
|
24374
24727
|
/** The ID of the action attempt. */
|
|
24375
24728
|
action_attempt_id: string
|
|
@@ -25573,6 +25926,33 @@ export interface Routes {
|
|
|
25573
25926
|
message: string
|
|
25574
25927
|
}
|
|
25575
25928
|
}
|
|
25929
|
+
| {
|
|
25930
|
+
/** The ID of the action attempt. */
|
|
25931
|
+
action_attempt_id: string
|
|
25932
|
+
status: 'pending'
|
|
25933
|
+
result: null
|
|
25934
|
+
error: null
|
|
25935
|
+
action_type: 'SET_HVAC_MODE'
|
|
25936
|
+
}
|
|
25937
|
+
| {
|
|
25938
|
+
/** The ID of the action attempt. */
|
|
25939
|
+
action_attempt_id: string
|
|
25940
|
+
status: 'success'
|
|
25941
|
+
error: null
|
|
25942
|
+
action_type: 'SET_HVAC_MODE'
|
|
25943
|
+
result: {}
|
|
25944
|
+
}
|
|
25945
|
+
| {
|
|
25946
|
+
/** The ID of the action attempt. */
|
|
25947
|
+
action_attempt_id: string
|
|
25948
|
+
status: 'error'
|
|
25949
|
+
result: null
|
|
25950
|
+
action_type: 'SET_HVAC_MODE'
|
|
25951
|
+
error: {
|
|
25952
|
+
type: string
|
|
25953
|
+
message: string
|
|
25954
|
+
}
|
|
25955
|
+
}
|
|
25576
25956
|
| {
|
|
25577
25957
|
/** The ID of the action attempt. */
|
|
25578
25958
|
action_attempt_id: string
|
|
@@ -26574,6 +26954,33 @@ export interface Routes {
|
|
|
26574
26954
|
message: string
|
|
26575
26955
|
}
|
|
26576
26956
|
}
|
|
26957
|
+
| {
|
|
26958
|
+
/** The ID of the action attempt. */
|
|
26959
|
+
action_attempt_id: string
|
|
26960
|
+
status: 'pending'
|
|
26961
|
+
result: null
|
|
26962
|
+
error: null
|
|
26963
|
+
action_type: 'SET_HVAC_MODE'
|
|
26964
|
+
}
|
|
26965
|
+
| {
|
|
26966
|
+
/** The ID of the action attempt. */
|
|
26967
|
+
action_attempt_id: string
|
|
26968
|
+
status: 'success'
|
|
26969
|
+
error: null
|
|
26970
|
+
action_type: 'SET_HVAC_MODE'
|
|
26971
|
+
result: {}
|
|
26972
|
+
}
|
|
26973
|
+
| {
|
|
26974
|
+
/** The ID of the action attempt. */
|
|
26975
|
+
action_attempt_id: string
|
|
26976
|
+
status: 'error'
|
|
26977
|
+
result: null
|
|
26978
|
+
action_type: 'SET_HVAC_MODE'
|
|
26979
|
+
error: {
|
|
26980
|
+
type: string
|
|
26981
|
+
message: string
|
|
26982
|
+
}
|
|
26983
|
+
}
|
|
26577
26984
|
| {
|
|
26578
26985
|
/** The ID of the action attempt. */
|
|
26579
26986
|
action_attempt_id: string
|
|
@@ -28328,6 +28735,33 @@ export interface Routes {
|
|
|
28328
28735
|
message: string
|
|
28329
28736
|
}
|
|
28330
28737
|
}
|
|
28738
|
+
| {
|
|
28739
|
+
/** The ID of the action attempt. */
|
|
28740
|
+
action_attempt_id: string
|
|
28741
|
+
status: 'pending'
|
|
28742
|
+
result: null
|
|
28743
|
+
error: null
|
|
28744
|
+
action_type: 'SET_HVAC_MODE'
|
|
28745
|
+
}
|
|
28746
|
+
| {
|
|
28747
|
+
/** The ID of the action attempt. */
|
|
28748
|
+
action_attempt_id: string
|
|
28749
|
+
status: 'success'
|
|
28750
|
+
error: null
|
|
28751
|
+
action_type: 'SET_HVAC_MODE'
|
|
28752
|
+
result: {}
|
|
28753
|
+
}
|
|
28754
|
+
| {
|
|
28755
|
+
/** The ID of the action attempt. */
|
|
28756
|
+
action_attempt_id: string
|
|
28757
|
+
status: 'error'
|
|
28758
|
+
result: null
|
|
28759
|
+
action_type: 'SET_HVAC_MODE'
|
|
28760
|
+
error: {
|
|
28761
|
+
type: string
|
|
28762
|
+
message: string
|
|
28763
|
+
}
|
|
28764
|
+
}
|
|
28331
28765
|
| {
|
|
28332
28766
|
/** The ID of the action attempt. */
|
|
28333
28767
|
action_attempt_id: string
|
|
@@ -29333,6 +29767,33 @@ export interface Routes {
|
|
|
29333
29767
|
message: string
|
|
29334
29768
|
}
|
|
29335
29769
|
}
|
|
29770
|
+
| {
|
|
29771
|
+
/** The ID of the action attempt. */
|
|
29772
|
+
action_attempt_id: string
|
|
29773
|
+
status: 'pending'
|
|
29774
|
+
result: null
|
|
29775
|
+
error: null
|
|
29776
|
+
action_type: 'SET_HVAC_MODE'
|
|
29777
|
+
}
|
|
29778
|
+
| {
|
|
29779
|
+
/** The ID of the action attempt. */
|
|
29780
|
+
action_attempt_id: string
|
|
29781
|
+
status: 'success'
|
|
29782
|
+
error: null
|
|
29783
|
+
action_type: 'SET_HVAC_MODE'
|
|
29784
|
+
result: {}
|
|
29785
|
+
}
|
|
29786
|
+
| {
|
|
29787
|
+
/** The ID of the action attempt. */
|
|
29788
|
+
action_attempt_id: string
|
|
29789
|
+
status: 'error'
|
|
29790
|
+
result: null
|
|
29791
|
+
action_type: 'SET_HVAC_MODE'
|
|
29792
|
+
error: {
|
|
29793
|
+
type: string
|
|
29794
|
+
message: string
|
|
29795
|
+
}
|
|
29796
|
+
}
|
|
29336
29797
|
| {
|
|
29337
29798
|
/** The ID of the action attempt. */
|
|
29338
29799
|
action_attempt_id: string
|
|
@@ -31901,6 +32362,33 @@ export interface Routes {
|
|
|
31901
32362
|
message: string
|
|
31902
32363
|
}
|
|
31903
32364
|
}
|
|
32365
|
+
| {
|
|
32366
|
+
/** The ID of the action attempt. */
|
|
32367
|
+
action_attempt_id: string
|
|
32368
|
+
status: 'pending'
|
|
32369
|
+
result: null
|
|
32370
|
+
error: null
|
|
32371
|
+
action_type: 'SET_HVAC_MODE'
|
|
32372
|
+
}
|
|
32373
|
+
| {
|
|
32374
|
+
/** The ID of the action attempt. */
|
|
32375
|
+
action_attempt_id: string
|
|
32376
|
+
status: 'success'
|
|
32377
|
+
error: null
|
|
32378
|
+
action_type: 'SET_HVAC_MODE'
|
|
32379
|
+
result: {}
|
|
32380
|
+
}
|
|
32381
|
+
| {
|
|
32382
|
+
/** The ID of the action attempt. */
|
|
32383
|
+
action_attempt_id: string
|
|
32384
|
+
status: 'error'
|
|
32385
|
+
result: null
|
|
32386
|
+
action_type: 'SET_HVAC_MODE'
|
|
32387
|
+
error: {
|
|
32388
|
+
type: string
|
|
32389
|
+
message: string
|
|
32390
|
+
}
|
|
32391
|
+
}
|
|
31904
32392
|
| {
|
|
31905
32393
|
/** The ID of the action attempt. */
|
|
31906
32394
|
action_attempt_id: string
|
|
@@ -33071,6 +33559,33 @@ export interface Routes {
|
|
|
33071
33559
|
message: string
|
|
33072
33560
|
}
|
|
33073
33561
|
}
|
|
33562
|
+
| {
|
|
33563
|
+
/** The ID of the action attempt. */
|
|
33564
|
+
action_attempt_id: string
|
|
33565
|
+
status: 'pending'
|
|
33566
|
+
result: null
|
|
33567
|
+
error: null
|
|
33568
|
+
action_type: 'SET_HVAC_MODE'
|
|
33569
|
+
}
|
|
33570
|
+
| {
|
|
33571
|
+
/** The ID of the action attempt. */
|
|
33572
|
+
action_attempt_id: string
|
|
33573
|
+
status: 'success'
|
|
33574
|
+
error: null
|
|
33575
|
+
action_type: 'SET_HVAC_MODE'
|
|
33576
|
+
result: {}
|
|
33577
|
+
}
|
|
33578
|
+
| {
|
|
33579
|
+
/** The ID of the action attempt. */
|
|
33580
|
+
action_attempt_id: string
|
|
33581
|
+
status: 'error'
|
|
33582
|
+
result: null
|
|
33583
|
+
action_type: 'SET_HVAC_MODE'
|
|
33584
|
+
error: {
|
|
33585
|
+
type: string
|
|
33586
|
+
message: string
|
|
33587
|
+
}
|
|
33588
|
+
}
|
|
33074
33589
|
| {
|
|
33075
33590
|
/** The ID of the action attempt. */
|
|
33076
33591
|
action_attempt_id: string
|
|
@@ -34099,6 +34614,33 @@ export interface Routes {
|
|
|
34099
34614
|
message: string
|
|
34100
34615
|
}
|
|
34101
34616
|
}
|
|
34617
|
+
| {
|
|
34618
|
+
/** The ID of the action attempt. */
|
|
34619
|
+
action_attempt_id: string
|
|
34620
|
+
status: 'pending'
|
|
34621
|
+
result: null
|
|
34622
|
+
error: null
|
|
34623
|
+
action_type: 'SET_HVAC_MODE'
|
|
34624
|
+
}
|
|
34625
|
+
| {
|
|
34626
|
+
/** The ID of the action attempt. */
|
|
34627
|
+
action_attempt_id: string
|
|
34628
|
+
status: 'success'
|
|
34629
|
+
error: null
|
|
34630
|
+
action_type: 'SET_HVAC_MODE'
|
|
34631
|
+
result: {}
|
|
34632
|
+
}
|
|
34633
|
+
| {
|
|
34634
|
+
/** The ID of the action attempt. */
|
|
34635
|
+
action_attempt_id: string
|
|
34636
|
+
status: 'error'
|
|
34637
|
+
result: null
|
|
34638
|
+
action_type: 'SET_HVAC_MODE'
|
|
34639
|
+
error: {
|
|
34640
|
+
type: string
|
|
34641
|
+
message: string
|
|
34642
|
+
}
|
|
34643
|
+
}
|
|
34102
34644
|
| {
|
|
34103
34645
|
/** The ID of the action attempt. */
|
|
34104
34646
|
action_attempt_id: string
|
|
@@ -37245,6 +37787,33 @@ export interface Routes {
|
|
|
37245
37787
|
message: string
|
|
37246
37788
|
}
|
|
37247
37789
|
}
|
|
37790
|
+
| {
|
|
37791
|
+
/** The ID of the action attempt. */
|
|
37792
|
+
action_attempt_id: string
|
|
37793
|
+
status: 'pending'
|
|
37794
|
+
result: null
|
|
37795
|
+
error: null
|
|
37796
|
+
action_type: 'SET_HVAC_MODE'
|
|
37797
|
+
}
|
|
37798
|
+
| {
|
|
37799
|
+
/** The ID of the action attempt. */
|
|
37800
|
+
action_attempt_id: string
|
|
37801
|
+
status: 'success'
|
|
37802
|
+
error: null
|
|
37803
|
+
action_type: 'SET_HVAC_MODE'
|
|
37804
|
+
result: {}
|
|
37805
|
+
}
|
|
37806
|
+
| {
|
|
37807
|
+
/** The ID of the action attempt. */
|
|
37808
|
+
action_attempt_id: string
|
|
37809
|
+
status: 'error'
|
|
37810
|
+
result: null
|
|
37811
|
+
action_type: 'SET_HVAC_MODE'
|
|
37812
|
+
error: {
|
|
37813
|
+
type: string
|
|
37814
|
+
message: string
|
|
37815
|
+
}
|
|
37816
|
+
}
|
|
37248
37817
|
| {
|
|
37249
37818
|
/** The ID of the action attempt. */
|
|
37250
37819
|
action_attempt_id: string
|