aboutsummaryrefslogtreecommitdiff
path: root/src/webex/messages.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-30 17:27:59 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-30 17:27:59 +0200
commit5ec344290efd937fa82c0704bc7c204a0bf14c78 (patch)
tree7d9594180bbc7b5fa2b4a8dbe24272e7a82301f3 /src/webex/messages.ts
parentdefbf625bdef0f8a666b72b8ce99de5e01af6b91 (diff)
downloadwallet-core-5ec344290efd937fa82c0704bc7c204a0bf14c78.tar.xz
support for tipping protocol changes
Diffstat (limited to 'src/webex/messages.ts')
-rw-r--r--src/webex/messages.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/webex/messages.ts b/src/webex/messages.ts
index ca0e1c7e1..f1046d5c7 100644
--- a/src/webex/messages.ts
+++ b/src/webex/messages.ts
@@ -174,11 +174,11 @@ export interface MessageMap {
response: AmountJson;
};
"accept-tip": {
- request: { tipToken: talerTypes.TipToken };
- response: walletTypes.TipStatus;
+ request: { talerTipUri: string };
+ response: void;
};
"get-tip-status": {
- request: { tipToken: talerTypes.TipToken };
+ request: { talerTipUri: string };
response: walletTypes.TipStatus;
};
"clear-notification": {