@uptiqai/widgets-sdk 1.168.0 → 1.170.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' | 'ask_permission_result' | 'ask_credential' | 'ask_credential_result';
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' | 'ask_credential' | 'ask_credential_result' | 'compaction_started' | 'compaction_ended' | 'compaction_failed' | 'compaction_usage';
13
13
  isStreaming?: boolean;
14
14
  relatedStepId?: string;
15
15
  expectedResponseType?: 'text' | 'boolean' | 'selection' | 'json';
@@ -495,6 +495,7 @@ declare type UserMessage_2 = ConversationElement & {
495
495
  fileName?: string;
496
496
  documents?: AttachedDocument[];
497
497
  payload?: any;
498
+ knowledgeSkillId?: string;
498
499
  };
499
500
  };
500
501