Merge branch 'dev' into freight/develop

This commit is contained in:
Nathnael Wondisha
2026-06-16 16:22:38 +03:00
committed by GitHub
88 changed files with 10850 additions and 1987 deletions

View File

@@ -210,7 +210,7 @@ export class TelebirrProvider implements PaymentProvider {
merch_code: this.merchantCode,
merch_order_id: input.merchantOrderId,
trade_type: "Checkout" as const,
title: `EDR ${input.orderRef}`,
title: `EDR booking payment`,
total_amount: totalAmount,
trans_currency: input.currency,
timeout_express: this.timeoutExpress,

View File

@@ -2,3 +2,5 @@ export * from "./common/index";
export * from "./freight/index";
export * as Freight from "./freight/index";
export * as Passenger from "./passenger/index";
export type { PaymentEvent, PaymentEventType, PaymentFailedEvent, PaymentSucceededEvent } from "./common/payments";
export { PaymentIntentSnapshot, InitiatePaymentRequest, PaymentReferenceType, PaymentService } from "./common/payments";