Add provisional payout estimates

This commit is contained in:
aecsocket
2026-08-25 15:11:11 +01:00
parent d999624702
commit 8cfd8ee660
19 changed files with 555 additions and 187 deletions
@@ -700,9 +700,12 @@ export namespace Labrinth {
seconds: number
}
export type ProjectRevenueKind = 'estimated' | 'actual'
export type ProjectRevenue = {
user_id?: string
revenue: string
revenue_kind: ProjectRevenueKind
revenue: number
}
export type AffiliateCodeAnalytics = {
@@ -723,7 +726,7 @@ export namespace Labrinth {
}
export type AffiliateCodeRevenue = {
revenue: string
revenue: number
}
}
}