asteroid-odyssey 1.7.396 → 1.7.417

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
@@ -2339,10 +2339,6 @@ type AgentsGraphModelsExternalSettings = {
2339
2339
  * Maximum timeout in minutes
2340
2340
  */
2341
2341
  max_timeout_mins: number;
2342
- /**
2343
- * Whether to use the new agent loop for execution (beta)
2344
- */
2345
- new_agent_loop?: boolean;
2346
2342
  };
2347
2343
  type AgentsGraphModelsNodesNode = {
2348
2344
  id: CommonUuid;
@@ -2634,6 +2630,10 @@ type AgentsProfileAgentProfile = {
2634
2630
  * Whether browser tracing is enabled (admin only)
2635
2631
  */
2636
2632
  tracingEnabled: boolean;
2633
+ /**
2634
+ * Anchor browser fingerprint ID applied at session create (admin only). Absent or null when unset.
2635
+ */
2636
+ fingerprintId?: string | null;
2637
2637
  /**
2638
2638
  * Stable org extension IDs attached to this profile
2639
2639
  */
@@ -2892,6 +2892,10 @@ type AgentsProfileCreateAgentProfileRequest = {
2892
2892
  * Whether browser tracing is enabled (admin only, defaults to true)
2893
2893
  */
2894
2894
  tracingEnabled?: boolean;
2895
+ /**
2896
+ * Anchor browser fingerprint ID to apply at session create (admin only). Requires extra stealth and a proxy. Empty or null means unset.
2897
+ */
2898
+ fingerprintId?: AgentsProfileFingerprintIdInput | null;
2895
2899
  /**
2896
2900
  * Stable org extension IDs to attach to this profile
2897
2901
  */
@@ -2986,6 +2990,10 @@ type AgentsProfileDuplicateAgentProfileRequest = {
2986
2990
  * Browser feature toggles on an agent profile that can be filtered on
2987
2991
  */
2988
2992
  type AgentsProfileFeature = "extraStealth" | "allow3rdCookies" | "captchaSolverActive" | "stickyIP" | "cachePersistence" | "adblockActive" | "popupBlockerActive" | "forcePopupsAsTabsActive" | "mediaBlockerActive";
2993
+ /**
2994
+ * Anchor browser fingerprint ID (24-character hex). An empty string means unset (create) or clear (update).
2995
+ */
2996
+ type AgentsProfileFingerprintIdInput = string;
2989
2997
  /**
2990
2998
  * Operating system to emulate in the browser
2991
2999
  */
@@ -3186,6 +3194,10 @@ type AgentsProfileUpdateAgentProfileRequest = {
3186
3194
  * Whether browser tracing is enabled (admin only)
3187
3195
  */
3188
3196
  tracingEnabled?: boolean;
3197
+ /**
3198
+ * Anchor browser fingerprint ID to apply at session create (admin only). Requires extra stealth and a proxy. An empty string clears it; omit to leave unchanged. Null is rejected — the generated servers cannot tell null from an omitted field, so accepting it would turn an intended clear into a silent no-op.
3199
+ */
3200
+ fingerprintId?: AgentsProfileFingerprintIdInput;
3189
3201
  /**
3190
3202
  * Stable org extension IDs to attach to this profile
3191
3203
  */
@@ -3556,6 +3568,126 @@ type AgentsWorkflowWorkflowFile = {
3556
3568
  */
3557
3569
  updatedAt: string;
3558
3570
  };
3571
+ /**
3572
+ * Which file contents a tree read carries inline.
3573
+ */
3574
+ type AgentsWorkflowWorkflowFileContentsMode = "none" | "structural" | "all";
3575
+ /**
3576
+ * A single entry in a workflow's directory-of-files representation.
3577
+ */
3578
+ type AgentsWorkflowWorkflowFileEntry = {
3579
+ /**
3580
+ * The file path, relative to the workflow root (e.g. `settings.yaml`, `nodes/login/instructions.md`).
3581
+ */
3582
+ path: string;
3583
+ /**
3584
+ * Whether this is a derived structural file (content inlined) or a user agent file (referenced by fileId).
3585
+ */
3586
+ kind: AgentsWorkflowWorkflowFileKind;
3587
+ /**
3588
+ * Inline UTF-8 content. Present for structural files only, and omitted under `contents=none`; agent files carry their bytes in contentBase64, since arbitrary uploads are not guaranteed to be valid UTF-8.
3589
+ */
3590
+ content?: string;
3591
+ /**
3592
+ * Base64-encoded file bytes. Present only for agent files, and only when `contents=all` and the file fits the response budget. Absent when contents were not requested, the file exceeded the budget, or storage could not be read — fall back to the workflow agent-file download endpoints using fileId.
3593
+ */
3594
+ contentBase64?: string;
3595
+ /**
3596
+ * The file size in bytes.
3597
+ */
3598
+ size: number;
3599
+ /**
3600
+ * The file's MIME type, when known.
3601
+ */
3602
+ mimeType?: string;
3603
+ /**
3604
+ * Hex-encoded SHA-256 of the file contents, when known. Lets a client materialising the directory skip files it already has. Absent for structural files, whose content is inlined anyway.
3605
+ */
3606
+ checksum?: string;
3607
+ /**
3608
+ * For an agent file: the id used to fetch its content via the workflow agent-file endpoints.
3609
+ */
3610
+ fileId?: CommonUuid;
3611
+ /**
3612
+ * For an agent file: the object key of its blob in the agents bucket. A caller with bucket access (astro-agent) reads a file the response budget skipped straight from storage, instead of a signed-URL mint plus a download redirect. Absent for structural files, which have no blob.
3613
+ */
3614
+ storageObjectKey?: string;
3615
+ /**
3616
+ * For an agent file: a URL that redirects to a short-lived signed URL for the file's bytes. Browser clients with no bucket access use this to preview, download and diff files the response did not inline. Absent for structural files, whose content is inlined, and on the internal surface, whose callers read a skipped file straight from storage by `storageObjectKey`.
3617
+ */
3618
+ downloadUrl?: string;
3619
+ /**
3620
+ * For an agent file: when its contents were last written.
3621
+ */
3622
+ updatedAt?: string;
3623
+ };
3624
+ /**
3625
+ * The kind of file in a workflow's directory representation.
3626
+ */
3627
+ type AgentsWorkflowWorkflowFileKind = "structural" | "agent_file";
3628
+ /**
3629
+ * A workflow rendered as a directory of files. Structural files are derived from the structured workflow and carry inline content; user agent files are referenced by id.
3630
+ */
3631
+ type AgentsWorkflowWorkflowFileTree = {
3632
+ /**
3633
+ * The revision the tree reflects. For the editable head, supply this as `baseRev` when patching; a stale value is rejected with 409.
3634
+ */
3635
+ rev: number;
3636
+ /**
3637
+ * The id of the workflow this tree renders. Lets a client that materialises the directory record what it holds without a second fetch.
3638
+ */
3639
+ workflowId: CommonUuid;
3640
+ /**
3641
+ * The workflow's version number, absent for a draft that has never been published.
3642
+ */
3643
+ version?: number;
3644
+ /**
3645
+ * The owning agent's name. The directory is rendered relative to the workflow root, so a client that lays it out under a per-agent folder needs the name to derive that folder — and would otherwise have to fetch the agent for it.
3646
+ */
3647
+ agentName: string;
3648
+ /**
3649
+ * Hex-encoded SHA-256 over the workflow's whole file directory: every structural file's path and content, and every agent file's path and checksum. It covers the whole workflow regardless of any paths, variants or contents narrowing on the read, so two reads of the same workflow always agree. A client keeping the directory in version control compares this one string to answer "does the published agent still match my checkout?" instead of diffing every file. Absent when an agent file has no checksum yet, since the tree cannot then be hashed in full.
3650
+ */
3651
+ contentHash?: string;
3652
+ /**
3653
+ * The files in the workflow, sorted by path.
3654
+ */
3655
+ files: Array<AgentsWorkflowWorkflowFileEntry>;
3656
+ /**
3657
+ * Every variant key the workflow's files carry, sorted, regardless of any variants filter on the read — a narrowed tree still names what it could ask for. Absent unless the workflow has variant mode enabled.
3658
+ */
3659
+ variantKeys?: Array<string>;
3660
+ };
3661
+ /**
3662
+ * A single file write in a files patch: upsert the file at `path`. Content is base64 uniformly — structural files decode as UTF-8, agent files are arbitrary bytes — so one write shape carries both.
3663
+ */
3664
+ type AgentsWorkflowWorkflowFileWrite = {
3665
+ /**
3666
+ * The file path, relative to the workflow root — the same paths the file tree returns.
3667
+ */
3668
+ path: string;
3669
+ /**
3670
+ * Base64-encoded file content.
3671
+ */
3672
+ contentBase64: string;
3673
+ };
3674
+ /**
3675
+ * Request to patch the editable head's file representation. The server classifies each path: structural files re-derive the structured workflow, the agent's own files (memory, uploads, node scripts) go to their blob store — the client just writes files. Rev-guarded by `baseRev`: a stale value is rejected with 409.
3676
+ */
3677
+ type AgentsWorkflowWorkflowFilesPatchRequest = {
3678
+ /**
3679
+ * The revision this edit is based on. The patch only applies when it still matches the stored head revision; otherwise it is rejected with 409.
3680
+ */
3681
+ baseRev: number;
3682
+ /**
3683
+ * Files to upsert.
3684
+ */
3685
+ writes: Array<AgentsWorkflowWorkflowFileWrite>;
3686
+ /**
3687
+ * Paths of files to delete.
3688
+ */
3689
+ deletes: Array<string>;
3690
+ };
3559
3691
  /**
3560
3692
  * The typed inputs a workflow declares
3561
3693
  */
@@ -4881,6 +5013,157 @@ type AgentExecutePostResponses = {
4881
5013
  202: AgentsAgentExecuteAgentResponse;
4882
5014
  };
4883
5015
  type AgentExecutePostResponse = AgentExecutePostResponses[keyof AgentExecutePostResponses];
5016
+ type AgentWorkflowHeadGetFilesData = {
5017
+ body?: never;
5018
+ path: {
5019
+ /**
5020
+ * The ID of the agent
5021
+ */
5022
+ agentId: CommonUuid;
5023
+ };
5024
+ query?: {
5025
+ /**
5026
+ * Which contents come inline: none (a pure manifest), structural (the default), or all (structural plus agent-file bytes within the response budget).
5027
+ */
5028
+ contents?: AgentsWorkflowWorkflowFileContentsMode;
5029
+ /**
5030
+ * Return only the files at these exact tree paths. A path that names nothing yields no entry. The inline budget applies to the filtered set, so a narrow read can inline files a whole-tree read would have to skip.
5031
+ */
5032
+ paths?: Array<string>;
5033
+ /**
5034
+ * Narrow which variants/<key>/ files the tree carries: "none" strips every variant, a comma-separated list keeps only those variant keys. Files outside variants/ are always kept, and the response's variantKeys still names every variant. Ignored unless the workflow has variant mode enabled; absent keeps every variant.
5035
+ */
5036
+ variants?: string;
5037
+ /**
5038
+ * Per-file ceiling, in bytes, for inlined agent-file contents. Clamped to the server maximum; a caller with tighter limits of its own passes them here so the response does not carry bytes it will discard. Files above the ceiling stay references.
5039
+ */
5040
+ maxFileBytes?: number;
5041
+ /**
5042
+ * Ceiling, in bytes, on the total inlined agent-file contents in one response. Clamped to the server maximum. Files are admitted in path order until the ceiling is reached; the rest stay references.
5043
+ */
5044
+ maxTotalBytes?: number;
5045
+ };
5046
+ url: "/agents/{agentId}/workflow-head/files";
5047
+ };
5048
+ type AgentWorkflowHeadGetFilesErrors = {
5049
+ /**
5050
+ * The server could not understand the request due to invalid syntax.
5051
+ */
5052
+ 400: CommonBadRequestErrorBody;
5053
+ /**
5054
+ * Access is unauthorized.
5055
+ */
5056
+ 401: CommonUnauthorizedErrorBody;
5057
+ /**
5058
+ * Access is forbidden.
5059
+ */
5060
+ 403: CommonForbiddenErrorBody;
5061
+ /**
5062
+ * The server cannot find the requested resource.
5063
+ */
5064
+ 404: CommonNotFoundErrorBody;
5065
+ /**
5066
+ * Server error
5067
+ */
5068
+ 500: CommonInternalServerErrorBody;
5069
+ };
5070
+ type AgentWorkflowHeadGetFilesError = AgentWorkflowHeadGetFilesErrors[keyof AgentWorkflowHeadGetFilesErrors];
5071
+ type AgentWorkflowHeadGetFilesResponses = {
5072
+ /**
5073
+ * The request has succeeded.
5074
+ */
5075
+ 200: AgentsWorkflowWorkflowFileTree;
5076
+ };
5077
+ type AgentWorkflowHeadGetFilesResponse = AgentWorkflowHeadGetFilesResponses[keyof AgentWorkflowHeadGetFilesResponses];
5078
+ type AgentWorkflowHeadPatchFilesData = {
5079
+ /**
5080
+ * The file writes and deletes to apply
5081
+ */
5082
+ body: AgentsWorkflowWorkflowFilesPatchRequest;
5083
+ path: {
5084
+ /**
5085
+ * The ID of the agent
5086
+ */
5087
+ agentId: CommonUuid;
5088
+ };
5089
+ query?: never;
5090
+ url: "/agents/{agentId}/workflow-head/files";
5091
+ };
5092
+ type AgentWorkflowHeadPatchFilesErrors = {
5093
+ /**
5094
+ * The server could not understand the request due to invalid syntax.
5095
+ */
5096
+ 400: CommonBadRequestErrorBody;
5097
+ /**
5098
+ * Access is unauthorized.
5099
+ */
5100
+ 401: CommonUnauthorizedErrorBody;
5101
+ /**
5102
+ * Access is forbidden.
5103
+ */
5104
+ 403: CommonForbiddenErrorBody;
5105
+ /**
5106
+ * The server cannot find the requested resource.
5107
+ */
5108
+ 404: CommonNotFoundErrorBody;
5109
+ /**
5110
+ * The request conflicts with the current state of the server.
5111
+ */
5112
+ 409: CommonConflictErrorBody;
5113
+ /**
5114
+ * Server error
5115
+ */
5116
+ 500: CommonInternalServerErrorBody;
5117
+ };
5118
+ type AgentWorkflowHeadPatchFilesError = AgentWorkflowHeadPatchFilesErrors[keyof AgentWorkflowHeadPatchFilesErrors];
5119
+ type AgentWorkflowHeadPatchFilesResponses = {
5120
+ /**
5121
+ * The request has succeeded.
5122
+ */
5123
+ 200: AgentsWorkflowExternalWorkflowSnapshot;
5124
+ };
5125
+ type AgentWorkflowHeadPatchFilesResponse = AgentWorkflowHeadPatchFilesResponses[keyof AgentWorkflowHeadPatchFilesResponses];
5126
+ type AgentWorkflowHeadPublishHeadData = {
5127
+ body?: never;
5128
+ path: {
5129
+ /**
5130
+ * The ID of the agent
5131
+ */
5132
+ agentId: CommonUuid;
5133
+ };
5134
+ query?: never;
5135
+ url: "/agents/{agentId}/workflow-head/publish";
5136
+ };
5137
+ type AgentWorkflowHeadPublishHeadErrors = {
5138
+ /**
5139
+ * The server could not understand the request due to invalid syntax.
5140
+ */
5141
+ 400: CommonBadRequestErrorBody;
5142
+ /**
5143
+ * Access is unauthorized.
5144
+ */
5145
+ 401: CommonUnauthorizedErrorBody;
5146
+ /**
5147
+ * Access is forbidden.
5148
+ */
5149
+ 403: CommonForbiddenErrorBody;
5150
+ /**
5151
+ * The server cannot find the requested resource.
5152
+ */
5153
+ 404: CommonNotFoundErrorBody;
5154
+ /**
5155
+ * Server error
5156
+ */
5157
+ 500: CommonInternalServerErrorBody;
5158
+ };
5159
+ type AgentWorkflowHeadPublishHeadError = AgentWorkflowHeadPublishHeadErrors[keyof AgentWorkflowHeadPublishHeadErrors];
5160
+ type AgentWorkflowHeadPublishHeadResponses = {
5161
+ /**
5162
+ * The request has succeeded.
5163
+ */
5164
+ 200: AgentsWorkflowPublishWorkflowResponse;
5165
+ };
5166
+ type AgentWorkflowHeadPublishHeadResponse = AgentWorkflowHeadPublishHeadResponses[keyof AgentWorkflowHeadPublishHeadResponses];
4884
5167
  type AgentWorkflowsListData = {
4885
5168
  body?: never;
4886
5169
  path: {
@@ -5152,6 +5435,72 @@ type AgentWorkflowsExecuteResponses = {
5152
5435
  202: AgentsWorkflowExecuteWorkflowResponse;
5153
5436
  };
5154
5437
  type AgentWorkflowsExecuteResponse = AgentWorkflowsExecuteResponses[keyof AgentWorkflowsExecuteResponses];
5438
+ type AgentWorkflowsGetFilesByVersionData = {
5439
+ body?: never;
5440
+ path: {
5441
+ /**
5442
+ * The ID of the agent
5443
+ */
5444
+ agentId: CommonUuid;
5445
+ /**
5446
+ * The ID of the workflow
5447
+ */
5448
+ workflowId: CommonUuid;
5449
+ };
5450
+ query?: {
5451
+ /**
5452
+ * Which contents come inline: none (a pure manifest), structural (the default), or all (structural plus agent-file bytes within the response budget).
5453
+ */
5454
+ contents?: AgentsWorkflowWorkflowFileContentsMode;
5455
+ /**
5456
+ * Return only the files at these exact tree paths. A path that names nothing yields no entry. The inline budget applies to the filtered set, so a narrow read can inline files a whole-tree read would have to skip.
5457
+ */
5458
+ paths?: Array<string>;
5459
+ /**
5460
+ * Narrow which variants/<key>/ files the tree carries: "none" strips every variant, a comma-separated list keeps only those variant keys. Files outside variants/ are always kept, and the response's variantKeys still names every variant. Ignored unless the workflow has variant mode enabled; absent keeps every variant.
5461
+ */
5462
+ variants?: string;
5463
+ /**
5464
+ * Per-file ceiling, in bytes, for inlined agent-file contents. Clamped to the server maximum; a caller with tighter limits of its own passes them here so the response does not carry bytes it will discard. Files above the ceiling stay references.
5465
+ */
5466
+ maxFileBytes?: number;
5467
+ /**
5468
+ * Ceiling, in bytes, on the total inlined agent-file contents in one response. Clamped to the server maximum. Files are admitted in path order until the ceiling is reached; the rest stay references.
5469
+ */
5470
+ maxTotalBytes?: number;
5471
+ };
5472
+ url: "/agents/{agentId}/workflows/{workflowId}/files";
5473
+ };
5474
+ type AgentWorkflowsGetFilesByVersionErrors = {
5475
+ /**
5476
+ * The server could not understand the request due to invalid syntax.
5477
+ */
5478
+ 400: CommonBadRequestErrorBody;
5479
+ /**
5480
+ * Access is unauthorized.
5481
+ */
5482
+ 401: CommonUnauthorizedErrorBody;
5483
+ /**
5484
+ * Access is forbidden.
5485
+ */
5486
+ 403: CommonForbiddenErrorBody;
5487
+ /**
5488
+ * The server cannot find the requested resource.
5489
+ */
5490
+ 404: CommonNotFoundErrorBody;
5491
+ /**
5492
+ * Server error
5493
+ */
5494
+ 500: CommonInternalServerErrorBody;
5495
+ };
5496
+ type AgentWorkflowsGetFilesByVersionError = AgentWorkflowsGetFilesByVersionErrors[keyof AgentWorkflowsGetFilesByVersionErrors];
5497
+ type AgentWorkflowsGetFilesByVersionResponses = {
5498
+ /**
5499
+ * The request has succeeded.
5500
+ */
5501
+ 200: AgentsWorkflowWorkflowFileTree;
5502
+ };
5503
+ type AgentWorkflowsGetFilesByVersionResponse = AgentWorkflowsGetFilesByVersionResponses[keyof AgentWorkflowsGetFilesByVersionResponses];
5155
5504
  type AgentWorkflowsGetInputsData = {
5156
5505
  body?: never;
5157
5506
  path: {
@@ -6614,6 +6963,24 @@ declare const agentByIdUpdate: <ThrowOnError extends boolean = false>(options: O
6614
6963
  * Start an execution for the given agent.
6615
6964
  */
6616
6965
  declare const agentExecutePost: <ThrowOnError extends boolean = false>(options: Options<AgentExecutePostData, ThrowOnError>) => RequestResult<AgentExecutePostResponses, AgentExecutePostErrors, ThrowOnError>;
6966
+ /**
6967
+ * Get workflow head files
6968
+ *
6969
+ * Get the editable head rendered as a directory of files. Structural files carry inline content; user agent files are referenced by id. The returned `rev` can be supplied as `baseRev` to patch without a second fetch.
6970
+ */
6971
+ declare const agentWorkflowHeadGetFiles: <ThrowOnError extends boolean = false>(options: Options<AgentWorkflowHeadGetFilesData, ThrowOnError>) => RequestResult<AgentWorkflowHeadGetFilesResponses, AgentWorkflowHeadGetFilesErrors, ThrowOnError>;
6972
+ /**
6973
+ * Patch workflow head files
6974
+ *
6975
+ * Patch the editable head's file representation in place: apply file writes/deletes, re-derive the structured workflow, and persist it. Structural files re-derive the graph; agent files go to the blob store. Guarded by baseRev for optimistic concurrency. When the head is frozen (published or executed) the edit forks a fresh version behind the scenes.
6976
+ */
6977
+ declare const agentWorkflowHeadPatchFiles: <ThrowOnError extends boolean = false>(options: Options<AgentWorkflowHeadPatchFilesData, ThrowOnError>) => RequestResult<AgentWorkflowHeadPatchFilesResponses, AgentWorkflowHeadPatchFilesErrors, ThrowOnError>;
6978
+ /**
6979
+ * Publish workflow head
6980
+ *
6981
+ * Publish the editable head, assigning it as the agent's published version
6982
+ */
6983
+ declare const agentWorkflowHeadPublishHead: <ThrowOnError extends boolean = false>(options: Options<AgentWorkflowHeadPublishHeadData, ThrowOnError>) => RequestResult<AgentWorkflowHeadPublishHeadResponses, AgentWorkflowHeadPublishHeadErrors, ThrowOnError>;
6617
6984
  /**
6618
6985
  * List workflow references
6619
6986
  *
@@ -6650,6 +7017,12 @@ declare const agentWorkflowsGet: <ThrowOnError extends boolean = false>(options:
6650
7017
  * Execute a workflow by its ID (can be published or unpublished)
6651
7018
  */
6652
7019
  declare const agentWorkflowsExecute: <ThrowOnError extends boolean = false>(options: Options<AgentWorkflowsExecuteData, ThrowOnError>) => RequestResult<AgentWorkflowsExecuteResponses, AgentWorkflowsExecuteErrors, ThrowOnError>;
7020
+ /**
7021
+ * Get workflow version files
7022
+ *
7023
+ * Get a workflow version rendered as a directory of files. Structural files carry inline content; user agent files are referenced by id.
7024
+ */
7025
+ declare const agentWorkflowsGetFilesByVersion: <ThrowOnError extends boolean = false>(options: Options<AgentWorkflowsGetFilesByVersionData, ThrowOnError>) => RequestResult<AgentWorkflowsGetFilesByVersionResponses, AgentWorkflowsGetFilesByVersionErrors, ThrowOnError>;
6653
7026
  /**
6654
7027
  * Get workflow inputs
6655
7028
  *
@@ -6853,4 +7226,4 @@ declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Op
6853
7226
  */
6854
7227
  declare const workflowSpecValidationValidate: <ThrowOnError extends boolean = false>(options: Options<WorkflowSpecValidationValidateData, ThrowOnError>) => RequestResult<WorkflowSpecValidationValidateResponses, WorkflowSpecValidationValidateErrors, ThrowOnError>;
6855
7228
 
6856
- 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 AgentWorkflowsValidateData, type AgentWorkflowsValidateError, type AgentWorkflowsValidateErrors, type AgentWorkflowsValidateResponse, type AgentWorkflowsValidateResponses, type AgentsAgentAvailableTool, type AgentsAgentAvailableToolsResponse, type AgentsAgentBase, type AgentsAgentCreateResponse, type AgentsAgentExecuteAgentRequest, type AgentsAgentExecuteAgentResponse, type AgentsAgentExecutionOptions, type AgentsAgentExternalCreateRequest, type AgentsAgentSearch, type AgentsAgentSortField, type AgentsAgentUpdateRequest, type AgentsContextUserContextResponse, type AgentsContextUserOrganization, type AgentsCustomerActivityCustomerActivityList, type AgentsCustomerActivityCustomerActivityRow, type AgentsCustomerActivityCustomerWindowStatsList, type AgentsCustomerActivityCustomerWindowStatsRow, type AgentsCustomerActivityNotableActivityKind, type AgentsCustomerActivityNotableActivityList, type AgentsCustomerActivityNotableActivityRow, type AgentsCustomerActivityOrgWindowStat, type AgentsCustomerActivityRiskLevel, type AgentsDocsSearchDocsRequest, type AgentsDocsSearchDocsResponse, type AgentsDocsSearchResult, type AgentsEnvironmentAstroEnvironmentOwner, type AgentsEnvironmentEnvironment, type AgentsEnvironmentEnvironmentConnection, type AgentsEnvironmentEnvironmentLifecycle, type AgentsEnvironmentEnvironmentOwner, type AgentsEnvironmentEnvironmentSource, type AgentsEnvironmentEnvironmentStatus, type AgentsEnvironmentEnvironmentSummary, type AgentsEnvironmentExecutionEnvironmentOwner, type AgentsEnvironmentExplicitEnvironmentSource, type AgentsEnvironmentExternalEnvironmentOwner, type AgentsEnvironmentListEnvironmentsResponse, type AgentsEnvironmentOrganizationEnvironmentOwner, type AgentsEnvironmentSpecBrowserTemplate, type AgentsEnvironmentSpecEnvironmentTemplate, type AgentsEnvironmentSpecOsTemplate, type AgentsEnvironmentStartEnvironmentRequest, type AgentsEnvironmentWarmPoolEnvironmentOwner, 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 AgentsExecutionActivityOutputSchemaResolvedPayload, type AgentsExecutionActivityPayloadUnion, type AgentsExecutionActivityPlaywrightScriptGeneratedPayload, type AgentsExecutionActivityPresentationLevel, type AgentsExecutionActivityReasoningPayload, type AgentsExecutionActivityScriptVariablesSubstitutedPayload, type AgentsExecutionActivityStatusChangedPayload, type AgentsExecutionActivityStepCompletedPayload, type AgentsExecutionActivityStepStartedPayload, type AgentsExecutionActivityTodosUpdatedPayload, type AgentsExecutionActivityTransitionedNodePayload, type AgentsExecutionActivityUserMessageReceivedPayload, type AgentsExecutionAgentQueryContextCompletedDetails, type AgentsExecutionAgentQueryContextStartedDetails, type AgentsExecutionAnchorProviderConfig, type AgentsExecutionApiKeyRef, type AgentsExecutionApiTriggerContext, type AgentsExecutionAskUserQuestion, type AgentsExecutionAwaitingConfirmationPayload, type AgentsExecutionBatchBase, type AgentsExecutionBatchBatchConfig, type AgentsExecutionBatchBatchItem, type AgentsExecutionBatchCreateRequest, type AgentsExecutionBatchListFilterAgentId, type AgentsExecutionBatchListFilterStatus, type AgentsExecutionBatchMaxConcurrentConfig, type AgentsExecutionBatchStatus, type AgentsExecutionBatchTimeBatchingConfig, type AgentsExecutionBrowserProviderConfig, type AgentsExecutionBrowserRunCodeCompletedDetails, type AgentsExecutionBrowserRunCodeStartedDetails, type AgentsExecutionBrowserState, type AgentsExecutionCancelReason, type AgentsExecutionCancelledPayload, type AgentsExecutionComment, type AgentsExecutionCompletedPayload, type AgentsExecutionDaytonaProviderConfig, type AgentsExecutionElementFileUploadCompletedDetails, type AgentsExecutionEnvironmentState, type AgentsExecutionExecutionResult, type AgentsExecutionExtApiCallCompletedDetails, type AgentsExecutionExtGetMailCompletedDetails, type AgentsExecutionExtSendMailCompletedDetails, type AgentsExecutionExtSendMailStartedDetails, type AgentsExecutionFailedPayload, type AgentsExecutionFileListCompletedDetails, type AgentsExecutionFileReadCompletedDetails, type AgentsExecutionFileStageCompletedDetails, type AgentsExecutionHandoffPrepareCompletedDetails, type AgentsExecutionHandoffPrepareStartedDetails, type AgentsExecutionHandoffPrepareVariable, type AgentsExecutionHumanLabel, type AgentsExecutionInputResolutionSource, type AgentsExecutionListItem, type AgentsExecutionLlmCallPurpose, type AgentsExecutionLlmCallStartedDetails, type AgentsExecutionNavToCompletedDetails, type AgentsExecutionNavToStartedDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, type AgentsExecutionOsState, type AgentsExecutionPausedPayload, type AgentsExecutionPhase, 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 AgentsExecutionSearchPhase, type AgentsExecutionSearchStatus, type AgentsExecutionSearchTriggerSource, type AgentsExecutionSearchWorkflowVersion, type AgentsExecutionSortField, type AgentsExecutionStatus, type AgentsExecutionSteelProviderConfig, type AgentsExecutionTerminalPayload, type AgentsExecutionTodo, type AgentsExecutionTodoStatus, type AgentsExecutionTriggerContext, type AgentsExecutionTriggerRunner, type AgentsExecutionUiTriggerContext, type AgentsExecutionUpdateExecutionStatusRequest, type AgentsExecutionUpdateableStatus, type AgentsExecutionUserMessagesAddTextBody, type AgentsExecutionUtilGetDatetimeCompletedDetails, type AgentsExecutionUtilGetDatetimeStartedDetails, type AgentsExecutionWarmupTriggerContext, 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 AgentsScheduledExecutionBase, type AgentsScheduledExecutionListFilterAgentId, type AgentsScheduledExecutionListFilterBatchId, type AgentsScheduledExecutionListFilterOrder, type AgentsScheduledExecutionListFilterStatus, type AgentsScheduledExecutionListFilterWorkflowId, type AgentsScheduledExecutionStatus, type AgentsSchemaValidateSchemaRequest, type AgentsSchemaValidateSchemaResponse, type AgentsWorkflowBrowserProvider, type AgentsWorkflowBrowserTemplateConfig, type AgentsWorkflowCreateWorkflowResponse, type AgentsWorkflowEnvironmentType, type AgentsWorkflowExecuteWorkflowRequest, type AgentsWorkflowExecuteWorkflowResponse, type AgentsWorkflowExternalCreateWorkflowRequest, type AgentsWorkflowExternalEnvironmentTemplate, type AgentsWorkflowExternalOsTemplateConfig, type AgentsWorkflowExternalWorkflowSnapshot, type AgentsWorkflowInput, type AgentsWorkflowOsProvider, type AgentsWorkflowOsRegion, type AgentsWorkflowOsType, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowWorkflowFile, type AgentsWorkflowWorkflowInputs, type AgentsWorkflowWorkflowOutputSchemas, type AgentsWorkflowWorkflowRef, type AgentsWorkflowWorkflowValidationIssue, type AgentsWorkflowWorkflowValidationResponse, type AgentsWorkflowWorkflowValidationSeverity, type AvailableToolsListData, type AvailableToolsListError, type AvailableToolsListErrors, type AvailableToolsListResponse, type AvailableToolsListResponses, type ClientOptions, type CommonBadRequestErrorBody, type CommonConflictErrorBody, type CommonError, type CommonForbiddenErrorBody, type CommonInternalServerErrorBody, type CommonNotFoundErrorBody, type CommonOsError, type CommonPaginationPage, type CommonPaginationPageSize, type CommonPaymentRequiredErrorBody, type CommonSortDirection, type CommonUnauthorizedErrorBody, type CommonUuid, type ContextGetData, type ContextGetError, type ContextGetErrors, type ContextGetResponse, type ContextGetResponses, type CreateClientConfig, type DocsSearchSearchData, type DocsSearchSearchError, type DocsSearchSearchErrors, type DocsSearchSearchResponse, type DocsSearchSearchResponses, type EnvironmentByIdGetData, type EnvironmentByIdGetError, type EnvironmentByIdGetErrors, type EnvironmentByIdGetResponse, type EnvironmentByIdGetResponses, type EnvironmentByIdStopData, type EnvironmentByIdStopError, type EnvironmentByIdStopErrors, type EnvironmentByIdStopResponse, type EnvironmentByIdStopResponses, type EnvironmentsListData, type EnvironmentsListError, type EnvironmentsListErrors, type EnvironmentsListResponse, type EnvironmentsListResponses, type EnvironmentsStartData, type EnvironmentsStartError, type EnvironmentsStartErrors, type EnvironmentsStartResponse, type EnvironmentsStartResponses, type ExecutionActivitiesGetData, type ExecutionActivitiesGetError, type ExecutionActivitiesGetErrors, type ExecutionActivitiesGetResponse, type ExecutionActivitiesGetResponses, type ExecutionAgentFileDownloadRedirectData, type ExecutionAgentFileDownloadRedirectError, type ExecutionAgentFileDownloadRedirectErrors, type ExecutionAgentFilesGetData, type ExecutionAgentFilesGetError, type ExecutionAgentFilesGetErrors, type ExecutionAgentFilesGetResponse, type ExecutionAgentFilesGetResponses, type ExecutionBatchCancelData, type ExecutionBatchCancelError, type ExecutionBatchCancelErrors, type ExecutionBatchCancelResponse, type ExecutionBatchCancelResponses, type ExecutionBatchGetData, type ExecutionBatchGetError, type ExecutionBatchGetErrors, type ExecutionBatchGetResponse, type ExecutionBatchGetResponses, type ExecutionBatchPauseData, type ExecutionBatchPauseError, type ExecutionBatchPauseErrors, type ExecutionBatchPauseResponse, type ExecutionBatchPauseResponses, type ExecutionBatchResumeData, type ExecutionBatchResumeError, type ExecutionBatchResumeErrors, type ExecutionBatchResumeResponse, type ExecutionBatchResumeResponses, type ExecutionBatchesCreateData, type ExecutionBatchesCreateError, type ExecutionBatchesCreateErrors, type ExecutionBatchesCreateResponse, type ExecutionBatchesCreateResponses, type ExecutionBatchesListData, type ExecutionBatchesListError, type ExecutionBatchesListErrors, type ExecutionBatchesListResponse, type ExecutionBatchesListResponses, 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 ScheduledExecutionsListData, type ScheduledExecutionsListError, type ScheduledExecutionsListErrors, type ScheduledExecutionsListResponse, type ScheduledExecutionsListResponses, type SchemaValidationValidateData, type SchemaValidationValidateError, type SchemaValidationValidateErrors, type SchemaValidationValidateResponse, type SchemaValidationValidateResponses, type TempFilesStageData, type TempFilesStageError, type TempFilesStageErrors, type TempFilesStageResponse, type TempFilesStageResponses, type WorkflowSpecValidationValidateData, type WorkflowSpecValidationValidateError, type WorkflowSpecValidationValidateErrors, type WorkflowSpecValidationValidateResponse, type WorkflowSpecValidationValidateResponses, 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, agentWorkflowsValidate, availableToolsList, client, contextGet, docsSearchSearch, environmentByIdGet, environmentByIdStop, environmentsList, environmentsStart, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionBatchCancel, executionBatchGet, executionBatchPause, executionBatchResume, executionBatchesCreate, executionBatchesList, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, scheduledExecutionsList, schemaValidationValidate, tempFilesStage, workflowSpecValidationValidate };
7229
+ 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 AgentWorkflowHeadGetFilesData, type AgentWorkflowHeadGetFilesError, type AgentWorkflowHeadGetFilesErrors, type AgentWorkflowHeadGetFilesResponse, type AgentWorkflowHeadGetFilesResponses, type AgentWorkflowHeadPatchFilesData, type AgentWorkflowHeadPatchFilesError, type AgentWorkflowHeadPatchFilesErrors, type AgentWorkflowHeadPatchFilesResponse, type AgentWorkflowHeadPatchFilesResponses, type AgentWorkflowHeadPublishHeadData, type AgentWorkflowHeadPublishHeadError, type AgentWorkflowHeadPublishHeadErrors, type AgentWorkflowHeadPublishHeadResponse, type AgentWorkflowHeadPublishHeadResponses, 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 AgentWorkflowsGetFilesByVersionData, type AgentWorkflowsGetFilesByVersionError, type AgentWorkflowsGetFilesByVersionErrors, type AgentWorkflowsGetFilesByVersionResponse, type AgentWorkflowsGetFilesByVersionResponses, 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 AgentWorkflowsValidateData, type AgentWorkflowsValidateError, type AgentWorkflowsValidateErrors, type AgentWorkflowsValidateResponse, type AgentWorkflowsValidateResponses, type AgentsAgentAvailableTool, type AgentsAgentAvailableToolsResponse, type AgentsAgentBase, type AgentsAgentCreateResponse, type AgentsAgentExecuteAgentRequest, type AgentsAgentExecuteAgentResponse, type AgentsAgentExecutionOptions, type AgentsAgentExternalCreateRequest, type AgentsAgentSearch, type AgentsAgentSortField, type AgentsAgentUpdateRequest, type AgentsContextUserContextResponse, type AgentsContextUserOrganization, type AgentsCustomerActivityCustomerActivityList, type AgentsCustomerActivityCustomerActivityRow, type AgentsCustomerActivityCustomerWindowStatsList, type AgentsCustomerActivityCustomerWindowStatsRow, type AgentsCustomerActivityNotableActivityKind, type AgentsCustomerActivityNotableActivityList, type AgentsCustomerActivityNotableActivityRow, type AgentsCustomerActivityOrgWindowStat, type AgentsCustomerActivityRiskLevel, type AgentsDocsSearchDocsRequest, type AgentsDocsSearchDocsResponse, type AgentsDocsSearchResult, type AgentsEnvironmentAstroEnvironmentOwner, type AgentsEnvironmentEnvironment, type AgentsEnvironmentEnvironmentConnection, type AgentsEnvironmentEnvironmentLifecycle, type AgentsEnvironmentEnvironmentOwner, type AgentsEnvironmentEnvironmentSource, type AgentsEnvironmentEnvironmentStatus, type AgentsEnvironmentEnvironmentSummary, type AgentsEnvironmentExecutionEnvironmentOwner, type AgentsEnvironmentExplicitEnvironmentSource, type AgentsEnvironmentExternalEnvironmentOwner, type AgentsEnvironmentListEnvironmentsResponse, type AgentsEnvironmentOrganizationEnvironmentOwner, type AgentsEnvironmentSpecBrowserTemplate, type AgentsEnvironmentSpecEnvironmentTemplate, type AgentsEnvironmentSpecOsTemplate, type AgentsEnvironmentStartEnvironmentRequest, type AgentsEnvironmentWarmPoolEnvironmentOwner, 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 AgentsExecutionActivityOutputSchemaResolvedPayload, type AgentsExecutionActivityPayloadUnion, type AgentsExecutionActivityPlaywrightScriptGeneratedPayload, type AgentsExecutionActivityPresentationLevel, type AgentsExecutionActivityReasoningPayload, type AgentsExecutionActivityScriptVariablesSubstitutedPayload, type AgentsExecutionActivityStatusChangedPayload, type AgentsExecutionActivityStepCompletedPayload, type AgentsExecutionActivityStepStartedPayload, type AgentsExecutionActivityTodosUpdatedPayload, type AgentsExecutionActivityTransitionedNodePayload, type AgentsExecutionActivityUserMessageReceivedPayload, type AgentsExecutionAgentQueryContextCompletedDetails, type AgentsExecutionAgentQueryContextStartedDetails, type AgentsExecutionAnchorProviderConfig, type AgentsExecutionApiKeyRef, type AgentsExecutionApiTriggerContext, type AgentsExecutionAskUserQuestion, type AgentsExecutionAwaitingConfirmationPayload, type AgentsExecutionBatchBase, type AgentsExecutionBatchBatchConfig, type AgentsExecutionBatchBatchItem, type AgentsExecutionBatchCreateRequest, type AgentsExecutionBatchListFilterAgentId, type AgentsExecutionBatchListFilterStatus, type AgentsExecutionBatchMaxConcurrentConfig, type AgentsExecutionBatchStatus, type AgentsExecutionBatchTimeBatchingConfig, type AgentsExecutionBrowserProviderConfig, type AgentsExecutionBrowserRunCodeCompletedDetails, type AgentsExecutionBrowserRunCodeStartedDetails, type AgentsExecutionBrowserState, type AgentsExecutionCancelReason, type AgentsExecutionCancelledPayload, type AgentsExecutionComment, type AgentsExecutionCompletedPayload, type AgentsExecutionDaytonaProviderConfig, type AgentsExecutionElementFileUploadCompletedDetails, type AgentsExecutionEnvironmentState, type AgentsExecutionExecutionResult, type AgentsExecutionExtApiCallCompletedDetails, type AgentsExecutionExtGetMailCompletedDetails, type AgentsExecutionExtSendMailCompletedDetails, type AgentsExecutionExtSendMailStartedDetails, type AgentsExecutionFailedPayload, type AgentsExecutionFileListCompletedDetails, type AgentsExecutionFileReadCompletedDetails, type AgentsExecutionFileStageCompletedDetails, type AgentsExecutionHandoffPrepareCompletedDetails, type AgentsExecutionHandoffPrepareStartedDetails, type AgentsExecutionHandoffPrepareVariable, type AgentsExecutionHumanLabel, type AgentsExecutionInputResolutionSource, type AgentsExecutionListItem, type AgentsExecutionLlmCallPurpose, type AgentsExecutionLlmCallStartedDetails, type AgentsExecutionNavToCompletedDetails, type AgentsExecutionNavToStartedDetails, type AgentsExecutionNodeOutputItem, type AgentsExecutionObsSnapshotWithSelectorsCompletedDetails, type AgentsExecutionOsState, type AgentsExecutionPausedPayload, type AgentsExecutionPhase, 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 AgentsExecutionSearchPhase, type AgentsExecutionSearchStatus, type AgentsExecutionSearchTriggerSource, type AgentsExecutionSearchWorkflowVersion, type AgentsExecutionSortField, type AgentsExecutionStatus, type AgentsExecutionSteelProviderConfig, type AgentsExecutionTerminalPayload, type AgentsExecutionTodo, type AgentsExecutionTodoStatus, type AgentsExecutionTriggerContext, type AgentsExecutionTriggerRunner, type AgentsExecutionUiTriggerContext, type AgentsExecutionUpdateExecutionStatusRequest, type AgentsExecutionUpdateableStatus, type AgentsExecutionUserMessagesAddTextBody, type AgentsExecutionUtilGetDatetimeCompletedDetails, type AgentsExecutionUtilGetDatetimeStartedDetails, type AgentsExecutionWarmupTriggerContext, 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 AgentsProfileFingerprintIdInput, 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 AgentsScheduledExecutionBase, type AgentsScheduledExecutionListFilterAgentId, type AgentsScheduledExecutionListFilterBatchId, type AgentsScheduledExecutionListFilterOrder, type AgentsScheduledExecutionListFilterStatus, type AgentsScheduledExecutionListFilterWorkflowId, type AgentsScheduledExecutionStatus, type AgentsSchemaValidateSchemaRequest, type AgentsSchemaValidateSchemaResponse, type AgentsWorkflowBrowserProvider, type AgentsWorkflowBrowserTemplateConfig, type AgentsWorkflowCreateWorkflowResponse, type AgentsWorkflowEnvironmentType, type AgentsWorkflowExecuteWorkflowRequest, type AgentsWorkflowExecuteWorkflowResponse, type AgentsWorkflowExternalCreateWorkflowRequest, type AgentsWorkflowExternalEnvironmentTemplate, type AgentsWorkflowExternalOsTemplateConfig, type AgentsWorkflowExternalWorkflowSnapshot, type AgentsWorkflowInput, type AgentsWorkflowOsProvider, type AgentsWorkflowOsRegion, type AgentsWorkflowOsType, type AgentsWorkflowPublishWorkflowResponse, type AgentsWorkflowWorkflowFile, type AgentsWorkflowWorkflowFileContentsMode, type AgentsWorkflowWorkflowFileEntry, type AgentsWorkflowWorkflowFileKind, type AgentsWorkflowWorkflowFileTree, type AgentsWorkflowWorkflowFileWrite, type AgentsWorkflowWorkflowFilesPatchRequest, type AgentsWorkflowWorkflowInputs, type AgentsWorkflowWorkflowOutputSchemas, type AgentsWorkflowWorkflowRef, type AgentsWorkflowWorkflowValidationIssue, type AgentsWorkflowWorkflowValidationResponse, type AgentsWorkflowWorkflowValidationSeverity, type AvailableToolsListData, type AvailableToolsListError, type AvailableToolsListErrors, type AvailableToolsListResponse, type AvailableToolsListResponses, type ClientOptions, type CommonBadRequestErrorBody, type CommonConflictErrorBody, type CommonError, type CommonForbiddenErrorBody, type CommonInternalServerErrorBody, type CommonNotFoundErrorBody, type CommonOsError, type CommonPaginationPage, type CommonPaginationPageSize, type CommonPaymentRequiredErrorBody, type CommonSortDirection, type CommonUnauthorizedErrorBody, type CommonUuid, type ContextGetData, type ContextGetError, type ContextGetErrors, type ContextGetResponse, type ContextGetResponses, type CreateClientConfig, type DocsSearchSearchData, type DocsSearchSearchError, type DocsSearchSearchErrors, type DocsSearchSearchResponse, type DocsSearchSearchResponses, type EnvironmentByIdGetData, type EnvironmentByIdGetError, type EnvironmentByIdGetErrors, type EnvironmentByIdGetResponse, type EnvironmentByIdGetResponses, type EnvironmentByIdStopData, type EnvironmentByIdStopError, type EnvironmentByIdStopErrors, type EnvironmentByIdStopResponse, type EnvironmentByIdStopResponses, type EnvironmentsListData, type EnvironmentsListError, type EnvironmentsListErrors, type EnvironmentsListResponse, type EnvironmentsListResponses, type EnvironmentsStartData, type EnvironmentsStartError, type EnvironmentsStartErrors, type EnvironmentsStartResponse, type EnvironmentsStartResponses, type ExecutionActivitiesGetData, type ExecutionActivitiesGetError, type ExecutionActivitiesGetErrors, type ExecutionActivitiesGetResponse, type ExecutionActivitiesGetResponses, type ExecutionAgentFileDownloadRedirectData, type ExecutionAgentFileDownloadRedirectError, type ExecutionAgentFileDownloadRedirectErrors, type ExecutionAgentFilesGetData, type ExecutionAgentFilesGetError, type ExecutionAgentFilesGetErrors, type ExecutionAgentFilesGetResponse, type ExecutionAgentFilesGetResponses, type ExecutionBatchCancelData, type ExecutionBatchCancelError, type ExecutionBatchCancelErrors, type ExecutionBatchCancelResponse, type ExecutionBatchCancelResponses, type ExecutionBatchGetData, type ExecutionBatchGetError, type ExecutionBatchGetErrors, type ExecutionBatchGetResponse, type ExecutionBatchGetResponses, type ExecutionBatchPauseData, type ExecutionBatchPauseError, type ExecutionBatchPauseErrors, type ExecutionBatchPauseResponse, type ExecutionBatchPauseResponses, type ExecutionBatchResumeData, type ExecutionBatchResumeError, type ExecutionBatchResumeErrors, type ExecutionBatchResumeResponse, type ExecutionBatchResumeResponses, type ExecutionBatchesCreateData, type ExecutionBatchesCreateError, type ExecutionBatchesCreateErrors, type ExecutionBatchesCreateResponse, type ExecutionBatchesCreateResponses, type ExecutionBatchesListData, type ExecutionBatchesListError, type ExecutionBatchesListErrors, type ExecutionBatchesListResponse, type ExecutionBatchesListResponses, 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 ScheduledExecutionsListData, type ScheduledExecutionsListError, type ScheduledExecutionsListErrors, type ScheduledExecutionsListResponse, type ScheduledExecutionsListResponses, type SchemaValidationValidateData, type SchemaValidationValidateError, type SchemaValidationValidateErrors, type SchemaValidationValidateResponse, type SchemaValidationValidateResponses, type TempFilesStageData, type TempFilesStageError, type TempFilesStageErrors, type TempFilesStageResponse, type TempFilesStageResponses, type WorkflowSpecValidationValidateData, type WorkflowSpecValidationValidateError, type WorkflowSpecValidationValidateErrors, type WorkflowSpecValidationValidateResponse, type WorkflowSpecValidationValidateResponses, 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, agentWorkflowHeadGetFiles, agentWorkflowHeadPatchFiles, agentWorkflowHeadPublishHead, agentWorkflowsCreate, agentWorkflowsDeleteWorkflow, agentWorkflowsExecute, agentWorkflowsGet, agentWorkflowsGetFilesByVersion, agentWorkflowsGetInputs, agentWorkflowsGetOutputSchemas, agentWorkflowsList, agentWorkflowsPublish, agentWorkflowsValidate, availableToolsList, client, contextGet, docsSearchSearch, environmentByIdGet, environmentByIdStop, environmentsList, environmentsStart, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionBatchCancel, executionBatchGet, executionBatchPause, executionBatchResume, executionBatchesCreate, executionBatchesList, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, scheduledExecutionsList, schemaValidationValidate, tempFilesStage, workflowSpecValidationValidate };