Add OdooConfig page component with form for Odoo connection settings
(URL, database, username, API key) and test connection functionality.
Integrate into main navigation with ApiOutlined icon.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Replace hardcoded if/elif chain in _execute_node with dynamic node
executor lookup via NodeRegistry. All node executors are registered at
module load time, enabling extensibility without modifying engine code.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add schemas and router for global variables with CRUD operations
and admin-only access controls for create/update/delete.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add TeamOutlined and BarChartOutlined icons
- Import Queues and SupervisorDashboard pages
- Add /queues and /supervisor menu items
- Add routes for Queues and SupervisorDashboard
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add comprehensive agent inbox functionality including:
- Status filter dropdown to filter conversations by bot/waiting/active/resolved
- Priority tags displayed in conversation list for non-normal priorities
- Internal notes feature with visual distinction (orange styling, dashed border)
- Quick replies panel showing shortcut tags with tooltip previews
- Transfer modal for moving conversations to queues or agents
- Transfer to bot action for returning conversations to bot handling
- Resolve conversation action to close conversations
- Helper functions for message styling (background, color, border)
- Refactored render functions for improved code organization
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add FLOW_ENGINE_URL to API Gateway config
- Integrate flow engine in message handler (BOT status only)
- Add /flows routes to MainLayout with FlowList and FlowBuilder
- Add Flujos menu item with ApartmentOutlined icon
This completes Phase 2: Flow Engine Básico
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- alembic.ini with configuration
- alembic/env.py with model imports and connection handling
- alembic/versions/ for migration scripts
This completes Fase 1 Foundation implementation.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
API Gateway:
- main.py with FastAPI app, CORS, health endpoints
- WhatsApp routes: accounts CRUD, conversations, messages, internal events
- WhatsApp schemas for request/response validation
Frontend:
- Login page with register option for first admin
- MainLayout with sidebar navigation and user dropdown
- Dashboard with statistics cards (accounts, conversations)
- WhatsApp Accounts page with QR modal for connection
- Inbox page with conversation list and real-time chat
Full feature set for Fase 1 Foundation complete.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
WhatsApp Core:
- SessionManager with Baileys integration for multi-account support
- Express server with REST API and Socket.IO for real-time events
- Session lifecycle management (create, disconnect, delete)
- Message sending with support for text, image, document, audio, video
API Gateway:
- Database models: User, WhatsAppAccount, Contact, Conversation, Message
- JWT authentication with access/refresh tokens
- Auth endpoints: login, refresh, register, me
- Pydantic schemas for request/response validation
Frontend:
- React 18 app structure with routing
- Zustand auth store with persistence
- API client with automatic token handling
- Base CSS and TypeScript declarations
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Docker Compose configuration
- WhatsApp Core (Node.js + Baileys)
- API Gateway (FastAPI + JWT)
- Frontend (React + Vite + Ant Design)
- Complete code for each task
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>