fix(docs): document framework bridge URL retry behaviour fixes MRK-1214#11747
Open
jainpawan21 wants to merge 7 commits into
Open
fix(docs): document framework bridge URL retry behaviour fixes MRK-1214#11747jainpawan21 wants to merge 7 commits into
jainpawan21 wants to merge 7 commits into
Conversation
✅ Deploy Preview for dashboard-v2-novu-staging canceled.
|
✅ Deploy Preview for dashboard-v2-novu-staging canceled.
|
|
TesterArmy is running exploration tests on this Pull Request.
SummaryAll 10 steps passed. Planned Steps (10/10 completed)
|
Contributor
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
scopsy
approved these changes
Jul 1, 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.

What changed? Why was the change needed?
Screenshots
Expand for optional sections
Related enterprise PR
Special notes for your reviewer
Greptile Summary
This PR adds and improves documentation across several areas: bridge endpoint retry behavior, SMS Webhook provider setup, Inbox subscriber profile fields, Slack OAuth alternative flow, and Resend React Email integration. It also updates the SMS Webhook
docReferenceURL in the shared provider config and adds permanent redirects for the old generic-sms doc paths.2^n × 500ms, HTTP codes408/429/500/503/504/521/522/524, and common network error codes). All values verified against the source implementation inhttp-client.types.ts.sms-webhook.mdxcovering configuration fields, request/response format, token auth flow, and passthrough body overrides; backed by redirects from the two legacy URLs.subscriberId/contextas mutually-requiring in the Slack OAuth alternative snippet.Confidence Score: 5/5
Documentation-only change plus a single URL string update in a provider config constant; safe to merge.
All numeric values in the retry behavior section (status codes, error codes, timeout, retry count, backoff formula) were verified against the live source in
http-client.types.tsandhttp-client.service.ts. The CLI command and flags documented inresend.mdxexist in the CLI entry point. The only code-path change is thedocReferenceURL update insms.ts, which is covered by two permanent redirects indocs.json.docs/platform/integrations/email/resend.mdx — step 1 of the React Email section says "steps below" but the Resend setup steps are above.
Important Files Changed
http-client.types.ts.Sequence Diagram
%%{init: {'theme': 'neutral'}}%% sequenceDiagram participant W as Novu Worker participant B as Bridge Endpoint W->>B: POST /api/novu (attempt 1) alt 2xx success B-->>W: 200 OK else retryable error (408/429/500/503/504/521/522/524 or network code) B-->>W: error W->>W: "wait 2^1 x 500ms = 1s" W->>B: POST /api/novu (attempt 2) alt still failing B-->>W: error W->>W: "wait 2^2 x 500ms = 2s" W->>B: POST /api/novu (attempt 3) alt still failing B-->>W: error W->>W: "wait 2^3 x 500ms = 4s" W->>B: POST /api/novu (attempt 4 - final) B-->>W: step marked as failed else success B-->>W: 200 OK end else success B-->>W: 200 OK end end%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%% sequenceDiagram participant W as Novu Worker participant B as Bridge Endpoint W->>B: POST /api/novu (attempt 1) alt 2xx success B-->>W: 200 OK else retryable error (408/429/500/503/504/521/522/524 or network code) B-->>W: error W->>W: "wait 2^1 x 500ms = 1s" W->>B: POST /api/novu (attempt 2) alt still failing B-->>W: error W->>W: "wait 2^2 x 500ms = 2s" W->>B: POST /api/novu (attempt 3) alt still failing B-->>W: error W->>W: "wait 2^3 x 500ms = 4s" W->>B: POST /api/novu (attempt 4 - final) B-->>W: step marked as failed else success B-->>W: 200 OK end else success B-->>W: 200 OK end endReviews (3): Last reviewed commit: "Merge branch 'next' into fix/docs-update..." | Re-trigger Greptile