@stack-spot/portal-network 0.198.2 → 0.198.3
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 +7 -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 +123 -123
- package/dist/client/agent-tools.d.ts.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/dist/client/ai.d.ts
CHANGED
|
@@ -12,9 +12,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
12
12
|
*/
|
|
13
13
|
runQuickAction: import("../network/types.js").MutationObject<Omit<{
|
|
14
14
|
authorization: string;
|
|
15
|
-
xAccountId?: string | null
|
|
16
|
-
xMemberId?: string | null
|
|
17
|
-
xUsername?: string | null
|
|
15
|
+
xAccountId?: string | null;
|
|
16
|
+
xMemberId?: string | null;
|
|
17
|
+
xUsername?: string | null;
|
|
18
18
|
quickActionsRequest: import("../api/ai.js").QuickActionsRequest;
|
|
19
19
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").SimpleResponse>;
|
|
20
20
|
/**
|
|
@@ -30,7 +30,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
30
30
|
*/
|
|
31
31
|
deleteKnowledgeObjectsByStandalone: import("../network/types.js").MutationObject<Omit<{
|
|
32
32
|
slug: string;
|
|
33
|
-
standalone?: boolean | null
|
|
33
|
+
standalone?: boolean | null;
|
|
34
34
|
authorization: string;
|
|
35
35
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
36
36
|
/**
|
|
@@ -46,29 +46,29 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
46
46
|
vectorizeCustomKS: import("../network/types.js").MutationObject<Omit<{
|
|
47
47
|
slug: string;
|
|
48
48
|
authorization: string;
|
|
49
|
-
xAccountId?: string | null
|
|
50
|
-
xMemberId?: string | null
|
|
51
|
-
xUsername?: string | null
|
|
49
|
+
xAccountId?: string | null;
|
|
50
|
+
xMemberId?: string | null;
|
|
51
|
+
xUsername?: string | null;
|
|
52
52
|
customKnowledgeSourceRequest: import("../api/ai.js").CustomKnowledgeSourceRequest;
|
|
53
53
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
54
54
|
/**
|
|
55
55
|
* Lists the AI Stacks according to their visibilities.
|
|
56
56
|
*/
|
|
57
57
|
aiStacks: import("../network/types.js").QueryObject<Omit<{
|
|
58
|
-
visibility?: import("../api/ai.js").VisibilityLevelEnum
|
|
58
|
+
visibility?: import("../api/ai.js").VisibilityLevelEnum;
|
|
59
59
|
authorization: string;
|
|
60
|
-
xAccountId?: string | null
|
|
61
|
-
xMemberId?: string | null
|
|
62
|
-
xUsername?: string | null
|
|
60
|
+
xAccountId?: string | null;
|
|
61
|
+
xMemberId?: string | null;
|
|
62
|
+
xUsername?: string | null;
|
|
63
63
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").GetAiStackResponse[]>;
|
|
64
64
|
/**
|
|
65
65
|
* Gets total tokens usage
|
|
66
66
|
*/
|
|
67
67
|
totalTokensUsage: import("../network/types.js").QueryObject<Omit<{
|
|
68
68
|
authorization: string;
|
|
69
|
-
xAccountId?: string | null
|
|
70
|
-
xMemberId?: string | null
|
|
71
|
-
xUsername?: string | null
|
|
69
|
+
xAccountId?: string | null;
|
|
70
|
+
xMemberId?: string | null;
|
|
71
|
+
xUsername?: string | null;
|
|
72
72
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").TokensCurrentUsageResponse>;
|
|
73
73
|
/**
|
|
74
74
|
* Gets current tokens usage
|
|
@@ -77,9 +77,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
77
77
|
year: number;
|
|
78
78
|
month: number;
|
|
79
79
|
authorization: string;
|
|
80
|
-
xAccountId?: string | null
|
|
81
|
-
xMemberId?: string | null
|
|
82
|
-
xUsername?: string | null
|
|
80
|
+
xAccountId?: string | null;
|
|
81
|
+
xMemberId?: string | null;
|
|
82
|
+
xUsername?: string | null;
|
|
83
83
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").TokensCurrentUsageResponse>;
|
|
84
84
|
/**
|
|
85
85
|
* Gets a workspace by its id.
|
|
@@ -87,57 +87,57 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
87
87
|
workspace: import("../network/types.js").QueryObject<Omit<{
|
|
88
88
|
workspaceId: string;
|
|
89
89
|
authorization: string;
|
|
90
|
-
xAccountId?: string | null
|
|
91
|
-
xMemberId?: string | null
|
|
92
|
-
xUsername?: string | null
|
|
90
|
+
xAccountId?: string | null;
|
|
91
|
+
xMemberId?: string | null;
|
|
92
|
+
xUsername?: string | null;
|
|
93
93
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").KnowledgeSourceResponse[]>;
|
|
94
94
|
/**
|
|
95
95
|
* @deprecated
|
|
96
96
|
* Lists the quick commands according to filters passed as parameter (QC with secrets will not be returned).
|
|
97
97
|
*/
|
|
98
98
|
quickCommands: import("../network/types.js").QueryObject<Omit<{
|
|
99
|
-
visibility?: import("../api/ai.js").VisibilityLevelEnum | null
|
|
100
|
-
order?: import("../api/ai.js").OrderEnum
|
|
101
|
-
types?: import("../api/ai.js").QuickCommandTypeRequest[] | null
|
|
99
|
+
visibility?: import("../api/ai.js").VisibilityLevelEnum | null;
|
|
100
|
+
order?: import("../api/ai.js").OrderEnum;
|
|
101
|
+
types?: import("../api/ai.js").QuickCommandTypeRequest[] | null;
|
|
102
102
|
authorization: string;
|
|
103
|
-
xAccountId?: string | null
|
|
104
|
-
xMemberId?: string | null
|
|
105
|
-
xUsername?: string | null
|
|
103
|
+
xAccountId?: string | null;
|
|
104
|
+
xMemberId?: string | null;
|
|
105
|
+
xUsername?: string | null;
|
|
106
106
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandListResponse[]>;
|
|
107
107
|
/**
|
|
108
108
|
* Lists all the quick commands according to filters passed as parameter (including QC with secrets).
|
|
109
109
|
*/
|
|
110
110
|
allQuickCommands: import("../network/types.js").QueryObject<Omit<{
|
|
111
|
-
visibility?: import("../api/ai.js").VisibilityLevelEnum | null
|
|
112
|
-
order?: import("../api/ai.js").OrderEnum
|
|
113
|
-
types?: import("../api/ai.js").QuickCommandTypeRequest[] | null
|
|
111
|
+
visibility?: import("../api/ai.js").VisibilityLevelEnum | null;
|
|
112
|
+
order?: import("../api/ai.js").OrderEnum;
|
|
113
|
+
types?: import("../api/ai.js").QuickCommandTypeRequest[] | null;
|
|
114
114
|
authorization: string;
|
|
115
|
-
xAccountId?: string | null
|
|
116
|
-
xMemberId?: string | null
|
|
117
|
-
xUsername?: string | null
|
|
115
|
+
xAccountId?: string | null;
|
|
116
|
+
xMemberId?: string | null;
|
|
117
|
+
xUsername?: string | null;
|
|
118
118
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandListResponse[]>;
|
|
119
119
|
/**
|
|
120
120
|
* Gets a quick command by its slug.
|
|
121
121
|
*/
|
|
122
122
|
quickCommand: import("../network/types.js").QueryObject<Omit<{
|
|
123
123
|
slug: string;
|
|
124
|
-
findAgents?: boolean
|
|
124
|
+
findAgents?: boolean;
|
|
125
125
|
authorization: string;
|
|
126
|
-
xAccountId?: string | null
|
|
127
|
-
xMemberId?: string | null
|
|
128
|
-
xUsername?: string | null
|
|
126
|
+
xAccountId?: string | null;
|
|
127
|
+
xMemberId?: string | null;
|
|
128
|
+
xUsername?: string | null;
|
|
129
129
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandResponse>;
|
|
130
130
|
/**
|
|
131
131
|
* Creates a new execution for a quick command by its slug.
|
|
132
132
|
*/
|
|
133
133
|
quickCommandCreateExecution: import("../network/types.js").MutationObject<Omit<{
|
|
134
134
|
slug: string;
|
|
135
|
-
conversationId?: string | null
|
|
135
|
+
conversationId?: string | null;
|
|
136
136
|
authorization: string;
|
|
137
|
-
xAccountId?: string | null
|
|
138
|
-
xMemberId?: string | null
|
|
139
|
-
xUsername?: string | null
|
|
140
|
-
quickCommandCreateRequest?: import("../api/ai.js").QuickCommandCreateRequest
|
|
137
|
+
xAccountId?: string | null;
|
|
138
|
+
xMemberId?: string | null;
|
|
139
|
+
xUsername?: string | null;
|
|
140
|
+
quickCommandCreateRequest?: import("../api/ai.js").QuickCommandCreateRequest;
|
|
141
141
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
142
142
|
/**
|
|
143
143
|
* Gets the execution status and result of a quick command by its execution ID.
|
|
@@ -145,22 +145,22 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
145
145
|
quickCommandCallbackExecutionId: import("../network/types.js").QueryObject<Omit<{
|
|
146
146
|
executionId: string;
|
|
147
147
|
authorization: string;
|
|
148
|
-
xAccountId?: string | null
|
|
149
|
-
xMemberId?: string | null
|
|
150
|
-
xUsername?: string | null
|
|
148
|
+
xAccountId?: string | null;
|
|
149
|
+
xMemberId?: string | null;
|
|
150
|
+
xUsername?: string | null;
|
|
151
151
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandExecutionResponse>;
|
|
152
152
|
/**
|
|
153
153
|
* Lists the knowledge sources according to filters passed as parameter.
|
|
154
154
|
*/
|
|
155
155
|
knowledgeSources: import("../network/types.js").QueryObject<Omit<{
|
|
156
|
-
visibility?: import("../api/ai.js").VisibilityLevelEnum
|
|
157
|
-
order?: import("../api/ai.js").OrderEnum
|
|
158
|
-
$default?: boolean | null
|
|
159
|
-
types?: import("../api/ai.js").KnowledgeSourceTypeEnum[] | null
|
|
160
|
-
authorization: string;
|
|
161
|
-
xAccountId?: string | null
|
|
162
|
-
xMemberId?: string | null
|
|
163
|
-
xUsername?: string | null
|
|
156
|
+
visibility?: import("../api/ai.js").VisibilityLevelEnum;
|
|
157
|
+
order?: import("../api/ai.js").OrderEnum;
|
|
158
|
+
$default?: boolean | null;
|
|
159
|
+
types?: import("../api/ai.js").KnowledgeSourceTypeEnum[] | null;
|
|
160
|
+
authorization: string;
|
|
161
|
+
xAccountId?: string | null;
|
|
162
|
+
xMemberId?: string | null;
|
|
163
|
+
xUsername?: string | null;
|
|
164
164
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").KnowledgeSourceItemResponse[]>;
|
|
165
165
|
/**
|
|
166
166
|
* Gets a knowledge source by its slug.
|
|
@@ -188,12 +188,12 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
188
188
|
* Gets the chat history. This is a paginated resource.
|
|
189
189
|
*/
|
|
190
190
|
chats: import("../network/types.js").InfiniteQueryObject<Omit<{
|
|
191
|
-
size?: number
|
|
192
|
-
page?: number
|
|
191
|
+
size?: number;
|
|
192
|
+
page?: number;
|
|
193
193
|
authorization: string;
|
|
194
|
-
xAccountId?: string | null
|
|
195
|
-
xMemberId?: string | null
|
|
196
|
-
xUsername?: string | null
|
|
194
|
+
xAccountId?: string | null;
|
|
195
|
+
xMemberId?: string | null;
|
|
196
|
+
xUsername?: string | null;
|
|
197
197
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").ConversationResponse[], "">;
|
|
198
198
|
/**
|
|
199
199
|
* Gets a specific chat from the history according to its id.
|
|
@@ -201,9 +201,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
201
201
|
chat: import("../network/types.js").QueryObject<Omit<{
|
|
202
202
|
conversationId: string;
|
|
203
203
|
authorization: string;
|
|
204
|
-
xAccountId?: string | null
|
|
205
|
-
xMemberId?: string | null
|
|
206
|
-
xUsername?: string | null
|
|
204
|
+
xAccountId?: string | null;
|
|
205
|
+
xMemberId?: string | null;
|
|
206
|
+
xUsername?: string | null;
|
|
207
207
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, FixedConversationResponse>;
|
|
208
208
|
/**
|
|
209
209
|
* Deletes a chat from the chat history.
|
|
@@ -211,9 +211,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
211
211
|
deleteChat: import("../network/types.js").MutationObject<Omit<{
|
|
212
212
|
conversationId: string;
|
|
213
213
|
authorization: string;
|
|
214
|
-
xAccountId?: string | null
|
|
215
|
-
xMemberId?: string | null
|
|
216
|
-
xUsername?: string | null
|
|
214
|
+
xAccountId?: string | null;
|
|
215
|
+
xMemberId?: string | null;
|
|
216
|
+
xUsername?: string | null;
|
|
217
217
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
218
218
|
/**
|
|
219
219
|
* Gets a plain text version of the chat with id passed as parameter.
|
|
@@ -221,9 +221,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
221
221
|
downloadChat: import("../network/types.js").MutationObject<Omit<{
|
|
222
222
|
conversationId: string;
|
|
223
223
|
authorization: string;
|
|
224
|
-
xAccountId?: string | null
|
|
225
|
-
xMemberId?: string | null
|
|
226
|
-
xUsername?: string | null
|
|
224
|
+
xAccountId?: string | null;
|
|
225
|
+
xMemberId?: string | null;
|
|
226
|
+
xUsername?: string | null;
|
|
227
227
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
228
228
|
/**
|
|
229
229
|
* Renames a chat.
|
|
@@ -231,9 +231,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
231
231
|
renameChat: import("../network/types.js").MutationObject<Omit<{
|
|
232
232
|
conversationId: string;
|
|
233
233
|
authorization: string;
|
|
234
|
-
xAccountId?: string | null
|
|
235
|
-
xMemberId?: string | null
|
|
236
|
-
xUsername?: string | null
|
|
234
|
+
xAccountId?: string | null;
|
|
235
|
+
xMemberId?: string | null;
|
|
236
|
+
xUsername?: string | null;
|
|
237
237
|
conversationUpdateTitleRequest: import("../api/ai.js").ConversationUpdateTitleRequest;
|
|
238
238
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").ConversationResponse>;
|
|
239
239
|
/**
|
|
@@ -241,9 +241,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
241
241
|
*/
|
|
242
242
|
createEvent: import("../network/types.js").MutationObject<Omit<{
|
|
243
243
|
authorization: string;
|
|
244
|
-
xAccountId?: string | null
|
|
245
|
-
xMemberId?: string | null
|
|
246
|
-
xUsername?: string | null
|
|
244
|
+
xAccountId?: string | null;
|
|
245
|
+
xMemberId?: string | null;
|
|
246
|
+
xUsername?: string | null;
|
|
247
247
|
body: import("../api/ai.js").GenericEventRequest[];
|
|
248
248
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
249
249
|
/**
|
|
@@ -253,9 +253,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
253
253
|
slug: string;
|
|
254
254
|
stepSlug: string;
|
|
255
255
|
authorization: string;
|
|
256
|
-
xAccountId?: string | null
|
|
257
|
-
xMemberId?: string | null
|
|
258
|
-
xUsername?: string | null
|
|
256
|
+
xAccountId?: string | null;
|
|
257
|
+
xMemberId?: string | null;
|
|
258
|
+
xUsername?: string | null;
|
|
259
259
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
260
260
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandStepFetchResponse>;
|
|
261
261
|
/**
|
|
@@ -265,12 +265,12 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
265
265
|
slug: string;
|
|
266
266
|
stepSlug: string;
|
|
267
267
|
authorization: string;
|
|
268
|
-
xAccountId?: string | null
|
|
269
|
-
xMemberId?: string | null
|
|
270
|
-
xUsername?: string | null
|
|
268
|
+
xAccountId?: string | null;
|
|
269
|
+
xMemberId?: string | null;
|
|
270
|
+
xUsername?: string | null;
|
|
271
271
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
272
272
|
}, "authorization"> & {
|
|
273
|
-
headers?: Record<string, any
|
|
273
|
+
headers?: Record<string, any>;
|
|
274
274
|
}, import("../api/ai.js").QuickCommandStepFetchResponse>;
|
|
275
275
|
/**
|
|
276
276
|
* @deprecated This method does not use stream, only json. The json support has been removed
|
|
@@ -281,9 +281,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
281
281
|
slug: string;
|
|
282
282
|
stepSlug: string;
|
|
283
283
|
authorization: string;
|
|
284
|
-
xAccountId?: string | null
|
|
285
|
-
xMemberId?: string | null
|
|
286
|
-
xUsername?: string | null
|
|
284
|
+
xAccountId?: string | null;
|
|
285
|
+
xMemberId?: string | null;
|
|
286
|
+
xUsername?: string | null;
|
|
287
287
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
288
288
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, string | QuickCommandPromptResponse2>;
|
|
289
289
|
/**
|
|
@@ -293,9 +293,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
293
293
|
slug: string;
|
|
294
294
|
stepSlug: string;
|
|
295
295
|
authorization: string;
|
|
296
|
-
xAccountId?: string | null
|
|
297
|
-
xMemberId?: string | null
|
|
298
|
-
xUsername?: string | null
|
|
296
|
+
xAccountId?: string | null;
|
|
297
|
+
xMemberId?: string | null;
|
|
298
|
+
xUsername?: string | null;
|
|
299
299
|
quickCommandEvaluateStepRouterRequest: import("../api/ai.js").QuickCommandEvaluateStepRouterRequest;
|
|
300
300
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandEvaluateStepRouterResponse>;
|
|
301
301
|
/**
|
|
@@ -308,9 +308,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
308
308
|
formatResultOfQuickCommand: import("../network/types.js").MutationObject<Omit<{
|
|
309
309
|
slug: string;
|
|
310
310
|
authorization: string;
|
|
311
|
-
xAccountId?: string | null
|
|
312
|
-
xMemberId?: string | null
|
|
313
|
-
xUsername?: string | null
|
|
311
|
+
xAccountId?: string | null;
|
|
312
|
+
xMemberId?: string | null;
|
|
313
|
+
xUsername?: string | null;
|
|
314
314
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
315
315
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandFinalResultResponse>;
|
|
316
316
|
/**
|
|
@@ -319,9 +319,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
319
319
|
addFavoriteStackAi: import("../network/types.js").MutationObject<Omit<{
|
|
320
320
|
stackId: string;
|
|
321
321
|
authorization: string;
|
|
322
|
-
xAccountId?: string | null
|
|
323
|
-
xMemberId?: string | null
|
|
324
|
-
xUsername?: string | null
|
|
322
|
+
xAccountId?: string | null;
|
|
323
|
+
xMemberId?: string | null;
|
|
324
|
+
xUsername?: string | null;
|
|
325
325
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
326
326
|
/**
|
|
327
327
|
* Removes the resource of type Stack AI from the list of favorites.
|
|
@@ -329,9 +329,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
329
329
|
removeFavoriteStackAi: import("../network/types.js").MutationObject<Omit<{
|
|
330
330
|
stackId: string;
|
|
331
331
|
authorization: string;
|
|
332
|
-
xAccountId?: string | null
|
|
333
|
-
xMemberId?: string | null
|
|
334
|
-
xUsername?: string | null
|
|
332
|
+
xAccountId?: string | null;
|
|
333
|
+
xMemberId?: string | null;
|
|
334
|
+
xUsername?: string | null;
|
|
335
335
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
336
336
|
/**
|
|
337
337
|
* Updates a Quick Command
|
|
@@ -339,9 +339,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
339
339
|
updateQuickCommand: import("../network/types.js").MutationObject<Omit<{
|
|
340
340
|
slug: string;
|
|
341
341
|
authorization: string;
|
|
342
|
-
xAccountId?: string | null
|
|
343
|
-
xMemberId?: string | null
|
|
344
|
-
xUsername?: string | null
|
|
342
|
+
xAccountId?: string | null;
|
|
343
|
+
xMemberId?: string | null;
|
|
344
|
+
xUsername?: string | null;
|
|
345
345
|
quickCommandsUpdateRequest: import("../api/ai.js").QuickCommandsUpdateRequest;
|
|
346
346
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
347
347
|
/**
|
|
@@ -350,9 +350,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
350
350
|
addFavoriteQuickCommand: import("../network/types.js").MutationObject<Omit<{
|
|
351
351
|
slug: string;
|
|
352
352
|
authorization: string;
|
|
353
|
-
xAccountId?: string | null
|
|
354
|
-
xMemberId?: string | null
|
|
355
|
-
xUsername?: string | null
|
|
353
|
+
xAccountId?: string | null;
|
|
354
|
+
xMemberId?: string | null;
|
|
355
|
+
xUsername?: string | null;
|
|
356
356
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
357
357
|
/**
|
|
358
358
|
* Removes the resource of type Quick Command from the list of favorites.
|
|
@@ -360,9 +360,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
360
360
|
removeFavoriteQuickCommand: import("../network/types.js").MutationObject<Omit<{
|
|
361
361
|
slug: string;
|
|
362
362
|
authorization: string;
|
|
363
|
-
xAccountId?: string | null
|
|
364
|
-
xMemberId?: string | null
|
|
365
|
-
xUsername?: string | null
|
|
363
|
+
xAccountId?: string | null;
|
|
364
|
+
xMemberId?: string | null;
|
|
365
|
+
xUsername?: string | null;
|
|
366
366
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
367
367
|
private static toolsOfAgent;
|
|
368
368
|
sendChatMessage(request: FixedChatRequest, minChangeIntervalMS?: number): StreamedJson<ChatResponseWithSteps>;
|
|
@@ -370,9 +370,9 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
370
370
|
contentType: import("../api/ai.js").ContentDependencyType;
|
|
371
371
|
contentId: string;
|
|
372
372
|
authorization: string;
|
|
373
|
-
xAccountId?: string | null
|
|
374
|
-
xMemberId?: string | null
|
|
375
|
-
xUsername?: string | null
|
|
373
|
+
xAccountId?: string | null;
|
|
374
|
+
xMemberId?: string | null;
|
|
375
|
+
xUsername?: string | null;
|
|
376
376
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, FixedDependencyResponse>;
|
|
377
377
|
}
|
|
378
378
|
export declare const aiClient: AIClient;
|
package/dist/client/ai.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ai.d.ts","sourceRoot":"","sources":["../../src/client/ai.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAG7C,OAAO,EA+BL,2BAA2B,EAC3B,6BAA6B,EAQ9B,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAE5E,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAGpD,OAAO,EAEL,qBAAqB,EACrB,gBAAgB,EAEhB,yBAAyB,EACzB,uBAAuB,EAGxB,MAAM,SAAS,CAAA;AAEhB,cAAM,QAAS,SAAQ,uBAAuB;;IAK5C,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAWlE;;OAEG;IACH,cAAc;;;;;;uGAA0E;IACxF;;OAEG;IACH,2BAA2B;;;;4EAC4E;IACvG;;OAEG;IACH,kCAAkC;;;;4EACmD;IACrF;;OAEG;IACH,6BAA6B;;;kHACiC;IAC9D;;OAEG;IACH,iBAAiB;;;;;;;4EAC0E;IAC3F;;OAEG;IACH,QAAQ;;;;;;6GAAkE;IAC1E;;OAEG;IACH,gBAAgB;;;;;mHAAqE;IACrF;;OAEG;IACH,kBAAkB;;;;;;;mHAAuE;IACzF;;OAEG;IACH,SAAS;;;;;;kHAAiF;IAC1F;;;OAGG;IACH,aAAa;;;;;;;;mHAAqE;IAClF;;OAEG;IACH,gBAAgB;;;;;;;;mHAAqE;IACrF;;OAEG;IACH,YAAY;;;;;;;6GAA8E;IAC1F;;OAEG;IACH,2BAA2B;;;;;;;;wEAAiG;IAC5H;;OAEG;IACH,+BAA+B;;;;;;sHAAsF;IACrH;;OAEG;IACH,gBAAgB;;;;;;;;;sHAAkF;IAClG;;OAEG;IACH,eAAe;;;gHAAqF;IACpG;;OAEG;IACH,uBAAuB;;;;yGAA8G;IACrI;;OAEG;IACH,sBAAsB;;;wEAA2F;IACjH;;OAEG;IACH,KAAK;;;;;;;mHAAoF;IACzF;;OAEG;IACH,IAAI;;;;;;8FAKF;IACF;;OAEG;IACH,UAAU;;;;;;4EAAiG;IAC3G;;OAEG;IACH,YAAY;;;;;;wEAAwG;IACpH;;OAEG;IACH,UAAU;;;;;;;6GAAyF;IACnG;;OAEG;IACH,WAAW;;;;;;4EAAiE;IAC5E;;OAEG;IACH,uBAAuB;;;;;;;;sHAA0G;IACjI;;OAEG;IACH,+BAA+B
|
|
1
|
+
{"version":3,"file":"ai.d.ts","sourceRoot":"","sources":["../../src/client/ai.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAG7C,OAAO,EA+BL,2BAA2B,EAC3B,6BAA6B,EAQ9B,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAE5E,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAGpD,OAAO,EAEL,qBAAqB,EACrB,gBAAgB,EAEhB,yBAAyB,EACzB,uBAAuB,EAGxB,MAAM,SAAS,CAAA;AAEhB,cAAM,QAAS,SAAQ,uBAAuB;;IAK5C,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAWlE;;OAEG;IACH,cAAc;;;;;;uGAA0E;IACxF;;OAEG;IACH,2BAA2B;;;;4EAC4E;IACvG;;OAEG;IACH,kCAAkC;;;;4EACmD;IACrF;;OAEG;IACH,6BAA6B;;;kHACiC;IAC9D;;OAEG;IACH,iBAAiB;;;;;;;4EAC0E;IAC3F;;OAEG;IACH,QAAQ;;;;;;6GAAkE;IAC1E;;OAEG;IACH,gBAAgB;;;;;mHAAqE;IACrF;;OAEG;IACH,kBAAkB;;;;;;;mHAAuE;IACzF;;OAEG;IACH,SAAS;;;;;;kHAAiF;IAC1F;;;OAGG;IACH,aAAa;;;;;;;;mHAAqE;IAClF;;OAEG;IACH,gBAAgB;;;;;;;;mHAAqE;IACrF;;OAEG;IACH,YAAY;;;;;;;6GAA8E;IAC1F;;OAEG;IACH,2BAA2B;;;;;;;;wEAAiG;IAC5H;;OAEG;IACH,+BAA+B;;;;;;sHAAsF;IACrH;;OAEG;IACH,gBAAgB;;;;;;;;;sHAAkF;IAClG;;OAEG;IACH,eAAe;;;gHAAqF;IACpG;;OAEG;IACH,uBAAuB;;;;yGAA8G;IACrI;;OAEG;IACH,sBAAsB;;;wEAA2F;IACjH;;OAEG;IACH,KAAK;;;;;;;mHAAoF;IACzF;;OAEG;IACH,IAAI;;;;;;8FAKF;IACF;;OAEG;IACH,UAAU;;;;;;4EAAiG;IAC3G;;OAEG;IACH,YAAY;;;;;;wEAAwG;IACpH;;OAEG;IACH,UAAU;;;;;;;6GAAyF;IACnG;;OAEG;IACH,WAAW;;;;;;4EAAiE;IAC5E;;OAEG;IACH,uBAAuB;;;;;;;;sHAA0G;IACjI;;OAEG;IACH,+BAA+B;;;;;;;;;kBAKf,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC;0DAMjC;IAEF;;;;OAIG;IACH,qBAAqB;;;;;;;;yGAAqG;IAC1H;;MAEE;IACF,iBAAiB;;;;;;;;+HAAkH;IACnI;;OAEG;IACH,2BAA2B,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,6BAA6B,EAAE,6BAA6B,EACtH,mBAAmB,CAAC,EAAE,MAAM,GAC5B,YAAY,CAAC,2BAA2B,CAAC;IAiB3C;;OAEG;IACH,0BAA0B;;;;;;;wHAA2F;IACrH;;MAEE;IACF,kBAAkB;;;;;;4EAAoF;IACtG;;OAEG;IACH,qBAAqB;;;;;;4EAAyF;IAC9G;;OAEG;IACH,kBAAkB;;;;;;;4EAAsF;IACxG;;OAEG;IACH,uBAAuB;;;;;;4EAAsF;IAC7G;;OAEG;IACH,0BAA0B;;;;;;4EAA2F;mBAEhG,YAAY;IAiBjC,eAAe,CAAC,OAAO,EAAE,gBAAgB,EAAE,mBAAmB,CAAC,EAAE,MAAM,GAAG,YAAY,CAAC,qBAAqB,CAAC;IAmM7G,mBAAmB;;;;;;;4FAKjB;CACH;AAED,eAAO,MAAM,QAAQ,UAAiB,CAAA"}
|
|
@@ -22,7 +22,7 @@ declare class ApiManagementClient extends ReactQueryNetworkClient {
|
|
|
22
22
|
schemaId: string;
|
|
23
23
|
schemaVersionId: string;
|
|
24
24
|
entryId: string;
|
|
25
|
-
presenter?: string
|
|
25
|
+
presenter?: string;
|
|
26
26
|
}, object>;
|
|
27
27
|
/**
|
|
28
28
|
* Gets the version of one api
|
|
@@ -43,7 +43,7 @@ declare class ApiManagementClient extends ReactQueryNetworkClient {
|
|
|
43
43
|
schemaId: string;
|
|
44
44
|
schemaVersionId: string;
|
|
45
45
|
entryId: string;
|
|
46
|
-
name?: string
|
|
46
|
+
name?: string;
|
|
47
47
|
}, object>;
|
|
48
48
|
}
|
|
49
49
|
export declare const apiManagementClient: ApiManagementClient;
|
|
@@ -10,21 +10,21 @@ declare class CloudAccountClient extends ReactQueryNetworkClient {
|
|
|
10
10
|
*/
|
|
11
11
|
cloudAccounts: import("../network/types.js").InfiniteQueryObject<Omit<{
|
|
12
12
|
jwtToken: import("../api/cloudAccount.js").JwtToken;
|
|
13
|
-
sortBy?: string
|
|
14
|
-
sortOrder?: string
|
|
15
|
-
filter?: string
|
|
16
|
-
page?: number
|
|
17
|
-
pageSize?: number
|
|
18
|
-
$type?: "CustomCloud" | "CloudServices"
|
|
19
|
-
environment?: string
|
|
20
|
-
status?: "Connecting" | "Connected" | "Disconnected" | "Failed" | "Unknown"
|
|
13
|
+
sortBy?: string;
|
|
14
|
+
sortOrder?: string;
|
|
15
|
+
filter?: string;
|
|
16
|
+
page?: number;
|
|
17
|
+
pageSize?: number;
|
|
18
|
+
$type?: "CustomCloud" | "CloudServices";
|
|
19
|
+
environment?: string;
|
|
20
|
+
status?: "Connecting" | "Connected" | "Disconnected" | "Failed" | "Unknown";
|
|
21
21
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudAccount.js").PaginatedResourceCloudAccountResponse, "data">;
|
|
22
22
|
/**
|
|
23
23
|
* Gets a list of cloud accounts connected to a workspace
|
|
24
24
|
*/
|
|
25
25
|
cloudAccountByWorkspace: import("../network/types.js").QueryObject<Omit<{
|
|
26
26
|
jwtToken: import("../api/cloudAccount.js").JwtToken;
|
|
27
|
-
accountId?: string
|
|
27
|
+
accountId?: string;
|
|
28
28
|
id: string;
|
|
29
29
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudAccount.js").CloudAccountDetails[]>;
|
|
30
30
|
/**
|
|
@@ -39,7 +39,7 @@ declare class CloudAccountClient extends ReactQueryNetworkClient {
|
|
|
39
39
|
*/
|
|
40
40
|
createCloudAccount: import("../network/types.js").MutationObject<Omit<{
|
|
41
41
|
jwtToken: import("../api/cloudAccount.js").JwtToken;
|
|
42
|
-
stackspotCustomerIp?: string
|
|
42
|
+
stackspotCustomerIp?: string;
|
|
43
43
|
connectAccountRequestV2: import("../api/cloudAccount.js").ConnectAccountRequestV2;
|
|
44
44
|
}, "jwtToken" | "connectAccountRequestV2"> & {
|
|
45
45
|
connectAccountRequestV2: FixedConnectAccountRequestV2;
|
|
@@ -49,7 +49,7 @@ declare class CloudAccountClient extends ReactQueryNetworkClient {
|
|
|
49
49
|
*/
|
|
50
50
|
deleteCloudAccount: import("../network/types.js").MutationObject<Omit<{
|
|
51
51
|
jwtToken: import("../api/cloudAccount.js").JwtToken;
|
|
52
|
-
stackspotCustomerIp?: string
|
|
52
|
+
stackspotCustomerIp?: string;
|
|
53
53
|
id: string;
|
|
54
54
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudAccount.js").DeleteCloudAccountResponse>;
|
|
55
55
|
/**
|
|
@@ -57,7 +57,7 @@ declare class CloudAccountClient extends ReactQueryNetworkClient {
|
|
|
57
57
|
*/
|
|
58
58
|
deleteAllCloudAccounts: import("../network/types.js").MutationObject<Omit<{
|
|
59
59
|
jwtToken: import("../api/cloudAccount.js").JwtToken;
|
|
60
|
-
stackspotCustomerIp?: string
|
|
60
|
+
stackspotCustomerIp?: string;
|
|
61
61
|
workspaceId: string;
|
|
62
62
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudAccount.js").DeleteCloudAccountResponse>;
|
|
63
63
|
/**
|
|
@@ -65,7 +65,7 @@ declare class CloudAccountClient extends ReactQueryNetworkClient {
|
|
|
65
65
|
*/
|
|
66
66
|
createCloudServicesAccount: import("../network/types.js").MutationObject<Omit<{
|
|
67
67
|
jwtToken: import("../api/cloudAccount.js").JwtToken;
|
|
68
|
-
stackspotCustomerIp?: string
|
|
68
|
+
stackspotCustomerIp?: string;
|
|
69
69
|
managedAccountProvisionRequest: import("../api/cloudAccount.js").ManagedAccountProvisionRequest;
|
|
70
70
|
}, "jwtToken" | "managedAccountProvisionRequest"> & {
|
|
71
71
|
managedAccountProvisionRequest: FixedManagedAccountProvisionRequest;
|
|
@@ -8,9 +8,9 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
|
|
|
8
8
|
* Get a list of organizations
|
|
9
9
|
*/
|
|
10
10
|
listOrganizations: import("../network/types.js").QueryObject<Omit<{
|
|
11
|
-
xAccountId?: string
|
|
12
|
-
page?: number
|
|
13
|
-
perPage?: number
|
|
11
|
+
xAccountId?: string;
|
|
12
|
+
page?: number;
|
|
13
|
+
perPage?: number;
|
|
14
14
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").OrganizationManifestV1[]>;
|
|
15
15
|
/**
|
|
16
16
|
* Get organization by id
|
|
@@ -58,25 +58,25 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
|
|
|
58
58
|
* List all runtimes
|
|
59
59
|
*/
|
|
60
60
|
listRuntimes: import("../network/types.js").QueryObject<Omit<{
|
|
61
|
-
xAccountId?: string
|
|
62
|
-
page?: number
|
|
63
|
-
perPage?: number
|
|
61
|
+
xAccountId?: string;
|
|
62
|
+
page?: number;
|
|
63
|
+
perPage?: number;
|
|
64
64
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").RuntimeManifestV1[]>;
|
|
65
65
|
/**
|
|
66
66
|
* List all tenants
|
|
67
67
|
*/
|
|
68
68
|
listTenants: import("../network/types.js").QueryObject<Omit<{
|
|
69
|
-
xAccountId?: string
|
|
70
|
-
page?: number
|
|
71
|
-
perPage?: number
|
|
69
|
+
xAccountId?: string;
|
|
70
|
+
page?: number;
|
|
71
|
+
perPage?: number;
|
|
72
72
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").TenantManifestV1[]>;
|
|
73
73
|
/**
|
|
74
74
|
* List tenants from organization
|
|
75
75
|
*/
|
|
76
76
|
listTenantsByOrganization: import("../network/types.js").QueryObject<Omit<{
|
|
77
77
|
organizationId: string;
|
|
78
|
-
page?: number
|
|
79
|
-
perPage?: number
|
|
78
|
+
page?: number;
|
|
79
|
+
perPage?: number;
|
|
80
80
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").TenantManifestV1[]>;
|
|
81
81
|
/**
|
|
82
82
|
* List runtimes from tenant
|
|
@@ -84,8 +84,8 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
|
|
|
84
84
|
listRuntimesByTenant: import("../network/types.js").QueryObject<Omit<{
|
|
85
85
|
organizationId: string;
|
|
86
86
|
tenantId: string;
|
|
87
|
-
page?: number
|
|
88
|
-
perPage?: number
|
|
87
|
+
page?: number;
|
|
88
|
+
perPage?: number;
|
|
89
89
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").RuntimeManifestV1[]>;
|
|
90
90
|
/**
|
|
91
91
|
* List applications deployments from runtime
|
|
@@ -121,7 +121,7 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
|
|
|
121
121
|
tenantId: string;
|
|
122
122
|
runtimeId: string;
|
|
123
123
|
deploymentId: string;
|
|
124
|
-
numberOfLines?: number
|
|
124
|
+
numberOfLines?: number;
|
|
125
125
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").LogManifestV1>;
|
|
126
126
|
/**
|
|
127
127
|
* Get health from a application deployment
|
|
@@ -162,7 +162,7 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
|
|
|
162
162
|
* Associate an runtime with an workspace environment
|
|
163
163
|
*/
|
|
164
164
|
associateRuntimeWithWorkspaceEnv: import("../network/types.js").MutationObject<Omit<{
|
|
165
|
-
xAccountId?: string
|
|
165
|
+
xAccountId?: string;
|
|
166
166
|
organizationId: string;
|
|
167
167
|
tenantId: string;
|
|
168
168
|
associateRuntimeWithWorkspaceEnvironmentRequest: import("../api/cloudPlatformHorizon.js").AssociateRuntimeWithWorkspaceEnvironmentRequest;
|
|
@@ -171,7 +171,7 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
|
|
|
171
171
|
* Retrieves associate runtime with a workspace's environment
|
|
172
172
|
*/
|
|
173
173
|
getRuntimeAssociations: import("../network/types.js").QueryObject<Omit<{
|
|
174
|
-
xAccountId?: string
|
|
174
|
+
xAccountId?: string;
|
|
175
175
|
organizationId: string;
|
|
176
176
|
tenantId: string;
|
|
177
177
|
runtimeId: string;
|
|
@@ -180,10 +180,10 @@ declare class CloudPlatformHorizonClient extends ReactQueryNetworkClient {
|
|
|
180
180
|
* List runtime associations to workspace's environment
|
|
181
181
|
*/
|
|
182
182
|
listRuntimeAssociationsToEnv: import("../network/types.js").QueryObject<Omit<{
|
|
183
|
-
xAccountId?: string
|
|
183
|
+
xAccountId?: string;
|
|
184
184
|
workspaceId: string;
|
|
185
|
-
envId?: string
|
|
186
|
-
applicationId?: string
|
|
185
|
+
envId?: string;
|
|
186
|
+
applicationId?: string;
|
|
187
187
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatformHorizon.js").ListRuntimeWorkspaceEnvironmentAssociationsResponse>;
|
|
188
188
|
}
|
|
189
189
|
export declare const cloudPlatformHorizonClient: CloudPlatformHorizonClient;
|