feat(notifications): webhook custom headers (#2230)

Signed-off-by: 0xsysr3ll <0xsysr3ll@pm.me>
This commit is contained in:
0xsysr3ll
2026-03-05 11:23:47 +01:00
committed by GitHub
parent 1dc51542aa
commit 3152f727ef
6 changed files with 202 additions and 8 deletions

View File

@@ -277,6 +277,7 @@ export interface NotificationAgentWebhook extends NotificationAgentConfig {
webhookUrl: string;
jsonPayload: string;
authHeader?: string;
customHeaders?: { key: string; value: string }[];
supportVariables?: boolean;
};
}