@rtrvr-ai/rover 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -104,6 +104,7 @@ const RoverWidget = dynamic(() => import('./RoverWidget'), { ssr: false });
104
104
  | `apiKey` | `string` | — | API key from Rover Workspace |
105
105
  | `siteKeyId` | `string` | — | Site key ID from Workspace |
106
106
  | `authToken` | `string` | — | Optional bearer token override (takes precedence over `apiKey` when both are set) |
107
+ | `apiBase` | `string` | `https://extensionrouter.rtrvr.ai` | Optional API base override. For custom domain routing you can pass the base directly (no `/extensionRouter` suffix required). |
107
108
  | `allowedDomains` | `string[]` | `[]` | Hostnames where Rover may operate |
108
109
  | `domainScopeMode` | `'registrable_domain' \| 'host_only'` | `'registrable_domain'` | Domain matching strategy |
109
110
  | `externalNavigationPolicy` | `'open_new_tab_notice' \| 'block' \| 'allow'` | `'open_new_tab_notice'` | External navigation policy |
@@ -206,7 +207,7 @@ If your site sets a CSP header, add these directives:
206
207
  |---|---|---|
207
208
  | `script-src` | `https://rover.rtrvr.ai blob:` | SDK script + Web Worker blob |
208
209
  | `worker-src` | `blob: https://rover.rtrvr.ai` | Web Worker execution |
209
- | `connect-src` | `https://us-central1-rtrvr-extension-functions.cloudfunctions.net` | API calls |
210
+ | `connect-src` | `https://extensionrouter.rtrvr.ai` | API calls |
210
211
  | `style-src` | `'unsafe-inline'` | Shadow DOM styles |
211
212
  | `font-src` | `https://rover.rtrvr.ai` | Self-hosted Manrope font |
212
213