feat(fase3): add Queue and QuickReply API schemas

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Claude AI
2026-01-29 10:54:26 +00:00
parent aca30d8dc2
commit cb25cf782d
2 changed files with 116 additions and 0 deletions

View File

@@ -15,6 +15,17 @@ from app.schemas.flow import (
FlowResponse,
FlowListResponse,
)
from app.schemas.queue import (
QueueCreate,
QueueUpdate,
QueueAgentAdd,
QueueAgentResponse,
QueueResponse,
QueueDetailResponse,
QuickReplyCreate,
QuickReplyUpdate,
QuickReplyResponse,
)
__all__ = [
"LoginRequest",
@@ -30,4 +41,13 @@ __all__ = [
"FlowUpdate",
"FlowResponse",
"FlowListResponse",
"QueueCreate",
"QueueUpdate",
"QueueAgentAdd",
"QueueAgentResponse",
"QueueResponse",
"QueueDetailResponse",
"QuickReplyCreate",
"QuickReplyUpdate",
"QuickReplyResponse",
]