aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/wallet-types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-util/src/wallet-types.ts')
-rw-r--r--packages/taler-util/src/wallet-types.ts41
1 files changed, 5 insertions, 36 deletions
diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts
index 82f62ceb7..bc43652d9 100644
--- a/packages/taler-util/src/wallet-types.ts
+++ b/packages/taler-util/src/wallet-types.ts
@@ -1518,7 +1518,6 @@ export interface WithdrawTestBalanceRequest {
forcedDenomSel?: ForcedDenomSel;
}
-
/**
* Request to the crypto worker to make a sync signature.
*/
@@ -1590,36 +1589,6 @@ export const codecForWithdrawTestBalance =
.property("bankAccessApiBaseUrl", codecForString())
.build("WithdrawTestBalanceRequest");
-export interface ApplyRefundResponse {
- contractTermsHash: string;
-
- transactionId: string;
-
- proposalId: string;
-
- amountEffectivePaid: AmountString;
-
- amountRefundGranted: AmountString;
-
- amountRefundGone: AmountString;
-
- pendingAtExchange: boolean;
-
- info: OrderShortInfo;
-}
-
-export const codecForApplyRefundResponse = (): Codec<ApplyRefundResponse> =>
- buildCodecForObject<ApplyRefundResponse>()
- .property("amountEffectivePaid", codecForAmountString())
- .property("amountRefundGone", codecForAmountString())
- .property("amountRefundGranted", codecForAmountString())
- .property("contractTermsHash", codecForString())
- .property("pendingAtExchange", codecForBoolean())
- .property("proposalId", codecForString())
- .property("transactionId", codecForString())
- .property("info", codecForOrderShortInfo())
- .build("ApplyRefundResponse");
-
export interface SetCoinSuspendedRequest {
coinPub: string;
suspended: boolean;
@@ -1658,11 +1627,11 @@ export interface StartRefundQueryRequest {
transactionId: string;
}
-export const codecForStartRefundQueryRequest = (): Codec<StartRefundQueryRequest> =>
- buildCodecForObject<StartRefundQueryRequest>()
- .property("transactionId", codecForString())
- .build("StartRefundQueryRequest");
-
+export const codecForStartRefundQueryRequest =
+ (): Codec<StartRefundQueryRequest> =>
+ buildCodecForObject<StartRefundQueryRequest>()
+ .property("transactionId", codecForString())
+ .build("StartRefundQueryRequest");
export interface PrepareTipRequest {
talerTipUri: string;