asteroid-odyssey 1.7.257 → 1.7.263
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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1838,7 +1838,7 @@ type AgentsExecutionTerminalPayload = {
|
|
|
1838
1838
|
reason: 'unsubscribe' | 'complete' | 'error';
|
|
1839
1839
|
message?: string;
|
|
1840
1840
|
};
|
|
1841
|
-
type AgentsExecutionStatus = 'starting' | 'running' | 'paused' | 'awaiting_confirmation' | 'completed' | 'cancelled' | 'failed' | 'paused_by_agent';
|
|
1841
|
+
type AgentsExecutionStatus = 'queued' | 'starting' | 'running' | 'paused' | 'awaiting_confirmation' | 'completed' | 'cancelled' | 'failed' | 'paused_by_agent';
|
|
1842
1842
|
/**
|
|
1843
1843
|
* Fields that can be used for sorting executions
|
|
1844
1844
|
*/
|
|
@@ -2122,6 +2122,10 @@ type AgentsExecutionListItem = {
|
|
|
2122
2122
|
* When the execution was created
|
|
2123
2123
|
*/
|
|
2124
2124
|
createdAt: string;
|
|
2125
|
+
/**
|
|
2126
|
+
* When the execution actually started running; absent while queued. createdAt means "enqueued at" for executions that waited in the queue.
|
|
2127
|
+
*/
|
|
2128
|
+
startedAt?: string;
|
|
2125
2129
|
/**
|
|
2126
2130
|
* When the execution reached a terminal state (if applicable)
|
|
2127
2131
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1838,7 +1838,7 @@ type AgentsExecutionTerminalPayload = {
|
|
|
1838
1838
|
reason: 'unsubscribe' | 'complete' | 'error';
|
|
1839
1839
|
message?: string;
|
|
1840
1840
|
};
|
|
1841
|
-
type AgentsExecutionStatus = 'starting' | 'running' | 'paused' | 'awaiting_confirmation' | 'completed' | 'cancelled' | 'failed' | 'paused_by_agent';
|
|
1841
|
+
type AgentsExecutionStatus = 'queued' | 'starting' | 'running' | 'paused' | 'awaiting_confirmation' | 'completed' | 'cancelled' | 'failed' | 'paused_by_agent';
|
|
1842
1842
|
/**
|
|
1843
1843
|
* Fields that can be used for sorting executions
|
|
1844
1844
|
*/
|
|
@@ -2122,6 +2122,10 @@ type AgentsExecutionListItem = {
|
|
|
2122
2122
|
* When the execution was created
|
|
2123
2123
|
*/
|
|
2124
2124
|
createdAt: string;
|
|
2125
|
+
/**
|
|
2126
|
+
* When the execution actually started running; absent while queued. createdAt means "enqueued at" for executions that waited in the queue.
|
|
2127
|
+
*/
|
|
2128
|
+
startedAt?: string;
|
|
2125
2129
|
/**
|
|
2126
2130
|
* When the execution reached a terminal state (if applicable)
|
|
2127
2131
|
*/
|