From d32e0ad41bd58a757e24bcca4119718637894346 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Wed, 5 Nov 2025 20:08:32 +0100 Subject: [PATCH] feat(errors): add new entity types for bank connections and transactions Adds EntityBankConnection and EntityBankTransaction to the errors package to enhance error handling capabilities related to banking operations. This improves the clarity and specificity of error messages associated with bank-related entities. --- error.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/error.go b/error.go index 9c2a142..7d940fa 100644 --- a/error.go +++ b/error.go @@ -36,6 +36,8 @@ const ( EntityTag = Entity("TAG") EntityEntry = Entity("ENTRY") EntityEntryBasis = Entity("ENTRY_BASIS") + EntityBankConnection = Entity("BANK_CONNECTION") + EntityBankTransaction = Entity("BANK_TRANSACTION") ) type CodedError struct {