asteroid-odyssey 1.7.443 → 1.7.459
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 +454 -1
- package/dist/index.d.ts +454 -1
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -327,6 +327,26 @@ type Options$1<TData extends TDataShape = TDataShape, ThrowOnError extends boole
|
|
|
327
327
|
type ClientOptions = {
|
|
328
328
|
baseUrl: "https://odyssey.asteroid.ai/agents/v2" | (string & {});
|
|
329
329
|
};
|
|
330
|
+
type AgentsAgentAgentDuplicateRequest = {
|
|
331
|
+
/**
|
|
332
|
+
* The ID of the organization the duplicated agent is created in. The source agent is left untouched.
|
|
333
|
+
*/
|
|
334
|
+
organizationId: CommonUuid;
|
|
335
|
+
/**
|
|
336
|
+
* Optional name for the duplicated agent. Letters, digits, spaces, and punctuation excluding _ < > : " / \ | ? and *. Defaults to the source agent's name with a " (Copy)" suffix.
|
|
337
|
+
*/
|
|
338
|
+
name?: string;
|
|
339
|
+
};
|
|
340
|
+
type AgentsAgentAgentDuplicateResponse = {
|
|
341
|
+
/**
|
|
342
|
+
* The ID of the newly created agent
|
|
343
|
+
*/
|
|
344
|
+
id: CommonUuid;
|
|
345
|
+
/**
|
|
346
|
+
* The ID of the new agent's initial workflow version
|
|
347
|
+
*/
|
|
348
|
+
workflowId: CommonUuid;
|
|
349
|
+
};
|
|
330
350
|
type AgentsAgentAvailableTool = {
|
|
331
351
|
name: string;
|
|
332
352
|
description: string;
|
|
@@ -421,6 +441,18 @@ type AgentsAgentExecutionOptions = {
|
|
|
421
441
|
*/
|
|
422
442
|
softTimeoutMins?: number;
|
|
423
443
|
};
|
|
444
|
+
type AgentsAgentExecutionStats = {
|
|
445
|
+
timeSeries: Array<AgentsAgentTimeSeriesDataPoint>;
|
|
446
|
+
summary: AgentsAgentExecutionSummary;
|
|
447
|
+
};
|
|
448
|
+
type AgentsAgentExecutionSummary = {
|
|
449
|
+
totalExecutions: number;
|
|
450
|
+
outcomes: {
|
|
451
|
+
[key: string]: unknown;
|
|
452
|
+
};
|
|
453
|
+
averageDurationSeconds?: number;
|
|
454
|
+
totalDurationSeconds?: number;
|
|
455
|
+
};
|
|
424
456
|
type AgentsAgentExternalCreateRequest = {
|
|
425
457
|
organizationId: CommonUuid;
|
|
426
458
|
/**
|
|
@@ -429,17 +461,39 @@ type AgentsAgentExternalCreateRequest = {
|
|
|
429
461
|
name: string;
|
|
430
462
|
workflow: AgentsWorkflowExternalCreateWorkflowRequest;
|
|
431
463
|
};
|
|
464
|
+
type AgentsAgentExternalDetail = {
|
|
465
|
+
agent: AgentsAgentBase;
|
|
466
|
+
workflow: AgentsWorkflowExternalWorkflowSnapshot;
|
|
467
|
+
versionsMetadata: Array<AgentsAgentWorkflowVersionMetadata>;
|
|
468
|
+
};
|
|
432
469
|
/**
|
|
433
470
|
* Behaviour when the organisation or profile pool has no capacity for the execution
|
|
434
471
|
*/
|
|
435
472
|
type AgentsAgentOnCapacityLimit = "reject" | "queue";
|
|
436
473
|
type AgentsAgentSortField = "name" | "created_at";
|
|
474
|
+
type AgentsAgentTimeSeriesDataPoint = {
|
|
475
|
+
date: string;
|
|
476
|
+
outcomes: {
|
|
477
|
+
[key: string]: unknown;
|
|
478
|
+
};
|
|
479
|
+
averageDurations?: {
|
|
480
|
+
[key: string]: unknown;
|
|
481
|
+
};
|
|
482
|
+
};
|
|
437
483
|
type AgentsAgentUpdateRequest = {
|
|
438
484
|
/**
|
|
439
485
|
* New name for the agent. Letters, digits, spaces, and punctuation excluding _ < > : " / \ | ? and *.
|
|
440
486
|
*/
|
|
441
487
|
name?: string;
|
|
442
488
|
};
|
|
489
|
+
type AgentsAgentWorkflowVersionMetadata = {
|
|
490
|
+
id: CommonUuid;
|
|
491
|
+
parentId?: CommonUuid;
|
|
492
|
+
authorId?: CommonUuid;
|
|
493
|
+
version: number;
|
|
494
|
+
isPublished: boolean;
|
|
495
|
+
createdAt: string;
|
|
496
|
+
};
|
|
443
497
|
type AgentsContextUserContextResponse = {
|
|
444
498
|
userId: CommonUuid;
|
|
445
499
|
email: string;
|
|
@@ -1424,6 +1478,22 @@ type AgentsExecutionElementFileUploadCompletedDetails = {
|
|
|
1424
1478
|
* Discriminated union of environment states (discriminated by environmentType)
|
|
1425
1479
|
*/
|
|
1426
1480
|
type AgentsExecutionEnvironmentState = AgentsExecutionBrowserState | AgentsExecutionOsState;
|
|
1481
|
+
type AgentsExecutionExecutionAggregates = {
|
|
1482
|
+
/**
|
|
1483
|
+
* Counts grouped by execution status
|
|
1484
|
+
*/
|
|
1485
|
+
status_counts: AgentsExecutionStatusCounts;
|
|
1486
|
+
/**
|
|
1487
|
+
* Top outcome labels and their counts
|
|
1488
|
+
*/
|
|
1489
|
+
outcome_counts: AgentsExecutionExecutionOutcomeCounts;
|
|
1490
|
+
};
|
|
1491
|
+
type AgentsExecutionExecutionOutcomeCounts = {
|
|
1492
|
+
/**
|
|
1493
|
+
* Every outcome matching the filter, by count descending. Long-tail outcomes are included so none are hidden.
|
|
1494
|
+
*/
|
|
1495
|
+
items: Array<AgentsExecutionOutcomeCount>;
|
|
1496
|
+
};
|
|
1427
1497
|
/**
|
|
1428
1498
|
* Execution result containing outcome, reasoning, and result data
|
|
1429
1499
|
*/
|
|
@@ -1733,6 +1803,16 @@ type AgentsExecutionOsState = {
|
|
|
1733
1803
|
*/
|
|
1734
1804
|
providerConfig?: AgentsExecutionDaytonaProviderConfig;
|
|
1735
1805
|
};
|
|
1806
|
+
type AgentsExecutionOutcomeCount = {
|
|
1807
|
+
/**
|
|
1808
|
+
* The outcome label as set on the execution result
|
|
1809
|
+
*/
|
|
1810
|
+
label: string;
|
|
1811
|
+
/**
|
|
1812
|
+
* Number of executions with this outcome (within the requested filter)
|
|
1813
|
+
*/
|
|
1814
|
+
count: number;
|
|
1815
|
+
};
|
|
1736
1816
|
type AgentsExecutionPausedPayload = {
|
|
1737
1817
|
reason: string;
|
|
1738
1818
|
question?: AgentsExecutionAskUserQuestion;
|
|
@@ -1994,6 +2074,17 @@ type AgentsExecutionSdkWriteStartedDetails = {
|
|
|
1994
2074
|
*/
|
|
1995
2075
|
type AgentsExecutionSortField = "created_at" | "status" | "started_at";
|
|
1996
2076
|
type AgentsExecutionStatus = "queued" | "starting" | "running" | "paused" | "awaiting_confirmation" | "completed" | "cancelled" | "failed" | "paused_by_agent";
|
|
2077
|
+
type AgentsExecutionStatusCounts = {
|
|
2078
|
+
queued?: number;
|
|
2079
|
+
starting: number;
|
|
2080
|
+
running: number;
|
|
2081
|
+
paused: number;
|
|
2082
|
+
awaiting_confirmation: number;
|
|
2083
|
+
completed: number;
|
|
2084
|
+
cancelled: number;
|
|
2085
|
+
failed: number;
|
|
2086
|
+
paused_by_agent: number;
|
|
2087
|
+
};
|
|
1997
2088
|
/**
|
|
1998
2089
|
* Steel browser provider configuration
|
|
1999
2090
|
*/
|
|
@@ -2557,6 +2648,48 @@ type AgentsGraphModelsTransitionsTransitionPropertiesUnion = ({
|
|
|
2557
2648
|
type: "outcome_success";
|
|
2558
2649
|
} & AgentsGraphModelsTransitionsPropertiesOutcomeSuccessProperties);
|
|
2559
2650
|
type AgentsGraphModelsTransitionsTransitionType = "iris" | "selector" | "outcome_success";
|
|
2651
|
+
/**
|
|
2652
|
+
* Metadata about a language model
|
|
2653
|
+
*/
|
|
2654
|
+
type AgentsModelsModelMetadata = {
|
|
2655
|
+
/**
|
|
2656
|
+
* Unique identifier (UUID)
|
|
2657
|
+
*/
|
|
2658
|
+
id: CommonUuid;
|
|
2659
|
+
/**
|
|
2660
|
+
* Model slug (e.g., 'asteroid-fast')
|
|
2661
|
+
*/
|
|
2662
|
+
slug: string;
|
|
2663
|
+
/**
|
|
2664
|
+
* Display name for the model
|
|
2665
|
+
*/
|
|
2666
|
+
displayName: string;
|
|
2667
|
+
/**
|
|
2668
|
+
* Detailed description of the model's characteristics and use cases
|
|
2669
|
+
*/
|
|
2670
|
+
description: string;
|
|
2671
|
+
/**
|
|
2672
|
+
* Model supports computer use
|
|
2673
|
+
*/
|
|
2674
|
+
supportsComputerUse: boolean;
|
|
2675
|
+
/**
|
|
2676
|
+
* The provider. Absent for Asteroid aliases, which resolve to a concrete model at runtime.
|
|
2677
|
+
*/
|
|
2678
|
+
provider?: AgentsModelsModelProvider;
|
|
2679
|
+
};
|
|
2680
|
+
/**
|
|
2681
|
+
* Provider for a language model
|
|
2682
|
+
*/
|
|
2683
|
+
type AgentsModelsModelProvider = "openai" | "anthropic" | "google";
|
|
2684
|
+
/**
|
|
2685
|
+
* Response containing all available models
|
|
2686
|
+
*/
|
|
2687
|
+
type AgentsModelsModelsResponse = {
|
|
2688
|
+
/**
|
|
2689
|
+
* List of all available models
|
|
2690
|
+
*/
|
|
2691
|
+
models: Array<AgentsModelsModelMetadata>;
|
|
2692
|
+
};
|
|
2560
2693
|
/**
|
|
2561
2694
|
* Request to add profiles to a pool
|
|
2562
2695
|
*/
|
|
@@ -3251,6 +3384,130 @@ type AgentsProfileUpdateAgentProfileRequest = {
|
|
|
3251
3384
|
*/
|
|
3252
3385
|
cookiesToDelete?: Array<CommonUuid>;
|
|
3253
3386
|
};
|
|
3387
|
+
type AgentsScheduleBase = {
|
|
3388
|
+
id: CommonUuid;
|
|
3389
|
+
agentId: CommonUuid;
|
|
3390
|
+
agentProfileId?: CommonUuid;
|
|
3391
|
+
/**
|
|
3392
|
+
* Pool to select a profile from for each execution. Mutually exclusive with agentProfileId.
|
|
3393
|
+
*/
|
|
3394
|
+
agentProfilePoolId?: CommonUuid;
|
|
3395
|
+
name: string;
|
|
3396
|
+
cronExpression: string;
|
|
3397
|
+
/**
|
|
3398
|
+
* IANA time zone the cron expression is evaluated in, such as America/New_York. Local wall-clock time holds across daylight saving changes.
|
|
3399
|
+
*/
|
|
3400
|
+
timezone: string;
|
|
3401
|
+
enabled: boolean;
|
|
3402
|
+
/**
|
|
3403
|
+
* When true, enabling the schedule runs it immediately instead of waiting for the next cron tick.
|
|
3404
|
+
*/
|
|
3405
|
+
runOnEnable: boolean;
|
|
3406
|
+
version: number;
|
|
3407
|
+
inputs: {
|
|
3408
|
+
[key: string]: unknown;
|
|
3409
|
+
};
|
|
3410
|
+
/**
|
|
3411
|
+
* Set when this schedule runs a batch from a spreadsheet rather than a single execution
|
|
3412
|
+
*/
|
|
3413
|
+
batchSource?: AgentsScheduleBatchSource;
|
|
3414
|
+
/**
|
|
3415
|
+
* Per-execution runtime options applied to every run this schedule triggers.
|
|
3416
|
+
*/
|
|
3417
|
+
executionOptions?: AgentsAgentExecutionOptions;
|
|
3418
|
+
nextRunAt?: string;
|
|
3419
|
+
createdAt: string;
|
|
3420
|
+
updatedAt: string;
|
|
3421
|
+
};
|
|
3422
|
+
/**
|
|
3423
|
+
* Makes a schedule fan out into an execution batch instead of a single execution.
|
|
3424
|
+
* The sheet is re-read on every tick, so the batch is sized by whatever valid rows
|
|
3425
|
+
* exist at that moment.
|
|
3426
|
+
*/
|
|
3427
|
+
type AgentsScheduleBatchSource = {
|
|
3428
|
+
/**
|
|
3429
|
+
* Google Sheets URL. The gid selects the tab; without one the first tab is used.
|
|
3430
|
+
*/
|
|
3431
|
+
sheetUrl: string;
|
|
3432
|
+
/**
|
|
3433
|
+
* Maps a sheet column header to the workflow input it fills. Unmapped columns are ignored.
|
|
3434
|
+
*/
|
|
3435
|
+
columnMappings: {
|
|
3436
|
+
[key: string]: unknown;
|
|
3437
|
+
};
|
|
3438
|
+
/**
|
|
3439
|
+
* Inputs a row must supply non-empty to count as valid. Rows missing any of them
|
|
3440
|
+
* are skipped for that tick rather than failing the whole run.
|
|
3441
|
+
*/
|
|
3442
|
+
requiredInputs?: Array<string>;
|
|
3443
|
+
/**
|
|
3444
|
+
* How the resulting batch paces its executions
|
|
3445
|
+
*/
|
|
3446
|
+
config: AgentsExecutionBatchBatchConfig;
|
|
3447
|
+
};
|
|
3448
|
+
type AgentsScheduleCreateRequest = {
|
|
3449
|
+
name: string;
|
|
3450
|
+
agentProfileId?: CommonUuid;
|
|
3451
|
+
/**
|
|
3452
|
+
* Pool to select a profile from for each execution. Mutually exclusive with agentProfileId.
|
|
3453
|
+
*/
|
|
3454
|
+
agentProfilePoolId?: CommonUuid;
|
|
3455
|
+
cronExpression: string;
|
|
3456
|
+
/**
|
|
3457
|
+
* IANA time zone the cron expression is evaluated in. Defaults to UTC.
|
|
3458
|
+
*/
|
|
3459
|
+
timezone?: string;
|
|
3460
|
+
enabled?: boolean;
|
|
3461
|
+
runOnEnable?: boolean;
|
|
3462
|
+
version?: number;
|
|
3463
|
+
inputs?: {
|
|
3464
|
+
[key: string]: unknown;
|
|
3465
|
+
};
|
|
3466
|
+
/**
|
|
3467
|
+
* Set to make each tick create a batch from a spreadsheet instead of one execution
|
|
3468
|
+
*/
|
|
3469
|
+
batchSource?: AgentsScheduleBatchSource;
|
|
3470
|
+
/**
|
|
3471
|
+
* Per-execution runtime options applied to every run this schedule triggers.
|
|
3472
|
+
*/
|
|
3473
|
+
executionOptions?: AgentsAgentExecutionOptions;
|
|
3474
|
+
};
|
|
3475
|
+
type AgentsScheduleUpdateRequest = {
|
|
3476
|
+
name?: string;
|
|
3477
|
+
agentProfileId?: CommonUuid;
|
|
3478
|
+
/**
|
|
3479
|
+
* Pool to select a profile from for each execution. Mutually exclusive with agentProfileId.
|
|
3480
|
+
*/
|
|
3481
|
+
agentProfilePoolId?: CommonUuid;
|
|
3482
|
+
cronExpression?: string;
|
|
3483
|
+
/**
|
|
3484
|
+
* IANA time zone the cron expression is evaluated in.
|
|
3485
|
+
*/
|
|
3486
|
+
timezone?: string;
|
|
3487
|
+
enabled?: boolean;
|
|
3488
|
+
runOnEnable?: boolean;
|
|
3489
|
+
version?: number;
|
|
3490
|
+
inputs?: {
|
|
3491
|
+
[key: string]: unknown;
|
|
3492
|
+
};
|
|
3493
|
+
/**
|
|
3494
|
+
* Replaces the batch source. Omit to leave it unchanged; use clearBatchSource to remove it.
|
|
3495
|
+
*/
|
|
3496
|
+
batchSource?: AgentsScheduleBatchSource;
|
|
3497
|
+
/**
|
|
3498
|
+
* Converts a batch schedule back into a single-execution one
|
|
3499
|
+
*/
|
|
3500
|
+
clearBatchSource?: boolean;
|
|
3501
|
+
/**
|
|
3502
|
+
* Detaches both the profile and the pool. Omitting the ids on their own means
|
|
3503
|
+
* "leave unchanged", so this is the only way back to no profile.
|
|
3504
|
+
*/
|
|
3505
|
+
clearProfileSelection?: boolean;
|
|
3506
|
+
/**
|
|
3507
|
+
* Per-execution runtime options applied to every run this schedule triggers. Replaces the stored options in full, so send every field you want to keep.
|
|
3508
|
+
*/
|
|
3509
|
+
executionOptions?: AgentsAgentExecutionOptions;
|
|
3510
|
+
};
|
|
3254
3511
|
type AgentsScheduledExecutionBase = {
|
|
3255
3512
|
id: CommonUuid;
|
|
3256
3513
|
workflowId: CommonUuid;
|
|
@@ -3282,6 +3539,24 @@ type AgentsScheduledExecutionBase = {
|
|
|
3282
3539
|
createdAt: string;
|
|
3283
3540
|
updatedAt: string;
|
|
3284
3541
|
};
|
|
3542
|
+
type AgentsScheduledExecutionCreateRequest = {
|
|
3543
|
+
workflowId: CommonUuid;
|
|
3544
|
+
agentProfileId?: CommonUuid;
|
|
3545
|
+
inputVars?: {
|
|
3546
|
+
[key: string]: unknown;
|
|
3547
|
+
};
|
|
3548
|
+
metadata?: {
|
|
3549
|
+
[key: string]: unknown;
|
|
3550
|
+
};
|
|
3551
|
+
executeAt: string;
|
|
3552
|
+
/**
|
|
3553
|
+
* Per-execution runtime options applied when this execution is triggered.
|
|
3554
|
+
*/
|
|
3555
|
+
executionOptions?: AgentsAgentExecutionOptions;
|
|
3556
|
+
};
|
|
3557
|
+
type AgentsScheduledExecutionRescheduleRequest = {
|
|
3558
|
+
executeAt: string;
|
|
3559
|
+
};
|
|
3285
3560
|
type AgentsScheduledExecutionStatus = "pending" | "triggered" | "cancelled" | "awaiting_capacity" | "batch_paused" | "failed";
|
|
3286
3561
|
/**
|
|
3287
3562
|
* Request to validate a JSON schema against OpenAI structured output requirements
|
|
@@ -3307,6 +3582,159 @@ type AgentsSchemaValidateSchemaResponse = {
|
|
|
3307
3582
|
*/
|
|
3308
3583
|
errors: Array<string>;
|
|
3309
3584
|
};
|
|
3585
|
+
/**
|
|
3586
|
+
* A tag addressed by group and name, both matched case-insensitively. The group and the tag are created when missing.
|
|
3587
|
+
*/
|
|
3588
|
+
type AgentsTagAgentWorkflowTagName = {
|
|
3589
|
+
/**
|
|
3590
|
+
* Group name. Protected group names resolve to the protected group; anything else is a user-defined group.
|
|
3591
|
+
*/
|
|
3592
|
+
group: string;
|
|
3593
|
+
/**
|
|
3594
|
+
* Tag name
|
|
3595
|
+
*/
|
|
3596
|
+
name: string;
|
|
3597
|
+
};
|
|
3598
|
+
/**
|
|
3599
|
+
* Exactly one of groupId and protectedGroupKey selects the group.
|
|
3600
|
+
*/
|
|
3601
|
+
type AgentsTagCreateWorkflowTagRequest = {
|
|
3602
|
+
/**
|
|
3603
|
+
* Group to create the tag in
|
|
3604
|
+
*/
|
|
3605
|
+
groupId?: CommonUuid;
|
|
3606
|
+
/**
|
|
3607
|
+
* Protected group to create the tag in, materializing its row if needed
|
|
3608
|
+
*/
|
|
3609
|
+
protectedGroupKey?: AgentsTagWorkflowTagProtectedGroupKey;
|
|
3610
|
+
/**
|
|
3611
|
+
* Tag name; must not contain '::'
|
|
3612
|
+
*/
|
|
3613
|
+
name: string;
|
|
3614
|
+
/**
|
|
3615
|
+
* Catalog portal to link (portal group only). When absent on a portal tag, a live portal with the same name links automatically.
|
|
3616
|
+
*/
|
|
3617
|
+
catalogPortalId?: CommonUuid;
|
|
3618
|
+
};
|
|
3619
|
+
/**
|
|
3620
|
+
* Removals apply before additions, so a tag in both ends up on the agent. Adding an assigned tag or removing an unassigned one is a no-op.
|
|
3621
|
+
*/
|
|
3622
|
+
type AgentsTagPatchAgentWorkflowTagsRequest = {
|
|
3623
|
+
/**
|
|
3624
|
+
* Existing tag ids to add; all must be in the agent's organization
|
|
3625
|
+
*/
|
|
3626
|
+
add?: Array<CommonUuid>;
|
|
3627
|
+
/**
|
|
3628
|
+
* Tags to add by name, created when missing
|
|
3629
|
+
*/
|
|
3630
|
+
create?: Array<AgentsTagAgentWorkflowTagName>;
|
|
3631
|
+
/**
|
|
3632
|
+
* Tag ids to remove
|
|
3633
|
+
*/
|
|
3634
|
+
remove?: Array<CommonUuid>;
|
|
3635
|
+
};
|
|
3636
|
+
type AgentsTagSetAgentWorkflowTagsRequest = {
|
|
3637
|
+
/**
|
|
3638
|
+
* Full set of tag ids for the agent; replaces the current set. All tags must be in the agent's organization.
|
|
3639
|
+
*/
|
|
3640
|
+
tagIds: Array<CommonUuid>;
|
|
3641
|
+
};
|
|
3642
|
+
type AgentsTagUpdateWorkflowTagRequest = {
|
|
3643
|
+
/**
|
|
3644
|
+
* New tag name; must not contain '::'. An unlinked portal tag shows a matching live portal's logo automatically; the stored link changes only through explicit linking.
|
|
3645
|
+
*/
|
|
3646
|
+
name?: string;
|
|
3647
|
+
/**
|
|
3648
|
+
* Catalog portal to link (portal group only)
|
|
3649
|
+
*/
|
|
3650
|
+
catalogPortalId?: CommonUuid;
|
|
3651
|
+
/**
|
|
3652
|
+
* True unlinks the tag from its catalog portal and stops automatic relinking. Exclusive with catalogPortalId.
|
|
3653
|
+
*/
|
|
3654
|
+
unlinkPortal?: boolean;
|
|
3655
|
+
};
|
|
3656
|
+
/**
|
|
3657
|
+
* Org-scoped workflow tag. Portal-group tags can link to a catalog portal, which supplies the logo.
|
|
3658
|
+
*/
|
|
3659
|
+
type AgentsTagWorkflowTag = {
|
|
3660
|
+
/**
|
|
3661
|
+
* Unique identifier for the tag
|
|
3662
|
+
*/
|
|
3663
|
+
id: CommonUuid;
|
|
3664
|
+
/**
|
|
3665
|
+
* Organization this tag belongs to
|
|
3666
|
+
*/
|
|
3667
|
+
organizationId: CommonUuid;
|
|
3668
|
+
/**
|
|
3669
|
+
* Group the tag belongs to
|
|
3670
|
+
*/
|
|
3671
|
+
groupId: CommonUuid;
|
|
3672
|
+
/**
|
|
3673
|
+
* Tag name, unique per group case-insensitively
|
|
3674
|
+
*/
|
|
3675
|
+
name: string;
|
|
3676
|
+
/**
|
|
3677
|
+
* Catalog portal a portal tag is linked to. The name was copied at creation and does not follow catalog renames.
|
|
3678
|
+
*/
|
|
3679
|
+
catalogPortalId?: CommonUuid;
|
|
3680
|
+
/**
|
|
3681
|
+
* Signed URL for the tag's display portal logo: the linked portal's, or for an unlinked portal tag a unique live name match. Read-only, derived on read; absent when nothing resolves or the portal has no logo.
|
|
3682
|
+
*/
|
|
3683
|
+
logoUrl?: string;
|
|
3684
|
+
/**
|
|
3685
|
+
* Number of agents carrying this tag. Present on the organization list only.
|
|
3686
|
+
*/
|
|
3687
|
+
agentCount?: number;
|
|
3688
|
+
/**
|
|
3689
|
+
* When the tag was created
|
|
3690
|
+
*/
|
|
3691
|
+
createdAt: string;
|
|
3692
|
+
/**
|
|
3693
|
+
* When the tag was last updated
|
|
3694
|
+
*/
|
|
3695
|
+
updatedAt: string;
|
|
3696
|
+
};
|
|
3697
|
+
/**
|
|
3698
|
+
* Org-scoped group of workflow tags. A tag renders as group::tag, so names may not contain '::'.
|
|
3699
|
+
*/
|
|
3700
|
+
type AgentsTagWorkflowTagGroup = {
|
|
3701
|
+
/**
|
|
3702
|
+
* Unique identifier for the group
|
|
3703
|
+
*/
|
|
3704
|
+
id: CommonUuid;
|
|
3705
|
+
/**
|
|
3706
|
+
* Organization this group belongs to
|
|
3707
|
+
*/
|
|
3708
|
+
organizationId: CommonUuid;
|
|
3709
|
+
/**
|
|
3710
|
+
* Group name, unique per organization case-insensitively
|
|
3711
|
+
*/
|
|
3712
|
+
name: string;
|
|
3713
|
+
/**
|
|
3714
|
+
* Set on the code-defined protected groups. Protected groups cannot be renamed or deleted.
|
|
3715
|
+
*/
|
|
3716
|
+
protectedKey?: AgentsTagWorkflowTagProtectedGroupKey;
|
|
3717
|
+
/**
|
|
3718
|
+
* Lucide icon name shown next to the group name. User-defined groups only; protected groups' icons are fixed client-side.
|
|
3719
|
+
*/
|
|
3720
|
+
icon?: string;
|
|
3721
|
+
/**
|
|
3722
|
+
* Number of tags in the group. Present on the organization list only.
|
|
3723
|
+
*/
|
|
3724
|
+
tagCount?: number;
|
|
3725
|
+
/**
|
|
3726
|
+
* When the group was created
|
|
3727
|
+
*/
|
|
3728
|
+
createdAt: string;
|
|
3729
|
+
/**
|
|
3730
|
+
* When the group was last updated
|
|
3731
|
+
*/
|
|
3732
|
+
updatedAt: string;
|
|
3733
|
+
};
|
|
3734
|
+
/**
|
|
3735
|
+
* Key of a code-defined protected tag group. Protected groups exist for every organization; their rows materialize on first tag.
|
|
3736
|
+
*/
|
|
3737
|
+
type AgentsTagWorkflowTagProtectedGroupKey = "portal" | "client" | "task";
|
|
3310
3738
|
/**
|
|
3311
3739
|
* Browser provider type
|
|
3312
3740
|
*/
|
|
@@ -3399,6 +3827,10 @@ type AgentsWorkflowExternalCreateWorkflowRequest = {
|
|
|
3399
3827
|
* Typed input definitions for this workflow. Names referenced in prompts but omitted here default to optional strings.
|
|
3400
3828
|
*/
|
|
3401
3829
|
inputs?: Array<AgentsWorkflowInput>;
|
|
3830
|
+
/**
|
|
3831
|
+
* Admin-only. Named credentials the workflow needs. Each is supplied as a vault item at execution and exposed as ##NAME.FIELD## placeholders.
|
|
3832
|
+
*/
|
|
3833
|
+
vaultInputs?: Array<AgentsWorkflowVaultInputName>;
|
|
3402
3834
|
/**
|
|
3403
3835
|
* The settings for this workflow
|
|
3404
3836
|
*/
|
|
@@ -3478,6 +3910,10 @@ type AgentsWorkflowExternalWorkflowSnapshot = {
|
|
|
3478
3910
|
* Typed input definitions for workflow execution. Includes names referenced in prompts, which default to optional strings.
|
|
3479
3911
|
*/
|
|
3480
3912
|
inputs: Array<AgentsWorkflowInput>;
|
|
3913
|
+
/**
|
|
3914
|
+
* Admin-only. Named credentials the workflow needs. Each is supplied as a vault item at execution and exposed as ##NAME.FIELD## placeholders.
|
|
3915
|
+
*/
|
|
3916
|
+
vaultInputs?: Array<AgentsWorkflowVaultInputName>;
|
|
3481
3917
|
/**
|
|
3482
3918
|
* The files stored on this workflow version. Empty when the workflow has no files.
|
|
3483
3919
|
*/
|
|
@@ -3555,6 +3991,19 @@ type AgentsWorkflowPublishWorkflowResponse = {
|
|
|
3555
3991
|
*/
|
|
3556
3992
|
version: number;
|
|
3557
3993
|
};
|
|
3994
|
+
/**
|
|
3995
|
+
* Request to revert the editable head to an existing snapshot so it can be edited
|
|
3996
|
+
*/
|
|
3997
|
+
type AgentsWorkflowRevertWorkflowHeadRequest = {
|
|
3998
|
+
/**
|
|
3999
|
+
* The snapshot (workflow) ID to copy over the editable head
|
|
4000
|
+
*/
|
|
4001
|
+
snapshotId: CommonUuid;
|
|
4002
|
+
};
|
|
4003
|
+
/**
|
|
4004
|
+
* UPPER_SNAKE name of a credential a workflow needs. Bound to a vault item at execution as ##NAME.FIELD## placeholders.
|
|
4005
|
+
*/
|
|
4006
|
+
type AgentsWorkflowVaultInputName = string;
|
|
3558
4007
|
/**
|
|
3559
4008
|
* A file stored on a workflow version. Content is fetched via the workflow-scoped shared-file download endpoints using this id.
|
|
3560
4009
|
*/
|
|
@@ -3720,6 +4169,10 @@ type AgentsWorkflowWorkflowInputs = {
|
|
|
3720
4169
|
* Typed input definitions the workflow accepts at execution time
|
|
3721
4170
|
*/
|
|
3722
4171
|
inputs: Array<AgentsWorkflowInput>;
|
|
4172
|
+
/**
|
|
4173
|
+
* Admin-only. Named credentials the workflow needs. Each is supplied as a vault item at execution and exposed as ##NAME.FIELD## placeholders.
|
|
4174
|
+
*/
|
|
4175
|
+
vaultInputs?: Array<AgentsWorkflowVaultInputName>;
|
|
3723
4176
|
};
|
|
3724
4177
|
/**
|
|
3725
4178
|
* Output schemas keyed by output node name. Only output nodes that have a schema configured are included; the value is that node's JSON schema.
|
|
@@ -6718,4 +7171,4 @@ declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Op
|
|
|
6718
7171
|
*/
|
|
6719
7172
|
declare const workflowSpecValidationValidate: <ThrowOnError extends boolean = false>(options: Options<WorkflowSpecValidationValidateData, ThrowOnError>) => RequestResult<WorkflowSpecValidationValidateResponses, WorkflowSpecValidationValidateErrors, ThrowOnError>;
|
|
6720
7173
|
|
|
6721
|
-
export { type AdminCustomerActivityListData, type AdminCustomerActivityListError, type AdminCustomerActivityListErrors, type AdminCustomerActivityListResponse, type AdminCustomerActivityListResponses, type AdminCustomerActivityNotableListData, type AdminCustomerActivityNotableListError, type AdminCustomerActivityNotableListErrors, type AdminCustomerActivityNotableListResponse, type AdminCustomerActivityNotableListResponses, type AdminCustomerActivityWindowStatsListData, type AdminCustomerActivityWindowStatsListError, type AdminCustomerActivityWindowStatsListErrors, type AdminCustomerActivityWindowStatsListResponse, type AdminCustomerActivityWindowStatsListResponses, type AgentByIdDeleteData, type AgentByIdDeleteError, type AgentByIdDeleteErrors, type AgentByIdDeleteResponse, type AgentByIdDeleteResponses, type AgentByIdUpdateData, type AgentByIdUpdateError, type AgentByIdUpdateErrors, type AgentByIdUpdateResponses, type AgentCreateData, type AgentCreateError, type AgentCreateErrors, type AgentCreateResponse, type AgentCreateResponses, type AgentExecutePostData, type AgentExecutePostError, type AgentExecutePostErrors, type AgentExecutePostResponse, type AgentExecutePostResponses, type AgentListData, type AgentListError, type AgentListErrors, type AgentListResponse, type AgentListResponses, type AgentProfileClearBrowserCacheData, type AgentProfileClearBrowserCacheError, type AgentProfileClearBrowserCacheErrors, type AgentProfileClearBrowserCacheResponse, type AgentProfileClearBrowserCacheResponses, type AgentProfileDeleteData, type AgentProfileDeleteError, type AgentProfileDeleteErrors, type AgentProfileDeleteResponse, type AgentProfileDeleteResponses, type AgentProfileDuplicateData, type AgentProfileDuplicateError, type AgentProfileDuplicateErrors, type AgentProfileDuplicateResponse, type AgentProfileDuplicateResponses, type AgentProfileGetData, type AgentProfileGetError, type AgentProfileGetErrors, type AgentProfileGetInboxEmailData, type AgentProfileGetInboxEmailError, type AgentProfileGetInboxEmailErrors, type AgentProfileGetInboxEmailResponse, type AgentProfileGetInboxEmailResponses, type AgentProfileGetInboxEmailsData, type AgentProfileGetInboxEmailsError, type AgentProfileGetInboxEmailsErrors, type AgentProfileGetInboxEmailsResponse, type AgentProfileGetInboxEmailsResponses, type AgentProfileGetResponse, type AgentProfileGetResponses, type AgentProfilePoolDeleteData, type AgentProfilePoolDeleteError, type AgentProfilePoolDeleteErrors, type AgentProfilePoolDeleteResponse, type AgentProfilePoolDeleteResponses, type AgentProfilePoolGetData, type AgentProfilePoolGetError, type AgentProfilePoolGetErrors, type AgentProfilePoolGetResponse, type AgentProfilePoolGetResponses, type AgentProfilePoolMembersAddData, type AgentProfilePoolMembersAddError, type AgentProfilePoolMembersAddErrors, type AgentProfilePoolMembersAddResponse, type AgentProfilePoolMembersAddResponses, type AgentProfilePoolMembersListData, type AgentProfilePoolMembersListError, type AgentProfilePoolMembersListErrors, type AgentProfilePoolMembersListResponse, type AgentProfilePoolMembersListResponses, type AgentProfilePoolMembersRemoveData, type AgentProfilePoolMembersRemoveError, type AgentProfilePoolMembersRemoveErrors, type AgentProfilePoolMembersRemoveResponse, type AgentProfilePoolMembersRemoveResponses, type AgentProfilePoolUpdateData, type AgentProfilePoolUpdateError, type AgentProfilePoolUpdateErrors, type AgentProfilePoolUpdateResponse, type AgentProfilePoolUpdateResponses, type AgentProfilePoolsCreateData, type AgentProfilePoolsCreateError, type AgentProfilePoolsCreateErrors, type AgentProfilePoolsCreateResponse, type AgentProfilePoolsCreateResponses, type AgentProfilePoolsListData, type AgentProfilePoolsListError, type AgentProfilePoolsListErrors, type AgentProfilePoolsListResponse, type AgentProfilePoolsListResponses, type AgentProfileUpdateData, type AgentProfileUpdateError, type AgentProfileUpdateErrors, type AgentProfileUpdateResponse, type AgentProfileUpdateResponses, type AgentProfilesCreateData, type AgentProfilesCreateError, type AgentProfilesCreateErrors, type AgentProfilesCreateResponse, type AgentProfilesCreateResponses, type AgentProfilesListData, type AgentProfilesListError, type AgentProfilesListErrors, type AgentProfilesListResponse, type AgentProfilesListResponses, type AgentWorkflowHeadGetFilesData, type AgentWorkflowHeadGetFilesError, type AgentWorkflowHeadGetFilesErrors, type AgentWorkflowHeadGetFilesResponse, type AgentWorkflowHeadGetFilesResponses, type AgentWorkflowHeadPatchFilesData, type AgentWorkflowHeadPatchFilesError, type AgentWorkflowHeadPatchFilesErrors, type AgentWorkflowHeadPatchFilesResponse, type AgentWorkflowHeadPatchFilesResponses, type AgentWorkflowHeadPublishHeadData, type AgentWorkflowHeadPublishHeadError, type AgentWorkflowHeadPublishHeadErrors, type AgentWorkflowHeadPublishHeadResponse, type AgentWorkflowHeadPublishHeadResponses, type AgentWorkflowsCreateData, type AgentWorkflowsCreateError, type AgentWorkflowsCreateErrors, type AgentWorkflowsCreateResponse, type AgentWorkflowsCreateResponses, type AgentWorkflowsDeleteWorkflowData, type AgentWorkflowsDeleteWorkflowError, type AgentWorkflowsDeleteWorkflowErrors, type AgentWorkflowsDeleteWorkflowResponse, type AgentWorkflowsDeleteWorkflowResponses, type AgentWorkflowsExecuteData, type AgentWorkflowsExecuteError, type AgentWorkflowsExecuteErrors, type AgentWorkflowsExecuteResponse, type AgentWorkflowsExecuteResponses, type AgentWorkflowsGetData, type AgentWorkflowsGetError, type AgentWorkflowsGetErrors, type AgentWorkflowsGetFilesByVersionData, type AgentWorkflowsGetFilesByVersionError, type AgentWorkflowsGetFilesByVersionErrors, type AgentWorkflowsGetFilesByVersionResponse, type AgentWorkflowsGetFilesByVersionResponses, type AgentWorkflowsGetInputsData, type AgentWorkflowsGetInputsError, type AgentWorkflowsGetInputsErrors, type AgentWorkflowsGetInputsResponse, type AgentWorkflowsGetInputsResponses, type AgentWorkflowsGetOutputSchemasData, type AgentWorkflowsGetOutputSchemasError, type AgentWorkflowsGetOutputSchemasErrors, type AgentWorkflowsGetOutputSchemasResponse, type AgentWorkflowsGetOutputSchemasResponses, type AgentWorkflowsGetResponse, type AgentWorkflowsGetResponses, type AgentWorkflowsListData, type AgentWorkflowsListError, type AgentWorkflowsListErrors, type AgentWorkflowsListResponse, type AgentWorkflowsListResponses, type AgentWorkflowsPublishData, type AgentWorkflowsPublishError, type AgentWorkflowsPublishErrors, type AgentWorkflowsPublishResponse, type AgentWorkflowsPublishResponses, type AgentWorkflowsValidateData, type AgentWorkflowsValidateError, type AgentWorkflowsValidateErrors, type AgentWorkflowsValidateResponse, type AgentWorkflowsValidateResponses, type AgentsAgentAvailableTool, type AgentsAgentAvailableToolsResponse, type AgentsAgentBase, type AgentsAgentCreateResponse, type AgentsAgentExecuteAgentRequest, type AgentsAgentExecuteAgentResponse, type AgentsAgentExecutionOptions, type AgentsAgentExternalCreateRequest, type AgentsAgentOnCapacityLimit, type AgentsAgentSearch, type AgentsAgentSortField, type AgentsAgentUpdateRequest, type AgentsContextUserContextResponse, type AgentsContextUserOrganization, type AgentsCustomerActivityCustomerActivityList, type AgentsCustomerActivityCustomerActivityRow, type AgentsCustomerActivityCustomerWindowStatsList, type AgentsCustomerActivityCustomerWindowStatsRow, type AgentsCustomerActivityNotableActivityKind, type AgentsCustomerActivityNotableActivityList, type AgentsCustomerActivityNotableActivityRow, type AgentsCustomerActivityOrgWindowStat, type AgentsCustomerActivityRiskLevel, type AgentsDocsSearchDocsRequest, type AgentsDocsSearchDocsResponse, type AgentsDocsSearchResult, type AgentsEnvironmentAstroEnvironmentOwner, type AgentsEnvironmentEnvironment, type AgentsEnvironmentEnvironmentConnection, type AgentsEnvironmentEnvironmentLifecycle, type AgentsEnvironmentEnvironmentOwner, type AgentsEnvironmentEnvironmentSource, type AgentsEnvironmentEnvironmentStatus, type AgentsEnvironmentEnvironmentSummary, type AgentsEnvironmentExecutionEnvironmentOwner, type AgentsEnvironmentExplicitEnvironmentSource, type AgentsEnvironmentExternalEnvironmentOwner, type AgentsEnvironmentListEnvironmentsResponse, type AgentsEnvironmentOrganizationEnvironmentOwner, type AgentsEnvironmentSpecBrowserTemplate, type AgentsEnvironmentSpecEnvironmentTemplate, type AgentsEnvironmentSpecOsTemplate, type AgentsEnvironmentStartEnvironmentRequest, type AgentsEnvironmentWarmPoolEnvironmentOwner, type AgentsEnvironmentWorkflowEnvironmentSource, type AgentsExecutionActionName, type AgentsExecutionActivity, type AgentsExecutionActivityActionCompletedInfo, type AgentsExecutionActivityActionCompletedPayload, type AgentsExecutionActivityActionFailedPayload, type AgentsExecutionActivityActionStartedInfo, type AgentsExecutionActivityActionStartedPayload, type AgentsExecutionActivityCompactionPerformedPayload, type AgentsExecutionActivityCompactionStartedPayload, type AgentsExecutionActivityDisplay, type AgentsExecutionActivityFileAddedPayload, type AgentsExecutionActivityGenericPayload, type AgentsExecutionActivityInputSchemaResolvedPayload, type AgentsExecutionActivityOutputSchemaResolvedPayload, type AgentsExecutionActivityPayloadUnion, type AgentsExecutionActivityPlaywrightScriptGeneratedPayload, type AgentsExecutionActivityPresentationLevel, type AgentsExecutionActivityReasoningPayload, type AgentsExecutionActivityScriptVariablesSubstitutedPayload, type AgentsExecutionActivityStatusChangedPayload, type AgentsExecutionActivityStepCompletedPayload, type AgentsExecutionActivityStepStartedPayload, type AgentsExecutionActivityTodosUpdatedPayload, type AgentsExecutionActivityTransitionedNodePayload, type AgentsExecutionActivityUserMessageReceivedPayload, type AgentsExecutionAgentQueryContextCompletedDetails, type AgentsExecutionAgentQueryContextStartedDetails, type AgentsExecutionAnchorProviderConfig, type AgentsExecutionApiKeyRef, type AgentsExecutionApiTriggerContext, type AgentsExecutionAskUserQuestion, type AgentsExecutionAwaitingConfirmationPayload, type AgentsExecutionBatchBase, type AgentsExecutionBatchBatchConfig, type AgentsExecutionBatchBatchItem, type AgentsExecutionBatchCreateRequest, type AgentsExecutionBatchListFilterAgentId, type AgentsExecutionBatchListFilterStatus, type AgentsExecutionBatchMaxConcurrentConfig, type AgentsExecutionBatchStatus, type AgentsExecutionBatchTimeBatchingConfig, type AgentsExecutionBrowserProviderConfig, type AgentsExecutionBrowserRunCodeCompletedDetails, type AgentsExecutionBrowserRunCodeStartedDetails, type AgentsExecutionBrowserState, type AgentsExecutionCancelReason, type AgentsExecutionCancelledPayload, type AgentsExecutionComment, type AgentsExecutionCompletedPayload, type AgentsExecutionDaytonaProviderConfig, type AgentsExecutionElementFileUploadCompletedDetails, type AgentsExecutionEnvironmentState, type AgentsExecutionExecutionResult, type AgentsExecutionExtApiCallCompletedDetails, type AgentsExecutionExtGetMailCompletedDetails, type AgentsExecutionExtSendMailCompletedDetails, type AgentsExecutionExtSendMailStartedDetails, type AgentsExecutionFailedPayload, type AgentsExecutionFileListCompletedDetails, type AgentsExecutionFileReadCompletedDetails, type AgentsExecutionFileStageCompletedDetails, type AgentsExecutionHandoffPrepareCompletedDetails, type AgentsExecutionHandoffPrepareStartedDetails, type AgentsExecutionHandoffPrepareVariable, type AgentsExecutionHumanLabel, type AgentsExecutionInputResolutionSource, type AgentsExecutionListItem, type AgentsExecutionLlmCallPurpose, type AgentsExecutionLlmCallStartedDetails, type AgentsExecutionNavToCompletedDetails, type AgentsExecutionNavToStartedDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, type AgentsExecutionOsState, type AgentsExecutionPausedPayload, type AgentsExecutionPhase, type AgentsExecutionQuestionItem, type AgentsExecutionQuestionOption, type AgentsExecutionReadFileCompletedDetails, type AgentsExecutionReadFileStartedDetails, type AgentsExecutionScheduleRef, type AgentsExecutionScheduleTriggerContext, type AgentsExecutionScratchpadReadCompletedDetails, type AgentsExecutionScratchpadReadStartedDetails, type AgentsExecutionScratchpadWriteCompletedDetails, type AgentsExecutionScratchpadWriteStartedDetails, type AgentsExecutionScriptEvalCompletedDetails, type AgentsExecutionScriptEvalStartedDetails, type AgentsExecutionScriptFailure, type AgentsExecutionScriptHybridPlaywrightCompletedDetails, type AgentsExecutionScriptHybridPlaywrightStartedDetails, type AgentsExecutionScriptPadRunFunctionCompletedDetails, type AgentsExecutionScriptPlaywrightCompletedDetails, type AgentsExecutionScriptPlaywrightStartedDetails, type AgentsExecutionScriptpadReadCompletedDetails, type AgentsExecutionScriptpadReadStartedDetails, type AgentsExecutionScriptpadRunFunctionStartedDetails, type AgentsExecutionScriptpadSearchReplaceCompletedDetails, type AgentsExecutionScriptpadSearchReplaceStartedDetails, type AgentsExecutionScriptpadWriteCompletedDetails, type AgentsExecutionSdkBashCompletedDetails, type AgentsExecutionSdkBashStartedDetails, type AgentsExecutionSdkEditCompletedDetails, type AgentsExecutionSdkEditStartedDetails, type AgentsExecutionSdkGlobCompletedDetails, type AgentsExecutionSdkGlobStartedDetails, type AgentsExecutionSdkGrepCompletedDetails, type AgentsExecutionSdkGrepStartedDetails, type AgentsExecutionSdkReadCompletedDetails, type AgentsExecutionSdkReadStartedDetails, type AgentsExecutionSdkSkillCompletedDetails, type AgentsExecutionSdkSkillStartedDetails, type AgentsExecutionSdkWriteCompletedDetails, type AgentsExecutionSdkWriteStartedDetails, type AgentsExecutionSearchAgentId, type AgentsExecutionSearchAgentProfileIds, type AgentsExecutionSearchCreatedAfter, type AgentsExecutionSearchCreatedBefore, type AgentsExecutionSearchExecutionId, type AgentsExecutionSearchHasScriptFailures, type AgentsExecutionSearchHumanLabels, type AgentsExecutionSearchInputsKey, type AgentsExecutionSearchInputsValue, type AgentsExecutionSearchMetadataKey, type AgentsExecutionSearchMetadataValue, type AgentsExecutionSearchOutcomeLabel, type AgentsExecutionSearchPhase, type AgentsExecutionSearchStatus, type AgentsExecutionSearchTriggerSource, type AgentsExecutionSearchWorkflowVersion, type AgentsExecutionSortField, type AgentsExecutionStatus, type AgentsExecutionSteelProviderConfig, type AgentsExecutionTerminalPayload, type AgentsExecutionTodo, type AgentsExecutionTodoStatus, type AgentsExecutionTriggerContext, type AgentsExecutionTriggerRunner, type AgentsExecutionUiTriggerContext, type AgentsExecutionUpdateExecutionStatusRequest, type AgentsExecutionUpdateableStatus, type AgentsExecutionUserMessagesAddTextBody, type AgentsExecutionUtilGetDatetimeCompletedDetails, type AgentsExecutionUtilGetDatetimeStartedDetails, type AgentsExecutionWarmupTriggerContext, type AgentsFilesAgentFile, type AgentsFilesAgentFileCreatedBy, type AgentsFilesAgentFileDirectory, type AgentsFilesAgentFilesDirectoryListing, type AgentsFilesAgentFilesResponse, type AgentsFilesFile, type AgentsFilesFilePart, type AgentsFilesSignedUrlResponse, type AgentsFilesTempFile, type AgentsFilesTempFilesResponse, type AgentsGraphModelsAgentGraph, type AgentsGraphModelsExternalSettings, type AgentsGraphModelsNodesNode, type AgentsGraphModelsNodesNodePropertiesUnion, type AgentsGraphModelsNodesNodeType, type AgentsGraphModelsNodesPosition, type AgentsGraphModelsNodesPropertiesApiMethod, type AgentsGraphModelsNodesPropertiesApiProperties, type AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesIrisProperties, type AgentsGraphModelsNodesPropertiesNodeCapabilities, type AgentsGraphModelsNodesPropertiesOutcomeString, type AgentsGraphModelsNodesPropertiesOutputProperties, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVar, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVarType, type AgentsGraphModelsNodesPropertiesPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesStartProperties, type AgentsGraphModelsNodesPropertiesUrlProperties, type AgentsGraphModelsNodesSize, type AgentsGraphModelsStickyNote, type AgentsGraphModelsTransitionsPropertiesIrisProperties, type AgentsGraphModelsTransitionsPropertiesOutcomeSuccessProperties, type AgentsGraphModelsTransitionsPropertiesSelectorProperties, type AgentsGraphModelsTransitionsTransition, type AgentsGraphModelsTransitionsTransitionPropertiesUnion, type AgentsGraphModelsTransitionsTransitionType, type AgentsProfileAddProfilesToPoolRequest, type AgentsProfileAgentProfile, type AgentsProfileAgentProfileInboxEmailsResponse, type AgentsProfileAgentProfilePool, type AgentsProfileAgentProfilePoolMember, type AgentsProfileCookie, type AgentsProfileCountryCode, type AgentsProfileCreateAgentProfilePoolRequest, type AgentsProfileCreateAgentProfileRequest, type AgentsProfileCredential, type AgentsProfileCredentialUpdate, type AgentsProfileCustomProxyConfigInput, type AgentsProfileCustomProxyConfigOutput, type AgentsProfileDuplicateAgentProfileRequest, type AgentsProfileFeature, type AgentsProfileFingerprintIdInput, type AgentsProfileOperatingSystem, type AgentsProfilePoolSearch, type AgentsProfilePoolSortField, type AgentsProfileProfileInboxEmail, type AgentsProfileProfileInboxEmailDetail, type AgentsProfileProxyMode, type AgentsProfileProxyType, type AgentsProfileRemoveProfilesFromPoolRequest, type AgentsProfileSameSite, type AgentsProfileSearchFeature, type AgentsProfileSearchOperatingSystem, type AgentsProfileSearchProxyMode, type AgentsProfileSearchSearchName, type AgentsProfileSelectionStrategy, type AgentsProfileSortField, type AgentsProfileUpdateAgentProfilePoolRequest, type AgentsProfileUpdateAgentProfileRequest, type AgentsScheduledExecutionBase, type AgentsScheduledExecutionListFilterAgentId, type AgentsScheduledExecutionListFilterBatchId, type AgentsScheduledExecutionListFilterOrder, type AgentsScheduledExecutionListFilterStatus, type AgentsScheduledExecutionListFilterWorkflowId, type AgentsScheduledExecutionStatus, type AgentsSchemaValidateSchemaRequest, type AgentsSchemaValidateSchemaResponse, type AgentsWorkflowBrowserProvider, type AgentsWorkflowBrowserTemplateConfig, type AgentsWorkflowCreateWorkflowResponse, type AgentsWorkflowEnvironmentType, type AgentsWorkflowExecuteWorkflowRequest, type AgentsWorkflowExecuteWorkflowResponse, type AgentsWorkflowExternalCreateWorkflowRequest, type AgentsWorkflowExternalEnvironmentTemplate, type AgentsWorkflowExternalOsTemplateConfig, type AgentsWorkflowExternalWorkflowSnapshot, type AgentsWorkflowInput, type AgentsWorkflowOsProvider, type AgentsWorkflowOsRegion, type AgentsWorkflowOsType, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowWorkflowFile, type AgentsWorkflowWorkflowFileContentsMode, type AgentsWorkflowWorkflowFileEntry, type AgentsWorkflowWorkflowFileKind, type AgentsWorkflowWorkflowFileTree, type AgentsWorkflowWorkflowFileWrite, type AgentsWorkflowWorkflowFilesPatchRequest, type AgentsWorkflowWorkflowInputs, type AgentsWorkflowWorkflowOutputSchemas, type AgentsWorkflowWorkflowRef, type AgentsWorkflowWorkflowValidationIssue, type AgentsWorkflowWorkflowValidationResponse, type AgentsWorkflowWorkflowValidationSeverity, type AvailableToolsListData, type AvailableToolsListError, type AvailableToolsListErrors, type AvailableToolsListResponse, type AvailableToolsListResponses, type ClientOptions, type CommonBadRequestErrorBody, type CommonConflictErrorBody, type CommonError, type CommonForbiddenErrorBody, type CommonInternalServerErrorBody, type CommonNotFoundErrorBody, type CommonOsError, type CommonPaginationPage, type CommonPaginationPageSize, type CommonPaymentRequiredErrorBody, type CommonSortDirection, type CommonTooManyRequestsErrorBody, type CommonUnauthorizedErrorBody, type CommonUuid, type ContextGetData, type ContextGetError, type ContextGetErrors, type ContextGetResponse, type ContextGetResponses, type CreateClientConfig, type DocsSearchSearchData, type DocsSearchSearchError, type DocsSearchSearchErrors, type DocsSearchSearchResponse, type DocsSearchSearchResponses, type ExecutionActivitiesGetData, type ExecutionActivitiesGetError, type ExecutionActivitiesGetErrors, type ExecutionActivitiesGetResponse, type ExecutionActivitiesGetResponses, type ExecutionAgentFileDownloadRedirectData, type ExecutionAgentFileDownloadRedirectError, type ExecutionAgentFileDownloadRedirectErrors, type ExecutionAgentFilesGetData, type ExecutionAgentFilesGetError, type ExecutionAgentFilesGetErrors, type ExecutionAgentFilesGetResponse, type ExecutionAgentFilesGetResponses, type ExecutionContextFileDownloadRedirectData, type ExecutionContextFileDownloadRedirectError, type ExecutionContextFileDownloadRedirectErrors, type ExecutionContextFilesGetData, type ExecutionContextFilesGetError, type ExecutionContextFilesGetErrors, type ExecutionContextFilesGetResponse, type ExecutionContextFilesGetResponses, type ExecutionContextFilesUploadData, type ExecutionContextFilesUploadError, type ExecutionContextFilesUploadErrors, type ExecutionContextFilesUploadResponse, type ExecutionContextFilesUploadResponses, type ExecutionDebugFileDownloadRedirectData, type ExecutionDebugFileDownloadRedirectError, type ExecutionDebugFileDownloadRedirectErrors, type ExecutionFileDownloadRedirectData, type ExecutionFileDownloadRedirectError, type ExecutionFileDownloadRedirectErrors, type ExecutionFilesGetData, type ExecutionFilesGetError, type ExecutionFilesGetErrors, type ExecutionFilesGetResponse, type ExecutionFilesGetResponses, type ExecutionGetData, type ExecutionGetError, type ExecutionGetErrors, type ExecutionGetResponse, type ExecutionGetResponses, type ExecutionRecordingRedirectData, type ExecutionRecordingRedirectError, type ExecutionRecordingRedirectErrors, type ExecutionStatusUpdateData, type ExecutionStatusUpdateError, type ExecutionStatusUpdateErrors, type ExecutionStatusUpdateResponse, type ExecutionStatusUpdateResponses, type ExecutionUserMessagesAddData, type ExecutionUserMessagesAddError, type ExecutionUserMessagesAddErrors, type ExecutionUserMessagesAddResponse, type ExecutionUserMessagesAddResponses, type ExecutionsListData, type ExecutionsListError, type ExecutionsListErrors, type ExecutionsListResponse, type ExecutionsListResponses, type Options, type SchemaValidationValidateData, type SchemaValidationValidateError, type SchemaValidationValidateErrors, type SchemaValidationValidateResponse, type SchemaValidationValidateResponses, type TempFilesStageData, type TempFilesStageError, type TempFilesStageErrors, type TempFilesStageResponse, type TempFilesStageResponses, type Version, type WorkflowSpecValidationValidateData, type WorkflowSpecValidationValidateError, type WorkflowSpecValidationValidateErrors, type WorkflowSpecValidationValidateResponse, type WorkflowSpecValidationValidateResponses, adminCustomerActivityList, adminCustomerActivityNotableList, adminCustomerActivityWindowStatsList, agentByIdDelete, agentByIdUpdate, agentCreate, agentExecutePost, agentList, agentProfileClearBrowserCache, agentProfileDelete, agentProfileDuplicate, agentProfileGet, agentProfileGetInboxEmail, agentProfileGetInboxEmails, agentProfilePoolDelete, agentProfilePoolGet, agentProfilePoolMembersAdd, agentProfilePoolMembersList, agentProfilePoolMembersRemove, agentProfilePoolUpdate, agentProfilePoolsCreate, agentProfilePoolsList, agentProfileUpdate, agentProfilesCreate, agentProfilesList, agentWorkflowHeadGetFiles, agentWorkflowHeadPatchFiles, agentWorkflowHeadPublishHead, agentWorkflowsCreate, agentWorkflowsDeleteWorkflow, agentWorkflowsExecute, agentWorkflowsGet, agentWorkflowsGetFilesByVersion, agentWorkflowsGetInputs, agentWorkflowsGetOutputSchemas, agentWorkflowsList, agentWorkflowsPublish, agentWorkflowsValidate, availableToolsList, client, contextGet, docsSearchSearch, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage, workflowSpecValidationValidate };
|
|
7174
|
+
export { type AdminCustomerActivityListData, type AdminCustomerActivityListError, type AdminCustomerActivityListErrors, type AdminCustomerActivityListResponse, type AdminCustomerActivityListResponses, type AdminCustomerActivityNotableListData, type AdminCustomerActivityNotableListError, type AdminCustomerActivityNotableListErrors, type AdminCustomerActivityNotableListResponse, type AdminCustomerActivityNotableListResponses, type AdminCustomerActivityWindowStatsListData, type AdminCustomerActivityWindowStatsListError, type AdminCustomerActivityWindowStatsListErrors, type AdminCustomerActivityWindowStatsListResponse, type AdminCustomerActivityWindowStatsListResponses, type AgentByIdDeleteData, type AgentByIdDeleteError, type AgentByIdDeleteErrors, type AgentByIdDeleteResponse, type AgentByIdDeleteResponses, type AgentByIdUpdateData, type AgentByIdUpdateError, type AgentByIdUpdateErrors, type AgentByIdUpdateResponses, type AgentCreateData, type AgentCreateError, type AgentCreateErrors, type AgentCreateResponse, type AgentCreateResponses, type AgentExecutePostData, type AgentExecutePostError, type AgentExecutePostErrors, type AgentExecutePostResponse, type AgentExecutePostResponses, type AgentListData, type AgentListError, type AgentListErrors, type AgentListResponse, type AgentListResponses, type AgentProfileClearBrowserCacheData, type AgentProfileClearBrowserCacheError, type AgentProfileClearBrowserCacheErrors, type AgentProfileClearBrowserCacheResponse, type AgentProfileClearBrowserCacheResponses, type AgentProfileDeleteData, type AgentProfileDeleteError, type AgentProfileDeleteErrors, type AgentProfileDeleteResponse, type AgentProfileDeleteResponses, type AgentProfileDuplicateData, type AgentProfileDuplicateError, type AgentProfileDuplicateErrors, type AgentProfileDuplicateResponse, type AgentProfileDuplicateResponses, type AgentProfileGetData, type AgentProfileGetError, type AgentProfileGetErrors, type AgentProfileGetInboxEmailData, type AgentProfileGetInboxEmailError, type AgentProfileGetInboxEmailErrors, type AgentProfileGetInboxEmailResponse, type AgentProfileGetInboxEmailResponses, type AgentProfileGetInboxEmailsData, type AgentProfileGetInboxEmailsError, type AgentProfileGetInboxEmailsErrors, type AgentProfileGetInboxEmailsResponse, type AgentProfileGetInboxEmailsResponses, type AgentProfileGetResponse, type AgentProfileGetResponses, type AgentProfilePoolDeleteData, type AgentProfilePoolDeleteError, type AgentProfilePoolDeleteErrors, type AgentProfilePoolDeleteResponse, type AgentProfilePoolDeleteResponses, type AgentProfilePoolGetData, type AgentProfilePoolGetError, type AgentProfilePoolGetErrors, type AgentProfilePoolGetResponse, type AgentProfilePoolGetResponses, type AgentProfilePoolMembersAddData, type AgentProfilePoolMembersAddError, type AgentProfilePoolMembersAddErrors, type AgentProfilePoolMembersAddResponse, type AgentProfilePoolMembersAddResponses, type AgentProfilePoolMembersListData, type AgentProfilePoolMembersListError, type AgentProfilePoolMembersListErrors, type AgentProfilePoolMembersListResponse, type AgentProfilePoolMembersListResponses, type AgentProfilePoolMembersRemoveData, type AgentProfilePoolMembersRemoveError, type AgentProfilePoolMembersRemoveErrors, type AgentProfilePoolMembersRemoveResponse, type AgentProfilePoolMembersRemoveResponses, type AgentProfilePoolUpdateData, type AgentProfilePoolUpdateError, type AgentProfilePoolUpdateErrors, type AgentProfilePoolUpdateResponse, type AgentProfilePoolUpdateResponses, type AgentProfilePoolsCreateData, type AgentProfilePoolsCreateError, type AgentProfilePoolsCreateErrors, type AgentProfilePoolsCreateResponse, type AgentProfilePoolsCreateResponses, type AgentProfilePoolsListData, type AgentProfilePoolsListError, type AgentProfilePoolsListErrors, type AgentProfilePoolsListResponse, type AgentProfilePoolsListResponses, type AgentProfileUpdateData, type AgentProfileUpdateError, type AgentProfileUpdateErrors, type AgentProfileUpdateResponse, type AgentProfileUpdateResponses, type AgentProfilesCreateData, type AgentProfilesCreateError, type AgentProfilesCreateErrors, type AgentProfilesCreateResponse, type AgentProfilesCreateResponses, type AgentProfilesListData, type AgentProfilesListError, type AgentProfilesListErrors, type AgentProfilesListResponse, type AgentProfilesListResponses, type AgentWorkflowHeadGetFilesData, type AgentWorkflowHeadGetFilesError, type AgentWorkflowHeadGetFilesErrors, type AgentWorkflowHeadGetFilesResponse, type AgentWorkflowHeadGetFilesResponses, type AgentWorkflowHeadPatchFilesData, type AgentWorkflowHeadPatchFilesError, type AgentWorkflowHeadPatchFilesErrors, type AgentWorkflowHeadPatchFilesResponse, type AgentWorkflowHeadPatchFilesResponses, type AgentWorkflowHeadPublishHeadData, type AgentWorkflowHeadPublishHeadError, type AgentWorkflowHeadPublishHeadErrors, type AgentWorkflowHeadPublishHeadResponse, type AgentWorkflowHeadPublishHeadResponses, type AgentWorkflowsCreateData, type AgentWorkflowsCreateError, type AgentWorkflowsCreateErrors, type AgentWorkflowsCreateResponse, type AgentWorkflowsCreateResponses, type AgentWorkflowsDeleteWorkflowData, type AgentWorkflowsDeleteWorkflowError, type AgentWorkflowsDeleteWorkflowErrors, type AgentWorkflowsDeleteWorkflowResponse, type AgentWorkflowsDeleteWorkflowResponses, type AgentWorkflowsExecuteData, type AgentWorkflowsExecuteError, type AgentWorkflowsExecuteErrors, type AgentWorkflowsExecuteResponse, type AgentWorkflowsExecuteResponses, type AgentWorkflowsGetData, type AgentWorkflowsGetError, type AgentWorkflowsGetErrors, type AgentWorkflowsGetFilesByVersionData, type AgentWorkflowsGetFilesByVersionError, type AgentWorkflowsGetFilesByVersionErrors, type AgentWorkflowsGetFilesByVersionResponse, type AgentWorkflowsGetFilesByVersionResponses, type AgentWorkflowsGetInputsData, type AgentWorkflowsGetInputsError, type AgentWorkflowsGetInputsErrors, type AgentWorkflowsGetInputsResponse, type AgentWorkflowsGetInputsResponses, type AgentWorkflowsGetOutputSchemasData, type AgentWorkflowsGetOutputSchemasError, type AgentWorkflowsGetOutputSchemasErrors, type AgentWorkflowsGetOutputSchemasResponse, type AgentWorkflowsGetOutputSchemasResponses, type AgentWorkflowsGetResponse, type AgentWorkflowsGetResponses, type AgentWorkflowsListData, type AgentWorkflowsListError, type AgentWorkflowsListErrors, type AgentWorkflowsListResponse, type AgentWorkflowsListResponses, type AgentWorkflowsPublishData, type AgentWorkflowsPublishError, type AgentWorkflowsPublishErrors, type AgentWorkflowsPublishResponse, type AgentWorkflowsPublishResponses, type AgentWorkflowsValidateData, type AgentWorkflowsValidateError, type AgentWorkflowsValidateErrors, type AgentWorkflowsValidateResponse, type AgentWorkflowsValidateResponses, type AgentsAgentAgentDuplicateRequest, type AgentsAgentAgentDuplicateResponse, type AgentsAgentAvailableTool, type AgentsAgentAvailableToolsResponse, type AgentsAgentBase, type AgentsAgentCreateResponse, type AgentsAgentExecuteAgentRequest, type AgentsAgentExecuteAgentResponse, type AgentsAgentExecutionOptions, type AgentsAgentExecutionStats, type AgentsAgentExecutionSummary, type AgentsAgentExternalCreateRequest, type AgentsAgentExternalDetail, type AgentsAgentOnCapacityLimit, type AgentsAgentSearch, type AgentsAgentSortField, type AgentsAgentTimeSeriesDataPoint, type AgentsAgentUpdateRequest, type AgentsAgentWorkflowVersionMetadata, type AgentsContextUserContextResponse, type AgentsContextUserOrganization, type AgentsCustomerActivityCustomerActivityList, type AgentsCustomerActivityCustomerActivityRow, type AgentsCustomerActivityCustomerWindowStatsList, type AgentsCustomerActivityCustomerWindowStatsRow, type AgentsCustomerActivityNotableActivityKind, type AgentsCustomerActivityNotableActivityList, type AgentsCustomerActivityNotableActivityRow, type AgentsCustomerActivityOrgWindowStat, type AgentsCustomerActivityRiskLevel, type AgentsDocsSearchDocsRequest, type AgentsDocsSearchDocsResponse, type AgentsDocsSearchResult, type AgentsEnvironmentAstroEnvironmentOwner, type AgentsEnvironmentEnvironment, type AgentsEnvironmentEnvironmentConnection, type AgentsEnvironmentEnvironmentLifecycle, type AgentsEnvironmentEnvironmentOwner, type AgentsEnvironmentEnvironmentSource, type AgentsEnvironmentEnvironmentStatus, type AgentsEnvironmentEnvironmentSummary, type AgentsEnvironmentExecutionEnvironmentOwner, type AgentsEnvironmentExplicitEnvironmentSource, type AgentsEnvironmentExternalEnvironmentOwner, type AgentsEnvironmentListEnvironmentsResponse, type AgentsEnvironmentOrganizationEnvironmentOwner, type AgentsEnvironmentSpecBrowserTemplate, type AgentsEnvironmentSpecEnvironmentTemplate, type AgentsEnvironmentSpecOsTemplate, type AgentsEnvironmentStartEnvironmentRequest, type AgentsEnvironmentWarmPoolEnvironmentOwner, type AgentsEnvironmentWorkflowEnvironmentSource, type AgentsExecutionActionName, type AgentsExecutionActivity, type AgentsExecutionActivityActionCompletedInfo, type AgentsExecutionActivityActionCompletedPayload, type AgentsExecutionActivityActionFailedPayload, type AgentsExecutionActivityActionStartedInfo, type AgentsExecutionActivityActionStartedPayload, type AgentsExecutionActivityCompactionPerformedPayload, type AgentsExecutionActivityCompactionStartedPayload, type AgentsExecutionActivityDisplay, type AgentsExecutionActivityFileAddedPayload, type AgentsExecutionActivityGenericPayload, type AgentsExecutionActivityInputSchemaResolvedPayload, type AgentsExecutionActivityOutputSchemaResolvedPayload, type AgentsExecutionActivityPayloadUnion, type AgentsExecutionActivityPlaywrightScriptGeneratedPayload, type AgentsExecutionActivityPresentationLevel, type AgentsExecutionActivityReasoningPayload, type AgentsExecutionActivityScriptVariablesSubstitutedPayload, type AgentsExecutionActivityStatusChangedPayload, type AgentsExecutionActivityStepCompletedPayload, type AgentsExecutionActivityStepStartedPayload, type AgentsExecutionActivityTodosUpdatedPayload, type AgentsExecutionActivityTransitionedNodePayload, type AgentsExecutionActivityUserMessageReceivedPayload, type AgentsExecutionAgentQueryContextCompletedDetails, type AgentsExecutionAgentQueryContextStartedDetails, type AgentsExecutionAnchorProviderConfig, type AgentsExecutionApiKeyRef, type AgentsExecutionApiTriggerContext, type AgentsExecutionAskUserQuestion, type AgentsExecutionAwaitingConfirmationPayload, type AgentsExecutionBatchBase, type AgentsExecutionBatchBatchConfig, type AgentsExecutionBatchBatchItem, type AgentsExecutionBatchCreateRequest, type AgentsExecutionBatchListFilterAgentId, type AgentsExecutionBatchListFilterStatus, type AgentsExecutionBatchMaxConcurrentConfig, type AgentsExecutionBatchStatus, type AgentsExecutionBatchTimeBatchingConfig, type AgentsExecutionBrowserProviderConfig, type AgentsExecutionBrowserRunCodeCompletedDetails, type AgentsExecutionBrowserRunCodeStartedDetails, type AgentsExecutionBrowserState, type AgentsExecutionCancelReason, type AgentsExecutionCancelledPayload, type AgentsExecutionComment, type AgentsExecutionCompletedPayload, type AgentsExecutionDaytonaProviderConfig, type AgentsExecutionElementFileUploadCompletedDetails, type AgentsExecutionEnvironmentState, type AgentsExecutionExecutionAggregates, type AgentsExecutionExecutionOutcomeCounts, type AgentsExecutionExecutionResult, type AgentsExecutionExtApiCallCompletedDetails, type AgentsExecutionExtGetMailCompletedDetails, type AgentsExecutionExtSendMailCompletedDetails, type AgentsExecutionExtSendMailStartedDetails, type AgentsExecutionFailedPayload, type AgentsExecutionFileListCompletedDetails, type AgentsExecutionFileReadCompletedDetails, type AgentsExecutionFileStageCompletedDetails, type AgentsExecutionHandoffPrepareCompletedDetails, type AgentsExecutionHandoffPrepareStartedDetails, type AgentsExecutionHandoffPrepareVariable, type AgentsExecutionHumanLabel, type AgentsExecutionInputResolutionSource, type AgentsExecutionListItem, type AgentsExecutionLlmCallPurpose, type AgentsExecutionLlmCallStartedDetails, type AgentsExecutionNavToCompletedDetails, type AgentsExecutionNavToStartedDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, type AgentsExecutionOsState, type AgentsExecutionOutcomeCount, type AgentsExecutionPausedPayload, type AgentsExecutionPhase, type AgentsExecutionQuestionItem, type AgentsExecutionQuestionOption, type AgentsExecutionReadFileCompletedDetails, type AgentsExecutionReadFileStartedDetails, type AgentsExecutionScheduleRef, type AgentsExecutionScheduleTriggerContext, type AgentsExecutionScratchpadReadCompletedDetails, type AgentsExecutionScratchpadReadStartedDetails, type AgentsExecutionScratchpadWriteCompletedDetails, type AgentsExecutionScratchpadWriteStartedDetails, type AgentsExecutionScriptEvalCompletedDetails, type AgentsExecutionScriptEvalStartedDetails, type AgentsExecutionScriptFailure, type AgentsExecutionScriptHybridPlaywrightCompletedDetails, type AgentsExecutionScriptHybridPlaywrightStartedDetails, type AgentsExecutionScriptPadRunFunctionCompletedDetails, type AgentsExecutionScriptPlaywrightCompletedDetails, type AgentsExecutionScriptPlaywrightStartedDetails, type AgentsExecutionScriptpadReadCompletedDetails, type AgentsExecutionScriptpadReadStartedDetails, type AgentsExecutionScriptpadRunFunctionStartedDetails, type AgentsExecutionScriptpadSearchReplaceCompletedDetails, type AgentsExecutionScriptpadSearchReplaceStartedDetails, type AgentsExecutionScriptpadWriteCompletedDetails, type AgentsExecutionSdkBashCompletedDetails, type AgentsExecutionSdkBashStartedDetails, type AgentsExecutionSdkEditCompletedDetails, type AgentsExecutionSdkEditStartedDetails, type AgentsExecutionSdkGlobCompletedDetails, type AgentsExecutionSdkGlobStartedDetails, type AgentsExecutionSdkGrepCompletedDetails, type AgentsExecutionSdkGrepStartedDetails, type AgentsExecutionSdkReadCompletedDetails, type AgentsExecutionSdkReadStartedDetails, type AgentsExecutionSdkSkillCompletedDetails, type AgentsExecutionSdkSkillStartedDetails, type AgentsExecutionSdkWriteCompletedDetails, type AgentsExecutionSdkWriteStartedDetails, type AgentsExecutionSearchAgentId, type AgentsExecutionSearchAgentProfileIds, type AgentsExecutionSearchCreatedAfter, type AgentsExecutionSearchCreatedBefore, type AgentsExecutionSearchExecutionId, type AgentsExecutionSearchHasScriptFailures, type AgentsExecutionSearchHumanLabels, type AgentsExecutionSearchInputsKey, type AgentsExecutionSearchInputsValue, type AgentsExecutionSearchMetadataKey, type AgentsExecutionSearchMetadataValue, type AgentsExecutionSearchOutcomeLabel, type AgentsExecutionSearchPhase, type AgentsExecutionSearchStatus, type AgentsExecutionSearchTriggerSource, type AgentsExecutionSearchWorkflowVersion, type AgentsExecutionSortField, type AgentsExecutionStatus, type AgentsExecutionStatusCounts, type AgentsExecutionSteelProviderConfig, type AgentsExecutionTerminalPayload, type AgentsExecutionTodo, type AgentsExecutionTodoStatus, type AgentsExecutionTriggerContext, type AgentsExecutionTriggerRunner, type AgentsExecutionUiTriggerContext, type AgentsExecutionUpdateExecutionStatusRequest, type AgentsExecutionUpdateableStatus, type AgentsExecutionUserMessagesAddTextBody, type AgentsExecutionUtilGetDatetimeCompletedDetails, type AgentsExecutionUtilGetDatetimeStartedDetails, type AgentsExecutionWarmupTriggerContext, type AgentsFilesAgentFile, type AgentsFilesAgentFileCreatedBy, type AgentsFilesAgentFileDirectory, type AgentsFilesAgentFilesDirectoryListing, type AgentsFilesAgentFilesResponse, type AgentsFilesFile, type AgentsFilesFilePart, type AgentsFilesSignedUrlResponse, type AgentsFilesTempFile, type AgentsFilesTempFilesResponse, type AgentsGraphModelsAgentGraph, type AgentsGraphModelsExternalSettings, type AgentsGraphModelsNodesNode, type AgentsGraphModelsNodesNodePropertiesUnion, type AgentsGraphModelsNodesNodeType, type AgentsGraphModelsNodesPosition, type AgentsGraphModelsNodesPropertiesApiMethod, type AgentsGraphModelsNodesPropertiesApiProperties, type AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesIrisProperties, type AgentsGraphModelsNodesPropertiesNodeCapabilities, type AgentsGraphModelsNodesPropertiesOutcomeString, type AgentsGraphModelsNodesPropertiesOutputProperties, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVar, type AgentsGraphModelsNodesPropertiesPlaywrightScriptLlmVarType, type AgentsGraphModelsNodesPropertiesPlaywrightScriptProperties, type AgentsGraphModelsNodesPropertiesStartProperties, type AgentsGraphModelsNodesPropertiesUrlProperties, type AgentsGraphModelsNodesSize, type AgentsGraphModelsStickyNote, type AgentsGraphModelsTransitionsPropertiesIrisProperties, type AgentsGraphModelsTransitionsPropertiesOutcomeSuccessProperties, type AgentsGraphModelsTransitionsPropertiesSelectorProperties, type AgentsGraphModelsTransitionsTransition, type AgentsGraphModelsTransitionsTransitionPropertiesUnion, type AgentsGraphModelsTransitionsTransitionType, type AgentsModelsModelMetadata, type AgentsModelsModelProvider, type AgentsModelsModelsResponse, type AgentsProfileAddProfilesToPoolRequest, type AgentsProfileAgentProfile, type AgentsProfileAgentProfileInboxEmailsResponse, type AgentsProfileAgentProfilePool, type AgentsProfileAgentProfilePoolMember, type AgentsProfileCookie, type AgentsProfileCountryCode, type AgentsProfileCreateAgentProfilePoolRequest, type AgentsProfileCreateAgentProfileRequest, type AgentsProfileCredential, type AgentsProfileCredentialUpdate, type AgentsProfileCustomProxyConfigInput, type AgentsProfileCustomProxyConfigOutput, type AgentsProfileDuplicateAgentProfileRequest, type AgentsProfileFeature, type AgentsProfileFingerprintIdInput, type AgentsProfileOperatingSystem, type AgentsProfilePoolSearch, type AgentsProfilePoolSortField, type AgentsProfileProfileInboxEmail, type AgentsProfileProfileInboxEmailDetail, type AgentsProfileProxyMode, type AgentsProfileProxyType, type AgentsProfileRemoveProfilesFromPoolRequest, type AgentsProfileSameSite, type AgentsProfileSearchFeature, type AgentsProfileSearchOperatingSystem, type AgentsProfileSearchProxyMode, type AgentsProfileSearchSearchName, type AgentsProfileSelectionStrategy, type AgentsProfileSortField, type AgentsProfileUpdateAgentProfilePoolRequest, type AgentsProfileUpdateAgentProfileRequest, type AgentsScheduleBase, type AgentsScheduleBatchSource, type AgentsScheduleCreateRequest, type AgentsScheduleUpdateRequest, type AgentsScheduledExecutionBase, type AgentsScheduledExecutionCreateRequest, type AgentsScheduledExecutionListFilterAgentId, type AgentsScheduledExecutionListFilterBatchId, type AgentsScheduledExecutionListFilterOrder, type AgentsScheduledExecutionListFilterStatus, type AgentsScheduledExecutionListFilterWorkflowId, type AgentsScheduledExecutionRescheduleRequest, type AgentsScheduledExecutionStatus, type AgentsSchemaValidateSchemaRequest, type AgentsSchemaValidateSchemaResponse, type AgentsTagAgentWorkflowTagName, type AgentsTagCreateWorkflowTagRequest, type AgentsTagPatchAgentWorkflowTagsRequest, type AgentsTagSetAgentWorkflowTagsRequest, type AgentsTagUpdateWorkflowTagRequest, type AgentsTagWorkflowTag, type AgentsTagWorkflowTagGroup, type AgentsTagWorkflowTagProtectedGroupKey, type AgentsWorkflowBrowserProvider, type AgentsWorkflowBrowserTemplateConfig, type AgentsWorkflowCreateWorkflowResponse, type AgentsWorkflowEnvironmentType, type AgentsWorkflowExecuteWorkflowRequest, type AgentsWorkflowExecuteWorkflowResponse, type AgentsWorkflowExternalCreateWorkflowRequest, type AgentsWorkflowExternalEnvironmentTemplate, type AgentsWorkflowExternalOsTemplateConfig, type AgentsWorkflowExternalWorkflowSnapshot, type AgentsWorkflowInput, type AgentsWorkflowOsProvider, type AgentsWorkflowOsRegion, type AgentsWorkflowOsType, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowRevertWorkflowHeadRequest, type AgentsWorkflowVaultInputName, type AgentsWorkflowWorkflowFile, type AgentsWorkflowWorkflowFileContentsMode, type AgentsWorkflowWorkflowFileEntry, type AgentsWorkflowWorkflowFileKind, type AgentsWorkflowWorkflowFileTree, type AgentsWorkflowWorkflowFileWrite, type AgentsWorkflowWorkflowFilesPatchRequest, type AgentsWorkflowWorkflowInputs, type AgentsWorkflowWorkflowOutputSchemas, type AgentsWorkflowWorkflowRef, type AgentsWorkflowWorkflowValidationIssue, type AgentsWorkflowWorkflowValidationResponse, type AgentsWorkflowWorkflowValidationSeverity, type AvailableToolsListData, type AvailableToolsListError, type AvailableToolsListErrors, type AvailableToolsListResponse, type AvailableToolsListResponses, type ClientOptions, type CommonBadRequestErrorBody, type CommonConflictErrorBody, type CommonError, type CommonForbiddenErrorBody, type CommonInternalServerErrorBody, type CommonNotFoundErrorBody, type CommonOsError, type CommonPaginationPage, type CommonPaginationPageSize, type CommonPaymentRequiredErrorBody, type CommonSortDirection, type CommonTooManyRequestsErrorBody, type CommonUnauthorizedErrorBody, type CommonUuid, type ContextGetData, type ContextGetError, type ContextGetErrors, type ContextGetResponse, type ContextGetResponses, type CreateClientConfig, type DocsSearchSearchData, type DocsSearchSearchError, type DocsSearchSearchErrors, type DocsSearchSearchResponse, type DocsSearchSearchResponses, type ExecutionActivitiesGetData, type ExecutionActivitiesGetError, type ExecutionActivitiesGetErrors, type ExecutionActivitiesGetResponse, type ExecutionActivitiesGetResponses, type ExecutionAgentFileDownloadRedirectData, type ExecutionAgentFileDownloadRedirectError, type ExecutionAgentFileDownloadRedirectErrors, type ExecutionAgentFilesGetData, type ExecutionAgentFilesGetError, type ExecutionAgentFilesGetErrors, type ExecutionAgentFilesGetResponse, type ExecutionAgentFilesGetResponses, type ExecutionContextFileDownloadRedirectData, type ExecutionContextFileDownloadRedirectError, type ExecutionContextFileDownloadRedirectErrors, type ExecutionContextFilesGetData, type ExecutionContextFilesGetError, type ExecutionContextFilesGetErrors, type ExecutionContextFilesGetResponse, type ExecutionContextFilesGetResponses, type ExecutionContextFilesUploadData, type ExecutionContextFilesUploadError, type ExecutionContextFilesUploadErrors, type ExecutionContextFilesUploadResponse, type ExecutionContextFilesUploadResponses, type ExecutionDebugFileDownloadRedirectData, type ExecutionDebugFileDownloadRedirectError, type ExecutionDebugFileDownloadRedirectErrors, type ExecutionFileDownloadRedirectData, type ExecutionFileDownloadRedirectError, type ExecutionFileDownloadRedirectErrors, type ExecutionFilesGetData, type ExecutionFilesGetError, type ExecutionFilesGetErrors, type ExecutionFilesGetResponse, type ExecutionFilesGetResponses, type ExecutionGetData, type ExecutionGetError, type ExecutionGetErrors, type ExecutionGetResponse, type ExecutionGetResponses, type ExecutionRecordingRedirectData, type ExecutionRecordingRedirectError, type ExecutionRecordingRedirectErrors, type ExecutionStatusUpdateData, type ExecutionStatusUpdateError, type ExecutionStatusUpdateErrors, type ExecutionStatusUpdateResponse, type ExecutionStatusUpdateResponses, type ExecutionUserMessagesAddData, type ExecutionUserMessagesAddError, type ExecutionUserMessagesAddErrors, type ExecutionUserMessagesAddResponse, type ExecutionUserMessagesAddResponses, type ExecutionsListData, type ExecutionsListError, type ExecutionsListErrors, type ExecutionsListResponse, type ExecutionsListResponses, type Options, type SchemaValidationValidateData, type SchemaValidationValidateError, type SchemaValidationValidateErrors, type SchemaValidationValidateResponse, type SchemaValidationValidateResponses, type TempFilesStageData, type TempFilesStageError, type TempFilesStageErrors, type TempFilesStageResponse, type TempFilesStageResponses, type Version, type WorkflowSpecValidationValidateData, type WorkflowSpecValidationValidateError, type WorkflowSpecValidationValidateErrors, type WorkflowSpecValidationValidateResponse, type WorkflowSpecValidationValidateResponses, adminCustomerActivityList, adminCustomerActivityNotableList, adminCustomerActivityWindowStatsList, agentByIdDelete, agentByIdUpdate, agentCreate, agentExecutePost, agentList, agentProfileClearBrowserCache, agentProfileDelete, agentProfileDuplicate, agentProfileGet, agentProfileGetInboxEmail, agentProfileGetInboxEmails, agentProfilePoolDelete, agentProfilePoolGet, agentProfilePoolMembersAdd, agentProfilePoolMembersList, agentProfilePoolMembersRemove, agentProfilePoolUpdate, agentProfilePoolsCreate, agentProfilePoolsList, agentProfileUpdate, agentProfilesCreate, agentProfilesList, agentWorkflowHeadGetFiles, agentWorkflowHeadPatchFiles, agentWorkflowHeadPublishHead, agentWorkflowsCreate, agentWorkflowsDeleteWorkflow, agentWorkflowsExecute, agentWorkflowsGet, agentWorkflowsGetFilesByVersion, agentWorkflowsGetInputs, agentWorkflowsGetOutputSchemas, agentWorkflowsList, agentWorkflowsPublish, agentWorkflowsValidate, availableToolsList, client, contextGet, docsSearchSearch, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage, workflowSpecValidationValidate };
|