From 5cc22139f2cc1ce83d8ce9fa5913f03d63338537 Mon Sep 17 00:00:00 2001 From: Suraj Anand Date: Wed, 28 Jan 2026 21:53:35 +0530 Subject: [PATCH] feat: add agentId field to HookMappingConfig Add optional agentId field to HookMappingConfig to support routing webhook mappings to specific agents. Related to: #3432 --- src/config/types.hooks.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/types.hooks.ts b/src/config/types.hooks.ts index 7ca74605a..d748cc453 100644 --- a/src/config/types.hooks.ts +++ b/src/config/types.hooks.ts @@ -36,6 +36,7 @@ export type HookMappingConfig = { thinking?: string; timeoutSeconds?: number; transform?: HookMappingTransform; + agentId?: string; }; export type HooksGmailTailscaleMode = "off" | "serve" | "funnel";