@skippr/live-agent-sdk 0.42.0 → 0.44.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 +10 -4
- package/dist/esm/lib-exports.js +673 -297
- package/dist/skippr-sdk.css +1 -1
- package/dist/skippr-sdk.js +116 -116
- package/dist/types/capture/a11yTree.d.ts +1 -0
- package/dist/types/capture/agentActionSignal.d.ts +4 -0
- package/dist/types/capture/elementRef.d.ts +2 -0
- package/dist/types/components/AgentActivityIndicator.d.ts +7 -0
- package/dist/types/components/PageActionHandler.d.ts +1 -0
- package/dist/types/context/LiveAgentContext.d.ts +1 -0
- package/dist/types/lib/constants.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/** Run the agent's synchronous DOM dispatch with the suppression flag raised. */
|
|
2
|
+
export declare function runAgentAction(dispatch: () => void): void;
|
|
3
|
+
/** True while the agent's synthetic DOM event is dispatching. */
|
|
4
|
+
export declare function isAgentActionInProgress(): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function PageActionHandler(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,4 +5,5 @@ export declare const PRIVATE_ATTR = "data-skippr-private";
|
|
|
5
5
|
export declare const DOM_SNAPSHOT_TOPIC = "skippr.dom-snapshot";
|
|
6
6
|
export declare const DOM_EVENTS_TOPIC = "skippr.dom-events";
|
|
7
7
|
export declare const HIGHLIGHT_TOPIC = "skippr.highlight";
|
|
8
|
+
export declare const PAGE_ACTIONS_TOPIC = "skippr.page-actions";
|
|
8
9
|
export declare const NAME_MAX_CHARS = 80;
|