From daf7c67135cb930835573919a871efb25c998463 Mon Sep 17 00:00:00 2001 From: Guy Ben Aharon Date: Fri, 10 Apr 2026 09:06:29 +0300 Subject: [PATCH] fix: include agent identifier in approval metadata as externalId --- src/approvals/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/approvals/types.ts b/src/approvals/types.ts index e4295b6..a876495 100644 --- a/src/approvals/types.ts +++ b/src/approvals/types.ts @@ -15,7 +15,7 @@ export interface ApprovalRequest { /** First ~4KB of request body as text, or null if no body. */ bodyPreview: string | null; /** The agent that made this request. */ - agent: { id: string; name: string }; + agent: { id: string; name: string; externalId: string | null }; /** When the request arrived (ISO 8601). */ createdAt: string; /** When the approval expires (ISO 8601). */