update transaction

This commit is contained in:
2025-09-25 23:05:33 +07:00
parent 94f11ce5be
commit d42d32e585
10 changed files with 455 additions and 77 deletions

View File

@ -1,4 +1,4 @@
export enum TrxTransactionStatusType {
export enum TrxTransactionStatus {
"verify" = "verify",
"open" = "open",
"progress" = "progress",
@ -7,15 +7,26 @@ export enum TrxTransactionStatusType {
"approved" = "approved",
}
export enum TrxTransactionType {
export enum TrxTransactionTypeStatus {
"deposit" = "deposit",
"transfer" = "transfer",
"clearing" = "clearing",
"rtgs" = "rtgs",
}
export enum TrxTransactionTransferStatus {
"remittance" = "remittance",
"swift" = "swift",
"domestic" = "domestic",
}
export enum TrxTransactionCorrespondentFees {
"sender" = "sender",
"recepient" = "recepient",
"other" = "other",
}
export enum TrxConfigBankType {
"indonesia" = "indonesia",
"domestic" = "domestic",
}