Commits
Click on a commit to change the comparison rangefix: allow string form_data in CustomWebhookNotificationBlock
Enables sending raw string/bytes payloads via `form_data` field, which
is needed when forwarding pre-constructed JSON from automation bodies.
Previously `form_data` only accepted `dict[str, str]` for form-encoded
data. Now it accepts `str | dict[str, str]`:
- dict: form-encoded data (httpx `data=`)
- str: raw body content (httpx `content=`)
Closes #19949
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>