feat: add paused state to config schema, restore it in generated shema.json

This commit is contained in:
Axel-CH
2025-03-22 23:24:39 -04:00
parent 50d60fad89
commit 324aada2bc
2 changed files with 2 additions and 1 deletions

View File

@@ -1032,6 +1032,7 @@
"type": "string",
"enum": [
"running",
"paused",
"stopped"
]
},

View File

@@ -689,7 +689,7 @@ CONF_SCHEMA = {
"initial_state": {
"description": "Initial state of the system.",
"type": "string",
"enum": ["running", "stopped"],
"enum": ["running", "paused", "stopped"],
},
"force_entry_enable": {
"description": "Force enable entry.",