asteroid-odyssey 1.7.278 → 1.7.286
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 +281 -94
- package/dist/index.d.ts +281 -94
- package/dist/index.js +3 -3
- package/dist/index.mjs +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1837,6 +1837,19 @@ type AgentsExecutionTerminalPayload = {
|
|
|
1837
1837
|
reason: 'unsubscribe' | 'complete' | 'error';
|
|
1838
1838
|
message?: string;
|
|
1839
1839
|
};
|
|
1840
|
+
/**
|
|
1841
|
+
* Steel browser provider configuration
|
|
1842
|
+
*/
|
|
1843
|
+
type AgentsExecutionSteelProviderConfig = {
|
|
1844
|
+
/**
|
|
1845
|
+
* Provider type discriminator
|
|
1846
|
+
*/
|
|
1847
|
+
type: 'steel';
|
|
1848
|
+
/**
|
|
1849
|
+
* Steel session ID
|
|
1850
|
+
*/
|
|
1851
|
+
sessionId?: string;
|
|
1852
|
+
};
|
|
1840
1853
|
type AgentsExecutionStatus = 'queued' | 'starting' | 'running' | 'paused' | 'awaiting_confirmation' | 'completed' | 'cancelled' | 'failed' | 'paused_by_agent';
|
|
1841
1854
|
/**
|
|
1842
1855
|
* Fields that can be used for sorting executions
|
|
@@ -2071,6 +2084,64 @@ type AgentsExecutionPausedPayload = {
|
|
|
2071
2084
|
type AgentsExecutionAskUserQuestion = {
|
|
2072
2085
|
questions: Array<AgentsExecutionQuestionItem>;
|
|
2073
2086
|
};
|
|
2087
|
+
/**
|
|
2088
|
+
* OS environment state
|
|
2089
|
+
*/
|
|
2090
|
+
type AgentsExecutionOsState = {
|
|
2091
|
+
/**
|
|
2092
|
+
* Environment type discriminator
|
|
2093
|
+
*/
|
|
2094
|
+
environmentType: 'os';
|
|
2095
|
+
/**
|
|
2096
|
+
* OS provider name
|
|
2097
|
+
*/
|
|
2098
|
+
provider: AgentsWorkflowOsProvider;
|
|
2099
|
+
/**
|
|
2100
|
+
* Screen width
|
|
2101
|
+
*/
|
|
2102
|
+
width: number;
|
|
2103
|
+
/**
|
|
2104
|
+
* Screen height
|
|
2105
|
+
*/
|
|
2106
|
+
height: number;
|
|
2107
|
+
/**
|
|
2108
|
+
* Live view URL
|
|
2109
|
+
*/
|
|
2110
|
+
liveViewUrl?: string;
|
|
2111
|
+
/**
|
|
2112
|
+
* Recording URL
|
|
2113
|
+
*/
|
|
2114
|
+
recordingUrl?: string;
|
|
2115
|
+
/**
|
|
2116
|
+
* 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.
|
|
2117
|
+
*/
|
|
2118
|
+
hasRecording: boolean;
|
|
2119
|
+
/**
|
|
2120
|
+
* When the environment recording started (video time-zero anchor)
|
|
2121
|
+
*/
|
|
2122
|
+
recordingStartedAt?: string;
|
|
2123
|
+
/**
|
|
2124
|
+
* Environment's public egress IP address (detected at startup)
|
|
2125
|
+
*/
|
|
2126
|
+
egressIp?: string;
|
|
2127
|
+
/**
|
|
2128
|
+
* Provider-specific configuration
|
|
2129
|
+
*/
|
|
2130
|
+
providerConfig?: AgentsExecutionDaytonaProviderConfig;
|
|
2131
|
+
};
|
|
2132
|
+
/**
|
|
2133
|
+
* Daytona OS provider configuration
|
|
2134
|
+
*/
|
|
2135
|
+
type AgentsExecutionDaytonaProviderConfig = {
|
|
2136
|
+
/**
|
|
2137
|
+
* Daytona sandbox ID
|
|
2138
|
+
*/
|
|
2139
|
+
sandboxId?: string;
|
|
2140
|
+
/**
|
|
2141
|
+
* Sandbox URL
|
|
2142
|
+
*/
|
|
2143
|
+
sandboxUrl?: string;
|
|
2144
|
+
};
|
|
2074
2145
|
type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails = {
|
|
2075
2146
|
actionName: 'obs_snapshot_with_selectors';
|
|
2076
2147
|
url: string;
|
|
@@ -2367,6 +2438,80 @@ type AgentsExecutionExtApiCallCompletedDetails = {
|
|
|
2367
2438
|
requestMethod?: string;
|
|
2368
2439
|
requestUrl?: string;
|
|
2369
2440
|
};
|
|
2441
|
+
/**
|
|
2442
|
+
* Discriminated union of environment states (discriminated by environmentType)
|
|
2443
|
+
*/
|
|
2444
|
+
type AgentsExecutionEnvironmentState = AgentsExecutionBrowserState | AgentsExecutionOsState;
|
|
2445
|
+
/**
|
|
2446
|
+
* Anchor browser provider configuration
|
|
2447
|
+
*/
|
|
2448
|
+
type AgentsExecutionAnchorProviderConfig = {
|
|
2449
|
+
/**
|
|
2450
|
+
* Provider type discriminator
|
|
2451
|
+
*/
|
|
2452
|
+
type: 'anchor';
|
|
2453
|
+
/**
|
|
2454
|
+
* Anchor session ID
|
|
2455
|
+
*/
|
|
2456
|
+
sessionId?: CommonUuid;
|
|
2457
|
+
/**
|
|
2458
|
+
* Anchor session URL
|
|
2459
|
+
*/
|
|
2460
|
+
sessionUrl?: string;
|
|
2461
|
+
};
|
|
2462
|
+
/**
|
|
2463
|
+
* Browser provider configuration (discriminated by type)
|
|
2464
|
+
*/
|
|
2465
|
+
type AgentsExecutionBrowserProviderConfig = ({
|
|
2466
|
+
type: 'anchor';
|
|
2467
|
+
} & AgentsExecutionAnchorProviderConfig) | ({
|
|
2468
|
+
type: 'steel';
|
|
2469
|
+
} & AgentsExecutionSteelProviderConfig);
|
|
2470
|
+
/**
|
|
2471
|
+
* Browser environment state
|
|
2472
|
+
*/
|
|
2473
|
+
type AgentsExecutionBrowserState = {
|
|
2474
|
+
/**
|
|
2475
|
+
* Environment type discriminator
|
|
2476
|
+
*/
|
|
2477
|
+
environmentType: 'browser';
|
|
2478
|
+
/**
|
|
2479
|
+
* Browser provider name
|
|
2480
|
+
*/
|
|
2481
|
+
provider: AgentsWorkflowBrowserProvider;
|
|
2482
|
+
/**
|
|
2483
|
+
* Browser viewport width
|
|
2484
|
+
*/
|
|
2485
|
+
width: number;
|
|
2486
|
+
/**
|
|
2487
|
+
* Browser viewport height
|
|
2488
|
+
*/
|
|
2489
|
+
height: number;
|
|
2490
|
+
/**
|
|
2491
|
+
* Live view/debugger URL
|
|
2492
|
+
*/
|
|
2493
|
+
liveViewUrl?: string;
|
|
2494
|
+
/**
|
|
2495
|
+
* Recording URL (available after execution completes)
|
|
2496
|
+
*/
|
|
2497
|
+
recordingUrl?: string;
|
|
2498
|
+
/**
|
|
2499
|
+
* 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.
|
|
2500
|
+
*/
|
|
2501
|
+
hasRecording: boolean;
|
|
2502
|
+
/**
|
|
2503
|
+
* When the environment recording started (video time-zero anchor)
|
|
2504
|
+
*/
|
|
2505
|
+
recordingStartedAt?: string;
|
|
2506
|
+
/**
|
|
2507
|
+
* Browser's public IP address (detected at startup)
|
|
2508
|
+
*/
|
|
2509
|
+
browserIp?: string;
|
|
2510
|
+
/**
|
|
2511
|
+
* Provider-specific configuration
|
|
2512
|
+
*/
|
|
2513
|
+
providerConfig?: AgentsExecutionBrowserProviderConfig;
|
|
2514
|
+
};
|
|
2370
2515
|
type AgentsExecutionElementFileUploadCompletedDetails = {
|
|
2371
2516
|
actionName: 'element_file_upload';
|
|
2372
2517
|
fileNames: Array<string>;
|
|
@@ -2701,36 +2846,100 @@ type AgentsEnvironmentWorkflowEnvironmentSource = {
|
|
|
2701
2846
|
workflowId?: CommonUuid;
|
|
2702
2847
|
};
|
|
2703
2848
|
/**
|
|
2704
|
-
*
|
|
2849
|
+
* 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.
|
|
2705
2850
|
*/
|
|
2706
|
-
type
|
|
2851
|
+
type AgentsEnvironmentStartEnvironmentRequest = {
|
|
2707
2852
|
/**
|
|
2708
|
-
* The
|
|
2853
|
+
* The agent to bind the environment to. Gates access, and supplies the organisation the environment is stamped with.
|
|
2709
2854
|
*/
|
|
2710
|
-
|
|
2855
|
+
agentId: CommonUuid;
|
|
2711
2856
|
/**
|
|
2712
|
-
*
|
|
2857
|
+
* Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution).
|
|
2713
2858
|
*/
|
|
2714
|
-
|
|
2859
|
+
source?: AgentsEnvironmentEnvironmentSource;
|
|
2860
|
+
/**
|
|
2861
|
+
* 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.
|
|
2862
|
+
*/
|
|
2863
|
+
agentProfileId?: CommonUuid;
|
|
2715
2864
|
};
|
|
2716
2865
|
/**
|
|
2717
|
-
*
|
|
2866
|
+
* OS template for the explicit spec arm. Every field is optional with a server default.
|
|
2718
2867
|
*/
|
|
2719
|
-
type
|
|
2868
|
+
type AgentsEnvironmentSpecOsTemplate = {
|
|
2869
|
+
type: 'os';
|
|
2720
2870
|
/**
|
|
2721
|
-
*
|
|
2871
|
+
* OS provider. Omit for the default (daytona).
|
|
2722
2872
|
*/
|
|
2723
|
-
|
|
2873
|
+
provider?: AgentsWorkflowOsProvider;
|
|
2724
2874
|
/**
|
|
2725
|
-
*
|
|
2875
|
+
* Snapshot to boot. Omit for the configured default snapshot for the chosen osType.
|
|
2726
2876
|
*/
|
|
2727
|
-
|
|
2877
|
+
snapshotName?: string;
|
|
2728
2878
|
/**
|
|
2729
|
-
*
|
|
2879
|
+
* Whether the sandbox is publicly reachable. Omit for false.
|
|
2730
2880
|
*/
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2881
|
+
public?: boolean;
|
|
2882
|
+
/**
|
|
2883
|
+
* Operating system the sandbox runs. Omit for linux.
|
|
2884
|
+
*/
|
|
2885
|
+
osType?: AgentsWorkflowOsType;
|
|
2886
|
+
};
|
|
2887
|
+
/**
|
|
2888
|
+
* Browser template for the explicit spec arm. Every field is optional with a server default.
|
|
2889
|
+
*/
|
|
2890
|
+
type AgentsEnvironmentSpecBrowserTemplate = {
|
|
2891
|
+
type: 'browser';
|
|
2892
|
+
/**
|
|
2893
|
+
* Browser provider. Omit for the server's configured default provider.
|
|
2894
|
+
*/
|
|
2895
|
+
provider?: AgentsWorkflowBrowserProvider;
|
|
2896
|
+
};
|
|
2897
|
+
/**
|
|
2898
|
+
* 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"}`.
|
|
2899
|
+
*/
|
|
2900
|
+
type AgentsEnvironmentSpecEnvironmentTemplate = ({
|
|
2901
|
+
type: 'browser';
|
|
2902
|
+
} & AgentsEnvironmentSpecBrowserTemplate) | ({
|
|
2903
|
+
type: 'os';
|
|
2904
|
+
} & AgentsEnvironmentSpecOsTemplate);
|
|
2905
|
+
/**
|
|
2906
|
+
* 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.
|
|
2907
|
+
*/
|
|
2908
|
+
type AgentsEnvironmentExplicitEnvironmentSource = {
|
|
2909
|
+
kind: 'spec';
|
|
2910
|
+
/**
|
|
2911
|
+
* Environment template. Omit entirely for the server default (browser).
|
|
2912
|
+
*/
|
|
2913
|
+
template?: AgentsEnvironmentSpecEnvironmentTemplate;
|
|
2914
|
+
/**
|
|
2915
|
+
* 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.
|
|
2916
|
+
*/
|
|
2917
|
+
viewportWidth?: number;
|
|
2918
|
+
/**
|
|
2919
|
+
* 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.
|
|
2920
|
+
*/
|
|
2921
|
+
viewportHeight?: number;
|
|
2922
|
+
/**
|
|
2923
|
+
* Session lifetime in minutes before the reaper tears the env down. Clamped server-side to the astro session cap. Omit for the default.
|
|
2924
|
+
*/
|
|
2925
|
+
sessionTimeoutMins?: number;
|
|
2926
|
+
};
|
|
2927
|
+
/**
|
|
2928
|
+
* Where the environment spec comes from: copied from a workflow, or supplied inline.
|
|
2929
|
+
*/
|
|
2930
|
+
type AgentsEnvironmentEnvironmentSource = ({
|
|
2931
|
+
kind: 'workflow';
|
|
2932
|
+
} & AgentsEnvironmentWorkflowEnvironmentSource) | ({
|
|
2933
|
+
kind: 'spec';
|
|
2934
|
+
} & AgentsEnvironmentExplicitEnvironmentSource);
|
|
2935
|
+
/**
|
|
2936
|
+
* Response for the list endpoint, ordered by createdAt DESC. Empty array when nothing matches the filters.
|
|
2937
|
+
*/
|
|
2938
|
+
type AgentsEnvironmentListEnvironmentsResponse = {
|
|
2939
|
+
/**
|
|
2940
|
+
* The matching environments.
|
|
2941
|
+
*/
|
|
2942
|
+
environments: Array<AgentsEnvironmentEnvironmentSummary>;
|
|
2734
2943
|
};
|
|
2735
2944
|
/**
|
|
2736
2945
|
* Every state an environment can be in, terminal included.
|
|
@@ -2842,100 +3051,78 @@ type AgentsEnvironmentEnvironmentSummary = {
|
|
|
2842
3051
|
expiresAt: string;
|
|
2843
3052
|
};
|
|
2844
3053
|
/**
|
|
2845
|
-
*
|
|
3054
|
+
* 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
3055
|
*/
|
|
2847
|
-
type
|
|
3056
|
+
type AgentsEnvironmentEnvironmentConnection = {
|
|
2848
3057
|
/**
|
|
2849
|
-
*
|
|
3058
|
+
* 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
3059
|
*/
|
|
2851
|
-
|
|
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;
|
|
3060
|
+
cdpUrl?: string;
|
|
2856
3061
|
/**
|
|
2857
|
-
*
|
|
3062
|
+
* 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
3063
|
*/
|
|
2859
|
-
|
|
3064
|
+
cua?: AgentsWorkflowLiveEnvironmentCuaConnection;
|
|
2860
3065
|
};
|
|
2861
3066
|
/**
|
|
2862
|
-
*
|
|
3067
|
+
* 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
3068
|
*/
|
|
2864
|
-
type
|
|
2865
|
-
type: 'os';
|
|
3069
|
+
type AgentsEnvironmentEnvironment = {
|
|
2866
3070
|
/**
|
|
2867
|
-
*
|
|
3071
|
+
* Environment identifier.
|
|
2868
3072
|
*/
|
|
2869
|
-
|
|
3073
|
+
id: CommonUuid;
|
|
2870
3074
|
/**
|
|
2871
|
-
*
|
|
3075
|
+
* The organisation the environment belongs to.
|
|
2872
3076
|
*/
|
|
2873
|
-
|
|
3077
|
+
organizationId: CommonUuid;
|
|
2874
3078
|
/**
|
|
2875
|
-
*
|
|
3079
|
+
* Who the environment belongs to, and the identity that owner carries.
|
|
2876
3080
|
*/
|
|
2877
|
-
|
|
3081
|
+
owner: AgentsEnvironmentEnvironmentOwner;
|
|
2878
3082
|
/**
|
|
2879
|
-
*
|
|
3083
|
+
* Browser or OS.
|
|
3084
|
+
*/
|
|
3085
|
+
environmentType: AgentsWorkflowEnvironmentType;
|
|
3086
|
+
/**
|
|
3087
|
+
* Operating system for OS environments. Absent for browser environments; linux when an OS environment predates explicit osType storage.
|
|
2880
3088
|
*/
|
|
2881
3089
|
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
3090
|
/**
|
|
2889
|
-
*
|
|
3091
|
+
* Current status, terminal states included. Lists exclude terminal environments unless `includeTerminal` is set.
|
|
2890
3092
|
*/
|
|
2891
|
-
|
|
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';
|
|
3093
|
+
status: AgentsEnvironmentEnvironmentStatus;
|
|
2906
3094
|
/**
|
|
2907
|
-
*
|
|
3095
|
+
* Profile snapshot the environment was booted against, if any.
|
|
2908
3096
|
*/
|
|
2909
|
-
|
|
3097
|
+
agentProfileId?: CommonUuid;
|
|
2910
3098
|
/**
|
|
2911
|
-
*
|
|
3099
|
+
* Whether a playable recording has been persisted (GCS object or provider URL). The playable URL itself is minted on the by-id read.
|
|
2912
3100
|
*/
|
|
2913
|
-
|
|
3101
|
+
hasRecording: boolean;
|
|
2914
3102
|
/**
|
|
2915
|
-
*
|
|
3103
|
+
* When the environment row was created.
|
|
2916
3104
|
*/
|
|
2917
|
-
|
|
3105
|
+
createdAt: string;
|
|
2918
3106
|
/**
|
|
2919
|
-
*
|
|
3107
|
+
* When the environment first became ready, if it reached that state.
|
|
2920
3108
|
*/
|
|
2921
|
-
|
|
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 = {
|
|
3109
|
+
readyAt?: string;
|
|
2935
3110
|
/**
|
|
2936
|
-
*
|
|
3111
|
+
* When the environment reached a terminal state. Set after Stop runs.
|
|
2937
3112
|
*/
|
|
2938
|
-
|
|
3113
|
+
stoppedAt?: string;
|
|
3114
|
+
/**
|
|
3115
|
+
* When the reaper will tear the environment down if no graceful Stop arrives first.
|
|
3116
|
+
*/
|
|
3117
|
+
expiresAt: string;
|
|
3118
|
+
/**
|
|
3119
|
+
* Environment state (browser or OS): live-view URL, viewport, provider config and a freshly-minted recording URL when one exists.
|
|
3120
|
+
*/
|
|
3121
|
+
state: AgentsExecutionEnvironmentState;
|
|
3122
|
+
/**
|
|
3123
|
+
* How to connect to it.
|
|
3124
|
+
*/
|
|
3125
|
+
connection: AgentsEnvironmentEnvironmentConnection;
|
|
2939
3126
|
};
|
|
2940
3127
|
/**
|
|
2941
3128
|
* A single documentation search result
|
|
@@ -4897,21 +5084,21 @@ type EnvironmentsStartResponses = {
|
|
|
4897
5084
|
/**
|
|
4898
5085
|
* The request has succeeded.
|
|
4899
5086
|
*/
|
|
4900
|
-
200:
|
|
5087
|
+
200: AgentsEnvironmentEnvironment;
|
|
4901
5088
|
};
|
|
4902
5089
|
type EnvironmentsStartResponse = EnvironmentsStartResponses[keyof EnvironmentsStartResponses];
|
|
4903
|
-
type
|
|
5090
|
+
type EnvironmentByIdGetData = {
|
|
4904
5091
|
body?: never;
|
|
4905
5092
|
path: {
|
|
4906
5093
|
/**
|
|
4907
|
-
* The environment
|
|
5094
|
+
* The environment to read.
|
|
4908
5095
|
*/
|
|
4909
5096
|
environmentId: CommonUuid;
|
|
4910
5097
|
};
|
|
4911
5098
|
query?: never;
|
|
4912
|
-
url: '/environments/{environmentId}
|
|
5099
|
+
url: '/environments/{environmentId}';
|
|
4913
5100
|
};
|
|
4914
|
-
type
|
|
5101
|
+
type EnvironmentByIdGetErrors = {
|
|
4915
5102
|
/**
|
|
4916
5103
|
* The server could not understand the request due to invalid syntax.
|
|
4917
5104
|
*/
|
|
@@ -4933,14 +5120,14 @@ type EnvironmentByIdLiveEnvironmentErrors = {
|
|
|
4933
5120
|
*/
|
|
4934
5121
|
500: CommonInternalServerErrorBody;
|
|
4935
5122
|
};
|
|
4936
|
-
type
|
|
4937
|
-
type
|
|
5123
|
+
type EnvironmentByIdGetError = EnvironmentByIdGetErrors[keyof EnvironmentByIdGetErrors];
|
|
5124
|
+
type EnvironmentByIdGetResponses = {
|
|
4938
5125
|
/**
|
|
4939
5126
|
* The request has succeeded.
|
|
4940
5127
|
*/
|
|
4941
|
-
200:
|
|
5128
|
+
200: AgentsEnvironmentEnvironment;
|
|
4942
5129
|
};
|
|
4943
|
-
type
|
|
5130
|
+
type EnvironmentByIdGetResponse = EnvironmentByIdGetResponses[keyof EnvironmentByIdGetResponses];
|
|
4944
5131
|
type EnvironmentByIdStopData = {
|
|
4945
5132
|
body?: never;
|
|
4946
5133
|
path: {
|
|
@@ -5793,11 +5980,11 @@ declare const environmentsList: <ThrowOnError extends boolean = false>(options:
|
|
|
5793
5980
|
*/
|
|
5794
5981
|
declare const environmentsStart: <ThrowOnError extends boolean = false>(options: Options<EnvironmentsStartData, ThrowOnError>) => RequestResult<EnvironmentsStartResponses, EnvironmentsStartErrors, ThrowOnError, "fields">;
|
|
5795
5982
|
/**
|
|
5796
|
-
*
|
|
5983
|
+
* Get environment
|
|
5797
5984
|
*
|
|
5798
|
-
*
|
|
5985
|
+
* 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
5986
|
*/
|
|
5800
|
-
declare const
|
|
5987
|
+
declare const environmentByIdGet: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdGetData, ThrowOnError>) => RequestResult<EnvironmentByIdGetResponses, EnvironmentByIdGetErrors, ThrowOnError, "fields">;
|
|
5801
5988
|
/**
|
|
5802
5989
|
* Stop environment
|
|
5803
5990
|
*
|
|
@@ -5905,4 +6092,4 @@ declare const schemaValidationValidate: <ThrowOnError extends boolean = false>(o
|
|
|
5905
6092
|
*/
|
|
5906
6093
|
declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Options<TempFilesStageData, ThrowOnError>) => RequestResult<TempFilesStageResponses, TempFilesStageErrors, ThrowOnError, "fields">;
|
|
5907
6094
|
|
|
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 };
|
|
6095
|
+
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 };
|