From c8112b3e1c67f079d5a4feff1120d4c66f1615d3 Mon Sep 17 00:00:00 2001 From: TaprootFreak <142087526+TaprootFreak@users.noreply.github.com> Date: Fri, 6 Feb 2026 03:21:31 +0100 Subject: [PATCH] Add kycFileId to transaction list endpoint --- src/subdomains/generic/support/dto/user-data-support.dto.ts | 1 + src/subdomains/generic/support/support.service.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/subdomains/generic/support/dto/user-data-support.dto.ts b/src/subdomains/generic/support/dto/user-data-support.dto.ts index da128aaf01..cd9ff2bf56 100644 --- a/src/subdomains/generic/support/dto/user-data-support.dto.ts +++ b/src/subdomains/generic/support/dto/user-data-support.dto.ts @@ -84,6 +84,7 @@ export class TransactionListEntry { id: number; type?: string; accountId?: number; + kycFileId?: number; name?: string; domicile?: string; created?: Date; diff --git a/src/subdomains/generic/support/support.service.ts b/src/subdomains/generic/support/support.service.ts index 7bbef4dd2a..c9c6007fee 100644 --- a/src/subdomains/generic/support/support.service.ts +++ b/src/subdomains/generic/support/support.service.ts @@ -174,6 +174,7 @@ export class SupportService { id: tx.id, type: tx.type, accountId: tx.userData?.id, + kycFileId: tx.userData?.kycFileId, name: tx.userData?.verifiedName, domicile: tx.userData?.country?.name, created: tx.created,