asteroid-odyssey 1.7.274 → 1.7.278
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 +234 -199
- package/dist/index.d.ts +234 -199
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2701,19 +2701,24 @@ type AgentsEnvironmentWorkflowEnvironmentSource = {
|
|
|
2701
2701
|
workflowId?: CommonUuid;
|
|
2702
2702
|
};
|
|
2703
2703
|
/**
|
|
2704
|
-
* Response from starting
|
|
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.
|
|
2705
2705
|
*/
|
|
2706
2706
|
type AgentsEnvironmentStartEnvironmentResponse = {
|
|
2707
2707
|
/**
|
|
2708
2708
|
* The newly-provisioned environment.
|
|
2709
2709
|
*/
|
|
2710
|
-
|
|
2710
|
+
environment: AgentsEnvironmentEnvironmentSummary;
|
|
2711
2711
|
/**
|
|
2712
|
-
*
|
|
2712
|
+
* How to connect to it.
|
|
2713
2713
|
*/
|
|
2714
|
-
|
|
2714
|
+
connection: AgentsEnvironmentLiveEnvironmentDetails;
|
|
2715
|
+
};
|
|
2716
|
+
/**
|
|
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.
|
|
2718
|
+
*/
|
|
2719
|
+
type AgentsEnvironmentLiveEnvironmentDetails = {
|
|
2715
2720
|
/**
|
|
2716
|
-
* Chrome DevTools Protocol websocket URL. Present only for browser environments.
|
|
2721
|
+
* Chrome DevTools Protocol websocket URL. Present only for browser environments with a ready CDP endpoint.
|
|
2717
2722
|
*/
|
|
2718
2723
|
cdpUrl?: string;
|
|
2719
2724
|
/**
|
|
@@ -2721,146 +2726,178 @@ type AgentsEnvironmentStartEnvironmentResponse = {
|
|
|
2721
2726
|
*/
|
|
2722
2727
|
cua?: AgentsWorkflowLiveEnvironmentCuaConnection;
|
|
2723
2728
|
/**
|
|
2724
|
-
* Decrypted credential placeholders for the
|
|
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.
|
|
2725
2730
|
*/
|
|
2726
2731
|
credentials?: {
|
|
2727
2732
|
[key: string]: unknown;
|
|
2728
2733
|
};
|
|
2729
2734
|
};
|
|
2730
2735
|
/**
|
|
2731
|
-
*
|
|
2736
|
+
* Every state an environment can be in, terminal included.
|
|
2732
2737
|
*/
|
|
2733
|
-
type
|
|
2734
|
-
|
|
2738
|
+
type AgentsEnvironmentEnvironmentStatus = 'requested' | 'provisioning' | 'ready' | 'stopping' | 'stopped' | 'failed' | 'dead';
|
|
2739
|
+
/**
|
|
2740
|
+
* A standalone environment: it belongs to the organisation rather than to a chat or an execution, and outlives both. Booted by an API key today; the agent binding arrives with the workflow it was started from.
|
|
2741
|
+
*/
|
|
2742
|
+
type AgentsEnvironmentExternalEnvironmentOwner = {
|
|
2743
|
+
type: 'external';
|
|
2735
2744
|
/**
|
|
2736
|
-
*
|
|
2745
|
+
* The agent the environment is bound to.
|
|
2737
2746
|
*/
|
|
2738
|
-
|
|
2747
|
+
agentId: CommonUuid;
|
|
2739
2748
|
/**
|
|
2740
|
-
*
|
|
2749
|
+
* The API key that booted it, when one did. Absent for environments booted by a signed-in user.
|
|
2741
2750
|
*/
|
|
2742
|
-
|
|
2751
|
+
createdByApiKeyId?: CommonUuid;
|
|
2752
|
+
};
|
|
2753
|
+
/**
|
|
2754
|
+
* An astro build conversation owns the environment: it lives as long as the chat driving it.
|
|
2755
|
+
*/
|
|
2756
|
+
type AgentsEnvironmentAstroEnvironmentOwner = {
|
|
2757
|
+
type: 'astro';
|
|
2743
2758
|
/**
|
|
2744
|
-
*
|
|
2759
|
+
* The agent the conversation is building.
|
|
2745
2760
|
*/
|
|
2746
|
-
|
|
2761
|
+
agentId: CommonUuid;
|
|
2747
2762
|
/**
|
|
2748
|
-
*
|
|
2763
|
+
* The astro chat that booted the environment.
|
|
2749
2764
|
*/
|
|
2750
|
-
|
|
2765
|
+
chatId: CommonUuid;
|
|
2751
2766
|
};
|
|
2752
2767
|
/**
|
|
2753
|
-
*
|
|
2754
|
-
*/
|
|
2755
|
-
type AgentsEnvironmentSpecEnvironmentTemplate = ({
|
|
2756
|
-
type: 'browser';
|
|
2757
|
-
} & AgentsEnvironmentSpecBrowserTemplate) | ({
|
|
2758
|
-
type: 'os';
|
|
2759
|
-
} & AgentsEnvironmentSpecOsTemplate);
|
|
2760
|
-
/**
|
|
2761
|
-
* Browser template for the explicit spec arm. Every field is optional with a server default.
|
|
2768
|
+
* An execution owns the environment: it was booted to run that execution and dies with it.
|
|
2762
2769
|
*/
|
|
2763
|
-
type
|
|
2764
|
-
type: '
|
|
2770
|
+
type AgentsEnvironmentExecutionEnvironmentOwner = {
|
|
2771
|
+
type: 'execution';
|
|
2765
2772
|
/**
|
|
2766
|
-
*
|
|
2773
|
+
* The agent the execution runs on behalf of.
|
|
2767
2774
|
*/
|
|
2768
|
-
|
|
2775
|
+
agentId: CommonUuid;
|
|
2776
|
+
/**
|
|
2777
|
+
* The execution that booted the environment.
|
|
2778
|
+
*/
|
|
2779
|
+
executionId: CommonUuid;
|
|
2769
2780
|
};
|
|
2770
2781
|
/**
|
|
2771
|
-
*
|
|
2782
|
+
* Who the environment belongs to. Discriminated on `type`, mirroring the storage-side agent_environment.owner_type, so each owner kind carries exactly the identity it has — an execution id only exists for execution-owned envs, a chat id only for astro-owned ones. A future owner kind (warm pools, org sessions) joins as a member rather than as another optional column.
|
|
2772
2783
|
*/
|
|
2773
|
-
type
|
|
2784
|
+
type AgentsEnvironmentEnvironmentOwner = ({
|
|
2785
|
+
type: 'execution';
|
|
2786
|
+
} & AgentsEnvironmentExecutionEnvironmentOwner) | ({
|
|
2787
|
+
type: 'astro';
|
|
2788
|
+
} & AgentsEnvironmentAstroEnvironmentOwner) | ({
|
|
2789
|
+
type: 'external';
|
|
2790
|
+
} & AgentsEnvironmentExternalEnvironmentOwner);
|
|
2774
2791
|
/**
|
|
2775
|
-
*
|
|
2792
|
+
* An environment as it appears in a list. Carries everything a row needs; the provider `state` is fetched with the environment itself, because resolving it mints a signed recording URL per environment and a list would mint one per row.
|
|
2776
2793
|
*/
|
|
2777
|
-
type
|
|
2794
|
+
type AgentsEnvironmentEnvironmentSummary = {
|
|
2778
2795
|
/**
|
|
2779
2796
|
* Environment identifier.
|
|
2780
2797
|
*/
|
|
2781
|
-
|
|
2798
|
+
id: CommonUuid;
|
|
2799
|
+
/**
|
|
2800
|
+
* The organisation the environment belongs to.
|
|
2801
|
+
*/
|
|
2802
|
+
organizationId: CommonUuid;
|
|
2803
|
+
/**
|
|
2804
|
+
* Who the environment belongs to, and the identity that owner carries.
|
|
2805
|
+
*/
|
|
2806
|
+
owner: AgentsEnvironmentEnvironmentOwner;
|
|
2782
2807
|
/**
|
|
2783
2808
|
* Browser or OS.
|
|
2784
2809
|
*/
|
|
2785
2810
|
environmentType: AgentsWorkflowEnvironmentType;
|
|
2786
2811
|
/**
|
|
2787
|
-
*
|
|
2812
|
+
* Operating system for OS environments. Absent for browser environments; linux when an OS environment predates explicit osType storage.
|
|
2788
2813
|
*/
|
|
2789
|
-
|
|
2814
|
+
osType?: AgentsWorkflowOsType;
|
|
2790
2815
|
/**
|
|
2791
|
-
* Current status
|
|
2816
|
+
* Current status, terminal states included. Lists exclude terminal environments unless `includeTerminal` is set.
|
|
2792
2817
|
*/
|
|
2793
|
-
status:
|
|
2818
|
+
status: AgentsEnvironmentEnvironmentStatus;
|
|
2794
2819
|
/**
|
|
2795
|
-
*
|
|
2820
|
+
* Profile snapshot the environment was booted against, if any.
|
|
2821
|
+
*/
|
|
2822
|
+
agentProfileId?: CommonUuid;
|
|
2823
|
+
/**
|
|
2824
|
+
* Whether a playable recording has been persisted (GCS object or provider URL). The playable URL itself is minted on the by-id read.
|
|
2825
|
+
*/
|
|
2826
|
+
hasRecording: boolean;
|
|
2827
|
+
/**
|
|
2828
|
+
* When the environment row was created.
|
|
2796
2829
|
*/
|
|
2797
2830
|
createdAt: string;
|
|
2798
2831
|
/**
|
|
2799
|
-
* When the
|
|
2832
|
+
* When the environment first became ready, if it reached that state.
|
|
2800
2833
|
*/
|
|
2801
2834
|
readyAt?: string;
|
|
2802
2835
|
/**
|
|
2803
|
-
* When the
|
|
2836
|
+
* When the environment reached a terminal state. Set after Stop runs.
|
|
2837
|
+
*/
|
|
2838
|
+
stoppedAt?: string;
|
|
2839
|
+
/**
|
|
2840
|
+
* When the reaper will tear the environment down if no graceful Stop arrives first.
|
|
2804
2841
|
*/
|
|
2805
2842
|
expiresAt: string;
|
|
2843
|
+
};
|
|
2844
|
+
/**
|
|
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.
|
|
2846
|
+
*/
|
|
2847
|
+
type AgentsEnvironmentStartEnvironmentRequest = {
|
|
2806
2848
|
/**
|
|
2807
|
-
*
|
|
2849
|
+
* The agent to bind the environment to. Gates access, and supplies the organisation the environment is stamped with.
|
|
2808
2850
|
*/
|
|
2809
|
-
|
|
2851
|
+
agentId: CommonUuid;
|
|
2810
2852
|
/**
|
|
2811
|
-
*
|
|
2853
|
+
* Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution).
|
|
2812
2854
|
*/
|
|
2813
|
-
|
|
2855
|
+
source?: AgentsEnvironmentEnvironmentSource;
|
|
2814
2856
|
/**
|
|
2815
|
-
*
|
|
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).
|
|
2816
2858
|
*/
|
|
2817
2859
|
agentProfileId?: CommonUuid;
|
|
2818
2860
|
};
|
|
2819
2861
|
/**
|
|
2820
|
-
*
|
|
2821
|
-
*/
|
|
2822
|
-
type AgentsEnvironmentEnvironmentOwnerType = 'execution' | 'astro' | 'external';
|
|
2823
|
-
/**
|
|
2824
|
-
* Connection details for a running environment, returned by the env-id attach endpoint. All fields are optional: an env that's still bootstrapping (no CDP URL yet) returns an empty response so the caller can proceed without browser tools.
|
|
2862
|
+
* OS template for the explicit spec arm. Every field is optional with a server default.
|
|
2825
2863
|
*/
|
|
2826
|
-
type
|
|
2864
|
+
type AgentsEnvironmentSpecOsTemplate = {
|
|
2865
|
+
type: 'os';
|
|
2827
2866
|
/**
|
|
2828
|
-
*
|
|
2867
|
+
* OS provider. Omit for the default (daytona).
|
|
2829
2868
|
*/
|
|
2830
|
-
|
|
2869
|
+
provider?: AgentsWorkflowOsProvider;
|
|
2831
2870
|
/**
|
|
2832
|
-
*
|
|
2871
|
+
* Snapshot to boot. Omit for the configured default snapshot for the chosen osType.
|
|
2833
2872
|
*/
|
|
2834
|
-
|
|
2873
|
+
snapshotName?: string;
|
|
2835
2874
|
/**
|
|
2836
|
-
*
|
|
2875
|
+
* Whether the sandbox is publicly reachable. Omit for false.
|
|
2837
2876
|
*/
|
|
2838
|
-
|
|
2839
|
-
[key: string]: unknown;
|
|
2840
|
-
};
|
|
2841
|
-
};
|
|
2842
|
-
/**
|
|
2843
|
-
* Response for the list endpoint. Astro hits this when it doesn't have an environment id in slip state and wants to see what it can attach to before deciding to start fresh.
|
|
2844
|
-
*/
|
|
2845
|
-
type AgentsEnvironmentListEnvironmentsResponse = {
|
|
2877
|
+
public?: boolean;
|
|
2846
2878
|
/**
|
|
2847
|
-
*
|
|
2879
|
+
* Operating system the sandbox runs. Omit for linux.
|
|
2848
2880
|
*/
|
|
2849
|
-
|
|
2881
|
+
osType?: AgentsWorkflowOsType;
|
|
2850
2882
|
};
|
|
2851
2883
|
/**
|
|
2852
|
-
*
|
|
2884
|
+
* Browser template for the explicit spec arm. Every field is optional with a server default.
|
|
2853
2885
|
*/
|
|
2854
|
-
type
|
|
2855
|
-
|
|
2856
|
-
* Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution).
|
|
2857
|
-
*/
|
|
2858
|
-
source?: AgentsEnvironmentEnvironmentSource;
|
|
2886
|
+
type AgentsEnvironmentSpecBrowserTemplate = {
|
|
2887
|
+
type: 'browser';
|
|
2859
2888
|
/**
|
|
2860
|
-
*
|
|
2889
|
+
* Browser provider. Omit for the server's configured default provider.
|
|
2861
2890
|
*/
|
|
2862
|
-
|
|
2891
|
+
provider?: AgentsWorkflowBrowserProvider;
|
|
2863
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);
|
|
2864
2901
|
/**
|
|
2865
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.
|
|
2866
2903
|
*/
|
|
@@ -2891,6 +2928,15 @@ type AgentsEnvironmentEnvironmentSource = ({
|
|
|
2891
2928
|
} & AgentsEnvironmentWorkflowEnvironmentSource) | ({
|
|
2892
2929
|
kind: 'spec';
|
|
2893
2930
|
} & AgentsEnvironmentExplicitEnvironmentSource);
|
|
2931
|
+
/**
|
|
2932
|
+
* Response for the list endpoint, ordered by createdAt DESC. Empty array when nothing matches the filters.
|
|
2933
|
+
*/
|
|
2934
|
+
type AgentsEnvironmentListEnvironmentsResponse = {
|
|
2935
|
+
/**
|
|
2936
|
+
* The matching environments.
|
|
2937
|
+
*/
|
|
2938
|
+
environments: Array<AgentsEnvironmentEnvironmentSummary>;
|
|
2939
|
+
};
|
|
2894
2940
|
/**
|
|
2895
2941
|
* A single documentation search result
|
|
2896
2942
|
*/
|
|
@@ -4308,88 +4354,6 @@ type AgentByIdUpdateResponses = {
|
|
|
4308
4354
|
*/
|
|
4309
4355
|
200: unknown;
|
|
4310
4356
|
};
|
|
4311
|
-
type AgentEnvironmentsListData = {
|
|
4312
|
-
body?: never;
|
|
4313
|
-
path: {
|
|
4314
|
-
/**
|
|
4315
|
-
* The agent whose environments to list.
|
|
4316
|
-
*/
|
|
4317
|
-
agentId: CommonUuid;
|
|
4318
|
-
};
|
|
4319
|
-
query?: never;
|
|
4320
|
-
url: '/agents/{agentId}/environments';
|
|
4321
|
-
};
|
|
4322
|
-
type AgentEnvironmentsListErrors = {
|
|
4323
|
-
/**
|
|
4324
|
-
* The server could not understand the request due to invalid syntax.
|
|
4325
|
-
*/
|
|
4326
|
-
400: CommonBadRequestErrorBody;
|
|
4327
|
-
/**
|
|
4328
|
-
* Access is unauthorized.
|
|
4329
|
-
*/
|
|
4330
|
-
401: CommonUnauthorizedErrorBody;
|
|
4331
|
-
/**
|
|
4332
|
-
* Access is forbidden.
|
|
4333
|
-
*/
|
|
4334
|
-
403: CommonForbiddenErrorBody;
|
|
4335
|
-
/**
|
|
4336
|
-
* The server cannot find the requested resource.
|
|
4337
|
-
*/
|
|
4338
|
-
404: CommonNotFoundErrorBody;
|
|
4339
|
-
/**
|
|
4340
|
-
* Server error
|
|
4341
|
-
*/
|
|
4342
|
-
500: CommonInternalServerErrorBody;
|
|
4343
|
-
};
|
|
4344
|
-
type AgentEnvironmentsListError = AgentEnvironmentsListErrors[keyof AgentEnvironmentsListErrors];
|
|
4345
|
-
type AgentEnvironmentsListResponses = {
|
|
4346
|
-
/**
|
|
4347
|
-
* The request has succeeded.
|
|
4348
|
-
*/
|
|
4349
|
-
200: AgentsEnvironmentListEnvironmentsResponse;
|
|
4350
|
-
};
|
|
4351
|
-
type AgentEnvironmentsListResponse = AgentEnvironmentsListResponses[keyof AgentEnvironmentsListResponses];
|
|
4352
|
-
type AgentEnvironmentsStartData = {
|
|
4353
|
-
body: AgentsEnvironmentExternalStartEnvironmentRequest;
|
|
4354
|
-
path: {
|
|
4355
|
-
/**
|
|
4356
|
-
* The agent the environment belongs to.
|
|
4357
|
-
*/
|
|
4358
|
-
agentId: CommonUuid;
|
|
4359
|
-
};
|
|
4360
|
-
query?: never;
|
|
4361
|
-
url: '/agents/{agentId}/environments';
|
|
4362
|
-
};
|
|
4363
|
-
type AgentEnvironmentsStartErrors = {
|
|
4364
|
-
/**
|
|
4365
|
-
* The server could not understand the request due to invalid syntax.
|
|
4366
|
-
*/
|
|
4367
|
-
400: CommonBadRequestErrorBody;
|
|
4368
|
-
/**
|
|
4369
|
-
* Access is unauthorized.
|
|
4370
|
-
*/
|
|
4371
|
-
401: CommonUnauthorizedErrorBody;
|
|
4372
|
-
/**
|
|
4373
|
-
* Access is forbidden.
|
|
4374
|
-
*/
|
|
4375
|
-
403: CommonForbiddenErrorBody;
|
|
4376
|
-
/**
|
|
4377
|
-
* The server cannot find the requested resource.
|
|
4378
|
-
*/
|
|
4379
|
-
404: CommonNotFoundErrorBody;
|
|
4380
|
-
/**
|
|
4381
|
-
* Server error
|
|
4382
|
-
*/
|
|
4383
|
-
500: CommonInternalServerErrorBody;
|
|
4384
|
-
};
|
|
4385
|
-
type AgentEnvironmentsStartError = AgentEnvironmentsStartErrors[keyof AgentEnvironmentsStartErrors];
|
|
4386
|
-
type AgentEnvironmentsStartResponses = {
|
|
4387
|
-
/**
|
|
4388
|
-
* The request has succeeded.
|
|
4389
|
-
*/
|
|
4390
|
-
200: AgentsEnvironmentStartEnvironmentResponse;
|
|
4391
|
-
};
|
|
4392
|
-
type AgentEnvironmentsStartResponse = AgentEnvironmentsStartResponses[keyof AgentEnvironmentsStartResponses];
|
|
4393
4357
|
type AgentExecutePostData = {
|
|
4394
4358
|
/**
|
|
4395
4359
|
* Execution request parameters
|
|
@@ -4855,23 +4819,99 @@ type DocsSearchSearchResponses = {
|
|
|
4855
4819
|
200: AgentsDocsSearchDocsResponse;
|
|
4856
4820
|
};
|
|
4857
4821
|
type DocsSearchSearchResponse = DocsSearchSearchResponses[keyof DocsSearchSearchResponses];
|
|
4858
|
-
type
|
|
4822
|
+
type EnvironmentsListData = {
|
|
4859
4823
|
body?: never;
|
|
4860
|
-
path
|
|
4824
|
+
path?: never;
|
|
4825
|
+
query: {
|
|
4861
4826
|
/**
|
|
4862
|
-
* The
|
|
4827
|
+
* The agent whose environments to list. Gates access, and supplies the organisation.
|
|
4863
4828
|
*/
|
|
4864
|
-
|
|
4829
|
+
agentId: CommonUuid;
|
|
4830
|
+
/**
|
|
4831
|
+
* Include stopped, failed and dead environments. Omit for running environments only.
|
|
4832
|
+
*/
|
|
4833
|
+
includeTerminal?: boolean;
|
|
4865
4834
|
};
|
|
4866
|
-
|
|
4835
|
+
url: '/environments';
|
|
4836
|
+
};
|
|
4837
|
+
type EnvironmentsListErrors = {
|
|
4838
|
+
/**
|
|
4839
|
+
* The server could not understand the request due to invalid syntax.
|
|
4840
|
+
*/
|
|
4841
|
+
400: CommonBadRequestErrorBody;
|
|
4842
|
+
/**
|
|
4843
|
+
* Access is unauthorized.
|
|
4844
|
+
*/
|
|
4845
|
+
401: CommonUnauthorizedErrorBody;
|
|
4846
|
+
/**
|
|
4847
|
+
* Access is forbidden.
|
|
4848
|
+
*/
|
|
4849
|
+
403: CommonForbiddenErrorBody;
|
|
4850
|
+
/**
|
|
4851
|
+
* The server cannot find the requested resource.
|
|
4852
|
+
*/
|
|
4853
|
+
404: CommonNotFoundErrorBody;
|
|
4854
|
+
/**
|
|
4855
|
+
* Server error
|
|
4856
|
+
*/
|
|
4857
|
+
500: CommonInternalServerErrorBody;
|
|
4858
|
+
};
|
|
4859
|
+
type EnvironmentsListError = EnvironmentsListErrors[keyof EnvironmentsListErrors];
|
|
4860
|
+
type EnvironmentsListResponses = {
|
|
4861
|
+
/**
|
|
4862
|
+
* The request has succeeded.
|
|
4863
|
+
*/
|
|
4864
|
+
200: AgentsEnvironmentListEnvironmentsResponse;
|
|
4865
|
+
};
|
|
4866
|
+
type EnvironmentsListResponse = EnvironmentsListResponses[keyof EnvironmentsListResponses];
|
|
4867
|
+
type EnvironmentsStartData = {
|
|
4868
|
+
body: AgentsEnvironmentStartEnvironmentRequest;
|
|
4869
|
+
path?: never;
|
|
4870
|
+
query?: never;
|
|
4871
|
+
url: '/environments';
|
|
4872
|
+
};
|
|
4873
|
+
type EnvironmentsStartErrors = {
|
|
4874
|
+
/**
|
|
4875
|
+
* The server could not understand the request due to invalid syntax.
|
|
4876
|
+
*/
|
|
4877
|
+
400: CommonBadRequestErrorBody;
|
|
4878
|
+
/**
|
|
4879
|
+
* Access is unauthorized.
|
|
4880
|
+
*/
|
|
4881
|
+
401: CommonUnauthorizedErrorBody;
|
|
4882
|
+
/**
|
|
4883
|
+
* Access is forbidden.
|
|
4884
|
+
*/
|
|
4885
|
+
403: CommonForbiddenErrorBody;
|
|
4886
|
+
/**
|
|
4887
|
+
* The server cannot find the requested resource.
|
|
4888
|
+
*/
|
|
4889
|
+
404: CommonNotFoundErrorBody;
|
|
4890
|
+
/**
|
|
4891
|
+
* Server error
|
|
4892
|
+
*/
|
|
4893
|
+
500: CommonInternalServerErrorBody;
|
|
4894
|
+
};
|
|
4895
|
+
type EnvironmentsStartError = EnvironmentsStartErrors[keyof EnvironmentsStartErrors];
|
|
4896
|
+
type EnvironmentsStartResponses = {
|
|
4897
|
+
/**
|
|
4898
|
+
* The request has succeeded.
|
|
4899
|
+
*/
|
|
4900
|
+
200: AgentsEnvironmentStartEnvironmentResponse;
|
|
4901
|
+
};
|
|
4902
|
+
type EnvironmentsStartResponse = EnvironmentsStartResponses[keyof EnvironmentsStartResponses];
|
|
4903
|
+
type EnvironmentByIdLiveEnvironmentData = {
|
|
4904
|
+
body?: never;
|
|
4905
|
+
path: {
|
|
4867
4906
|
/**
|
|
4868
|
-
*
|
|
4907
|
+
* The environment whose connection details to resolve.
|
|
4869
4908
|
*/
|
|
4870
|
-
|
|
4909
|
+
environmentId: CommonUuid;
|
|
4871
4910
|
};
|
|
4911
|
+
query?: never;
|
|
4872
4912
|
url: '/environments/{environmentId}/live-environment';
|
|
4873
4913
|
};
|
|
4874
|
-
type
|
|
4914
|
+
type EnvironmentByIdLiveEnvironmentErrors = {
|
|
4875
4915
|
/**
|
|
4876
4916
|
* The server could not understand the request due to invalid syntax.
|
|
4877
4917
|
*/
|
|
@@ -4893,15 +4933,15 @@ type EnvironmentLiveEnvironmentErrors = {
|
|
|
4893
4933
|
*/
|
|
4894
4934
|
500: CommonInternalServerErrorBody;
|
|
4895
4935
|
};
|
|
4896
|
-
type
|
|
4897
|
-
type
|
|
4936
|
+
type EnvironmentByIdLiveEnvironmentError = EnvironmentByIdLiveEnvironmentErrors[keyof EnvironmentByIdLiveEnvironmentErrors];
|
|
4937
|
+
type EnvironmentByIdLiveEnvironmentResponses = {
|
|
4898
4938
|
/**
|
|
4899
4939
|
* The request has succeeded.
|
|
4900
4940
|
*/
|
|
4901
4941
|
200: AgentsEnvironmentLiveEnvironmentDetails;
|
|
4902
4942
|
};
|
|
4903
|
-
type
|
|
4904
|
-
type
|
|
4943
|
+
type EnvironmentByIdLiveEnvironmentResponse = EnvironmentByIdLiveEnvironmentResponses[keyof EnvironmentByIdLiveEnvironmentResponses];
|
|
4944
|
+
type EnvironmentByIdStopData = {
|
|
4905
4945
|
body?: never;
|
|
4906
4946
|
path: {
|
|
4907
4947
|
/**
|
|
@@ -4909,15 +4949,10 @@ type EnvironmentStopData = {
|
|
|
4909
4949
|
*/
|
|
4910
4950
|
environmentId: CommonUuid;
|
|
4911
4951
|
};
|
|
4912
|
-
query?:
|
|
4913
|
-
/**
|
|
4914
|
-
* Optional assertion that the env belongs to this agent; the stop fails (404) on mismatch. Omit it — access is already gated on the env's own agent and organisation.
|
|
4915
|
-
*/
|
|
4916
|
-
expectedAgentId?: CommonUuid;
|
|
4917
|
-
};
|
|
4952
|
+
query?: never;
|
|
4918
4953
|
url: '/environments/{environmentId}/stop';
|
|
4919
4954
|
};
|
|
4920
|
-
type
|
|
4955
|
+
type EnvironmentByIdStopErrors = {
|
|
4921
4956
|
/**
|
|
4922
4957
|
* The server could not understand the request due to invalid syntax.
|
|
4923
4958
|
*/
|
|
@@ -4939,14 +4974,14 @@ type EnvironmentStopErrors = {
|
|
|
4939
4974
|
*/
|
|
4940
4975
|
500: CommonInternalServerErrorBody;
|
|
4941
4976
|
};
|
|
4942
|
-
type
|
|
4943
|
-
type
|
|
4977
|
+
type EnvironmentByIdStopError = EnvironmentByIdStopErrors[keyof EnvironmentByIdStopErrors];
|
|
4978
|
+
type EnvironmentByIdStopResponses = {
|
|
4944
4979
|
/**
|
|
4945
4980
|
* There is no content to send for this request, but the headers may be useful.
|
|
4946
4981
|
*/
|
|
4947
4982
|
204: void;
|
|
4948
4983
|
};
|
|
4949
|
-
type
|
|
4984
|
+
type EnvironmentByIdStopResponse = EnvironmentByIdStopResponses[keyof EnvironmentByIdStopResponses];
|
|
4950
4985
|
type ExecutionsListData = {
|
|
4951
4986
|
body?: never;
|
|
4952
4987
|
path?: never;
|
|
@@ -5679,18 +5714,6 @@ declare const agentByIdDelete: <ThrowOnError extends boolean = false>(options: O
|
|
|
5679
5714
|
* Update mutable agent fields.
|
|
5680
5715
|
*/
|
|
5681
5716
|
declare const agentByIdUpdate: <ThrowOnError extends boolean = false>(options: Options<AgentByIdUpdateData, ThrowOnError>) => RequestResult<AgentByIdUpdateResponses, AgentByIdUpdateErrors, ThrowOnError, "fields">;
|
|
5682
|
-
/**
|
|
5683
|
-
* List running environments (external)
|
|
5684
|
-
*
|
|
5685
|
-
* List the currently-running external-owned environments for this agent, to rediscover an env to attach to. Only external-owned environments are ever returned: an agent's execution- and astro-owned environments are private to those owners.
|
|
5686
|
-
*/
|
|
5687
|
-
declare const agentEnvironmentsList: <ThrowOnError extends boolean = false>(options: Options<AgentEnvironmentsListData, ThrowOnError>) => RequestResult<AgentEnvironmentsListResponses, AgentEnvironmentsListErrors, ThrowOnError, "fields">;
|
|
5688
|
-
/**
|
|
5689
|
-
* Start live environment (external)
|
|
5690
|
-
*
|
|
5691
|
-
* Start a standalone live environment for the agent. Returns the (proxied) CDP URL or Daytona connection details once the env is ready; optionally returns decrypted credentials when agentProfileId is supplied. The env is stamped with an `external` owner and reaped on its session TTL.
|
|
5692
|
-
*/
|
|
5693
|
-
declare const agentEnvironmentsStart: <ThrowOnError extends boolean = false>(options: Options<AgentEnvironmentsStartData, ThrowOnError>) => RequestResult<AgentEnvironmentsStartResponses, AgentEnvironmentsStartErrors, ThrowOnError, "fields">;
|
|
5694
5717
|
/**
|
|
5695
5718
|
* Execute an agent
|
|
5696
5719
|
*
|
|
@@ -5758,17 +5781,29 @@ declare const contextGet: <ThrowOnError extends boolean = false>(options?: Optio
|
|
|
5758
5781
|
*/
|
|
5759
5782
|
declare const docsSearchSearch: <ThrowOnError extends boolean = false>(options: Options<DocsSearchSearchData, ThrowOnError>) => RequestResult<DocsSearchSearchResponses, DocsSearchSearchErrors, ThrowOnError, "fields">;
|
|
5760
5783
|
/**
|
|
5761
|
-
*
|
|
5784
|
+
* List environments
|
|
5785
|
+
*
|
|
5786
|
+
* List the standalone environments bound to an agent, newest first. Only environments this API key's organisation started are returned; those owned by an execution or an astro conversation are private to those owners. Terminal environments are excluded unless `includeTerminal` is set.
|
|
5787
|
+
*/
|
|
5788
|
+
declare const environmentsList: <ThrowOnError extends boolean = false>(options: Options<EnvironmentsListData, ThrowOnError>) => RequestResult<EnvironmentsListResponses, EnvironmentsListErrors, ThrowOnError, "fields">;
|
|
5789
|
+
/**
|
|
5790
|
+
* Start environment
|
|
5791
|
+
*
|
|
5792
|
+
* Start an environment. Blocks until it is ready (or the provider fails) and returns the environment together with its connection details, so a caller boots in one round trip. The agent in the body gates access and supplies the organisation.
|
|
5793
|
+
*/
|
|
5794
|
+
declare const environmentsStart: <ThrowOnError extends boolean = false>(options: Options<EnvironmentsStartData, ThrowOnError>) => RequestResult<EnvironmentsStartResponses, EnvironmentsStartErrors, ThrowOnError, "fields">;
|
|
5795
|
+
/**
|
|
5796
|
+
* Resolve live environment
|
|
5762
5797
|
*
|
|
5763
|
-
* Resolve
|
|
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.
|
|
5764
5799
|
*/
|
|
5765
|
-
declare const
|
|
5800
|
+
declare const environmentByIdLiveEnvironment: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdLiveEnvironmentData, ThrowOnError>) => RequestResult<EnvironmentByIdLiveEnvironmentResponses, EnvironmentByIdLiveEnvironmentErrors, ThrowOnError, "fields">;
|
|
5766
5801
|
/**
|
|
5767
|
-
* Stop environment
|
|
5802
|
+
* Stop environment
|
|
5768
5803
|
*
|
|
5769
|
-
* Stop an
|
|
5804
|
+
* Stop an environment. Runs the full teardown (clean browser → persist recording → clean sandbox → mark stopped). Idempotent: an already-terminal environment is a no-op.
|
|
5770
5805
|
*/
|
|
5771
|
-
declare const
|
|
5806
|
+
declare const environmentByIdStop: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdStopData, ThrowOnError>) => RequestResult<EnvironmentByIdStopResponses, EnvironmentByIdStopErrors, ThrowOnError, "fields">;
|
|
5772
5807
|
/**
|
|
5773
5808
|
* List executions
|
|
5774
5809
|
*
|
|
@@ -5870,4 +5905,4 @@ declare const schemaValidationValidate: <ThrowOnError extends boolean = false>(o
|
|
|
5870
5905
|
*/
|
|
5871
5906
|
declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Options<TempFilesStageData, ThrowOnError>) => RequestResult<TempFilesStageResponses, TempFilesStageErrors, ThrowOnError, "fields">;
|
|
5872
5907
|
|
|
5873
|
-
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 AgentEnvironmentsListData, type AgentEnvironmentsListError, type AgentEnvironmentsListErrors, type AgentEnvironmentsListResponse, type AgentEnvironmentsListResponses, type AgentEnvironmentsStartData, type AgentEnvironmentsStartError, type AgentEnvironmentsStartErrors, type AgentEnvironmentsStartResponse, type AgentEnvironmentsStartResponses, 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 AgentsEnvironmentEnvironmentOwnerType, type AgentsEnvironmentEnvironmentSource, type AgentsEnvironmentExplicitEnvironmentSource, type AgentsEnvironmentExternalStartEnvironmentRequest, type AgentsEnvironmentListEnvironmentsResponse, type AgentsEnvironmentLiveEnvironmentDetails, type AgentsEnvironmentRunningEnvironment, type AgentsEnvironmentRunningEnvironmentStatus, type AgentsEnvironmentSpecBrowserTemplate, type AgentsEnvironmentSpecEnvironmentTemplate, type AgentsEnvironmentSpecOsTemplate, 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 EnvironmentLiveEnvironmentData, type EnvironmentLiveEnvironmentError, type EnvironmentLiveEnvironmentErrors, type EnvironmentLiveEnvironmentResponse, type EnvironmentLiveEnvironmentResponses, type EnvironmentStopData, type EnvironmentStopError, type EnvironmentStopErrors, type EnvironmentStopResponse, type EnvironmentStopResponses, 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, agentEnvironmentsList, agentEnvironmentsStart, 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, environmentLiveEnvironment, environmentStop, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage };
|
|
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 };
|