Add control entities: box to-do list, skip switch, donate button, subscriptions
Validate / hassfest (push) Failing after 6s
Validate / pytest (push) Failing after 8s
Validate / HACS (push) Failing after 1m8s

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:
flan
2026-08-03 20:13:32 +00:00
parent 213c16d98e
commit 551d3240a2
14 changed files with 592 additions and 14 deletions
@@ -57,12 +57,33 @@
},
"shop_window": {
"name": "Shopping window"
},
"subscriptions": {
"name": "Subscriptions"
},
"vacation_holds": {
"name": "Vacation holds"
}
},
"binary_sensor": {
"order_open": {
"name": "Order open"
}
},
"switch": {
"skip_open_order": {
"name": "Skip next order"
}
},
"button": {
"donate_open_order": {
"name": "Donate next order"
}
},
"todo": {
"box": {
"name": "Box"
}
}
}
}