Add control entities: box to-do list, skip switch, donate button, subscriptions
The to-do list exists so Home Assistant's own conversation agent can manage the order through HassListAddItem rather than through anything bespoke. Skip is a switch because skipped/not-skipped is state worth reading back; donate is a button because it cannot be undone. Un-skip raises rather than guessing at an endpoint that has never been observed. Fixes subscription parsing, which matched the heading row and so reported zero on an account that has one.
This commit is contained in:
@@ -135,6 +135,10 @@ class AccountSnapshot:
|
||||
# have not reached it, so it is read once and applied to every order.
|
||||
free_delivery_threshold: float | None = None
|
||||
orders: list[DeliveryOrder] = field(default_factory=list)
|
||||
# Populated by the coordinator from separate pages. Typed loosely because
|
||||
# actions.py imports this module, so it cannot be imported back from here.
|
||||
subscriptions: list = field(default_factory=list)
|
||||
vacation_holds: list = field(default_factory=list)
|
||||
|
||||
@property
|
||||
def next_order(self) -> DeliveryOrder | None:
|
||||
|
||||
Reference in New Issue
Block a user