diff options
Diffstat (limited to 'packages/taler-util/src')
-rw-r--r-- | packages/taler-util/src/transactions-types.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/taler-util/src/transactions-types.ts b/packages/taler-util/src/transactions-types.ts index 5c5a6a913..998500f12 100644 --- a/packages/taler-util/src/transactions-types.ts +++ b/packages/taler-util/src/transactions-types.ts @@ -89,6 +89,8 @@ export enum TransactionMajorState { Aborting = "aborting", Aborted = "aborted", Suspended = "suspended", + SuspendedDeletable = "suspended-deletable", + Dialog = "dialog", SuspendedAborting = "suspended-aborting", Failed = "failed", // Only used for the notification, never in the transaction history @@ -104,15 +106,22 @@ export enum TransactionMinorState { KycRequired = "kyc", AmlRequired = "aml", Track = "track", + Pay = "pay", + RebindSession = "rebind-session", Refresh = "refresh", Pickup = "pickup", + AutoRefund = "auto-refund", User = "user", Bank = "bank", + ClaimProposal = "claim-proposal", + CheckRefunds = "check-refunds", + Repurchase = "repurchase", BankRegisterReserve = "bank-register-reserve", BankConfirmTransfer = "bank-confirm-transfer", WithdrawCoins = "withdraw-coins", ExchangeWaitReserve = "exchange-wait-reserve", AbortingBank = "aborting-bank", + Refused = "refused", } export interface TransactionsResponse { |