asteroid-odyssey 1.7.257 → 1.7.261

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 CHANGED
@@ -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
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.7.257",
3
+ "version": "1.7.261",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",