feat: add agentId field to HookMappingConfig

Add optional agentId field to HookMappingConfig to support routing webhook mappings to specific agents.

Related to: #3432
This commit is contained in:
Suraj Anand 2026-01-28 21:53:35 +05:30 committed by GitHub
parent 01e0d3a320
commit 5cc22139f2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,6 +36,7 @@ export type HookMappingConfig = {
thinking?: string;
timeoutSeconds?: number;
transform?: HookMappingTransform;
agentId?: string;
};
export type HooksGmailTailscaleMode = "off" | "serve" | "funnel";