asteroid-odyssey 1.7.278 → 1.7.287

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
@@ -783,9 +783,10 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
783
783
  * - May contain a single `{{variant_key}}` placeholder, which the
784
784
  * runtime substitutes with the execution's `variant_key` so a single
785
785
  * workflow can target per-tenant script trees (e.g.
786
- * `{{variant_key}}/scripts/main.js` →
787
- * `shared/<node-key>/<variant-key>/scripts/main.js`). Requires the
788
- * agent to have `variant_mode` enabled.
786
+ * `./variants/{{variant_key}}/scripts/main.js` →
787
+ * `shared/<node-key>/variants/<variant-key>/scripts/main.js`).
788
+ * Requires the agent to have `variant_mode` enabled, and the
789
+ * placeholder must be the segment directly under `variants/`.
789
790
  */
790
791
  script_filepath?: string;
791
792
  /**
@@ -1837,6 +1838,19 @@ type AgentsExecutionTerminalPayload = {
1837
1838
  reason: 'unsubscribe' | 'complete' | 'error';
1838
1839
  message?: string;
1839
1840
  };
1841
+ /**
1842
+ * Steel browser provider configuration
1843
+ */
1844
+ type AgentsExecutionSteelProviderConfig = {
1845
+ /**
1846
+ * Provider type discriminator
1847
+ */
1848
+ type: 'steel';
1849
+ /**
1850
+ * Steel session ID
1851
+ */
1852
+ sessionId?: string;
1853
+ };
1840
1854
  type AgentsExecutionStatus = 'queued' | 'starting' | 'running' | 'paused' | 'awaiting_confirmation' | 'completed' | 'cancelled' | 'failed' | 'paused_by_agent';
1841
1855
  /**
1842
1856
  * Fields that can be used for sorting executions
@@ -2071,6 +2085,64 @@ type AgentsExecutionPausedPayload = {
2071
2085
  type AgentsExecutionAskUserQuestion = {
2072
2086
  questions: Array<AgentsExecutionQuestionItem>;
2073
2087
  };
2088
+ /**
2089
+ * OS environment state
2090
+ */
2091
+ type AgentsExecutionOsState = {
2092
+ /**
2093
+ * Environment type discriminator
2094
+ */
2095
+ environmentType: 'os';
2096
+ /**
2097
+ * OS provider name
2098
+ */
2099
+ provider: AgentsWorkflowOsProvider;
2100
+ /**
2101
+ * Screen width
2102
+ */
2103
+ width: number;
2104
+ /**
2105
+ * Screen height
2106
+ */
2107
+ height: number;
2108
+ /**
2109
+ * Live view URL
2110
+ */
2111
+ liveViewUrl?: string;
2112
+ /**
2113
+ * Recording URL
2114
+ */
2115
+ recordingUrl?: string;
2116
+ /**
2117
+ * Whether a recording exists (provider URL or durable GCS object persisted). Use this to gate the player rather than recordingUrl, which is empty for GCS-only recordings.
2118
+ */
2119
+ hasRecording: boolean;
2120
+ /**
2121
+ * When the environment recording started (video time-zero anchor)
2122
+ */
2123
+ recordingStartedAt?: string;
2124
+ /**
2125
+ * Environment's public egress IP address (detected at startup)
2126
+ */
2127
+ egressIp?: string;
2128
+ /**
2129
+ * Provider-specific configuration
2130
+ */
2131
+ providerConfig?: AgentsExecutionDaytonaProviderConfig;
2132
+ };
2133
+ /**
2134
+ * Daytona OS provider configuration
2135
+ */
2136
+ type AgentsExecutionDaytonaProviderConfig = {
2137
+ /**
2138
+ * Daytona sandbox ID
2139
+ */
2140
+ sandboxId?: string;
2141
+ /**
2142
+ * Sandbox URL
2143
+ */
2144
+ sandboxUrl?: string;
2145
+ };
2074
2146
  type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails = {
2075
2147
  actionName: 'obs_snapshot_with_selectors';
2076
2148
  url: string;
@@ -2367,6 +2439,80 @@ type AgentsExecutionExtApiCallCompletedDetails = {
2367
2439
  requestMethod?: string;
2368
2440
  requestUrl?: string;
2369
2441
  };
2442
+ /**
2443
+ * Discriminated union of environment states (discriminated by environmentType)
2444
+ */
2445
+ type AgentsExecutionEnvironmentState = AgentsExecutionBrowserState | AgentsExecutionOsState;
2446
+ /**
2447
+ * Anchor browser provider configuration
2448
+ */
2449
+ type AgentsExecutionAnchorProviderConfig = {
2450
+ /**
2451
+ * Provider type discriminator
2452
+ */
2453
+ type: 'anchor';
2454
+ /**
2455
+ * Anchor session ID
2456
+ */
2457
+ sessionId?: CommonUuid;
2458
+ /**
2459
+ * Anchor session URL
2460
+ */
2461
+ sessionUrl?: string;
2462
+ };
2463
+ /**
2464
+ * Browser provider configuration (discriminated by type)
2465
+ */
2466
+ type AgentsExecutionBrowserProviderConfig = ({
2467
+ type: 'anchor';
2468
+ } & AgentsExecutionAnchorProviderConfig) | ({
2469
+ type: 'steel';
2470
+ } & AgentsExecutionSteelProviderConfig);
2471
+ /**
2472
+ * Browser environment state
2473
+ */
2474
+ type AgentsExecutionBrowserState = {
2475
+ /**
2476
+ * Environment type discriminator
2477
+ */
2478
+ environmentType: 'browser';
2479
+ /**
2480
+ * Browser provider name
2481
+ */
2482
+ provider: AgentsWorkflowBrowserProvider;
2483
+ /**
2484
+ * Browser viewport width
2485
+ */
2486
+ width: number;
2487
+ /**
2488
+ * Browser viewport height
2489
+ */
2490
+ height: number;
2491
+ /**
2492
+ * Live view/debugger URL
2493
+ */
2494
+ liveViewUrl?: string;
2495
+ /**
2496
+ * Recording URL (available after execution completes)
2497
+ */
2498
+ recordingUrl?: string;
2499
+ /**
2500
+ * Whether a recording exists (provider URL or durable GCS object persisted). Use this to gate the player rather than recordingUrl, which is empty for GCS-only recordings.
2501
+ */
2502
+ hasRecording: boolean;
2503
+ /**
2504
+ * When the environment recording started (video time-zero anchor)
2505
+ */
2506
+ recordingStartedAt?: string;
2507
+ /**
2508
+ * Browser's public IP address (detected at startup)
2509
+ */
2510
+ browserIp?: string;
2511
+ /**
2512
+ * Provider-specific configuration
2513
+ */
2514
+ providerConfig?: AgentsExecutionBrowserProviderConfig;
2515
+ };
2370
2516
  type AgentsExecutionElementFileUploadCompletedDetails = {
2371
2517
  actionName: 'element_file_upload';
2372
2518
  fileNames: Array<string>;
@@ -2701,36 +2847,100 @@ type AgentsEnvironmentWorkflowEnvironmentSource = {
2701
2847
  workflowId?: CommonUuid;
2702
2848
  };
2703
2849
  /**
2704
- * Response from starting an environment: the environment itself, plus everything needed to drive it, so a caller boots in one round trip. Carries the summary rather than the full environment the provider `state` exists to render a live view, and a caller holding fresh connection details does not need it.
2850
+ * Request to start an environment. The agent is a binding carried in the body, not a path segmentan environment belongs to an organisation, and the agent tells provisioning which workflow, profile and organisation to boot against.
2705
2851
  */
2706
- type AgentsEnvironmentStartEnvironmentResponse = {
2852
+ type AgentsEnvironmentStartEnvironmentRequest = {
2707
2853
  /**
2708
- * The newly-provisioned environment.
2854
+ * The agent to bind the environment to. Gates access, and supplies the organisation the environment is stamped with.
2709
2855
  */
2710
- environment: AgentsEnvironmentEnvironmentSummary;
2856
+ agentId: CommonUuid;
2711
2857
  /**
2712
- * How to connect to it.
2858
+ * Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution).
2713
2859
  */
2714
- connection: AgentsEnvironmentLiveEnvironmentDetails;
2860
+ source?: AgentsEnvironmentEnvironmentSource;
2861
+ /**
2862
+ * Optional agent profile to attach. The profile id is stamped onto the env row for the session's lifetime, so later reads resolve against the stamped profile rather than the agent's current one. Its decrypted credentials come back on the response's `connection` only for service-to-service callers — they are never returned to an API key or a browser.
2863
+ */
2864
+ agentProfileId?: CommonUuid;
2715
2865
  };
2716
2866
  /**
2717
- * Connection details for a running environment: how to drive it, and the credentials to drive it with. All fields are optional an env that is still bootstrapping has no CDP URL yet, and the caller can proceed without browser tools. Never returned on the browser-facing surface.
2867
+ * OS template for the explicit spec arm. Every field is optional with a server default.
2718
2868
  */
2719
- type AgentsEnvironmentLiveEnvironmentDetails = {
2869
+ type AgentsEnvironmentSpecOsTemplate = {
2870
+ type: 'os';
2720
2871
  /**
2721
- * Chrome DevTools Protocol websocket URL. Present only for browser environments with a ready CDP endpoint.
2872
+ * OS provider. Omit for the default (daytona).
2722
2873
  */
2723
- cdpUrl?: string;
2874
+ provider?: AgentsWorkflowOsProvider;
2724
2875
  /**
2725
- * Provider-specific CUA connection details. Present for Anchor browsers and Daytona OS environments.
2876
+ * Snapshot to boot. Omit for the configured default snapshot for the chosen osType.
2726
2877
  */
2727
- cua?: AgentsWorkflowLiveEnvironmentCuaConnection;
2878
+ snapshotName?: string;
2728
2879
  /**
2729
- * Decrypted credential placeholders for the env's stamped agent profile, keyed by ##NAME## placeholder. Present only when the env has an attached profile with credentials.
2880
+ * Whether the sandbox is publicly reachable. Omit for false.
2730
2881
  */
2731
- credentials?: {
2732
- [key: string]: unknown;
2733
- };
2882
+ public?: boolean;
2883
+ /**
2884
+ * Operating system the sandbox runs. Omit for linux.
2885
+ */
2886
+ osType?: AgentsWorkflowOsType;
2887
+ };
2888
+ /**
2889
+ * Browser template for the explicit spec arm. Every field is optional with a server default.
2890
+ */
2891
+ type AgentsEnvironmentSpecBrowserTemplate = {
2892
+ type: 'browser';
2893
+ /**
2894
+ * Browser provider. Omit for the server's configured default provider.
2895
+ */
2896
+ provider?: AgentsWorkflowBrowserProvider;
2897
+ };
2898
+ /**
2899
+ * Environment template for the explicit spec arm — a looser sibling of the workflow's own EnvironmentTemplate where every field has a server default, so callers can say as little as `{type: "os"}`.
2900
+ */
2901
+ type AgentsEnvironmentSpecEnvironmentTemplate = ({
2902
+ type: 'browser';
2903
+ } & AgentsEnvironmentSpecBrowserTemplate) | ({
2904
+ type: 'os';
2905
+ } & AgentsEnvironmentSpecOsTemplate);
2906
+ /**
2907
+ * Environment spec supplied inline — provisioning does not read any workflow. This is how a live env is started without touching (or even having) a workflow definition.
2908
+ */
2909
+ type AgentsEnvironmentExplicitEnvironmentSource = {
2910
+ kind: 'spec';
2911
+ /**
2912
+ * Environment template. Omit entirely for the server default (browser).
2913
+ */
2914
+ template?: AgentsEnvironmentSpecEnvironmentTemplate;
2915
+ /**
2916
+ * Viewport width in pixels. Omit for the default (1280, the computer-use resolution). Ignored for OS environments — they always run at the fixed computer-use resolution.
2917
+ */
2918
+ viewportWidth?: number;
2919
+ /**
2920
+ * Viewport height in pixels. Omit for the default (800, the computer-use resolution). Ignored for OS environments — they always run at the fixed computer-use resolution.
2921
+ */
2922
+ viewportHeight?: number;
2923
+ /**
2924
+ * Session lifetime in minutes before the reaper tears the env down. Clamped server-side to the astro session cap. Omit for the default.
2925
+ */
2926
+ sessionTimeoutMins?: number;
2927
+ };
2928
+ /**
2929
+ * Where the environment spec comes from: copied from a workflow, or supplied inline.
2930
+ */
2931
+ type AgentsEnvironmentEnvironmentSource = ({
2932
+ kind: 'workflow';
2933
+ } & AgentsEnvironmentWorkflowEnvironmentSource) | ({
2934
+ kind: 'spec';
2935
+ } & AgentsEnvironmentExplicitEnvironmentSource);
2936
+ /**
2937
+ * Response for the list endpoint, ordered by createdAt DESC. Empty array when nothing matches the filters.
2938
+ */
2939
+ type AgentsEnvironmentListEnvironmentsResponse = {
2940
+ /**
2941
+ * The matching environments.
2942
+ */
2943
+ environments: Array<AgentsEnvironmentEnvironmentSummary>;
2734
2944
  };
2735
2945
  /**
2736
2946
  * Every state an environment can be in, terminal included.
@@ -2842,100 +3052,78 @@ type AgentsEnvironmentEnvironmentSummary = {
2842
3052
  expiresAt: string;
2843
3053
  };
2844
3054
  /**
2845
- * 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.
3055
+ * How to drive a running environment. All fields are optional an env that is still bootstrapping has no CDP URL yet, and a caller can proceed without browser tools.
2846
3056
  */
2847
- type AgentsEnvironmentStartEnvironmentRequest = {
3057
+ type AgentsEnvironmentEnvironmentConnection = {
2848
3058
  /**
2849
- * The agent to bind the environment to. Gates access, and supplies the organisation the environment is stamped with.
3059
+ * Chrome DevTools Protocol websocket URL. Present only for browser environments with a ready CDP endpoint. Proxied on the browser and API-key surfaces; the raw provider URL is only ever handed to service-to-service callers.
2850
3060
  */
2851
- agentId: CommonUuid;
2852
- /**
2853
- * Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution).
2854
- */
2855
- source?: AgentsEnvironmentEnvironmentSource;
3061
+ cdpUrl?: string;
2856
3062
  /**
2857
- * Optional agent profile to attach. When supplied, the profile's decrypted credentials come back on the response's `connection` and the profile id is stamped onto the env row for the session's lifetime (subsequent attach calls re-fetch credentials from the stamped profile).
3063
+ * Provider-specific CUA connection details. Present for Anchor browsers and Daytona OS environments. Carries session handles, not credentials the caller resolves provider API keys from its own config.
2858
3064
  */
2859
- agentProfileId?: CommonUuid;
3065
+ cua?: AgentsWorkflowLiveEnvironmentCuaConnection;
2860
3066
  };
2861
3067
  /**
2862
- * OS template for the explicit spec arm. Every field is optional with a server default.
3068
+ * A single environment: what it is, its provider state, and how to drive it. `state` is the same shape the execution endpoint returns, so the LiveView/OsLiveView components render either without branching.
2863
3069
  */
2864
- type AgentsEnvironmentSpecOsTemplate = {
2865
- type: 'os';
3070
+ type AgentsEnvironmentEnvironment = {
2866
3071
  /**
2867
- * OS provider. Omit for the default (daytona).
3072
+ * Environment identifier.
2868
3073
  */
2869
- provider?: AgentsWorkflowOsProvider;
3074
+ id: CommonUuid;
2870
3075
  /**
2871
- * Snapshot to boot. Omit for the configured default snapshot for the chosen osType.
3076
+ * The organisation the environment belongs to.
2872
3077
  */
2873
- snapshotName?: string;
3078
+ organizationId: CommonUuid;
2874
3079
  /**
2875
- * Whether the sandbox is publicly reachable. Omit for false.
3080
+ * Who the environment belongs to, and the identity that owner carries.
2876
3081
  */
2877
- public?: boolean;
3082
+ owner: AgentsEnvironmentEnvironmentOwner;
2878
3083
  /**
2879
- * Operating system the sandbox runs. Omit for linux.
3084
+ * Browser or OS.
3085
+ */
3086
+ environmentType: AgentsWorkflowEnvironmentType;
3087
+ /**
3088
+ * Operating system for OS environments. Absent for browser environments; linux when an OS environment predates explicit osType storage.
2880
3089
  */
2881
3090
  osType?: AgentsWorkflowOsType;
2882
- };
2883
- /**
2884
- * Browser template for the explicit spec arm. Every field is optional with a server default.
2885
- */
2886
- type AgentsEnvironmentSpecBrowserTemplate = {
2887
- type: 'browser';
2888
3091
  /**
2889
- * Browser provider. Omit for the server's configured default provider.
3092
+ * Current status, terminal states included. Lists exclude terminal environments unless `includeTerminal` is set.
2890
3093
  */
2891
- provider?: AgentsWorkflowBrowserProvider;
2892
- };
2893
- /**
2894
- * Environment template for the explicit spec arm — a looser sibling of the workflow's own EnvironmentTemplate where every field has a server default, so callers can say as little as `{type: "os"}`.
2895
- */
2896
- type AgentsEnvironmentSpecEnvironmentTemplate = ({
2897
- type: 'browser';
2898
- } & AgentsEnvironmentSpecBrowserTemplate) | ({
2899
- type: 'os';
2900
- } & AgentsEnvironmentSpecOsTemplate);
2901
- /**
2902
- * Environment spec supplied inline — provisioning does not read any workflow. This is how a live env is started without touching (or even having) a workflow definition.
2903
- */
2904
- type AgentsEnvironmentExplicitEnvironmentSource = {
2905
- kind: 'spec';
3094
+ status: AgentsEnvironmentEnvironmentStatus;
2906
3095
  /**
2907
- * Environment template. Omit entirely for the server default (browser).
3096
+ * Profile snapshot the environment was booted against, if any.
2908
3097
  */
2909
- template?: AgentsEnvironmentSpecEnvironmentTemplate;
3098
+ agentProfileId?: CommonUuid;
2910
3099
  /**
2911
- * Viewport width in pixels. Omit for the default (1280, the computer-use resolution). Ignored for OS environments they always run at the fixed computer-use resolution.
3100
+ * Whether a playable recording has been persisted (GCS object or provider URL). The playable URL itself is minted on the by-id read.
2912
3101
  */
2913
- viewportWidth?: number;
3102
+ hasRecording: boolean;
2914
3103
  /**
2915
- * Viewport height in pixels. Omit for the default (800, the computer-use resolution). Ignored for OS environments — they always run at the fixed computer-use resolution.
3104
+ * When the environment row was created.
2916
3105
  */
2917
- viewportHeight?: number;
3106
+ createdAt: string;
2918
3107
  /**
2919
- * Session lifetime in minutes before the reaper tears the env down. Clamped server-side to the astro session cap. Omit for the default.
3108
+ * When the environment first became ready, if it reached that state.
2920
3109
  */
2921
- sessionTimeoutMins?: number;
2922
- };
2923
- /**
2924
- * Where the environment spec comes from: copied from a workflow, or supplied inline.
2925
- */
2926
- type AgentsEnvironmentEnvironmentSource = ({
2927
- kind: 'workflow';
2928
- } & AgentsEnvironmentWorkflowEnvironmentSource) | ({
2929
- kind: 'spec';
2930
- } & AgentsEnvironmentExplicitEnvironmentSource);
2931
- /**
2932
- * Response for the list endpoint, ordered by createdAt DESC. Empty array when nothing matches the filters.
2933
- */
2934
- type AgentsEnvironmentListEnvironmentsResponse = {
3110
+ readyAt?: string;
2935
3111
  /**
2936
- * The matching environments.
3112
+ * When the environment reached a terminal state. Set after Stop runs.
2937
3113
  */
2938
- environments: Array<AgentsEnvironmentEnvironmentSummary>;
3114
+ stoppedAt?: string;
3115
+ /**
3116
+ * When the reaper will tear the environment down if no graceful Stop arrives first.
3117
+ */
3118
+ expiresAt: string;
3119
+ /**
3120
+ * Environment state (browser or OS): live-view URL, viewport, provider config and a freshly-minted recording URL when one exists.
3121
+ */
3122
+ state: AgentsExecutionEnvironmentState;
3123
+ /**
3124
+ * How to connect to it.
3125
+ */
3126
+ connection: AgentsEnvironmentEnvironmentConnection;
2939
3127
  };
2940
3128
  /**
2941
3129
  * A single documentation search result
@@ -4897,21 +5085,21 @@ type EnvironmentsStartResponses = {
4897
5085
  /**
4898
5086
  * The request has succeeded.
4899
5087
  */
4900
- 200: AgentsEnvironmentStartEnvironmentResponse;
5088
+ 200: AgentsEnvironmentEnvironment;
4901
5089
  };
4902
5090
  type EnvironmentsStartResponse = EnvironmentsStartResponses[keyof EnvironmentsStartResponses];
4903
- type EnvironmentByIdLiveEnvironmentData = {
5091
+ type EnvironmentByIdGetData = {
4904
5092
  body?: never;
4905
5093
  path: {
4906
5094
  /**
4907
- * The environment whose connection details to resolve.
5095
+ * The environment to read.
4908
5096
  */
4909
5097
  environmentId: CommonUuid;
4910
5098
  };
4911
5099
  query?: never;
4912
- url: '/environments/{environmentId}/live-environment';
5100
+ url: '/environments/{environmentId}';
4913
5101
  };
4914
- type EnvironmentByIdLiveEnvironmentErrors = {
5102
+ type EnvironmentByIdGetErrors = {
4915
5103
  /**
4916
5104
  * The server could not understand the request due to invalid syntax.
4917
5105
  */
@@ -4933,14 +5121,14 @@ type EnvironmentByIdLiveEnvironmentErrors = {
4933
5121
  */
4934
5122
  500: CommonInternalServerErrorBody;
4935
5123
  };
4936
- type EnvironmentByIdLiveEnvironmentError = EnvironmentByIdLiveEnvironmentErrors[keyof EnvironmentByIdLiveEnvironmentErrors];
4937
- type EnvironmentByIdLiveEnvironmentResponses = {
5124
+ type EnvironmentByIdGetError = EnvironmentByIdGetErrors[keyof EnvironmentByIdGetErrors];
5125
+ type EnvironmentByIdGetResponses = {
4938
5126
  /**
4939
5127
  * The request has succeeded.
4940
5128
  */
4941
- 200: AgentsEnvironmentLiveEnvironmentDetails;
5129
+ 200: AgentsEnvironmentEnvironment;
4942
5130
  };
4943
- type EnvironmentByIdLiveEnvironmentResponse = EnvironmentByIdLiveEnvironmentResponses[keyof EnvironmentByIdLiveEnvironmentResponses];
5131
+ type EnvironmentByIdGetResponse = EnvironmentByIdGetResponses[keyof EnvironmentByIdGetResponses];
4944
5132
  type EnvironmentByIdStopData = {
4945
5133
  body?: never;
4946
5134
  path: {
@@ -5793,11 +5981,11 @@ declare const environmentsList: <ThrowOnError extends boolean = false>(options:
5793
5981
  */
5794
5982
  declare const environmentsStart: <ThrowOnError extends boolean = false>(options: Options<EnvironmentsStartData, ThrowOnError>) => RequestResult<EnvironmentsStartResponses, EnvironmentsStartErrors, ThrowOnError, "fields">;
5795
5983
  /**
5796
- * Resolve live environment
5984
+ * Get environment
5797
5985
  *
5798
- * Resolve an environment's live connection details: the (proxied) CDP URL or CUA details, plus the decrypted credentials of its stamped profile. Not exposed on the browser surface the credentials never belong there.
5986
+ * Read an environment, including the provider state the live view renders from. Terminal environments are returned too, so the caller can play the recording.
5799
5987
  */
5800
- declare const environmentByIdLiveEnvironment: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdLiveEnvironmentData, ThrowOnError>) => RequestResult<EnvironmentByIdLiveEnvironmentResponses, EnvironmentByIdLiveEnvironmentErrors, ThrowOnError, "fields">;
5988
+ declare const environmentByIdGet: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdGetData, ThrowOnError>) => RequestResult<EnvironmentByIdGetResponses, EnvironmentByIdGetErrors, ThrowOnError, "fields">;
5801
5989
  /**
5802
5990
  * Stop environment
5803
5991
  *
@@ -5905,4 +6093,4 @@ declare const schemaValidationValidate: <ThrowOnError extends boolean = false>(o
5905
6093
  */
5906
6094
  declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Options<TempFilesStageData, ThrowOnError>) => RequestResult<TempFilesStageResponses, TempFilesStageErrors, ThrowOnError, "fields">;
5907
6095
 
5908
- 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 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 AgentsEnvironmentEnvironmentOwner, type AgentsEnvironmentEnvironmentSource, type AgentsEnvironmentEnvironmentStatus, type AgentsEnvironmentEnvironmentSummary, type AgentsEnvironmentExecutionEnvironmentOwner, type AgentsEnvironmentExplicitEnvironmentSource, type AgentsEnvironmentExternalEnvironmentOwner, type AgentsEnvironmentListEnvironmentsResponse, type AgentsEnvironmentLiveEnvironmentDetails, type AgentsEnvironmentSpecBrowserTemplate, type AgentsEnvironmentSpecEnvironmentTemplate, type AgentsEnvironmentSpecOsTemplate, type AgentsEnvironmentStartEnvironmentRequest, type AgentsEnvironmentStartEnvironmentResponse, 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 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 AgentsExecutionApiKeyRef, type AgentsExecutionApiTriggerContext, type AgentsExecutionAskUserQuestion, type AgentsExecutionAwaitingConfirmationPayload, type AgentsExecutionBrowserRunCodeCompletedDetails, type AgentsExecutionBrowserRunCodeStartedDetails, type AgentsExecutionCancelReason, type AgentsExecutionCancelledPayload, type AgentsExecutionComment, type AgentsExecutionCompletedPayload, type AgentsExecutionElementFileUploadCompletedDetails, 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 AgentsExecutionListItem, type AgentsExecutionLlmCallPurpose, type AgentsExecutionLlmCallStartedDetails, type AgentsExecutionNavToCompletedDetails, type AgentsExecutionNavToStartedDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, 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 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 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 EnvironmentByIdLiveEnvironmentData, type EnvironmentByIdLiveEnvironmentError, type EnvironmentByIdLiveEnvironmentErrors, type EnvironmentByIdLiveEnvironmentResponse, type EnvironmentByIdLiveEnvironmentResponses, 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, 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, availableToolsList, client, contextGet, docsSearchSearch, environmentByIdLiveEnvironment, environmentByIdStop, environmentsList, environmentsStart, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage };
6096
+ 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 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 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 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 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, 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, availableToolsList, client, contextGet, docsSearchSearch, environmentByIdGet, environmentByIdStop, environmentsList, environmentsStart, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage };