aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2024-02-26 17:50:49 -0300
committerSebastian <sebasjm@gmail.com>2024-02-26 17:50:49 -0300
commitde8468fcd7f1c74b820486fb6d8854c758458780 (patch)
tree42187799e918a338b1fa1bab691f41bea52e4397 /packages/taler-util/src
parent8ee947a676f52c80b80b529eae78a57c17f3e1f7 (diff)
downloadwallet-core-de8468fcd7f1c74b820486fb6d8854c758458780.tar.xz
wip conversion UI
Diffstat (limited to 'packages/taler-util/src')
-rw-r--r--packages/taler-util/src/http-client/types.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/taler-util/src/http-client/types.ts b/packages/taler-util/src/http-client/types.ts
index 05fce4a49..3d8814998 100644
--- a/packages/taler-util/src/http-client/types.ts
+++ b/packages/taler-util/src/http-client/types.ts
@@ -344,6 +344,7 @@ const codecForPublicAccount = (): Codec<TalerCorebankApi.PublicAccount> =>
.property("balance", codecForBalance())
.property("payto_uri", codecForPaytoString())
.property("is_taler_exchange", codecForBoolean())
+ .property("row_id", codecOptional(codecForNumber()))
.build("TalerCorebankApi.PublicAccount");
export const codecForPublicAccountsResponse =
@@ -362,6 +363,7 @@ export const codecForAccountMinimalData =
.property("debit_threshold", codecForAmountString())
.property("is_public", codecForBoolean())
.property("is_taler_exchange", codecForBoolean())
+ .property("row_id", codecOptional(codecForNumber()))
.build("TalerCorebankApi.AccountMinimalData");
export const codecForListBankAccountsResponse =
@@ -1549,6 +1551,10 @@ export namespace TalerCorebankApi {
// Is this a taler exchange account?
is_taler_exchange: boolean;
+
+ // Opaque unique ID used for pagination.
+ // @since v4, will become mandatory in the future.
+ row_id?: Integer;
}
export interface ListBankAccountsResponse {
@@ -1579,6 +1585,10 @@ export namespace TalerCorebankApi {
// Is this a taler exchange account?
is_taler_exchange: boolean;
+
+ // Opaque unique ID used for pagination.
+ // @since v4, will become mandatory in the future.
+ row_id?: Integer;
}
export interface AccountData {