1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Clean up unused partial action response in intent helper (#151908)

This commit is contained in:
Artur Pragacz
2025-09-12 19:21:41 +02:00
committed by GitHub
parent 14ebb6cd74
commit b93072865b

View File

@@ -33,6 +33,7 @@ from . import (
entity_registry,
floor_registry,
)
from .deprecation import EnumWithDeprecatedMembers
from .typing import VolSchemaType
_LOGGER = logging.getLogger(__name__)
@@ -1316,14 +1317,23 @@ class Intent:
return IntentResponse(language=self.language, intent=self)
class IntentResponseType(Enum):
class IntentResponseType(
Enum,
metaclass=EnumWithDeprecatedMembers,
deprecated={
"PARTIAL_ACTION_DONE": (
"IntentResponseType.ACTION_DONE or IntentResponseType.ERROR",
"2026.3.0",
),
},
):
"""Type of the intent response."""
ACTION_DONE = "action_done"
"""Intent caused an action to occur"""
PARTIAL_ACTION_DONE = "partial_action_done"
"""Intent caused an action, but it could only be partially done"""
"""Deprecated. Intent caused an action, but it could only be partially done"""
QUERY_ANSWER = "query_answer"
"""Response is an answer to a query"""