asteroid-odyssey 1.7.439 → 1.7.442
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 +8 -542
- package/dist/index.d.ts +8 -542
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +3 -1
package/dist/index.d.mts
CHANGED
|
@@ -2329,6 +2329,12 @@ type AgentsFilesFile = {
|
|
|
2329
2329
|
signedUrl: string;
|
|
2330
2330
|
};
|
|
2331
2331
|
type AgentsFilesFilePart = Blob | File;
|
|
2332
|
+
/**
|
|
2333
|
+
* Response containing a short-lived signed URL for direct file download from storage
|
|
2334
|
+
*/
|
|
2335
|
+
type AgentsFilesSignedUrlResponse = {
|
|
2336
|
+
url: string;
|
|
2337
|
+
};
|
|
2332
2338
|
type AgentsFilesTempFile = {
|
|
2333
2339
|
id: CommonUuid;
|
|
2334
2340
|
name: string;
|
|
@@ -3825,6 +3831,7 @@ type CommonUnauthorizedErrorBody = {
|
|
|
3825
3831
|
message: string;
|
|
3826
3832
|
};
|
|
3827
3833
|
type CommonUuid = string;
|
|
3834
|
+
type Version = "v1";
|
|
3828
3835
|
type AgentsAgentSearch = string;
|
|
3829
3836
|
/**
|
|
3830
3837
|
* Filter by agent ID
|
|
@@ -5733,429 +5740,6 @@ type DocsSearchSearchResponses = {
|
|
|
5733
5740
|
200: AgentsDocsSearchDocsResponse;
|
|
5734
5741
|
};
|
|
5735
5742
|
type DocsSearchSearchResponse = DocsSearchSearchResponses[keyof DocsSearchSearchResponses];
|
|
5736
|
-
type EnvironmentsListData = {
|
|
5737
|
-
body?: never;
|
|
5738
|
-
path?: never;
|
|
5739
|
-
query: {
|
|
5740
|
-
/**
|
|
5741
|
-
* The organisation whose environments to list. The caller must belong to it.
|
|
5742
|
-
*/
|
|
5743
|
-
organizationId: CommonUuid;
|
|
5744
|
-
/**
|
|
5745
|
-
* Only environments bound to this agent. Omit for every standalone environment in the organisation, the agentless ones included.
|
|
5746
|
-
*/
|
|
5747
|
-
agentId?: CommonUuid;
|
|
5748
|
-
/**
|
|
5749
|
-
* Which lifecycle states to return. Omit for running environments only.
|
|
5750
|
-
*/
|
|
5751
|
-
lifecycle?: AgentsEnvironmentEnvironmentLifecycle;
|
|
5752
|
-
};
|
|
5753
|
-
url: "/environments";
|
|
5754
|
-
};
|
|
5755
|
-
type EnvironmentsListErrors = {
|
|
5756
|
-
/**
|
|
5757
|
-
* The server could not understand the request due to invalid syntax.
|
|
5758
|
-
*/
|
|
5759
|
-
400: CommonBadRequestErrorBody;
|
|
5760
|
-
/**
|
|
5761
|
-
* Access is unauthorized.
|
|
5762
|
-
*/
|
|
5763
|
-
401: CommonUnauthorizedErrorBody;
|
|
5764
|
-
/**
|
|
5765
|
-
* Access is forbidden.
|
|
5766
|
-
*/
|
|
5767
|
-
403: CommonForbiddenErrorBody;
|
|
5768
|
-
/**
|
|
5769
|
-
* The server cannot find the requested resource.
|
|
5770
|
-
*/
|
|
5771
|
-
404: CommonNotFoundErrorBody;
|
|
5772
|
-
/**
|
|
5773
|
-
* Server error
|
|
5774
|
-
*/
|
|
5775
|
-
500: CommonInternalServerErrorBody;
|
|
5776
|
-
};
|
|
5777
|
-
type EnvironmentsListError = EnvironmentsListErrors[keyof EnvironmentsListErrors];
|
|
5778
|
-
type EnvironmentsListResponses = {
|
|
5779
|
-
/**
|
|
5780
|
-
* The request has succeeded.
|
|
5781
|
-
*/
|
|
5782
|
-
200: AgentsEnvironmentListEnvironmentsResponse;
|
|
5783
|
-
};
|
|
5784
|
-
type EnvironmentsListResponse = EnvironmentsListResponses[keyof EnvironmentsListResponses];
|
|
5785
|
-
type EnvironmentsStartData = {
|
|
5786
|
-
body: AgentsEnvironmentStartEnvironmentRequest;
|
|
5787
|
-
path?: never;
|
|
5788
|
-
query?: never;
|
|
5789
|
-
url: "/environments";
|
|
5790
|
-
};
|
|
5791
|
-
type EnvironmentsStartErrors = {
|
|
5792
|
-
/**
|
|
5793
|
-
* The server could not understand the request due to invalid syntax.
|
|
5794
|
-
*/
|
|
5795
|
-
400: CommonBadRequestErrorBody;
|
|
5796
|
-
/**
|
|
5797
|
-
* Access is unauthorized.
|
|
5798
|
-
*/
|
|
5799
|
-
401: CommonUnauthorizedErrorBody;
|
|
5800
|
-
/**
|
|
5801
|
-
* Access is forbidden.
|
|
5802
|
-
*/
|
|
5803
|
-
403: CommonForbiddenErrorBody;
|
|
5804
|
-
/**
|
|
5805
|
-
* The server cannot find the requested resource.
|
|
5806
|
-
*/
|
|
5807
|
-
404: CommonNotFoundErrorBody;
|
|
5808
|
-
/**
|
|
5809
|
-
* Client error
|
|
5810
|
-
*/
|
|
5811
|
-
429: CommonTooManyRequestsErrorBody;
|
|
5812
|
-
/**
|
|
5813
|
-
* Server error
|
|
5814
|
-
*/
|
|
5815
|
-
500: CommonInternalServerErrorBody;
|
|
5816
|
-
};
|
|
5817
|
-
type EnvironmentsStartError = EnvironmentsStartErrors[keyof EnvironmentsStartErrors];
|
|
5818
|
-
type EnvironmentsStartResponses = {
|
|
5819
|
-
/**
|
|
5820
|
-
* The request has succeeded.
|
|
5821
|
-
*/
|
|
5822
|
-
200: AgentsEnvironmentEnvironment;
|
|
5823
|
-
};
|
|
5824
|
-
type EnvironmentsStartResponse = EnvironmentsStartResponses[keyof EnvironmentsStartResponses];
|
|
5825
|
-
type EnvironmentByIdGetData = {
|
|
5826
|
-
body?: never;
|
|
5827
|
-
path: {
|
|
5828
|
-
/**
|
|
5829
|
-
* The environment to read.
|
|
5830
|
-
*/
|
|
5831
|
-
environmentId: CommonUuid;
|
|
5832
|
-
};
|
|
5833
|
-
query?: never;
|
|
5834
|
-
url: "/environments/{environmentId}";
|
|
5835
|
-
};
|
|
5836
|
-
type EnvironmentByIdGetErrors = {
|
|
5837
|
-
/**
|
|
5838
|
-
* The server could not understand the request due to invalid syntax.
|
|
5839
|
-
*/
|
|
5840
|
-
400: CommonBadRequestErrorBody;
|
|
5841
|
-
/**
|
|
5842
|
-
* Access is unauthorized.
|
|
5843
|
-
*/
|
|
5844
|
-
401: CommonUnauthorizedErrorBody;
|
|
5845
|
-
/**
|
|
5846
|
-
* Access is forbidden.
|
|
5847
|
-
*/
|
|
5848
|
-
403: CommonForbiddenErrorBody;
|
|
5849
|
-
/**
|
|
5850
|
-
* The server cannot find the requested resource.
|
|
5851
|
-
*/
|
|
5852
|
-
404: CommonNotFoundErrorBody;
|
|
5853
|
-
/**
|
|
5854
|
-
* Server error
|
|
5855
|
-
*/
|
|
5856
|
-
500: CommonInternalServerErrorBody;
|
|
5857
|
-
};
|
|
5858
|
-
type EnvironmentByIdGetError = EnvironmentByIdGetErrors[keyof EnvironmentByIdGetErrors];
|
|
5859
|
-
type EnvironmentByIdGetResponses = {
|
|
5860
|
-
/**
|
|
5861
|
-
* The request has succeeded.
|
|
5862
|
-
*/
|
|
5863
|
-
200: AgentsEnvironmentEnvironment;
|
|
5864
|
-
};
|
|
5865
|
-
type EnvironmentByIdGetResponse = EnvironmentByIdGetResponses[keyof EnvironmentByIdGetResponses];
|
|
5866
|
-
type EnvironmentByIdStopData = {
|
|
5867
|
-
body?: never;
|
|
5868
|
-
path: {
|
|
5869
|
-
/**
|
|
5870
|
-
* The environment to stop.
|
|
5871
|
-
*/
|
|
5872
|
-
environmentId: CommonUuid;
|
|
5873
|
-
};
|
|
5874
|
-
query?: never;
|
|
5875
|
-
url: "/environments/{environmentId}/stop";
|
|
5876
|
-
};
|
|
5877
|
-
type EnvironmentByIdStopErrors = {
|
|
5878
|
-
/**
|
|
5879
|
-
* The server could not understand the request due to invalid syntax.
|
|
5880
|
-
*/
|
|
5881
|
-
400: CommonBadRequestErrorBody;
|
|
5882
|
-
/**
|
|
5883
|
-
* Access is unauthorized.
|
|
5884
|
-
*/
|
|
5885
|
-
401: CommonUnauthorizedErrorBody;
|
|
5886
|
-
/**
|
|
5887
|
-
* Access is forbidden.
|
|
5888
|
-
*/
|
|
5889
|
-
403: CommonForbiddenErrorBody;
|
|
5890
|
-
/**
|
|
5891
|
-
* The server cannot find the requested resource.
|
|
5892
|
-
*/
|
|
5893
|
-
404: CommonNotFoundErrorBody;
|
|
5894
|
-
/**
|
|
5895
|
-
* Server error
|
|
5896
|
-
*/
|
|
5897
|
-
500: CommonInternalServerErrorBody;
|
|
5898
|
-
};
|
|
5899
|
-
type EnvironmentByIdStopError = EnvironmentByIdStopErrors[keyof EnvironmentByIdStopErrors];
|
|
5900
|
-
type EnvironmentByIdStopResponses = {
|
|
5901
|
-
/**
|
|
5902
|
-
* There is no content to send for this request, but the headers may be useful.
|
|
5903
|
-
*/
|
|
5904
|
-
204: void;
|
|
5905
|
-
};
|
|
5906
|
-
type EnvironmentByIdStopResponse = EnvironmentByIdStopResponses[keyof EnvironmentByIdStopResponses];
|
|
5907
|
-
type ExecutionBatchesListData = {
|
|
5908
|
-
body?: never;
|
|
5909
|
-
path?: never;
|
|
5910
|
-
query: {
|
|
5911
|
-
/**
|
|
5912
|
-
* Filter by agent ID
|
|
5913
|
-
*/
|
|
5914
|
-
agentId: CommonUuid;
|
|
5915
|
-
/**
|
|
5916
|
-
* Filter by batch status
|
|
5917
|
-
*/
|
|
5918
|
-
status?: AgentsExecutionBatchStatus;
|
|
5919
|
-
pageSize?: number;
|
|
5920
|
-
page?: number;
|
|
5921
|
-
};
|
|
5922
|
-
url: "/execution-batches";
|
|
5923
|
-
};
|
|
5924
|
-
type ExecutionBatchesListErrors = {
|
|
5925
|
-
/**
|
|
5926
|
-
* The server could not understand the request due to invalid syntax.
|
|
5927
|
-
*/
|
|
5928
|
-
400: CommonBadRequestErrorBody;
|
|
5929
|
-
/**
|
|
5930
|
-
* Access is unauthorized.
|
|
5931
|
-
*/
|
|
5932
|
-
401: CommonUnauthorizedErrorBody;
|
|
5933
|
-
/**
|
|
5934
|
-
* Access is forbidden.
|
|
5935
|
-
*/
|
|
5936
|
-
403: CommonForbiddenErrorBody;
|
|
5937
|
-
/**
|
|
5938
|
-
* The server cannot find the requested resource.
|
|
5939
|
-
*/
|
|
5940
|
-
404: CommonNotFoundErrorBody;
|
|
5941
|
-
/**
|
|
5942
|
-
* Server error
|
|
5943
|
-
*/
|
|
5944
|
-
500: CommonInternalServerErrorBody;
|
|
5945
|
-
};
|
|
5946
|
-
type ExecutionBatchesListError = ExecutionBatchesListErrors[keyof ExecutionBatchesListErrors];
|
|
5947
|
-
type ExecutionBatchesListResponses = {
|
|
5948
|
-
/**
|
|
5949
|
-
* The request has succeeded.
|
|
5950
|
-
*/
|
|
5951
|
-
200: {
|
|
5952
|
-
items: Array<AgentsExecutionBatchBase>;
|
|
5953
|
-
page: number;
|
|
5954
|
-
pageSize: number;
|
|
5955
|
-
total: number;
|
|
5956
|
-
};
|
|
5957
|
-
};
|
|
5958
|
-
type ExecutionBatchesListResponse = ExecutionBatchesListResponses[keyof ExecutionBatchesListResponses];
|
|
5959
|
-
type ExecutionBatchesCreateData = {
|
|
5960
|
-
body: AgentsExecutionBatchCreateRequest;
|
|
5961
|
-
path?: never;
|
|
5962
|
-
query?: never;
|
|
5963
|
-
url: "/execution-batches";
|
|
5964
|
-
};
|
|
5965
|
-
type ExecutionBatchesCreateErrors = {
|
|
5966
|
-
/**
|
|
5967
|
-
* The server could not understand the request due to invalid syntax.
|
|
5968
|
-
*/
|
|
5969
|
-
400: CommonBadRequestErrorBody;
|
|
5970
|
-
/**
|
|
5971
|
-
* Access is unauthorized.
|
|
5972
|
-
*/
|
|
5973
|
-
401: CommonUnauthorizedErrorBody;
|
|
5974
|
-
/**
|
|
5975
|
-
* Access is forbidden.
|
|
5976
|
-
*/
|
|
5977
|
-
403: CommonForbiddenErrorBody;
|
|
5978
|
-
/**
|
|
5979
|
-
* The server cannot find the requested resource.
|
|
5980
|
-
*/
|
|
5981
|
-
404: CommonNotFoundErrorBody;
|
|
5982
|
-
/**
|
|
5983
|
-
* Server error
|
|
5984
|
-
*/
|
|
5985
|
-
500: CommonInternalServerErrorBody;
|
|
5986
|
-
};
|
|
5987
|
-
type ExecutionBatchesCreateError = ExecutionBatchesCreateErrors[keyof ExecutionBatchesCreateErrors];
|
|
5988
|
-
type ExecutionBatchesCreateResponses = {
|
|
5989
|
-
/**
|
|
5990
|
-
* The request has succeeded and a new resource has been created as a result.
|
|
5991
|
-
*/
|
|
5992
|
-
201: AgentsExecutionBatchBase;
|
|
5993
|
-
};
|
|
5994
|
-
type ExecutionBatchesCreateResponse = ExecutionBatchesCreateResponses[keyof ExecutionBatchesCreateResponses];
|
|
5995
|
-
type ExecutionBatchGetData = {
|
|
5996
|
-
body?: never;
|
|
5997
|
-
path: {
|
|
5998
|
-
/**
|
|
5999
|
-
* The unique identifier of the execution batch
|
|
6000
|
-
*/
|
|
6001
|
-
batchId: CommonUuid;
|
|
6002
|
-
};
|
|
6003
|
-
query?: never;
|
|
6004
|
-
url: "/execution-batches/{batchId}";
|
|
6005
|
-
};
|
|
6006
|
-
type ExecutionBatchGetErrors = {
|
|
6007
|
-
/**
|
|
6008
|
-
* The server could not understand the request due to invalid syntax.
|
|
6009
|
-
*/
|
|
6010
|
-
400: CommonBadRequestErrorBody;
|
|
6011
|
-
/**
|
|
6012
|
-
* Access is unauthorized.
|
|
6013
|
-
*/
|
|
6014
|
-
401: CommonUnauthorizedErrorBody;
|
|
6015
|
-
/**
|
|
6016
|
-
* Access is forbidden.
|
|
6017
|
-
*/
|
|
6018
|
-
403: CommonForbiddenErrorBody;
|
|
6019
|
-
/**
|
|
6020
|
-
* The server cannot find the requested resource.
|
|
6021
|
-
*/
|
|
6022
|
-
404: CommonNotFoundErrorBody;
|
|
6023
|
-
/**
|
|
6024
|
-
* Server error
|
|
6025
|
-
*/
|
|
6026
|
-
500: CommonInternalServerErrorBody;
|
|
6027
|
-
};
|
|
6028
|
-
type ExecutionBatchGetError = ExecutionBatchGetErrors[keyof ExecutionBatchGetErrors];
|
|
6029
|
-
type ExecutionBatchGetResponses = {
|
|
6030
|
-
/**
|
|
6031
|
-
* The request has succeeded.
|
|
6032
|
-
*/
|
|
6033
|
-
200: AgentsExecutionBatchBase;
|
|
6034
|
-
};
|
|
6035
|
-
type ExecutionBatchGetResponse = ExecutionBatchGetResponses[keyof ExecutionBatchGetResponses];
|
|
6036
|
-
type ExecutionBatchCancelData = {
|
|
6037
|
-
body?: never;
|
|
6038
|
-
path: {
|
|
6039
|
-
/**
|
|
6040
|
-
* The unique identifier of the execution batch
|
|
6041
|
-
*/
|
|
6042
|
-
batchId: CommonUuid;
|
|
6043
|
-
};
|
|
6044
|
-
query?: never;
|
|
6045
|
-
url: "/execution-batches/{batchId}/cancel";
|
|
6046
|
-
};
|
|
6047
|
-
type ExecutionBatchCancelErrors = {
|
|
6048
|
-
/**
|
|
6049
|
-
* The server could not understand the request due to invalid syntax.
|
|
6050
|
-
*/
|
|
6051
|
-
400: CommonBadRequestErrorBody;
|
|
6052
|
-
/**
|
|
6053
|
-
* Access is unauthorized.
|
|
6054
|
-
*/
|
|
6055
|
-
401: CommonUnauthorizedErrorBody;
|
|
6056
|
-
/**
|
|
6057
|
-
* Access is forbidden.
|
|
6058
|
-
*/
|
|
6059
|
-
403: CommonForbiddenErrorBody;
|
|
6060
|
-
/**
|
|
6061
|
-
* The server cannot find the requested resource.
|
|
6062
|
-
*/
|
|
6063
|
-
404: CommonNotFoundErrorBody;
|
|
6064
|
-
/**
|
|
6065
|
-
* Server error
|
|
6066
|
-
*/
|
|
6067
|
-
500: CommonInternalServerErrorBody;
|
|
6068
|
-
};
|
|
6069
|
-
type ExecutionBatchCancelError = ExecutionBatchCancelErrors[keyof ExecutionBatchCancelErrors];
|
|
6070
|
-
type ExecutionBatchCancelResponses = {
|
|
6071
|
-
/**
|
|
6072
|
-
* The request has succeeded.
|
|
6073
|
-
*/
|
|
6074
|
-
200: AgentsExecutionBatchBase;
|
|
6075
|
-
};
|
|
6076
|
-
type ExecutionBatchCancelResponse = ExecutionBatchCancelResponses[keyof ExecutionBatchCancelResponses];
|
|
6077
|
-
type ExecutionBatchPauseData = {
|
|
6078
|
-
body?: never;
|
|
6079
|
-
path: {
|
|
6080
|
-
/**
|
|
6081
|
-
* The unique identifier of the execution batch
|
|
6082
|
-
*/
|
|
6083
|
-
batchId: CommonUuid;
|
|
6084
|
-
};
|
|
6085
|
-
query?: never;
|
|
6086
|
-
url: "/execution-batches/{batchId}/pause";
|
|
6087
|
-
};
|
|
6088
|
-
type ExecutionBatchPauseErrors = {
|
|
6089
|
-
/**
|
|
6090
|
-
* The server could not understand the request due to invalid syntax.
|
|
6091
|
-
*/
|
|
6092
|
-
400: CommonBadRequestErrorBody;
|
|
6093
|
-
/**
|
|
6094
|
-
* Access is unauthorized.
|
|
6095
|
-
*/
|
|
6096
|
-
401: CommonUnauthorizedErrorBody;
|
|
6097
|
-
/**
|
|
6098
|
-
* Access is forbidden.
|
|
6099
|
-
*/
|
|
6100
|
-
403: CommonForbiddenErrorBody;
|
|
6101
|
-
/**
|
|
6102
|
-
* The server cannot find the requested resource.
|
|
6103
|
-
*/
|
|
6104
|
-
404: CommonNotFoundErrorBody;
|
|
6105
|
-
/**
|
|
6106
|
-
* Server error
|
|
6107
|
-
*/
|
|
6108
|
-
500: CommonInternalServerErrorBody;
|
|
6109
|
-
};
|
|
6110
|
-
type ExecutionBatchPauseError = ExecutionBatchPauseErrors[keyof ExecutionBatchPauseErrors];
|
|
6111
|
-
type ExecutionBatchPauseResponses = {
|
|
6112
|
-
/**
|
|
6113
|
-
* The request has succeeded.
|
|
6114
|
-
*/
|
|
6115
|
-
200: AgentsExecutionBatchBase;
|
|
6116
|
-
};
|
|
6117
|
-
type ExecutionBatchPauseResponse = ExecutionBatchPauseResponses[keyof ExecutionBatchPauseResponses];
|
|
6118
|
-
type ExecutionBatchResumeData = {
|
|
6119
|
-
body?: never;
|
|
6120
|
-
path: {
|
|
6121
|
-
/**
|
|
6122
|
-
* The unique identifier of the execution batch
|
|
6123
|
-
*/
|
|
6124
|
-
batchId: CommonUuid;
|
|
6125
|
-
};
|
|
6126
|
-
query?: never;
|
|
6127
|
-
url: "/execution-batches/{batchId}/resume";
|
|
6128
|
-
};
|
|
6129
|
-
type ExecutionBatchResumeErrors = {
|
|
6130
|
-
/**
|
|
6131
|
-
* The server could not understand the request due to invalid syntax.
|
|
6132
|
-
*/
|
|
6133
|
-
400: CommonBadRequestErrorBody;
|
|
6134
|
-
/**
|
|
6135
|
-
* Access is unauthorized.
|
|
6136
|
-
*/
|
|
6137
|
-
401: CommonUnauthorizedErrorBody;
|
|
6138
|
-
/**
|
|
6139
|
-
* Access is forbidden.
|
|
6140
|
-
*/
|
|
6141
|
-
403: CommonForbiddenErrorBody;
|
|
6142
|
-
/**
|
|
6143
|
-
* The server cannot find the requested resource.
|
|
6144
|
-
*/
|
|
6145
|
-
404: CommonNotFoundErrorBody;
|
|
6146
|
-
/**
|
|
6147
|
-
* Server error
|
|
6148
|
-
*/
|
|
6149
|
-
500: CommonInternalServerErrorBody;
|
|
6150
|
-
};
|
|
6151
|
-
type ExecutionBatchResumeError = ExecutionBatchResumeErrors[keyof ExecutionBatchResumeErrors];
|
|
6152
|
-
type ExecutionBatchResumeResponses = {
|
|
6153
|
-
/**
|
|
6154
|
-
* The request has succeeded.
|
|
6155
|
-
*/
|
|
6156
|
-
200: AgentsExecutionBatchBase;
|
|
6157
|
-
};
|
|
6158
|
-
type ExecutionBatchResumeResponse = ExecutionBatchResumeResponses[keyof ExecutionBatchResumeResponses];
|
|
6159
5743
|
type ExecutionsListData = {
|
|
6160
5744
|
body?: never;
|
|
6161
5745
|
path?: never;
|
|
@@ -6646,58 +6230,6 @@ type ExecutionUserMessagesAddResponses = {
|
|
|
6646
6230
|
201: "User message added.";
|
|
6647
6231
|
};
|
|
6648
6232
|
type ExecutionUserMessagesAddResponse = ExecutionUserMessagesAddResponses[keyof ExecutionUserMessagesAddResponses];
|
|
6649
|
-
type ScheduledExecutionsListData = {
|
|
6650
|
-
body?: never;
|
|
6651
|
-
path?: never;
|
|
6652
|
-
query: {
|
|
6653
|
-
agentId: CommonUuid;
|
|
6654
|
-
workflowId?: CommonUuid;
|
|
6655
|
-
status?: AgentsScheduledExecutionStatus;
|
|
6656
|
-
batchId?: CommonUuid;
|
|
6657
|
-
/**
|
|
6658
|
-
* Sort order for scheduled executions by execute_at timestamp
|
|
6659
|
-
*/
|
|
6660
|
-
order?: "asc" | "desc";
|
|
6661
|
-
pageSize?: number;
|
|
6662
|
-
page?: number;
|
|
6663
|
-
};
|
|
6664
|
-
url: "/scheduled-executions";
|
|
6665
|
-
};
|
|
6666
|
-
type ScheduledExecutionsListErrors = {
|
|
6667
|
-
/**
|
|
6668
|
-
* The server could not understand the request due to invalid syntax.
|
|
6669
|
-
*/
|
|
6670
|
-
400: CommonBadRequestErrorBody;
|
|
6671
|
-
/**
|
|
6672
|
-
* Access is unauthorized.
|
|
6673
|
-
*/
|
|
6674
|
-
401: CommonUnauthorizedErrorBody;
|
|
6675
|
-
/**
|
|
6676
|
-
* Access is forbidden.
|
|
6677
|
-
*/
|
|
6678
|
-
403: CommonForbiddenErrorBody;
|
|
6679
|
-
/**
|
|
6680
|
-
* The server cannot find the requested resource.
|
|
6681
|
-
*/
|
|
6682
|
-
404: CommonNotFoundErrorBody;
|
|
6683
|
-
/**
|
|
6684
|
-
* Server error
|
|
6685
|
-
*/
|
|
6686
|
-
500: CommonInternalServerErrorBody;
|
|
6687
|
-
};
|
|
6688
|
-
type ScheduledExecutionsListError = ScheduledExecutionsListErrors[keyof ScheduledExecutionsListErrors];
|
|
6689
|
-
type ScheduledExecutionsListResponses = {
|
|
6690
|
-
/**
|
|
6691
|
-
* The request has succeeded.
|
|
6692
|
-
*/
|
|
6693
|
-
200: {
|
|
6694
|
-
items: Array<AgentsScheduledExecutionBase>;
|
|
6695
|
-
page: number;
|
|
6696
|
-
pageSize: number;
|
|
6697
|
-
total: number;
|
|
6698
|
-
};
|
|
6699
|
-
};
|
|
6700
|
-
type ScheduledExecutionsListResponse = ScheduledExecutionsListResponses[keyof ScheduledExecutionsListResponses];
|
|
6701
6233
|
type SchemaValidationValidateData = {
|
|
6702
6234
|
/**
|
|
6703
6235
|
* The schema to validate
|
|
@@ -7079,66 +6611,6 @@ declare const contextGet: <ThrowOnError extends boolean = false>(options?: Optio
|
|
|
7079
6611
|
* Search Asteroid documentation for guides on building agents, node types, and best practices
|
|
7080
6612
|
*/
|
|
7081
6613
|
declare const docsSearchSearch: <ThrowOnError extends boolean = false>(options: Options<DocsSearchSearchData, ThrowOnError>) => RequestResult<DocsSearchSearchResponses, DocsSearchSearchErrors, ThrowOnError>;
|
|
7082
|
-
/**
|
|
7083
|
-
* List environments
|
|
7084
|
-
*
|
|
7085
|
-
* List an organisation's standalone environments, newest first — both agent-bound and organization-owned. Those owned by an execution or an astro conversation are private to those owners. Terminal environments are excluded unless `lifecycle` says otherwise.
|
|
7086
|
-
*/
|
|
7087
|
-
declare const environmentsList: <ThrowOnError extends boolean = false>(options: Options<EnvironmentsListData, ThrowOnError>) => RequestResult<EnvironmentsListResponses, EnvironmentsListErrors, ThrowOnError>;
|
|
7088
|
-
/**
|
|
7089
|
-
* Start environment
|
|
7090
|
-
*
|
|
7091
|
-
* 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 organisation in the body is the scope; the agent, when given, is a binding the server verifies belongs to it.
|
|
7092
|
-
*/
|
|
7093
|
-
declare const environmentsStart: <ThrowOnError extends boolean = false>(options: Options<EnvironmentsStartData, ThrowOnError>) => RequestResult<EnvironmentsStartResponses, EnvironmentsStartErrors, ThrowOnError>;
|
|
7094
|
-
/**
|
|
7095
|
-
* Get environment
|
|
7096
|
-
*
|
|
7097
|
-
* Read an environment, including the provider state the live view renders from. Terminal environments are returned too, so the caller can play the recording.
|
|
7098
|
-
*/
|
|
7099
|
-
declare const environmentByIdGet: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdGetData, ThrowOnError>) => RequestResult<EnvironmentByIdGetResponses, EnvironmentByIdGetErrors, ThrowOnError>;
|
|
7100
|
-
/**
|
|
7101
|
-
* Stop environment
|
|
7102
|
-
*
|
|
7103
|
-
* Stop an environment. Runs the full teardown (clean browser → persist recording → clean sandbox → mark stopped). Idempotent: an already-terminal environment is a no-op.
|
|
7104
|
-
*/
|
|
7105
|
-
declare const environmentByIdStop: <ThrowOnError extends boolean = false>(options: Options<EnvironmentByIdStopData, ThrowOnError>) => RequestResult<EnvironmentByIdStopResponses, EnvironmentByIdStopErrors, ThrowOnError>;
|
|
7106
|
-
/**
|
|
7107
|
-
* List execution batches
|
|
7108
|
-
*
|
|
7109
|
-
* List execution batches with filtering and pagination
|
|
7110
|
-
*/
|
|
7111
|
-
declare const executionBatchesList: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchesListData, ThrowOnError>) => RequestResult<ExecutionBatchesListResponses, ExecutionBatchesListErrors, ThrowOnError>;
|
|
7112
|
-
/**
|
|
7113
|
-
* Create execution batch
|
|
7114
|
-
*
|
|
7115
|
-
* Create a new execution batch with items and configuration
|
|
7116
|
-
*/
|
|
7117
|
-
declare const executionBatchesCreate: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchesCreateData, ThrowOnError>) => RequestResult<ExecutionBatchesCreateResponses, ExecutionBatchesCreateErrors, ThrowOnError>;
|
|
7118
|
-
/**
|
|
7119
|
-
* Get execution batch
|
|
7120
|
-
*
|
|
7121
|
-
* Get execution batch details with status counts
|
|
7122
|
-
*/
|
|
7123
|
-
declare const executionBatchGet: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchGetData, ThrowOnError>) => RequestResult<ExecutionBatchGetResponses, ExecutionBatchGetErrors, ThrowOnError>;
|
|
7124
|
-
/**
|
|
7125
|
-
* Cancel execution batch
|
|
7126
|
-
*
|
|
7127
|
-
* Cancel a batch and all its pending items
|
|
7128
|
-
*/
|
|
7129
|
-
declare const executionBatchCancel: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchCancelData, ThrowOnError>) => RequestResult<ExecutionBatchCancelResponses, ExecutionBatchCancelErrors, ThrowOnError>;
|
|
7130
|
-
/**
|
|
7131
|
-
* Pause execution batch
|
|
7132
|
-
*
|
|
7133
|
-
* Pause a running batch. Pending items will not be triggered while paused.
|
|
7134
|
-
*/
|
|
7135
|
-
declare const executionBatchPause: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchPauseData, ThrowOnError>) => RequestResult<ExecutionBatchPauseResponses, ExecutionBatchPauseErrors, ThrowOnError>;
|
|
7136
|
-
/**
|
|
7137
|
-
* Resume execution batch
|
|
7138
|
-
*
|
|
7139
|
-
* Resume a paused batch. ExecuteAt times will be recalculated from now.
|
|
7140
|
-
*/
|
|
7141
|
-
declare const executionBatchResume: <ThrowOnError extends boolean = false>(options: Options<ExecutionBatchResumeData, ThrowOnError>) => RequestResult<ExecutionBatchResumeResponses, ExecutionBatchResumeErrors, ThrowOnError>;
|
|
7142
6614
|
/**
|
|
7143
6615
|
* List executions
|
|
7144
6616
|
*
|
|
@@ -7227,12 +6699,6 @@ declare const executionStatusUpdate: <ThrowOnError extends boolean = false>(opti
|
|
|
7227
6699
|
* Add a user message to an execution
|
|
7228
6700
|
*/
|
|
7229
6701
|
declare const executionUserMessagesAdd: <ThrowOnError extends boolean = false>(options: Options<ExecutionUserMessagesAddData, ThrowOnError>) => RequestResult<ExecutionUserMessagesAddResponses, ExecutionUserMessagesAddErrors, ThrowOnError>;
|
|
7230
|
-
/**
|
|
7231
|
-
* List scheduled executions
|
|
7232
|
-
*
|
|
7233
|
-
* List scheduled executions with filtering and pagination
|
|
7234
|
-
*/
|
|
7235
|
-
declare const scheduledExecutionsList: <ThrowOnError extends boolean = false>(options: Options<ScheduledExecutionsListData, ThrowOnError>) => RequestResult<ScheduledExecutionsListResponses, ScheduledExecutionsListErrors, ThrowOnError>;
|
|
7236
6702
|
/**
|
|
7237
6703
|
* Validate schema
|
|
7238
6704
|
*
|
|
@@ -7252,4 +6718,4 @@ declare const tempFilesStage: <ThrowOnError extends boolean = false>(options: Op
|
|
|
7252
6718
|
*/
|
|
7253
6719
|
declare const workflowSpecValidationValidate: <ThrowOnError extends boolean = false>(options: Options<WorkflowSpecValidationValidateData, ThrowOnError>) => RequestResult<WorkflowSpecValidationValidateResponses, WorkflowSpecValidationValidateErrors, ThrowOnError>;
|
|
7254
6720
|
|
|
7255
|
-
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 AgentsAgentOnCapacityLimit, 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 CommonTooManyRequestsErrorBody, 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 };
|
|
6721
|
+
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 AgentsAgentOnCapacityLimit, 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 AgentsFilesSignedUrlResponse, 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 CommonTooManyRequestsErrorBody, type CommonUnauthorizedErrorBody, type CommonUuid, type ContextGetData, type ContextGetError, type ContextGetErrors, type ContextGetResponse, type ContextGetResponses, type CreateClientConfig, type DocsSearchSearchData, type DocsSearchSearchError, type DocsSearchSearchErrors, type DocsSearchSearchResponse, type DocsSearchSearchResponses, type ExecutionActivitiesGetData, type ExecutionActivitiesGetError, type ExecutionActivitiesGetErrors, type ExecutionActivitiesGetResponse, type ExecutionActivitiesGetResponses, type ExecutionAgentFileDownloadRedirectData, type ExecutionAgentFileDownloadRedirectError, type ExecutionAgentFileDownloadRedirectErrors, type ExecutionAgentFilesGetData, type ExecutionAgentFilesGetError, type ExecutionAgentFilesGetErrors, type ExecutionAgentFilesGetResponse, type ExecutionAgentFilesGetResponses, type ExecutionContextFileDownloadRedirectData, type ExecutionContextFileDownloadRedirectError, type ExecutionContextFileDownloadRedirectErrors, type ExecutionContextFilesGetData, type ExecutionContextFilesGetError, type ExecutionContextFilesGetErrors, type ExecutionContextFilesGetResponse, type ExecutionContextFilesGetResponses, type ExecutionContextFilesUploadData, type ExecutionContextFilesUploadError, type ExecutionContextFilesUploadErrors, type ExecutionContextFilesUploadResponse, type ExecutionContextFilesUploadResponses, type ExecutionDebugFileDownloadRedirectData, type ExecutionDebugFileDownloadRedirectError, type ExecutionDebugFileDownloadRedirectErrors, type ExecutionFileDownloadRedirectData, type ExecutionFileDownloadRedirectError, type ExecutionFileDownloadRedirectErrors, type ExecutionFilesGetData, type ExecutionFilesGetError, type ExecutionFilesGetErrors, type ExecutionFilesGetResponse, type ExecutionFilesGetResponses, type ExecutionGetData, type ExecutionGetError, type ExecutionGetErrors, type ExecutionGetResponse, type ExecutionGetResponses, type ExecutionRecordingRedirectData, type ExecutionRecordingRedirectError, type ExecutionRecordingRedirectErrors, type ExecutionStatusUpdateData, type ExecutionStatusUpdateError, type ExecutionStatusUpdateErrors, type ExecutionStatusUpdateResponse, type ExecutionStatusUpdateResponses, type ExecutionUserMessagesAddData, type ExecutionUserMessagesAddError, type ExecutionUserMessagesAddErrors, type ExecutionUserMessagesAddResponse, type ExecutionUserMessagesAddResponses, type ExecutionsListData, type ExecutionsListError, type ExecutionsListErrors, type ExecutionsListResponse, type ExecutionsListResponses, type Options, type SchemaValidationValidateData, type SchemaValidationValidateError, type SchemaValidationValidateErrors, type SchemaValidationValidateResponse, type SchemaValidationValidateResponses, type TempFilesStageData, type TempFilesStageError, type TempFilesStageErrors, type TempFilesStageResponse, type TempFilesStageResponses, type Version, 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, executionActivitiesGet, executionAgentFileDownloadRedirect, executionAgentFilesGet, executionContextFileDownloadRedirect, executionContextFilesGet, executionContextFilesUpload, executionDebugFileDownloadRedirect, executionFileDownloadRedirect, executionFilesGet, executionGet, executionRecordingRedirect, executionStatusUpdate, executionUserMessagesAdd, executionsList, schemaValidationValidate, tempFilesStage, workflowSpecValidationValidate };
|