feat(cc-052): add FinancialSignal type

This commit is contained in:
admin-valentin 2026-08-01 10:32:06 +00:00
parent 95428fe351
commit c3c0ce85f1

View file

@ -279,3 +279,22 @@ export interface Member {
role: 'owner' | 'admin' | 'member';
createdAt: string;
}
export interface FinancialSignal {
id: string;
tenantId: string | null;
category: string;
region: string;
niche: string | null;
source: string;
indicatorCode: string | null;
title: string;
summary: string;
rawValue: string | null;
changePercent: string | null;
unit: string | null;
severity: string;
publishedAt: string;
expiresAt: string | null;
createdAt: string;
}