From 04f01ab9abe86787aa75e0d5266e3314faa364cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Boschi?= Date: Wed, 17 Dec 2025 13:21:16 +0100 Subject: [PATCH] fix: bank list response with no name banks --- hindsight-api/hindsight_api/api/http.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hindsight-api/hindsight_api/api/http.py b/hindsight-api/hindsight_api/api/http.py index d5b0cb54..9cb56d6d 100644 --- a/hindsight-api/hindsight_api/api/http.py +++ b/hindsight-api/hindsight_api/api/http.py @@ -506,9 +506,9 @@ class BankListItem(BaseModel): """Bank list item with profile summary.""" bank_id: str - name: str + name: str | None = None disposition: DispositionTraits - background: str + background: str | None = None created_at: str | None = None updated_at: str | None = None