@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.
- package/dist/connect.cjs +43 -392
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +93 -2328
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +33 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +2 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.d.ts +6 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js +2 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba-community.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +15 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +7 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -0
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +0 -312
- package/lib/seam/connect/models/action-attempts/action-attempt.js +0 -8
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +25 -0
- package/lib/seam/connect/openapi.js +17 -305
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +122 -2103
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +2 -0
- package/src/lib/seam/connect/models/acs/metadata/dormakaba-community.ts +2 -0
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +11 -0
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +0 -8
- package/src/lib/seam/connect/openapi.ts +17 -305
- package/src/lib/seam/connect/route-types.ts +45 -2268
- package/lib/seam/connect/models/action-attempts/set-cool.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-cool.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-cool.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/set-heat-cool.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-heat-cool.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-heat-cool.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/set-heat.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-heat.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-heat.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/set-thermostat-off.d.ts +0 -80
- package/lib/seam/connect/models/action-attempts/set-thermostat-off.js +0 -25
- package/lib/seam/connect/models/action-attempts/set-thermostat-off.js.map +0 -1
- package/src/lib/seam/connect/models/action-attempts/set-cool.ts +0 -33
- package/src/lib/seam/connect/models/action-attempts/set-heat-cool.ts +0 -33
- package/src/lib/seam/connect/models/action-attempts/set-heat.ts +0 -33
- package/src/lib/seam/connect/models/action-attempts/set-thermostat-off.ts +0 -36
|
@@ -540,78 +540,6 @@ export interface Routes {
|
|
|
540
540
|
type: string;
|
|
541
541
|
message: string;
|
|
542
542
|
};
|
|
543
|
-
} | {
|
|
544
|
-
/** The ID of the action attempt. */
|
|
545
|
-
action_attempt_id: string;
|
|
546
|
-
status: 'pending';
|
|
547
|
-
result: null;
|
|
548
|
-
error: null;
|
|
549
|
-
action_type: 'SET_COOL';
|
|
550
|
-
} | {
|
|
551
|
-
/** The ID of the action attempt. */
|
|
552
|
-
action_attempt_id: string;
|
|
553
|
-
status: 'success';
|
|
554
|
-
error: null;
|
|
555
|
-
action_type: 'SET_COOL';
|
|
556
|
-
result: {};
|
|
557
|
-
} | {
|
|
558
|
-
/** The ID of the action attempt. */
|
|
559
|
-
action_attempt_id: string;
|
|
560
|
-
status: 'error';
|
|
561
|
-
result: null;
|
|
562
|
-
action_type: 'SET_COOL';
|
|
563
|
-
error: {
|
|
564
|
-
type: string;
|
|
565
|
-
message: string;
|
|
566
|
-
};
|
|
567
|
-
} | {
|
|
568
|
-
/** The ID of the action attempt. */
|
|
569
|
-
action_attempt_id: string;
|
|
570
|
-
status: 'pending';
|
|
571
|
-
result: null;
|
|
572
|
-
error: null;
|
|
573
|
-
action_type: 'SET_HEAT';
|
|
574
|
-
} | {
|
|
575
|
-
/** The ID of the action attempt. */
|
|
576
|
-
action_attempt_id: string;
|
|
577
|
-
status: 'success';
|
|
578
|
-
error: null;
|
|
579
|
-
action_type: 'SET_HEAT';
|
|
580
|
-
result: {};
|
|
581
|
-
} | {
|
|
582
|
-
/** The ID of the action attempt. */
|
|
583
|
-
action_attempt_id: string;
|
|
584
|
-
status: 'error';
|
|
585
|
-
result: null;
|
|
586
|
-
action_type: 'SET_HEAT';
|
|
587
|
-
error: {
|
|
588
|
-
type: string;
|
|
589
|
-
message: string;
|
|
590
|
-
};
|
|
591
|
-
} | {
|
|
592
|
-
/** The ID of the action attempt. */
|
|
593
|
-
action_attempt_id: string;
|
|
594
|
-
status: 'pending';
|
|
595
|
-
result: null;
|
|
596
|
-
error: null;
|
|
597
|
-
action_type: 'SET_HEAT_COOL';
|
|
598
|
-
} | {
|
|
599
|
-
/** The ID of the action attempt. */
|
|
600
|
-
action_attempt_id: string;
|
|
601
|
-
status: 'success';
|
|
602
|
-
error: null;
|
|
603
|
-
action_type: 'SET_HEAT_COOL';
|
|
604
|
-
result: {};
|
|
605
|
-
} | {
|
|
606
|
-
/** The ID of the action attempt. */
|
|
607
|
-
action_attempt_id: string;
|
|
608
|
-
status: 'error';
|
|
609
|
-
result: null;
|
|
610
|
-
action_type: 'SET_HEAT_COOL';
|
|
611
|
-
error: {
|
|
612
|
-
type: string;
|
|
613
|
-
message: string;
|
|
614
|
-
};
|
|
615
543
|
} | {
|
|
616
544
|
/** The ID of the action attempt. */
|
|
617
545
|
action_attempt_id: string;
|
|
@@ -636,30 +564,6 @@ export interface Routes {
|
|
|
636
564
|
type: string;
|
|
637
565
|
message: string;
|
|
638
566
|
};
|
|
639
|
-
} | {
|
|
640
|
-
/** The ID of the action attempt. */
|
|
641
|
-
action_attempt_id: string;
|
|
642
|
-
status: 'pending';
|
|
643
|
-
result: null;
|
|
644
|
-
error: null;
|
|
645
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
646
|
-
} | {
|
|
647
|
-
/** The ID of the action attempt. */
|
|
648
|
-
action_attempt_id: string;
|
|
649
|
-
status: 'success';
|
|
650
|
-
error: null;
|
|
651
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
652
|
-
result: {};
|
|
653
|
-
} | {
|
|
654
|
-
/** The ID of the action attempt. */
|
|
655
|
-
action_attempt_id: string;
|
|
656
|
-
status: 'error';
|
|
657
|
-
result: null;
|
|
658
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
659
|
-
error: {
|
|
660
|
-
type: string;
|
|
661
|
-
message: string;
|
|
662
|
-
};
|
|
663
567
|
} | {
|
|
664
568
|
/** The ID of the action attempt. */
|
|
665
569
|
action_attempt_id: string;
|
|
@@ -1563,78 +1467,6 @@ export interface Routes {
|
|
|
1563
1467
|
type: string;
|
|
1564
1468
|
message: string;
|
|
1565
1469
|
};
|
|
1566
|
-
} | {
|
|
1567
|
-
/** The ID of the action attempt. */
|
|
1568
|
-
action_attempt_id: string;
|
|
1569
|
-
status: 'pending';
|
|
1570
|
-
result: null;
|
|
1571
|
-
error: null;
|
|
1572
|
-
action_type: 'SET_COOL';
|
|
1573
|
-
} | {
|
|
1574
|
-
/** The ID of the action attempt. */
|
|
1575
|
-
action_attempt_id: string;
|
|
1576
|
-
status: 'success';
|
|
1577
|
-
error: null;
|
|
1578
|
-
action_type: 'SET_COOL';
|
|
1579
|
-
result: {};
|
|
1580
|
-
} | {
|
|
1581
|
-
/** The ID of the action attempt. */
|
|
1582
|
-
action_attempt_id: string;
|
|
1583
|
-
status: 'error';
|
|
1584
|
-
result: null;
|
|
1585
|
-
action_type: 'SET_COOL';
|
|
1586
|
-
error: {
|
|
1587
|
-
type: string;
|
|
1588
|
-
message: string;
|
|
1589
|
-
};
|
|
1590
|
-
} | {
|
|
1591
|
-
/** The ID of the action attempt. */
|
|
1592
|
-
action_attempt_id: string;
|
|
1593
|
-
status: 'pending';
|
|
1594
|
-
result: null;
|
|
1595
|
-
error: null;
|
|
1596
|
-
action_type: 'SET_HEAT';
|
|
1597
|
-
} | {
|
|
1598
|
-
/** The ID of the action attempt. */
|
|
1599
|
-
action_attempt_id: string;
|
|
1600
|
-
status: 'success';
|
|
1601
|
-
error: null;
|
|
1602
|
-
action_type: 'SET_HEAT';
|
|
1603
|
-
result: {};
|
|
1604
|
-
} | {
|
|
1605
|
-
/** The ID of the action attempt. */
|
|
1606
|
-
action_attempt_id: string;
|
|
1607
|
-
status: 'error';
|
|
1608
|
-
result: null;
|
|
1609
|
-
action_type: 'SET_HEAT';
|
|
1610
|
-
error: {
|
|
1611
|
-
type: string;
|
|
1612
|
-
message: string;
|
|
1613
|
-
};
|
|
1614
|
-
} | {
|
|
1615
|
-
/** The ID of the action attempt. */
|
|
1616
|
-
action_attempt_id: string;
|
|
1617
|
-
status: 'pending';
|
|
1618
|
-
result: null;
|
|
1619
|
-
error: null;
|
|
1620
|
-
action_type: 'SET_HEAT_COOL';
|
|
1621
|
-
} | {
|
|
1622
|
-
/** The ID of the action attempt. */
|
|
1623
|
-
action_attempt_id: string;
|
|
1624
|
-
status: 'success';
|
|
1625
|
-
error: null;
|
|
1626
|
-
action_type: 'SET_HEAT_COOL';
|
|
1627
|
-
result: {};
|
|
1628
|
-
} | {
|
|
1629
|
-
/** The ID of the action attempt. */
|
|
1630
|
-
action_attempt_id: string;
|
|
1631
|
-
status: 'error';
|
|
1632
|
-
result: null;
|
|
1633
|
-
action_type: 'SET_HEAT_COOL';
|
|
1634
|
-
error: {
|
|
1635
|
-
type: string;
|
|
1636
|
-
message: string;
|
|
1637
|
-
};
|
|
1638
1470
|
} | {
|
|
1639
1471
|
/** The ID of the action attempt. */
|
|
1640
1472
|
action_attempt_id: string;
|
|
@@ -1659,30 +1491,6 @@ export interface Routes {
|
|
|
1659
1491
|
type: string;
|
|
1660
1492
|
message: string;
|
|
1661
1493
|
};
|
|
1662
|
-
} | {
|
|
1663
|
-
/** The ID of the action attempt. */
|
|
1664
|
-
action_attempt_id: string;
|
|
1665
|
-
status: 'pending';
|
|
1666
|
-
result: null;
|
|
1667
|
-
error: null;
|
|
1668
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
1669
|
-
} | {
|
|
1670
|
-
/** The ID of the action attempt. */
|
|
1671
|
-
action_attempt_id: string;
|
|
1672
|
-
status: 'success';
|
|
1673
|
-
error: null;
|
|
1674
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
1675
|
-
result: {};
|
|
1676
|
-
} | {
|
|
1677
|
-
/** The ID of the action attempt. */
|
|
1678
|
-
action_attempt_id: string;
|
|
1679
|
-
status: 'error';
|
|
1680
|
-
result: null;
|
|
1681
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
1682
|
-
error: {
|
|
1683
|
-
type: string;
|
|
1684
|
-
message: string;
|
|
1685
|
-
};
|
|
1686
1494
|
} | {
|
|
1687
1495
|
/** The ID of the action attempt. */
|
|
1688
1496
|
action_attempt_id: string;
|
|
@@ -2804,78 +2612,6 @@ export interface Routes {
|
|
|
2804
2612
|
type: string;
|
|
2805
2613
|
message: string;
|
|
2806
2614
|
};
|
|
2807
|
-
} | {
|
|
2808
|
-
/** The ID of the action attempt. */
|
|
2809
|
-
action_attempt_id: string;
|
|
2810
|
-
status: 'pending';
|
|
2811
|
-
result: null;
|
|
2812
|
-
error: null;
|
|
2813
|
-
action_type: 'SET_COOL';
|
|
2814
|
-
} | {
|
|
2815
|
-
/** The ID of the action attempt. */
|
|
2816
|
-
action_attempt_id: string;
|
|
2817
|
-
status: 'success';
|
|
2818
|
-
error: null;
|
|
2819
|
-
action_type: 'SET_COOL';
|
|
2820
|
-
result: {};
|
|
2821
|
-
} | {
|
|
2822
|
-
/** The ID of the action attempt. */
|
|
2823
|
-
action_attempt_id: string;
|
|
2824
|
-
status: 'error';
|
|
2825
|
-
result: null;
|
|
2826
|
-
action_type: 'SET_COOL';
|
|
2827
|
-
error: {
|
|
2828
|
-
type: string;
|
|
2829
|
-
message: string;
|
|
2830
|
-
};
|
|
2831
|
-
} | {
|
|
2832
|
-
/** The ID of the action attempt. */
|
|
2833
|
-
action_attempt_id: string;
|
|
2834
|
-
status: 'pending';
|
|
2835
|
-
result: null;
|
|
2836
|
-
error: null;
|
|
2837
|
-
action_type: 'SET_HEAT';
|
|
2838
|
-
} | {
|
|
2839
|
-
/** The ID of the action attempt. */
|
|
2840
|
-
action_attempt_id: string;
|
|
2841
|
-
status: 'success';
|
|
2842
|
-
error: null;
|
|
2843
|
-
action_type: 'SET_HEAT';
|
|
2844
|
-
result: {};
|
|
2845
|
-
} | {
|
|
2846
|
-
/** The ID of the action attempt. */
|
|
2847
|
-
action_attempt_id: string;
|
|
2848
|
-
status: 'error';
|
|
2849
|
-
result: null;
|
|
2850
|
-
action_type: 'SET_HEAT';
|
|
2851
|
-
error: {
|
|
2852
|
-
type: string;
|
|
2853
|
-
message: string;
|
|
2854
|
-
};
|
|
2855
|
-
} | {
|
|
2856
|
-
/** The ID of the action attempt. */
|
|
2857
|
-
action_attempt_id: string;
|
|
2858
|
-
status: 'pending';
|
|
2859
|
-
result: null;
|
|
2860
|
-
error: null;
|
|
2861
|
-
action_type: 'SET_HEAT_COOL';
|
|
2862
|
-
} | {
|
|
2863
|
-
/** The ID of the action attempt. */
|
|
2864
|
-
action_attempt_id: string;
|
|
2865
|
-
status: 'success';
|
|
2866
|
-
error: null;
|
|
2867
|
-
action_type: 'SET_HEAT_COOL';
|
|
2868
|
-
result: {};
|
|
2869
|
-
} | {
|
|
2870
|
-
/** The ID of the action attempt. */
|
|
2871
|
-
action_attempt_id: string;
|
|
2872
|
-
status: 'error';
|
|
2873
|
-
result: null;
|
|
2874
|
-
action_type: 'SET_HEAT_COOL';
|
|
2875
|
-
error: {
|
|
2876
|
-
type: string;
|
|
2877
|
-
message: string;
|
|
2878
|
-
};
|
|
2879
2615
|
} | {
|
|
2880
2616
|
/** The ID of the action attempt. */
|
|
2881
2617
|
action_attempt_id: string;
|
|
@@ -2900,30 +2636,6 @@ export interface Routes {
|
|
|
2900
2636
|
type: string;
|
|
2901
2637
|
message: string;
|
|
2902
2638
|
};
|
|
2903
|
-
} | {
|
|
2904
|
-
/** The ID of the action attempt. */
|
|
2905
|
-
action_attempt_id: string;
|
|
2906
|
-
status: 'pending';
|
|
2907
|
-
result: null;
|
|
2908
|
-
error: null;
|
|
2909
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
2910
|
-
} | {
|
|
2911
|
-
/** The ID of the action attempt. */
|
|
2912
|
-
action_attempt_id: string;
|
|
2913
|
-
status: 'success';
|
|
2914
|
-
error: null;
|
|
2915
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
2916
|
-
result: {};
|
|
2917
|
-
} | {
|
|
2918
|
-
/** The ID of the action attempt. */
|
|
2919
|
-
action_attempt_id: string;
|
|
2920
|
-
status: 'error';
|
|
2921
|
-
result: null;
|
|
2922
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
2923
|
-
error: {
|
|
2924
|
-
type: string;
|
|
2925
|
-
message: string;
|
|
2926
|
-
};
|
|
2927
2639
|
} | {
|
|
2928
2640
|
/** The ID of the action attempt. */
|
|
2929
2641
|
action_attempt_id: string;
|
|
@@ -3820,20 +3532,20 @@ export interface Routes {
|
|
|
3820
3532
|
status: 'pending';
|
|
3821
3533
|
result: null;
|
|
3822
3534
|
error: null;
|
|
3823
|
-
action_type: '
|
|
3535
|
+
action_type: 'SET_FAN_MODE';
|
|
3824
3536
|
} | {
|
|
3825
3537
|
/** The ID of the action attempt. */
|
|
3826
3538
|
action_attempt_id: string;
|
|
3827
3539
|
status: 'success';
|
|
3828
3540
|
error: null;
|
|
3829
|
-
action_type: '
|
|
3541
|
+
action_type: 'SET_FAN_MODE';
|
|
3830
3542
|
result: {};
|
|
3831
3543
|
} | {
|
|
3832
3544
|
/** The ID of the action attempt. */
|
|
3833
3545
|
action_attempt_id: string;
|
|
3834
3546
|
status: 'error';
|
|
3835
3547
|
result: null;
|
|
3836
|
-
action_type: '
|
|
3548
|
+
action_type: 'SET_FAN_MODE';
|
|
3837
3549
|
error: {
|
|
3838
3550
|
type: string;
|
|
3839
3551
|
message: string;
|
|
@@ -3844,103 +3556,7 @@ export interface Routes {
|
|
|
3844
3556
|
status: 'pending';
|
|
3845
3557
|
result: null;
|
|
3846
3558
|
error: null;
|
|
3847
|
-
action_type: '
|
|
3848
|
-
} | {
|
|
3849
|
-
/** The ID of the action attempt. */
|
|
3850
|
-
action_attempt_id: string;
|
|
3851
|
-
status: 'success';
|
|
3852
|
-
error: null;
|
|
3853
|
-
action_type: 'SET_HEAT';
|
|
3854
|
-
result: {};
|
|
3855
|
-
} | {
|
|
3856
|
-
/** The ID of the action attempt. */
|
|
3857
|
-
action_attempt_id: string;
|
|
3858
|
-
status: 'error';
|
|
3859
|
-
result: null;
|
|
3860
|
-
action_type: 'SET_HEAT';
|
|
3861
|
-
error: {
|
|
3862
|
-
type: string;
|
|
3863
|
-
message: string;
|
|
3864
|
-
};
|
|
3865
|
-
} | {
|
|
3866
|
-
/** The ID of the action attempt. */
|
|
3867
|
-
action_attempt_id: string;
|
|
3868
|
-
status: 'pending';
|
|
3869
|
-
result: null;
|
|
3870
|
-
error: null;
|
|
3871
|
-
action_type: 'SET_HEAT_COOL';
|
|
3872
|
-
} | {
|
|
3873
|
-
/** The ID of the action attempt. */
|
|
3874
|
-
action_attempt_id: string;
|
|
3875
|
-
status: 'success';
|
|
3876
|
-
error: null;
|
|
3877
|
-
action_type: 'SET_HEAT_COOL';
|
|
3878
|
-
result: {};
|
|
3879
|
-
} | {
|
|
3880
|
-
/** The ID of the action attempt. */
|
|
3881
|
-
action_attempt_id: string;
|
|
3882
|
-
status: 'error';
|
|
3883
|
-
result: null;
|
|
3884
|
-
action_type: 'SET_HEAT_COOL';
|
|
3885
|
-
error: {
|
|
3886
|
-
type: string;
|
|
3887
|
-
message: string;
|
|
3888
|
-
};
|
|
3889
|
-
} | {
|
|
3890
|
-
/** The ID of the action attempt. */
|
|
3891
|
-
action_attempt_id: string;
|
|
3892
|
-
status: 'pending';
|
|
3893
|
-
result: null;
|
|
3894
|
-
error: null;
|
|
3895
|
-
action_type: 'SET_FAN_MODE';
|
|
3896
|
-
} | {
|
|
3897
|
-
/** The ID of the action attempt. */
|
|
3898
|
-
action_attempt_id: string;
|
|
3899
|
-
status: 'success';
|
|
3900
|
-
error: null;
|
|
3901
|
-
action_type: 'SET_FAN_MODE';
|
|
3902
|
-
result: {};
|
|
3903
|
-
} | {
|
|
3904
|
-
/** The ID of the action attempt. */
|
|
3905
|
-
action_attempt_id: string;
|
|
3906
|
-
status: 'error';
|
|
3907
|
-
result: null;
|
|
3908
|
-
action_type: 'SET_FAN_MODE';
|
|
3909
|
-
error: {
|
|
3910
|
-
type: string;
|
|
3911
|
-
message: string;
|
|
3912
|
-
};
|
|
3913
|
-
} | {
|
|
3914
|
-
/** The ID of the action attempt. */
|
|
3915
|
-
action_attempt_id: string;
|
|
3916
|
-
status: 'pending';
|
|
3917
|
-
result: null;
|
|
3918
|
-
error: null;
|
|
3919
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
3920
|
-
} | {
|
|
3921
|
-
/** The ID of the action attempt. */
|
|
3922
|
-
action_attempt_id: string;
|
|
3923
|
-
status: 'success';
|
|
3924
|
-
error: null;
|
|
3925
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
3926
|
-
result: {};
|
|
3927
|
-
} | {
|
|
3928
|
-
/** The ID of the action attempt. */
|
|
3929
|
-
action_attempt_id: string;
|
|
3930
|
-
status: 'error';
|
|
3931
|
-
result: null;
|
|
3932
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
3933
|
-
error: {
|
|
3934
|
-
type: string;
|
|
3935
|
-
message: string;
|
|
3936
|
-
};
|
|
3937
|
-
} | {
|
|
3938
|
-
/** The ID of the action attempt. */
|
|
3939
|
-
action_attempt_id: string;
|
|
3940
|
-
status: 'pending';
|
|
3941
|
-
result: null;
|
|
3942
|
-
error: null;
|
|
3943
|
-
action_type: 'SET_HVAC_MODE';
|
|
3559
|
+
action_type: 'SET_HVAC_MODE';
|
|
3944
3560
|
} | {
|
|
3945
3561
|
/** The ID of the action attempt. */
|
|
3946
3562
|
action_attempt_id: string;
|
|
@@ -4317,6 +3933,8 @@ export interface Routes {
|
|
|
4317
3933
|
} | undefined;
|
|
4318
3934
|
dormakaba_community_metadata?: {
|
|
4319
3935
|
access_point_name: string;
|
|
3936
|
+
common_area_number?: number | undefined;
|
|
3937
|
+
inner_access_points_names?: string[] | undefined;
|
|
4320
3938
|
} | undefined;
|
|
4321
3939
|
assa_abloy_vostio_metadata?: {
|
|
4322
3940
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -4325,6 +3943,11 @@ export interface Routes {
|
|
|
4325
3943
|
stand_open?: boolean | undefined;
|
|
4326
3944
|
pms_id?: string | undefined;
|
|
4327
3945
|
} | undefined;
|
|
3946
|
+
salto_space_metadata?: {
|
|
3947
|
+
door_name: string;
|
|
3948
|
+
ext_door_id: string;
|
|
3949
|
+
door_description?: string | undefined;
|
|
3950
|
+
} | undefined;
|
|
4328
3951
|
}>;
|
|
4329
3952
|
};
|
|
4330
3953
|
};
|
|
@@ -5197,6 +4820,8 @@ export interface Routes {
|
|
|
5197
4820
|
} | undefined;
|
|
5198
4821
|
dormakaba_community_metadata?: {
|
|
5199
4822
|
access_point_name: string;
|
|
4823
|
+
common_area_number?: number | undefined;
|
|
4824
|
+
inner_access_points_names?: string[] | undefined;
|
|
5200
4825
|
} | undefined;
|
|
5201
4826
|
assa_abloy_vostio_metadata?: {
|
|
5202
4827
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -5205,6 +4830,11 @@ export interface Routes {
|
|
|
5205
4830
|
stand_open?: boolean | undefined;
|
|
5206
4831
|
pms_id?: string | undefined;
|
|
5207
4832
|
} | undefined;
|
|
4833
|
+
salto_space_metadata?: {
|
|
4834
|
+
door_name: string;
|
|
4835
|
+
ext_door_id: string;
|
|
4836
|
+
door_description?: string | undefined;
|
|
4837
|
+
} | undefined;
|
|
5208
4838
|
}>;
|
|
5209
4839
|
};
|
|
5210
4840
|
};
|
|
@@ -6159,78 +5789,6 @@ export interface Routes {
|
|
|
6159
5789
|
type: string;
|
|
6160
5790
|
message: string;
|
|
6161
5791
|
};
|
|
6162
|
-
} | {
|
|
6163
|
-
/** The ID of the action attempt. */
|
|
6164
|
-
action_attempt_id: string;
|
|
6165
|
-
status: 'pending';
|
|
6166
|
-
result: null;
|
|
6167
|
-
error: null;
|
|
6168
|
-
action_type: 'SET_COOL';
|
|
6169
|
-
} | {
|
|
6170
|
-
/** The ID of the action attempt. */
|
|
6171
|
-
action_attempt_id: string;
|
|
6172
|
-
status: 'success';
|
|
6173
|
-
error: null;
|
|
6174
|
-
action_type: 'SET_COOL';
|
|
6175
|
-
result: {};
|
|
6176
|
-
} | {
|
|
6177
|
-
/** The ID of the action attempt. */
|
|
6178
|
-
action_attempt_id: string;
|
|
6179
|
-
status: 'error';
|
|
6180
|
-
result: null;
|
|
6181
|
-
action_type: 'SET_COOL';
|
|
6182
|
-
error: {
|
|
6183
|
-
type: string;
|
|
6184
|
-
message: string;
|
|
6185
|
-
};
|
|
6186
|
-
} | {
|
|
6187
|
-
/** The ID of the action attempt. */
|
|
6188
|
-
action_attempt_id: string;
|
|
6189
|
-
status: 'pending';
|
|
6190
|
-
result: null;
|
|
6191
|
-
error: null;
|
|
6192
|
-
action_type: 'SET_HEAT';
|
|
6193
|
-
} | {
|
|
6194
|
-
/** The ID of the action attempt. */
|
|
6195
|
-
action_attempt_id: string;
|
|
6196
|
-
status: 'success';
|
|
6197
|
-
error: null;
|
|
6198
|
-
action_type: 'SET_HEAT';
|
|
6199
|
-
result: {};
|
|
6200
|
-
} | {
|
|
6201
|
-
/** The ID of the action attempt. */
|
|
6202
|
-
action_attempt_id: string;
|
|
6203
|
-
status: 'error';
|
|
6204
|
-
result: null;
|
|
6205
|
-
action_type: 'SET_HEAT';
|
|
6206
|
-
error: {
|
|
6207
|
-
type: string;
|
|
6208
|
-
message: string;
|
|
6209
|
-
};
|
|
6210
|
-
} | {
|
|
6211
|
-
/** The ID of the action attempt. */
|
|
6212
|
-
action_attempt_id: string;
|
|
6213
|
-
status: 'pending';
|
|
6214
|
-
result: null;
|
|
6215
|
-
error: null;
|
|
6216
|
-
action_type: 'SET_HEAT_COOL';
|
|
6217
|
-
} | {
|
|
6218
|
-
/** The ID of the action attempt. */
|
|
6219
|
-
action_attempt_id: string;
|
|
6220
|
-
status: 'success';
|
|
6221
|
-
error: null;
|
|
6222
|
-
action_type: 'SET_HEAT_COOL';
|
|
6223
|
-
result: {};
|
|
6224
|
-
} | {
|
|
6225
|
-
/** The ID of the action attempt. */
|
|
6226
|
-
action_attempt_id: string;
|
|
6227
|
-
status: 'error';
|
|
6228
|
-
result: null;
|
|
6229
|
-
action_type: 'SET_HEAT_COOL';
|
|
6230
|
-
error: {
|
|
6231
|
-
type: string;
|
|
6232
|
-
message: string;
|
|
6233
|
-
};
|
|
6234
5792
|
} | {
|
|
6235
5793
|
/** The ID of the action attempt. */
|
|
6236
5794
|
action_attempt_id: string;
|
|
@@ -6255,30 +5813,6 @@ export interface Routes {
|
|
|
6255
5813
|
type: string;
|
|
6256
5814
|
message: string;
|
|
6257
5815
|
};
|
|
6258
|
-
} | {
|
|
6259
|
-
/** The ID of the action attempt. */
|
|
6260
|
-
action_attempt_id: string;
|
|
6261
|
-
status: 'pending';
|
|
6262
|
-
result: null;
|
|
6263
|
-
error: null;
|
|
6264
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
6265
|
-
} | {
|
|
6266
|
-
/** The ID of the action attempt. */
|
|
6267
|
-
action_attempt_id: string;
|
|
6268
|
-
status: 'success';
|
|
6269
|
-
error: null;
|
|
6270
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
6271
|
-
result: {};
|
|
6272
|
-
} | {
|
|
6273
|
-
/** The ID of the action attempt. */
|
|
6274
|
-
action_attempt_id: string;
|
|
6275
|
-
status: 'error';
|
|
6276
|
-
result: null;
|
|
6277
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
6278
|
-
error: {
|
|
6279
|
-
type: string;
|
|
6280
|
-
message: string;
|
|
6281
|
-
};
|
|
6282
5816
|
} | {
|
|
6283
5817
|
/** The ID of the action attempt. */
|
|
6284
5818
|
action_attempt_id: string;
|
|
@@ -7082,20 +6616,20 @@ export interface Routes {
|
|
|
7082
6616
|
status: 'pending';
|
|
7083
6617
|
result: null;
|
|
7084
6618
|
error: null;
|
|
7085
|
-
action_type: '
|
|
6619
|
+
action_type: 'SET_FAN_MODE';
|
|
7086
6620
|
} | {
|
|
7087
6621
|
/** The ID of the action attempt. */
|
|
7088
6622
|
action_attempt_id: string;
|
|
7089
6623
|
status: 'success';
|
|
7090
6624
|
error: null;
|
|
7091
|
-
action_type: '
|
|
6625
|
+
action_type: 'SET_FAN_MODE';
|
|
7092
6626
|
result: {};
|
|
7093
6627
|
} | {
|
|
7094
6628
|
/** The ID of the action attempt. */
|
|
7095
6629
|
action_attempt_id: string;
|
|
7096
6630
|
status: 'error';
|
|
7097
6631
|
result: null;
|
|
7098
|
-
action_type: '
|
|
6632
|
+
action_type: 'SET_FAN_MODE';
|
|
7099
6633
|
error: {
|
|
7100
6634
|
type: string;
|
|
7101
6635
|
message: string;
|
|
@@ -7106,20 +6640,20 @@ export interface Routes {
|
|
|
7106
6640
|
status: 'pending';
|
|
7107
6641
|
result: null;
|
|
7108
6642
|
error: null;
|
|
7109
|
-
action_type: '
|
|
6643
|
+
action_type: 'SET_HVAC_MODE';
|
|
7110
6644
|
} | {
|
|
7111
6645
|
/** The ID of the action attempt. */
|
|
7112
6646
|
action_attempt_id: string;
|
|
7113
6647
|
status: 'success';
|
|
7114
6648
|
error: null;
|
|
7115
|
-
action_type: '
|
|
6649
|
+
action_type: 'SET_HVAC_MODE';
|
|
7116
6650
|
result: {};
|
|
7117
6651
|
} | {
|
|
7118
6652
|
/** The ID of the action attempt. */
|
|
7119
6653
|
action_attempt_id: string;
|
|
7120
6654
|
status: 'error';
|
|
7121
6655
|
result: null;
|
|
7122
|
-
action_type: '
|
|
6656
|
+
action_type: 'SET_HVAC_MODE';
|
|
7123
6657
|
error: {
|
|
7124
6658
|
type: string;
|
|
7125
6659
|
message: string;
|
|
@@ -7130,20 +6664,20 @@ export interface Routes {
|
|
|
7130
6664
|
status: 'pending';
|
|
7131
6665
|
result: null;
|
|
7132
6666
|
error: null;
|
|
7133
|
-
action_type: '
|
|
6667
|
+
action_type: 'ACTIVATE_CLIMATE_PRESET';
|
|
7134
6668
|
} | {
|
|
7135
6669
|
/** The ID of the action attempt. */
|
|
7136
6670
|
action_attempt_id: string;
|
|
7137
6671
|
status: 'success';
|
|
7138
6672
|
error: null;
|
|
7139
|
-
action_type: '
|
|
6673
|
+
action_type: 'ACTIVATE_CLIMATE_PRESET';
|
|
7140
6674
|
result: {};
|
|
7141
6675
|
} | {
|
|
7142
6676
|
/** The ID of the action attempt. */
|
|
7143
6677
|
action_attempt_id: string;
|
|
7144
6678
|
status: 'error';
|
|
7145
6679
|
result: null;
|
|
7146
|
-
action_type: '
|
|
6680
|
+
action_type: 'ACTIVATE_CLIMATE_PRESET';
|
|
7147
6681
|
error: {
|
|
7148
6682
|
type: string;
|
|
7149
6683
|
message: string;
|
|
@@ -7154,20 +6688,20 @@ export interface Routes {
|
|
|
7154
6688
|
status: 'pending';
|
|
7155
6689
|
result: null;
|
|
7156
6690
|
error: null;
|
|
7157
|
-
action_type: '
|
|
6691
|
+
action_type: 'SYNC_ACCESS_CODES';
|
|
7158
6692
|
} | {
|
|
7159
6693
|
/** The ID of the action attempt. */
|
|
7160
6694
|
action_attempt_id: string;
|
|
7161
6695
|
status: 'success';
|
|
7162
6696
|
error: null;
|
|
7163
|
-
action_type: '
|
|
6697
|
+
action_type: 'SYNC_ACCESS_CODES';
|
|
7164
6698
|
result: {};
|
|
7165
6699
|
} | {
|
|
7166
6700
|
/** The ID of the action attempt. */
|
|
7167
6701
|
action_attempt_id: string;
|
|
7168
6702
|
status: 'error';
|
|
7169
6703
|
result: null;
|
|
7170
|
-
action_type: '
|
|
6704
|
+
action_type: 'SYNC_ACCESS_CODES';
|
|
7171
6705
|
error: {
|
|
7172
6706
|
type: string;
|
|
7173
6707
|
message: string;
|
|
@@ -7178,44 +6712,22 @@ export interface Routes {
|
|
|
7178
6712
|
status: 'pending';
|
|
7179
6713
|
result: null;
|
|
7180
6714
|
error: null;
|
|
7181
|
-
action_type: '
|
|
6715
|
+
action_type: 'CREATE_ACCESS_CODE';
|
|
7182
6716
|
} | {
|
|
7183
6717
|
/** The ID of the action attempt. */
|
|
7184
6718
|
action_attempt_id: string;
|
|
7185
6719
|
status: 'success';
|
|
7186
6720
|
error: null;
|
|
7187
|
-
action_type: '
|
|
7188
|
-
result: {
|
|
7189
|
-
|
|
7190
|
-
/** The ID of the action attempt. */
|
|
7191
|
-
action_attempt_id: string;
|
|
7192
|
-
status: 'error';
|
|
7193
|
-
result: null;
|
|
7194
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
7195
|
-
error: {
|
|
7196
|
-
type: string;
|
|
7197
|
-
message: string;
|
|
6721
|
+
action_type: 'CREATE_ACCESS_CODE';
|
|
6722
|
+
result: {
|
|
6723
|
+
access_code?: any;
|
|
7198
6724
|
};
|
|
7199
|
-
} | {
|
|
7200
|
-
/** The ID of the action attempt. */
|
|
7201
|
-
action_attempt_id: string;
|
|
7202
|
-
status: 'pending';
|
|
7203
|
-
result: null;
|
|
7204
|
-
error: null;
|
|
7205
|
-
action_type: 'SET_HVAC_MODE';
|
|
7206
|
-
} | {
|
|
7207
|
-
/** The ID of the action attempt. */
|
|
7208
|
-
action_attempt_id: string;
|
|
7209
|
-
status: 'success';
|
|
7210
|
-
error: null;
|
|
7211
|
-
action_type: 'SET_HVAC_MODE';
|
|
7212
|
-
result: {};
|
|
7213
6725
|
} | {
|
|
7214
6726
|
/** The ID of the action attempt. */
|
|
7215
6727
|
action_attempt_id: string;
|
|
7216
6728
|
status: 'error';
|
|
7217
6729
|
result: null;
|
|
7218
|
-
action_type: '
|
|
6730
|
+
action_type: 'CREATE_ACCESS_CODE';
|
|
7219
6731
|
error: {
|
|
7220
6732
|
type: string;
|
|
7221
6733
|
message: string;
|
|
@@ -7226,20 +6738,20 @@ export interface Routes {
|
|
|
7226
6738
|
status: 'pending';
|
|
7227
6739
|
result: null;
|
|
7228
6740
|
error: null;
|
|
7229
|
-
action_type: '
|
|
6741
|
+
action_type: 'DELETE_ACCESS_CODE';
|
|
7230
6742
|
} | {
|
|
7231
6743
|
/** The ID of the action attempt. */
|
|
7232
6744
|
action_attempt_id: string;
|
|
7233
6745
|
status: 'success';
|
|
7234
6746
|
error: null;
|
|
7235
|
-
action_type: '
|
|
6747
|
+
action_type: 'DELETE_ACCESS_CODE';
|
|
7236
6748
|
result: {};
|
|
7237
6749
|
} | {
|
|
7238
6750
|
/** The ID of the action attempt. */
|
|
7239
6751
|
action_attempt_id: string;
|
|
7240
6752
|
status: 'error';
|
|
7241
6753
|
result: null;
|
|
7242
|
-
action_type: '
|
|
6754
|
+
action_type: 'DELETE_ACCESS_CODE';
|
|
7243
6755
|
error: {
|
|
7244
6756
|
type: string;
|
|
7245
6757
|
message: string;
|
|
@@ -7250,20 +6762,22 @@ export interface Routes {
|
|
|
7250
6762
|
status: 'pending';
|
|
7251
6763
|
result: null;
|
|
7252
6764
|
error: null;
|
|
7253
|
-
action_type: '
|
|
6765
|
+
action_type: 'UPDATE_ACCESS_CODE';
|
|
7254
6766
|
} | {
|
|
7255
6767
|
/** The ID of the action attempt. */
|
|
7256
6768
|
action_attempt_id: string;
|
|
7257
6769
|
status: 'success';
|
|
7258
6770
|
error: null;
|
|
7259
|
-
action_type: '
|
|
7260
|
-
result: {
|
|
6771
|
+
action_type: 'UPDATE_ACCESS_CODE';
|
|
6772
|
+
result: {
|
|
6773
|
+
access_code?: any;
|
|
6774
|
+
};
|
|
7261
6775
|
} | {
|
|
7262
6776
|
/** The ID of the action attempt. */
|
|
7263
6777
|
action_attempt_id: string;
|
|
7264
6778
|
status: 'error';
|
|
7265
6779
|
result: null;
|
|
7266
|
-
action_type: '
|
|
6780
|
+
action_type: 'UPDATE_ACCESS_CODE';
|
|
7267
6781
|
error: {
|
|
7268
6782
|
type: string;
|
|
7269
6783
|
message: string;
|
|
@@ -7274,22 +6788,22 @@ export interface Routes {
|
|
|
7274
6788
|
status: 'pending';
|
|
7275
6789
|
result: null;
|
|
7276
6790
|
error: null;
|
|
7277
|
-
action_type: '
|
|
6791
|
+
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
7278
6792
|
} | {
|
|
7279
6793
|
/** The ID of the action attempt. */
|
|
7280
6794
|
action_attempt_id: string;
|
|
7281
6795
|
status: 'success';
|
|
7282
6796
|
error: null;
|
|
7283
|
-
action_type: '
|
|
6797
|
+
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
7284
6798
|
result: {
|
|
7285
|
-
|
|
6799
|
+
noise_threshold?: any;
|
|
7286
6800
|
};
|
|
7287
6801
|
} | {
|
|
7288
6802
|
/** The ID of the action attempt. */
|
|
7289
6803
|
action_attempt_id: string;
|
|
7290
6804
|
status: 'error';
|
|
7291
6805
|
result: null;
|
|
7292
|
-
action_type: '
|
|
6806
|
+
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
7293
6807
|
error: {
|
|
7294
6808
|
type: string;
|
|
7295
6809
|
message: string;
|
|
@@ -7300,20 +6814,20 @@ export interface Routes {
|
|
|
7300
6814
|
status: 'pending';
|
|
7301
6815
|
result: null;
|
|
7302
6816
|
error: null;
|
|
7303
|
-
action_type: '
|
|
6817
|
+
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
7304
6818
|
} | {
|
|
7305
6819
|
/** The ID of the action attempt. */
|
|
7306
6820
|
action_attempt_id: string;
|
|
7307
6821
|
status: 'success';
|
|
7308
6822
|
error: null;
|
|
7309
|
-
action_type: '
|
|
6823
|
+
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
7310
6824
|
result: {};
|
|
7311
6825
|
} | {
|
|
7312
6826
|
/** The ID of the action attempt. */
|
|
7313
6827
|
action_attempt_id: string;
|
|
7314
6828
|
status: 'error';
|
|
7315
6829
|
result: null;
|
|
7316
|
-
action_type: '
|
|
6830
|
+
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
7317
6831
|
error: {
|
|
7318
6832
|
type: string;
|
|
7319
6833
|
message: string;
|
|
@@ -7324,91 +6838,15 @@ export interface Routes {
|
|
|
7324
6838
|
status: 'pending';
|
|
7325
6839
|
result: null;
|
|
7326
6840
|
error: null;
|
|
7327
|
-
action_type: '
|
|
6841
|
+
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
7328
6842
|
} | {
|
|
7329
6843
|
/** The ID of the action attempt. */
|
|
7330
6844
|
action_attempt_id: string;
|
|
7331
6845
|
status: 'success';
|
|
7332
6846
|
error: null;
|
|
7333
|
-
action_type: '
|
|
6847
|
+
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
7334
6848
|
result: {
|
|
7335
|
-
|
|
7336
|
-
};
|
|
7337
|
-
} | {
|
|
7338
|
-
/** The ID of the action attempt. */
|
|
7339
|
-
action_attempt_id: string;
|
|
7340
|
-
status: 'error';
|
|
7341
|
-
result: null;
|
|
7342
|
-
action_type: 'UPDATE_ACCESS_CODE';
|
|
7343
|
-
error: {
|
|
7344
|
-
type: string;
|
|
7345
|
-
message: string;
|
|
7346
|
-
};
|
|
7347
|
-
} | {
|
|
7348
|
-
/** The ID of the action attempt. */
|
|
7349
|
-
action_attempt_id: string;
|
|
7350
|
-
status: 'pending';
|
|
7351
|
-
result: null;
|
|
7352
|
-
error: null;
|
|
7353
|
-
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
7354
|
-
} | {
|
|
7355
|
-
/** The ID of the action attempt. */
|
|
7356
|
-
action_attempt_id: string;
|
|
7357
|
-
status: 'success';
|
|
7358
|
-
error: null;
|
|
7359
|
-
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
7360
|
-
result: {
|
|
7361
|
-
noise_threshold?: any;
|
|
7362
|
-
};
|
|
7363
|
-
} | {
|
|
7364
|
-
/** The ID of the action attempt. */
|
|
7365
|
-
action_attempt_id: string;
|
|
7366
|
-
status: 'error';
|
|
7367
|
-
result: null;
|
|
7368
|
-
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
7369
|
-
error: {
|
|
7370
|
-
type: string;
|
|
7371
|
-
message: string;
|
|
7372
|
-
};
|
|
7373
|
-
} | {
|
|
7374
|
-
/** The ID of the action attempt. */
|
|
7375
|
-
action_attempt_id: string;
|
|
7376
|
-
status: 'pending';
|
|
7377
|
-
result: null;
|
|
7378
|
-
error: null;
|
|
7379
|
-
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
7380
|
-
} | {
|
|
7381
|
-
/** The ID of the action attempt. */
|
|
7382
|
-
action_attempt_id: string;
|
|
7383
|
-
status: 'success';
|
|
7384
|
-
error: null;
|
|
7385
|
-
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
7386
|
-
result: {};
|
|
7387
|
-
} | {
|
|
7388
|
-
/** The ID of the action attempt. */
|
|
7389
|
-
action_attempt_id: string;
|
|
7390
|
-
status: 'error';
|
|
7391
|
-
result: null;
|
|
7392
|
-
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
7393
|
-
error: {
|
|
7394
|
-
type: string;
|
|
7395
|
-
message: string;
|
|
7396
|
-
};
|
|
7397
|
-
} | {
|
|
7398
|
-
/** The ID of the action attempt. */
|
|
7399
|
-
action_attempt_id: string;
|
|
7400
|
-
status: 'pending';
|
|
7401
|
-
result: null;
|
|
7402
|
-
error: null;
|
|
7403
|
-
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
7404
|
-
} | {
|
|
7405
|
-
/** The ID of the action attempt. */
|
|
7406
|
-
action_attempt_id: string;
|
|
7407
|
-
status: 'success';
|
|
7408
|
-
error: null;
|
|
7409
|
-
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
7410
|
-
result: {
|
|
7411
|
-
noise_threshold?: any;
|
|
6849
|
+
noise_threshold?: any;
|
|
7412
6850
|
};
|
|
7413
6851
|
} | {
|
|
7414
6852
|
/** The ID of the action attempt. */
|
|
@@ -7473,6 +6911,8 @@ export interface Routes {
|
|
|
7473
6911
|
} | undefined;
|
|
7474
6912
|
dormakaba_community_metadata?: {
|
|
7475
6913
|
access_point_name: string;
|
|
6914
|
+
common_area_number?: number | undefined;
|
|
6915
|
+
inner_access_points_names?: string[] | undefined;
|
|
7476
6916
|
} | undefined;
|
|
7477
6917
|
assa_abloy_vostio_metadata?: {
|
|
7478
6918
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -7481,6 +6921,11 @@ export interface Routes {
|
|
|
7481
6921
|
stand_open?: boolean | undefined;
|
|
7482
6922
|
pms_id?: string | undefined;
|
|
7483
6923
|
} | undefined;
|
|
6924
|
+
salto_space_metadata?: {
|
|
6925
|
+
door_name: string;
|
|
6926
|
+
ext_door_id: string;
|
|
6927
|
+
door_description?: string | undefined;
|
|
6928
|
+
} | undefined;
|
|
7484
6929
|
};
|
|
7485
6930
|
};
|
|
7486
6931
|
};
|
|
@@ -7546,6 +6991,8 @@ export interface Routes {
|
|
|
7546
6991
|
} | undefined;
|
|
7547
6992
|
dormakaba_community_metadata?: {
|
|
7548
6993
|
access_point_name: string;
|
|
6994
|
+
common_area_number?: number | undefined;
|
|
6995
|
+
inner_access_points_names?: string[] | undefined;
|
|
7549
6996
|
} | undefined;
|
|
7550
6997
|
assa_abloy_vostio_metadata?: {
|
|
7551
6998
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -7554,6 +7001,11 @@ export interface Routes {
|
|
|
7554
7001
|
stand_open?: boolean | undefined;
|
|
7555
7002
|
pms_id?: string | undefined;
|
|
7556
7003
|
} | undefined;
|
|
7004
|
+
salto_space_metadata?: {
|
|
7005
|
+
door_name: string;
|
|
7006
|
+
ext_door_id: string;
|
|
7007
|
+
door_description?: string | undefined;
|
|
7008
|
+
} | undefined;
|
|
7557
7009
|
}>;
|
|
7558
7010
|
};
|
|
7559
7011
|
};
|
|
@@ -8440,6 +7892,8 @@ export interface Routes {
|
|
|
8440
7892
|
} | undefined;
|
|
8441
7893
|
dormakaba_community_metadata?: {
|
|
8442
7894
|
access_point_name: string;
|
|
7895
|
+
common_area_number?: number | undefined;
|
|
7896
|
+
inner_access_points_names?: string[] | undefined;
|
|
8443
7897
|
} | undefined;
|
|
8444
7898
|
assa_abloy_vostio_metadata?: {
|
|
8445
7899
|
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
@@ -8448,6 +7902,11 @@ export interface Routes {
|
|
|
8448
7902
|
stand_open?: boolean | undefined;
|
|
8449
7903
|
pms_id?: string | undefined;
|
|
8450
7904
|
} | undefined;
|
|
7905
|
+
salto_space_metadata?: {
|
|
7906
|
+
door_name: string;
|
|
7907
|
+
ext_door_id: string;
|
|
7908
|
+
door_description?: string | undefined;
|
|
7909
|
+
} | undefined;
|
|
8451
7910
|
}>;
|
|
8452
7911
|
};
|
|
8453
7912
|
};
|
|
@@ -9262,78 +8721,6 @@ export interface Routes {
|
|
|
9262
8721
|
type: string;
|
|
9263
8722
|
message: string;
|
|
9264
8723
|
};
|
|
9265
|
-
} | {
|
|
9266
|
-
/** The ID of the action attempt. */
|
|
9267
|
-
action_attempt_id: string;
|
|
9268
|
-
status: 'pending';
|
|
9269
|
-
result: null;
|
|
9270
|
-
error: null;
|
|
9271
|
-
action_type: 'SET_COOL';
|
|
9272
|
-
} | {
|
|
9273
|
-
/** The ID of the action attempt. */
|
|
9274
|
-
action_attempt_id: string;
|
|
9275
|
-
status: 'success';
|
|
9276
|
-
error: null;
|
|
9277
|
-
action_type: 'SET_COOL';
|
|
9278
|
-
result: {};
|
|
9279
|
-
} | {
|
|
9280
|
-
/** The ID of the action attempt. */
|
|
9281
|
-
action_attempt_id: string;
|
|
9282
|
-
status: 'error';
|
|
9283
|
-
result: null;
|
|
9284
|
-
action_type: 'SET_COOL';
|
|
9285
|
-
error: {
|
|
9286
|
-
type: string;
|
|
9287
|
-
message: string;
|
|
9288
|
-
};
|
|
9289
|
-
} | {
|
|
9290
|
-
/** The ID of the action attempt. */
|
|
9291
|
-
action_attempt_id: string;
|
|
9292
|
-
status: 'pending';
|
|
9293
|
-
result: null;
|
|
9294
|
-
error: null;
|
|
9295
|
-
action_type: 'SET_HEAT';
|
|
9296
|
-
} | {
|
|
9297
|
-
/** The ID of the action attempt. */
|
|
9298
|
-
action_attempt_id: string;
|
|
9299
|
-
status: 'success';
|
|
9300
|
-
error: null;
|
|
9301
|
-
action_type: 'SET_HEAT';
|
|
9302
|
-
result: {};
|
|
9303
|
-
} | {
|
|
9304
|
-
/** The ID of the action attempt. */
|
|
9305
|
-
action_attempt_id: string;
|
|
9306
|
-
status: 'error';
|
|
9307
|
-
result: null;
|
|
9308
|
-
action_type: 'SET_HEAT';
|
|
9309
|
-
error: {
|
|
9310
|
-
type: string;
|
|
9311
|
-
message: string;
|
|
9312
|
-
};
|
|
9313
|
-
} | {
|
|
9314
|
-
/** The ID of the action attempt. */
|
|
9315
|
-
action_attempt_id: string;
|
|
9316
|
-
status: 'pending';
|
|
9317
|
-
result: null;
|
|
9318
|
-
error: null;
|
|
9319
|
-
action_type: 'SET_HEAT_COOL';
|
|
9320
|
-
} | {
|
|
9321
|
-
/** The ID of the action attempt. */
|
|
9322
|
-
action_attempt_id: string;
|
|
9323
|
-
status: 'success';
|
|
9324
|
-
error: null;
|
|
9325
|
-
action_type: 'SET_HEAT_COOL';
|
|
9326
|
-
result: {};
|
|
9327
|
-
} | {
|
|
9328
|
-
/** The ID of the action attempt. */
|
|
9329
|
-
action_attempt_id: string;
|
|
9330
|
-
status: 'error';
|
|
9331
|
-
result: null;
|
|
9332
|
-
action_type: 'SET_HEAT_COOL';
|
|
9333
|
-
error: {
|
|
9334
|
-
type: string;
|
|
9335
|
-
message: string;
|
|
9336
|
-
};
|
|
9337
8724
|
} | {
|
|
9338
8725
|
/** The ID of the action attempt. */
|
|
9339
8726
|
action_attempt_id: string;
|
|
@@ -9358,30 +8745,6 @@ export interface Routes {
|
|
|
9358
8745
|
type: string;
|
|
9359
8746
|
message: string;
|
|
9360
8747
|
};
|
|
9361
|
-
} | {
|
|
9362
|
-
/** The ID of the action attempt. */
|
|
9363
|
-
action_attempt_id: string;
|
|
9364
|
-
status: 'pending';
|
|
9365
|
-
result: null;
|
|
9366
|
-
error: null;
|
|
9367
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
9368
|
-
} | {
|
|
9369
|
-
/** The ID of the action attempt. */
|
|
9370
|
-
action_attempt_id: string;
|
|
9371
|
-
status: 'success';
|
|
9372
|
-
error: null;
|
|
9373
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
9374
|
-
result: {};
|
|
9375
|
-
} | {
|
|
9376
|
-
/** The ID of the action attempt. */
|
|
9377
|
-
action_attempt_id: string;
|
|
9378
|
-
status: 'error';
|
|
9379
|
-
result: null;
|
|
9380
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
9381
|
-
error: {
|
|
9382
|
-
type: string;
|
|
9383
|
-
message: string;
|
|
9384
|
-
};
|
|
9385
8748
|
} | {
|
|
9386
8749
|
/** The ID of the action attempt. */
|
|
9387
8750
|
action_attempt_id: string;
|
|
@@ -10134,78 +9497,6 @@ export interface Routes {
|
|
|
10134
9497
|
type: string;
|
|
10135
9498
|
message: string;
|
|
10136
9499
|
};
|
|
10137
|
-
} | {
|
|
10138
|
-
/** The ID of the action attempt. */
|
|
10139
|
-
action_attempt_id: string;
|
|
10140
|
-
status: 'pending';
|
|
10141
|
-
result: null;
|
|
10142
|
-
error: null;
|
|
10143
|
-
action_type: 'SET_COOL';
|
|
10144
|
-
} | {
|
|
10145
|
-
/** The ID of the action attempt. */
|
|
10146
|
-
action_attempt_id: string;
|
|
10147
|
-
status: 'success';
|
|
10148
|
-
error: null;
|
|
10149
|
-
action_type: 'SET_COOL';
|
|
10150
|
-
result: {};
|
|
10151
|
-
} | {
|
|
10152
|
-
/** The ID of the action attempt. */
|
|
10153
|
-
action_attempt_id: string;
|
|
10154
|
-
status: 'error';
|
|
10155
|
-
result: null;
|
|
10156
|
-
action_type: 'SET_COOL';
|
|
10157
|
-
error: {
|
|
10158
|
-
type: string;
|
|
10159
|
-
message: string;
|
|
10160
|
-
};
|
|
10161
|
-
} | {
|
|
10162
|
-
/** The ID of the action attempt. */
|
|
10163
|
-
action_attempt_id: string;
|
|
10164
|
-
status: 'pending';
|
|
10165
|
-
result: null;
|
|
10166
|
-
error: null;
|
|
10167
|
-
action_type: 'SET_HEAT';
|
|
10168
|
-
} | {
|
|
10169
|
-
/** The ID of the action attempt. */
|
|
10170
|
-
action_attempt_id: string;
|
|
10171
|
-
status: 'success';
|
|
10172
|
-
error: null;
|
|
10173
|
-
action_type: 'SET_HEAT';
|
|
10174
|
-
result: {};
|
|
10175
|
-
} | {
|
|
10176
|
-
/** The ID of the action attempt. */
|
|
10177
|
-
action_attempt_id: string;
|
|
10178
|
-
status: 'error';
|
|
10179
|
-
result: null;
|
|
10180
|
-
action_type: 'SET_HEAT';
|
|
10181
|
-
error: {
|
|
10182
|
-
type: string;
|
|
10183
|
-
message: string;
|
|
10184
|
-
};
|
|
10185
|
-
} | {
|
|
10186
|
-
/** The ID of the action attempt. */
|
|
10187
|
-
action_attempt_id: string;
|
|
10188
|
-
status: 'pending';
|
|
10189
|
-
result: null;
|
|
10190
|
-
error: null;
|
|
10191
|
-
action_type: 'SET_HEAT_COOL';
|
|
10192
|
-
} | {
|
|
10193
|
-
/** The ID of the action attempt. */
|
|
10194
|
-
action_attempt_id: string;
|
|
10195
|
-
status: 'success';
|
|
10196
|
-
error: null;
|
|
10197
|
-
action_type: 'SET_HEAT_COOL';
|
|
10198
|
-
result: {};
|
|
10199
|
-
} | {
|
|
10200
|
-
/** The ID of the action attempt. */
|
|
10201
|
-
action_attempt_id: string;
|
|
10202
|
-
status: 'error';
|
|
10203
|
-
result: null;
|
|
10204
|
-
action_type: 'SET_HEAT_COOL';
|
|
10205
|
-
error: {
|
|
10206
|
-
type: string;
|
|
10207
|
-
message: string;
|
|
10208
|
-
};
|
|
10209
9500
|
} | {
|
|
10210
9501
|
/** The ID of the action attempt. */
|
|
10211
9502
|
action_attempt_id: string;
|
|
@@ -10230,30 +9521,6 @@ export interface Routes {
|
|
|
10230
9521
|
type: string;
|
|
10231
9522
|
message: string;
|
|
10232
9523
|
};
|
|
10233
|
-
} | {
|
|
10234
|
-
/** The ID of the action attempt. */
|
|
10235
|
-
action_attempt_id: string;
|
|
10236
|
-
status: 'pending';
|
|
10237
|
-
result: null;
|
|
10238
|
-
error: null;
|
|
10239
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
10240
|
-
} | {
|
|
10241
|
-
/** The ID of the action attempt. */
|
|
10242
|
-
action_attempt_id: string;
|
|
10243
|
-
status: 'success';
|
|
10244
|
-
error: null;
|
|
10245
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
10246
|
-
result: {};
|
|
10247
|
-
} | {
|
|
10248
|
-
/** The ID of the action attempt. */
|
|
10249
|
-
action_attempt_id: string;
|
|
10250
|
-
status: 'error';
|
|
10251
|
-
result: null;
|
|
10252
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
10253
|
-
error: {
|
|
10254
|
-
type: string;
|
|
10255
|
-
message: string;
|
|
10256
|
-
};
|
|
10257
9524
|
} | {
|
|
10258
9525
|
/** The ID of the action attempt. */
|
|
10259
9526
|
action_attempt_id: string;
|
|
@@ -15072,20 +14339,20 @@ export interface Routes {
|
|
|
15072
14339
|
status: 'pending';
|
|
15073
14340
|
result: null;
|
|
15074
14341
|
error: null;
|
|
15075
|
-
action_type: '
|
|
14342
|
+
action_type: 'SET_FAN_MODE';
|
|
15076
14343
|
} | {
|
|
15077
14344
|
/** The ID of the action attempt. */
|
|
15078
14345
|
action_attempt_id: string;
|
|
15079
14346
|
status: 'success';
|
|
15080
14347
|
error: null;
|
|
15081
|
-
action_type: '
|
|
14348
|
+
action_type: 'SET_FAN_MODE';
|
|
15082
14349
|
result: {};
|
|
15083
14350
|
} | {
|
|
15084
14351
|
/** The ID of the action attempt. */
|
|
15085
14352
|
action_attempt_id: string;
|
|
15086
14353
|
status: 'error';
|
|
15087
14354
|
result: null;
|
|
15088
|
-
action_type: '
|
|
14355
|
+
action_type: 'SET_FAN_MODE';
|
|
15089
14356
|
error: {
|
|
15090
14357
|
type: string;
|
|
15091
14358
|
message: string;
|
|
@@ -15096,116 +14363,20 @@ export interface Routes {
|
|
|
15096
14363
|
status: 'pending';
|
|
15097
14364
|
result: null;
|
|
15098
14365
|
error: null;
|
|
15099
|
-
action_type: '
|
|
14366
|
+
action_type: 'SET_HVAC_MODE';
|
|
15100
14367
|
} | {
|
|
15101
14368
|
/** The ID of the action attempt. */
|
|
15102
14369
|
action_attempt_id: string;
|
|
15103
14370
|
status: 'success';
|
|
15104
14371
|
error: null;
|
|
15105
|
-
action_type: '
|
|
14372
|
+
action_type: 'SET_HVAC_MODE';
|
|
15106
14373
|
result: {};
|
|
15107
14374
|
} | {
|
|
15108
14375
|
/** The ID of the action attempt. */
|
|
15109
14376
|
action_attempt_id: string;
|
|
15110
14377
|
status: 'error';
|
|
15111
14378
|
result: null;
|
|
15112
|
-
action_type: '
|
|
15113
|
-
error: {
|
|
15114
|
-
type: string;
|
|
15115
|
-
message: string;
|
|
15116
|
-
};
|
|
15117
|
-
} | {
|
|
15118
|
-
/** The ID of the action attempt. */
|
|
15119
|
-
action_attempt_id: string;
|
|
15120
|
-
status: 'pending';
|
|
15121
|
-
result: null;
|
|
15122
|
-
error: null;
|
|
15123
|
-
action_type: 'SET_HEAT_COOL';
|
|
15124
|
-
} | {
|
|
15125
|
-
/** The ID of the action attempt. */
|
|
15126
|
-
action_attempt_id: string;
|
|
15127
|
-
status: 'success';
|
|
15128
|
-
error: null;
|
|
15129
|
-
action_type: 'SET_HEAT_COOL';
|
|
15130
|
-
result: {};
|
|
15131
|
-
} | {
|
|
15132
|
-
/** The ID of the action attempt. */
|
|
15133
|
-
action_attempt_id: string;
|
|
15134
|
-
status: 'error';
|
|
15135
|
-
result: null;
|
|
15136
|
-
action_type: 'SET_HEAT_COOL';
|
|
15137
|
-
error: {
|
|
15138
|
-
type: string;
|
|
15139
|
-
message: string;
|
|
15140
|
-
};
|
|
15141
|
-
} | {
|
|
15142
|
-
/** The ID of the action attempt. */
|
|
15143
|
-
action_attempt_id: string;
|
|
15144
|
-
status: 'pending';
|
|
15145
|
-
result: null;
|
|
15146
|
-
error: null;
|
|
15147
|
-
action_type: 'SET_FAN_MODE';
|
|
15148
|
-
} | {
|
|
15149
|
-
/** The ID of the action attempt. */
|
|
15150
|
-
action_attempt_id: string;
|
|
15151
|
-
status: 'success';
|
|
15152
|
-
error: null;
|
|
15153
|
-
action_type: 'SET_FAN_MODE';
|
|
15154
|
-
result: {};
|
|
15155
|
-
} | {
|
|
15156
|
-
/** The ID of the action attempt. */
|
|
15157
|
-
action_attempt_id: string;
|
|
15158
|
-
status: 'error';
|
|
15159
|
-
result: null;
|
|
15160
|
-
action_type: 'SET_FAN_MODE';
|
|
15161
|
-
error: {
|
|
15162
|
-
type: string;
|
|
15163
|
-
message: string;
|
|
15164
|
-
};
|
|
15165
|
-
} | {
|
|
15166
|
-
/** The ID of the action attempt. */
|
|
15167
|
-
action_attempt_id: string;
|
|
15168
|
-
status: 'pending';
|
|
15169
|
-
result: null;
|
|
15170
|
-
error: null;
|
|
15171
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
15172
|
-
} | {
|
|
15173
|
-
/** The ID of the action attempt. */
|
|
15174
|
-
action_attempt_id: string;
|
|
15175
|
-
status: 'success';
|
|
15176
|
-
error: null;
|
|
15177
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
15178
|
-
result: {};
|
|
15179
|
-
} | {
|
|
15180
|
-
/** The ID of the action attempt. */
|
|
15181
|
-
action_attempt_id: string;
|
|
15182
|
-
status: 'error';
|
|
15183
|
-
result: null;
|
|
15184
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
15185
|
-
error: {
|
|
15186
|
-
type: string;
|
|
15187
|
-
message: string;
|
|
15188
|
-
};
|
|
15189
|
-
} | {
|
|
15190
|
-
/** The ID of the action attempt. */
|
|
15191
|
-
action_attempt_id: string;
|
|
15192
|
-
status: 'pending';
|
|
15193
|
-
result: null;
|
|
15194
|
-
error: null;
|
|
15195
|
-
action_type: 'SET_HVAC_MODE';
|
|
15196
|
-
} | {
|
|
15197
|
-
/** The ID of the action attempt. */
|
|
15198
|
-
action_attempt_id: string;
|
|
15199
|
-
status: 'success';
|
|
15200
|
-
error: null;
|
|
15201
|
-
action_type: 'SET_HVAC_MODE';
|
|
15202
|
-
result: {};
|
|
15203
|
-
} | {
|
|
15204
|
-
/** The ID of the action attempt. */
|
|
15205
|
-
action_attempt_id: string;
|
|
15206
|
-
status: 'error';
|
|
15207
|
-
result: null;
|
|
15208
|
-
action_type: 'SET_HVAC_MODE';
|
|
14379
|
+
action_type: 'SET_HVAC_MODE';
|
|
15209
14380
|
error: {
|
|
15210
14381
|
type: string;
|
|
15211
14382
|
message: string;
|
|
@@ -15939,78 +15110,6 @@ export interface Routes {
|
|
|
15939
15110
|
type: string;
|
|
15940
15111
|
message: string;
|
|
15941
15112
|
};
|
|
15942
|
-
} | {
|
|
15943
|
-
/** The ID of the action attempt. */
|
|
15944
|
-
action_attempt_id: string;
|
|
15945
|
-
status: 'pending';
|
|
15946
|
-
result: null;
|
|
15947
|
-
error: null;
|
|
15948
|
-
action_type: 'SET_COOL';
|
|
15949
|
-
} | {
|
|
15950
|
-
/** The ID of the action attempt. */
|
|
15951
|
-
action_attempt_id: string;
|
|
15952
|
-
status: 'success';
|
|
15953
|
-
error: null;
|
|
15954
|
-
action_type: 'SET_COOL';
|
|
15955
|
-
result: {};
|
|
15956
|
-
} | {
|
|
15957
|
-
/** The ID of the action attempt. */
|
|
15958
|
-
action_attempt_id: string;
|
|
15959
|
-
status: 'error';
|
|
15960
|
-
result: null;
|
|
15961
|
-
action_type: 'SET_COOL';
|
|
15962
|
-
error: {
|
|
15963
|
-
type: string;
|
|
15964
|
-
message: string;
|
|
15965
|
-
};
|
|
15966
|
-
} | {
|
|
15967
|
-
/** The ID of the action attempt. */
|
|
15968
|
-
action_attempt_id: string;
|
|
15969
|
-
status: 'pending';
|
|
15970
|
-
result: null;
|
|
15971
|
-
error: null;
|
|
15972
|
-
action_type: 'SET_HEAT';
|
|
15973
|
-
} | {
|
|
15974
|
-
/** The ID of the action attempt. */
|
|
15975
|
-
action_attempt_id: string;
|
|
15976
|
-
status: 'success';
|
|
15977
|
-
error: null;
|
|
15978
|
-
action_type: 'SET_HEAT';
|
|
15979
|
-
result: {};
|
|
15980
|
-
} | {
|
|
15981
|
-
/** The ID of the action attempt. */
|
|
15982
|
-
action_attempt_id: string;
|
|
15983
|
-
status: 'error';
|
|
15984
|
-
result: null;
|
|
15985
|
-
action_type: 'SET_HEAT';
|
|
15986
|
-
error: {
|
|
15987
|
-
type: string;
|
|
15988
|
-
message: string;
|
|
15989
|
-
};
|
|
15990
|
-
} | {
|
|
15991
|
-
/** The ID of the action attempt. */
|
|
15992
|
-
action_attempt_id: string;
|
|
15993
|
-
status: 'pending';
|
|
15994
|
-
result: null;
|
|
15995
|
-
error: null;
|
|
15996
|
-
action_type: 'SET_HEAT_COOL';
|
|
15997
|
-
} | {
|
|
15998
|
-
/** The ID of the action attempt. */
|
|
15999
|
-
action_attempt_id: string;
|
|
16000
|
-
status: 'success';
|
|
16001
|
-
error: null;
|
|
16002
|
-
action_type: 'SET_HEAT_COOL';
|
|
16003
|
-
result: {};
|
|
16004
|
-
} | {
|
|
16005
|
-
/** The ID of the action attempt. */
|
|
16006
|
-
action_attempt_id: string;
|
|
16007
|
-
status: 'error';
|
|
16008
|
-
result: null;
|
|
16009
|
-
action_type: 'SET_HEAT_COOL';
|
|
16010
|
-
error: {
|
|
16011
|
-
type: string;
|
|
16012
|
-
message: string;
|
|
16013
|
-
};
|
|
16014
15113
|
} | {
|
|
16015
15114
|
/** The ID of the action attempt. */
|
|
16016
15115
|
action_attempt_id: string;
|
|
@@ -16035,30 +15134,6 @@ export interface Routes {
|
|
|
16035
15134
|
type: string;
|
|
16036
15135
|
message: string;
|
|
16037
15136
|
};
|
|
16038
|
-
} | {
|
|
16039
|
-
/** The ID of the action attempt. */
|
|
16040
|
-
action_attempt_id: string;
|
|
16041
|
-
status: 'pending';
|
|
16042
|
-
result: null;
|
|
16043
|
-
error: null;
|
|
16044
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
16045
|
-
} | {
|
|
16046
|
-
/** The ID of the action attempt. */
|
|
16047
|
-
action_attempt_id: string;
|
|
16048
|
-
status: 'success';
|
|
16049
|
-
error: null;
|
|
16050
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
16051
|
-
result: {};
|
|
16052
|
-
} | {
|
|
16053
|
-
/** The ID of the action attempt. */
|
|
16054
|
-
action_attempt_id: string;
|
|
16055
|
-
status: 'error';
|
|
16056
|
-
result: null;
|
|
16057
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
16058
|
-
error: {
|
|
16059
|
-
type: string;
|
|
16060
|
-
message: string;
|
|
16061
|
-
};
|
|
16062
15137
|
} | {
|
|
16063
15138
|
/** The ID of the action attempt. */
|
|
16064
15139
|
action_attempt_id: string;
|
|
@@ -17928,20 +17003,20 @@ export interface Routes {
|
|
|
17928
17003
|
status: 'pending';
|
|
17929
17004
|
result: null;
|
|
17930
17005
|
error: null;
|
|
17931
|
-
action_type: '
|
|
17006
|
+
action_type: 'SET_FAN_MODE';
|
|
17932
17007
|
} | {
|
|
17933
17008
|
/** The ID of the action attempt. */
|
|
17934
17009
|
action_attempt_id: string;
|
|
17935
17010
|
status: 'success';
|
|
17936
17011
|
error: null;
|
|
17937
|
-
action_type: '
|
|
17012
|
+
action_type: 'SET_FAN_MODE';
|
|
17938
17013
|
result: {};
|
|
17939
17014
|
} | {
|
|
17940
17015
|
/** The ID of the action attempt. */
|
|
17941
17016
|
action_attempt_id: string;
|
|
17942
17017
|
status: 'error';
|
|
17943
17018
|
result: null;
|
|
17944
|
-
action_type: '
|
|
17019
|
+
action_type: 'SET_FAN_MODE';
|
|
17945
17020
|
error: {
|
|
17946
17021
|
type: string;
|
|
17947
17022
|
message: string;
|
|
@@ -17952,20 +17027,20 @@ export interface Routes {
|
|
|
17952
17027
|
status: 'pending';
|
|
17953
17028
|
result: null;
|
|
17954
17029
|
error: null;
|
|
17955
|
-
action_type: '
|
|
17030
|
+
action_type: 'SET_HVAC_MODE';
|
|
17956
17031
|
} | {
|
|
17957
17032
|
/** The ID of the action attempt. */
|
|
17958
17033
|
action_attempt_id: string;
|
|
17959
17034
|
status: 'success';
|
|
17960
17035
|
error: null;
|
|
17961
|
-
action_type: '
|
|
17036
|
+
action_type: 'SET_HVAC_MODE';
|
|
17962
17037
|
result: {};
|
|
17963
17038
|
} | {
|
|
17964
17039
|
/** The ID of the action attempt. */
|
|
17965
17040
|
action_attempt_id: string;
|
|
17966
17041
|
status: 'error';
|
|
17967
17042
|
result: null;
|
|
17968
|
-
action_type: '
|
|
17043
|
+
action_type: 'SET_HVAC_MODE';
|
|
17969
17044
|
error: {
|
|
17970
17045
|
type: string;
|
|
17971
17046
|
message: string;
|
|
@@ -17976,20 +17051,20 @@ export interface Routes {
|
|
|
17976
17051
|
status: 'pending';
|
|
17977
17052
|
result: null;
|
|
17978
17053
|
error: null;
|
|
17979
|
-
action_type: '
|
|
17054
|
+
action_type: 'ACTIVATE_CLIMATE_PRESET';
|
|
17980
17055
|
} | {
|
|
17981
17056
|
/** The ID of the action attempt. */
|
|
17982
17057
|
action_attempt_id: string;
|
|
17983
17058
|
status: 'success';
|
|
17984
17059
|
error: null;
|
|
17985
|
-
action_type: '
|
|
17060
|
+
action_type: 'ACTIVATE_CLIMATE_PRESET';
|
|
17986
17061
|
result: {};
|
|
17987
17062
|
} | {
|
|
17988
17063
|
/** The ID of the action attempt. */
|
|
17989
17064
|
action_attempt_id: string;
|
|
17990
17065
|
status: 'error';
|
|
17991
17066
|
result: null;
|
|
17992
|
-
action_type: '
|
|
17067
|
+
action_type: 'ACTIVATE_CLIMATE_PRESET';
|
|
17993
17068
|
error: {
|
|
17994
17069
|
type: string;
|
|
17995
17070
|
message: string;
|
|
@@ -18000,20 +17075,20 @@ export interface Routes {
|
|
|
18000
17075
|
status: 'pending';
|
|
18001
17076
|
result: null;
|
|
18002
17077
|
error: null;
|
|
18003
|
-
action_type: '
|
|
17078
|
+
action_type: 'SYNC_ACCESS_CODES';
|
|
18004
17079
|
} | {
|
|
18005
17080
|
/** The ID of the action attempt. */
|
|
18006
17081
|
action_attempt_id: string;
|
|
18007
17082
|
status: 'success';
|
|
18008
17083
|
error: null;
|
|
18009
|
-
action_type: '
|
|
17084
|
+
action_type: 'SYNC_ACCESS_CODES';
|
|
18010
17085
|
result: {};
|
|
18011
17086
|
} | {
|
|
18012
17087
|
/** The ID of the action attempt. */
|
|
18013
17088
|
action_attempt_id: string;
|
|
18014
17089
|
status: 'error';
|
|
18015
17090
|
result: null;
|
|
18016
|
-
action_type: '
|
|
17091
|
+
action_type: 'SYNC_ACCESS_CODES';
|
|
18017
17092
|
error: {
|
|
18018
17093
|
type: string;
|
|
18019
17094
|
message: string;
|
|
@@ -18024,44 +17099,22 @@ export interface Routes {
|
|
|
18024
17099
|
status: 'pending';
|
|
18025
17100
|
result: null;
|
|
18026
17101
|
error: null;
|
|
18027
|
-
action_type: '
|
|
17102
|
+
action_type: 'CREATE_ACCESS_CODE';
|
|
18028
17103
|
} | {
|
|
18029
17104
|
/** The ID of the action attempt. */
|
|
18030
17105
|
action_attempt_id: string;
|
|
18031
17106
|
status: 'success';
|
|
18032
17107
|
error: null;
|
|
18033
|
-
action_type: '
|
|
18034
|
-
result: {
|
|
18035
|
-
|
|
18036
|
-
/** The ID of the action attempt. */
|
|
18037
|
-
action_attempt_id: string;
|
|
18038
|
-
status: 'error';
|
|
18039
|
-
result: null;
|
|
18040
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
18041
|
-
error: {
|
|
18042
|
-
type: string;
|
|
18043
|
-
message: string;
|
|
17108
|
+
action_type: 'CREATE_ACCESS_CODE';
|
|
17109
|
+
result: {
|
|
17110
|
+
access_code?: any;
|
|
18044
17111
|
};
|
|
18045
|
-
} | {
|
|
18046
|
-
/** The ID of the action attempt. */
|
|
18047
|
-
action_attempt_id: string;
|
|
18048
|
-
status: 'pending';
|
|
18049
|
-
result: null;
|
|
18050
|
-
error: null;
|
|
18051
|
-
action_type: 'SET_HVAC_MODE';
|
|
18052
|
-
} | {
|
|
18053
|
-
/** The ID of the action attempt. */
|
|
18054
|
-
action_attempt_id: string;
|
|
18055
|
-
status: 'success';
|
|
18056
|
-
error: null;
|
|
18057
|
-
action_type: 'SET_HVAC_MODE';
|
|
18058
|
-
result: {};
|
|
18059
17112
|
} | {
|
|
18060
17113
|
/** The ID of the action attempt. */
|
|
18061
17114
|
action_attempt_id: string;
|
|
18062
17115
|
status: 'error';
|
|
18063
17116
|
result: null;
|
|
18064
|
-
action_type: '
|
|
17117
|
+
action_type: 'CREATE_ACCESS_CODE';
|
|
18065
17118
|
error: {
|
|
18066
17119
|
type: string;
|
|
18067
17120
|
message: string;
|
|
@@ -18072,20 +17125,20 @@ export interface Routes {
|
|
|
18072
17125
|
status: 'pending';
|
|
18073
17126
|
result: null;
|
|
18074
17127
|
error: null;
|
|
18075
|
-
action_type: '
|
|
17128
|
+
action_type: 'DELETE_ACCESS_CODE';
|
|
18076
17129
|
} | {
|
|
18077
17130
|
/** The ID of the action attempt. */
|
|
18078
17131
|
action_attempt_id: string;
|
|
18079
17132
|
status: 'success';
|
|
18080
17133
|
error: null;
|
|
18081
|
-
action_type: '
|
|
17134
|
+
action_type: 'DELETE_ACCESS_CODE';
|
|
18082
17135
|
result: {};
|
|
18083
17136
|
} | {
|
|
18084
17137
|
/** The ID of the action attempt. */
|
|
18085
17138
|
action_attempt_id: string;
|
|
18086
17139
|
status: 'error';
|
|
18087
17140
|
result: null;
|
|
18088
|
-
action_type: '
|
|
17141
|
+
action_type: 'DELETE_ACCESS_CODE';
|
|
18089
17142
|
error: {
|
|
18090
17143
|
type: string;
|
|
18091
17144
|
message: string;
|
|
@@ -18096,20 +17149,22 @@ export interface Routes {
|
|
|
18096
17149
|
status: 'pending';
|
|
18097
17150
|
result: null;
|
|
18098
17151
|
error: null;
|
|
18099
|
-
action_type: '
|
|
17152
|
+
action_type: 'UPDATE_ACCESS_CODE';
|
|
18100
17153
|
} | {
|
|
18101
17154
|
/** The ID of the action attempt. */
|
|
18102
17155
|
action_attempt_id: string;
|
|
18103
17156
|
status: 'success';
|
|
18104
17157
|
error: null;
|
|
18105
|
-
action_type: '
|
|
18106
|
-
result: {
|
|
17158
|
+
action_type: 'UPDATE_ACCESS_CODE';
|
|
17159
|
+
result: {
|
|
17160
|
+
access_code?: any;
|
|
17161
|
+
};
|
|
18107
17162
|
} | {
|
|
18108
17163
|
/** The ID of the action attempt. */
|
|
18109
17164
|
action_attempt_id: string;
|
|
18110
17165
|
status: 'error';
|
|
18111
17166
|
result: null;
|
|
18112
|
-
action_type: '
|
|
17167
|
+
action_type: 'UPDATE_ACCESS_CODE';
|
|
18113
17168
|
error: {
|
|
18114
17169
|
type: string;
|
|
18115
17170
|
message: string;
|
|
@@ -18120,22 +17175,22 @@ export interface Routes {
|
|
|
18120
17175
|
status: 'pending';
|
|
18121
17176
|
result: null;
|
|
18122
17177
|
error: null;
|
|
18123
|
-
action_type: '
|
|
17178
|
+
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
18124
17179
|
} | {
|
|
18125
17180
|
/** The ID of the action attempt. */
|
|
18126
17181
|
action_attempt_id: string;
|
|
18127
17182
|
status: 'success';
|
|
18128
17183
|
error: null;
|
|
18129
|
-
action_type: '
|
|
17184
|
+
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
18130
17185
|
result: {
|
|
18131
|
-
|
|
17186
|
+
noise_threshold?: any;
|
|
18132
17187
|
};
|
|
18133
17188
|
} | {
|
|
18134
17189
|
/** The ID of the action attempt. */
|
|
18135
17190
|
action_attempt_id: string;
|
|
18136
17191
|
status: 'error';
|
|
18137
17192
|
result: null;
|
|
18138
|
-
action_type: '
|
|
17193
|
+
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
18139
17194
|
error: {
|
|
18140
17195
|
type: string;
|
|
18141
17196
|
message: string;
|
|
@@ -18146,20 +17201,20 @@ export interface Routes {
|
|
|
18146
17201
|
status: 'pending';
|
|
18147
17202
|
result: null;
|
|
18148
17203
|
error: null;
|
|
18149
|
-
action_type: '
|
|
17204
|
+
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
18150
17205
|
} | {
|
|
18151
17206
|
/** The ID of the action attempt. */
|
|
18152
17207
|
action_attempt_id: string;
|
|
18153
17208
|
status: 'success';
|
|
18154
17209
|
error: null;
|
|
18155
|
-
action_type: '
|
|
17210
|
+
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
18156
17211
|
result: {};
|
|
18157
17212
|
} | {
|
|
18158
17213
|
/** The ID of the action attempt. */
|
|
18159
17214
|
action_attempt_id: string;
|
|
18160
17215
|
status: 'error';
|
|
18161
17216
|
result: null;
|
|
18162
|
-
action_type: '
|
|
17217
|
+
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
18163
17218
|
error: {
|
|
18164
17219
|
type: string;
|
|
18165
17220
|
message: string;
|
|
@@ -18170,98 +17225,22 @@ export interface Routes {
|
|
|
18170
17225
|
status: 'pending';
|
|
18171
17226
|
result: null;
|
|
18172
17227
|
error: null;
|
|
18173
|
-
action_type: '
|
|
17228
|
+
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
18174
17229
|
} | {
|
|
18175
17230
|
/** The ID of the action attempt. */
|
|
18176
17231
|
action_attempt_id: string;
|
|
18177
17232
|
status: 'success';
|
|
18178
17233
|
error: null;
|
|
18179
|
-
action_type: '
|
|
17234
|
+
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
18180
17235
|
result: {
|
|
18181
|
-
|
|
17236
|
+
noise_threshold?: any;
|
|
18182
17237
|
};
|
|
18183
17238
|
} | {
|
|
18184
17239
|
/** The ID of the action attempt. */
|
|
18185
17240
|
action_attempt_id: string;
|
|
18186
17241
|
status: 'error';
|
|
18187
17242
|
result: null;
|
|
18188
|
-
action_type: '
|
|
18189
|
-
error: {
|
|
18190
|
-
type: string;
|
|
18191
|
-
message: string;
|
|
18192
|
-
};
|
|
18193
|
-
} | {
|
|
18194
|
-
/** The ID of the action attempt. */
|
|
18195
|
-
action_attempt_id: string;
|
|
18196
|
-
status: 'pending';
|
|
18197
|
-
result: null;
|
|
18198
|
-
error: null;
|
|
18199
|
-
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
18200
|
-
} | {
|
|
18201
|
-
/** The ID of the action attempt. */
|
|
18202
|
-
action_attempt_id: string;
|
|
18203
|
-
status: 'success';
|
|
18204
|
-
error: null;
|
|
18205
|
-
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
18206
|
-
result: {
|
|
18207
|
-
noise_threshold?: any;
|
|
18208
|
-
};
|
|
18209
|
-
} | {
|
|
18210
|
-
/** The ID of the action attempt. */
|
|
18211
|
-
action_attempt_id: string;
|
|
18212
|
-
status: 'error';
|
|
18213
|
-
result: null;
|
|
18214
|
-
action_type: 'CREATE_NOISE_THRESHOLD';
|
|
18215
|
-
error: {
|
|
18216
|
-
type: string;
|
|
18217
|
-
message: string;
|
|
18218
|
-
};
|
|
18219
|
-
} | {
|
|
18220
|
-
/** The ID of the action attempt. */
|
|
18221
|
-
action_attempt_id: string;
|
|
18222
|
-
status: 'pending';
|
|
18223
|
-
result: null;
|
|
18224
|
-
error: null;
|
|
18225
|
-
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
18226
|
-
} | {
|
|
18227
|
-
/** The ID of the action attempt. */
|
|
18228
|
-
action_attempt_id: string;
|
|
18229
|
-
status: 'success';
|
|
18230
|
-
error: null;
|
|
18231
|
-
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
18232
|
-
result: {};
|
|
18233
|
-
} | {
|
|
18234
|
-
/** The ID of the action attempt. */
|
|
18235
|
-
action_attempt_id: string;
|
|
18236
|
-
status: 'error';
|
|
18237
|
-
result: null;
|
|
18238
|
-
action_type: 'DELETE_NOISE_THRESHOLD';
|
|
18239
|
-
error: {
|
|
18240
|
-
type: string;
|
|
18241
|
-
message: string;
|
|
18242
|
-
};
|
|
18243
|
-
} | {
|
|
18244
|
-
/** The ID of the action attempt. */
|
|
18245
|
-
action_attempt_id: string;
|
|
18246
|
-
status: 'pending';
|
|
18247
|
-
result: null;
|
|
18248
|
-
error: null;
|
|
18249
|
-
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
18250
|
-
} | {
|
|
18251
|
-
/** The ID of the action attempt. */
|
|
18252
|
-
action_attempt_id: string;
|
|
18253
|
-
status: 'success';
|
|
18254
|
-
error: null;
|
|
18255
|
-
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
18256
|
-
result: {
|
|
18257
|
-
noise_threshold?: any;
|
|
18258
|
-
};
|
|
18259
|
-
} | {
|
|
18260
|
-
/** The ID of the action attempt. */
|
|
18261
|
-
action_attempt_id: string;
|
|
18262
|
-
status: 'error';
|
|
18263
|
-
result: null;
|
|
18264
|
-
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
17243
|
+
action_type: 'UPDATE_NOISE_THRESHOLD';
|
|
18265
17244
|
error: {
|
|
18266
17245
|
type: string;
|
|
18267
17246
|
message: string;
|
|
@@ -18805,78 +17784,6 @@ export interface Routes {
|
|
|
18805
17784
|
type: string;
|
|
18806
17785
|
message: string;
|
|
18807
17786
|
};
|
|
18808
|
-
} | {
|
|
18809
|
-
/** The ID of the action attempt. */
|
|
18810
|
-
action_attempt_id: string;
|
|
18811
|
-
status: 'pending';
|
|
18812
|
-
result: null;
|
|
18813
|
-
error: null;
|
|
18814
|
-
action_type: 'SET_COOL';
|
|
18815
|
-
} | {
|
|
18816
|
-
/** The ID of the action attempt. */
|
|
18817
|
-
action_attempt_id: string;
|
|
18818
|
-
status: 'success';
|
|
18819
|
-
error: null;
|
|
18820
|
-
action_type: 'SET_COOL';
|
|
18821
|
-
result: {};
|
|
18822
|
-
} | {
|
|
18823
|
-
/** The ID of the action attempt. */
|
|
18824
|
-
action_attempt_id: string;
|
|
18825
|
-
status: 'error';
|
|
18826
|
-
result: null;
|
|
18827
|
-
action_type: 'SET_COOL';
|
|
18828
|
-
error: {
|
|
18829
|
-
type: string;
|
|
18830
|
-
message: string;
|
|
18831
|
-
};
|
|
18832
|
-
} | {
|
|
18833
|
-
/** The ID of the action attempt. */
|
|
18834
|
-
action_attempt_id: string;
|
|
18835
|
-
status: 'pending';
|
|
18836
|
-
result: null;
|
|
18837
|
-
error: null;
|
|
18838
|
-
action_type: 'SET_HEAT';
|
|
18839
|
-
} | {
|
|
18840
|
-
/** The ID of the action attempt. */
|
|
18841
|
-
action_attempt_id: string;
|
|
18842
|
-
status: 'success';
|
|
18843
|
-
error: null;
|
|
18844
|
-
action_type: 'SET_HEAT';
|
|
18845
|
-
result: {};
|
|
18846
|
-
} | {
|
|
18847
|
-
/** The ID of the action attempt. */
|
|
18848
|
-
action_attempt_id: string;
|
|
18849
|
-
status: 'error';
|
|
18850
|
-
result: null;
|
|
18851
|
-
action_type: 'SET_HEAT';
|
|
18852
|
-
error: {
|
|
18853
|
-
type: string;
|
|
18854
|
-
message: string;
|
|
18855
|
-
};
|
|
18856
|
-
} | {
|
|
18857
|
-
/** The ID of the action attempt. */
|
|
18858
|
-
action_attempt_id: string;
|
|
18859
|
-
status: 'pending';
|
|
18860
|
-
result: null;
|
|
18861
|
-
error: null;
|
|
18862
|
-
action_type: 'SET_HEAT_COOL';
|
|
18863
|
-
} | {
|
|
18864
|
-
/** The ID of the action attempt. */
|
|
18865
|
-
action_attempt_id: string;
|
|
18866
|
-
status: 'success';
|
|
18867
|
-
error: null;
|
|
18868
|
-
action_type: 'SET_HEAT_COOL';
|
|
18869
|
-
result: {};
|
|
18870
|
-
} | {
|
|
18871
|
-
/** The ID of the action attempt. */
|
|
18872
|
-
action_attempt_id: string;
|
|
18873
|
-
status: 'error';
|
|
18874
|
-
result: null;
|
|
18875
|
-
action_type: 'SET_HEAT_COOL';
|
|
18876
|
-
error: {
|
|
18877
|
-
type: string;
|
|
18878
|
-
message: string;
|
|
18879
|
-
};
|
|
18880
17787
|
} | {
|
|
18881
17788
|
/** The ID of the action attempt. */
|
|
18882
17789
|
action_attempt_id: string;
|
|
@@ -18901,30 +17808,6 @@ export interface Routes {
|
|
|
18901
17808
|
type: string;
|
|
18902
17809
|
message: string;
|
|
18903
17810
|
};
|
|
18904
|
-
} | {
|
|
18905
|
-
/** The ID of the action attempt. */
|
|
18906
|
-
action_attempt_id: string;
|
|
18907
|
-
status: 'pending';
|
|
18908
|
-
result: null;
|
|
18909
|
-
error: null;
|
|
18910
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
18911
|
-
} | {
|
|
18912
|
-
/** The ID of the action attempt. */
|
|
18913
|
-
action_attempt_id: string;
|
|
18914
|
-
status: 'success';
|
|
18915
|
-
error: null;
|
|
18916
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
18917
|
-
result: {};
|
|
18918
|
-
} | {
|
|
18919
|
-
/** The ID of the action attempt. */
|
|
18920
|
-
action_attempt_id: string;
|
|
18921
|
-
status: 'error';
|
|
18922
|
-
result: null;
|
|
18923
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
18924
|
-
error: {
|
|
18925
|
-
type: string;
|
|
18926
|
-
message: string;
|
|
18927
|
-
};
|
|
18928
17811
|
} | {
|
|
18929
17812
|
/** The ID of the action attempt. */
|
|
18930
17813
|
action_attempt_id: string;
|
|
@@ -19727,78 +18610,6 @@ export interface Routes {
|
|
|
19727
18610
|
type: string;
|
|
19728
18611
|
message: string;
|
|
19729
18612
|
};
|
|
19730
|
-
} | {
|
|
19731
|
-
/** The ID of the action attempt. */
|
|
19732
|
-
action_attempt_id: string;
|
|
19733
|
-
status: 'pending';
|
|
19734
|
-
result: null;
|
|
19735
|
-
error: null;
|
|
19736
|
-
action_type: 'SET_COOL';
|
|
19737
|
-
} | {
|
|
19738
|
-
/** The ID of the action attempt. */
|
|
19739
|
-
action_attempt_id: string;
|
|
19740
|
-
status: 'success';
|
|
19741
|
-
error: null;
|
|
19742
|
-
action_type: 'SET_COOL';
|
|
19743
|
-
result: {};
|
|
19744
|
-
} | {
|
|
19745
|
-
/** The ID of the action attempt. */
|
|
19746
|
-
action_attempt_id: string;
|
|
19747
|
-
status: 'error';
|
|
19748
|
-
result: null;
|
|
19749
|
-
action_type: 'SET_COOL';
|
|
19750
|
-
error: {
|
|
19751
|
-
type: string;
|
|
19752
|
-
message: string;
|
|
19753
|
-
};
|
|
19754
|
-
} | {
|
|
19755
|
-
/** The ID of the action attempt. */
|
|
19756
|
-
action_attempt_id: string;
|
|
19757
|
-
status: 'pending';
|
|
19758
|
-
result: null;
|
|
19759
|
-
error: null;
|
|
19760
|
-
action_type: 'SET_HEAT';
|
|
19761
|
-
} | {
|
|
19762
|
-
/** The ID of the action attempt. */
|
|
19763
|
-
action_attempt_id: string;
|
|
19764
|
-
status: 'success';
|
|
19765
|
-
error: null;
|
|
19766
|
-
action_type: 'SET_HEAT';
|
|
19767
|
-
result: {};
|
|
19768
|
-
} | {
|
|
19769
|
-
/** The ID of the action attempt. */
|
|
19770
|
-
action_attempt_id: string;
|
|
19771
|
-
status: 'error';
|
|
19772
|
-
result: null;
|
|
19773
|
-
action_type: 'SET_HEAT';
|
|
19774
|
-
error: {
|
|
19775
|
-
type: string;
|
|
19776
|
-
message: string;
|
|
19777
|
-
};
|
|
19778
|
-
} | {
|
|
19779
|
-
/** The ID of the action attempt. */
|
|
19780
|
-
action_attempt_id: string;
|
|
19781
|
-
status: 'pending';
|
|
19782
|
-
result: null;
|
|
19783
|
-
error: null;
|
|
19784
|
-
action_type: 'SET_HEAT_COOL';
|
|
19785
|
-
} | {
|
|
19786
|
-
/** The ID of the action attempt. */
|
|
19787
|
-
action_attempt_id: string;
|
|
19788
|
-
status: 'success';
|
|
19789
|
-
error: null;
|
|
19790
|
-
action_type: 'SET_HEAT_COOL';
|
|
19791
|
-
result: {};
|
|
19792
|
-
} | {
|
|
19793
|
-
/** The ID of the action attempt. */
|
|
19794
|
-
action_attempt_id: string;
|
|
19795
|
-
status: 'error';
|
|
19796
|
-
result: null;
|
|
19797
|
-
action_type: 'SET_HEAT_COOL';
|
|
19798
|
-
error: {
|
|
19799
|
-
type: string;
|
|
19800
|
-
message: string;
|
|
19801
|
-
};
|
|
19802
18613
|
} | {
|
|
19803
18614
|
/** The ID of the action attempt. */
|
|
19804
18615
|
action_attempt_id: string;
|
|
@@ -19823,30 +18634,6 @@ export interface Routes {
|
|
|
19823
18634
|
type: string;
|
|
19824
18635
|
message: string;
|
|
19825
18636
|
};
|
|
19826
|
-
} | {
|
|
19827
|
-
/** The ID of the action attempt. */
|
|
19828
|
-
action_attempt_id: string;
|
|
19829
|
-
status: 'pending';
|
|
19830
|
-
result: null;
|
|
19831
|
-
error: null;
|
|
19832
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
19833
|
-
} | {
|
|
19834
|
-
/** The ID of the action attempt. */
|
|
19835
|
-
action_attempt_id: string;
|
|
19836
|
-
status: 'success';
|
|
19837
|
-
error: null;
|
|
19838
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
19839
|
-
result: {};
|
|
19840
|
-
} | {
|
|
19841
|
-
/** The ID of the action attempt. */
|
|
19842
|
-
action_attempt_id: string;
|
|
19843
|
-
status: 'error';
|
|
19844
|
-
result: null;
|
|
19845
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
19846
|
-
error: {
|
|
19847
|
-
type: string;
|
|
19848
|
-
message: string;
|
|
19849
|
-
};
|
|
19850
18637
|
} | {
|
|
19851
18638
|
/** The ID of the action attempt. */
|
|
19852
18639
|
action_attempt_id: string;
|
|
@@ -20784,78 +19571,6 @@ export interface Routes {
|
|
|
20784
19571
|
type: string;
|
|
20785
19572
|
message: string;
|
|
20786
19573
|
};
|
|
20787
|
-
} | {
|
|
20788
|
-
/** The ID of the action attempt. */
|
|
20789
|
-
action_attempt_id: string;
|
|
20790
|
-
status: 'pending';
|
|
20791
|
-
result: null;
|
|
20792
|
-
error: null;
|
|
20793
|
-
action_type: 'SET_COOL';
|
|
20794
|
-
} | {
|
|
20795
|
-
/** The ID of the action attempt. */
|
|
20796
|
-
action_attempt_id: string;
|
|
20797
|
-
status: 'success';
|
|
20798
|
-
error: null;
|
|
20799
|
-
action_type: 'SET_COOL';
|
|
20800
|
-
result: {};
|
|
20801
|
-
} | {
|
|
20802
|
-
/** The ID of the action attempt. */
|
|
20803
|
-
action_attempt_id: string;
|
|
20804
|
-
status: 'error';
|
|
20805
|
-
result: null;
|
|
20806
|
-
action_type: 'SET_COOL';
|
|
20807
|
-
error: {
|
|
20808
|
-
type: string;
|
|
20809
|
-
message: string;
|
|
20810
|
-
};
|
|
20811
|
-
} | {
|
|
20812
|
-
/** The ID of the action attempt. */
|
|
20813
|
-
action_attempt_id: string;
|
|
20814
|
-
status: 'pending';
|
|
20815
|
-
result: null;
|
|
20816
|
-
error: null;
|
|
20817
|
-
action_type: 'SET_HEAT';
|
|
20818
|
-
} | {
|
|
20819
|
-
/** The ID of the action attempt. */
|
|
20820
|
-
action_attempt_id: string;
|
|
20821
|
-
status: 'success';
|
|
20822
|
-
error: null;
|
|
20823
|
-
action_type: 'SET_HEAT';
|
|
20824
|
-
result: {};
|
|
20825
|
-
} | {
|
|
20826
|
-
/** The ID of the action attempt. */
|
|
20827
|
-
action_attempt_id: string;
|
|
20828
|
-
status: 'error';
|
|
20829
|
-
result: null;
|
|
20830
|
-
action_type: 'SET_HEAT';
|
|
20831
|
-
error: {
|
|
20832
|
-
type: string;
|
|
20833
|
-
message: string;
|
|
20834
|
-
};
|
|
20835
|
-
} | {
|
|
20836
|
-
/** The ID of the action attempt. */
|
|
20837
|
-
action_attempt_id: string;
|
|
20838
|
-
status: 'pending';
|
|
20839
|
-
result: null;
|
|
20840
|
-
error: null;
|
|
20841
|
-
action_type: 'SET_HEAT_COOL';
|
|
20842
|
-
} | {
|
|
20843
|
-
/** The ID of the action attempt. */
|
|
20844
|
-
action_attempt_id: string;
|
|
20845
|
-
status: 'success';
|
|
20846
|
-
error: null;
|
|
20847
|
-
action_type: 'SET_HEAT_COOL';
|
|
20848
|
-
result: {};
|
|
20849
|
-
} | {
|
|
20850
|
-
/** The ID of the action attempt. */
|
|
20851
|
-
action_attempt_id: string;
|
|
20852
|
-
status: 'error';
|
|
20853
|
-
result: null;
|
|
20854
|
-
action_type: 'SET_HEAT_COOL';
|
|
20855
|
-
error: {
|
|
20856
|
-
type: string;
|
|
20857
|
-
message: string;
|
|
20858
|
-
};
|
|
20859
19574
|
} | {
|
|
20860
19575
|
/** The ID of the action attempt. */
|
|
20861
19576
|
action_attempt_id: string;
|
|
@@ -20880,30 +19595,6 @@ export interface Routes {
|
|
|
20880
19595
|
type: string;
|
|
20881
19596
|
message: string;
|
|
20882
19597
|
};
|
|
20883
|
-
} | {
|
|
20884
|
-
/** The ID of the action attempt. */
|
|
20885
|
-
action_attempt_id: string;
|
|
20886
|
-
status: 'pending';
|
|
20887
|
-
result: null;
|
|
20888
|
-
error: null;
|
|
20889
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
20890
|
-
} | {
|
|
20891
|
-
/** The ID of the action attempt. */
|
|
20892
|
-
action_attempt_id: string;
|
|
20893
|
-
status: 'success';
|
|
20894
|
-
error: null;
|
|
20895
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
20896
|
-
result: {};
|
|
20897
|
-
} | {
|
|
20898
|
-
/** The ID of the action attempt. */
|
|
20899
|
-
action_attempt_id: string;
|
|
20900
|
-
status: 'error';
|
|
20901
|
-
result: null;
|
|
20902
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
20903
|
-
error: {
|
|
20904
|
-
type: string;
|
|
20905
|
-
message: string;
|
|
20906
|
-
};
|
|
20907
19598
|
} | {
|
|
20908
19599
|
/** The ID of the action attempt. */
|
|
20909
19600
|
action_attempt_id: string;
|
|
@@ -21663,78 +20354,6 @@ export interface Routes {
|
|
|
21663
20354
|
type: string;
|
|
21664
20355
|
message: string;
|
|
21665
20356
|
};
|
|
21666
|
-
} | {
|
|
21667
|
-
/** The ID of the action attempt. */
|
|
21668
|
-
action_attempt_id: string;
|
|
21669
|
-
status: 'pending';
|
|
21670
|
-
result: null;
|
|
21671
|
-
error: null;
|
|
21672
|
-
action_type: 'SET_COOL';
|
|
21673
|
-
} | {
|
|
21674
|
-
/** The ID of the action attempt. */
|
|
21675
|
-
action_attempt_id: string;
|
|
21676
|
-
status: 'success';
|
|
21677
|
-
error: null;
|
|
21678
|
-
action_type: 'SET_COOL';
|
|
21679
|
-
result: {};
|
|
21680
|
-
} | {
|
|
21681
|
-
/** The ID of the action attempt. */
|
|
21682
|
-
action_attempt_id: string;
|
|
21683
|
-
status: 'error';
|
|
21684
|
-
result: null;
|
|
21685
|
-
action_type: 'SET_COOL';
|
|
21686
|
-
error: {
|
|
21687
|
-
type: string;
|
|
21688
|
-
message: string;
|
|
21689
|
-
};
|
|
21690
|
-
} | {
|
|
21691
|
-
/** The ID of the action attempt. */
|
|
21692
|
-
action_attempt_id: string;
|
|
21693
|
-
status: 'pending';
|
|
21694
|
-
result: null;
|
|
21695
|
-
error: null;
|
|
21696
|
-
action_type: 'SET_HEAT';
|
|
21697
|
-
} | {
|
|
21698
|
-
/** The ID of the action attempt. */
|
|
21699
|
-
action_attempt_id: string;
|
|
21700
|
-
status: 'success';
|
|
21701
|
-
error: null;
|
|
21702
|
-
action_type: 'SET_HEAT';
|
|
21703
|
-
result: {};
|
|
21704
|
-
} | {
|
|
21705
|
-
/** The ID of the action attempt. */
|
|
21706
|
-
action_attempt_id: string;
|
|
21707
|
-
status: 'error';
|
|
21708
|
-
result: null;
|
|
21709
|
-
action_type: 'SET_HEAT';
|
|
21710
|
-
error: {
|
|
21711
|
-
type: string;
|
|
21712
|
-
message: string;
|
|
21713
|
-
};
|
|
21714
|
-
} | {
|
|
21715
|
-
/** The ID of the action attempt. */
|
|
21716
|
-
action_attempt_id: string;
|
|
21717
|
-
status: 'pending';
|
|
21718
|
-
result: null;
|
|
21719
|
-
error: null;
|
|
21720
|
-
action_type: 'SET_HEAT_COOL';
|
|
21721
|
-
} | {
|
|
21722
|
-
/** The ID of the action attempt. */
|
|
21723
|
-
action_attempt_id: string;
|
|
21724
|
-
status: 'success';
|
|
21725
|
-
error: null;
|
|
21726
|
-
action_type: 'SET_HEAT_COOL';
|
|
21727
|
-
result: {};
|
|
21728
|
-
} | {
|
|
21729
|
-
/** The ID of the action attempt. */
|
|
21730
|
-
action_attempt_id: string;
|
|
21731
|
-
status: 'error';
|
|
21732
|
-
result: null;
|
|
21733
|
-
action_type: 'SET_HEAT_COOL';
|
|
21734
|
-
error: {
|
|
21735
|
-
type: string;
|
|
21736
|
-
message: string;
|
|
21737
|
-
};
|
|
21738
20357
|
} | {
|
|
21739
20358
|
/** The ID of the action attempt. */
|
|
21740
20359
|
action_attempt_id: string;
|
|
@@ -21759,30 +20378,6 @@ export interface Routes {
|
|
|
21759
20378
|
type: string;
|
|
21760
20379
|
message: string;
|
|
21761
20380
|
};
|
|
21762
|
-
} | {
|
|
21763
|
-
/** The ID of the action attempt. */
|
|
21764
|
-
action_attempt_id: string;
|
|
21765
|
-
status: 'pending';
|
|
21766
|
-
result: null;
|
|
21767
|
-
error: null;
|
|
21768
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
21769
|
-
} | {
|
|
21770
|
-
/** The ID of the action attempt. */
|
|
21771
|
-
action_attempt_id: string;
|
|
21772
|
-
status: 'success';
|
|
21773
|
-
error: null;
|
|
21774
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
21775
|
-
result: {};
|
|
21776
|
-
} | {
|
|
21777
|
-
/** The ID of the action attempt. */
|
|
21778
|
-
action_attempt_id: string;
|
|
21779
|
-
status: 'error';
|
|
21780
|
-
result: null;
|
|
21781
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
21782
|
-
error: {
|
|
21783
|
-
type: string;
|
|
21784
|
-
message: string;
|
|
21785
|
-
};
|
|
21786
20381
|
} | {
|
|
21787
20382
|
/** The ID of the action attempt. */
|
|
21788
20383
|
action_attempt_id: string;
|
|
@@ -23117,78 +21712,6 @@ export interface Routes {
|
|
|
23117
21712
|
type: string;
|
|
23118
21713
|
message: string;
|
|
23119
21714
|
};
|
|
23120
|
-
} | {
|
|
23121
|
-
/** The ID of the action attempt. */
|
|
23122
|
-
action_attempt_id: string;
|
|
23123
|
-
status: 'pending';
|
|
23124
|
-
result: null;
|
|
23125
|
-
error: null;
|
|
23126
|
-
action_type: 'SET_COOL';
|
|
23127
|
-
} | {
|
|
23128
|
-
/** The ID of the action attempt. */
|
|
23129
|
-
action_attempt_id: string;
|
|
23130
|
-
status: 'success';
|
|
23131
|
-
error: null;
|
|
23132
|
-
action_type: 'SET_COOL';
|
|
23133
|
-
result: {};
|
|
23134
|
-
} | {
|
|
23135
|
-
/** The ID of the action attempt. */
|
|
23136
|
-
action_attempt_id: string;
|
|
23137
|
-
status: 'error';
|
|
23138
|
-
result: null;
|
|
23139
|
-
action_type: 'SET_COOL';
|
|
23140
|
-
error: {
|
|
23141
|
-
type: string;
|
|
23142
|
-
message: string;
|
|
23143
|
-
};
|
|
23144
|
-
} | {
|
|
23145
|
-
/** The ID of the action attempt. */
|
|
23146
|
-
action_attempt_id: string;
|
|
23147
|
-
status: 'pending';
|
|
23148
|
-
result: null;
|
|
23149
|
-
error: null;
|
|
23150
|
-
action_type: 'SET_HEAT';
|
|
23151
|
-
} | {
|
|
23152
|
-
/** The ID of the action attempt. */
|
|
23153
|
-
action_attempt_id: string;
|
|
23154
|
-
status: 'success';
|
|
23155
|
-
error: null;
|
|
23156
|
-
action_type: 'SET_HEAT';
|
|
23157
|
-
result: {};
|
|
23158
|
-
} | {
|
|
23159
|
-
/** The ID of the action attempt. */
|
|
23160
|
-
action_attempt_id: string;
|
|
23161
|
-
status: 'error';
|
|
23162
|
-
result: null;
|
|
23163
|
-
action_type: 'SET_HEAT';
|
|
23164
|
-
error: {
|
|
23165
|
-
type: string;
|
|
23166
|
-
message: string;
|
|
23167
|
-
};
|
|
23168
|
-
} | {
|
|
23169
|
-
/** The ID of the action attempt. */
|
|
23170
|
-
action_attempt_id: string;
|
|
23171
|
-
status: 'pending';
|
|
23172
|
-
result: null;
|
|
23173
|
-
error: null;
|
|
23174
|
-
action_type: 'SET_HEAT_COOL';
|
|
23175
|
-
} | {
|
|
23176
|
-
/** The ID of the action attempt. */
|
|
23177
|
-
action_attempt_id: string;
|
|
23178
|
-
status: 'success';
|
|
23179
|
-
error: null;
|
|
23180
|
-
action_type: 'SET_HEAT_COOL';
|
|
23181
|
-
result: {};
|
|
23182
|
-
} | {
|
|
23183
|
-
/** The ID of the action attempt. */
|
|
23184
|
-
action_attempt_id: string;
|
|
23185
|
-
status: 'error';
|
|
23186
|
-
result: null;
|
|
23187
|
-
action_type: 'SET_HEAT_COOL';
|
|
23188
|
-
error: {
|
|
23189
|
-
type: string;
|
|
23190
|
-
message: string;
|
|
23191
|
-
};
|
|
23192
21715
|
} | {
|
|
23193
21716
|
/** The ID of the action attempt. */
|
|
23194
21717
|
action_attempt_id: string;
|
|
@@ -23213,30 +21736,6 @@ export interface Routes {
|
|
|
23213
21736
|
type: string;
|
|
23214
21737
|
message: string;
|
|
23215
21738
|
};
|
|
23216
|
-
} | {
|
|
23217
|
-
/** The ID of the action attempt. */
|
|
23218
|
-
action_attempt_id: string;
|
|
23219
|
-
status: 'pending';
|
|
23220
|
-
result: null;
|
|
23221
|
-
error: null;
|
|
23222
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
23223
|
-
} | {
|
|
23224
|
-
/** The ID of the action attempt. */
|
|
23225
|
-
action_attempt_id: string;
|
|
23226
|
-
status: 'success';
|
|
23227
|
-
error: null;
|
|
23228
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
23229
|
-
result: {};
|
|
23230
|
-
} | {
|
|
23231
|
-
/** The ID of the action attempt. */
|
|
23232
|
-
action_attempt_id: string;
|
|
23233
|
-
status: 'error';
|
|
23234
|
-
result: null;
|
|
23235
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
23236
|
-
error: {
|
|
23237
|
-
type: string;
|
|
23238
|
-
message: string;
|
|
23239
|
-
};
|
|
23240
21739
|
} | {
|
|
23241
21740
|
/** The ID of the action attempt. */
|
|
23242
21741
|
action_attempt_id: string;
|
|
@@ -24000,78 +22499,6 @@ export interface Routes {
|
|
|
24000
22499
|
type: string;
|
|
24001
22500
|
message: string;
|
|
24002
22501
|
};
|
|
24003
|
-
} | {
|
|
24004
|
-
/** The ID of the action attempt. */
|
|
24005
|
-
action_attempt_id: string;
|
|
24006
|
-
status: 'pending';
|
|
24007
|
-
result: null;
|
|
24008
|
-
error: null;
|
|
24009
|
-
action_type: 'SET_COOL';
|
|
24010
|
-
} | {
|
|
24011
|
-
/** The ID of the action attempt. */
|
|
24012
|
-
action_attempt_id: string;
|
|
24013
|
-
status: 'success';
|
|
24014
|
-
error: null;
|
|
24015
|
-
action_type: 'SET_COOL';
|
|
24016
|
-
result: {};
|
|
24017
|
-
} | {
|
|
24018
|
-
/** The ID of the action attempt. */
|
|
24019
|
-
action_attempt_id: string;
|
|
24020
|
-
status: 'error';
|
|
24021
|
-
result: null;
|
|
24022
|
-
action_type: 'SET_COOL';
|
|
24023
|
-
error: {
|
|
24024
|
-
type: string;
|
|
24025
|
-
message: string;
|
|
24026
|
-
};
|
|
24027
|
-
} | {
|
|
24028
|
-
/** The ID of the action attempt. */
|
|
24029
|
-
action_attempt_id: string;
|
|
24030
|
-
status: 'pending';
|
|
24031
|
-
result: null;
|
|
24032
|
-
error: null;
|
|
24033
|
-
action_type: 'SET_HEAT';
|
|
24034
|
-
} | {
|
|
24035
|
-
/** The ID of the action attempt. */
|
|
24036
|
-
action_attempt_id: string;
|
|
24037
|
-
status: 'success';
|
|
24038
|
-
error: null;
|
|
24039
|
-
action_type: 'SET_HEAT';
|
|
24040
|
-
result: {};
|
|
24041
|
-
} | {
|
|
24042
|
-
/** The ID of the action attempt. */
|
|
24043
|
-
action_attempt_id: string;
|
|
24044
|
-
status: 'error';
|
|
24045
|
-
result: null;
|
|
24046
|
-
action_type: 'SET_HEAT';
|
|
24047
|
-
error: {
|
|
24048
|
-
type: string;
|
|
24049
|
-
message: string;
|
|
24050
|
-
};
|
|
24051
|
-
} | {
|
|
24052
|
-
/** The ID of the action attempt. */
|
|
24053
|
-
action_attempt_id: string;
|
|
24054
|
-
status: 'pending';
|
|
24055
|
-
result: null;
|
|
24056
|
-
error: null;
|
|
24057
|
-
action_type: 'SET_HEAT_COOL';
|
|
24058
|
-
} | {
|
|
24059
|
-
/** The ID of the action attempt. */
|
|
24060
|
-
action_attempt_id: string;
|
|
24061
|
-
status: 'success';
|
|
24062
|
-
error: null;
|
|
24063
|
-
action_type: 'SET_HEAT_COOL';
|
|
24064
|
-
result: {};
|
|
24065
|
-
} | {
|
|
24066
|
-
/** The ID of the action attempt. */
|
|
24067
|
-
action_attempt_id: string;
|
|
24068
|
-
status: 'error';
|
|
24069
|
-
result: null;
|
|
24070
|
-
action_type: 'SET_HEAT_COOL';
|
|
24071
|
-
error: {
|
|
24072
|
-
type: string;
|
|
24073
|
-
message: string;
|
|
24074
|
-
};
|
|
24075
22502
|
} | {
|
|
24076
22503
|
/** The ID of the action attempt. */
|
|
24077
22504
|
action_attempt_id: string;
|
|
@@ -24096,30 +22523,6 @@ export interface Routes {
|
|
|
24096
22523
|
type: string;
|
|
24097
22524
|
message: string;
|
|
24098
22525
|
};
|
|
24099
|
-
} | {
|
|
24100
|
-
/** The ID of the action attempt. */
|
|
24101
|
-
action_attempt_id: string;
|
|
24102
|
-
status: 'pending';
|
|
24103
|
-
result: null;
|
|
24104
|
-
error: null;
|
|
24105
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
24106
|
-
} | {
|
|
24107
|
-
/** The ID of the action attempt. */
|
|
24108
|
-
action_attempt_id: string;
|
|
24109
|
-
status: 'success';
|
|
24110
|
-
error: null;
|
|
24111
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
24112
|
-
result: {};
|
|
24113
|
-
} | {
|
|
24114
|
-
/** The ID of the action attempt. */
|
|
24115
|
-
action_attempt_id: string;
|
|
24116
|
-
status: 'error';
|
|
24117
|
-
result: null;
|
|
24118
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
24119
|
-
error: {
|
|
24120
|
-
type: string;
|
|
24121
|
-
message: string;
|
|
24122
|
-
};
|
|
24123
22526
|
} | {
|
|
24124
22527
|
/** The ID of the action attempt. */
|
|
24125
22528
|
action_attempt_id: string;
|
|
@@ -25941,103 +24344,7 @@ export interface Routes {
|
|
|
25941
24344
|
action_attempt_id: string;
|
|
25942
24345
|
status: 'error';
|
|
25943
24346
|
result: null;
|
|
25944
|
-
action_type: 'RESET_SANDBOX_WORKSPACE';
|
|
25945
|
-
error: {
|
|
25946
|
-
type: string;
|
|
25947
|
-
message: string;
|
|
25948
|
-
};
|
|
25949
|
-
} | {
|
|
25950
|
-
/** The ID of the action attempt. */
|
|
25951
|
-
action_attempt_id: string;
|
|
25952
|
-
status: 'pending';
|
|
25953
|
-
result: null;
|
|
25954
|
-
error: null;
|
|
25955
|
-
action_type: 'SET_COOL';
|
|
25956
|
-
} | {
|
|
25957
|
-
/** The ID of the action attempt. */
|
|
25958
|
-
action_attempt_id: string;
|
|
25959
|
-
status: 'success';
|
|
25960
|
-
error: null;
|
|
25961
|
-
action_type: 'SET_COOL';
|
|
25962
|
-
result: {};
|
|
25963
|
-
} | {
|
|
25964
|
-
/** The ID of the action attempt. */
|
|
25965
|
-
action_attempt_id: string;
|
|
25966
|
-
status: 'error';
|
|
25967
|
-
result: null;
|
|
25968
|
-
action_type: 'SET_COOL';
|
|
25969
|
-
error: {
|
|
25970
|
-
type: string;
|
|
25971
|
-
message: string;
|
|
25972
|
-
};
|
|
25973
|
-
} | {
|
|
25974
|
-
/** The ID of the action attempt. */
|
|
25975
|
-
action_attempt_id: string;
|
|
25976
|
-
status: 'pending';
|
|
25977
|
-
result: null;
|
|
25978
|
-
error: null;
|
|
25979
|
-
action_type: 'SET_HEAT';
|
|
25980
|
-
} | {
|
|
25981
|
-
/** The ID of the action attempt. */
|
|
25982
|
-
action_attempt_id: string;
|
|
25983
|
-
status: 'success';
|
|
25984
|
-
error: null;
|
|
25985
|
-
action_type: 'SET_HEAT';
|
|
25986
|
-
result: {};
|
|
25987
|
-
} | {
|
|
25988
|
-
/** The ID of the action attempt. */
|
|
25989
|
-
action_attempt_id: string;
|
|
25990
|
-
status: 'error';
|
|
25991
|
-
result: null;
|
|
25992
|
-
action_type: 'SET_HEAT';
|
|
25993
|
-
error: {
|
|
25994
|
-
type: string;
|
|
25995
|
-
message: string;
|
|
25996
|
-
};
|
|
25997
|
-
} | {
|
|
25998
|
-
/** The ID of the action attempt. */
|
|
25999
|
-
action_attempt_id: string;
|
|
26000
|
-
status: 'pending';
|
|
26001
|
-
result: null;
|
|
26002
|
-
error: null;
|
|
26003
|
-
action_type: 'SET_HEAT_COOL';
|
|
26004
|
-
} | {
|
|
26005
|
-
/** The ID of the action attempt. */
|
|
26006
|
-
action_attempt_id: string;
|
|
26007
|
-
status: 'success';
|
|
26008
|
-
error: null;
|
|
26009
|
-
action_type: 'SET_HEAT_COOL';
|
|
26010
|
-
result: {};
|
|
26011
|
-
} | {
|
|
26012
|
-
/** The ID of the action attempt. */
|
|
26013
|
-
action_attempt_id: string;
|
|
26014
|
-
status: 'error';
|
|
26015
|
-
result: null;
|
|
26016
|
-
action_type: 'SET_HEAT_COOL';
|
|
26017
|
-
error: {
|
|
26018
|
-
type: string;
|
|
26019
|
-
message: string;
|
|
26020
|
-
};
|
|
26021
|
-
} | {
|
|
26022
|
-
/** The ID of the action attempt. */
|
|
26023
|
-
action_attempt_id: string;
|
|
26024
|
-
status: 'pending';
|
|
26025
|
-
result: null;
|
|
26026
|
-
error: null;
|
|
26027
|
-
action_type: 'SET_FAN_MODE';
|
|
26028
|
-
} | {
|
|
26029
|
-
/** The ID of the action attempt. */
|
|
26030
|
-
action_attempt_id: string;
|
|
26031
|
-
status: 'success';
|
|
26032
|
-
error: null;
|
|
26033
|
-
action_type: 'SET_FAN_MODE';
|
|
26034
|
-
result: {};
|
|
26035
|
-
} | {
|
|
26036
|
-
/** The ID of the action attempt. */
|
|
26037
|
-
action_attempt_id: string;
|
|
26038
|
-
status: 'error';
|
|
26039
|
-
result: null;
|
|
26040
|
-
action_type: 'SET_FAN_MODE';
|
|
24347
|
+
action_type: 'RESET_SANDBOX_WORKSPACE';
|
|
26041
24348
|
error: {
|
|
26042
24349
|
type: string;
|
|
26043
24350
|
message: string;
|
|
@@ -26048,20 +24355,20 @@ export interface Routes {
|
|
|
26048
24355
|
status: 'pending';
|
|
26049
24356
|
result: null;
|
|
26050
24357
|
error: null;
|
|
26051
|
-
action_type: '
|
|
24358
|
+
action_type: 'SET_FAN_MODE';
|
|
26052
24359
|
} | {
|
|
26053
24360
|
/** The ID of the action attempt. */
|
|
26054
24361
|
action_attempt_id: string;
|
|
26055
24362
|
status: 'success';
|
|
26056
24363
|
error: null;
|
|
26057
|
-
action_type: '
|
|
24364
|
+
action_type: 'SET_FAN_MODE';
|
|
26058
24365
|
result: {};
|
|
26059
24366
|
} | {
|
|
26060
24367
|
/** The ID of the action attempt. */
|
|
26061
24368
|
action_attempt_id: string;
|
|
26062
24369
|
status: 'error';
|
|
26063
24370
|
result: null;
|
|
26064
|
-
action_type: '
|
|
24371
|
+
action_type: 'SET_FAN_MODE';
|
|
26065
24372
|
error: {
|
|
26066
24373
|
type: string;
|
|
26067
24374
|
message: string;
|
|
@@ -26994,78 +25301,6 @@ export interface Routes {
|
|
|
26994
25301
|
type: string;
|
|
26995
25302
|
message: string;
|
|
26996
25303
|
};
|
|
26997
|
-
} | {
|
|
26998
|
-
/** The ID of the action attempt. */
|
|
26999
|
-
action_attempt_id: string;
|
|
27000
|
-
status: 'pending';
|
|
27001
|
-
result: null;
|
|
27002
|
-
error: null;
|
|
27003
|
-
action_type: 'SET_COOL';
|
|
27004
|
-
} | {
|
|
27005
|
-
/** The ID of the action attempt. */
|
|
27006
|
-
action_attempt_id: string;
|
|
27007
|
-
status: 'success';
|
|
27008
|
-
error: null;
|
|
27009
|
-
action_type: 'SET_COOL';
|
|
27010
|
-
result: {};
|
|
27011
|
-
} | {
|
|
27012
|
-
/** The ID of the action attempt. */
|
|
27013
|
-
action_attempt_id: string;
|
|
27014
|
-
status: 'error';
|
|
27015
|
-
result: null;
|
|
27016
|
-
action_type: 'SET_COOL';
|
|
27017
|
-
error: {
|
|
27018
|
-
type: string;
|
|
27019
|
-
message: string;
|
|
27020
|
-
};
|
|
27021
|
-
} | {
|
|
27022
|
-
/** The ID of the action attempt. */
|
|
27023
|
-
action_attempt_id: string;
|
|
27024
|
-
status: 'pending';
|
|
27025
|
-
result: null;
|
|
27026
|
-
error: null;
|
|
27027
|
-
action_type: 'SET_HEAT';
|
|
27028
|
-
} | {
|
|
27029
|
-
/** The ID of the action attempt. */
|
|
27030
|
-
action_attempt_id: string;
|
|
27031
|
-
status: 'success';
|
|
27032
|
-
error: null;
|
|
27033
|
-
action_type: 'SET_HEAT';
|
|
27034
|
-
result: {};
|
|
27035
|
-
} | {
|
|
27036
|
-
/** The ID of the action attempt. */
|
|
27037
|
-
action_attempt_id: string;
|
|
27038
|
-
status: 'error';
|
|
27039
|
-
result: null;
|
|
27040
|
-
action_type: 'SET_HEAT';
|
|
27041
|
-
error: {
|
|
27042
|
-
type: string;
|
|
27043
|
-
message: string;
|
|
27044
|
-
};
|
|
27045
|
-
} | {
|
|
27046
|
-
/** The ID of the action attempt. */
|
|
27047
|
-
action_attempt_id: string;
|
|
27048
|
-
status: 'pending';
|
|
27049
|
-
result: null;
|
|
27050
|
-
error: null;
|
|
27051
|
-
action_type: 'SET_HEAT_COOL';
|
|
27052
|
-
} | {
|
|
27053
|
-
/** The ID of the action attempt. */
|
|
27054
|
-
action_attempt_id: string;
|
|
27055
|
-
status: 'success';
|
|
27056
|
-
error: null;
|
|
27057
|
-
action_type: 'SET_HEAT_COOL';
|
|
27058
|
-
result: {};
|
|
27059
|
-
} | {
|
|
27060
|
-
/** The ID of the action attempt. */
|
|
27061
|
-
action_attempt_id: string;
|
|
27062
|
-
status: 'error';
|
|
27063
|
-
result: null;
|
|
27064
|
-
action_type: 'SET_HEAT_COOL';
|
|
27065
|
-
error: {
|
|
27066
|
-
type: string;
|
|
27067
|
-
message: string;
|
|
27068
|
-
};
|
|
27069
25304
|
} | {
|
|
27070
25305
|
/** The ID of the action attempt. */
|
|
27071
25306
|
action_attempt_id: string;
|
|
@@ -27090,30 +25325,6 @@ export interface Routes {
|
|
|
27090
25325
|
type: string;
|
|
27091
25326
|
message: string;
|
|
27092
25327
|
};
|
|
27093
|
-
} | {
|
|
27094
|
-
/** The ID of the action attempt. */
|
|
27095
|
-
action_attempt_id: string;
|
|
27096
|
-
status: 'pending';
|
|
27097
|
-
result: null;
|
|
27098
|
-
error: null;
|
|
27099
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
27100
|
-
} | {
|
|
27101
|
-
/** The ID of the action attempt. */
|
|
27102
|
-
action_attempt_id: string;
|
|
27103
|
-
status: 'success';
|
|
27104
|
-
error: null;
|
|
27105
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
27106
|
-
result: {};
|
|
27107
|
-
} | {
|
|
27108
|
-
/** The ID of the action attempt. */
|
|
27109
|
-
action_attempt_id: string;
|
|
27110
|
-
status: 'error';
|
|
27111
|
-
result: null;
|
|
27112
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
27113
|
-
error: {
|
|
27114
|
-
type: string;
|
|
27115
|
-
message: string;
|
|
27116
|
-
};
|
|
27117
25328
|
} | {
|
|
27118
25329
|
/** The ID of the action attempt. */
|
|
27119
25330
|
action_attempt_id: string;
|
|
@@ -27896,78 +26107,6 @@ export interface Routes {
|
|
|
27896
26107
|
type: string;
|
|
27897
26108
|
message: string;
|
|
27898
26109
|
};
|
|
27899
|
-
} | {
|
|
27900
|
-
/** The ID of the action attempt. */
|
|
27901
|
-
action_attempt_id: string;
|
|
27902
|
-
status: 'pending';
|
|
27903
|
-
result: null;
|
|
27904
|
-
error: null;
|
|
27905
|
-
action_type: 'SET_COOL';
|
|
27906
|
-
} | {
|
|
27907
|
-
/** The ID of the action attempt. */
|
|
27908
|
-
action_attempt_id: string;
|
|
27909
|
-
status: 'success';
|
|
27910
|
-
error: null;
|
|
27911
|
-
action_type: 'SET_COOL';
|
|
27912
|
-
result: {};
|
|
27913
|
-
} | {
|
|
27914
|
-
/** The ID of the action attempt. */
|
|
27915
|
-
action_attempt_id: string;
|
|
27916
|
-
status: 'error';
|
|
27917
|
-
result: null;
|
|
27918
|
-
action_type: 'SET_COOL';
|
|
27919
|
-
error: {
|
|
27920
|
-
type: string;
|
|
27921
|
-
message: string;
|
|
27922
|
-
};
|
|
27923
|
-
} | {
|
|
27924
|
-
/** The ID of the action attempt. */
|
|
27925
|
-
action_attempt_id: string;
|
|
27926
|
-
status: 'pending';
|
|
27927
|
-
result: null;
|
|
27928
|
-
error: null;
|
|
27929
|
-
action_type: 'SET_HEAT';
|
|
27930
|
-
} | {
|
|
27931
|
-
/** The ID of the action attempt. */
|
|
27932
|
-
action_attempt_id: string;
|
|
27933
|
-
status: 'success';
|
|
27934
|
-
error: null;
|
|
27935
|
-
action_type: 'SET_HEAT';
|
|
27936
|
-
result: {};
|
|
27937
|
-
} | {
|
|
27938
|
-
/** The ID of the action attempt. */
|
|
27939
|
-
action_attempt_id: string;
|
|
27940
|
-
status: 'error';
|
|
27941
|
-
result: null;
|
|
27942
|
-
action_type: 'SET_HEAT';
|
|
27943
|
-
error: {
|
|
27944
|
-
type: string;
|
|
27945
|
-
message: string;
|
|
27946
|
-
};
|
|
27947
|
-
} | {
|
|
27948
|
-
/** The ID of the action attempt. */
|
|
27949
|
-
action_attempt_id: string;
|
|
27950
|
-
status: 'pending';
|
|
27951
|
-
result: null;
|
|
27952
|
-
error: null;
|
|
27953
|
-
action_type: 'SET_HEAT_COOL';
|
|
27954
|
-
} | {
|
|
27955
|
-
/** The ID of the action attempt. */
|
|
27956
|
-
action_attempt_id: string;
|
|
27957
|
-
status: 'success';
|
|
27958
|
-
error: null;
|
|
27959
|
-
action_type: 'SET_HEAT_COOL';
|
|
27960
|
-
result: {};
|
|
27961
|
-
} | {
|
|
27962
|
-
/** The ID of the action attempt. */
|
|
27963
|
-
action_attempt_id: string;
|
|
27964
|
-
status: 'error';
|
|
27965
|
-
result: null;
|
|
27966
|
-
action_type: 'SET_HEAT_COOL';
|
|
27967
|
-
error: {
|
|
27968
|
-
type: string;
|
|
27969
|
-
message: string;
|
|
27970
|
-
};
|
|
27971
26110
|
} | {
|
|
27972
26111
|
/** The ID of the action attempt. */
|
|
27973
26112
|
action_attempt_id: string;
|
|
@@ -27992,30 +26131,6 @@ export interface Routes {
|
|
|
27992
26131
|
type: string;
|
|
27993
26132
|
message: string;
|
|
27994
26133
|
};
|
|
27995
|
-
} | {
|
|
27996
|
-
/** The ID of the action attempt. */
|
|
27997
|
-
action_attempt_id: string;
|
|
27998
|
-
status: 'pending';
|
|
27999
|
-
result: null;
|
|
28000
|
-
error: null;
|
|
28001
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
28002
|
-
} | {
|
|
28003
|
-
/** The ID of the action attempt. */
|
|
28004
|
-
action_attempt_id: string;
|
|
28005
|
-
status: 'success';
|
|
28006
|
-
error: null;
|
|
28007
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
28008
|
-
result: {};
|
|
28009
|
-
} | {
|
|
28010
|
-
/** The ID of the action attempt. */
|
|
28011
|
-
action_attempt_id: string;
|
|
28012
|
-
status: 'error';
|
|
28013
|
-
result: null;
|
|
28014
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
28015
|
-
error: {
|
|
28016
|
-
type: string;
|
|
28017
|
-
message: string;
|
|
28018
|
-
};
|
|
28019
26134
|
} | {
|
|
28020
26135
|
/** The ID of the action attempt. */
|
|
28021
26136
|
action_attempt_id: string;
|
|
@@ -30510,78 +28625,6 @@ export interface Routes {
|
|
|
30510
28625
|
type: string;
|
|
30511
28626
|
message: string;
|
|
30512
28627
|
};
|
|
30513
|
-
} | {
|
|
30514
|
-
/** The ID of the action attempt. */
|
|
30515
|
-
action_attempt_id: string;
|
|
30516
|
-
status: 'pending';
|
|
30517
|
-
result: null;
|
|
30518
|
-
error: null;
|
|
30519
|
-
action_type: 'SET_COOL';
|
|
30520
|
-
} | {
|
|
30521
|
-
/** The ID of the action attempt. */
|
|
30522
|
-
action_attempt_id: string;
|
|
30523
|
-
status: 'success';
|
|
30524
|
-
error: null;
|
|
30525
|
-
action_type: 'SET_COOL';
|
|
30526
|
-
result: {};
|
|
30527
|
-
} | {
|
|
30528
|
-
/** The ID of the action attempt. */
|
|
30529
|
-
action_attempt_id: string;
|
|
30530
|
-
status: 'error';
|
|
30531
|
-
result: null;
|
|
30532
|
-
action_type: 'SET_COOL';
|
|
30533
|
-
error: {
|
|
30534
|
-
type: string;
|
|
30535
|
-
message: string;
|
|
30536
|
-
};
|
|
30537
|
-
} | {
|
|
30538
|
-
/** The ID of the action attempt. */
|
|
30539
|
-
action_attempt_id: string;
|
|
30540
|
-
status: 'pending';
|
|
30541
|
-
result: null;
|
|
30542
|
-
error: null;
|
|
30543
|
-
action_type: 'SET_HEAT';
|
|
30544
|
-
} | {
|
|
30545
|
-
/** The ID of the action attempt. */
|
|
30546
|
-
action_attempt_id: string;
|
|
30547
|
-
status: 'success';
|
|
30548
|
-
error: null;
|
|
30549
|
-
action_type: 'SET_HEAT';
|
|
30550
|
-
result: {};
|
|
30551
|
-
} | {
|
|
30552
|
-
/** The ID of the action attempt. */
|
|
30553
|
-
action_attempt_id: string;
|
|
30554
|
-
status: 'error';
|
|
30555
|
-
result: null;
|
|
30556
|
-
action_type: 'SET_HEAT';
|
|
30557
|
-
error: {
|
|
30558
|
-
type: string;
|
|
30559
|
-
message: string;
|
|
30560
|
-
};
|
|
30561
|
-
} | {
|
|
30562
|
-
/** The ID of the action attempt. */
|
|
30563
|
-
action_attempt_id: string;
|
|
30564
|
-
status: 'pending';
|
|
30565
|
-
result: null;
|
|
30566
|
-
error: null;
|
|
30567
|
-
action_type: 'SET_HEAT_COOL';
|
|
30568
|
-
} | {
|
|
30569
|
-
/** The ID of the action attempt. */
|
|
30570
|
-
action_attempt_id: string;
|
|
30571
|
-
status: 'success';
|
|
30572
|
-
error: null;
|
|
30573
|
-
action_type: 'SET_HEAT_COOL';
|
|
30574
|
-
result: {};
|
|
30575
|
-
} | {
|
|
30576
|
-
/** The ID of the action attempt. */
|
|
30577
|
-
action_attempt_id: string;
|
|
30578
|
-
status: 'error';
|
|
30579
|
-
result: null;
|
|
30580
|
-
action_type: 'SET_HEAT_COOL';
|
|
30581
|
-
error: {
|
|
30582
|
-
type: string;
|
|
30583
|
-
message: string;
|
|
30584
|
-
};
|
|
30585
28628
|
} | {
|
|
30586
28629
|
/** The ID of the action attempt. */
|
|
30587
28630
|
action_attempt_id: string;
|
|
@@ -30606,30 +28649,6 @@ export interface Routes {
|
|
|
30606
28649
|
type: string;
|
|
30607
28650
|
message: string;
|
|
30608
28651
|
};
|
|
30609
|
-
} | {
|
|
30610
|
-
/** The ID of the action attempt. */
|
|
30611
|
-
action_attempt_id: string;
|
|
30612
|
-
status: 'pending';
|
|
30613
|
-
result: null;
|
|
30614
|
-
error: null;
|
|
30615
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
30616
|
-
} | {
|
|
30617
|
-
/** The ID of the action attempt. */
|
|
30618
|
-
action_attempt_id: string;
|
|
30619
|
-
status: 'success';
|
|
30620
|
-
error: null;
|
|
30621
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
30622
|
-
result: {};
|
|
30623
|
-
} | {
|
|
30624
|
-
/** The ID of the action attempt. */
|
|
30625
|
-
action_attempt_id: string;
|
|
30626
|
-
status: 'error';
|
|
30627
|
-
result: null;
|
|
30628
|
-
action_type: 'SET_THERMOSTAT_OFF';
|
|
30629
|
-
error: {
|
|
30630
|
-
type: string;
|
|
30631
|
-
message: string;
|
|
30632
|
-
};
|
|
30633
28652
|
} | {
|
|
30634
28653
|
/** The ID of the action attempt. */
|
|
30635
28654
|
action_attempt_id: string;
|