From 28ceed1ab572302c5132854ff044ff3cc034303f Mon Sep 17 00:00:00 2001 From: TaprootFreak <142087526+TaprootFreak@users.noreply.github.com> Date: Tue, 28 Jul 2026 10:17:21 +0200 Subject: [PATCH] fix(gs): allow querying the custody order completion timestamp (#4422) The column was added with the sZCHF saving position but never added to the debug allowlist, so the value date behind the interest calculation could not be inspected in operation. --- src/subdomains/generic/gs/dto/gs.dto.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/subdomains/generic/gs/dto/gs.dto.ts b/src/subdomains/generic/gs/dto/gs.dto.ts index fd4fec3c49..b55b51addd 100644 --- a/src/subdomains/generic/gs/dto/gs.dto.ts +++ b/src/subdomains/generic/gs/dto/gs.dto.ts @@ -601,6 +601,7 @@ export const DebugAllowedColumns: Record = { 'accountId', 'amountInChf', 'buyId', + 'completedAt', 'initiatedById', 'inputAmount', 'inputAssetId',