asteroid-odyssey 1.7.459 → 1.7.463
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 +36 -0
- package/dist/index.d.ts +36 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1659,6 +1659,12 @@ type AgentsExecutionListItem = {
|
|
|
1659
1659
|
* The ID of the agent profile used for this execution (if any)
|
|
1660
1660
|
*/
|
|
1661
1661
|
agentProfileId?: CommonUuid;
|
|
1662
|
+
/**
|
|
1663
|
+
* Map of workflow vault input names to the vault item IDs this execution ran with. Only admins can set bindings. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
1664
|
+
*/
|
|
1665
|
+
vaultItems?: {
|
|
1666
|
+
[key: string]: unknown;
|
|
1667
|
+
};
|
|
1662
1668
|
/**
|
|
1663
1669
|
* Input variables used for this execution
|
|
1664
1670
|
*/
|
|
@@ -2280,6 +2286,12 @@ type AgentsExecutionBatchBatchItem = {
|
|
|
2280
2286
|
* triggered. Mutually exclusive with agentProfileId.
|
|
2281
2287
|
*/
|
|
2282
2288
|
agentProfilePoolId?: CommonUuid;
|
|
2289
|
+
/**
|
|
2290
|
+
* Admin-only. Map of workflow vault input names to vault item IDs. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
2291
|
+
*/
|
|
2292
|
+
vaultItems?: {
|
|
2293
|
+
[key: string]: unknown;
|
|
2294
|
+
};
|
|
2283
2295
|
/**
|
|
2284
2296
|
* Input variables for the execution
|
|
2285
2297
|
*/
|
|
@@ -3392,6 +3404,12 @@ type AgentsScheduleBase = {
|
|
|
3392
3404
|
* Pool to select a profile from for each execution. Mutually exclusive with agentProfileId.
|
|
3393
3405
|
*/
|
|
3394
3406
|
agentProfilePoolId?: CommonUuid;
|
|
3407
|
+
/**
|
|
3408
|
+
* Map of workflow vault input names to vault item IDs. Only admins can set bindings. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
3409
|
+
*/
|
|
3410
|
+
vaultItems?: {
|
|
3411
|
+
[key: string]: unknown;
|
|
3412
|
+
};
|
|
3395
3413
|
name: string;
|
|
3396
3414
|
cronExpression: string;
|
|
3397
3415
|
/**
|
|
@@ -3452,6 +3470,12 @@ type AgentsScheduleCreateRequest = {
|
|
|
3452
3470
|
* Pool to select a profile from for each execution. Mutually exclusive with agentProfileId.
|
|
3453
3471
|
*/
|
|
3454
3472
|
agentProfilePoolId?: CommonUuid;
|
|
3473
|
+
/**
|
|
3474
|
+
* Admin-only. Map of workflow vault input names to vault item IDs. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
3475
|
+
*/
|
|
3476
|
+
vaultItems?: {
|
|
3477
|
+
[key: string]: unknown;
|
|
3478
|
+
};
|
|
3455
3479
|
cronExpression: string;
|
|
3456
3480
|
/**
|
|
3457
3481
|
* IANA time zone the cron expression is evaluated in. Defaults to UTC.
|
|
@@ -3479,6 +3503,12 @@ type AgentsScheduleUpdateRequest = {
|
|
|
3479
3503
|
* Pool to select a profile from for each execution. Mutually exclusive with agentProfileId.
|
|
3480
3504
|
*/
|
|
3481
3505
|
agentProfilePoolId?: CommonUuid;
|
|
3506
|
+
/**
|
|
3507
|
+
* Admin-only. Map of workflow vault input names to vault item IDs. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
3508
|
+
*/
|
|
3509
|
+
vaultItems?: {
|
|
3510
|
+
[key: string]: unknown;
|
|
3511
|
+
};
|
|
3482
3512
|
cronExpression?: string;
|
|
3483
3513
|
/**
|
|
3484
3514
|
* IANA time zone the cron expression is evaluated in.
|
|
@@ -3553,6 +3583,12 @@ type AgentsScheduledExecutionCreateRequest = {
|
|
|
3553
3583
|
* Per-execution runtime options applied when this execution is triggered.
|
|
3554
3584
|
*/
|
|
3555
3585
|
executionOptions?: AgentsAgentExecutionOptions;
|
|
3586
|
+
/**
|
|
3587
|
+
* Admin-only. Map of workflow vault input names to vault item IDs. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
3588
|
+
*/
|
|
3589
|
+
vaultItems?: {
|
|
3590
|
+
[key: string]: unknown;
|
|
3591
|
+
};
|
|
3556
3592
|
};
|
|
3557
3593
|
type AgentsScheduledExecutionRescheduleRequest = {
|
|
3558
3594
|
executeAt: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1659,6 +1659,12 @@ type AgentsExecutionListItem = {
|
|
|
1659
1659
|
* The ID of the agent profile used for this execution (if any)
|
|
1660
1660
|
*/
|
|
1661
1661
|
agentProfileId?: CommonUuid;
|
|
1662
|
+
/**
|
|
1663
|
+
* Map of workflow vault input names to the vault item IDs this execution ran with. Only admins can set bindings. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
1664
|
+
*/
|
|
1665
|
+
vaultItems?: {
|
|
1666
|
+
[key: string]: unknown;
|
|
1667
|
+
};
|
|
1662
1668
|
/**
|
|
1663
1669
|
* Input variables used for this execution
|
|
1664
1670
|
*/
|
|
@@ -2280,6 +2286,12 @@ type AgentsExecutionBatchBatchItem = {
|
|
|
2280
2286
|
* triggered. Mutually exclusive with agentProfileId.
|
|
2281
2287
|
*/
|
|
2282
2288
|
agentProfilePoolId?: CommonUuid;
|
|
2289
|
+
/**
|
|
2290
|
+
* Admin-only. Map of workflow vault input names to vault item IDs. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
2291
|
+
*/
|
|
2292
|
+
vaultItems?: {
|
|
2293
|
+
[key: string]: unknown;
|
|
2294
|
+
};
|
|
2283
2295
|
/**
|
|
2284
2296
|
* Input variables for the execution
|
|
2285
2297
|
*/
|
|
@@ -3392,6 +3404,12 @@ type AgentsScheduleBase = {
|
|
|
3392
3404
|
* Pool to select a profile from for each execution. Mutually exclusive with agentProfileId.
|
|
3393
3405
|
*/
|
|
3394
3406
|
agentProfilePoolId?: CommonUuid;
|
|
3407
|
+
/**
|
|
3408
|
+
* Map of workflow vault input names to vault item IDs. Only admins can set bindings. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
3409
|
+
*/
|
|
3410
|
+
vaultItems?: {
|
|
3411
|
+
[key: string]: unknown;
|
|
3412
|
+
};
|
|
3395
3413
|
name: string;
|
|
3396
3414
|
cronExpression: string;
|
|
3397
3415
|
/**
|
|
@@ -3452,6 +3470,12 @@ type AgentsScheduleCreateRequest = {
|
|
|
3452
3470
|
* Pool to select a profile from for each execution. Mutually exclusive with agentProfileId.
|
|
3453
3471
|
*/
|
|
3454
3472
|
agentProfilePoolId?: CommonUuid;
|
|
3473
|
+
/**
|
|
3474
|
+
* Admin-only. Map of workflow vault input names to vault item IDs. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
3475
|
+
*/
|
|
3476
|
+
vaultItems?: {
|
|
3477
|
+
[key: string]: unknown;
|
|
3478
|
+
};
|
|
3455
3479
|
cronExpression: string;
|
|
3456
3480
|
/**
|
|
3457
3481
|
* IANA time zone the cron expression is evaluated in. Defaults to UTC.
|
|
@@ -3479,6 +3503,12 @@ type AgentsScheduleUpdateRequest = {
|
|
|
3479
3503
|
* Pool to select a profile from for each execution. Mutually exclusive with agentProfileId.
|
|
3480
3504
|
*/
|
|
3481
3505
|
agentProfilePoolId?: CommonUuid;
|
|
3506
|
+
/**
|
|
3507
|
+
* Admin-only. Map of workflow vault input names to vault item IDs. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
3508
|
+
*/
|
|
3509
|
+
vaultItems?: {
|
|
3510
|
+
[key: string]: unknown;
|
|
3511
|
+
};
|
|
3482
3512
|
cronExpression?: string;
|
|
3483
3513
|
/**
|
|
3484
3514
|
* IANA time zone the cron expression is evaluated in.
|
|
@@ -3553,6 +3583,12 @@ type AgentsScheduledExecutionCreateRequest = {
|
|
|
3553
3583
|
* Per-execution runtime options applied when this execution is triggered.
|
|
3554
3584
|
*/
|
|
3555
3585
|
executionOptions?: AgentsAgentExecutionOptions;
|
|
3586
|
+
/**
|
|
3587
|
+
* Admin-only. Map of workflow vault input names to vault item IDs. Bound fields reach the agent as ##NAME.FIELD## placeholders.
|
|
3588
|
+
*/
|
|
3589
|
+
vaultItems?: {
|
|
3590
|
+
[key: string]: unknown;
|
|
3591
|
+
};
|
|
3556
3592
|
};
|
|
3557
3593
|
type AgentsScheduledExecutionRescheduleRequest = {
|
|
3558
3594
|
executeAt: string;
|