@trii/types 2.10.599 → 2.10.601

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.
@@ -0,0 +1,12 @@
1
+ export interface ICalendar {
2
+ id: string;
3
+ spaceId: string;
4
+ userId: string;
5
+ title: string;
6
+ color: string;
7
+ createdAt: Date;
8
+ updatedAt?: Date;
9
+ deletedAt?: Date;
10
+ /** List of user IDs (userId) with whom the calendar is shared */
11
+ sharedWith?: string[];
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ export interface ITask {
2
+ id: string;
3
+ spaceId: string;
4
+ calendarId: string;
5
+ title: string;
6
+ description?: string;
7
+ startAt?: Date;
8
+ isCompleted: boolean;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1 +1,3 @@
1
1
  export * from './Event';
2
+ export * from './Calendar';
3
+ export * from './Task';
@@ -15,3 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./Event"), exports);
18
+ __exportStar(require("./Calendar"), exports);
19
+ __exportStar(require("./Task"), exports);
@@ -102,13 +102,13 @@ export interface IFlowMessageContent {
102
102
  file_url?: string;
103
103
  isMessageSended?: boolean | false;
104
104
  /**Tool call related information */
105
+ toolNodeId?: string | null;
105
106
  toolCallId?: string;
106
107
  toolName?: string;
107
108
  toolArguments?: string;
108
109
  toolOutput?: string;
109
110
  toolStatus?: NodeStatus;
110
111
  toolTransferToOtherAgent?: boolean | false;
111
- toolNodeId?: string | null;
112
112
  toolNextNodeId?: string | null;
113
113
  arguments?: string;
114
114
  planSchema?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.599",
3
+ "version": "2.10.601",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",