@trii/types 2.10.598 → 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: 'message' | 'schema' | '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;
@@ -108,12 +108,13 @@ export interface IFlowMessageContent {
108
108
  toolOutput?: string;
109
109
  toolStatus?: NodeStatus;
110
110
  toolTransferToOtherAgent?: boolean | false;
111
+ toolNodeId?: string | null;
111
112
  toolNextNodeId?: string | null;
112
- schema?: string;
113
- isPlanOutput?: boolean | false;
113
+ arguments?: string;
114
+ planSchema?: string;
114
115
  isPlanExecution?: boolean | false;
116
+ isPlanOutput?: boolean | false;
115
117
  workersOutput?: string;
116
- isPartial?: boolean | false;
117
118
  /**related to messages module */
118
119
  messageId?: string;
119
120
  messageShardKey?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.598",
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",