@skippr/live-agent-sdk 0.83.0 → 0.84.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 CHANGED
@@ -209,7 +209,6 @@ Self-contained widget component. Renders a floating button that opens a sidebar
209
209
  | `agentId` | `string` | — | Pin the widget to a specific module (pass that module's id). Omit to let the user pick from all your active modules at runtime. |
210
210
  | `getUserToken` | `() => Promise<string>` | — | Async callback returning a freshly signed JWT for secret mode. The SDK calls it to bootstrap, again proactively before the bearer expires, and once more on a `401` to re-bootstrap. |
211
211
  | `userToken` | `string` | — | Static signed JWT for secret mode (testing). Exchanged for a bearer token but can't be refreshed once expired. `getUserToken` takes precedence when both are set. |
212
- | `position` | `'left' \| 'right'` | `'right'` | Side of the screen for the widget |
213
212
  | `variant` | `'floating' \| 'sidebar'` | `'floating'` | Widget display mode |
214
213
  | `minimizable` | `boolean` | `true` | Whether the widget can be minimized |
215
214
  | `defaultOpen` | `boolean` | `false` | Whether the panel starts open |
@@ -298,7 +297,7 @@ Available on `window.Skippr` when using the script tag bundle.
298
297
 
299
298
  | Method | Description |
300
299
  |--------|-------------|
301
- | `Skippr.initialize(config)` | Mount the widget. Accepts `appKey` (required), `agentId` (optional — omit for picker), `getUserToken`, `userToken`, `position`, `variant`, `minimizable`, `captureMode`. |
300
+ | `Skippr.initialize(config)` | Mount the widget. Accepts `appKey` (required), `agentId` (optional — omit for picker), `getUserToken`, `userToken`, `variant`, `minimizable`, `captureMode`. |
302
301
  | `Skippr.logout()` | Revoke the current session server-side, clear stored auth tokens, and show the login form (direct auth mode) |
303
302
  | `Skippr.destroy()` | Remove the widget from the page and clear auth tokens |
304
303