@uptiqai/widgets-sdk 1.93.0 → 1.95.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.css +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +11437 -11413
- package/dist/index.umd.cjs +110 -110
- package/package.json +1 -1
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 = {
|
|
@@ -468,7 +469,10 @@ declare type WidgetConfig = {
|
|
|
468
469
|
serverUrl: string;
|
|
469
470
|
agentId: string;
|
|
470
471
|
widgetKey: string;
|
|
472
|
+
appWidgetKey?: string;
|
|
471
473
|
agentExecutorVersion?: string;
|
|
474
|
+
appId?: string;
|
|
475
|
+
accountId?: string;
|
|
472
476
|
};
|
|
473
477
|
|
|
474
478
|
export declare type WidgetsSdk = {
|