From de8468fcd7f1c74b820486fb6d8854c758458780 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 26 Feb 2024 17:50:49 -0300 Subject: wip conversion UI --- packages/taler-util/src/http-client/types.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'packages/taler-util/src') 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 => .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 { -- cgit v1.2.3