@seamapi/types 1.303.1 → 1.305.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 +112 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +610 -2
- 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/events/acs/index.d.ts +26 -0
- package/lib/seam/connect/models/events/acs/systems.d.ts +54 -0
- package/lib/seam/connect/models/events/acs/systems.js +6 -0
- package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +26 -0
- package/lib/seam/connect/openapi.js +78 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +506 -2
- package/package.json +1 -1
- 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/events/acs/systems.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +78 -0
- 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
|
|
@@ -14852,6 +15068,7 @@ export interface Routes {
|
|
|
14852
15068
|
| 'access_code.backup_access_code_pulled'
|
|
14853
15069
|
| 'acs_system.added'
|
|
14854
15070
|
| 'acs_system.connected'
|
|
15071
|
+
| 'acs_system.disconnected'
|
|
14855
15072
|
| 'acs_user.deleted'
|
|
14856
15073
|
| 'acs_credential.deleted'
|
|
14857
15074
|
| 'acs_credential.issued'
|
|
@@ -14926,6 +15143,7 @@ export interface Routes {
|
|
|
14926
15143
|
| 'access_code.backup_access_code_pulled'
|
|
14927
15144
|
| 'acs_system.added'
|
|
14928
15145
|
| 'acs_system.connected'
|
|
15146
|
+
| 'acs_system.disconnected'
|
|
14929
15147
|
| 'acs_user.deleted'
|
|
14930
15148
|
| 'acs_credential.deleted'
|
|
14931
15149
|
| 'acs_credential.issued'
|
|
@@ -18719,6 +18937,33 @@ export interface Routes {
|
|
|
18719
18937
|
message: string
|
|
18720
18938
|
}
|
|
18721
18939
|
}
|
|
18940
|
+
| {
|
|
18941
|
+
/** The ID of the action attempt. */
|
|
18942
|
+
action_attempt_id: string
|
|
18943
|
+
status: 'pending'
|
|
18944
|
+
result: null
|
|
18945
|
+
error: null
|
|
18946
|
+
action_type: 'SET_HVAC_MODE'
|
|
18947
|
+
}
|
|
18948
|
+
| {
|
|
18949
|
+
/** The ID of the action attempt. */
|
|
18950
|
+
action_attempt_id: string
|
|
18951
|
+
status: 'success'
|
|
18952
|
+
error: null
|
|
18953
|
+
action_type: 'SET_HVAC_MODE'
|
|
18954
|
+
result: {}
|
|
18955
|
+
}
|
|
18956
|
+
| {
|
|
18957
|
+
/** The ID of the action attempt. */
|
|
18958
|
+
action_attempt_id: string
|
|
18959
|
+
status: 'error'
|
|
18960
|
+
result: null
|
|
18961
|
+
action_type: 'SET_HVAC_MODE'
|
|
18962
|
+
error: {
|
|
18963
|
+
type: string
|
|
18964
|
+
message: string
|
|
18965
|
+
}
|
|
18966
|
+
}
|
|
18722
18967
|
| {
|
|
18723
18968
|
/** The ID of the action attempt. */
|
|
18724
18969
|
action_attempt_id: string
|
|
@@ -19714,6 +19959,33 @@ export interface Routes {
|
|
|
19714
19959
|
message: string
|
|
19715
19960
|
}
|
|
19716
19961
|
}
|
|
19962
|
+
| {
|
|
19963
|
+
/** The ID of the action attempt. */
|
|
19964
|
+
action_attempt_id: string
|
|
19965
|
+
status: 'pending'
|
|
19966
|
+
result: null
|
|
19967
|
+
error: null
|
|
19968
|
+
action_type: 'SET_HVAC_MODE'
|
|
19969
|
+
}
|
|
19970
|
+
| {
|
|
19971
|
+
/** The ID of the action attempt. */
|
|
19972
|
+
action_attempt_id: string
|
|
19973
|
+
status: 'success'
|
|
19974
|
+
error: null
|
|
19975
|
+
action_type: 'SET_HVAC_MODE'
|
|
19976
|
+
result: {}
|
|
19977
|
+
}
|
|
19978
|
+
| {
|
|
19979
|
+
/** The ID of the action attempt. */
|
|
19980
|
+
action_attempt_id: string
|
|
19981
|
+
status: 'error'
|
|
19982
|
+
result: null
|
|
19983
|
+
action_type: 'SET_HVAC_MODE'
|
|
19984
|
+
error: {
|
|
19985
|
+
type: string
|
|
19986
|
+
message: string
|
|
19987
|
+
}
|
|
19988
|
+
}
|
|
19717
19989
|
| {
|
|
19718
19990
|
/** The ID of the action attempt. */
|
|
19719
19991
|
action_attempt_id: string
|
|
@@ -22319,6 +22591,33 @@ export interface Routes {
|
|
|
22319
22591
|
message: string
|
|
22320
22592
|
}
|
|
22321
22593
|
}
|
|
22594
|
+
| {
|
|
22595
|
+
/** The ID of the action attempt. */
|
|
22596
|
+
action_attempt_id: string
|
|
22597
|
+
status: 'pending'
|
|
22598
|
+
result: null
|
|
22599
|
+
error: null
|
|
22600
|
+
action_type: 'SET_HVAC_MODE'
|
|
22601
|
+
}
|
|
22602
|
+
| {
|
|
22603
|
+
/** The ID of the action attempt. */
|
|
22604
|
+
action_attempt_id: string
|
|
22605
|
+
status: 'success'
|
|
22606
|
+
error: null
|
|
22607
|
+
action_type: 'SET_HVAC_MODE'
|
|
22608
|
+
result: {}
|
|
22609
|
+
}
|
|
22610
|
+
| {
|
|
22611
|
+
/** The ID of the action attempt. */
|
|
22612
|
+
action_attempt_id: string
|
|
22613
|
+
status: 'error'
|
|
22614
|
+
result: null
|
|
22615
|
+
action_type: 'SET_HVAC_MODE'
|
|
22616
|
+
error: {
|
|
22617
|
+
type: string
|
|
22618
|
+
message: string
|
|
22619
|
+
}
|
|
22620
|
+
}
|
|
22322
22621
|
| {
|
|
22323
22622
|
/** The ID of the action attempt. */
|
|
22324
22623
|
action_attempt_id: string
|
|
@@ -23324,6 +23623,33 @@ export interface Routes {
|
|
|
23324
23623
|
message: string
|
|
23325
23624
|
}
|
|
23326
23625
|
}
|
|
23626
|
+
| {
|
|
23627
|
+
/** The ID of the action attempt. */
|
|
23628
|
+
action_attempt_id: string
|
|
23629
|
+
status: 'pending'
|
|
23630
|
+
result: null
|
|
23631
|
+
error: null
|
|
23632
|
+
action_type: 'SET_HVAC_MODE'
|
|
23633
|
+
}
|
|
23634
|
+
| {
|
|
23635
|
+
/** The ID of the action attempt. */
|
|
23636
|
+
action_attempt_id: string
|
|
23637
|
+
status: 'success'
|
|
23638
|
+
error: null
|
|
23639
|
+
action_type: 'SET_HVAC_MODE'
|
|
23640
|
+
result: {}
|
|
23641
|
+
}
|
|
23642
|
+
| {
|
|
23643
|
+
/** The ID of the action attempt. */
|
|
23644
|
+
action_attempt_id: string
|
|
23645
|
+
status: 'error'
|
|
23646
|
+
result: null
|
|
23647
|
+
action_type: 'SET_HVAC_MODE'
|
|
23648
|
+
error: {
|
|
23649
|
+
type: string
|
|
23650
|
+
message: string
|
|
23651
|
+
}
|
|
23652
|
+
}
|
|
23327
23653
|
| {
|
|
23328
23654
|
/** The ID of the action attempt. */
|
|
23329
23655
|
action_attempt_id: string
|
|
@@ -24368,6 +24694,33 @@ export interface Routes {
|
|
|
24368
24694
|
message: string
|
|
24369
24695
|
}
|
|
24370
24696
|
}
|
|
24697
|
+
| {
|
|
24698
|
+
/** The ID of the action attempt. */
|
|
24699
|
+
action_attempt_id: string
|
|
24700
|
+
status: 'pending'
|
|
24701
|
+
result: null
|
|
24702
|
+
error: null
|
|
24703
|
+
action_type: 'SET_HVAC_MODE'
|
|
24704
|
+
}
|
|
24705
|
+
| {
|
|
24706
|
+
/** The ID of the action attempt. */
|
|
24707
|
+
action_attempt_id: string
|
|
24708
|
+
status: 'success'
|
|
24709
|
+
error: null
|
|
24710
|
+
action_type: 'SET_HVAC_MODE'
|
|
24711
|
+
result: {}
|
|
24712
|
+
}
|
|
24713
|
+
| {
|
|
24714
|
+
/** The ID of the action attempt. */
|
|
24715
|
+
action_attempt_id: string
|
|
24716
|
+
status: 'error'
|
|
24717
|
+
result: null
|
|
24718
|
+
action_type: 'SET_HVAC_MODE'
|
|
24719
|
+
error: {
|
|
24720
|
+
type: string
|
|
24721
|
+
message: string
|
|
24722
|
+
}
|
|
24723
|
+
}
|
|
24371
24724
|
| {
|
|
24372
24725
|
/** The ID of the action attempt. */
|
|
24373
24726
|
action_attempt_id: string
|
|
@@ -25571,6 +25924,33 @@ export interface Routes {
|
|
|
25571
25924
|
message: string
|
|
25572
25925
|
}
|
|
25573
25926
|
}
|
|
25927
|
+
| {
|
|
25928
|
+
/** The ID of the action attempt. */
|
|
25929
|
+
action_attempt_id: string
|
|
25930
|
+
status: 'pending'
|
|
25931
|
+
result: null
|
|
25932
|
+
error: null
|
|
25933
|
+
action_type: 'SET_HVAC_MODE'
|
|
25934
|
+
}
|
|
25935
|
+
| {
|
|
25936
|
+
/** The ID of the action attempt. */
|
|
25937
|
+
action_attempt_id: string
|
|
25938
|
+
status: 'success'
|
|
25939
|
+
error: null
|
|
25940
|
+
action_type: 'SET_HVAC_MODE'
|
|
25941
|
+
result: {}
|
|
25942
|
+
}
|
|
25943
|
+
| {
|
|
25944
|
+
/** The ID of the action attempt. */
|
|
25945
|
+
action_attempt_id: string
|
|
25946
|
+
status: 'error'
|
|
25947
|
+
result: null
|
|
25948
|
+
action_type: 'SET_HVAC_MODE'
|
|
25949
|
+
error: {
|
|
25950
|
+
type: string
|
|
25951
|
+
message: string
|
|
25952
|
+
}
|
|
25953
|
+
}
|
|
25574
25954
|
| {
|
|
25575
25955
|
/** The ID of the action attempt. */
|
|
25576
25956
|
action_attempt_id: string
|
|
@@ -26572,6 +26952,33 @@ export interface Routes {
|
|
|
26572
26952
|
message: string
|
|
26573
26953
|
}
|
|
26574
26954
|
}
|
|
26955
|
+
| {
|
|
26956
|
+
/** The ID of the action attempt. */
|
|
26957
|
+
action_attempt_id: string
|
|
26958
|
+
status: 'pending'
|
|
26959
|
+
result: null
|
|
26960
|
+
error: null
|
|
26961
|
+
action_type: 'SET_HVAC_MODE'
|
|
26962
|
+
}
|
|
26963
|
+
| {
|
|
26964
|
+
/** The ID of the action attempt. */
|
|
26965
|
+
action_attempt_id: string
|
|
26966
|
+
status: 'success'
|
|
26967
|
+
error: null
|
|
26968
|
+
action_type: 'SET_HVAC_MODE'
|
|
26969
|
+
result: {}
|
|
26970
|
+
}
|
|
26971
|
+
| {
|
|
26972
|
+
/** The ID of the action attempt. */
|
|
26973
|
+
action_attempt_id: string
|
|
26974
|
+
status: 'error'
|
|
26975
|
+
result: null
|
|
26976
|
+
action_type: 'SET_HVAC_MODE'
|
|
26977
|
+
error: {
|
|
26978
|
+
type: string
|
|
26979
|
+
message: string
|
|
26980
|
+
}
|
|
26981
|
+
}
|
|
26575
26982
|
| {
|
|
26576
26983
|
/** The ID of the action attempt. */
|
|
26577
26984
|
action_attempt_id: string
|
|
@@ -28326,6 +28733,33 @@ export interface Routes {
|
|
|
28326
28733
|
message: string
|
|
28327
28734
|
}
|
|
28328
28735
|
}
|
|
28736
|
+
| {
|
|
28737
|
+
/** The ID of the action attempt. */
|
|
28738
|
+
action_attempt_id: string
|
|
28739
|
+
status: 'pending'
|
|
28740
|
+
result: null
|
|
28741
|
+
error: null
|
|
28742
|
+
action_type: 'SET_HVAC_MODE'
|
|
28743
|
+
}
|
|
28744
|
+
| {
|
|
28745
|
+
/** The ID of the action attempt. */
|
|
28746
|
+
action_attempt_id: string
|
|
28747
|
+
status: 'success'
|
|
28748
|
+
error: null
|
|
28749
|
+
action_type: 'SET_HVAC_MODE'
|
|
28750
|
+
result: {}
|
|
28751
|
+
}
|
|
28752
|
+
| {
|
|
28753
|
+
/** The ID of the action attempt. */
|
|
28754
|
+
action_attempt_id: string
|
|
28755
|
+
status: 'error'
|
|
28756
|
+
result: null
|
|
28757
|
+
action_type: 'SET_HVAC_MODE'
|
|
28758
|
+
error: {
|
|
28759
|
+
type: string
|
|
28760
|
+
message: string
|
|
28761
|
+
}
|
|
28762
|
+
}
|
|
28329
28763
|
| {
|
|
28330
28764
|
/** The ID of the action attempt. */
|
|
28331
28765
|
action_attempt_id: string
|
|
@@ -29331,6 +29765,33 @@ export interface Routes {
|
|
|
29331
29765
|
message: string
|
|
29332
29766
|
}
|
|
29333
29767
|
}
|
|
29768
|
+
| {
|
|
29769
|
+
/** The ID of the action attempt. */
|
|
29770
|
+
action_attempt_id: string
|
|
29771
|
+
status: 'pending'
|
|
29772
|
+
result: null
|
|
29773
|
+
error: null
|
|
29774
|
+
action_type: 'SET_HVAC_MODE'
|
|
29775
|
+
}
|
|
29776
|
+
| {
|
|
29777
|
+
/** The ID of the action attempt. */
|
|
29778
|
+
action_attempt_id: string
|
|
29779
|
+
status: 'success'
|
|
29780
|
+
error: null
|
|
29781
|
+
action_type: 'SET_HVAC_MODE'
|
|
29782
|
+
result: {}
|
|
29783
|
+
}
|
|
29784
|
+
| {
|
|
29785
|
+
/** The ID of the action attempt. */
|
|
29786
|
+
action_attempt_id: string
|
|
29787
|
+
status: 'error'
|
|
29788
|
+
result: null
|
|
29789
|
+
action_type: 'SET_HVAC_MODE'
|
|
29790
|
+
error: {
|
|
29791
|
+
type: string
|
|
29792
|
+
message: string
|
|
29793
|
+
}
|
|
29794
|
+
}
|
|
29334
29795
|
| {
|
|
29335
29796
|
/** The ID of the action attempt. */
|
|
29336
29797
|
action_attempt_id: string
|
|
@@ -31899,6 +32360,33 @@ export interface Routes {
|
|
|
31899
32360
|
message: string
|
|
31900
32361
|
}
|
|
31901
32362
|
}
|
|
32363
|
+
| {
|
|
32364
|
+
/** The ID of the action attempt. */
|
|
32365
|
+
action_attempt_id: string
|
|
32366
|
+
status: 'pending'
|
|
32367
|
+
result: null
|
|
32368
|
+
error: null
|
|
32369
|
+
action_type: 'SET_HVAC_MODE'
|
|
32370
|
+
}
|
|
32371
|
+
| {
|
|
32372
|
+
/** The ID of the action attempt. */
|
|
32373
|
+
action_attempt_id: string
|
|
32374
|
+
status: 'success'
|
|
32375
|
+
error: null
|
|
32376
|
+
action_type: 'SET_HVAC_MODE'
|
|
32377
|
+
result: {}
|
|
32378
|
+
}
|
|
32379
|
+
| {
|
|
32380
|
+
/** The ID of the action attempt. */
|
|
32381
|
+
action_attempt_id: string
|
|
32382
|
+
status: 'error'
|
|
32383
|
+
result: null
|
|
32384
|
+
action_type: 'SET_HVAC_MODE'
|
|
32385
|
+
error: {
|
|
32386
|
+
type: string
|
|
32387
|
+
message: string
|
|
32388
|
+
}
|
|
32389
|
+
}
|
|
31902
32390
|
| {
|
|
31903
32391
|
/** The ID of the action attempt. */
|
|
31904
32392
|
action_attempt_id: string
|
|
@@ -33069,6 +33557,33 @@ export interface Routes {
|
|
|
33069
33557
|
message: string
|
|
33070
33558
|
}
|
|
33071
33559
|
}
|
|
33560
|
+
| {
|
|
33561
|
+
/** The ID of the action attempt. */
|
|
33562
|
+
action_attempt_id: string
|
|
33563
|
+
status: 'pending'
|
|
33564
|
+
result: null
|
|
33565
|
+
error: null
|
|
33566
|
+
action_type: 'SET_HVAC_MODE'
|
|
33567
|
+
}
|
|
33568
|
+
| {
|
|
33569
|
+
/** The ID of the action attempt. */
|
|
33570
|
+
action_attempt_id: string
|
|
33571
|
+
status: 'success'
|
|
33572
|
+
error: null
|
|
33573
|
+
action_type: 'SET_HVAC_MODE'
|
|
33574
|
+
result: {}
|
|
33575
|
+
}
|
|
33576
|
+
| {
|
|
33577
|
+
/** The ID of the action attempt. */
|
|
33578
|
+
action_attempt_id: string
|
|
33579
|
+
status: 'error'
|
|
33580
|
+
result: null
|
|
33581
|
+
action_type: 'SET_HVAC_MODE'
|
|
33582
|
+
error: {
|
|
33583
|
+
type: string
|
|
33584
|
+
message: string
|
|
33585
|
+
}
|
|
33586
|
+
}
|
|
33072
33587
|
| {
|
|
33073
33588
|
/** The ID of the action attempt. */
|
|
33074
33589
|
action_attempt_id: string
|
|
@@ -34097,6 +34612,33 @@ export interface Routes {
|
|
|
34097
34612
|
message: string
|
|
34098
34613
|
}
|
|
34099
34614
|
}
|
|
34615
|
+
| {
|
|
34616
|
+
/** The ID of the action attempt. */
|
|
34617
|
+
action_attempt_id: string
|
|
34618
|
+
status: 'pending'
|
|
34619
|
+
result: null
|
|
34620
|
+
error: null
|
|
34621
|
+
action_type: 'SET_HVAC_MODE'
|
|
34622
|
+
}
|
|
34623
|
+
| {
|
|
34624
|
+
/** The ID of the action attempt. */
|
|
34625
|
+
action_attempt_id: string
|
|
34626
|
+
status: 'success'
|
|
34627
|
+
error: null
|
|
34628
|
+
action_type: 'SET_HVAC_MODE'
|
|
34629
|
+
result: {}
|
|
34630
|
+
}
|
|
34631
|
+
| {
|
|
34632
|
+
/** The ID of the action attempt. */
|
|
34633
|
+
action_attempt_id: string
|
|
34634
|
+
status: 'error'
|
|
34635
|
+
result: null
|
|
34636
|
+
action_type: 'SET_HVAC_MODE'
|
|
34637
|
+
error: {
|
|
34638
|
+
type: string
|
|
34639
|
+
message: string
|
|
34640
|
+
}
|
|
34641
|
+
}
|
|
34100
34642
|
| {
|
|
34101
34643
|
/** The ID of the action attempt. */
|
|
34102
34644
|
action_attempt_id: string
|
|
@@ -37243,6 +37785,33 @@ export interface Routes {
|
|
|
37243
37785
|
message: string
|
|
37244
37786
|
}
|
|
37245
37787
|
}
|
|
37788
|
+
| {
|
|
37789
|
+
/** The ID of the action attempt. */
|
|
37790
|
+
action_attempt_id: string
|
|
37791
|
+
status: 'pending'
|
|
37792
|
+
result: null
|
|
37793
|
+
error: null
|
|
37794
|
+
action_type: 'SET_HVAC_MODE'
|
|
37795
|
+
}
|
|
37796
|
+
| {
|
|
37797
|
+
/** The ID of the action attempt. */
|
|
37798
|
+
action_attempt_id: string
|
|
37799
|
+
status: 'success'
|
|
37800
|
+
error: null
|
|
37801
|
+
action_type: 'SET_HVAC_MODE'
|
|
37802
|
+
result: {}
|
|
37803
|
+
}
|
|
37804
|
+
| {
|
|
37805
|
+
/** The ID of the action attempt. */
|
|
37806
|
+
action_attempt_id: string
|
|
37807
|
+
status: 'error'
|
|
37808
|
+
result: null
|
|
37809
|
+
action_type: 'SET_HVAC_MODE'
|
|
37810
|
+
error: {
|
|
37811
|
+
type: string
|
|
37812
|
+
message: string
|
|
37813
|
+
}
|
|
37814
|
+
}
|
|
37246
37815
|
| {
|
|
37247
37816
|
/** The ID of the action attempt. */
|
|
37248
37817
|
action_attempt_id: string
|