chore: add palier amende

This commit is contained in:
2026-03-25 11:11:16 +01:00
parent ac5ec11f54
commit 4aa356f9fe
2 changed files with 82 additions and 0 deletions
+6
View File
@@ -747,9 +747,15 @@ export const DEFAULT_DELIVERY_SCHEDULE: DeliverySchedule = {
saturday: { ...DEFAULT_DAY }, sunday: { ...DEFAULT_DAY },
};
export interface PenaltyTier {
min_cancel: number;
amount: number;
}
export interface AppSettings {
penalties_enabled: boolean;
show_amende_score: boolean;
penalty_tiers: PenaltyTier[];
points_enabled: boolean;
points_pools: PointsPool[];
referral_enabled: boolean;