taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 1f43ab7d06c918a40f9f32b9744341987322c986
parent d6a3180268643aa1e28e558ebb8153977fb9c1af
Author: Sebastian <sebasjm@taler-systems.com>
Date:   Thu, 23 Jul 2026 10:52:46 -0300

missing not found in the return type

Diffstat:
Mpackages/taler-util/src/http-client/exchange-client.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-util/src/http-client/exchange-client.ts b/packages/taler-util/src/http-client/exchange-client.ts @@ -285,7 +285,7 @@ export class TalerExchangeHttpClient { */ async getKeys( opts: { noCache?: boolean } = {}, - ): Promise<OperationOk<ExchangeKeysResponse>> { + ): Promise<OperationOk<ExchangeKeysResponse> | OperationFail<HttpStatusCode.NotFound>> { const headers: Record<string, string> = {}; if (opts.noCache) { headers["cache-control"] = "no-cache";