Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new “VoIP calls” how-to guide for the React Native (mobile) SDK, covering PushKit/APNs on iOS and FCM/Telecom on Android, and updates navigation/supporting docs to incorporate the new page.
Changes:
- Introduces a comprehensive
VoIP callsguide underdocs/how-to/client/. - Adjusts sidebar ordering (
sidebar_position) across nearby client how-to pages to make room for the new guide. - Updates spellchecker allowlist to include VoIP/CallKit/PushKit/Telecom/APNs/FCM and related terms.
Reviewed changes
Copilot reviewed 13 out of 13 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| spelling.txt | Adds VoIP-related proper nouns/terms to the spellchecker allowlist. |
| docusaurus.config.ts | Tweaks Shiki/Twoslash error filtering helper used during MDX rendering. |
| docs/how-to/client/voip-calls.mdx | New VoIP calls documentation page for React Native apps (iOS/Android). |
| docs/how-to/client/text-chat.mdx | Updates sidebar ordering to accommodate the new VoIP page. |
| docs/how-to/client/simulcast.mdx | Updates sidebar ordering to accommodate the new VoIP page. |
| docs/how-to/client/migration-guide.mdx | Updates sidebar ordering to accommodate the new VoIP page. |
| docs/how-to/client/ios-simulator-camera.mdx | Updates sidebar ordering to accommodate the new VoIP page. |
| docs/how-to/client/background-streaming.mdx | Adds a “See also” link pointing readers to the new VoIP calls guide. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Magmusacy
marked this pull request as ready for review
July 24, 2026 14:31
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.
Description
Adds a how-to guide for the React Native SDK's VoIP feature:
docs/how-to/client/voip-calls.mdx.The page covers the full app side: native setup (Expo / Bare tabs), the
VoipProvidercontract (join the room onconnecting,reportConnected()when media is live), incoming push payload, outgoing calls, ending calls andlastEndedReason, hold/mute, and Recents redial. All snippets type-check against the bumpedweb-client-sdksubmodule.Supporting changes: sidebar positions + a cross-link from Background streaming, a twoslash error-handling tweak in
docusaurus.config.ts, spelling entries, submodule bumps.Note: links to the
voip-callexample 404 until the SDK-side PR merges.