@uptiqai/widgets-sdk 1.93.0 → 1.94.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/dist/index.d.ts CHANGED
@@ -9,7 +9,7 @@ export declare const AgentMessage: MemoExoticComponent<({ message, isSelected, o
9
9
  declare type AgentMessage_2 = ConversationElement & {
10
10
  type: ConversationElementType.AGENT_MESSAGE;
11
11
  content: string;
12
- subtype: 'thinking_started' | 'thinking_completed' | 'guardrail_started' | 'guardrail_ended' | 'strategy_updated' | 'thinking_failed' | 'intermediate' | 'final' | 'question' | 'workflow_task' | 'final_stream' | 'attach_files' | 'output_files' | 'ask_permission';
12
+ subtype: 'thinking_started' | 'thinking_completed' | 'guardrail_started' | 'guardrail_ended' | 'strategy_updated' | 'thinking_failed' | 'intermediate' | 'final' | 'question' | 'workflow_task' | 'final_stream' | 'attach_files' | 'output_files' | 'ask_permission' | 'ask_permission_result';
13
13
  isStreaming?: boolean;
14
14
  relatedStepId?: string;
15
15
  expectedResponseType?: 'text' | 'boolean' | 'selection' | 'json';
@@ -256,6 +256,7 @@ declare type PermissionRequest = {
256
256
  id: string;
257
257
  title: string;
258
258
  description: string;
259
+ toolCallId?: string;
259
260
  };
260
261
 
261
262
  export declare type Plan = {