From 2cceae94f0b61ec75667dd9610235051ccbe35a0 Mon Sep 17 00:00:00 2001 From: nadavosa Date: Mon, 11 May 2026 19:51:05 +0200 Subject: [PATCH] feat(#488): expose agent id in opportunity agent DTO Co-Authored-By: Claude Sonnet 4.6 --- src/services/dto/dto-agent.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/services/dto/dto-agent.ts b/src/services/dto/dto-agent.ts index ca2e2081..b761488f 100644 --- a/src/services/dto/dto-agent.ts +++ b/src/services/dto/dto-agent.ts @@ -44,6 +44,7 @@ export function dtoAgentGet( export function dtoOpportunityAgent(agent: Agent): ApiOpportunityAgent { return { + id: agent.id, type: agent.type, name: agent.title, address: serializeAddress(agent.representative?.person?.address),