Update types.ts

This commit is contained in:
2025-12-11 22:43:39 +01:00
committed by GitHub
parent 4137e57046
commit ae0b3a227f

View File

@@ -11,6 +11,7 @@ export interface Condo {
iban?: string;
paypalClientId?: string; // PayPal Client ID for receiving payments
defaultMonthlyQuota: number;
dueDay?: number; // Day of month (1-31) when payment is due. Default 10.
image?: string; // Optional placeholder for logo
}
@@ -96,9 +97,9 @@ export interface AppSettings {
export enum PaymentStatus {
PAID = 'PAID',
UNPAID = 'UNPAID', // Past due
UNPAID = 'UNPAID', // Past due (Overdue)
UPCOMING = 'UPCOMING', // Future
PENDING = 'PENDING'
PENDING = 'PENDING' // Due soon (within 10 days window)
}
export interface MonthStatus {