@trii/types 2.10.597 → 2.10.599

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.
@@ -92,7 +92,7 @@ export interface IWorkflowMessage {
92
92
  executionId?: string | null;
93
93
  }
94
94
  export interface IFlowMessageContent {
95
- type: 'text' | 'image' | 'file' | 'audio' | 'code' | 'json' | 'log' | 'tool';
95
+ type: 'text' | 'image' | 'file' | 'audio' | 'agentPlan' | 'arguments' | 'tool';
96
96
  text?: string;
97
97
  /**For audio transcription or OCR processing */
98
98
  transcription?: string;
@@ -100,6 +100,7 @@ export interface IFlowMessageContent {
100
100
  image_url?: string;
101
101
  audio_url?: string;
102
102
  file_url?: string;
103
+ isMessageSended?: boolean | false;
103
104
  /**Tool call related information */
104
105
  toolCallId?: string;
105
106
  toolName?: string;
@@ -107,9 +108,13 @@ export interface IFlowMessageContent {
107
108
  toolOutput?: string;
108
109
  toolStatus?: NodeStatus;
109
110
  toolTransferToOtherAgent?: boolean | false;
111
+ toolNodeId?: string | null;
110
112
  toolNextNodeId?: string | null;
111
- isPartial?: boolean | false;
112
- isMessageSended?: boolean | false;
113
+ arguments?: string;
114
+ planSchema?: string;
115
+ isPlanExecution?: boolean | false;
116
+ isPlanOutput?: boolean | false;
117
+ workersOutput?: string;
113
118
  /**related to messages module */
114
119
  messageId?: string;
115
120
  messageShardKey?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.597",
3
+ "version": "2.10.599",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",