feat(cc-052): add FinancialSignal type
This commit is contained in:
parent
95428fe351
commit
c3c0ce85f1
1 changed files with 19 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue