asteroid-odyssey 1.7.200 → 1.7.238
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 +429 -1
- package/dist/index.d.ts +429 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -521,6 +521,35 @@ type AgentsWorkflowOsTemplateConfig = {
|
|
|
521
521
|
* OS provider type
|
|
522
522
|
*/
|
|
523
523
|
type AgentsWorkflowOsProvider = 'daytona' | 'local';
|
|
524
|
+
/**
|
|
525
|
+
* CUA provider identifier.
|
|
526
|
+
*/
|
|
527
|
+
type AgentsWorkflowLiveEnvironmentCuaProvider = 'anchor' | 'daytona';
|
|
528
|
+
/**
|
|
529
|
+
* CUA provider connection metadata returned alongside a live environment. Credentials are NOT included — the caller resolves API keys from its own local config keyed by provider.
|
|
530
|
+
*/
|
|
531
|
+
type AgentsWorkflowLiveEnvironmentCuaConnection = {
|
|
532
|
+
/**
|
|
533
|
+
* The CUA provider backing this session.
|
|
534
|
+
*/
|
|
535
|
+
provider: AgentsWorkflowLiveEnvironmentCuaProvider;
|
|
536
|
+
/**
|
|
537
|
+
* Provider session ID. Anchor: browser session id. Daytona: sandbox id.
|
|
538
|
+
*/
|
|
539
|
+
sessionId: string;
|
|
540
|
+
/**
|
|
541
|
+
* Base URL for the Anchor control plane. Optional; defaults to the Anchor SDK default. Set only when provider is anchor.
|
|
542
|
+
*/
|
|
543
|
+
anchorBaseUrl?: string;
|
|
544
|
+
/**
|
|
545
|
+
* Per-sandbox base URL for the Daytona toolbox HTTP API. Set only when provider is daytona.
|
|
546
|
+
*/
|
|
547
|
+
daytonaToolboxBaseUrl?: string;
|
|
548
|
+
/**
|
|
549
|
+
* Operating system of the Daytona sandbox. Set only when provider is daytona.
|
|
550
|
+
*/
|
|
551
|
+
daytonaOsType?: AgentsWorkflowOsType;
|
|
552
|
+
};
|
|
524
553
|
/**
|
|
525
554
|
* A workflow (commit) representing an immutable snapshot of agent configuration
|
|
526
555
|
*/
|
|
@@ -2714,6 +2743,207 @@ type AgentsExecutionActivity = {
|
|
|
2714
2743
|
executionId: CommonUuid;
|
|
2715
2744
|
timestamp: string;
|
|
2716
2745
|
};
|
|
2746
|
+
/**
|
|
2747
|
+
* Environment spec derived from a workflow. The workflow's environment_template + settings (viewport, timeout) drive provisioning.
|
|
2748
|
+
*/
|
|
2749
|
+
type AgentsEnvironmentWorkflowEnvironmentSource = {
|
|
2750
|
+
kind: 'workflow';
|
|
2751
|
+
/**
|
|
2752
|
+
* The workflow whose environment_template + settings drive provisioning. Omit to use the agent's editable head — the server resolves the head anyway, so passing an explicit id only matters for agents without one.
|
|
2753
|
+
*/
|
|
2754
|
+
workflowId?: CommonUuid;
|
|
2755
|
+
};
|
|
2756
|
+
/**
|
|
2757
|
+
* Response from starting a live environment. Shape mirrors the legacy `POST /agents/{id}/workflows/{wid}/live-environment` response so callers can share rendering code; `environmentId` is the new wire handle astro stores for `stop` / `attach`.
|
|
2758
|
+
*/
|
|
2759
|
+
type AgentsEnvironmentStartEnvironmentResponse = {
|
|
2760
|
+
/**
|
|
2761
|
+
* The newly-provisioned environment.
|
|
2762
|
+
*/
|
|
2763
|
+
environmentId: CommonUuid;
|
|
2764
|
+
/**
|
|
2765
|
+
* The environment type the workflow is configured for.
|
|
2766
|
+
*/
|
|
2767
|
+
environmentType: AgentsWorkflowEnvironmentType;
|
|
2768
|
+
/**
|
|
2769
|
+
* Chrome DevTools Protocol websocket URL. Present only for browser environments.
|
|
2770
|
+
*/
|
|
2771
|
+
cdpUrl?: string;
|
|
2772
|
+
/**
|
|
2773
|
+
* Provider-specific CUA connection details. Present for Anchor browsers and Daytona OS environments.
|
|
2774
|
+
*/
|
|
2775
|
+
cua?: AgentsWorkflowLiveEnvironmentCuaConnection;
|
|
2776
|
+
/**
|
|
2777
|
+
* Decrypted credential placeholders for the attached agent profile, keyed by ##NAME## placeholder. Present only when agentProfileId was supplied and the profile has credentials.
|
|
2778
|
+
*/
|
|
2779
|
+
credentials?: {
|
|
2780
|
+
[key: string]: unknown;
|
|
2781
|
+
};
|
|
2782
|
+
};
|
|
2783
|
+
/**
|
|
2784
|
+
* OS template for the explicit spec arm. Every field is optional with a server default.
|
|
2785
|
+
*/
|
|
2786
|
+
type AgentsEnvironmentSpecOsTemplate = {
|
|
2787
|
+
type: 'os';
|
|
2788
|
+
/**
|
|
2789
|
+
* OS provider. Omit for the default (daytona).
|
|
2790
|
+
*/
|
|
2791
|
+
provider?: AgentsWorkflowOsProvider;
|
|
2792
|
+
/**
|
|
2793
|
+
* Snapshot to boot. Omit for the configured default snapshot for the chosen osType.
|
|
2794
|
+
*/
|
|
2795
|
+
snapshotName?: string;
|
|
2796
|
+
/**
|
|
2797
|
+
* Whether the sandbox is publicly reachable. Omit for false.
|
|
2798
|
+
*/
|
|
2799
|
+
public?: boolean;
|
|
2800
|
+
/**
|
|
2801
|
+
* Operating system the sandbox runs. Omit for linux.
|
|
2802
|
+
*/
|
|
2803
|
+
osType?: AgentsWorkflowOsType;
|
|
2804
|
+
};
|
|
2805
|
+
/**
|
|
2806
|
+
* 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"}`.
|
|
2807
|
+
*/
|
|
2808
|
+
type AgentsEnvironmentSpecEnvironmentTemplate = ({
|
|
2809
|
+
type: 'browser';
|
|
2810
|
+
} & AgentsEnvironmentSpecBrowserTemplate) | ({
|
|
2811
|
+
type: 'os';
|
|
2812
|
+
} & AgentsEnvironmentSpecOsTemplate);
|
|
2813
|
+
/**
|
|
2814
|
+
* Browser template for the explicit spec arm. Every field is optional with a server default.
|
|
2815
|
+
*/
|
|
2816
|
+
type AgentsEnvironmentSpecBrowserTemplate = {
|
|
2817
|
+
type: 'browser';
|
|
2818
|
+
/**
|
|
2819
|
+
* Browser provider. Omit for the server's configured default provider.
|
|
2820
|
+
*/
|
|
2821
|
+
provider?: AgentsWorkflowBrowserProvider;
|
|
2822
|
+
};
|
|
2823
|
+
/**
|
|
2824
|
+
* Status of a running environment. Mirrors the StatusRequested / StatusProvisioning / StatusReady values of the env subdomain's status machine — terminal states (stopped/failed/dead) are intentionally excluded because the list endpoint only returns envs astro could attach to.
|
|
2825
|
+
*/
|
|
2826
|
+
type AgentsEnvironmentRunningEnvironmentStatus = 'requested' | 'provisioning' | 'ready';
|
|
2827
|
+
/**
|
|
2828
|
+
* Lightweight summary of a running environment for the list endpoint. Owner-agnostic — covers both execution- and astro-owned envs; narrow with the `ownerType` query param if you only want one kind. Connection details (cdpUrl/cua/credentials) are intentionally omitted — callers fetch those via GET /environments/{id}/live-environment once they pick one to attach to.
|
|
2829
|
+
*/
|
|
2830
|
+
type AgentsEnvironmentRunningEnvironment = {
|
|
2831
|
+
/**
|
|
2832
|
+
* Environment identifier.
|
|
2833
|
+
*/
|
|
2834
|
+
environmentId: CommonUuid;
|
|
2835
|
+
/**
|
|
2836
|
+
* Browser or OS.
|
|
2837
|
+
*/
|
|
2838
|
+
environmentType: AgentsWorkflowEnvironmentType;
|
|
2839
|
+
/**
|
|
2840
|
+
* Polymorphic owner kind (execution or astro).
|
|
2841
|
+
*/
|
|
2842
|
+
ownerType: AgentsEnvironmentEnvironmentOwnerType;
|
|
2843
|
+
/**
|
|
2844
|
+
* Current status — always one of the non-terminal values.
|
|
2845
|
+
*/
|
|
2846
|
+
status: AgentsEnvironmentRunningEnvironmentStatus;
|
|
2847
|
+
/**
|
|
2848
|
+
* When the env row was created.
|
|
2849
|
+
*/
|
|
2850
|
+
createdAt: string;
|
|
2851
|
+
/**
|
|
2852
|
+
* When the env first became ready, if it has reached that state.
|
|
2853
|
+
*/
|
|
2854
|
+
readyAt?: string;
|
|
2855
|
+
/**
|
|
2856
|
+
* When the reaper will tear the env down if no graceful Stop arrives first.
|
|
2857
|
+
*/
|
|
2858
|
+
expiresAt: string;
|
|
2859
|
+
/**
|
|
2860
|
+
* Populated for astro-owned envs — the conversation that booted the env.
|
|
2861
|
+
*/
|
|
2862
|
+
conversationId?: CommonUuid;
|
|
2863
|
+
/**
|
|
2864
|
+
* Populated for execution-owned envs — the execution that booted the env.
|
|
2865
|
+
*/
|
|
2866
|
+
executionId?: CommonUuid;
|
|
2867
|
+
/**
|
|
2868
|
+
* Profile snapshot the env was booted against, if any.
|
|
2869
|
+
*/
|
|
2870
|
+
agentProfileId?: CommonUuid;
|
|
2871
|
+
};
|
|
2872
|
+
/**
|
|
2873
|
+
* Environment owner kind. Mirrors the storage-side discriminator on agent_environment.owner_type. `execution` covers envs booted via the legacy execution-paused path; `astro` covers envs booted by the execution-free live_environment flow.
|
|
2874
|
+
*/
|
|
2875
|
+
type AgentsEnvironmentEnvironmentOwnerType = 'execution' | 'astro' | 'external';
|
|
2876
|
+
/**
|
|
2877
|
+
* 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.
|
|
2878
|
+
*/
|
|
2879
|
+
type AgentsEnvironmentLiveEnvironmentDetails = {
|
|
2880
|
+
/**
|
|
2881
|
+
* Chrome DevTools Protocol websocket URL. Present only for browser environments with a ready CDP endpoint.
|
|
2882
|
+
*/
|
|
2883
|
+
cdpUrl?: string;
|
|
2884
|
+
/**
|
|
2885
|
+
* Provider-specific CUA connection details. Present for Anchor browsers and Daytona OS environments.
|
|
2886
|
+
*/
|
|
2887
|
+
cua?: AgentsWorkflowLiveEnvironmentCuaConnection;
|
|
2888
|
+
/**
|
|
2889
|
+
* 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. Internal-only.
|
|
2890
|
+
*/
|
|
2891
|
+
credentials?: {
|
|
2892
|
+
[key: string]: unknown;
|
|
2893
|
+
};
|
|
2894
|
+
};
|
|
2895
|
+
/**
|
|
2896
|
+
* 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.
|
|
2897
|
+
*/
|
|
2898
|
+
type AgentsEnvironmentListEnvironmentsResponse = {
|
|
2899
|
+
/**
|
|
2900
|
+
* All currently-running envs owned by the agent in question, ordered by createdAt DESC. Empty array when no envs are running.
|
|
2901
|
+
*/
|
|
2902
|
+
environments: Array<AgentsEnvironmentRunningEnvironment>;
|
|
2903
|
+
};
|
|
2904
|
+
/**
|
|
2905
|
+
* Request to start a standalone live environment via the external (agents-API-key) API. Unlike the internal StartEnvironmentRequest there is no owner field — the env is stamped with an `external` owner for the path agent, and takes the agent's own organisation (not the caller's). Provisioning reads no workflow unless a workflow source is passed.
|
|
2906
|
+
*/
|
|
2907
|
+
type AgentsEnvironmentExternalStartEnvironmentRequest = {
|
|
2908
|
+
/**
|
|
2909
|
+
* Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution).
|
|
2910
|
+
*/
|
|
2911
|
+
source?: AgentsEnvironmentEnvironmentSource;
|
|
2912
|
+
/**
|
|
2913
|
+
* Optional agent profile to attach. When supplied, the profile's decrypted credentials are returned as the ##NAME## placeholder map and the profile id is stamped onto the env row for the session's lifetime.
|
|
2914
|
+
*/
|
|
2915
|
+
agentProfileId?: CommonUuid;
|
|
2916
|
+
};
|
|
2917
|
+
/**
|
|
2918
|
+
* 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.
|
|
2919
|
+
*/
|
|
2920
|
+
type AgentsEnvironmentExplicitEnvironmentSource = {
|
|
2921
|
+
kind: 'spec';
|
|
2922
|
+
/**
|
|
2923
|
+
* Environment template. Omit entirely for the server default (browser).
|
|
2924
|
+
*/
|
|
2925
|
+
template?: AgentsEnvironmentSpecEnvironmentTemplate;
|
|
2926
|
+
/**
|
|
2927
|
+
* 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.
|
|
2928
|
+
*/
|
|
2929
|
+
viewportWidth?: number;
|
|
2930
|
+
/**
|
|
2931
|
+
* 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.
|
|
2932
|
+
*/
|
|
2933
|
+
viewportHeight?: number;
|
|
2934
|
+
/**
|
|
2935
|
+
* Session lifetime in minutes before the reaper tears the env down. Clamped server-side to the astro session cap. Omit for the default.
|
|
2936
|
+
*/
|
|
2937
|
+
sessionTimeoutMins?: number;
|
|
2938
|
+
};
|
|
2939
|
+
/**
|
|
2940
|
+
* Where the environment spec comes from: copied from a workflow, or supplied inline.
|
|
2941
|
+
*/
|
|
2942
|
+
type AgentsEnvironmentEnvironmentSource = ({
|
|
2943
|
+
kind: 'workflow';
|
|
2944
|
+
} & AgentsEnvironmentWorkflowEnvironmentSource) | ({
|
|
2945
|
+
kind: 'spec';
|
|
2946
|
+
} & AgentsEnvironmentExplicitEnvironmentSource);
|
|
2717
2947
|
/**
|
|
2718
2948
|
* A single documentation search result
|
|
2719
2949
|
*/
|
|
@@ -4131,6 +4361,88 @@ type AgentByIdUpdateResponses = {
|
|
|
4131
4361
|
*/
|
|
4132
4362
|
200: unknown;
|
|
4133
4363
|
};
|
|
4364
|
+
type AgentEnvironmentsListData = {
|
|
4365
|
+
body?: never;
|
|
4366
|
+
path: {
|
|
4367
|
+
/**
|
|
4368
|
+
* The agent whose environments to list.
|
|
4369
|
+
*/
|
|
4370
|
+
agentId: CommonUuid;
|
|
4371
|
+
};
|
|
4372
|
+
query?: never;
|
|
4373
|
+
url: '/agents/{agentId}/environments';
|
|
4374
|
+
};
|
|
4375
|
+
type AgentEnvironmentsListErrors = {
|
|
4376
|
+
/**
|
|
4377
|
+
* The server could not understand the request due to invalid syntax.
|
|
4378
|
+
*/
|
|
4379
|
+
400: CommonBadRequestErrorBody;
|
|
4380
|
+
/**
|
|
4381
|
+
* Access is unauthorized.
|
|
4382
|
+
*/
|
|
4383
|
+
401: CommonUnauthorizedErrorBody;
|
|
4384
|
+
/**
|
|
4385
|
+
* Access is forbidden.
|
|
4386
|
+
*/
|
|
4387
|
+
403: CommonForbiddenErrorBody;
|
|
4388
|
+
/**
|
|
4389
|
+
* The server cannot find the requested resource.
|
|
4390
|
+
*/
|
|
4391
|
+
404: CommonNotFoundErrorBody;
|
|
4392
|
+
/**
|
|
4393
|
+
* Server error
|
|
4394
|
+
*/
|
|
4395
|
+
500: CommonInternalServerErrorBody;
|
|
4396
|
+
};
|
|
4397
|
+
type AgentEnvironmentsListError = AgentEnvironmentsListErrors[keyof AgentEnvironmentsListErrors];
|
|
4398
|
+
type AgentEnvironmentsListResponses = {
|
|
4399
|
+
/**
|
|
4400
|
+
* The request has succeeded.
|
|
4401
|
+
*/
|
|
4402
|
+
200: AgentsEnvironmentListEnvironmentsResponse;
|
|
4403
|
+
};
|
|
4404
|
+
type AgentEnvironmentsListResponse = AgentEnvironmentsListResponses[keyof AgentEnvironmentsListResponses];
|
|
4405
|
+
type AgentEnvironmentsStartData = {
|
|
4406
|
+
body: AgentsEnvironmentExternalStartEnvironmentRequest;
|
|
4407
|
+
path: {
|
|
4408
|
+
/**
|
|
4409
|
+
* The agent the environment belongs to.
|
|
4410
|
+
*/
|
|
4411
|
+
agentId: CommonUuid;
|
|
4412
|
+
};
|
|
4413
|
+
query?: never;
|
|
4414
|
+
url: '/agents/{agentId}/environments';
|
|
4415
|
+
};
|
|
4416
|
+
type AgentEnvironmentsStartErrors = {
|
|
4417
|
+
/**
|
|
4418
|
+
* The server could not understand the request due to invalid syntax.
|
|
4419
|
+
*/
|
|
4420
|
+
400: CommonBadRequestErrorBody;
|
|
4421
|
+
/**
|
|
4422
|
+
* Access is unauthorized.
|
|
4423
|
+
*/
|
|
4424
|
+
401: CommonUnauthorizedErrorBody;
|
|
4425
|
+
/**
|
|
4426
|
+
* Access is forbidden.
|
|
4427
|
+
*/
|
|
4428
|
+
403: CommonForbiddenErrorBody;
|
|
4429
|
+
/**
|
|
4430
|
+
* The server cannot find the requested resource.
|
|
4431
|
+
*/
|
|
4432
|
+
404: CommonNotFoundErrorBody;
|
|
4433
|
+
/**
|
|
4434
|
+
* Server error
|
|
4435
|
+
*/
|
|
4436
|
+
500: CommonInternalServerErrorBody;
|
|
4437
|
+
};
|
|
4438
|
+
type AgentEnvironmentsStartError = AgentEnvironmentsStartErrors[keyof AgentEnvironmentsStartErrors];
|
|
4439
|
+
type AgentEnvironmentsStartResponses = {
|
|
4440
|
+
/**
|
|
4441
|
+
* The request has succeeded.
|
|
4442
|
+
*/
|
|
4443
|
+
200: AgentsEnvironmentStartEnvironmentResponse;
|
|
4444
|
+
};
|
|
4445
|
+
type AgentEnvironmentsStartResponse = AgentEnvironmentsStartResponses[keyof AgentEnvironmentsStartResponses];
|
|
4134
4446
|
type AgentExecutePostData = {
|
|
4135
4447
|
/**
|
|
4136
4448
|
* Execution request parameters
|
|
@@ -4644,6 +4956,98 @@ type DocsSearchSearchResponses = {
|
|
|
4644
4956
|
200: AgentsDocsSearchDocsResponse;
|
|
4645
4957
|
};
|
|
4646
4958
|
type DocsSearchSearchResponse = DocsSearchSearchResponses[keyof DocsSearchSearchResponses];
|
|
4959
|
+
type EnvironmentLiveEnvironmentData = {
|
|
4960
|
+
body?: never;
|
|
4961
|
+
path: {
|
|
4962
|
+
/**
|
|
4963
|
+
* The environment whose connection details to resolve.
|
|
4964
|
+
*/
|
|
4965
|
+
environmentId: CommonUuid;
|
|
4966
|
+
};
|
|
4967
|
+
query?: {
|
|
4968
|
+
/**
|
|
4969
|
+
* Optional assertion that the env belongs to this agent; resolution fails (404) on mismatch. Omit it — access is already gated on the env's own agent and organisation.
|
|
4970
|
+
*/
|
|
4971
|
+
expectedAgentId?: CommonUuid;
|
|
4972
|
+
};
|
|
4973
|
+
url: '/environments/{environmentId}/live-environment';
|
|
4974
|
+
};
|
|
4975
|
+
type EnvironmentLiveEnvironmentErrors = {
|
|
4976
|
+
/**
|
|
4977
|
+
* The server could not understand the request due to invalid syntax.
|
|
4978
|
+
*/
|
|
4979
|
+
400: CommonBadRequestErrorBody;
|
|
4980
|
+
/**
|
|
4981
|
+
* Access is unauthorized.
|
|
4982
|
+
*/
|
|
4983
|
+
401: CommonUnauthorizedErrorBody;
|
|
4984
|
+
/**
|
|
4985
|
+
* Access is forbidden.
|
|
4986
|
+
*/
|
|
4987
|
+
403: CommonForbiddenErrorBody;
|
|
4988
|
+
/**
|
|
4989
|
+
* The server cannot find the requested resource.
|
|
4990
|
+
*/
|
|
4991
|
+
404: CommonNotFoundErrorBody;
|
|
4992
|
+
/**
|
|
4993
|
+
* Server error
|
|
4994
|
+
*/
|
|
4995
|
+
500: CommonInternalServerErrorBody;
|
|
4996
|
+
};
|
|
4997
|
+
type EnvironmentLiveEnvironmentError = EnvironmentLiveEnvironmentErrors[keyof EnvironmentLiveEnvironmentErrors];
|
|
4998
|
+
type EnvironmentLiveEnvironmentResponses = {
|
|
4999
|
+
/**
|
|
5000
|
+
* The request has succeeded.
|
|
5001
|
+
*/
|
|
5002
|
+
200: AgentsEnvironmentLiveEnvironmentDetails;
|
|
5003
|
+
};
|
|
5004
|
+
type EnvironmentLiveEnvironmentResponse = EnvironmentLiveEnvironmentResponses[keyof EnvironmentLiveEnvironmentResponses];
|
|
5005
|
+
type EnvironmentStopData = {
|
|
5006
|
+
body?: never;
|
|
5007
|
+
path: {
|
|
5008
|
+
/**
|
|
5009
|
+
* The environment to stop.
|
|
5010
|
+
*/
|
|
5011
|
+
environmentId: CommonUuid;
|
|
5012
|
+
};
|
|
5013
|
+
query?: {
|
|
5014
|
+
/**
|
|
5015
|
+
* 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.
|
|
5016
|
+
*/
|
|
5017
|
+
expectedAgentId?: CommonUuid;
|
|
5018
|
+
};
|
|
5019
|
+
url: '/environments/{environmentId}/stop';
|
|
5020
|
+
};
|
|
5021
|
+
type EnvironmentStopErrors = {
|
|
5022
|
+
/**
|
|
5023
|
+
* The server could not understand the request due to invalid syntax.
|
|
5024
|
+
*/
|
|
5025
|
+
400: CommonBadRequestErrorBody;
|
|
5026
|
+
/**
|
|
5027
|
+
* Access is unauthorized.
|
|
5028
|
+
*/
|
|
5029
|
+
401: CommonUnauthorizedErrorBody;
|
|
5030
|
+
/**
|
|
5031
|
+
* Access is forbidden.
|
|
5032
|
+
*/
|
|
5033
|
+
403: CommonForbiddenErrorBody;
|
|
5034
|
+
/**
|
|
5035
|
+
* The server cannot find the requested resource.
|
|
5036
|
+
*/
|
|
5037
|
+
404: CommonNotFoundErrorBody;
|
|
5038
|
+
/**
|
|
5039
|
+
* Server error
|
|
5040
|
+
*/
|
|
5041
|
+
500: CommonInternalServerErrorBody;
|
|
5042
|
+
};
|
|
5043
|
+
type EnvironmentStopError = EnvironmentStopErrors[keyof EnvironmentStopErrors];
|
|
5044
|
+
type EnvironmentStopResponses = {
|
|
5045
|
+
/**
|
|
5046
|
+
* There is no content to send for this request, but the headers may be useful.
|
|
5047
|
+
*/
|
|
5048
|
+
204: void;
|
|
5049
|
+
};
|
|
5050
|
+
type EnvironmentStopResponse = EnvironmentStopResponses[keyof EnvironmentStopResponses];
|
|
4647
5051
|
type ExecutionsListData = {
|
|
4648
5052
|
body?: never;
|
|
4649
5053
|
path?: never;
|
|
@@ -5376,6 +5780,18 @@ declare const agentByIdDelete: <ThrowOnError extends boolean = false>(options: O
|
|
|
5376
5780
|
* Update mutable agent fields.
|
|
5377
5781
|
*/
|
|
5378
5782
|
declare const agentByIdUpdate: <ThrowOnError extends boolean = false>(options: Options<AgentByIdUpdateData, ThrowOnError>) => RequestResult<AgentByIdUpdateResponses, AgentByIdUpdateErrors, ThrowOnError, "fields">;
|
|
5783
|
+
/**
|
|
5784
|
+
* List running environments (external)
|
|
5785
|
+
*
|
|
5786
|
+
* 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.
|
|
5787
|
+
*/
|
|
5788
|
+
declare const agentEnvironmentsList: <ThrowOnError extends boolean = false>(options: Options<AgentEnvironmentsListData, ThrowOnError>) => RequestResult<AgentEnvironmentsListResponses, AgentEnvironmentsListErrors, ThrowOnError, "fields">;
|
|
5789
|
+
/**
|
|
5790
|
+
* Start live environment (external)
|
|
5791
|
+
*
|
|
5792
|
+
* 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.
|
|
5793
|
+
*/
|
|
5794
|
+
declare const agentEnvironmentsStart: <ThrowOnError extends boolean = false>(options: Options<AgentEnvironmentsStartData, ThrowOnError>) => RequestResult<AgentEnvironmentsStartResponses, AgentEnvironmentsStartErrors, ThrowOnError, "fields">;
|
|
5379
5795
|
/**
|
|
5380
5796
|
* Execute an agent
|
|
5381
5797
|
*
|
|
@@ -5448,6 +5864,18 @@ declare const contextGet: <ThrowOnError extends boolean = false>(options?: Optio
|
|
|
5448
5864
|
* Search Asteroid documentation for guides on building agents, node types, and best practices
|
|
5449
5865
|
*/
|
|
5450
5866
|
declare const docsSearchSearch: <ThrowOnError extends boolean = false>(options: Options<DocsSearchSearchData, ThrowOnError>) => RequestResult<DocsSearchSearchResponses, DocsSearchSearchErrors, ThrowOnError, "fields">;
|
|
5867
|
+
/**
|
|
5868
|
+
* Resolve live environment by id (external)
|
|
5869
|
+
*
|
|
5870
|
+
* Resolve live-environment connection details (proxied CDP URL / CUA) by env id. External-owned envs only; access is gated on the env's agent belonging to the caller's organisation. Returns 404 if either gate fails.
|
|
5871
|
+
*/
|
|
5872
|
+
declare const environmentLiveEnvironment: <ThrowOnError extends boolean = false>(options: Options<EnvironmentLiveEnvironmentData, ThrowOnError>) => RequestResult<EnvironmentLiveEnvironmentResponses, EnvironmentLiveEnvironmentErrors, ThrowOnError, "fields">;
|
|
5873
|
+
/**
|
|
5874
|
+
* Stop environment by id (external)
|
|
5875
|
+
*
|
|
5876
|
+
* Stop an external-owned environment by id. Idempotent — already-terminal envs are a no-op (204). External-owned only; other owners return 404.
|
|
5877
|
+
*/
|
|
5878
|
+
declare const environmentStop: <ThrowOnError extends boolean = false>(options: Options<EnvironmentStopData, ThrowOnError>) => RequestResult<EnvironmentStopResponses, EnvironmentStopErrors, ThrowOnError, "fields">;
|
|
5451
5879
|
/**
|
|
5452
5880
|
* List executions
|
|
5453
5881
|
*
|
|
@@ -5549,4 +5977,4 @@ declare const schemaValidationValidate: <ThrowOnError extends boolean = false>(o
|
|
|
5549
5977
|
*/
|
|
5550
5978
|
declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Options<TempFilesStageData, ThrowOnError>) => RequestResult<TempFilesStageResponses, TempFilesStageErrors, ThrowOnError, "fields">;
|
|
5551
5979
|
|
|
5552
|
-
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 AgentWorkflowsSyncExecutionData, type AgentWorkflowsSyncExecutionError, type AgentWorkflowsSyncExecutionErrors, type AgentWorkflowsSyncExecutionResponse, type AgentWorkflowsSyncExecutionResponses, 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 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 AgentsExecutionActivityWorkflowUpdatedPayload, type AgentsExecutionAdvisorCompletedDetails, 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 AgentsExecutionNodeDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, type AgentsExecutionPausedPayload, type AgentsExecutionQuestionItem, type AgentsExecutionQuestionOption, type AgentsExecutionReadFileCompletedDetails, type AgentsExecutionReadFileStartedDetails, type AgentsExecutionRulesDetails, 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 AgentsExecutionTransitionDetails, type AgentsExecutionTriggerContext, type AgentsExecutionTriggerRunner, type AgentsExecutionUiTriggerContext, type AgentsExecutionUpdateExecutionStatusRequest, type AgentsExecutionUpdateType, type AgentsExecutionUpdateableStatus, type AgentsExecutionUserMessagesAddTextBody, type AgentsExecutionUtilGetDatetimeCompletedDetails, type AgentsExecutionUtilGetDatetimeStartedDetails, type AgentsExecutionWorkflowUpdate, 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 AgentsWorkflowOsProvider, type AgentsWorkflowOsTemplateConfig, type AgentsWorkflowOsType, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowSyncExecutionRequest, type AgentsWorkflowSyncExecutionResponse, 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 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, agentWorkflowsSyncExecution, availableToolsList, client, contextGet, docsSearchSearch, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage };
|
|
5980
|
+
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 AgentWorkflowsSyncExecutionData, type AgentWorkflowsSyncExecutionError, type AgentWorkflowsSyncExecutionErrors, type AgentWorkflowsSyncExecutionResponse, type AgentWorkflowsSyncExecutionResponses, 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 AgentsExecutionActivityWorkflowUpdatedPayload, type AgentsExecutionAdvisorCompletedDetails, 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 AgentsExecutionNodeDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, type AgentsExecutionPausedPayload, type AgentsExecutionQuestionItem, type AgentsExecutionQuestionOption, type AgentsExecutionReadFileCompletedDetails, type AgentsExecutionReadFileStartedDetails, type AgentsExecutionRulesDetails, 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 AgentsExecutionTransitionDetails, type AgentsExecutionTriggerContext, type AgentsExecutionTriggerRunner, type AgentsExecutionUiTriggerContext, type AgentsExecutionUpdateExecutionStatusRequest, type AgentsExecutionUpdateType, type AgentsExecutionUpdateableStatus, type AgentsExecutionUserMessagesAddTextBody, type AgentsExecutionUtilGetDatetimeCompletedDetails, type AgentsExecutionUtilGetDatetimeStartedDetails, type AgentsExecutionWorkflowUpdate, 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 AgentsWorkflowSyncExecutionRequest, type AgentsWorkflowSyncExecutionResponse, 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, agentWorkflowsSyncExecution, availableToolsList, client, contextGet, docsSearchSearch, environmentLiveEnvironment, environmentStop, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage };
|