commit 5c682c16880465a712b3ae502788d0577af53c93
parent b6f88a19427b853746be237fcdb6f0a45f7735f7
Author: Florian Dold <florian@dold.me>
Date: Wed, 7 Aug 2024 21:13:54 +0200
-represent all banking options as link
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-util/src/types-taler-wallet.ts b/packages/taler-util/src/types-taler-wallet.ts
@@ -3571,7 +3571,7 @@ export const codecForGetBankingChoicesForPaytoRequest = () =>
export interface BankingChoiceSpec {
label: string;
// FIXME: In the future, we might also have some way to return intents here?
- type: "weblink" | "deeplink";
+ type: "link";
uri: string;
}