@skippr/live-agent-sdk 0.108.0 → 0.109.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.
@@ -1,6 +1,6 @@
1
1
  import { type MutableRefObject } from 'react';
2
2
  import { type CaptureMode } from '../lib/constants';
3
- export declare const FALLBACK_PAUSE_TIMEOUT_SECONDS = 120;
3
+ export declare const FALLBACK_PAUSE_TIMEOUT_SECONDS = 180;
4
4
  export interface UseSessionHoldOptions {
5
5
  pauseSession: () => Promise<void>;
6
6
  pauseTimeoutSeconds: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skippr/live-agent-sdk",
3
- "version": "0.108.0",
3
+ "version": "0.109.0",
4
4
  "type": "module",
5
5
  "main": "dist/esm/lib-exports.js",
6
6
  "module": "dist/esm/lib-exports.js",
@@ -1,6 +0,0 @@
1
- export interface UseHighlightControlValue {
2
- /** True while a resting highlight ("guide") is on screen. */
3
- highlightActive: boolean;
4
- clearHighlight: () => Promise<void>;
5
- }
6
- export declare function useHighlightControl(): UseHighlightControlValue;