asteroid-odyssey 1.7.310 → 1.7.330

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -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;
@@ -2896,15 +3096,19 @@ type AgentsEnvironmentWorkflowEnvironmentSource = {
2896
3096
  workflowId?: CommonUuid;
2897
3097
  };
2898
3098
  /**
2899
- * Request to start an environment. The agent is a binding carried in the body, not a path segment an environment belongs to an organisation, and the agent tells provisioning which workflow, profile and organisation to boot against.
3099
+ * Request to start an environment. An environment belongs to an organisation; the agent is an optional binding carried in the body, not a path segment. With an agent, the environment is stamped external-owned and the agent's workflow/profile drive provisioning; without one, it is organization-owned and provisions from the explicit spec alone.
2900
3100
  */
2901
3101
  type AgentsEnvironmentStartEnvironmentRequest = {
2902
3102
  /**
2903
- * The agent to bind the environment to. Gates access, and supplies the organisation the environment is stamped with.
3103
+ * The organisation the environment belongs to. Required even when an agent is given — the server verifies the agent belongs to it, so a mismatched binding fails instead of stamping the wrong organisation.
2904
3104
  */
2905
- agentId: CommonUuid;
3105
+ organizationId: CommonUuid;
2906
3106
  /**
2907
- * Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution).
3107
+ * The agent to bind the environment to. Gates access to that agent's workflow. Omit for an organization-owned environment with no agent binding.
3108
+ */
3109
+ agentId?: CommonUuid;
3110
+ /**
3111
+ * Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution). The workflow arm needs an agent to resolve against, so it requires `agentId`.
2908
3112
  */
2909
3113
  source?: AgentsEnvironmentEnvironmentSource;
2910
3114
  /**
@@ -2982,6 +3186,12 @@ type AgentsEnvironmentEnvironmentSource = ({
2982
3186
  } & AgentsEnvironmentWorkflowEnvironmentSource) | ({
2983
3187
  kind: 'spec';
2984
3188
  } & AgentsEnvironmentExplicitEnvironmentSource);
3189
+ /**
3190
+ * An environment owned by the organisation itself: it has no agent binding at all — the organisation on the environment is its whole identity.
3191
+ */
3192
+ type AgentsEnvironmentOrganizationEnvironmentOwner = {
3193
+ type: 'organization';
3194
+ };
2985
3195
  /**
2986
3196
  * Response for the list endpoint, ordered by createdAt DESC. Empty array when nothing matches the filters.
2987
3197
  */
@@ -3038,7 +3248,7 @@ type AgentsEnvironmentExecutionEnvironmentOwner = {
3038
3248
  executionId: CommonUuid;
3039
3249
  };
3040
3250
  /**
3041
- * Who the environment belongs to. Discriminated on `type`, mirroring the storage-side agent_environment.owner_type, so each owner kind carries exactly the identity it has — an execution id only exists for execution-owned envs, a chat id only for astro-owned ones. A future owner kind (warm pools, org sessions) joins as a member rather than as another optional column.
3251
+ * Who the environment belongs to. Discriminated on `type`, mirroring the storage-side agent_environment.owner_type, so each owner kind carries exactly the identity it has — an execution id only exists for execution-owned envs, a chat id only for astro-owned ones. A future owner kind (warm pools) joins as a member rather than as another optional column.
3042
3252
  */
3043
3253
  type AgentsEnvironmentEnvironmentOwner = ({
3044
3254
  type: 'execution';
@@ -3046,7 +3256,9 @@ type AgentsEnvironmentEnvironmentOwner = ({
3046
3256
  type: 'astro';
3047
3257
  } & AgentsEnvironmentAstroEnvironmentOwner) | ({
3048
3258
  type: 'external';
3049
- } & AgentsEnvironmentExternalEnvironmentOwner);
3259
+ } & AgentsEnvironmentExternalEnvironmentOwner) | ({
3260
+ type: 'organization';
3261
+ } & AgentsEnvironmentOrganizationEnvironmentOwner);
3050
3262
  /**
3051
3263
  * An environment as it appears in a list. Carries everything a row needs; the provider `state` is fetched with the environment itself, because resolving it mints a signed recording URL per environment and a list would mint one per row.
3052
3264
  */
@@ -3431,6 +3643,14 @@ type AgentsAgentAvailableTool = {
3431
3643
  };
3432
3644
  type CommonPaginationPageSize = number;
3433
3645
  type CommonPaginationPage = number;
3646
+ type AgentsScheduledExecutionListFilterWorkflowId = CommonUuid;
3647
+ type AgentsScheduledExecutionListFilterStatus = AgentsScheduledExecutionStatus;
3648
+ /**
3649
+ * Sort order for scheduled executions by execute_at timestamp
3650
+ */
3651
+ type AgentsScheduledExecutionListFilterOrder = 'asc' | 'desc';
3652
+ type AgentsScheduledExecutionListFilterBatchId = CommonUuid;
3653
+ type AgentsScheduledExecutionListFilterAgentId = CommonUuid;
3434
3654
  /**
3435
3655
  * Search profiles by name (partial match)
3436
3656
  */
@@ -3451,6 +3671,14 @@ type AgentsProfileSearchFeature = Array<AgentsProfileFeature>;
3451
3671
  * Search pools by name (partial match)
3452
3672
  */
3453
3673
  type AgentsProfilePoolSearch = string;
3674
+ /**
3675
+ * Filter by batch status
3676
+ */
3677
+ type AgentsExecutionBatchListFilterStatus = AgentsExecutionBatchStatus;
3678
+ /**
3679
+ * Filter by agent ID
3680
+ */
3681
+ type AgentsExecutionBatchListFilterAgentId = CommonUuid;
3454
3682
  /**
3455
3683
  * Filter by workflow version number
3456
3684
  */
@@ -5105,9 +5333,13 @@ type EnvironmentsListData = {
5105
5333
  path?: never;
5106
5334
  query: {
5107
5335
  /**
5108
- * The agent whose environments to list. Gates access, and supplies the organisation.
5336
+ * The organisation whose environments to list. The caller must belong to it.
5109
5337
  */
5110
- agentId: CommonUuid;
5338
+ organizationId: CommonUuid;
5339
+ /**
5340
+ * Only environments bound to this agent. Omit for every standalone environment in the organisation, the agentless ones included.
5341
+ */
5342
+ agentId?: CommonUuid;
5111
5343
  /**
5112
5344
  * Include stopped, failed and dead environments. Omit for running environments only.
5113
5345
  */
@@ -5263,6 +5495,258 @@ type EnvironmentByIdStopResponses = {
5263
5495
  204: void;
5264
5496
  };
5265
5497
  type EnvironmentByIdStopResponse = EnvironmentByIdStopResponses[keyof EnvironmentByIdStopResponses];
5498
+ type ExecutionBatchesListData = {
5499
+ body?: never;
5500
+ path?: never;
5501
+ query: {
5502
+ /**
5503
+ * Filter by agent ID
5504
+ */
5505
+ agentId: CommonUuid;
5506
+ /**
5507
+ * Filter by batch status
5508
+ */
5509
+ status?: AgentsExecutionBatchStatus;
5510
+ pageSize?: number;
5511
+ page?: number;
5512
+ };
5513
+ url: '/execution-batches';
5514
+ };
5515
+ type ExecutionBatchesListErrors = {
5516
+ /**
5517
+ * The server could not understand the request due to invalid syntax.
5518
+ */
5519
+ 400: CommonBadRequestErrorBody;
5520
+ /**
5521
+ * Access is unauthorized.
5522
+ */
5523
+ 401: CommonUnauthorizedErrorBody;
5524
+ /**
5525
+ * Access is forbidden.
5526
+ */
5527
+ 403: CommonForbiddenErrorBody;
5528
+ /**
5529
+ * The server cannot find the requested resource.
5530
+ */
5531
+ 404: CommonNotFoundErrorBody;
5532
+ /**
5533
+ * Server error
5534
+ */
5535
+ 500: CommonInternalServerErrorBody;
5536
+ };
5537
+ type ExecutionBatchesListError = ExecutionBatchesListErrors[keyof ExecutionBatchesListErrors];
5538
+ type ExecutionBatchesListResponses = {
5539
+ /**
5540
+ * The request has succeeded.
5541
+ */
5542
+ 200: {
5543
+ items: Array<AgentsExecutionBatchBase>;
5544
+ page: number;
5545
+ pageSize: number;
5546
+ total: number;
5547
+ };
5548
+ };
5549
+ type ExecutionBatchesListResponse = ExecutionBatchesListResponses[keyof ExecutionBatchesListResponses];
5550
+ type ExecutionBatchesCreateData = {
5551
+ body: AgentsExecutionBatchCreateRequest;
5552
+ path?: never;
5553
+ query?: never;
5554
+ url: '/execution-batches';
5555
+ };
5556
+ type ExecutionBatchesCreateErrors = {
5557
+ /**
5558
+ * The server could not understand the request due to invalid syntax.
5559
+ */
5560
+ 400: CommonBadRequestErrorBody;
5561
+ /**
5562
+ * Access is unauthorized.
5563
+ */
5564
+ 401: CommonUnauthorizedErrorBody;
5565
+ /**
5566
+ * Access is forbidden.
5567
+ */
5568
+ 403: CommonForbiddenErrorBody;
5569
+ /**
5570
+ * The server cannot find the requested resource.
5571
+ */
5572
+ 404: CommonNotFoundErrorBody;
5573
+ /**
5574
+ * Server error
5575
+ */
5576
+ 500: CommonInternalServerErrorBody;
5577
+ };
5578
+ type ExecutionBatchesCreateError = ExecutionBatchesCreateErrors[keyof ExecutionBatchesCreateErrors];
5579
+ type ExecutionBatchesCreateResponses = {
5580
+ /**
5581
+ * The request has succeeded and a new resource has been created as a result.
5582
+ */
5583
+ 201: AgentsExecutionBatchBase;
5584
+ };
5585
+ type ExecutionBatchesCreateResponse = ExecutionBatchesCreateResponses[keyof ExecutionBatchesCreateResponses];
5586
+ type ExecutionBatchGetData = {
5587
+ body?: never;
5588
+ path: {
5589
+ /**
5590
+ * The unique identifier of the execution batch
5591
+ */
5592
+ batchId: CommonUuid;
5593
+ };
5594
+ query?: never;
5595
+ url: '/execution-batches/{batchId}';
5596
+ };
5597
+ type ExecutionBatchGetErrors = {
5598
+ /**
5599
+ * The server could not understand the request due to invalid syntax.
5600
+ */
5601
+ 400: CommonBadRequestErrorBody;
5602
+ /**
5603
+ * Access is unauthorized.
5604
+ */
5605
+ 401: CommonUnauthorizedErrorBody;
5606
+ /**
5607
+ * Access is forbidden.
5608
+ */
5609
+ 403: CommonForbiddenErrorBody;
5610
+ /**
5611
+ * The server cannot find the requested resource.
5612
+ */
5613
+ 404: CommonNotFoundErrorBody;
5614
+ /**
5615
+ * Server error
5616
+ */
5617
+ 500: CommonInternalServerErrorBody;
5618
+ };
5619
+ type ExecutionBatchGetError = ExecutionBatchGetErrors[keyof ExecutionBatchGetErrors];
5620
+ type ExecutionBatchGetResponses = {
5621
+ /**
5622
+ * The request has succeeded.
5623
+ */
5624
+ 200: AgentsExecutionBatchBase;
5625
+ };
5626
+ type ExecutionBatchGetResponse = ExecutionBatchGetResponses[keyof ExecutionBatchGetResponses];
5627
+ type ExecutionBatchCancelData = {
5628
+ body?: never;
5629
+ path: {
5630
+ /**
5631
+ * The unique identifier of the execution batch
5632
+ */
5633
+ batchId: CommonUuid;
5634
+ };
5635
+ query?: never;
5636
+ url: '/execution-batches/{batchId}/cancel';
5637
+ };
5638
+ type ExecutionBatchCancelErrors = {
5639
+ /**
5640
+ * The server could not understand the request due to invalid syntax.
5641
+ */
5642
+ 400: CommonBadRequestErrorBody;
5643
+ /**
5644
+ * Access is unauthorized.
5645
+ */
5646
+ 401: CommonUnauthorizedErrorBody;
5647
+ /**
5648
+ * Access is forbidden.
5649
+ */
5650
+ 403: CommonForbiddenErrorBody;
5651
+ /**
5652
+ * The server cannot find the requested resource.
5653
+ */
5654
+ 404: CommonNotFoundErrorBody;
5655
+ /**
5656
+ * Server error
5657
+ */
5658
+ 500: CommonInternalServerErrorBody;
5659
+ };
5660
+ type ExecutionBatchCancelError = ExecutionBatchCancelErrors[keyof ExecutionBatchCancelErrors];
5661
+ type ExecutionBatchCancelResponses = {
5662
+ /**
5663
+ * The request has succeeded.
5664
+ */
5665
+ 200: AgentsExecutionBatchBase;
5666
+ };
5667
+ type ExecutionBatchCancelResponse = ExecutionBatchCancelResponses[keyof ExecutionBatchCancelResponses];
5668
+ type ExecutionBatchPauseData = {
5669
+ body?: never;
5670
+ path: {
5671
+ /**
5672
+ * The unique identifier of the execution batch
5673
+ */
5674
+ batchId: CommonUuid;
5675
+ };
5676
+ query?: never;
5677
+ url: '/execution-batches/{batchId}/pause';
5678
+ };
5679
+ type ExecutionBatchPauseErrors = {
5680
+ /**
5681
+ * The server could not understand the request due to invalid syntax.
5682
+ */
5683
+ 400: CommonBadRequestErrorBody;
5684
+ /**
5685
+ * Access is unauthorized.
5686
+ */
5687
+ 401: CommonUnauthorizedErrorBody;
5688
+ /**
5689
+ * Access is forbidden.
5690
+ */
5691
+ 403: CommonForbiddenErrorBody;
5692
+ /**
5693
+ * The server cannot find the requested resource.
5694
+ */
5695
+ 404: CommonNotFoundErrorBody;
5696
+ /**
5697
+ * Server error
5698
+ */
5699
+ 500: CommonInternalServerErrorBody;
5700
+ };
5701
+ type ExecutionBatchPauseError = ExecutionBatchPauseErrors[keyof ExecutionBatchPauseErrors];
5702
+ type ExecutionBatchPauseResponses = {
5703
+ /**
5704
+ * The request has succeeded.
5705
+ */
5706
+ 200: AgentsExecutionBatchBase;
5707
+ };
5708
+ type ExecutionBatchPauseResponse = ExecutionBatchPauseResponses[keyof ExecutionBatchPauseResponses];
5709
+ type ExecutionBatchResumeData = {
5710
+ body?: never;
5711
+ path: {
5712
+ /**
5713
+ * The unique identifier of the execution batch
5714
+ */
5715
+ batchId: CommonUuid;
5716
+ };
5717
+ query?: never;
5718
+ url: '/execution-batches/{batchId}/resume';
5719
+ };
5720
+ type ExecutionBatchResumeErrors = {
5721
+ /**
5722
+ * The server could not understand the request due to invalid syntax.
5723
+ */
5724
+ 400: CommonBadRequestErrorBody;
5725
+ /**
5726
+ * Access is unauthorized.
5727
+ */
5728
+ 401: CommonUnauthorizedErrorBody;
5729
+ /**
5730
+ * Access is forbidden.
5731
+ */
5732
+ 403: CommonForbiddenErrorBody;
5733
+ /**
5734
+ * The server cannot find the requested resource.
5735
+ */
5736
+ 404: CommonNotFoundErrorBody;
5737
+ /**
5738
+ * Server error
5739
+ */
5740
+ 500: CommonInternalServerErrorBody;
5741
+ };
5742
+ type ExecutionBatchResumeError = ExecutionBatchResumeErrors[keyof ExecutionBatchResumeErrors];
5743
+ type ExecutionBatchResumeResponses = {
5744
+ /**
5745
+ * The request has succeeded.
5746
+ */
5747
+ 200: AgentsExecutionBatchBase;
5748
+ };
5749
+ type ExecutionBatchResumeResponse = ExecutionBatchResumeResponses[keyof ExecutionBatchResumeResponses];
5266
5750
  type ExecutionsListData = {
5267
5751
  body?: never;
5268
5752
  path?: never;
@@ -5749,6 +6233,58 @@ type ExecutionUserMessagesAddResponses = {
5749
6233
  201: 'User message added.';
5750
6234
  };
5751
6235
  type ExecutionUserMessagesAddResponse = ExecutionUserMessagesAddResponses[keyof ExecutionUserMessagesAddResponses];
6236
+ type ScheduledExecutionsListData = {
6237
+ body?: never;
6238
+ path?: never;
6239
+ query: {
6240
+ agentId: CommonUuid;
6241
+ workflowId?: CommonUuid;
6242
+ status?: AgentsScheduledExecutionStatus;
6243
+ batchId?: CommonUuid;
6244
+ /**
6245
+ * Sort order for scheduled executions by execute_at timestamp
6246
+ */
6247
+ order?: 'asc' | 'desc';
6248
+ pageSize?: number;
6249
+ page?: number;
6250
+ };
6251
+ url: '/scheduled-executions';
6252
+ };
6253
+ type ScheduledExecutionsListErrors = {
6254
+ /**
6255
+ * The server could not understand the request due to invalid syntax.
6256
+ */
6257
+ 400: CommonBadRequestErrorBody;
6258
+ /**
6259
+ * Access is unauthorized.
6260
+ */
6261
+ 401: CommonUnauthorizedErrorBody;
6262
+ /**
6263
+ * Access is forbidden.
6264
+ */
6265
+ 403: CommonForbiddenErrorBody;
6266
+ /**
6267
+ * The server cannot find the requested resource.
6268
+ */
6269
+ 404: CommonNotFoundErrorBody;
6270
+ /**
6271
+ * Server error
6272
+ */
6273
+ 500: CommonInternalServerErrorBody;
6274
+ };
6275
+ type ScheduledExecutionsListError = ScheduledExecutionsListErrors[keyof ScheduledExecutionsListErrors];
6276
+ type ScheduledExecutionsListResponses = {
6277
+ /**
6278
+ * The request has succeeded.
6279
+ */
6280
+ 200: {
6281
+ items: Array<AgentsScheduledExecutionBase>;
6282
+ page: number;
6283
+ pageSize: number;
6284
+ total: number;
6285
+ };
6286
+ };
6287
+ type ScheduledExecutionsListResponse = ScheduledExecutionsListResponses[keyof ScheduledExecutionsListResponses];
5752
6288
  type SchemaValidationValidateData = {
5753
6289
  /**
5754
6290
  * The schema to validate
@@ -6109,13 +6645,13 @@ declare const docsSearchSearch: <ThrowOnError extends boolean = false>(options:
6109
6645
  /**
6110
6646
  * List environments
6111
6647
  *
6112
- * List the standalone environments bound to an agent, newest first. Only environments this API key's organisation started are returned; those owned by an execution or an astro conversation are private to those owners. Terminal environments are excluded unless `includeTerminal` is set.
6648
+ * List an organisation's standalone environments, newest first both agent-bound and organization-owned. Those owned by an execution or an astro conversation are private to those owners. Terminal environments are excluded unless `includeTerminal` is set.
6113
6649
  */
6114
6650
  declare const environmentsList: <ThrowOnError extends boolean = false>(options: Options<EnvironmentsListData, ThrowOnError>) => RequestResult<EnvironmentsListResponses, EnvironmentsListErrors, ThrowOnError, "fields">;
6115
6651
  /**
6116
6652
  * Start environment
6117
6653
  *
6118
- * Start an environment. Blocks until it is ready (or the provider fails) and returns the environment together with its connection details, so a caller boots in one round trip. The agent in the body gates access and supplies the organisation.
6654
+ * Start an environment. Blocks until it is ready (or the provider fails) and returns the environment together with its connection details, so a caller boots in one round trip. The organisation in the body is the scope; the agent, when given, is a binding the server verifies belongs to it.
6119
6655
  */
6120
6656
  declare const environmentsStart: <ThrowOnError extends boolean = false>(options: Options<EnvironmentsStartData, ThrowOnError>) => RequestResult<EnvironmentsStartResponses, EnvironmentsStartErrors, ThrowOnError, "fields">;
6121
6657
  /**
@@ -6130,6 +6666,42 @@ declare const environmentByIdGet: <ThrowOnError extends boolean = false>(options
6130
6666
  * 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
6667
  */
6132
6668
  declare const environmentByIdStop: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdStopData, ThrowOnError>) => RequestResult<EnvironmentByIdStopResponses, EnvironmentByIdStopErrors, ThrowOnError, "fields">;
6669
+ /**
6670
+ * List execution batches
6671
+ *
6672
+ * List execution batches with filtering and pagination
6673
+ */
6674
+ declare const executionBatchesList: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchesListData, ThrowOnError>) => RequestResult<ExecutionBatchesListResponses, ExecutionBatchesListErrors, ThrowOnError, "fields">;
6675
+ /**
6676
+ * Create execution batch
6677
+ *
6678
+ * Create a new execution batch with items and configuration
6679
+ */
6680
+ declare const executionBatchesCreate: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchesCreateData, ThrowOnError>) => RequestResult<ExecutionBatchesCreateResponses, ExecutionBatchesCreateErrors, ThrowOnError, "fields">;
6681
+ /**
6682
+ * Get execution batch
6683
+ *
6684
+ * Get execution batch details with status counts
6685
+ */
6686
+ declare const executionBatchGet: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchGetData, ThrowOnError>) => RequestResult<ExecutionBatchGetResponses, ExecutionBatchGetErrors, ThrowOnError, "fields">;
6687
+ /**
6688
+ * Cancel execution batch
6689
+ *
6690
+ * Cancel a batch and all its pending items
6691
+ */
6692
+ declare const executionBatchCancel: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchCancelData, ThrowOnError>) => RequestResult<ExecutionBatchCancelResponses, ExecutionBatchCancelErrors, ThrowOnError, "fields">;
6693
+ /**
6694
+ * Pause execution batch
6695
+ *
6696
+ * Pause a running batch. Pending items will not be triggered while paused.
6697
+ */
6698
+ declare const executionBatchPause: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchPauseData, ThrowOnError>) => RequestResult<ExecutionBatchPauseResponses, ExecutionBatchPauseErrors, ThrowOnError, "fields">;
6699
+ /**
6700
+ * Resume execution batch
6701
+ *
6702
+ * Resume a paused batch. ExecuteAt times will be recalculated from now.
6703
+ */
6704
+ declare const executionBatchResume: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchResumeData, ThrowOnError>) => RequestResult<ExecutionBatchResumeResponses, ExecutionBatchResumeErrors, ThrowOnError, "fields">;
6133
6705
  /**
6134
6706
  * List executions
6135
6707
  *
@@ -6218,6 +6790,12 @@ declare const executionStatusUpdate: <ThrowOnError extends boolean = false>(opti
6218
6790
  * Add a user message to an execution
6219
6791
  */
6220
6792
  declare const executionUserMessagesAdd: <ThrowOnError extends boolean = false>(options: Options<ExecutionUserMessagesAddData, ThrowOnError>) => RequestResult<ExecutionUserMessagesAddResponses, ExecutionUserMessagesAddErrors, ThrowOnError, "fields">;
6793
+ /**
6794
+ * List scheduled executions
6795
+ *
6796
+ * List scheduled executions with filtering and pagination
6797
+ */
6798
+ declare const scheduledExecutionsList: <ThrowOnError extends boolean = false>(options: Options<ScheduledExecutionsListData, ThrowOnError>) => RequestResult<ScheduledExecutionsListResponses, ScheduledExecutionsListErrors, ThrowOnError, "fields">;
6221
6799
  /**
6222
6800
  * Validate schema
6223
6801
  *
@@ -6237,4 +6815,4 @@ declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Op
6237
6815
  */
6238
6816
  declare const workflowSpecValidationValidate: <ThrowOnError extends boolean = false>(options: Options<WorkflowSpecValidationValidateData, ThrowOnError>) => RequestResult<WorkflowSpecValidationValidateResponses, WorkflowSpecValidationValidateErrors, ThrowOnError, "fields">;
6239
6817
 
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 };
6818
+ 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 AgentsEnvironmentOrganizationEnvironmentOwner, 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 };