Package not found. Please check the package name and try again.
@rtrvr-ai/rover 1.2.1 → 1.3.0
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 +1 -0
- package/dist/embed.js +39 -17
- package/dist/index.d.ts +6 -0
- package/dist/rover.js +648 -69
- package/dist/worker/rover-worker.js +103 -22
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -109,6 +109,7 @@ const RoverWidget = dynamic(() => import('./RoverWidget'), { ssr: false });
|
|
|
109
109
|
| `allowedDomains` | `string[]` | `[]` | Hostnames where Rover may operate |
|
|
110
110
|
| `domainScopeMode` | `'registrable_domain' \| 'host_only'` | `'registrable_domain'` | Domain matching strategy |
|
|
111
111
|
| `externalNavigationPolicy` | `'open_new_tab_notice' \| 'block' \| 'allow'` | `'open_new_tab_notice'` | External navigation policy |
|
|
112
|
+
| `navigation.crossHostPolicy` | `'same_tab' \| 'open_new_tab'` | `'same_tab'` | Behavior for in-scope host changes (for example, `app.example.com` to `www.example.com`) |
|
|
112
113
|
| `mode` | `'full' \| 'safe'` | `'full'` | Runtime mode |
|
|
113
114
|
| `allowActions` | `boolean` | `true` | Enable or disable action tools |
|
|
114
115
|
| `openOnInit` | `boolean` | `false` | Open panel immediately on boot |
|