@skippr/live-agent-sdk 0.25.0 → 0.27.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.
@@ -0,0 +1 @@
1
+ export declare function AgentStateBanner(): import("react/jsx-runtime").JSX.Element | null;
@@ -13,8 +13,8 @@ interface LiveAgentProps {
13
13
  hideHeader?: boolean;
14
14
  startSessionLabel?: string;
15
15
  autoFocusChat?: boolean;
16
- showObservingBanner?: boolean;
16
+ showAgentStateBanner?: boolean;
17
17
  children?: ReactNode;
18
18
  }
19
- export declare function LiveAgent({ agentId, authToken: authTokenProp, appKey, userToken, position, variant, minimizable, defaultOpen, welcomeMessage, hideControls, hideHeader, startSessionLabel, autoFocusChat, showObservingBanner, children, }: LiveAgentProps): import("react/jsx-runtime").JSX.Element;
19
+ export declare function LiveAgent({ agentId, authToken: authTokenProp, appKey, userToken, position, variant, minimizable, defaultOpen, welcomeMessage, hideControls, hideHeader, startSessionLabel, autoFocusChat, showAgentStateBanner, children, }: LiveAgentProps): import("react/jsx-runtime").JSX.Element;
20
20
  export {};
@@ -0,0 +1,5 @@
1
+ interface LogoProps {
2
+ className?: string;
3
+ }
4
+ export declare function Logo({ className }: LogoProps): import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -1,6 +1,7 @@
1
1
  import type { PhaseStatus } from '../hooks/usePhaseUpdates';
2
2
  interface SessionAgendaProps {
3
3
  phases: PhaseStatus[];
4
+ hasStarted: boolean;
4
5
  }
5
- export declare function SessionAgenda({ phases }: SessionAgendaProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function SessionAgenda({ phases, hasStarted }: SessionAgendaProps): import("react/jsx-runtime").JSX.Element;
6
7
  export {};
@@ -1,9 +1,8 @@
1
1
  import { useVoiceAssistant } from '@livekit/components-react';
2
- type AgentState = ReturnType<typeof useVoiceAssistant>['state'];
2
+ export type AgentState = ReturnType<typeof useVoiceAssistant>['state'];
3
3
  export interface UseAgentVoiceStateValue {
4
4
  state: AgentState;
5
5
  isSpeaking: boolean;
6
6
  isListening: boolean;
7
7
  }
8
8
  export declare function useAgentVoiceState(): UseAgentVoiceStateValue;
9
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skippr/live-agent-sdk",
3
- "version": "0.25.0",
3
+ "version": "0.27.0",
4
4
  "type": "module",
5
5
  "main": "dist/esm/lib-exports.js",
6
6
  "module": "dist/esm/lib-exports.js",
Binary file
Binary file
@@ -1 +0,0 @@
1
- export declare function ObservingBanner(): import("react/jsx-runtime").JSX.Element | null;
@@ -1 +0,0 @@
1
- export declare const LOGO_URL: string;