[SYNC] docs: Update _inheritance.yml with correct version and modules
Some checks are pending
CI / Backend CI (push) Waiting to run
CI / Frontend CI (push) Waiting to run
CI / Security Scan (push) Waiting to run
CI / CI Summary (push) Blocked by required conditions

- Version aligned to 1.2.1 (matching INHERITANCE-MODEL.yml)
- Module list expanded to match erp-core expectations
- Added schema definitions
- Fixed naming: companies→tenants, audit-logs→audit

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Adrian Flores Cortes 2026-01-24 18:23:09 -06:00
parent d3e13e408a
commit e5a6f1300a

View File

@ -9,8 +9,9 @@
# ═══════════════════════════════════════════════════════════════════════════════ # ═══════════════════════════════════════════════════════════════════════════════
tipo: PROVIDER tipo: PROVIDER
version: "1.0.0" version: "1.2.1"
fecha_creacion: "2026-01-24" fecha_creacion: "2026-01-16"
fecha_actualizacion: "2026-01-24"
# ───────────────────────────────────────────────────────────────────────────── # ─────────────────────────────────────────────────────────────────────────────
# HERENCIA # HERENCIA
@ -86,22 +87,41 @@ reglas_propagacion:
modulos_core: modulos_core:
backend: backend:
- auth # Autenticación y autorización - auth # Autenticación JWT + OAuth + MFA
- users # Gestión de usuarios - tenants # Multi-tenancy con RLS (alias: companies)
- companies # Gestión de empresas/tenants - users # Gestión de usuarios y perfiles
- common # Utilidades comunes - billing # Integración Stripe
- config # Configuración centralizada - plans # Planes y límites
- webhooks # Sistema de webhooks con BullMQ
- feature-flags # Feature toggles por tenant/plan
- ai-integration # Multi-LLM (Claude, GPT-4, Gemini)
- whatsapp # WhatsApp Business API
- notifications # Sistema multicanal
- audit # Auditoría completa (alias: audit-logs)
- analytics # Dashboard de métricas
- reports # Exportación PDF/Excel/CSV
- storage # S3, R2, MinIO
- email # SendGrid, SES, SMTP
- oauth # OAuth providers
frontend: frontend:
- auth # Componentes de autenticación - auth # Componentes de autenticación
- layout # Layouts principales - layout # Layouts principales
- common # Componentes comunes - common # Componentes comunes
- hooks # Hooks personalizados - hooks # Hooks personalizados
- dashboard # Dashboard principal
- settings # Configuración
database: database:
- core-schema # Esquema base (users, companies, roles) - public # Esquema principal (RLS enabled)
- audit-schema # Tablas de auditoría - audit # Tablas de auditoría
- config-schema # Configuración de sistema - system # Configuración de sistema
schemas:
prefix: "saas"
lista:
- public # Tablas principales con RLS
- audit # Logs y auditoría
# ───────────────────────────────────────────────────────────────────────────── # ─────────────────────────────────────────────────────────────────────────────
# NOTAS # NOTAS