@trii/types 2.10.566 → 2.10.567

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.
@@ -38,22 +38,19 @@ export interface IWorkflowMessage {
38
38
  transferToOtherAgent: boolean | false;
39
39
  spaceId: string;
40
40
  workflowId: string;
41
+ flowId: string;
41
42
  nodeId: string;
42
- toolName?: string;
43
- tokens: number | 0;
44
- tokensInput: number | 0;
45
- tokensOutput: number | 0;
46
43
  /**
47
44
  * Execution time in milliseconds
48
45
  */
49
- milliSeconds: number | 0;
46
+ executionTimeMs: number | 0;
50
47
  createdAt: Date;
51
48
  completedAt?: Date | null;
52
49
  aiProviderId?: string | null;
53
50
  aiModelId?: string | null;
54
51
  aiTotalTokens?: number | null;
55
- aiInTokens?: number | null;
56
- aiOutTokens?: number | null;
52
+ aiInputTokens?: number | null;
53
+ aiOutputTokens?: number | null;
57
54
  aiCost?: number | null;
58
55
  aiError?: string | null;
59
56
  aiLatencyMs?: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.566",
3
+ "version": "2.10.567",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",