feat: add partner → campaign edges with distinct color to referral network

This commit is contained in:
Fringg
2026-03-20 01:17:01 +03:00
parent 2b43a30ccc
commit 2adb0047dd
7 changed files with 19 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ export interface NetworkCampaignNode {
export interface NetworkEdge {
source: string;
target: string;
type: 'referral' | 'campaign';
type: 'referral' | 'campaign' | 'partner_campaign';
}
export interface NetworkGraphData {