Files
accounted/supabase/migrations/20260325120000_event_log.sql
T
Jakob Wennberg f3ae3cd361 feat: event log, pending operations, and MCP staging (#135)
* feat: event log, pending operations, and MCP staging

- Event log system: persist bus events to event_log table for external
  automation platforms. Batch insert for transaction.synced. Daily
  cleanup cron at 02:00 UTC.
- Pending operations: MCP write tools (categorize, create customer,
  create invoice) now stage to pending_operations instead of executing
  directly. Users review and commit/reject from /pending in the web UI.
- Granskning page: card-based review UI with expandable previews,
  commit/reject dialogs. Only shown in nav when pending ops exist.
- Commit route re-executes using core lib functions (no extension
  imports). Guards against stale state (double-commit, deleted entities).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* feat: stage new MCP write tools after main merge

Add staging for 4 new write tools from #133:
- mark_invoice_paid, send_invoice, mark_invoice_sent,
  match_transaction_invoice
- Expand pending_operations CHECK constraint
- Add commit executors with full execution logic
- Add UI labels and generic preview component
- Remove confirm parameter from categorize (single-call staging)
- Fix UUID in pending op title (fetch transaction description)
- Hide Granskning nav when no pending ops

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* fix: address PR review feedback

- Fix TS build error: use `select('*, customer:customers(*)')` for
  match_transaction_invoice to avoid array type inference
- Add status guard to commitSendInvoice (prevents duplicate sends)
- Replace auth.admin.getUserById with user email from session auth
- Restore optimistic lock check in commitMatchTransactionInvoice
- Fix tool description typo: expense_software → expense_office

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 10:07:36 +01:00

42 lines
1.9 KiB
SQL

-- Migration: Event Log
-- Append-only event log for external automation platform integration (n8n, Make, Zapier).
-- Events are ephemeral delivery records with 30-day TTL, NOT compliance audit logs.
-- =============================================================================
-- 1. event_log table
-- =============================================================================
CREATE TABLE public.event_log (
sequence BIGSERIAL PRIMARY KEY,
user_id UUID NOT NULL REFERENCES auth.users(id) ON DELETE CASCADE,
event_type TEXT NOT NULL,
entity_id UUID,
data JSONB NOT NULL DEFAULT '{}',
created_at TIMESTAMPTZ NOT NULL DEFAULT now()
-- No updated_at: append-only ephemeral delivery log
-- No id UUID: sequence is the PK, cursor, and dedup key
);
-- Primary polling query: WHERE user_id = X AND sequence > cursor ORDER BY sequence
CREATE INDEX idx_event_log_user_seq ON public.event_log (user_id, sequence);
-- Retention cleanup: DELETE WHERE created_at < now() - interval '30 days'
CREATE INDEX idx_event_log_created_at ON public.event_log (created_at);
-- =============================================================================
-- 2. RLS
-- =============================================================================
ALTER TABLE public.event_log ENABLE ROW LEVEL SECURITY;
-- Users can read their own events (browser polling)
CREATE POLICY "event_log_select" ON public.event_log
FOR SELECT USING (auth.uid() = user_id);
-- No INSERT/UPDATE/DELETE policies: writes via service role client
-- =============================================================================
-- 3. Immutability (update only — deletes allowed for retention cleanup)
-- =============================================================================
CREATE TRIGGER event_log_no_update
BEFORE UPDATE ON public.event_log
FOR EACH ROW EXECUTE FUNCTION public.audit_log_immutable();