For anyone else who was using HA WebSocket Stripper or some other proxy to limit entities - If you need to export the current list of permitted entities to load into ha-paneld run this from the dev tools console:
Object.keys(document.querySelector("home-assistant").hass.states).sort().forEach(e => console.log(e));
Then it's just a quick cut/paste job and some JSON formatting to create the file to load into ha-paneld.
For anyone else who was using HA WebSocket Stripper or some other proxy to limit entities - If you need to export the current list of permitted entities to load into ha-paneld run this from the dev tools console:
Object.keys(document.querySelector("home-assistant").hass.states).sort().forEach(e => console.log(e));Then it's just a quick cut/paste job and some JSON formatting to create the file to load into ha-paneld.