fix(payments): add missing barrel exports for ConfirmBankTransfer command and DTO

The ConfirmBankTransfer command, handler, result type, and DTO were implemented
but not exported from their respective index files, making them inaccessible
to consumers importing from the barrel.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Ho Ngoc Hai
2026-04-16 04:30:46 +07:00
parent ae52081d7d
commit 93a390efb9
2 changed files with 3 additions and 0 deletions

View File

@@ -8,6 +8,8 @@ export { HandleCallbackCommand } from './commands/handle-callback/handle-callbac
export { HandleCallbackHandler, type HandleCallbackResult } from './commands/handle-callback/handle-callback.handler'; export { HandleCallbackHandler, type HandleCallbackResult } from './commands/handle-callback/handle-callback.handler';
export { HoldEscrowCommand } from './commands/hold-escrow/hold-escrow.command'; export { HoldEscrowCommand } from './commands/hold-escrow/hold-escrow.command';
export { HoldEscrowHandler, type HoldEscrowResult } from './commands/hold-escrow/hold-escrow.handler'; export { HoldEscrowHandler, type HoldEscrowResult } from './commands/hold-escrow/hold-escrow.handler';
export { ConfirmBankTransferCommand } from './commands/confirm-bank-transfer/confirm-bank-transfer.command';
export { ConfirmBankTransferHandler, type ConfirmBankTransferResult } from './commands/confirm-bank-transfer/confirm-bank-transfer.handler';
export { RefundPaymentCommand } from './commands/refund-payment/refund-payment.command'; export { RefundPaymentCommand } from './commands/refund-payment/refund-payment.command';
export { RefundPaymentHandler, type RefundPaymentResult } from './commands/refund-payment/refund-payment.handler'; export { RefundPaymentHandler, type RefundPaymentResult } from './commands/refund-payment/refund-payment.handler';
export { ReleaseEscrowCommand } from './commands/release-escrow/release-escrow.command'; export { ReleaseEscrowCommand } from './commands/release-escrow/release-escrow.command';

View File

@@ -1,4 +1,5 @@
export { CancelOrderDto } from './cancel-order.dto'; export { CancelOrderDto } from './cancel-order.dto';
export { ConfirmBankTransferDto } from './confirm-bank-transfer.dto';
export { CreateOrderDto } from './create-order.dto'; export { CreateOrderDto } from './create-order.dto';
export { CreatePaymentDto } from './create-payment.dto'; export { CreatePaymentDto } from './create-payment.dto';
export { ListTransactionsDto } from './list-transactions.dto'; export { ListTransactionsDto } from './list-transactions.dto';