asteroid-odyssey 1.7.271 → 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 CHANGED
@@ -609,10 +609,6 @@ type AgentsGraphModelsExternalSettings = {
609
609
  * Whether to use the new agent loop for execution (beta)
610
610
  */
611
611
  new_agent_loop?: boolean;
612
- /**
613
- * Whether this agent has variants — one workflow driving many per-variant script trees, selected at execution time by `variantKey`. Required for a node's `script_filepath` to use the `{{variant_key}}` placeholder, and required for an execution to carry a `variantKey`.
614
- */
615
- variant_mode?: boolean;
616
612
  };
617
613
  /**
618
614
  * Browser provider type
@@ -2705,19 +2701,24 @@ type AgentsEnvironmentWorkflowEnvironmentSource = {
2705
2701
  workflowId?: CommonUuid;
2706
2702
  };
2707
2703
  /**
2708
- * 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`.
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.
2709
2705
  */
2710
2706
  type AgentsEnvironmentStartEnvironmentResponse = {
2711
2707
  /**
2712
2708
  * The newly-provisioned environment.
2713
2709
  */
2714
- environmentId: CommonUuid;
2710
+ environment: AgentsEnvironmentEnvironmentSummary;
2715
2711
  /**
2716
- * The environment type the workflow is configured for.
2712
+ * How to connect to it.
2717
2713
  */
2718
- environmentType: AgentsWorkflowEnvironmentType;
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 = {
2719
2720
  /**
2720
- * 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.
2721
2722
  */
2722
2723
  cdpUrl?: string;
2723
2724
  /**
@@ -2725,146 +2726,178 @@ type AgentsEnvironmentStartEnvironmentResponse = {
2725
2726
  */
2726
2727
  cua?: AgentsWorkflowLiveEnvironmentCuaConnection;
2727
2728
  /**
2728
- * Decrypted credential placeholders for the attached agent profile, keyed by ##NAME## placeholder. Present only when agentProfileId was supplied and the profile has credentials.
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.
2729
2730
  */
2730
2731
  credentials?: {
2731
2732
  [key: string]: unknown;
2732
2733
  };
2733
2734
  };
2734
2735
  /**
2735
- * OS template for the explicit spec arm. Every field is optional with a server default.
2736
+ * Every state an environment can be in, terminal included.
2736
2737
  */
2737
- type AgentsEnvironmentSpecOsTemplate = {
2738
- type: 'os';
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';
2739
2744
  /**
2740
- * OS provider. Omit for the default (daytona).
2745
+ * The agent the environment is bound to.
2741
2746
  */
2742
- provider?: AgentsWorkflowOsProvider;
2747
+ agentId: CommonUuid;
2743
2748
  /**
2744
- * Snapshot to boot. Omit for the configured default snapshot for the chosen osType.
2749
+ * The API key that booted it, when one did. Absent for environments booted by a signed-in user.
2745
2750
  */
2746
- snapshotName?: string;
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';
2747
2758
  /**
2748
- * Whether the sandbox is publicly reachable. Omit for false.
2759
+ * The agent the conversation is building.
2749
2760
  */
2750
- public?: boolean;
2761
+ agentId: CommonUuid;
2751
2762
  /**
2752
- * Operating system the sandbox runs. Omit for linux.
2763
+ * The astro chat that booted the environment.
2753
2764
  */
2754
- osType?: AgentsWorkflowOsType;
2765
+ chatId: CommonUuid;
2755
2766
  };
2756
2767
  /**
2757
- * 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"}`.
2768
+ * An execution owns the environment: it was booted to run that execution and dies with it.
2758
2769
  */
2759
- type AgentsEnvironmentSpecEnvironmentTemplate = ({
2760
- type: 'browser';
2761
- } & AgentsEnvironmentSpecBrowserTemplate) | ({
2762
- type: 'os';
2763
- } & AgentsEnvironmentSpecOsTemplate);
2764
- /**
2765
- * Browser template for the explicit spec arm. Every field is optional with a server default.
2766
- */
2767
- type AgentsEnvironmentSpecBrowserTemplate = {
2768
- type: 'browser';
2770
+ type AgentsEnvironmentExecutionEnvironmentOwner = {
2771
+ type: 'execution';
2769
2772
  /**
2770
- * Browser provider. Omit for the server's configured default provider.
2773
+ * The agent the execution runs on behalf of.
2771
2774
  */
2772
- provider?: AgentsWorkflowBrowserProvider;
2775
+ agentId: CommonUuid;
2776
+ /**
2777
+ * The execution that booted the environment.
2778
+ */
2779
+ executionId: CommonUuid;
2773
2780
  };
2774
2781
  /**
2775
- * 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.
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 hasan 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.
2776
2783
  */
2777
- type AgentsEnvironmentRunningEnvironmentStatus = 'requested' | 'provisioning' | 'ready';
2784
+ type AgentsEnvironmentEnvironmentOwner = ({
2785
+ type: 'execution';
2786
+ } & AgentsEnvironmentExecutionEnvironmentOwner) | ({
2787
+ type: 'astro';
2788
+ } & AgentsEnvironmentAstroEnvironmentOwner) | ({
2789
+ type: 'external';
2790
+ } & AgentsEnvironmentExternalEnvironmentOwner);
2778
2791
  /**
2779
- * 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.
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.
2780
2793
  */
2781
- type AgentsEnvironmentRunningEnvironment = {
2794
+ type AgentsEnvironmentEnvironmentSummary = {
2782
2795
  /**
2783
2796
  * Environment identifier.
2784
2797
  */
2785
- environmentId: CommonUuid;
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;
2786
2807
  /**
2787
2808
  * Browser or OS.
2788
2809
  */
2789
2810
  environmentType: AgentsWorkflowEnvironmentType;
2790
2811
  /**
2791
- * Polymorphic owner kind (execution or astro).
2812
+ * Operating system for OS environments. Absent for browser environments; linux when an OS environment predates explicit osType storage.
2792
2813
  */
2793
- ownerType: AgentsEnvironmentEnvironmentOwnerType;
2814
+ osType?: AgentsWorkflowOsType;
2794
2815
  /**
2795
- * Current status always one of the non-terminal values.
2816
+ * Current status, terminal states included. Lists exclude terminal environments unless `includeTerminal` is set.
2796
2817
  */
2797
- status: AgentsEnvironmentRunningEnvironmentStatus;
2818
+ status: AgentsEnvironmentEnvironmentStatus;
2798
2819
  /**
2799
- * When the env row was created.
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.
2800
2829
  */
2801
2830
  createdAt: string;
2802
2831
  /**
2803
- * When the env first became ready, if it has reached that state.
2832
+ * When the environment first became ready, if it reached that state.
2804
2833
  */
2805
2834
  readyAt?: string;
2806
2835
  /**
2807
- * When the reaper will tear the env down if no graceful Stop arrives first.
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.
2808
2841
  */
2809
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 = {
2810
2848
  /**
2811
- * Populated for astro-owned envs the conversation that booted the env.
2849
+ * The agent to bind the environment to. Gates access, and supplies the organisation the environment is stamped with.
2812
2850
  */
2813
- conversationId?: CommonUuid;
2851
+ agentId: CommonUuid;
2814
2852
  /**
2815
- * Populated for execution-owned envs the execution that booted the env.
2853
+ * Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution).
2816
2854
  */
2817
- executionId?: CommonUuid;
2855
+ source?: AgentsEnvironmentEnvironmentSource;
2818
2856
  /**
2819
- * Profile snapshot the env was booted against, if any.
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).
2820
2858
  */
2821
2859
  agentProfileId?: CommonUuid;
2822
2860
  };
2823
2861
  /**
2824
- * 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.
2825
- */
2826
- type AgentsEnvironmentEnvironmentOwnerType = 'execution' | 'astro' | 'external';
2827
- /**
2828
- * 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.
2829
2863
  */
2830
- type AgentsEnvironmentLiveEnvironmentDetails = {
2864
+ type AgentsEnvironmentSpecOsTemplate = {
2865
+ type: 'os';
2831
2866
  /**
2832
- * Chrome DevTools Protocol websocket URL. Present only for browser environments with a ready CDP endpoint.
2867
+ * OS provider. Omit for the default (daytona).
2833
2868
  */
2834
- cdpUrl?: string;
2869
+ provider?: AgentsWorkflowOsProvider;
2835
2870
  /**
2836
- * Provider-specific CUA connection details. Present for Anchor browsers and Daytona OS environments.
2871
+ * Snapshot to boot. Omit for the configured default snapshot for the chosen osType.
2837
2872
  */
2838
- cua?: AgentsWorkflowLiveEnvironmentCuaConnection;
2873
+ snapshotName?: string;
2839
2874
  /**
2840
- * 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.
2875
+ * Whether the sandbox is publicly reachable. Omit for false.
2841
2876
  */
2842
- credentials?: {
2843
- [key: string]: unknown;
2844
- };
2845
- };
2846
- /**
2847
- * 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.
2848
- */
2849
- type AgentsEnvironmentListEnvironmentsResponse = {
2877
+ public?: boolean;
2850
2878
  /**
2851
- * All currently-running envs owned by the agent in question, ordered by createdAt DESC. Empty array when no envs are running.
2879
+ * Operating system the sandbox runs. Omit for linux.
2852
2880
  */
2853
- environments: Array<AgentsEnvironmentRunningEnvironment>;
2881
+ osType?: AgentsWorkflowOsType;
2854
2882
  };
2855
2883
  /**
2856
- * 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.
2884
+ * Browser template for the explicit spec arm. Every field is optional with a server default.
2857
2885
  */
2858
- type AgentsEnvironmentExternalStartEnvironmentRequest = {
2859
- /**
2860
- * Where the environment spec comes from. Omit for the server default (a browser env at the computer-use resolution).
2861
- */
2862
- source?: AgentsEnvironmentEnvironmentSource;
2886
+ type AgentsEnvironmentSpecBrowserTemplate = {
2887
+ type: 'browser';
2863
2888
  /**
2864
- * 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.
2889
+ * Browser provider. Omit for the server's configured default provider.
2865
2890
  */
2866
- agentProfileId?: CommonUuid;
2891
+ provider?: AgentsWorkflowBrowserProvider;
2867
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);
2868
2901
  /**
2869
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.
2870
2903
  */
@@ -2895,6 +2928,15 @@ type AgentsEnvironmentEnvironmentSource = ({
2895
2928
  } & AgentsEnvironmentWorkflowEnvironmentSource) | ({
2896
2929
  kind: 'spec';
2897
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
+ };
2898
2940
  /**
2899
2941
  * A single documentation search result
2900
2942
  */
@@ -4312,88 +4354,6 @@ type AgentByIdUpdateResponses = {
4312
4354
  */
4313
4355
  200: unknown;
4314
4356
  };
4315
- type AgentEnvironmentsListData = {
4316
- body?: never;
4317
- path: {
4318
- /**
4319
- * The agent whose environments to list.
4320
- */
4321
- agentId: CommonUuid;
4322
- };
4323
- query?: never;
4324
- url: '/agents/{agentId}/environments';
4325
- };
4326
- type AgentEnvironmentsListErrors = {
4327
- /**
4328
- * The server could not understand the request due to invalid syntax.
4329
- */
4330
- 400: CommonBadRequestErrorBody;
4331
- /**
4332
- * Access is unauthorized.
4333
- */
4334
- 401: CommonUnauthorizedErrorBody;
4335
- /**
4336
- * Access is forbidden.
4337
- */
4338
- 403: CommonForbiddenErrorBody;
4339
- /**
4340
- * The server cannot find the requested resource.
4341
- */
4342
- 404: CommonNotFoundErrorBody;
4343
- /**
4344
- * Server error
4345
- */
4346
- 500: CommonInternalServerErrorBody;
4347
- };
4348
- type AgentEnvironmentsListError = AgentEnvironmentsListErrors[keyof AgentEnvironmentsListErrors];
4349
- type AgentEnvironmentsListResponses = {
4350
- /**
4351
- * The request has succeeded.
4352
- */
4353
- 200: AgentsEnvironmentListEnvironmentsResponse;
4354
- };
4355
- type AgentEnvironmentsListResponse = AgentEnvironmentsListResponses[keyof AgentEnvironmentsListResponses];
4356
- type AgentEnvironmentsStartData = {
4357
- body: AgentsEnvironmentExternalStartEnvironmentRequest;
4358
- path: {
4359
- /**
4360
- * The agent the environment belongs to.
4361
- */
4362
- agentId: CommonUuid;
4363
- };
4364
- query?: never;
4365
- url: '/agents/{agentId}/environments';
4366
- };
4367
- type AgentEnvironmentsStartErrors = {
4368
- /**
4369
- * The server could not understand the request due to invalid syntax.
4370
- */
4371
- 400: CommonBadRequestErrorBody;
4372
- /**
4373
- * Access is unauthorized.
4374
- */
4375
- 401: CommonUnauthorizedErrorBody;
4376
- /**
4377
- * Access is forbidden.
4378
- */
4379
- 403: CommonForbiddenErrorBody;
4380
- /**
4381
- * The server cannot find the requested resource.
4382
- */
4383
- 404: CommonNotFoundErrorBody;
4384
- /**
4385
- * Server error
4386
- */
4387
- 500: CommonInternalServerErrorBody;
4388
- };
4389
- type AgentEnvironmentsStartError = AgentEnvironmentsStartErrors[keyof AgentEnvironmentsStartErrors];
4390
- type AgentEnvironmentsStartResponses = {
4391
- /**
4392
- * The request has succeeded.
4393
- */
4394
- 200: AgentsEnvironmentStartEnvironmentResponse;
4395
- };
4396
- type AgentEnvironmentsStartResponse = AgentEnvironmentsStartResponses[keyof AgentEnvironmentsStartResponses];
4397
4357
  type AgentExecutePostData = {
4398
4358
  /**
4399
4359
  * Execution request parameters
@@ -4859,23 +4819,99 @@ type DocsSearchSearchResponses = {
4859
4819
  200: AgentsDocsSearchDocsResponse;
4860
4820
  };
4861
4821
  type DocsSearchSearchResponse = DocsSearchSearchResponses[keyof DocsSearchSearchResponses];
4862
- type EnvironmentLiveEnvironmentData = {
4822
+ type EnvironmentsListData = {
4863
4823
  body?: never;
4864
- path: {
4824
+ path?: never;
4825
+ query: {
4865
4826
  /**
4866
- * The environment whose connection details to resolve.
4827
+ * The agent whose environments to list. Gates access, and supplies the organisation.
4867
4828
  */
4868
- environmentId: CommonUuid;
4829
+ agentId: CommonUuid;
4830
+ /**
4831
+ * Include stopped, failed and dead environments. Omit for running environments only.
4832
+ */
4833
+ includeTerminal?: boolean;
4869
4834
  };
4870
- query?: {
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: {
4871
4906
  /**
4872
- * 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.
4907
+ * The environment whose connection details to resolve.
4873
4908
  */
4874
- expectedAgentId?: CommonUuid;
4909
+ environmentId: CommonUuid;
4875
4910
  };
4911
+ query?: never;
4876
4912
  url: '/environments/{environmentId}/live-environment';
4877
4913
  };
4878
- type EnvironmentLiveEnvironmentErrors = {
4914
+ type EnvironmentByIdLiveEnvironmentErrors = {
4879
4915
  /**
4880
4916
  * The server could not understand the request due to invalid syntax.
4881
4917
  */
@@ -4897,15 +4933,15 @@ type EnvironmentLiveEnvironmentErrors = {
4897
4933
  */
4898
4934
  500: CommonInternalServerErrorBody;
4899
4935
  };
4900
- type EnvironmentLiveEnvironmentError = EnvironmentLiveEnvironmentErrors[keyof EnvironmentLiveEnvironmentErrors];
4901
- type EnvironmentLiveEnvironmentResponses = {
4936
+ type EnvironmentByIdLiveEnvironmentError = EnvironmentByIdLiveEnvironmentErrors[keyof EnvironmentByIdLiveEnvironmentErrors];
4937
+ type EnvironmentByIdLiveEnvironmentResponses = {
4902
4938
  /**
4903
4939
  * The request has succeeded.
4904
4940
  */
4905
4941
  200: AgentsEnvironmentLiveEnvironmentDetails;
4906
4942
  };
4907
- type EnvironmentLiveEnvironmentResponse = EnvironmentLiveEnvironmentResponses[keyof EnvironmentLiveEnvironmentResponses];
4908
- type EnvironmentStopData = {
4943
+ type EnvironmentByIdLiveEnvironmentResponse = EnvironmentByIdLiveEnvironmentResponses[keyof EnvironmentByIdLiveEnvironmentResponses];
4944
+ type EnvironmentByIdStopData = {
4909
4945
  body?: never;
4910
4946
  path: {
4911
4947
  /**
@@ -4913,15 +4949,10 @@ type EnvironmentStopData = {
4913
4949
  */
4914
4950
  environmentId: CommonUuid;
4915
4951
  };
4916
- query?: {
4917
- /**
4918
- * 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.
4919
- */
4920
- expectedAgentId?: CommonUuid;
4921
- };
4952
+ query?: never;
4922
4953
  url: '/environments/{environmentId}/stop';
4923
4954
  };
4924
- type EnvironmentStopErrors = {
4955
+ type EnvironmentByIdStopErrors = {
4925
4956
  /**
4926
4957
  * The server could not understand the request due to invalid syntax.
4927
4958
  */
@@ -4943,14 +4974,14 @@ type EnvironmentStopErrors = {
4943
4974
  */
4944
4975
  500: CommonInternalServerErrorBody;
4945
4976
  };
4946
- type EnvironmentStopError = EnvironmentStopErrors[keyof EnvironmentStopErrors];
4947
- type EnvironmentStopResponses = {
4977
+ type EnvironmentByIdStopError = EnvironmentByIdStopErrors[keyof EnvironmentByIdStopErrors];
4978
+ type EnvironmentByIdStopResponses = {
4948
4979
  /**
4949
4980
  * There is no content to send for this request, but the headers may be useful.
4950
4981
  */
4951
4982
  204: void;
4952
4983
  };
4953
- type EnvironmentStopResponse = EnvironmentStopResponses[keyof EnvironmentStopResponses];
4984
+ type EnvironmentByIdStopResponse = EnvironmentByIdStopResponses[keyof EnvironmentByIdStopResponses];
4954
4985
  type ExecutionsListData = {
4955
4986
  body?: never;
4956
4987
  path?: never;
@@ -5683,18 +5714,6 @@ declare const agentByIdDelete: <ThrowOnError extends boolean = false>(options: O
5683
5714
  * Update mutable agent fields.
5684
5715
  */
5685
5716
  declare const agentByIdUpdate: <ThrowOnError extends boolean = false>(options: Options<AgentByIdUpdateData, ThrowOnError>) => RequestResult<AgentByIdUpdateResponses, AgentByIdUpdateErrors, ThrowOnError, "fields">;
5686
- /**
5687
- * List running environments (external)
5688
- *
5689
- * 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.
5690
- */
5691
- declare const agentEnvironmentsList: <ThrowOnError extends boolean = false>(options: Options<AgentEnvironmentsListData, ThrowOnError>) => RequestResult<AgentEnvironmentsListResponses, AgentEnvironmentsListErrors, ThrowOnError, "fields">;
5692
- /**
5693
- * Start live environment (external)
5694
- *
5695
- * 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.
5696
- */
5697
- declare const agentEnvironmentsStart: <ThrowOnError extends boolean = false>(options: Options<AgentEnvironmentsStartData, ThrowOnError>) => RequestResult<AgentEnvironmentsStartResponses, AgentEnvironmentsStartErrors, ThrowOnError, "fields">;
5698
5717
  /**
5699
5718
  * Execute an agent
5700
5719
  *
@@ -5762,17 +5781,29 @@ declare const contextGet: <ThrowOnError extends boolean = false>(options?: Optio
5762
5781
  */
5763
5782
  declare const docsSearchSearch: <ThrowOnError extends boolean = false>(options: Options<DocsSearchSearchData, ThrowOnError>) => RequestResult<DocsSearchSearchResponses, DocsSearchSearchErrors, ThrowOnError, "fields">;
5764
5783
  /**
5765
- * Resolve live environment by id (external)
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
5766
5797
  *
5767
- * 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.
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.
5768
5799
  */
5769
- declare const environmentLiveEnvironment: <ThrowOnError extends boolean = false>(options: Options<EnvironmentLiveEnvironmentData, ThrowOnError>) => RequestResult<EnvironmentLiveEnvironmentResponses, EnvironmentLiveEnvironmentErrors, ThrowOnError, "fields">;
5800
+ declare const environmentByIdLiveEnvironment: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdLiveEnvironmentData, ThrowOnError>) => RequestResult<EnvironmentByIdLiveEnvironmentResponses, EnvironmentByIdLiveEnvironmentErrors, ThrowOnError, "fields">;
5770
5801
  /**
5771
- * Stop environment by id (external)
5802
+ * Stop environment
5772
5803
  *
5773
- * Stop an external-owned environment by id. Idempotent already-terminal envs are a no-op (204). External-owned only; other owners return 404.
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.
5774
5805
  */
5775
- declare const environmentStop: <ThrowOnError extends boolean = false>(options: Options<EnvironmentStopData, ThrowOnError>) => RequestResult<EnvironmentStopResponses, EnvironmentStopErrors, ThrowOnError, "fields">;
5806
+ declare const environmentByIdStop: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdStopData, ThrowOnError>) => RequestResult<EnvironmentByIdStopResponses, EnvironmentByIdStopErrors, ThrowOnError, "fields">;
5776
5807
  /**
5777
5808
  * List executions
5778
5809
  *
@@ -5874,4 +5905,4 @@ declare const schemaValidationValidate: <ThrowOnError extends boolean = false>(o
5874
5905
  */
5875
5906
  declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Options<TempFilesStageData, ThrowOnError>) => RequestResult<TempFilesStageResponses, TempFilesStageErrors, ThrowOnError, "fields">;
5876
5907
 
5877
- 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 };