commit 84821d3f6d695ee02e6e32853f0052347b01564c parent c22e79a816113f09e28adc10c80b3a6abe3409bb Author: Florian Dold <florian@dold.me> Date: Fri, 22 Nov 2024 21:13:18 +0100 update wallet-core API docs Diffstat:
| M | wallet/wallet-core.md | | | 13 | +++++++++++++ |
1 file changed, 13 insertions(+), 0 deletions(-)
diff --git a/wallet/wallet-core.md b/wallet/wallet-core.md @@ -1570,9 +1570,22 @@ export type AddKnownBankAccountsOp = { ``` ```typescript export interface AddKnownBankAccountRequest { + /** + * Payto URI of the bank account that should be added. + */ paytoUri: string; + /** + * Human-readable alias / label for the account. + */ alias: string; + /** + * Currencies supported by the bank (if known). + */ currencies?: string[] | undefined; + /** + * Bank account that this new account should replace. + */ + replacePaytoUri?: string; } ```