feat: add agfeat: add agentId support to HookMappingResolved and HookAction types

This commit is contained in:
Suraj Anand 2026-01-28 21:57:27 +05:30 committed by GitHub
parent 5cc22139f2
commit e967527498
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 =