- Create TASK-2026-01-25-NOTIFICACIONES-COMPLETAS with full CAPVED docs - Update DATABASE_INVENTORY with auth.notifications, auth.user_push_tokens, investment.distribution_history, investment.distribution_runs tables - Update BACKEND_INVENTORY with push-token endpoints, firebase.client, and unit tests - Update FRONTEND_INVENTORY with notification components, store, service - Update MASTER_INVENTORY with updated totals - Update _INDEX.yml with new task entry Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
48 lines
1.7 KiB
Markdown
48 lines
1.7 KiB
Markdown
# 01-CONTEXTO - Phase 1 MVP Implementation
|
|
|
|
## Origen de la Tarea
|
|
|
|
Esta tarea es continuación del plan Phase 1 MVP para el Trading Platform. En la sesión anterior se completaron las tareas 1-9:
|
|
|
|
1. ✅ Account repository para persistencia de inversión
|
|
2. ✅ Transaction repository para persistencia de inversión
|
|
3. ✅ Sessions store para frontend auth
|
|
4. ✅ SessionsList y DeviceCard components
|
|
5. ✅ SecuritySettings page y rutas
|
|
6. ✅ Export service para historial de trading
|
|
7. ✅ Stripe integration service (ya existía)
|
|
8. ✅ Deposit y withdrawal forms
|
|
9. ✅ ExportButton component para trading
|
|
|
|
Quedaban pendientes:
|
|
- **Task 10**: Servicio de notificaciones con delivery
|
|
- **Task 11**: Cron job de distribución de rendimientos
|
|
|
|
## Módulos Afectados
|
|
|
|
| Módulo | ID | Componentes Afectados |
|
|
|--------|----|-----------------------|
|
|
| Auth | OQI-001 | Integración con notificaciones de seguridad |
|
|
| Trading | OQI-003 | Notificaciones de alertas, integración con exports |
|
|
| Investment | OQI-004 | Distribución de rendimientos, notificaciones |
|
|
|
|
## Estado Inicial
|
|
|
|
- WebSocket server existente con soporte para `sendToUser()`
|
|
- Email service existente con nodemailer configurado
|
|
- Alerts service con TODO para integración de notificaciones
|
|
- Productos de inversión (Atlas, Orion, Nova) definidos con tasas de retorno
|
|
|
|
## Objetivos
|
|
|
|
1. Crear servicio unificado de notificaciones multi-canal
|
|
2. Integrar notificaciones con el sistema de alertas existente
|
|
3. Implementar job de distribución diaria de rendimientos
|
|
4. Exponer API REST para gestión de notificaciones
|
|
|
|
## Restricciones
|
|
|
|
- Mantener compatibilidad con WebSocket existente
|
|
- No modificar estructura de base de datos (usar tablas existentes/esperadas)
|
|
- Seguir patrones de código del proyecto
|