asteroid-odyssey 1.7.310 → 1.7.312
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 +563 -1
- package/dist/index.d.ts +563 -1
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -993,6 +993,38 @@ type AgentsSchemaValidateSchemaRequest = {
|
|
|
993
993
|
[key: string]: unknown;
|
|
994
994
|
};
|
|
995
995
|
};
|
|
996
|
+
type AgentsScheduledExecutionStatus = 'pending' | 'triggered' | 'cancelled' | 'awaiting_capacity' | 'batch_paused' | 'failed';
|
|
997
|
+
type AgentsScheduledExecutionBase = {
|
|
998
|
+
id: CommonUuid;
|
|
999
|
+
workflowId: CommonUuid;
|
|
1000
|
+
agentId: CommonUuid;
|
|
1001
|
+
agentProfileId?: CommonUuid;
|
|
1002
|
+
/**
|
|
1003
|
+
* Set when the profile is chosen from a pool at trigger time rather than pinned up front
|
|
1004
|
+
*/
|
|
1005
|
+
agentProfilePoolId?: CommonUuid;
|
|
1006
|
+
batchId?: CommonUuid;
|
|
1007
|
+
inputVars: {
|
|
1008
|
+
[key: string]: unknown;
|
|
1009
|
+
};
|
|
1010
|
+
metadata: {
|
|
1011
|
+
[key: string]: unknown;
|
|
1012
|
+
};
|
|
1013
|
+
executeAt?: string;
|
|
1014
|
+
status: AgentsScheduledExecutionStatus;
|
|
1015
|
+
executionId?: CommonUuid;
|
|
1016
|
+
triggeredAt?: string;
|
|
1017
|
+
/**
|
|
1018
|
+
* Why this scheduled execution could not be triggered. Only set when status is `failed`.
|
|
1019
|
+
*/
|
|
1020
|
+
failureReason?: string;
|
|
1021
|
+
/**
|
|
1022
|
+
* Variant key the queued execution will run under. Read-only; set via `executionOptions` at create time.
|
|
1023
|
+
*/
|
|
1024
|
+
variantKey?: string;
|
|
1025
|
+
createdAt: string;
|
|
1026
|
+
updatedAt: string;
|
|
1027
|
+
};
|
|
996
1028
|
/**
|
|
997
1029
|
* Request to update an existing agent profile
|
|
998
1030
|
*/
|
|
@@ -1738,6 +1770,174 @@ type AgentsFilesAgentFilesDirectoryListing = {
|
|
|
1738
1770
|
*/
|
|
1739
1771
|
tracing?: Array<AgentsFilesAgentFile>;
|
|
1740
1772
|
};
|
|
1773
|
+
/**
|
|
1774
|
+
* Time-based batching configuration
|
|
1775
|
+
*/
|
|
1776
|
+
type AgentsExecutionBatchTimeBatchingConfig = {
|
|
1777
|
+
/**
|
|
1778
|
+
* Config type discriminator
|
|
1779
|
+
*/
|
|
1780
|
+
type: 'timeBatching';
|
|
1781
|
+
/**
|
|
1782
|
+
* Maximum number of executions to trigger in each batch
|
|
1783
|
+
*/
|
|
1784
|
+
batchSize: number;
|
|
1785
|
+
/**
|
|
1786
|
+
* Seconds to wait between each batch of executions
|
|
1787
|
+
*/
|
|
1788
|
+
batchInterval: number;
|
|
1789
|
+
};
|
|
1790
|
+
/**
|
|
1791
|
+
* Execution batch status
|
|
1792
|
+
*/
|
|
1793
|
+
type AgentsExecutionBatchStatus = 'pending' | 'running' | 'paused' | 'completed' | 'cancelled';
|
|
1794
|
+
/**
|
|
1795
|
+
* Max concurrent execution configuration
|
|
1796
|
+
*/
|
|
1797
|
+
type AgentsExecutionBatchMaxConcurrentConfig = {
|
|
1798
|
+
/**
|
|
1799
|
+
* Config type discriminator
|
|
1800
|
+
*/
|
|
1801
|
+
type: 'maxConcurrent';
|
|
1802
|
+
/**
|
|
1803
|
+
* Maximum number of executions running at the same time
|
|
1804
|
+
*/
|
|
1805
|
+
maxConcurrent: number;
|
|
1806
|
+
};
|
|
1807
|
+
/**
|
|
1808
|
+
* Request to create a new execution batch
|
|
1809
|
+
*/
|
|
1810
|
+
type AgentsExecutionBatchCreateRequest = {
|
|
1811
|
+
/**
|
|
1812
|
+
* Agent ID for this batch
|
|
1813
|
+
*/
|
|
1814
|
+
agentId: CommonUuid;
|
|
1815
|
+
/**
|
|
1816
|
+
* Human-readable name for the batch
|
|
1817
|
+
*/
|
|
1818
|
+
name: string;
|
|
1819
|
+
/**
|
|
1820
|
+
* When to start triggering executions
|
|
1821
|
+
*/
|
|
1822
|
+
startAt: string;
|
|
1823
|
+
/**
|
|
1824
|
+
* Batch configuration
|
|
1825
|
+
*/
|
|
1826
|
+
config: AgentsExecutionBatchBatchConfig;
|
|
1827
|
+
/**
|
|
1828
|
+
* Items to execute in this batch
|
|
1829
|
+
*/
|
|
1830
|
+
items: Array<AgentsExecutionBatchBatchItem>;
|
|
1831
|
+
};
|
|
1832
|
+
/**
|
|
1833
|
+
* Item to be executed in a batch
|
|
1834
|
+
*/
|
|
1835
|
+
type AgentsExecutionBatchBatchItem = {
|
|
1836
|
+
/**
|
|
1837
|
+
* Workflow ID to execute
|
|
1838
|
+
*/
|
|
1839
|
+
workflowId: CommonUuid;
|
|
1840
|
+
/**
|
|
1841
|
+
* Optional agent profile to use. Mutually exclusive with agentProfilePoolId.
|
|
1842
|
+
*/
|
|
1843
|
+
agentProfileId?: CommonUuid;
|
|
1844
|
+
/**
|
|
1845
|
+
* The ID of the agent profile pool to select a profile from when this item is
|
|
1846
|
+
* triggered. Mutually exclusive with agentProfileId.
|
|
1847
|
+
*/
|
|
1848
|
+
agentProfilePoolId?: CommonUuid;
|
|
1849
|
+
/**
|
|
1850
|
+
* Input variables for the execution
|
|
1851
|
+
*/
|
|
1852
|
+
inputVars?: {
|
|
1853
|
+
[key: string]: unknown;
|
|
1854
|
+
};
|
|
1855
|
+
/**
|
|
1856
|
+
* Metadata for the execution
|
|
1857
|
+
*/
|
|
1858
|
+
metadata?: {
|
|
1859
|
+
[key: string]: unknown;
|
|
1860
|
+
};
|
|
1861
|
+
/**
|
|
1862
|
+
* Per-execution runtime options for this item, such as its variant key.
|
|
1863
|
+
*/
|
|
1864
|
+
executionOptions?: AgentsAgentExecutionOptions;
|
|
1865
|
+
};
|
|
1866
|
+
/**
|
|
1867
|
+
* Discriminated union of batch configuration types (discriminated by type)
|
|
1868
|
+
*/
|
|
1869
|
+
type AgentsExecutionBatchBatchConfig = ({
|
|
1870
|
+
type: 'timeBatching';
|
|
1871
|
+
} & AgentsExecutionBatchTimeBatchingConfig) | ({
|
|
1872
|
+
type: 'maxConcurrent';
|
|
1873
|
+
} & AgentsExecutionBatchMaxConcurrentConfig);
|
|
1874
|
+
/**
|
|
1875
|
+
* Execution batch with status counts
|
|
1876
|
+
*/
|
|
1877
|
+
type AgentsExecutionBatchBase = {
|
|
1878
|
+
/**
|
|
1879
|
+
* Unique identifier for the batch
|
|
1880
|
+
*/
|
|
1881
|
+
id: CommonUuid;
|
|
1882
|
+
/**
|
|
1883
|
+
* Agent ID this batch belongs to
|
|
1884
|
+
*/
|
|
1885
|
+
agentId: CommonUuid;
|
|
1886
|
+
/**
|
|
1887
|
+
* Human-readable name for the batch
|
|
1888
|
+
*/
|
|
1889
|
+
name: string;
|
|
1890
|
+
/**
|
|
1891
|
+
* When to start triggering executions
|
|
1892
|
+
*/
|
|
1893
|
+
startAt: string;
|
|
1894
|
+
/**
|
|
1895
|
+
* Batch configuration
|
|
1896
|
+
*/
|
|
1897
|
+
config: AgentsExecutionBatchBatchConfig;
|
|
1898
|
+
/**
|
|
1899
|
+
* Batches sharing a group share one concurrency budget rather than each getting
|
|
1900
|
+
* its own. Equals the batch's own id for a one-off batch; a recurring batch
|
|
1901
|
+
* carries the id of the schedule that produced it.
|
|
1902
|
+
*/
|
|
1903
|
+
concurrencyGroupId: CommonUuid;
|
|
1904
|
+
/**
|
|
1905
|
+
* Current batch status
|
|
1906
|
+
*/
|
|
1907
|
+
status: AgentsExecutionBatchStatus;
|
|
1908
|
+
/**
|
|
1909
|
+
* Number of pending items
|
|
1910
|
+
*/
|
|
1911
|
+
pendingCount: number;
|
|
1912
|
+
/**
|
|
1913
|
+
* Number of triggered items
|
|
1914
|
+
*/
|
|
1915
|
+
triggeredCount: number;
|
|
1916
|
+
/**
|
|
1917
|
+
* Number of cancelled items
|
|
1918
|
+
*/
|
|
1919
|
+
cancelledCount: number;
|
|
1920
|
+
/**
|
|
1921
|
+
* Number of items awaiting capacity
|
|
1922
|
+
*/
|
|
1923
|
+
awaitingCapacityCount: number;
|
|
1924
|
+
/**
|
|
1925
|
+
* Number of items that could not be triggered and will not be retried
|
|
1926
|
+
*/
|
|
1927
|
+
failedCount: number;
|
|
1928
|
+
/**
|
|
1929
|
+
* Total number of items
|
|
1930
|
+
*/
|
|
1931
|
+
totalCount: number;
|
|
1932
|
+
/**
|
|
1933
|
+
* Creation timestamp
|
|
1934
|
+
*/
|
|
1935
|
+
createdAt: string;
|
|
1936
|
+
/**
|
|
1937
|
+
* Last update timestamp
|
|
1938
|
+
*/
|
|
1939
|
+
updatedAt: string;
|
|
1940
|
+
};
|
|
1741
1941
|
type AgentsExecutionUtilGetDatetimeStartedDetails = {
|
|
1742
1942
|
actionName: 'util_get_datetime';
|
|
1743
1943
|
tzTimezoneIdentifier: string;
|
|
@@ -3431,6 +3631,14 @@ type AgentsAgentAvailableTool = {
|
|
|
3431
3631
|
};
|
|
3432
3632
|
type CommonPaginationPageSize = number;
|
|
3433
3633
|
type CommonPaginationPage = number;
|
|
3634
|
+
type AgentsScheduledExecutionListFilterWorkflowId = CommonUuid;
|
|
3635
|
+
type AgentsScheduledExecutionListFilterStatus = AgentsScheduledExecutionStatus;
|
|
3636
|
+
/**
|
|
3637
|
+
* Sort order for scheduled executions by execute_at timestamp
|
|
3638
|
+
*/
|
|
3639
|
+
type AgentsScheduledExecutionListFilterOrder = 'asc' | 'desc';
|
|
3640
|
+
type AgentsScheduledExecutionListFilterBatchId = CommonUuid;
|
|
3641
|
+
type AgentsScheduledExecutionListFilterAgentId = CommonUuid;
|
|
3434
3642
|
/**
|
|
3435
3643
|
* Search profiles by name (partial match)
|
|
3436
3644
|
*/
|
|
@@ -3451,6 +3659,14 @@ type AgentsProfileSearchFeature = Array<AgentsProfileFeature>;
|
|
|
3451
3659
|
* Search pools by name (partial match)
|
|
3452
3660
|
*/
|
|
3453
3661
|
type AgentsProfilePoolSearch = string;
|
|
3662
|
+
/**
|
|
3663
|
+
* Filter by batch status
|
|
3664
|
+
*/
|
|
3665
|
+
type AgentsExecutionBatchListFilterStatus = AgentsExecutionBatchStatus;
|
|
3666
|
+
/**
|
|
3667
|
+
* Filter by agent ID
|
|
3668
|
+
*/
|
|
3669
|
+
type AgentsExecutionBatchListFilterAgentId = CommonUuid;
|
|
3454
3670
|
/**
|
|
3455
3671
|
* Filter by workflow version number
|
|
3456
3672
|
*/
|
|
@@ -5263,6 +5479,258 @@ type EnvironmentByIdStopResponses = {
|
|
|
5263
5479
|
204: void;
|
|
5264
5480
|
};
|
|
5265
5481
|
type EnvironmentByIdStopResponse = EnvironmentByIdStopResponses[keyof EnvironmentByIdStopResponses];
|
|
5482
|
+
type ExecutionBatchesListData = {
|
|
5483
|
+
body?: never;
|
|
5484
|
+
path?: never;
|
|
5485
|
+
query: {
|
|
5486
|
+
/**
|
|
5487
|
+
* Filter by agent ID
|
|
5488
|
+
*/
|
|
5489
|
+
agentId: CommonUuid;
|
|
5490
|
+
/**
|
|
5491
|
+
* Filter by batch status
|
|
5492
|
+
*/
|
|
5493
|
+
status?: AgentsExecutionBatchStatus;
|
|
5494
|
+
pageSize?: number;
|
|
5495
|
+
page?: number;
|
|
5496
|
+
};
|
|
5497
|
+
url: '/execution-batches';
|
|
5498
|
+
};
|
|
5499
|
+
type ExecutionBatchesListErrors = {
|
|
5500
|
+
/**
|
|
5501
|
+
* The server could not understand the request due to invalid syntax.
|
|
5502
|
+
*/
|
|
5503
|
+
400: CommonBadRequestErrorBody;
|
|
5504
|
+
/**
|
|
5505
|
+
* Access is unauthorized.
|
|
5506
|
+
*/
|
|
5507
|
+
401: CommonUnauthorizedErrorBody;
|
|
5508
|
+
/**
|
|
5509
|
+
* Access is forbidden.
|
|
5510
|
+
*/
|
|
5511
|
+
403: CommonForbiddenErrorBody;
|
|
5512
|
+
/**
|
|
5513
|
+
* The server cannot find the requested resource.
|
|
5514
|
+
*/
|
|
5515
|
+
404: CommonNotFoundErrorBody;
|
|
5516
|
+
/**
|
|
5517
|
+
* Server error
|
|
5518
|
+
*/
|
|
5519
|
+
500: CommonInternalServerErrorBody;
|
|
5520
|
+
};
|
|
5521
|
+
type ExecutionBatchesListError = ExecutionBatchesListErrors[keyof ExecutionBatchesListErrors];
|
|
5522
|
+
type ExecutionBatchesListResponses = {
|
|
5523
|
+
/**
|
|
5524
|
+
* The request has succeeded.
|
|
5525
|
+
*/
|
|
5526
|
+
200: {
|
|
5527
|
+
items: Array<AgentsExecutionBatchBase>;
|
|
5528
|
+
page: number;
|
|
5529
|
+
pageSize: number;
|
|
5530
|
+
total: number;
|
|
5531
|
+
};
|
|
5532
|
+
};
|
|
5533
|
+
type ExecutionBatchesListResponse = ExecutionBatchesListResponses[keyof ExecutionBatchesListResponses];
|
|
5534
|
+
type ExecutionBatchesCreateData = {
|
|
5535
|
+
body: AgentsExecutionBatchCreateRequest;
|
|
5536
|
+
path?: never;
|
|
5537
|
+
query?: never;
|
|
5538
|
+
url: '/execution-batches';
|
|
5539
|
+
};
|
|
5540
|
+
type ExecutionBatchesCreateErrors = {
|
|
5541
|
+
/**
|
|
5542
|
+
* The server could not understand the request due to invalid syntax.
|
|
5543
|
+
*/
|
|
5544
|
+
400: CommonBadRequestErrorBody;
|
|
5545
|
+
/**
|
|
5546
|
+
* Access is unauthorized.
|
|
5547
|
+
*/
|
|
5548
|
+
401: CommonUnauthorizedErrorBody;
|
|
5549
|
+
/**
|
|
5550
|
+
* Access is forbidden.
|
|
5551
|
+
*/
|
|
5552
|
+
403: CommonForbiddenErrorBody;
|
|
5553
|
+
/**
|
|
5554
|
+
* The server cannot find the requested resource.
|
|
5555
|
+
*/
|
|
5556
|
+
404: CommonNotFoundErrorBody;
|
|
5557
|
+
/**
|
|
5558
|
+
* Server error
|
|
5559
|
+
*/
|
|
5560
|
+
500: CommonInternalServerErrorBody;
|
|
5561
|
+
};
|
|
5562
|
+
type ExecutionBatchesCreateError = ExecutionBatchesCreateErrors[keyof ExecutionBatchesCreateErrors];
|
|
5563
|
+
type ExecutionBatchesCreateResponses = {
|
|
5564
|
+
/**
|
|
5565
|
+
* The request has succeeded and a new resource has been created as a result.
|
|
5566
|
+
*/
|
|
5567
|
+
201: AgentsExecutionBatchBase;
|
|
5568
|
+
};
|
|
5569
|
+
type ExecutionBatchesCreateResponse = ExecutionBatchesCreateResponses[keyof ExecutionBatchesCreateResponses];
|
|
5570
|
+
type ExecutionBatchGetData = {
|
|
5571
|
+
body?: never;
|
|
5572
|
+
path: {
|
|
5573
|
+
/**
|
|
5574
|
+
* The unique identifier of the execution batch
|
|
5575
|
+
*/
|
|
5576
|
+
batchId: CommonUuid;
|
|
5577
|
+
};
|
|
5578
|
+
query?: never;
|
|
5579
|
+
url: '/execution-batches/{batchId}';
|
|
5580
|
+
};
|
|
5581
|
+
type ExecutionBatchGetErrors = {
|
|
5582
|
+
/**
|
|
5583
|
+
* The server could not understand the request due to invalid syntax.
|
|
5584
|
+
*/
|
|
5585
|
+
400: CommonBadRequestErrorBody;
|
|
5586
|
+
/**
|
|
5587
|
+
* Access is unauthorized.
|
|
5588
|
+
*/
|
|
5589
|
+
401: CommonUnauthorizedErrorBody;
|
|
5590
|
+
/**
|
|
5591
|
+
* Access is forbidden.
|
|
5592
|
+
*/
|
|
5593
|
+
403: CommonForbiddenErrorBody;
|
|
5594
|
+
/**
|
|
5595
|
+
* The server cannot find the requested resource.
|
|
5596
|
+
*/
|
|
5597
|
+
404: CommonNotFoundErrorBody;
|
|
5598
|
+
/**
|
|
5599
|
+
* Server error
|
|
5600
|
+
*/
|
|
5601
|
+
500: CommonInternalServerErrorBody;
|
|
5602
|
+
};
|
|
5603
|
+
type ExecutionBatchGetError = ExecutionBatchGetErrors[keyof ExecutionBatchGetErrors];
|
|
5604
|
+
type ExecutionBatchGetResponses = {
|
|
5605
|
+
/**
|
|
5606
|
+
* The request has succeeded.
|
|
5607
|
+
*/
|
|
5608
|
+
200: AgentsExecutionBatchBase;
|
|
5609
|
+
};
|
|
5610
|
+
type ExecutionBatchGetResponse = ExecutionBatchGetResponses[keyof ExecutionBatchGetResponses];
|
|
5611
|
+
type ExecutionBatchCancelData = {
|
|
5612
|
+
body?: never;
|
|
5613
|
+
path: {
|
|
5614
|
+
/**
|
|
5615
|
+
* The unique identifier of the execution batch
|
|
5616
|
+
*/
|
|
5617
|
+
batchId: CommonUuid;
|
|
5618
|
+
};
|
|
5619
|
+
query?: never;
|
|
5620
|
+
url: '/execution-batches/{batchId}/cancel';
|
|
5621
|
+
};
|
|
5622
|
+
type ExecutionBatchCancelErrors = {
|
|
5623
|
+
/**
|
|
5624
|
+
* The server could not understand the request due to invalid syntax.
|
|
5625
|
+
*/
|
|
5626
|
+
400: CommonBadRequestErrorBody;
|
|
5627
|
+
/**
|
|
5628
|
+
* Access is unauthorized.
|
|
5629
|
+
*/
|
|
5630
|
+
401: CommonUnauthorizedErrorBody;
|
|
5631
|
+
/**
|
|
5632
|
+
* Access is forbidden.
|
|
5633
|
+
*/
|
|
5634
|
+
403: CommonForbiddenErrorBody;
|
|
5635
|
+
/**
|
|
5636
|
+
* The server cannot find the requested resource.
|
|
5637
|
+
*/
|
|
5638
|
+
404: CommonNotFoundErrorBody;
|
|
5639
|
+
/**
|
|
5640
|
+
* Server error
|
|
5641
|
+
*/
|
|
5642
|
+
500: CommonInternalServerErrorBody;
|
|
5643
|
+
};
|
|
5644
|
+
type ExecutionBatchCancelError = ExecutionBatchCancelErrors[keyof ExecutionBatchCancelErrors];
|
|
5645
|
+
type ExecutionBatchCancelResponses = {
|
|
5646
|
+
/**
|
|
5647
|
+
* The request has succeeded.
|
|
5648
|
+
*/
|
|
5649
|
+
200: AgentsExecutionBatchBase;
|
|
5650
|
+
};
|
|
5651
|
+
type ExecutionBatchCancelResponse = ExecutionBatchCancelResponses[keyof ExecutionBatchCancelResponses];
|
|
5652
|
+
type ExecutionBatchPauseData = {
|
|
5653
|
+
body?: never;
|
|
5654
|
+
path: {
|
|
5655
|
+
/**
|
|
5656
|
+
* The unique identifier of the execution batch
|
|
5657
|
+
*/
|
|
5658
|
+
batchId: CommonUuid;
|
|
5659
|
+
};
|
|
5660
|
+
query?: never;
|
|
5661
|
+
url: '/execution-batches/{batchId}/pause';
|
|
5662
|
+
};
|
|
5663
|
+
type ExecutionBatchPauseErrors = {
|
|
5664
|
+
/**
|
|
5665
|
+
* The server could not understand the request due to invalid syntax.
|
|
5666
|
+
*/
|
|
5667
|
+
400: CommonBadRequestErrorBody;
|
|
5668
|
+
/**
|
|
5669
|
+
* Access is unauthorized.
|
|
5670
|
+
*/
|
|
5671
|
+
401: CommonUnauthorizedErrorBody;
|
|
5672
|
+
/**
|
|
5673
|
+
* Access is forbidden.
|
|
5674
|
+
*/
|
|
5675
|
+
403: CommonForbiddenErrorBody;
|
|
5676
|
+
/**
|
|
5677
|
+
* The server cannot find the requested resource.
|
|
5678
|
+
*/
|
|
5679
|
+
404: CommonNotFoundErrorBody;
|
|
5680
|
+
/**
|
|
5681
|
+
* Server error
|
|
5682
|
+
*/
|
|
5683
|
+
500: CommonInternalServerErrorBody;
|
|
5684
|
+
};
|
|
5685
|
+
type ExecutionBatchPauseError = ExecutionBatchPauseErrors[keyof ExecutionBatchPauseErrors];
|
|
5686
|
+
type ExecutionBatchPauseResponses = {
|
|
5687
|
+
/**
|
|
5688
|
+
* The request has succeeded.
|
|
5689
|
+
*/
|
|
5690
|
+
200: AgentsExecutionBatchBase;
|
|
5691
|
+
};
|
|
5692
|
+
type ExecutionBatchPauseResponse = ExecutionBatchPauseResponses[keyof ExecutionBatchPauseResponses];
|
|
5693
|
+
type ExecutionBatchResumeData = {
|
|
5694
|
+
body?: never;
|
|
5695
|
+
path: {
|
|
5696
|
+
/**
|
|
5697
|
+
* The unique identifier of the execution batch
|
|
5698
|
+
*/
|
|
5699
|
+
batchId: CommonUuid;
|
|
5700
|
+
};
|
|
5701
|
+
query?: never;
|
|
5702
|
+
url: '/execution-batches/{batchId}/resume';
|
|
5703
|
+
};
|
|
5704
|
+
type ExecutionBatchResumeErrors = {
|
|
5705
|
+
/**
|
|
5706
|
+
* The server could not understand the request due to invalid syntax.
|
|
5707
|
+
*/
|
|
5708
|
+
400: CommonBadRequestErrorBody;
|
|
5709
|
+
/**
|
|
5710
|
+
* Access is unauthorized.
|
|
5711
|
+
*/
|
|
5712
|
+
401: CommonUnauthorizedErrorBody;
|
|
5713
|
+
/**
|
|
5714
|
+
* Access is forbidden.
|
|
5715
|
+
*/
|
|
5716
|
+
403: CommonForbiddenErrorBody;
|
|
5717
|
+
/**
|
|
5718
|
+
* The server cannot find the requested resource.
|
|
5719
|
+
*/
|
|
5720
|
+
404: CommonNotFoundErrorBody;
|
|
5721
|
+
/**
|
|
5722
|
+
* Server error
|
|
5723
|
+
*/
|
|
5724
|
+
500: CommonInternalServerErrorBody;
|
|
5725
|
+
};
|
|
5726
|
+
type ExecutionBatchResumeError = ExecutionBatchResumeErrors[keyof ExecutionBatchResumeErrors];
|
|
5727
|
+
type ExecutionBatchResumeResponses = {
|
|
5728
|
+
/**
|
|
5729
|
+
* The request has succeeded.
|
|
5730
|
+
*/
|
|
5731
|
+
200: AgentsExecutionBatchBase;
|
|
5732
|
+
};
|
|
5733
|
+
type ExecutionBatchResumeResponse = ExecutionBatchResumeResponses[keyof ExecutionBatchResumeResponses];
|
|
5266
5734
|
type ExecutionsListData = {
|
|
5267
5735
|
body?: never;
|
|
5268
5736
|
path?: never;
|
|
@@ -5749,6 +6217,58 @@ type ExecutionUserMessagesAddResponses = {
|
|
|
5749
6217
|
201: 'User message added.';
|
|
5750
6218
|
};
|
|
5751
6219
|
type ExecutionUserMessagesAddResponse = ExecutionUserMessagesAddResponses[keyof ExecutionUserMessagesAddResponses];
|
|
6220
|
+
type ScheduledExecutionsListData = {
|
|
6221
|
+
body?: never;
|
|
6222
|
+
path?: never;
|
|
6223
|
+
query: {
|
|
6224
|
+
agentId: CommonUuid;
|
|
6225
|
+
workflowId?: CommonUuid;
|
|
6226
|
+
status?: AgentsScheduledExecutionStatus;
|
|
6227
|
+
batchId?: CommonUuid;
|
|
6228
|
+
/**
|
|
6229
|
+
* Sort order for scheduled executions by execute_at timestamp
|
|
6230
|
+
*/
|
|
6231
|
+
order?: 'asc' | 'desc';
|
|
6232
|
+
pageSize?: number;
|
|
6233
|
+
page?: number;
|
|
6234
|
+
};
|
|
6235
|
+
url: '/scheduled-executions';
|
|
6236
|
+
};
|
|
6237
|
+
type ScheduledExecutionsListErrors = {
|
|
6238
|
+
/**
|
|
6239
|
+
* The server could not understand the request due to invalid syntax.
|
|
6240
|
+
*/
|
|
6241
|
+
400: CommonBadRequestErrorBody;
|
|
6242
|
+
/**
|
|
6243
|
+
* Access is unauthorized.
|
|
6244
|
+
*/
|
|
6245
|
+
401: CommonUnauthorizedErrorBody;
|
|
6246
|
+
/**
|
|
6247
|
+
* Access is forbidden.
|
|
6248
|
+
*/
|
|
6249
|
+
403: CommonForbiddenErrorBody;
|
|
6250
|
+
/**
|
|
6251
|
+
* The server cannot find the requested resource.
|
|
6252
|
+
*/
|
|
6253
|
+
404: CommonNotFoundErrorBody;
|
|
6254
|
+
/**
|
|
6255
|
+
* Server error
|
|
6256
|
+
*/
|
|
6257
|
+
500: CommonInternalServerErrorBody;
|
|
6258
|
+
};
|
|
6259
|
+
type ScheduledExecutionsListError = ScheduledExecutionsListErrors[keyof ScheduledExecutionsListErrors];
|
|
6260
|
+
type ScheduledExecutionsListResponses = {
|
|
6261
|
+
/**
|
|
6262
|
+
* The request has succeeded.
|
|
6263
|
+
*/
|
|
6264
|
+
200: {
|
|
6265
|
+
items: Array<AgentsScheduledExecutionBase>;
|
|
6266
|
+
page: number;
|
|
6267
|
+
pageSize: number;
|
|
6268
|
+
total: number;
|
|
6269
|
+
};
|
|
6270
|
+
};
|
|
6271
|
+
type ScheduledExecutionsListResponse = ScheduledExecutionsListResponses[keyof ScheduledExecutionsListResponses];
|
|
5752
6272
|
type SchemaValidationValidateData = {
|
|
5753
6273
|
/**
|
|
5754
6274
|
* The schema to validate
|
|
@@ -6130,6 +6650,42 @@ declare const environmentByIdGet: <ThrowOnError extends boolean = false>(options
|
|
|
6130
6650
|
* Stop an environment. Runs the full teardown (clean browser → persist recording → clean sandbox → mark stopped). Idempotent: an already-terminal environment is a no-op.
|
|
6131
6651
|
*/
|
|
6132
6652
|
declare const environmentByIdStop: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdStopData, ThrowOnError>) => RequestResult<EnvironmentByIdStopResponses, EnvironmentByIdStopErrors, ThrowOnError, "fields">;
|
|
6653
|
+
/**
|
|
6654
|
+
* List execution batches
|
|
6655
|
+
*
|
|
6656
|
+
* List execution batches with filtering and pagination
|
|
6657
|
+
*/
|
|
6658
|
+
declare const executionBatchesList: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchesListData, ThrowOnError>) => RequestResult<ExecutionBatchesListResponses, ExecutionBatchesListErrors, ThrowOnError, "fields">;
|
|
6659
|
+
/**
|
|
6660
|
+
* Create execution batch
|
|
6661
|
+
*
|
|
6662
|
+
* Create a new execution batch with items and configuration
|
|
6663
|
+
*/
|
|
6664
|
+
declare const executionBatchesCreate: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchesCreateData, ThrowOnError>) => RequestResult<ExecutionBatchesCreateResponses, ExecutionBatchesCreateErrors, ThrowOnError, "fields">;
|
|
6665
|
+
/**
|
|
6666
|
+
* Get execution batch
|
|
6667
|
+
*
|
|
6668
|
+
* Get execution batch details with status counts
|
|
6669
|
+
*/
|
|
6670
|
+
declare const executionBatchGet: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchGetData, ThrowOnError>) => RequestResult<ExecutionBatchGetResponses, ExecutionBatchGetErrors, ThrowOnError, "fields">;
|
|
6671
|
+
/**
|
|
6672
|
+
* Cancel execution batch
|
|
6673
|
+
*
|
|
6674
|
+
* Cancel a batch and all its pending items
|
|
6675
|
+
*/
|
|
6676
|
+
declare const executionBatchCancel: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchCancelData, ThrowOnError>) => RequestResult<ExecutionBatchCancelResponses, ExecutionBatchCancelErrors, ThrowOnError, "fields">;
|
|
6677
|
+
/**
|
|
6678
|
+
* Pause execution batch
|
|
6679
|
+
*
|
|
6680
|
+
* Pause a running batch. Pending items will not be triggered while paused.
|
|
6681
|
+
*/
|
|
6682
|
+
declare const executionBatchPause: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchPauseData, ThrowOnError>) => RequestResult<ExecutionBatchPauseResponses, ExecutionBatchPauseErrors, ThrowOnError, "fields">;
|
|
6683
|
+
/**
|
|
6684
|
+
* Resume execution batch
|
|
6685
|
+
*
|
|
6686
|
+
* Resume a paused batch. ExecuteAt times will be recalculated from now.
|
|
6687
|
+
*/
|
|
6688
|
+
declare const executionBatchResume: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchResumeData, ThrowOnError>) => RequestResult<ExecutionBatchResumeResponses, ExecutionBatchResumeErrors, ThrowOnError, "fields">;
|
|
6133
6689
|
/**
|
|
6134
6690
|
* List executions
|
|
6135
6691
|
*
|
|
@@ -6218,6 +6774,12 @@ declare const executionStatusUpdate: <ThrowOnError extends boolean = false>(opti
|
|
|
6218
6774
|
* Add a user message to an execution
|
|
6219
6775
|
*/
|
|
6220
6776
|
declare const executionUserMessagesAdd: <ThrowOnError extends boolean = false>(options: Options<ExecutionUserMessagesAddData, ThrowOnError>) => RequestResult<ExecutionUserMessagesAddResponses, ExecutionUserMessagesAddErrors, ThrowOnError, "fields">;
|
|
6777
|
+
/**
|
|
6778
|
+
* List scheduled executions
|
|
6779
|
+
*
|
|
6780
|
+
* List scheduled executions with filtering and pagination
|
|
6781
|
+
*/
|
|
6782
|
+
declare const scheduledExecutionsList: <ThrowOnError extends boolean = false>(options: Options<ScheduledExecutionsListData, ThrowOnError>) => RequestResult<ScheduledExecutionsListResponses, ScheduledExecutionsListErrors, ThrowOnError, "fields">;
|
|
6221
6783
|
/**
|
|
6222
6784
|
* Validate schema
|
|
6223
6785
|
*
|
|
@@ -6237,4 +6799,4 @@ declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Op
|
|
|
6237
6799
|
*/
|
|
6238
6800
|
declare const workflowSpecValidationValidate: <ThrowOnError extends boolean = false>(options: Options<WorkflowSpecValidationValidateData, ThrowOnError>) => RequestResult<WorkflowSpecValidationValidateResponses, WorkflowSpecValidationValidateErrors, ThrowOnError, "fields">;
|
|
6239
6801
|
|
|
6240
|
-
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 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 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 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 AgentsEnvironmentEnvironmentOwner, type AgentsEnvironmentEnvironmentSource, type AgentsEnvironmentEnvironmentStatus, type AgentsEnvironmentEnvironmentSummary, type AgentsEnvironmentExecutionEnvironmentOwner, type AgentsEnvironmentExplicitEnvironmentSource, type AgentsEnvironmentExternalEnvironmentOwner, type AgentsEnvironmentListEnvironmentsResponse, type AgentsEnvironmentSpecBrowserTemplate, type AgentsEnvironmentSpecEnvironmentTemplate, type AgentsEnvironmentSpecOsTemplate, type AgentsEnvironmentStartEnvironmentRequest, 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 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 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 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 AgentsFilesAgentFile, type AgentsFilesAgentFileCreatedBy, type AgentsFilesAgentFileDirectory, type AgentsFilesAgentFilesDirectoryListing, type AgentsFilesAgentFilesResponse, type AgentsFilesFile, type AgentsFilesFilePart, 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 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 AgentsSchemaValidateSchemaRequest, type AgentsSchemaValidateSchemaResponse, type AgentsWorkflowBrowserProvider, type AgentsWorkflowBrowserTemplateConfig, type AgentsWorkflowCreateWorkflowResponse, type AgentsWorkflowEnvironmentTemplate, type AgentsWorkflowEnvironmentType, type AgentsWorkflowExecuteWorkflowRequest, type AgentsWorkflowExecuteWorkflowResponse, type AgentsWorkflowExternalCreateWorkflowRequest, type AgentsWorkflowExternalWorkflowSnapshot, type AgentsWorkflowInput, type AgentsWorkflowLiveEnvironmentCuaConnection, type AgentsWorkflowLiveEnvironmentCuaProvider, type AgentsWorkflowOsProvider, type AgentsWorkflowOsTemplateConfig, type AgentsWorkflowOsType, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowWorkflowFile, 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 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 EnvironmentByIdGetData, type EnvironmentByIdGetError, type EnvironmentByIdGetErrors, type EnvironmentByIdGetResponse, type EnvironmentByIdGetResponses, type EnvironmentByIdStopData, type EnvironmentByIdStopError, type EnvironmentByIdStopErrors, type EnvironmentByIdStopResponse, type EnvironmentByIdStopResponses, type EnvironmentsListData, type EnvironmentsListError, type EnvironmentsListErrors, type EnvironmentsListResponse, type EnvironmentsListResponses, type EnvironmentsStartData, type EnvironmentsStartError, type EnvironmentsStartErrors, type EnvironmentsStartResponse, type EnvironmentsStartResponses, 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 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, agentWorkflowsCreate, agentWorkflowsDeleteWorkflow, agentWorkflowsExecute, agentWorkflowsGet, agentWorkflowsGetInputs, agentWorkflowsGetOutputSchemas, agentWorkflowsList, agentWorkflowsPublish, agentWorkflowsValidate, availableToolsList, client, contextGet, docsSearchSearch, environmentByIdGet, environmentByIdStop, environmentsList, environmentsStart, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage, workflowSpecValidationValidate };
|
|
6802
|
+
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 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 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 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 AgentsEnvironmentEnvironmentOwner, type AgentsEnvironmentEnvironmentSource, type AgentsEnvironmentEnvironmentStatus, type AgentsEnvironmentEnvironmentSummary, type AgentsEnvironmentExecutionEnvironmentOwner, type AgentsEnvironmentExplicitEnvironmentSource, type AgentsEnvironmentExternalEnvironmentOwner, type AgentsEnvironmentListEnvironmentsResponse, type AgentsEnvironmentSpecBrowserTemplate, type AgentsEnvironmentSpecEnvironmentTemplate, type AgentsEnvironmentSpecOsTemplate, type AgentsEnvironmentStartEnvironmentRequest, 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 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 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 AgentsFilesAgentFile, type AgentsFilesAgentFileCreatedBy, type AgentsFilesAgentFileDirectory, type AgentsFilesAgentFilesDirectoryListing, type AgentsFilesAgentFilesResponse, type AgentsFilesFile, type AgentsFilesFilePart, 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 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 AgentsWorkflowEnvironmentTemplate, type AgentsWorkflowEnvironmentType, type AgentsWorkflowExecuteWorkflowRequest, type AgentsWorkflowExecuteWorkflowResponse, type AgentsWorkflowExternalCreateWorkflowRequest, type AgentsWorkflowExternalWorkflowSnapshot, type AgentsWorkflowInput, type AgentsWorkflowLiveEnvironmentCuaConnection, type AgentsWorkflowLiveEnvironmentCuaProvider, type AgentsWorkflowOsProvider, type AgentsWorkflowOsTemplateConfig, type AgentsWorkflowOsType, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowWorkflowFile, 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 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 EnvironmentByIdGetData, type EnvironmentByIdGetError, type EnvironmentByIdGetErrors, type EnvironmentByIdGetResponse, type EnvironmentByIdGetResponses, type EnvironmentByIdStopData, type EnvironmentByIdStopError, type EnvironmentByIdStopErrors, type EnvironmentByIdStopResponse, type EnvironmentByIdStopResponses, type EnvironmentsListData, type EnvironmentsListError, type EnvironmentsListErrors, type EnvironmentsListResponse, type EnvironmentsListResponses, type EnvironmentsStartData, type EnvironmentsStartError, type EnvironmentsStartErrors, type EnvironmentsStartResponse, type EnvironmentsStartResponses, 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 ExecutionBatchCancelData, type ExecutionBatchCancelError, type ExecutionBatchCancelErrors, type ExecutionBatchCancelResponse, type ExecutionBatchCancelResponses, type ExecutionBatchGetData, type ExecutionBatchGetError, type ExecutionBatchGetErrors, type ExecutionBatchGetResponse, type ExecutionBatchGetResponses, type ExecutionBatchPauseData, type ExecutionBatchPauseError, type ExecutionBatchPauseErrors, type ExecutionBatchPauseResponse, type ExecutionBatchPauseResponses, type ExecutionBatchResumeData, type ExecutionBatchResumeError, type ExecutionBatchResumeErrors, type ExecutionBatchResumeResponse, type ExecutionBatchResumeResponses, type ExecutionBatchesCreateData, type ExecutionBatchesCreateError, type ExecutionBatchesCreateErrors, type ExecutionBatchesCreateResponse, type ExecutionBatchesCreateResponses, type ExecutionBatchesListData, type ExecutionBatchesListError, type ExecutionBatchesListErrors, type ExecutionBatchesListResponse, type ExecutionBatchesListResponses, 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 ScheduledExecutionsListData, type ScheduledExecutionsListError, type ScheduledExecutionsListErrors, type ScheduledExecutionsListResponse, type ScheduledExecutionsListResponses, type SchemaValidationValidateData, type SchemaValidationValidateError, type SchemaValidationValidateErrors, type SchemaValidationValidateResponse, type SchemaValidationValidateResponses, type TempFilesStageData, type TempFilesStageError, type TempFilesStageErrors, type TempFilesStageResponse, type TempFilesStageResponses, 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, agentWorkflowsCreate, agentWorkflowsDeleteWorkflow, agentWorkflowsExecute, agentWorkflowsGet, agentWorkflowsGetInputs, agentWorkflowsGetOutputSchemas, agentWorkflowsList, agentWorkflowsPublish, agentWorkflowsValidate, availableToolsList, client, contextGet, docsSearchSearch, environmentByIdGet, environmentByIdStop, environmentsList, environmentsStart, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionBatchCancel, executionBatchGet, executionBatchPause, executionBatchResume, executionBatchesCreate, executionBatchesList, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, scheduledExecutionsList, schemaValidationValidate, tempFilesStage, workflowSpecValidationValidate };
|