@uptiqai/widgets-sdk 1.161.0 → 1.161.1

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/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import { JSX as JSX_2 } from 'react/jsx-runtime';
2
2
  import { MemoExoticComponent } from 'react';
3
3
  import { ReactNode } from 'react';
4
4
 
5
- export declare type AgentInterruptEvent = EvaluationResultElement | DoneElement | StatusUpdateElement | PlanUpdateElement | ErrorElement | ToolResultElement | ToolCallElement | AgentMessage_2 | ContextualKnowledgeElement | PausedElement;
5
+ export declare type AgentInterruptEvent = UserMessage_2 | EvaluationResultElement | DoneElement | StatusUpdateElement | PlanUpdateElement | ErrorElement | ToolResultElement | ToolCallElement | AgentMessage_2 | ContextualKnowledgeElement | PausedElement;
6
6
 
7
7
  export declare const AgentMessage: MemoExoticComponent<({ message, isSelected, onClick, annotationOverlay, selectionIndicator, className, hideMetadata, hideActions, showBorder, onOpenToolsPanel, onOpenPlanPanel, onOpenCustomWidget, selectedCustomWidget }: AgentMessageProps) => JSX_2.Element>;
8
8
 
@@ -217,6 +217,7 @@ declare type FullChatWidgetContainerProps = {
217
217
  children: React.ReactNode;
218
218
  defaultOpen?: boolean;
219
219
  hideTrigger?: boolean;
220
+ isUpWrk?: boolean;
220
221
  onClose?: () => void;
221
222
  widgetRef?: React.Ref<FullScreenChatWidgetRef>;
222
223
  };
@@ -238,7 +239,7 @@ export declare type FullScreenAnnotationChatWidgetRef = {
238
239
  close: () => void;
239
240
  };
240
241
 
241
- export declare const FullScreenChatWidget: ({ defaultOpen, widgetRef, onClose, hideTrigger, ...props }: FullScreenChatWidgetProps) => JSX_2.Element;
242
+ export declare const FullScreenChatWidget: ({ defaultOpen, widgetRef, onClose, hideTrigger, isUpWrk, ...props }: FullScreenChatWidgetProps) => JSX_2.Element;
242
243
 
243
244
  export declare type FullScreenChatWidgetProps = CommonWidgetProps & Omit<FullChatWidgetContainerProps, 'children'>;
244
245