asteroid-odyssey 1.7.467 → 1.7.479
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 +12 -0
- package/dist/index.d.ts +12 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1737,6 +1737,10 @@ type AgentsExecutionListItem = {
|
|
|
1737
1737
|
* Script failures recorded for this execution (omitted when none occurred)
|
|
1738
1738
|
*/
|
|
1739
1739
|
scriptFailures?: Array<AgentsExecutionScriptFailure>;
|
|
1740
|
+
/**
|
|
1741
|
+
* When the retention purge removed this execution's data. Inputs, activities, files and recordings are gone; the row is a tombstone.
|
|
1742
|
+
*/
|
|
1743
|
+
purgedAt?: string;
|
|
1740
1744
|
};
|
|
1741
1745
|
type AgentsExecutionNavToCompletedDetails = {
|
|
1742
1746
|
actionName: "nav_to";
|
|
@@ -3434,6 +3438,14 @@ type AgentsScheduleBase = {
|
|
|
3434
3438
|
*/
|
|
3435
3439
|
executionOptions?: AgentsAgentExecutionOptions;
|
|
3436
3440
|
nextRunAt?: string;
|
|
3441
|
+
/**
|
|
3442
|
+
* When the schedule last fired.
|
|
3443
|
+
*/
|
|
3444
|
+
lastRunAt?: string;
|
|
3445
|
+
/**
|
|
3446
|
+
* Why the last tick failed, or absent when it succeeded. Set when a tick could not start its execution or batch, for example a sheet with more rows than one run may queue.
|
|
3447
|
+
*/
|
|
3448
|
+
lastRunError?: string;
|
|
3437
3449
|
createdAt: string;
|
|
3438
3450
|
updatedAt: string;
|
|
3439
3451
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1737,6 +1737,10 @@ type AgentsExecutionListItem = {
|
|
|
1737
1737
|
* Script failures recorded for this execution (omitted when none occurred)
|
|
1738
1738
|
*/
|
|
1739
1739
|
scriptFailures?: Array<AgentsExecutionScriptFailure>;
|
|
1740
|
+
/**
|
|
1741
|
+
* When the retention purge removed this execution's data. Inputs, activities, files and recordings are gone; the row is a tombstone.
|
|
1742
|
+
*/
|
|
1743
|
+
purgedAt?: string;
|
|
1740
1744
|
};
|
|
1741
1745
|
type AgentsExecutionNavToCompletedDetails = {
|
|
1742
1746
|
actionName: "nav_to";
|
|
@@ -3434,6 +3438,14 @@ type AgentsScheduleBase = {
|
|
|
3434
3438
|
*/
|
|
3435
3439
|
executionOptions?: AgentsAgentExecutionOptions;
|
|
3436
3440
|
nextRunAt?: string;
|
|
3441
|
+
/**
|
|
3442
|
+
* When the schedule last fired.
|
|
3443
|
+
*/
|
|
3444
|
+
lastRunAt?: string;
|
|
3445
|
+
/**
|
|
3446
|
+
* Why the last tick failed, or absent when it succeeded. Set when a tick could not start its execution or batch, for example a sheet with more rows than one run may queue.
|
|
3447
|
+
*/
|
|
3448
|
+
lastRunError?: string;
|
|
3437
3449
|
createdAt: string;
|
|
3438
3450
|
updatedAt: string;
|
|
3439
3451
|
};
|