From e967527498aa1015c90dd8fa71582e4f0515c2f8 Mon Sep 17 00:00:00 2001 From: Suraj Anand Date: Wed, 28 Jan 2026 21:57:27 +0530 Subject: [PATCH] feat: add agfeat: add agentId support to HookMappingResolved and HookAction types --- src/gateway/hooks-mapping.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gateway/hooks-mapping.ts b/src/gateway/hooks-mapping.ts index 2ebf9b136..df9a37037 100644 --- a/src/gateway/hooks-mapping.ts +++ b/src/gateway/hooks-mapping.ts @@ -22,6 +22,7 @@ export type HookMappingResolved = { thinking?: string; timeoutSeconds?: number; transform?: HookMappingTransformResolved; + agentId?: string; }; export type HookMappingTransformResolved = { @@ -55,6 +56,7 @@ export type HookAction = model?: string; thinking?: string; timeoutSeconds?: number; + agentId?: string; }; export type HookMappingResult =