Sync webhook types with the current API#147
Merged
Merged
Conversation
Add the missing `campaigns` and `inbound_receiving` webhook types and the `inbound_inbox_id` field to the Webhook, create, and update types so the SDK matches the Webhooks API. Update the mutable-fields note and add coverage for creating an inbound_receiving webhook.
📝 WalkthroughWalkthroughWebhook types now support ChangesWebhook contract and creation support
Estimated code review effort: 2 (Simple) | ~10 minutes Possibly related PRs
Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
piobeny
approved these changes
Jul 24, 2026
leonid-shevtsov
approved these changes
Jul 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
Brings the SDK's webhook management types in line with the current Webhooks API (per the OpenAPI spec).
WebhookType— add the two missing members:campaignsandinbound_receiving(previously onlyemail_sendingandaudit_log).inbound_inbox_idtoWebhook(number | null),CreateWebhookParams, andUpdateWebhookParams(number), used byinbound_receivingwebhooks.update()doc comment, which no longer omittedinbound_inbox_idfrom the mutable fields.create()test covering aninbound_receivingwebhook linked to an inbox.SendingStreamandWebhookEventTypealready matched the API and were left unchanged.