@stack-spot/portal-network 0.198.2 → 0.198.4
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/CHANGELOG.md +14 -0
- package/dist/api/agent-tools.d.ts +6 -0
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/agent.d.ts +55 -55
- package/dist/api/agent.d.ts.map +1 -1
- package/dist/api-addresses.d.ts.map +1 -1
- package/dist/client/account.d.ts +233 -233
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/agent-tools.d.ts +124 -124
- package/dist/client/agent-tools.d.ts.map +1 -1
- package/dist/client/agent-tools.js +10 -1
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/agent.d.ts +46 -46
- package/dist/client/agent.d.ts.map +1 -1
- package/dist/client/ai.d.ts +106 -106
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/api-management.d.ts +2 -2
- package/dist/client/cloud-account.d.ts +13 -13
- package/dist/client/cloud-platform-horizon.d.ts +19 -19
- package/dist/client/cloud-platform.d.ts +50 -50
- package/dist/client/cloud-runtimes.d.ts +4 -4
- package/dist/client/cloud-services.d.ts +17 -17
- package/dist/client/cloud-services.d.ts.map +1 -1
- package/dist/client/code-shift.d.ts +261 -261
- package/dist/client/content.d.ts +127 -132
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/data-integration.d.ts +55 -55
- package/dist/client/data-integration.d.ts.map +1 -1
- package/dist/client/discover.d.ts +8 -8
- package/dist/client/discover.d.ts.map +1 -1
- package/dist/client/event-bus.d.ts.map +1 -1
- package/dist/client/gen-ai-inference.d.ts +20 -20
- package/dist/client/insights.d.ts +7 -7
- package/dist/client/notification.d.ts +10 -10
- package/dist/client/runtime-manager.d.ts +8 -8
- package/dist/client/workflow.d.ts +10 -10
- package/dist/client/workspace-ai.d.ts +48 -48
- package/dist/client/workspace-manager.d.ts +77 -77
- package/dist/client/workspace-search.d.ts +2 -2
- package/dist/client/workspace.d.ts +58 -105
- package/dist/client/workspace.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api/agent-tools.ts +6 -0
- package/src/client/agent-tools.ts +10 -1
|
@@ -9,8 +9,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
9
9
|
* Generates a url to upload the file
|
|
10
10
|
*/
|
|
11
11
|
generateUrlToFileUpload: import("../network/types.js").MutationObject<Omit<{
|
|
12
|
-
xAccountId?: string | null
|
|
13
|
-
xUsername?: string | null
|
|
12
|
+
xAccountId?: string | null;
|
|
13
|
+
xUsername?: string | null;
|
|
14
14
|
authorization: string;
|
|
15
15
|
newFileUploadRequest: import("../api/dataIntegration.js").NewFileUploadRequest;
|
|
16
16
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").NewFileUploadFormResponse>;
|
|
@@ -19,8 +19,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
19
19
|
*/
|
|
20
20
|
getFileProcessingStatusById: import("../network/types.js").QueryObject<Omit<{
|
|
21
21
|
fileUploadId: string;
|
|
22
|
-
xAccountId?: string | null
|
|
23
|
-
xUsername?: string | null
|
|
22
|
+
xAccountId?: string | null;
|
|
23
|
+
xUsername?: string | null;
|
|
24
24
|
authorization: string;
|
|
25
25
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").FileUploadStatusResponse>;
|
|
26
26
|
/**
|
|
@@ -29,8 +29,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
29
29
|
*/
|
|
30
30
|
saveKnowledgeObjects: import("../network/types.js").MutationObject<Omit<{
|
|
31
31
|
fileUploadId: string;
|
|
32
|
-
xAccountId?: string | null
|
|
33
|
-
xUsername?: string | null
|
|
32
|
+
xAccountId?: string | null;
|
|
33
|
+
xUsername?: string | null;
|
|
34
34
|
authorization: string;
|
|
35
35
|
fileUploadSaveChunksRequest: import("../api/dataIntegration.js").FileUploadSaveChunksRequest;
|
|
36
36
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
@@ -39,8 +39,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
39
39
|
*/
|
|
40
40
|
saveChunkedKnowledgeObjects: import("../network/types.js").MutationObject<Omit<{
|
|
41
41
|
fileUploadId: string;
|
|
42
|
-
xAccountId?: string | null
|
|
43
|
-
xUsername?: string | null
|
|
42
|
+
xAccountId?: string | null;
|
|
43
|
+
xUsername?: string | null;
|
|
44
44
|
authorization: string;
|
|
45
45
|
fileUploadSaveChunksRequest: import("../api/dataIntegration.js").FileUploadSaveChunksRequest;
|
|
46
46
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
@@ -49,8 +49,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
49
49
|
*/
|
|
50
50
|
splitFile: import("../network/types.js").MutationObject<Omit<{
|
|
51
51
|
fileUploadId: string;
|
|
52
|
-
xAccountId?: string | null
|
|
53
|
-
xUsername?: string | null
|
|
52
|
+
xAccountId?: string | null;
|
|
53
|
+
xUsername?: string | null;
|
|
54
54
|
authorization: string;
|
|
55
55
|
fileSplitRequest: import("../api/dataIntegration.js").FileSplitRequest;
|
|
56
56
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
@@ -66,19 +66,19 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
66
66
|
previewFromSplit: import("../network/types.js").QueryObject<Omit<{
|
|
67
67
|
fileUploadId: string;
|
|
68
68
|
splitStrategy: import("../api/dataIntegration.js").FileSplitStrategy;
|
|
69
|
-
xAccountId?: string | null
|
|
70
|
-
xUsername?: string | null
|
|
69
|
+
xAccountId?: string | null;
|
|
70
|
+
xUsername?: string | null;
|
|
71
71
|
authorization: string;
|
|
72
72
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
73
73
|
/**
|
|
74
74
|
* List of knowledge sources
|
|
75
75
|
*/
|
|
76
76
|
knowledgeSources: import("../network/types.js").QueryObject<Omit<{
|
|
77
|
-
visibility?: import("../api/dataIntegration.js").VisibilityLevelEnum
|
|
78
|
-
order?: import("../api/dataIntegration.js").OrderEnum
|
|
79
|
-
types?: import("../api/dataIntegration.js").KnowledgeSourceTypeEnum[]
|
|
80
|
-
xAccountId?: string | null
|
|
81
|
-
xUsername?: string | null
|
|
77
|
+
visibility?: import("../api/dataIntegration.js").VisibilityLevelEnum;
|
|
78
|
+
order?: import("../api/dataIntegration.js").OrderEnum;
|
|
79
|
+
types?: import("../api/dataIntegration.js").KnowledgeSourceTypeEnum[];
|
|
80
|
+
xAccountId?: string | null;
|
|
81
|
+
xUsername?: string | null;
|
|
82
82
|
authorization: string;
|
|
83
83
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeSourceItemResponse[]>;
|
|
84
84
|
/**
|
|
@@ -86,8 +86,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
86
86
|
*/
|
|
87
87
|
addFavoriteKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
88
88
|
slug: string;
|
|
89
|
-
xAccountId?: string | null
|
|
90
|
-
xUsername?: string | null
|
|
89
|
+
xAccountId?: string | null;
|
|
90
|
+
xUsername?: string | null;
|
|
91
91
|
authorization: string;
|
|
92
92
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
93
93
|
/**
|
|
@@ -95,8 +95,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
95
95
|
*/
|
|
96
96
|
removeFavoriteKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
97
97
|
slug: string;
|
|
98
|
-
xAccountId?: string | null
|
|
99
|
-
xUsername?: string | null
|
|
98
|
+
xAccountId?: string | null;
|
|
99
|
+
xUsername?: string | null;
|
|
100
100
|
authorization: string;
|
|
101
101
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
102
102
|
/**
|
|
@@ -104,11 +104,11 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
104
104
|
*/
|
|
105
105
|
listKnowledgeObjects: import("../network/types.js").QueryObject<Omit<{
|
|
106
106
|
ksSlug: string;
|
|
107
|
-
standalone?: boolean | null
|
|
108
|
-
filePath?: string[]
|
|
109
|
-
contentLimit?: number | null
|
|
110
|
-
xAccountId?: string | null
|
|
111
|
-
xUsername?: string | null
|
|
107
|
+
standalone?: boolean | null;
|
|
108
|
+
filePath?: string[];
|
|
109
|
+
contentLimit?: number | null;
|
|
110
|
+
xAccountId?: string | null;
|
|
111
|
+
xUsername?: string | null;
|
|
112
112
|
authorization: string;
|
|
113
113
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeObjectResponse[]>;
|
|
114
114
|
/**
|
|
@@ -117,21 +117,21 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
117
117
|
getKnowledgeObjectById: import("../network/types.js").QueryObject<Omit<{
|
|
118
118
|
ksSlug: string;
|
|
119
119
|
koId: string;
|
|
120
|
-
xAccountId?: string | null
|
|
121
|
-
xUsername?: string | null
|
|
120
|
+
xAccountId?: string | null;
|
|
121
|
+
xUsername?: string | null;
|
|
122
122
|
authorization: string;
|
|
123
123
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeObjectResponse>;
|
|
124
124
|
uploadFiles: Omit<import("../network/types.js").MutationObject<{
|
|
125
125
|
files: File[];
|
|
126
126
|
type: FileUploadType;
|
|
127
|
-
targetId?: string
|
|
127
|
+
targetId?: string;
|
|
128
128
|
}, string[]>, keyof import("../network/types.js").OperationObject<any>>;
|
|
129
129
|
/**
|
|
130
130
|
* Uploads a KO file
|
|
131
131
|
*/
|
|
132
132
|
fileUploadFormKnowledgeObject: import("../network/types.js").MutationObject<Omit<{
|
|
133
|
-
xAccountId?: string | null
|
|
134
|
-
xUsername?: string | null
|
|
133
|
+
xAccountId?: string | null;
|
|
134
|
+
xUsername?: string | null;
|
|
135
135
|
authorization: string;
|
|
136
136
|
newFileUploadRequest: import("../api/dataIntegration.js").NewFileUploadRequest;
|
|
137
137
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").NewFileUploadFormResponse>;
|
|
@@ -139,8 +139,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
139
139
|
* Create Ks
|
|
140
140
|
*/
|
|
141
141
|
createKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
142
|
-
xAccountId?: string | null
|
|
143
|
-
xUsername?: string | null
|
|
142
|
+
xAccountId?: string | null;
|
|
143
|
+
xUsername?: string | null;
|
|
144
144
|
authorization: string;
|
|
145
145
|
newKnowledgeSourceRequest: import("../api/dataIntegration.js").NewKnowledgeSourceRequest;
|
|
146
146
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
@@ -148,8 +148,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
148
148
|
* Search Ks
|
|
149
149
|
*/
|
|
150
150
|
listKnowledgeSourcesDataByIds: import("../network/types.js").QueryObject<Omit<{
|
|
151
|
-
xAccountId?: string | null
|
|
152
|
-
xUsername?: string | null
|
|
151
|
+
xAccountId?: string | null;
|
|
152
|
+
xUsername?: string | null;
|
|
153
153
|
authorization: string;
|
|
154
154
|
knowledgeSourceSearchRequest: import("../api/dataIntegration.js").KnowledgeSourceSearchRequest;
|
|
155
155
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeSourceResponse[]>;
|
|
@@ -158,16 +158,16 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
158
158
|
*/
|
|
159
159
|
findKnowledgeSourceBySlug: import("../network/types.js").QueryObject<Omit<{
|
|
160
160
|
slug: string;
|
|
161
|
-
xAccountId?: string | null
|
|
162
|
-
xUsername?: string | null
|
|
161
|
+
xAccountId?: string | null;
|
|
162
|
+
xUsername?: string | null;
|
|
163
163
|
authorization: string;
|
|
164
164
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeSourceResponse>;
|
|
165
165
|
/**
|
|
166
166
|
* Search Objects
|
|
167
167
|
*/
|
|
168
168
|
searchObjects: import("../network/types.js").MutationObject<Omit<{
|
|
169
|
-
xAccountId?: string | null
|
|
170
|
-
xUsername?: string | null
|
|
169
|
+
xAccountId?: string | null;
|
|
170
|
+
xUsername?: string | null;
|
|
171
171
|
authorization: string;
|
|
172
172
|
searchKnowledgeObjectRequest: import("../api/dataIntegration.js").SearchKnowledgeObjectRequest;
|
|
173
173
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").SearchKnowledgeObjectResponse[]>;
|
|
@@ -176,8 +176,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
176
176
|
*/
|
|
177
177
|
updateKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
178
178
|
slug: string;
|
|
179
|
-
xAccountId?: string | null
|
|
180
|
-
xUsername?: string | null
|
|
179
|
+
xAccountId?: string | null;
|
|
180
|
+
xUsername?: string | null;
|
|
181
181
|
authorization: string;
|
|
182
182
|
knowledgeSourcePatchesRequest: import("../api/dataIntegration.js").KnowledgeSourcePatchesRequest;
|
|
183
183
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
@@ -186,8 +186,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
186
186
|
*/
|
|
187
187
|
shareKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
188
188
|
slug: string;
|
|
189
|
-
xAccountId?: string | null
|
|
190
|
-
xUsername?: string | null
|
|
189
|
+
xAccountId?: string | null;
|
|
190
|
+
xUsername?: string | null;
|
|
191
191
|
authorization: string;
|
|
192
192
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
193
193
|
/**
|
|
@@ -195,18 +195,18 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
195
195
|
*/
|
|
196
196
|
publishKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
197
197
|
slug: string;
|
|
198
|
-
xAccountId?: string | null
|
|
199
|
-
xUsername?: string | null
|
|
198
|
+
xAccountId?: string | null;
|
|
199
|
+
xUsername?: string | null;
|
|
200
200
|
authorization: string;
|
|
201
|
-
body?: import("../api/dataIntegration.js").KnowledgeSourcesPublishRequest | null
|
|
201
|
+
body?: import("../api/dataIntegration.js").KnowledgeSourcesPublishRequest | null;
|
|
202
202
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
203
203
|
/**
|
|
204
204
|
* Fork Knowledge Source
|
|
205
205
|
*/
|
|
206
206
|
forkKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
207
207
|
slug: string;
|
|
208
|
-
xAccountId?: string | null
|
|
209
|
-
xUsername?: string | null
|
|
208
|
+
xAccountId?: string | null;
|
|
209
|
+
xUsername?: string | null;
|
|
210
210
|
authorization: string;
|
|
211
211
|
forkKnowledgeSourceRequest: import("../api/dataIntegration.js").ForkKnowledgeSourceRequest;
|
|
212
212
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
@@ -215,9 +215,9 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
215
215
|
*/
|
|
216
216
|
deleteKnowledgeObjectsByStandalone: import("../network/types.js").MutationObject<Omit<{
|
|
217
217
|
ksSlug: string;
|
|
218
|
-
standalone?: boolean | null
|
|
219
|
-
xAccountId?: string | null
|
|
220
|
-
xUsername?: string | null
|
|
218
|
+
standalone?: boolean | null;
|
|
219
|
+
xAccountId?: string | null;
|
|
220
|
+
xUsername?: string | null;
|
|
221
221
|
authorization: string;
|
|
222
222
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
223
223
|
/**
|
|
@@ -226,8 +226,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
226
226
|
deleteKnowledgeObjectFromKnowledgeSource: import("../network/types.js").MutationObject<Omit<{
|
|
227
227
|
ksSlug: string;
|
|
228
228
|
koId: string;
|
|
229
|
-
xAccountId?: string | null
|
|
230
|
-
xUsername?: string | null
|
|
229
|
+
xAccountId?: string | null;
|
|
230
|
+
xUsername?: string | null;
|
|
231
231
|
authorization: string;
|
|
232
232
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
233
233
|
/**
|
|
@@ -235,8 +235,8 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
235
235
|
*/
|
|
236
236
|
listIndexedProjectFiles: import("../network/types.js").QueryObject<Omit<{
|
|
237
237
|
ksSlug: string;
|
|
238
|
-
xAccountId?: string | null
|
|
239
|
-
xUsername?: string | null
|
|
238
|
+
xAccountId?: string | null;
|
|
239
|
+
xUsername?: string | null;
|
|
240
240
|
authorization: string;
|
|
241
241
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeSourceFilesIngestedResponse[]>;
|
|
242
242
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-integration.d.ts","sourceRoot":"","sources":["../../src/client/data-integration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAC7C,OAAO,EAML,cAAc,EAoBf,MAAM,wBAAwB,CAAA;AAI/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAI5E,cAAM,qBAAsB,SAAQ,uBAAuB;;IAKzD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAGlE;;OAEG;IACH,uBAAuB;;;;;+HAA+E;IACtG;;OAEG;IACH,2BAA2B;;;;;8HAAuF;IAClH;;;OAGG;IACH,oBAAoB;;;;;;wEAAkG;IACtH;;OAEG;IACH,2BAA2B;;;;;;wEAAwG;IACnI;;OAEG;IACH,SAAS;;;;;;wEAA8F;IACvG;;OAEG;IACH,sBAAsB,CACpB,YAAY,EAAE,MAAM,EACpB,aAAa,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,WAAW,CAAA;KAAE;IAapC;;OAEG;IACH,gBAAgB;;;;;;wEAAqH;IACrI;;OAEG;IACH,gBAAgB;;;;;;;mIAAoE;IACpF;;OAEG;IACH,0BAA0B;;;;;4EAAyF;IACnH;;OAEG;IACH,6BAA6B;;;;;4EAA8F;IAC3H;;OAEG;IACH,oBAAoB;;;;;;;;+HAAkF;IACtG;;OAEG;IACH,sBAAsB;;;;;;6HAAyF;IAG/G,WAAW;eAE+B,IAAI,EAAE;cAAQ,cAAc
|
|
1
|
+
{"version":3,"file":"data-integration.d.ts","sourceRoot":"","sources":["../../src/client/data-integration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAC7C,OAAO,EAML,cAAc,EAoBf,MAAM,wBAAwB,CAAA;AAI/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAI5E,cAAM,qBAAsB,SAAQ,uBAAuB;;IAKzD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAGlE;;OAEG;IACH,uBAAuB;;;;;+HAA+E;IACtG;;OAEG;IACH,2BAA2B;;;;;8HAAuF;IAClH;;;OAGG;IACH,oBAAoB;;;;;;wEAAkG;IACtH;;OAEG;IACH,2BAA2B;;;;;;wEAAwG;IACnI;;OAEG;IACH,SAAS;;;;;;wEAA8F;IACvG;;OAEG;IACH,sBAAsB,CACpB,YAAY,EAAE,MAAM,EACpB,aAAa,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,WAAW,CAAA;KAAE;IAapC;;OAEG;IACH,gBAAgB;;;;;;wEAAqH;IACrI;;OAEG;IACH,gBAAgB;;;;;;;mIAAoE;IACpF;;OAEG;IACH,0BAA0B;;;;;4EAAyF;IACnH;;OAEG;IACH,6BAA6B;;;;;4EAA8F;IAC3H;;OAEG;IACH,oBAAoB;;;;;;;;+HAAkF;IACtG;;OAEG;IACH,sBAAsB;;;;;;6HAAyF;IAG/G,WAAW;eAE+B,IAAI,EAAE;cAAQ,cAAc;mBAAa,MAAM;yEAoBvF;IAEF;;MAEE;IACF,6BAA6B;;;;;+HACiC;IAE9D;;QAEI;IACJ,qBAAqB;;;;;wEAA0E;IAE/F;;QAEI;IACJ,6BAA6B;;;;;+HAA6E;IAE1G;;QAEI;IACJ,yBAAyB;;;;;6HAAwE;IAEjG;;OAEG;IACH,aAAa;;;;;qIAAqE;IAClF;;OAEG;IACH,qBAAqB;;;;;;4EAA+E;IACpG;;OAEG;IACH,oBAAoB;;;;;4EAAkF;IACtG;;OAEG;IACH,sBAAsB;;;;;;4EAAsF;IAC5G;;OAEG;IACH,mBAAmB;;;;;;4EAAgF;IACnG;;OAEG;IACH,kCAAkC;;;;;;4EAAyF;IAC3H;;OAEG;IACH,wCAAwC;;;;;;4EAAiG;IACzI;;OAEG;IACH,uBAAuB;;;;;4IAAwF;CAEhH;AAED,eAAO,MAAM,qBAAqB,uBAA8B,CAAA"}
|
|
@@ -13,11 +13,11 @@ declare class DiscoverClient extends ReactQueryNetworkClient {
|
|
|
13
13
|
constructor();
|
|
14
14
|
protected buildStackSpotError(error: HttpError): StackspotAPIError;
|
|
15
15
|
opportunities: import("../network/types.js").QueryObject<{
|
|
16
|
-
filter?: string
|
|
17
|
-
page?: number
|
|
18
|
-
size?: number
|
|
19
|
-
sort?: string
|
|
20
|
-
direction?: string
|
|
16
|
+
filter?: string;
|
|
17
|
+
page?: number;
|
|
18
|
+
size?: number;
|
|
19
|
+
sort?: string;
|
|
20
|
+
direction?: string;
|
|
21
21
|
}, import("../api/discover.js").PageResponseGetOpportunityResponse>;
|
|
22
22
|
opportunity: import("../network/types.js").QueryObject<{
|
|
23
23
|
opportunityId: string;
|
|
@@ -56,9 +56,9 @@ declare class DiscoverClient extends ReactQueryNetworkClient {
|
|
|
56
56
|
documentId: string;
|
|
57
57
|
}, never>;
|
|
58
58
|
chats: Omit<import("../network/types.js").QueryObject<{
|
|
59
|
-
filter?: string
|
|
60
|
-
page?: number
|
|
61
|
-
size?: number
|
|
59
|
+
filter?: string;
|
|
60
|
+
page?: number;
|
|
61
|
+
size?: number;
|
|
62
62
|
}, ChatConversionDetails[]>, "isAllowed" | "useAllowed" | "getPermissionKey">;
|
|
63
63
|
private static toolsOfAgent;
|
|
64
64
|
sendChatMessage(request: MessageRequest & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"discover.d.ts","sourceRoot":"","sources":["../../src/client/discover.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAG7C,OAAO,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAA;AAChD,OAAO,EAAuJ,sBAAsB,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAA;AAE7N,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAGpD,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAE5E,OAAO,EAAiB,qBAAqB,EAAmC,MAAM,SAAS,CAAA;AAG/F,MAAM,WAAW,qBAAsB,SAAQ,oBAAoB;IACjE,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,cAAM,cAAe,SAAQ,uBAAuB;;IAKlD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAIlE,aAAa;;;;;;qEAAqB;IAElC,WAAW;;+BAAsB;IAEjC,UAAU;;0DAAsB;IAEhC,cAAc;;wDAAuB;IAErC,SAAS;;wDAAiC;IAE1C,QAAQ;;sDAAuB;IAE/B,SAAS;;wDAAsB;IAE/B,iBAAiB;;4DAAwB;IAEzC,gBAAgB;;2DAAyB;IAEzC,cAAc;;yDAAyB;IAEvC,iBAAiB;;cAA4B;IAE7C,gBAAgB;;cAA6B;IAE7C,cAAc;;cAA6B;IAE3C,KAAK
|
|
1
|
+
{"version":3,"file":"discover.d.ts","sourceRoot":"","sources":["../../src/client/discover.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAG7C,OAAO,EAAE,oBAAoB,EAAE,MAAM,WAAW,CAAA;AAChD,OAAO,EAAuJ,sBAAsB,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAA;AAE7N,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAGpD,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAE5E,OAAO,EAAiB,qBAAqB,EAAmC,MAAM,SAAS,CAAA;AAG/F,MAAM,WAAW,qBAAsB,SAAQ,oBAAoB;IACjE,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,cAAM,cAAe,SAAQ,uBAAuB;;IAKlD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAIlE,aAAa;;;;;;qEAAqB;IAElC,WAAW;;+BAAsB;IAEjC,UAAU;;0DAAsB;IAEhC,cAAc;;wDAAuB;IAErC,SAAS;;wDAAiC;IAE1C,QAAQ;;sDAAuB;IAE/B,SAAS;;wDAAsB;IAE/B,iBAAiB;;4DAAwB;IAEzC,gBAAgB;;2DAAyB;IAEzC,cAAc;;yDAAyB;IAEvC,iBAAiB;;cAA4B;IAE7C,gBAAgB;;cAA6B;IAE7C,cAAc;;cAA6B;IAE3C,KAAK;iBAE4C,MAAM;eAAS,MAAM;eAAS,MAAM;kFAiCnF;mBAEmB,YAAY;IAkBjC,eAAe,CAAC,OAAO,EAAE,cAAc,GAAG;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE,EAAE,mBAAmB,CAAC,EAAE,MAAM,GAAG,YAAY,CAAC,qBAAqB,CAAC;CAiMlI;AAED,eAAO,MAAM,cAAc,gBAAuB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event-bus.d.ts","sourceRoot":"","sources":["../../src/client/event-bus.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAG7C,OAAO,EAAqC,KAAK,IAAI,SAAS,EAAc,MAAM,iBAAiB,CAAA;AAGnG,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAA;AAGxD,eAAO,MAAM,yBAAyB,gBAAgB,CAAA;AAEtD,cAAM,cAAe,SAAQ,aAAa;IACxC,OAAO,CAAC,KAAK,CAAkB;IAC/B,OAAO,CAAC,QAAQ,CAAoD;IACpE,OAAO,CAAC,OAAO,CAAoB;IACnC,OAAO,CAAC,IAAI,CAAQ;;IAQpB,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;YAIpD,OAAO;YAkCP,GAAG;IAajB;;OAEG;IACH,SAAS,
|
|
1
|
+
{"version":3,"file":"event-bus.d.ts","sourceRoot":"","sources":["../../src/client/event-bus.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAG7C,OAAO,EAAqC,KAAK,IAAI,SAAS,EAAc,MAAM,iBAAiB,CAAA;AAGnG,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAA;AAGxD,eAAO,MAAM,yBAAyB,gBAAgB,CAAA;AAEtD,cAAM,cAAe,SAAQ,aAAa;IACxC,OAAO,CAAC,KAAK,CAAkB;IAC/B,OAAO,CAAC,QAAQ,CAAoD;IACpE,OAAO,CAAC,OAAO,CAAoB;IACnC,OAAO,CAAC,IAAI,CAAQ;;IAQpB,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;YAIpD,OAAO;YAkCP,GAAG;IAajB;;OAEG;IACH,SAAS,GAAU,OAAO,SAAS,mBAElC;CACF;AAED,eAAO,MAAM,cAAc,gBAAuB,CAAA"}
|
|
@@ -8,31 +8,31 @@ declare class GenAiInference extends ReactQueryNetworkClient {
|
|
|
8
8
|
* List all models.
|
|
9
9
|
*/
|
|
10
10
|
listModels: import("../network/types.js").QueryObject<Omit<{
|
|
11
|
-
active?: boolean | null
|
|
12
|
-
resource?: string | null
|
|
13
|
-
$default?: boolean | null
|
|
14
|
-
displayName?: string | null
|
|
15
|
-
selfHosted?: boolean | null
|
|
16
|
-
orderBy?: import("../api/genAiInference.js").OrderBy
|
|
17
|
-
orderDir?: import("../api/genAiInference.js").OrderDir
|
|
18
|
-
page?: number
|
|
19
|
-
pageSize?: number
|
|
20
|
-
xAccountId?: string | null
|
|
11
|
+
active?: boolean | null;
|
|
12
|
+
resource?: string | null;
|
|
13
|
+
$default?: boolean | null;
|
|
14
|
+
displayName?: string | null;
|
|
15
|
+
selfHosted?: boolean | null;
|
|
16
|
+
orderBy?: import("../api/genAiInference.js").OrderBy;
|
|
17
|
+
orderDir?: import("../api/genAiInference.js").OrderDir;
|
|
18
|
+
page?: number;
|
|
19
|
+
pageSize?: number;
|
|
20
|
+
xAccountId?: string | null;
|
|
21
21
|
authorization: string;
|
|
22
22
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/genAiInference.js").PaginatedResponseLlmModelsResponse>;
|
|
23
23
|
/**
|
|
24
24
|
* List llm providers.
|
|
25
25
|
*/
|
|
26
26
|
listProviders: import("../network/types.js").QueryObject<Omit<{
|
|
27
|
-
acceptsSelfHosted?: boolean
|
|
28
|
-
xAccountId?: string | null
|
|
27
|
+
acceptsSelfHosted?: boolean;
|
|
28
|
+
xAccountId?: string | null;
|
|
29
29
|
authorization: string;
|
|
30
30
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/genAiInference.js").LlmSimpleProviderResponse[]>;
|
|
31
31
|
/**
|
|
32
32
|
* Creates LLM self hosted model
|
|
33
33
|
*/
|
|
34
34
|
createModel: import("../network/types.js").MutationObject<Omit<{
|
|
35
|
-
xAccountId?: string | null
|
|
35
|
+
xAccountId?: string | null;
|
|
36
36
|
authorization: string;
|
|
37
37
|
createLlmModelRequest: import("../api/genAiInference.js").CreateLlmModelRequest;
|
|
38
38
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/genAiInference.js").LlmModelsResponse>;
|
|
@@ -41,7 +41,7 @@ declare class GenAiInference extends ReactQueryNetworkClient {
|
|
|
41
41
|
*/
|
|
42
42
|
deleteModel: import("../network/types.js").MutationObject<Omit<{
|
|
43
43
|
modelId: string;
|
|
44
|
-
xAccountId?: string | null
|
|
44
|
+
xAccountId?: string | null;
|
|
45
45
|
authorization: string;
|
|
46
46
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
47
47
|
/**
|
|
@@ -49,7 +49,7 @@ declare class GenAiInference extends ReactQueryNetworkClient {
|
|
|
49
49
|
*/
|
|
50
50
|
getModel: import("../network/types.js").QueryObject<Omit<{
|
|
51
51
|
modelId: string;
|
|
52
|
-
xAccountId?: string | null
|
|
52
|
+
xAccountId?: string | null;
|
|
53
53
|
authorization: string;
|
|
54
54
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/genAiInference.js").LlmModelsResponse>;
|
|
55
55
|
/**
|
|
@@ -57,7 +57,7 @@ declare class GenAiInference extends ReactQueryNetworkClient {
|
|
|
57
57
|
*/
|
|
58
58
|
updateModel: import("../network/types.js").MutationObject<Omit<{
|
|
59
59
|
modelId: string;
|
|
60
|
-
xAccountId?: string | null
|
|
60
|
+
xAccountId?: string | null;
|
|
61
61
|
authorization: string;
|
|
62
62
|
updateLlmModelRequest: import("../api/genAiInference.js").UpdateLlmModelRequest;
|
|
63
63
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/genAiInference.js").LlmModelsResponse>;
|
|
@@ -66,7 +66,7 @@ declare class GenAiInference extends ReactQueryNetworkClient {
|
|
|
66
66
|
*/
|
|
67
67
|
toggleModelActive: import("../network/types.js").MutationObject<Omit<{
|
|
68
68
|
modelId: string;
|
|
69
|
-
xAccountId?: string | null
|
|
69
|
+
xAccountId?: string | null;
|
|
70
70
|
authorization: string;
|
|
71
71
|
toggleModelStatusRequest: import("../api/genAiInference.js").ToggleModelStatusRequest;
|
|
72
72
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/genAiInference.js").LlmModelsResponse>;
|
|
@@ -75,7 +75,7 @@ declare class GenAiInference extends ReactQueryNetworkClient {
|
|
|
75
75
|
*/
|
|
76
76
|
updateModelResource: import("../network/types.js").MutationObject<Omit<{
|
|
77
77
|
modelId: string;
|
|
78
|
-
xAccountId?: string | null
|
|
78
|
+
xAccountId?: string | null;
|
|
79
79
|
authorization: string;
|
|
80
80
|
body: import("../api/genAiInference.js").UpdateLlmModelResourceRequest[];
|
|
81
81
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
@@ -84,7 +84,7 @@ declare class GenAiInference extends ReactQueryNetworkClient {
|
|
|
84
84
|
*/
|
|
85
85
|
deleteModelResource: import("../network/types.js").MutationObject<Omit<{
|
|
86
86
|
resourceId: string;
|
|
87
|
-
xAccountId?: string | null
|
|
87
|
+
xAccountId?: string | null;
|
|
88
88
|
authorization: string;
|
|
89
89
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
90
90
|
/**
|
|
@@ -92,7 +92,7 @@ declare class GenAiInference extends ReactQueryNetworkClient {
|
|
|
92
92
|
*/
|
|
93
93
|
sendAgentMessage: import("../network/types.js").MutationObject<Omit<{
|
|
94
94
|
agentId: string;
|
|
95
|
-
xAccountId?: string | null
|
|
95
|
+
xAccountId?: string | null;
|
|
96
96
|
authorization: string;
|
|
97
97
|
chatRequest: import("../api/genAiInference.js").ChatRequest;
|
|
98
98
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
@@ -12,19 +12,19 @@ declare class InsightsClient extends ReactQueryNetworkClient {
|
|
|
12
12
|
startDate: string;
|
|
13
13
|
endDate: string;
|
|
14
14
|
dataset: string;
|
|
15
|
-
stackspotCustomerIp?: string
|
|
15
|
+
stackspotCustomerIp?: string;
|
|
16
16
|
}, string>;
|
|
17
17
|
/**
|
|
18
18
|
* Get data for analysis in account
|
|
19
19
|
*/
|
|
20
20
|
getDashboardAccount: import("../network/types.js").QueryObject<{
|
|
21
21
|
accountSlug: string;
|
|
22
|
-
startDate?: string
|
|
23
|
-
endDate?: string
|
|
24
|
-
panels?: string[]
|
|
25
|
-
page?: number
|
|
26
|
-
size?: number
|
|
27
|
-
stackspotCustomerIp?: string
|
|
22
|
+
startDate?: string;
|
|
23
|
+
endDate?: string;
|
|
24
|
+
panels?: string[];
|
|
25
|
+
page?: number;
|
|
26
|
+
size?: number;
|
|
27
|
+
stackspotCustomerIp?: string;
|
|
28
28
|
}, import("../api/insights.js").DashboardReadResponse>;
|
|
29
29
|
}
|
|
30
30
|
export declare const insightsClient: InsightsClient;
|
|
@@ -8,22 +8,22 @@ declare class NotificationClient extends ReactQueryNetworkClient {
|
|
|
8
8
|
* Gets all notification by tenant
|
|
9
9
|
*/
|
|
10
10
|
notifications: import("../network/types.js").QueryObject<{
|
|
11
|
-
size?: number
|
|
12
|
-
page?: number
|
|
13
|
-
createdSince?: number
|
|
14
|
-
context?: "ACCOUNT" | "
|
|
15
|
-
criticality?: "
|
|
16
|
-
content?: string
|
|
17
|
-
committed?: boolean
|
|
18
|
-
isBanner?: boolean
|
|
19
|
-
audience?: "
|
|
11
|
+
size?: number;
|
|
12
|
+
page?: number;
|
|
13
|
+
createdSince?: number;
|
|
14
|
+
context?: "ACCOUNT" | "STUDIO" | "WORKSPACE" | "AI";
|
|
15
|
+
criticality?: "LOW" | "MEDIUM" | "HIGH";
|
|
16
|
+
content?: string;
|
|
17
|
+
committed?: boolean;
|
|
18
|
+
isBanner?: boolean;
|
|
19
|
+
audience?: "AI" | "EDP" | "ACCOUNT";
|
|
20
20
|
tenantId: string;
|
|
21
21
|
}, import("../api/notification.js").PagingResponseModelGetTenantNotificationsResponse>;
|
|
22
22
|
/**
|
|
23
23
|
* Gets all committed notifications by tenant
|
|
24
24
|
*/
|
|
25
25
|
committedNotifications: import("../network/types.js").QueryObject<{
|
|
26
|
-
audience?: "
|
|
26
|
+
audience?: "AI" | "EDP" | "ACCOUNT";
|
|
27
27
|
tenantId: string;
|
|
28
28
|
}, import("../api/notification.js").GetCommittedNotificationsResponse>;
|
|
29
29
|
/**
|
|
@@ -20,8 +20,8 @@ declare class RuntimeManagerClient extends ReactQueryNetworkClient {
|
|
|
20
20
|
* Internal use only (Only Authorized tokens) - Admin endpoint for getting all runnings run
|
|
21
21
|
*/
|
|
22
22
|
adminGetRunsRunning: import("../network/types.js").QueryObject<{
|
|
23
|
-
page?: number
|
|
24
|
-
size?: number
|
|
23
|
+
page?: number;
|
|
24
|
+
size?: number;
|
|
25
25
|
}, import("../api/apiRuntime.js").PagedModelRunProjection>;
|
|
26
26
|
/**
|
|
27
27
|
* Internal use only (Only Authorized tokens) - Admin endpoint for getting all runs off an app or infra on an env
|
|
@@ -29,16 +29,16 @@ declare class RuntimeManagerClient extends ReactQueryNetworkClient {
|
|
|
29
29
|
adminGetRunsOnEnv: import("../network/types.js").QueryObject<{
|
|
30
30
|
appId: string;
|
|
31
31
|
envId: string;
|
|
32
|
-
page?: number
|
|
33
|
-
size?: number
|
|
32
|
+
page?: number;
|
|
33
|
+
size?: number;
|
|
34
34
|
}, import("../api/apiRuntime.js").PagedModelRunProjection>;
|
|
35
35
|
/**
|
|
36
36
|
* Internal use only (Only Authorized tokens) - Admin endpoint for getting all runs off an app or infra on every environment its deployed
|
|
37
37
|
*/
|
|
38
38
|
adminGetRunsOnAllEnvs: import("../network/types.js").QueryObject<{
|
|
39
39
|
appId: string;
|
|
40
|
-
page?: number
|
|
41
|
-
size?: number
|
|
40
|
+
page?: number;
|
|
41
|
+
size?: number;
|
|
42
42
|
}, import("../api/apiRuntime.js").PagedModelRunProjection>;
|
|
43
43
|
/**
|
|
44
44
|
* Internal use only (Only Authorized tokens) - Admin endpoint for getting run data by ulid identifier
|
|
@@ -69,8 +69,8 @@ declare class RuntimeManagerClient extends ReactQueryNetworkClient {
|
|
|
69
69
|
*/
|
|
70
70
|
adminGetAppsInRealm: import("../network/types.js").QueryObject<{
|
|
71
71
|
realm: string;
|
|
72
|
-
page?: number
|
|
73
|
-
size?: number
|
|
72
|
+
page?: number;
|
|
73
|
+
size?: number;
|
|
74
74
|
}, import("../api/apiRuntime.js").PagedModelAppsInRealmProjection>;
|
|
75
75
|
/**
|
|
76
76
|
* Internal use only (Only Authorized tokens) - Admin endpoint for getting app or infra information by ulid
|
|
@@ -9,8 +9,8 @@ declare class WorkflowClient extends ReactQueryNetworkClient {
|
|
|
9
9
|
*/
|
|
10
10
|
runAction: import("../network/types.js").MutationObject<Omit<{
|
|
11
11
|
authorization: string;
|
|
12
|
-
stackspotCustomerIp?: string
|
|
13
|
-
xExecutionId?: string | null
|
|
12
|
+
stackspotCustomerIp?: string;
|
|
13
|
+
xExecutionId?: string | null;
|
|
14
14
|
runActionRequest: import("../api/workflows.js").RunActionRequest;
|
|
15
15
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workflows.js").WorkflowResponse>;
|
|
16
16
|
/**
|
|
@@ -18,8 +18,8 @@ declare class WorkflowClient extends ReactQueryNetworkClient {
|
|
|
18
18
|
*/
|
|
19
19
|
createApi: import("../network/types.js").MutationObject<{
|
|
20
20
|
authorization: string;
|
|
21
|
-
stackspotCustomerIp?: string
|
|
22
|
-
xExecutionId?: string | null
|
|
21
|
+
stackspotCustomerIp?: string;
|
|
22
|
+
xExecutionId?: string | null;
|
|
23
23
|
createApiRequest: import("../api/workflows.js").CreateApiRequest;
|
|
24
24
|
}, import("../api/workflows.js").WorkflowResponse>;
|
|
25
25
|
/**
|
|
@@ -41,9 +41,9 @@ declare class WorkflowClient extends ReactQueryNetworkClient {
|
|
|
41
41
|
*/
|
|
42
42
|
executionHealthCheck: import("../network/types.js").MutationObject<Omit<{
|
|
43
43
|
authorization: string;
|
|
44
|
-
stackspotCustomerIp?: string
|
|
45
|
-
xExecutionId?: string | null
|
|
46
|
-
body?: import("../api/workflows.js").HealthCheckRequest | null
|
|
44
|
+
stackspotCustomerIp?: string;
|
|
45
|
+
xExecutionId?: string | null;
|
|
46
|
+
body?: import("../api/workflows.js").HealthCheckRequest | null;
|
|
47
47
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workflows.js").WorkflowResponse>;
|
|
48
48
|
/**
|
|
49
49
|
* Get data about the workflow plus a graph representation of its jobs.
|
|
@@ -67,7 +67,7 @@ declare class WorkflowClient extends ReactQueryNetworkClient {
|
|
|
67
67
|
executionId: string;
|
|
68
68
|
jobId: string;
|
|
69
69
|
authorization: string;
|
|
70
|
-
stackspotCustomerIp?: string
|
|
70
|
+
stackspotCustomerIp?: string;
|
|
71
71
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workflows.js").GetWorkflowExecutionJobGraphResponse>;
|
|
72
72
|
/**
|
|
73
73
|
* Refuses a workflow step that is suspended so the execution can be canceled.
|
|
@@ -76,7 +76,7 @@ declare class WorkflowClient extends ReactQueryNetworkClient {
|
|
|
76
76
|
executionId: string;
|
|
77
77
|
jobId: string;
|
|
78
78
|
authorization: string;
|
|
79
|
-
stackspotCustomerIp?: string
|
|
79
|
+
stackspotCustomerIp?: string;
|
|
80
80
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workflows.js").GetWorkflowExecutionJobGraphResponse>;
|
|
81
81
|
/**
|
|
82
82
|
* Retries a workflow execution.
|
|
@@ -84,7 +84,7 @@ declare class WorkflowClient extends ReactQueryNetworkClient {
|
|
|
84
84
|
retry: import("../network/types.js").MutationObject<Omit<{
|
|
85
85
|
executionId: string;
|
|
86
86
|
authorization: string;
|
|
87
|
-
stackspotCustomerIp?: string
|
|
87
|
+
stackspotCustomerIp?: string;
|
|
88
88
|
postRetryWorkflowExecutionRequest: import("../api/workflows.js").PostRetryWorkflowExecutionRequest;
|
|
89
89
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workflows.js").WorkflowExecutionResponse>;
|
|
90
90
|
/**
|