Merge branch 'freight/develop' into freight/feature/telebirr-integration

This commit is contained in:
Eyosiyas Girma
2026-06-08 16:35:18 +03:00
committed by GitHub
19 changed files with 2444 additions and 636 deletions

View File

@@ -244,6 +244,21 @@ export interface IBooking extends BaseEntity {
latestChangeRequestNote?: string | null;
contractSummary?: string | null;
pricingBreakdown?: PricingBreakdown | null;
}
export interface PricingBreakdownLineItem {
code: string;
amount: number;
currency: string;
description: string;
}
export interface PricingBreakdown {
currency: string;
lineItems: PricingBreakdownLineItem[];
generatedAt: string;
totalAmount: number;
}
export interface IInvoice extends BaseEntity {