feat: close sessions from history page with inline popover
Add ability to close active sessions directly from the Session History page via an inline popover with outcome selection and optional notes. Adds two new outcomes: cancelled and resolved_externally. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -3,7 +3,7 @@ from typing import Optional, Any, Literal
|
||||
from uuid import UUID
|
||||
from pydantic import BaseModel, Field, validator
|
||||
|
||||
SessionOutcome = Literal["resolved", "escalated", "workaround", "unresolved"]
|
||||
SessionOutcome = Literal["resolved", "escalated", "workaround", "unresolved", "cancelled", "resolved_externally"]
|
||||
|
||||
|
||||
class CustomStepSchema(BaseModel):
|
||||
|
||||
Reference in New Issue
Block a user