asteroid-odyssey 1.7.371 → 1.7.386
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.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2078,9 +2078,8 @@ type AgentsExecutionApiTriggerContext = {
|
|
|
2078
2078
|
};
|
|
2079
2079
|
type AgentsExecutionTodoStatus = 'pending' | 'in_progress' | 'completed' | 'blocked' | 'failed' | 'canceled';
|
|
2080
2080
|
type AgentsExecutionTodo = {
|
|
2081
|
-
id
|
|
2081
|
+
id: string;
|
|
2082
2082
|
content: string;
|
|
2083
|
-
activeForm?: string;
|
|
2084
2083
|
status: AgentsExecutionTodoStatus;
|
|
2085
2084
|
outcome?: string;
|
|
2086
2085
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -2078,9 +2078,8 @@ type AgentsExecutionApiTriggerContext = {
|
|
|
2078
2078
|
};
|
|
2079
2079
|
type AgentsExecutionTodoStatus = 'pending' | 'in_progress' | 'completed' | 'blocked' | 'failed' | 'canceled';
|
|
2080
2080
|
type AgentsExecutionTodo = {
|
|
2081
|
-
id
|
|
2081
|
+
id: string;
|
|
2082
2082
|
content: string;
|
|
2083
|
-
activeForm?: string;
|
|
2084
2083
|
status: AgentsExecutionTodoStatus;
|
|
2085
2084
|
outcome?: string;
|
|
2086
2085
|
};
|