@stack-spot/portal-network 0.189.0 → 0.190.0-beta.1
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 +146 -0
- package/dist/api/account.d.ts +85 -202
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +68 -140
- package/dist/api/account.js.map +1 -1
- package/dist/api/ai.d.ts +189 -86
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +238 -142
- package/dist/api/ai.js.map +1 -1
- package/dist/api/cloudPlatform.d.ts +363 -188
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +253 -80
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/api/codeShift.d.ts +5 -3
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/genAiInference.d.ts +22 -2
- package/dist/api/genAiInference.d.ts.map +1 -1
- package/dist/api/genAiInference.js +22 -3
- package/dist/api/genAiInference.js.map +1 -1
- package/dist/client/account.d.ts +18 -4
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +58 -31
- package/dist/client/account.js.map +1 -1
- package/dist/client/ai.d.ts +29 -0
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +121 -14
- package/dist/client/ai.js.map +1 -1
- package/dist/client/cloud-platform.d.ts +128 -1
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +92 -2
- package/dist/client/cloud-platform.js.map +1 -1
- package/dist/client/code-shift.js +1 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/types.d.ts +26 -5
- package/dist/client/types.d.ts.map +1 -1
- package/package.json +3 -3
- package/readme.md +2 -1
- package/src/api/account.ts +127 -392
- package/src/api/agent-tools.ts +3 -0
- package/src/api/agent.ts +2 -0
- package/src/api/ai.ts +364 -157
- package/src/api/cloudPlatform.ts +638 -264
- package/src/api/codeShift.ts +5 -3
- package/src/api/genAiInference.ts +47 -4
- package/src/api/notification.ts +2 -0
- package/src/client/account.ts +54 -38
- package/src/client/ai.ts +126 -13
- package/src/client/cloud-platform.ts +52 -2
- package/src/client/code-shift.ts +1 -1
- package/src/client/types.ts +27 -5
|
@@ -9,12 +9,14 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
9
9
|
*/
|
|
10
10
|
listFoundations: import("../network/types.js").QueryObject<Omit<{
|
|
11
11
|
authorization: string;
|
|
12
|
+
xAccountId?: string | undefined;
|
|
12
13
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListFoundationResponse>;
|
|
13
14
|
/**
|
|
14
15
|
* Get a foundation by id
|
|
15
16
|
*/
|
|
16
17
|
foundation: import("../network/types.js").QueryObject<Omit<{
|
|
17
18
|
authorization: string;
|
|
19
|
+
xAccountId?: string | undefined;
|
|
18
20
|
foundationId: string;
|
|
19
21
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
|
|
20
22
|
/**
|
|
@@ -22,6 +24,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
22
24
|
*/
|
|
23
25
|
getFolder: import("../network/types.js").QueryObject<Omit<{
|
|
24
26
|
authorization: string;
|
|
27
|
+
xAccountId?: string | undefined;
|
|
25
28
|
foundationId: string;
|
|
26
29
|
folderId: string;
|
|
27
30
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
|
|
@@ -36,6 +39,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
36
39
|
*/
|
|
37
40
|
createFoundation: import("../network/types.js").MutationObject<Omit<{
|
|
38
41
|
authorization: string;
|
|
42
|
+
xAccountId?: string | undefined;
|
|
39
43
|
createFoundationRequest: import("../api/cloudPlatform.js").CreateFoundationRequest;
|
|
40
44
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FoundationResponse>;
|
|
41
45
|
/**
|
|
@@ -43,6 +47,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
43
47
|
*/
|
|
44
48
|
createFolder: import("../network/types.js").MutationObject<Omit<{
|
|
45
49
|
authorization: string;
|
|
50
|
+
xAccountId?: string | undefined;
|
|
46
51
|
foundationId: string;
|
|
47
52
|
createFolderRequest: import("../api/cloudPlatform.js").CreateFolderRequest;
|
|
48
53
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
|
|
@@ -51,15 +56,17 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
51
56
|
*/
|
|
52
57
|
listDnsZones: import("../network/types.js").QueryObject<Omit<{
|
|
53
58
|
authorization: string;
|
|
59
|
+
xAccountId?: string | undefined;
|
|
54
60
|
foundationId: string;
|
|
55
61
|
projectId?: string | undefined;
|
|
56
|
-
privacy?:
|
|
62
|
+
privacy?: "PRIVATE" | "PUBLIC" | undefined;
|
|
57
63
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListDnsZoneResponse>;
|
|
58
64
|
/**
|
|
59
65
|
* Create a dns zone
|
|
60
66
|
*/
|
|
61
67
|
createDnsZone: import("../network/types.js").MutationObject<Omit<{
|
|
62
68
|
authorization: string;
|
|
69
|
+
xAccountId?: string | undefined;
|
|
63
70
|
foundationId: string;
|
|
64
71
|
createDnsZoneRequest: import("../api/cloudPlatform.js").CreateDnsZoneRequest;
|
|
65
72
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZoneResponse>;
|
|
@@ -68,6 +75,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
68
75
|
*/
|
|
69
76
|
listCidrs: import("../network/types.js").QueryObject<Omit<{
|
|
70
77
|
authorization: string;
|
|
78
|
+
xAccountId?: string | undefined;
|
|
71
79
|
foundationId: string;
|
|
72
80
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListCidrResponse>;
|
|
73
81
|
/**
|
|
@@ -75,6 +83,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
75
83
|
*/
|
|
76
84
|
createCidr: import("../network/types.js").MutationObject<Omit<{
|
|
77
85
|
authorization: string;
|
|
86
|
+
xAccountId?: string | undefined;
|
|
78
87
|
foundationId: string;
|
|
79
88
|
createCidrRequest: import("../api/cloudPlatform.js").CreateCidrRequest;
|
|
80
89
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CidrResponse>;
|
|
@@ -83,6 +92,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
83
92
|
*/
|
|
84
93
|
listCertificates: import("../network/types.js").QueryObject<Omit<{
|
|
85
94
|
authorization: string;
|
|
95
|
+
xAccountId?: string | undefined;
|
|
86
96
|
foundationId: string;
|
|
87
97
|
forInbound?: "TRUE" | "FALSE" | undefined;
|
|
88
98
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListCertificateResponse>;
|
|
@@ -91,6 +101,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
91
101
|
*/
|
|
92
102
|
getCertificate: import("../network/types.js").QueryObject<Omit<{
|
|
93
103
|
authorization: string;
|
|
104
|
+
xAccountId?: string | undefined;
|
|
94
105
|
foundationId: string;
|
|
95
106
|
certificateId: string;
|
|
96
107
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
|
|
@@ -99,6 +110,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
99
110
|
*/
|
|
100
111
|
createCertificate: import("../network/types.js").MutationObject<Omit<{
|
|
101
112
|
authorization: string;
|
|
113
|
+
xAccountId?: string | undefined;
|
|
102
114
|
foundationId: string;
|
|
103
115
|
body: import("../api/cloudPlatform.js").CreatePublicCertificateRequest | import("../api/cloudPlatform.js").ImportCertificateRequest;
|
|
104
116
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
|
|
@@ -107,6 +119,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
107
119
|
*/
|
|
108
120
|
createProject: import("../network/types.js").MutationObject<Omit<{
|
|
109
121
|
authorization: string;
|
|
122
|
+
xAccountId?: string | undefined;
|
|
110
123
|
foundationId: string;
|
|
111
124
|
createProjectRequest: import("../api/cloudPlatform.js").CreateProjectRequest;
|
|
112
125
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
|
|
@@ -115,6 +128,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
115
128
|
*/
|
|
116
129
|
getProjectById: import("../network/types.js").QueryObject<Omit<{
|
|
117
130
|
authorization: string;
|
|
131
|
+
xAccountId?: string | undefined;
|
|
118
132
|
foundationId: string;
|
|
119
133
|
projectId: string;
|
|
120
134
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
|
|
@@ -123,6 +137,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
123
137
|
*/
|
|
124
138
|
listDnsRecords: import("../network/types.js").QueryObject<Omit<{
|
|
125
139
|
authorization: string;
|
|
140
|
+
xAccountId?: string | undefined;
|
|
126
141
|
foundationId: string;
|
|
127
142
|
projectId?: string | undefined;
|
|
128
143
|
dnsZoneId?: string | undefined;
|
|
@@ -132,6 +147,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
132
147
|
*/
|
|
133
148
|
createDnsRecord: import("../network/types.js").MutationObject<Omit<{
|
|
134
149
|
authorization: string;
|
|
150
|
+
xAccountId?: string | undefined;
|
|
135
151
|
foundationId: string;
|
|
136
152
|
createDnsRecordRequest: import("../api/cloudPlatform.js").CreateDnsRecordRequest;
|
|
137
153
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsRecordResponse>;
|
|
@@ -140,6 +156,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
140
156
|
*/
|
|
141
157
|
listNetworks: import("../network/types.js").QueryObject<Omit<{
|
|
142
158
|
authorization: string;
|
|
159
|
+
xAccountId?: string | undefined;
|
|
143
160
|
foundationId: string;
|
|
144
161
|
projectId?: string | undefined;
|
|
145
162
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListNetworkResponse>;
|
|
@@ -148,6 +165,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
148
165
|
*/
|
|
149
166
|
createNetwork: import("../network/types.js").MutationObject<Omit<{
|
|
150
167
|
authorization: string;
|
|
168
|
+
xAccountId?: string | undefined;
|
|
151
169
|
foundationId: string;
|
|
152
170
|
createNetworkRequest: import("../api/cloudPlatform.js").CreateNetworkRequest;
|
|
153
171
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
|
|
@@ -156,6 +174,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
156
174
|
*/
|
|
157
175
|
listInbounds: import("../network/types.js").QueryObject<Omit<{
|
|
158
176
|
authorization: string;
|
|
177
|
+
xAccountId?: string | undefined;
|
|
159
178
|
foundationId: string;
|
|
160
179
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListInboundResponse>;
|
|
161
180
|
/**
|
|
@@ -163,6 +182,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
163
182
|
*/
|
|
164
183
|
createInbound: import("../network/types.js").MutationObject<Omit<{
|
|
165
184
|
authorization: string;
|
|
185
|
+
xAccountId?: string | undefined;
|
|
166
186
|
foundationId: string;
|
|
167
187
|
createInboundRequest: import("../api/cloudPlatform.js").CreateInboundRequest;
|
|
168
188
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").InboundResponse>;
|
|
@@ -171,6 +191,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
171
191
|
*/
|
|
172
192
|
addNetworkConnection: import("../network/types.js").MutationObject<Omit<{
|
|
173
193
|
authorization: string;
|
|
194
|
+
xAccountId?: string | undefined;
|
|
174
195
|
foundationId: string;
|
|
175
196
|
createNetworkConnectionRequest: import("../api/cloudPlatform.js").CreateNetworkConnectionRequest;
|
|
176
197
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkConnectionResponse>;
|
|
@@ -179,6 +200,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
179
200
|
*/
|
|
180
201
|
getNetworkConnections: import("../network/types.js").QueryObject<Omit<{
|
|
181
202
|
authorization: string;
|
|
203
|
+
xAccountId?: string | undefined;
|
|
182
204
|
foundationId: string;
|
|
183
205
|
accepterNetworkId?: string | undefined;
|
|
184
206
|
accepterProjectId?: string | undefined;
|
|
@@ -190,6 +212,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
190
212
|
*/
|
|
191
213
|
acceptNetworkConnection: import("../network/types.js").MutationObject<Omit<{
|
|
192
214
|
authorization: string;
|
|
215
|
+
xAccountId?: string | undefined;
|
|
193
216
|
foundationId: string;
|
|
194
217
|
networkConnectionId: string;
|
|
195
218
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkConnectionResponse>;
|
|
@@ -198,6 +221,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
198
221
|
*/
|
|
199
222
|
listVpns: import("../network/types.js").QueryObject<Omit<{
|
|
200
223
|
authorization: string;
|
|
224
|
+
xAccountId?: string | undefined;
|
|
201
225
|
foundationId: string;
|
|
202
226
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListVpnResponse>;
|
|
203
227
|
/**
|
|
@@ -205,6 +229,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
205
229
|
*/
|
|
206
230
|
getVpnConfiguration: import("../network/types.js").QueryObject<Omit<{
|
|
207
231
|
authorization: string;
|
|
232
|
+
xAccountId?: string | undefined;
|
|
208
233
|
foundationId: string;
|
|
209
234
|
vpnId: string;
|
|
210
235
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnConfigurationResponse>;
|
|
@@ -213,6 +238,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
213
238
|
*/
|
|
214
239
|
createVpn: import("../network/types.js").MutationObject<Omit<{
|
|
215
240
|
authorization: string;
|
|
241
|
+
xAccountId?: string | undefined;
|
|
216
242
|
foundationId: string;
|
|
217
243
|
createVpnRequest: import("../api/cloudPlatform.js").CreateVpnRequest;
|
|
218
244
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnResponse>;
|
|
@@ -221,6 +247,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
221
247
|
*/
|
|
222
248
|
getNetworkById: import("../network/types.js").QueryObject<Omit<{
|
|
223
249
|
authorization: string;
|
|
250
|
+
xAccountId?: string | undefined;
|
|
224
251
|
foundationId: string;
|
|
225
252
|
networkId: string;
|
|
226
253
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
|
|
@@ -229,6 +256,7 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
229
256
|
*/
|
|
230
257
|
listTenants: import("../network/types.js").QueryObject<Omit<{
|
|
231
258
|
authorization: string;
|
|
259
|
+
xAccountId?: string | undefined;
|
|
232
260
|
foundationId: string;
|
|
233
261
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListTenantResponse>;
|
|
234
262
|
/**
|
|
@@ -236,9 +264,108 @@ declare class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
236
264
|
*/
|
|
237
265
|
createTenant: import("../network/types.js").MutationObject<Omit<{
|
|
238
266
|
authorization: string;
|
|
267
|
+
xAccountId?: string | undefined;
|
|
239
268
|
foundationId: string;
|
|
240
269
|
createTenantRequest: import("../api/cloudPlatform.js").CreateTenantRequest;
|
|
241
270
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").TenantResponse>;
|
|
271
|
+
/**
|
|
272
|
+
* Get a list of runtimes
|
|
273
|
+
*/
|
|
274
|
+
listRuntimes: import("../network/types.js").QueryObject<Omit<{
|
|
275
|
+
authorization: string;
|
|
276
|
+
xAccountId?: string | undefined;
|
|
277
|
+
foundationId: string;
|
|
278
|
+
tenantId?: string | undefined;
|
|
279
|
+
projectId?: string | undefined;
|
|
280
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ListRuntimeResponse>;
|
|
281
|
+
/**
|
|
282
|
+
* Create a runtime
|
|
283
|
+
*/
|
|
284
|
+
createRuntime: import("../network/types.js").MutationObject<Omit<{
|
|
285
|
+
authorization: string;
|
|
286
|
+
xAccountId?: string | undefined;
|
|
287
|
+
foundationId: string;
|
|
288
|
+
createRuntimeRequest: import("../api/cloudPlatform.js").CreateRuntimeRequest;
|
|
289
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").RuntimeResponse>;
|
|
290
|
+
/**
|
|
291
|
+
* Get a list of tags in folder
|
|
292
|
+
*/
|
|
293
|
+
getFolderTags: import("../network/types.js").QueryObject<Omit<{
|
|
294
|
+
authorization: string;
|
|
295
|
+
xAccountId?: string | undefined;
|
|
296
|
+
foundationId: string;
|
|
297
|
+
folderId: string;
|
|
298
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").Tag[]>;
|
|
299
|
+
/**
|
|
300
|
+
* Update folder tags
|
|
301
|
+
*/
|
|
302
|
+
updateFolderTags: import("../network/types.js").MutationObject<Omit<{
|
|
303
|
+
authorization: string;
|
|
304
|
+
xAccountId?: string | undefined;
|
|
305
|
+
foundationId: string;
|
|
306
|
+
folderId: string;
|
|
307
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
308
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").FolderResponse>;
|
|
309
|
+
/**
|
|
310
|
+
* Update project tags
|
|
311
|
+
*/
|
|
312
|
+
updateProjectTags: import("../network/types.js").MutationObject<Omit<{
|
|
313
|
+
authorization: string;
|
|
314
|
+
xAccountId?: string | undefined;
|
|
315
|
+
foundationId: string;
|
|
316
|
+
projectId: string;
|
|
317
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
318
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").ProjectResponse>;
|
|
319
|
+
/**
|
|
320
|
+
* Update network tags
|
|
321
|
+
*/
|
|
322
|
+
updateNetworkTags: import("../network/types.js").MutationObject<Omit<{
|
|
323
|
+
authorization: string;
|
|
324
|
+
xAccountId?: string | undefined;
|
|
325
|
+
foundationId: string;
|
|
326
|
+
networkId: string;
|
|
327
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
328
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").NetworkResponse>;
|
|
329
|
+
/**
|
|
330
|
+
* Update cidr tags
|
|
331
|
+
*/
|
|
332
|
+
updateCidrTags: import("../network/types.js").MutationObject<Omit<{
|
|
333
|
+
authorization: string;
|
|
334
|
+
xAccountId?: string | undefined;
|
|
335
|
+
foundationId: string;
|
|
336
|
+
cidrId: string;
|
|
337
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
338
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CidrResponse>;
|
|
339
|
+
/**
|
|
340
|
+
* Update dns zone tags
|
|
341
|
+
*/
|
|
342
|
+
updateDnsZoneTags: import("../network/types.js").MutationObject<Omit<{
|
|
343
|
+
authorization: string;
|
|
344
|
+
xAccountId?: string | undefined;
|
|
345
|
+
foundationId: string;
|
|
346
|
+
dnsZoneId: string;
|
|
347
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
348
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").DnsZoneResponse>;
|
|
349
|
+
/**
|
|
350
|
+
* Update certificate tags
|
|
351
|
+
*/
|
|
352
|
+
updateCertificateTags: import("../network/types.js").MutationObject<Omit<{
|
|
353
|
+
authorization: string;
|
|
354
|
+
xAccountId?: string | undefined;
|
|
355
|
+
foundationId: string;
|
|
356
|
+
certificateId: string;
|
|
357
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
358
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").CertificateResponse>;
|
|
359
|
+
/**
|
|
360
|
+
* Update vpn tags
|
|
361
|
+
*/
|
|
362
|
+
updateVpnTags: import("../network/types.js").MutationObject<Omit<{
|
|
363
|
+
authorization: string;
|
|
364
|
+
xAccountId?: string | undefined;
|
|
365
|
+
foundationId: string;
|
|
366
|
+
vpnId: string;
|
|
367
|
+
body: import("../api/cloudPlatform.js").Tag[];
|
|
368
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/cloudPlatform.js").VpnResponse>;
|
|
242
369
|
}
|
|
243
370
|
export declare const cloudPlatformClient: CloudPlatformClient;
|
|
244
371
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cloud-platform.d.ts","sourceRoot":"","sources":["../../src/client/cloud-platform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"cloud-platform.d.ts","sourceRoot":"","sources":["../../src/client/cloud-platform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AA6C7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAK5E,cAAM,mBAAoB,SAAQ,uBAAuB;;IAKvD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAGlE;;OAEG;IACH,eAAe;;;0HAAwD;IACvE;;OAEG;IACH,UAAU;;;;sHAAsD;IAChE;;OAEG;IACH,SAAS;;;;;kHAAkD;IAC3D;;OAEG;IACH,aAAa;;SAAkD;IAC/D;;OAEG;IACH,gBAAgB;;;;sHAA4D;IAC5E;;OAEG;IACH,YAAY;;;;;kHAAwD;IACpE;;OAEG;IACH,YAAY;;;;;;uHAAoD;IAChE;;OAEG;IACH,aAAa;;;;;mHAAyD;IACtE;;OAEG;IACH,SAAS;;;;oHAAiD;IAC1D;;OAEG;IACH,UAAU;;;;;gHAAsD;IAChE;;OAEG;IACH,gBAAgB;;;;;2HAAyD;IACzE;;OAEG;IACH,cAAc;;;;;uHAAuD;IACrE;;OAEG;IACH,iBAAiB;;;;;uHAA6D;IAC9E;;OAEG;IACH,aAAa;;;;;mHAAyD;IACtE;;OAEG;IACH,cAAc;;;;;mHAAmD;IACjE;;OAEG;IACH,cAAc;;;;;;yHAAsD;IACpE;;OAEG;IACH,eAAe;;;;;qHAA2D;IAC1E;;OAEG;IACH,YAAY;;;;;uHAAoD;IAChE;;OAEG;IACH,aAAa;;;;;mHAAyD;IACtE;;OAEG;IACH,YAAY;;;;uHAAoD;IAChE;;OAEG;IACH,aAAa;;;;;mHAAyD;IACtE;;OAEG;IACH,oBAAoB;;;;;6HAAmE;IACvF;;OAEG;IACH,qBAAqB;;;;;;;;iIAA8D;IACnF;;OAEG;IACH,uBAAuB;;;;;6HAAmE;IAC1F;;OAEG;IACH,QAAQ;;;;mHAAiD;IACzD;;OAEG;IACH,mBAAmB;;;;;4HAA4D;IAC/E;;OAEG;IACH,SAAS;;;;;+GAAqD;IAC9D;;OAEG;IACH,cAAc;;;;;mHAAmD;IACjE;;KAEC;IACD,WAAW;;;;sHAAmD;IAC9D;;KAEC;IACD,YAAY;;;;;kHAAwD;IACpE;;MAEE;IACF,YAAY;;;;;;uHAAoD;IAChE;;MAEE;IACF,aAAa;;;;;mHAAyD;IACtE;;MAEE;IACF,aAAa;;;;;yGAAsD;IACnE;;MAEE;IACF,gBAAgB;;;;;;kHAAyD;IACzE;;MAEE;IACF,iBAAiB;;;;;;mHAA0D;IAC3E;;MAEE;IACF,iBAAiB;;;;;;mHAA0D;IAC3E;;MAEE;IACF,cAAc;;;;;;gHAAuD;IACrE;;MAEE;IACF,iBAAiB;;;;;;mHAA0D;IAC3E;;MAEE;IACF,qBAAqB;;;;;;uHAA8D;IACnF;;MAEE;IACF,aAAa;;;;;;+GAAsD;CACpE;AAED,eAAO,MAAM,mBAAmB,qBAA4B,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { acceptNetworkConnection, createCertificate, createCidr, createDnsRecord, createDnsZone, createFolder, createFoundation, createInbound, createNetwork, createNetworkConnection, createProject, createTenant, createVpn, defaults, getCertificate, getFolder, getFoundation, getNetwork,
|
|
1
|
+
import { acceptNetworkConnection, createCertificate, createCidr, createDnsRecord, createDnsZone, createFolder, createFoundation, createInbound, createNetwork, createNetworkConnection, createProject, createRuntime, createTenant, createVpn, defaults, getCertificate, getFolder, getFolderTags, getFoundation, getNetwork, getProject, getVpnConfiguration, listCertificates, listCidr, listDnsRecord, listDnsZone, listFoundations, listInbound, listNetwork, listNetworkConnection, listRuntime, listTenant, listVpns, providers, putCertificateTags, putCidrTags, putDnsZoneTags, putFolderTags, putNetworkTags, putProjectTags, putVpnTags, } from '../api/cloudPlatform.js';
|
|
2
2
|
import { DefaultAPIError } from '../error/DefaultAPIError.js';
|
|
3
3
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
4
4
|
import { removeAuthorizationParam } from '../utils/remove-authorization-param.js';
|
|
@@ -140,7 +140,7 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
140
140
|
enumerable: true,
|
|
141
141
|
configurable: true,
|
|
142
142
|
writable: true,
|
|
143
|
-
value: this.query(removeAuthorizationParam(
|
|
143
|
+
value: this.query(removeAuthorizationParam(getProject))
|
|
144
144
|
});
|
|
145
145
|
/**
|
|
146
146
|
* Get a list of dns records
|
|
@@ -277,6 +277,96 @@ class CloudPlatformClient extends ReactQueryNetworkClient {
|
|
|
277
277
|
writable: true,
|
|
278
278
|
value: this.mutation(removeAuthorizationParam(createTenant))
|
|
279
279
|
});
|
|
280
|
+
/**
|
|
281
|
+
* Get a list of runtimes
|
|
282
|
+
*/
|
|
283
|
+
Object.defineProperty(this, "listRuntimes", {
|
|
284
|
+
enumerable: true,
|
|
285
|
+
configurable: true,
|
|
286
|
+
writable: true,
|
|
287
|
+
value: this.query(removeAuthorizationParam(listRuntime))
|
|
288
|
+
});
|
|
289
|
+
/**
|
|
290
|
+
* Create a runtime
|
|
291
|
+
*/
|
|
292
|
+
Object.defineProperty(this, "createRuntime", {
|
|
293
|
+
enumerable: true,
|
|
294
|
+
configurable: true,
|
|
295
|
+
writable: true,
|
|
296
|
+
value: this.mutation(removeAuthorizationParam(createRuntime))
|
|
297
|
+
});
|
|
298
|
+
/**
|
|
299
|
+
* Get a list of tags in folder
|
|
300
|
+
*/
|
|
301
|
+
Object.defineProperty(this, "getFolderTags", {
|
|
302
|
+
enumerable: true,
|
|
303
|
+
configurable: true,
|
|
304
|
+
writable: true,
|
|
305
|
+
value: this.query(removeAuthorizationParam(getFolderTags))
|
|
306
|
+
});
|
|
307
|
+
/**
|
|
308
|
+
* Update folder tags
|
|
309
|
+
*/
|
|
310
|
+
Object.defineProperty(this, "updateFolderTags", {
|
|
311
|
+
enumerable: true,
|
|
312
|
+
configurable: true,
|
|
313
|
+
writable: true,
|
|
314
|
+
value: this.mutation(removeAuthorizationParam(putFolderTags))
|
|
315
|
+
});
|
|
316
|
+
/**
|
|
317
|
+
* Update project tags
|
|
318
|
+
*/
|
|
319
|
+
Object.defineProperty(this, "updateProjectTags", {
|
|
320
|
+
enumerable: true,
|
|
321
|
+
configurable: true,
|
|
322
|
+
writable: true,
|
|
323
|
+
value: this.mutation(removeAuthorizationParam(putProjectTags))
|
|
324
|
+
});
|
|
325
|
+
/**
|
|
326
|
+
* Update network tags
|
|
327
|
+
*/
|
|
328
|
+
Object.defineProperty(this, "updateNetworkTags", {
|
|
329
|
+
enumerable: true,
|
|
330
|
+
configurable: true,
|
|
331
|
+
writable: true,
|
|
332
|
+
value: this.mutation(removeAuthorizationParam(putNetworkTags))
|
|
333
|
+
});
|
|
334
|
+
/**
|
|
335
|
+
* Update cidr tags
|
|
336
|
+
*/
|
|
337
|
+
Object.defineProperty(this, "updateCidrTags", {
|
|
338
|
+
enumerable: true,
|
|
339
|
+
configurable: true,
|
|
340
|
+
writable: true,
|
|
341
|
+
value: this.mutation(removeAuthorizationParam(putCidrTags))
|
|
342
|
+
});
|
|
343
|
+
/**
|
|
344
|
+
* Update dns zone tags
|
|
345
|
+
*/
|
|
346
|
+
Object.defineProperty(this, "updateDnsZoneTags", {
|
|
347
|
+
enumerable: true,
|
|
348
|
+
configurable: true,
|
|
349
|
+
writable: true,
|
|
350
|
+
value: this.mutation(removeAuthorizationParam(putDnsZoneTags))
|
|
351
|
+
});
|
|
352
|
+
/**
|
|
353
|
+
* Update certificate tags
|
|
354
|
+
*/
|
|
355
|
+
Object.defineProperty(this, "updateCertificateTags", {
|
|
356
|
+
enumerable: true,
|
|
357
|
+
configurable: true,
|
|
358
|
+
writable: true,
|
|
359
|
+
value: this.mutation(removeAuthorizationParam(putCertificateTags))
|
|
360
|
+
});
|
|
361
|
+
/**
|
|
362
|
+
* Update vpn tags
|
|
363
|
+
*/
|
|
364
|
+
Object.defineProperty(this, "updateVpnTags", {
|
|
365
|
+
enumerable: true,
|
|
366
|
+
configurable: true,
|
|
367
|
+
writable: true,
|
|
368
|
+
value: this.mutation(removeAuthorizationParam(putVpnTags))
|
|
369
|
+
});
|
|
280
370
|
}
|
|
281
371
|
buildStackSpotError(error) {
|
|
282
372
|
return new DefaultAPIError(error.data, error.status, scfDictionary, error.headers);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cloud-platform.js","sourceRoot":"","sources":["../../src/client/cloud-platform.ts"],"names":[],"mappings":"AACA,OAAO,EACL,uBAAuB,EACvB,iBAAiB,EACjB,UAAU,EACV,eAAe,EACf,aAAa,EACb,YAAY,EACZ,gBAAgB,EAChB,aAAa,EACb,aAAa,EACb,uBAAuB,EACvB,aAAa,EACb,YAAY,EACZ,SAAS,EACT,QAAQ,EACR,cAAc,EACd,SAAS,EACT,aAAa,EACb,UAAU,EACV,
|
|
1
|
+
{"version":3,"file":"cloud-platform.js","sourceRoot":"","sources":["../../src/client/cloud-platform.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { analyticsRepositoryLastReportStatusDownloadV1AnalyticsRepositoriesLastReportStatusDownloadGet, analyticsRepositoryLastReportStatusV1AnalyticsRepositoriesLastReportStatusGet, analyticsRepositoryUsageDownloadV1AnalyticsRepositoriesUsageDownloadGet, analyticsRepositoryUsageV1AnalyticsRepositoriesUsageGet, analyticsProgramGroupsLastReportStatusDownloadV1AnalyticsProgramGroupsLastReportStatusDownloadGet, analyticsProgramGroupsLastReportStatusV1AnalyticsProgramGroupsLastReportStatusGet, analyticsProgramGroupsUsageDownloadV1AnalyticsProgramGroupsUsageDownloadGet, analyticsProgramGroupsUsageV1AnalyticsProgramGroupsUsageGet, analyticsUserUsageDownloadV1AnalyticsUsersUsageDownloadGet, analyticsUserUsageV1AnalyticsUsersUsageGet, checkRoleRouteV1RolesRoleGet, createAccountSettingsV1SettingsPut, createIntegrationServiceV1IntegrationsPost, createModuleServiceV1ModulesPost, createProgramGroupServiceV1ProgramGroupsPost, createReposBatchServiceV1ReposBatchPost, createRepositoryServiceV1ReposPost, defaults, deleteIntegrationServiceV1IntegrationsIntegrationIdDelete, deleteProgramGroupServiceV1ProgramGroupsProgramGroupIdDelete, deleteRepositoryServiceV1ReposRepositoryIdDelete, dispatchModuleServiceV1ModulesDispatchesPost, downloadReportV1ReportsReportIdDownloadGet, downloadSearchReposScmServiceV1ReposSearchScmSearchRepoIdDownloadGet, generalReportSuccessAndErrorsV1AnalyticsReportsGeneralSuccessAndErrorsGet, getAccountSettingsV1SettingsGet, getIntegrationByIdServiceV1IntegrationsIntegrationIdGet, getProgramGroupByIdServiceV1ProgramGroupsProgramGroupIdGet, getReportPullRequestContentV1ReportsReportIdPullRequestGet, getReportV1ReportsReportIdGet, getRepositoryByIdServiceV1ReposRepositoryIdGet, getStatusSearchReposScmServiceV1ReposSearchScmSearchRepoIdStatusGet, listBranchesServiceV1ReposBranchesGet, listIntegrationServiceV1IntegrationsGet, listModulesServiceV1ModulesGet, listProgramGroupReportServiceV1ProgramGroupsProgramGroupIdReportsGet, listProgramGroupServiceV1ProgramGroupsGet, listRepositoryReportV1ReposRepositoryIdReportsGet, listRepositoryServiceV1ReposGet, listTagsServiceV1TagsGet, searchReposScmServiceV1ReposSearchScmGet, updateIntegrationServiceV1IntegrationsIntegrationIdPut, updateProgramGroupComponentsServiceV1ProgramGroupsProgramGroupIdComponentsPut, updateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut, updateRepositoryServiceV1ReposRepositoryIdPut, validateScmUrlServiceV1ReposValidateScmUrlPost, listUserServiceV1UsersGet, analyticsProgramGroupsDetailsV1AnalyticsProgramGroupsDetailsGet, analyticsProgramGroupsDetailsDownloadV1AnalyticsProgramGroupsDetailsDownloadGet, getModuleInputsV1ModulesModuleIdInputsGet, analyticsRepositoryDetailedReportDownloadV1AnalyticsRepositoriesDetailsDownloadGet, analyticsRepositoryDetailedReportV1AnalyticsRepositoriesDetailsGet, listRepositoryDownloadServiceV1ReposDownloadGet, listProgramGroupDownloadServiceV1ProgramGroupsDownloadGet, getModuleV1ModulesModuleIdGet, analyticsProgramGroupsTargetDetailsV1AnalyticsProgramGroupsTargetDetailsGet, analyticsProgramGroupsTargetDetailsDownloadV1AnalyticsProgramGroupsTargetDetailsDownloadGet, searchReposScmServiceV2ReposSearchScmPost, importReposWithTagsScmServiceV2ReposSearchScmSearchIdPost, searchReposScmV2V2ReposSearchScmSearchIdGet, analyticsRepositoryTargetDetailsV1AnalyticsRepositoriesTargetDetailsGet, analyticsRepositoryTargetDetailsDownloadV1AnalyticsRepositoriesTargetDetailsDownloadGet,
|
|
1
|
+
import { analyticsRepositoryLastReportStatusDownloadV1AnalyticsRepositoriesLastReportStatusDownloadGet, analyticsRepositoryLastReportStatusV1AnalyticsRepositoriesLastReportStatusGet, analyticsRepositoryUsageDownloadV1AnalyticsRepositoriesUsageDownloadGet, analyticsRepositoryUsageV1AnalyticsRepositoriesUsageGet, analyticsProgramGroupsLastReportStatusDownloadV1AnalyticsProgramGroupsLastReportStatusDownloadGet, analyticsProgramGroupsLastReportStatusV1AnalyticsProgramGroupsLastReportStatusGet, analyticsProgramGroupsUsageDownloadV1AnalyticsProgramGroupsUsageDownloadGet, analyticsProgramGroupsUsageV1AnalyticsProgramGroupsUsageGet, analyticsUserUsageDownloadV1AnalyticsUsersUsageDownloadGet, analyticsUserUsageV1AnalyticsUsersUsageGet, checkRoleRouteV1RolesRoleGet, createAccountSettingsV1SettingsPut, createIntegrationServiceV1IntegrationsPost, createModuleServiceV1ModulesPost, createProgramGroupServiceV1ProgramGroupsPost, createReposBatchServiceV1ReposBatchPost, createRepositoryServiceV1ReposPost, defaults, deleteIntegrationServiceV1IntegrationsIntegrationIdDelete, deleteProgramGroupServiceV1ProgramGroupsProgramGroupIdDelete, deleteRepositoryServiceV1ReposRepositoryIdDelete, dispatchModuleServiceV1ModulesDispatchesPost, downloadReportV1ReportsReportIdDownloadGet, downloadSearchReposScmServiceV1ReposSearchScmSearchRepoIdDownloadGet, generalReportSuccessAndErrorsV1AnalyticsReportsGeneralSuccessAndErrorsGet, getAccountSettingsV1SettingsGet, getIntegrationByIdServiceV1IntegrationsIntegrationIdGet, getProgramGroupByIdServiceV1ProgramGroupsProgramGroupIdGet, getReportPullRequestContentV1ReportsReportIdPullRequestGet, getReportV1ReportsReportIdGet, getRepositoryByIdServiceV1ReposRepositoryIdGet, getStatusSearchReposScmServiceV1ReposSearchScmSearchRepoIdStatusGet, listBranchesServiceV1ReposBranchesGet, listIntegrationServiceV1IntegrationsGet, listModulesServiceV1ModulesGet, listProgramGroupReportServiceV1ProgramGroupsProgramGroupIdReportsGet, listProgramGroupServiceV1ProgramGroupsGet, listRepositoryReportV1ReposRepositoryIdReportsGet, listRepositoryServiceV1ReposGet, listTagsServiceV1TagsGet, searchReposScmServiceV1ReposSearchScmGet, updateIntegrationServiceV1IntegrationsIntegrationIdPut, updateProgramGroupComponentsServiceV1ProgramGroupsProgramGroupIdComponentsPut, updateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut, updateRepositoryServiceV1ReposRepositoryIdPut, validateScmUrlServiceV1ReposValidateScmUrlPost, listUserServiceV1UsersGet, analyticsProgramGroupsDetailsV1AnalyticsProgramGroupsDetailsGet, analyticsProgramGroupsDetailsDownloadV1AnalyticsProgramGroupsDetailsDownloadGet, getModuleInputsV1ModulesModuleIdInputsGet, analyticsRepositoryDetailedReportDownloadV1AnalyticsRepositoriesDetailsDownloadGet, analyticsRepositoryDetailedReportV1AnalyticsRepositoriesDetailsGet, listRepositoryDownloadServiceV1ReposDownloadGet, listProgramGroupDownloadServiceV1ProgramGroupsDownloadGet, getModuleV1ModulesModuleIdGet, analyticsProgramGroupsTargetDetailsV1AnalyticsProgramGroupsTargetDetailsGet, analyticsProgramGroupsTargetDetailsDownloadV1AnalyticsProgramGroupsTargetDetailsDownloadGet, putCustomerRatingReportV1ReportsReportIdCustomerRatingPut, searchReposScmServiceV2ReposSearchScmPost, importReposWithTagsScmServiceV2ReposSearchScmSearchIdPost, searchReposScmV2V2ReposSearchScmSearchIdGet, analyticsRepositoryTargetDetailsV1AnalyticsRepositoriesTargetDetailsGet, analyticsRepositoryTargetDetailsDownloadV1AnalyticsRepositoriesTargetDetailsDownloadGet, updateModuleServiceV1ModulesModuleIdPut, downloadSearchReposScmV2V2ReposSearchScmSearchIdDownloadGet, } from '../api/codeShift.js';
|
|
2
2
|
import { DefaultAPIError } from '../error/DefaultAPIError.js';
|
|
3
3
|
import { codeShiftDictionary } from '../error/dictionary/code-shift.js';
|
|
4
4
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code-shift.js","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,6FAA6F,EAC7F,6EAA6E,EAC7E,uEAAuE,EACvE,uDAAuD,EACvD,iGAAiG,EACjG,iFAAiF,EACjF,2EAA2E,EAC3E,2DAA2D,EAC3D,0DAA0D,EAC1D,0CAA0C,EAC1C,4BAA4B,EAC5B,kCAAkC,EAClC,0CAA0C,EAC1C,gCAAgC,EAChC,4CAA4C,EAC5C,uCAAuC,EACvC,kCAAkC,EAClC,QAAQ,EACR,yDAAyD,EACzD,4DAA4D,EAC5D,gDAAgD,EAChD,4CAA4C,EAC5C,0CAA0C,EAC1C,oEAAoE,EACpE,yEAAyE,EACzE,+BAA+B,EAC/B,uDAAuD,EACvD,0DAA0D,EAC1D,0DAA0D,EAC1D,6BAA6B,EAC7B,8CAA8C,EAC9C,mEAAmE,EACnE,qCAAqC,EACrC,uCAAuC,EACvC,8BAA8B,EAC9B,oEAAoE,EACpE,yCAAyC,EACzC,iDAAiD,EACjD,+BAA+B,EAC/B,wBAAwB,EACxB,wCAAwC,EACxC,sDAAsD,EACtD,6EAA6E,EAC7E,yDAAyD,EACzD,6CAA6C,EAC7C,8CAA8C,EAC9C,yBAAyB,EACzB,+DAA+D,EAC/D,+EAA+E,EAC/E,yCAAyC,EACzC,kFAAkF,EAClF,kEAAkE,EAClE,+CAA+C,EAC/C,yDAAyD,EACzD,6BAA6B,EAC7B,2EAA2E,EAC3E,2FAA2F,EAC3F,yCAAyC,EACzC,yDAAyD,EACzD,2CAA2C,EAC3C,uEAAuE,EACvE,uFAAuF,EACvF,
|
|
1
|
+
{"version":3,"file":"code-shift.js","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"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"}
|
package/dist/client/types.d.ts
CHANGED
|
@@ -153,6 +153,7 @@ export interface FixedChatRequest extends ChatRequest {
|
|
|
153
153
|
stackspot_ai_version?: string;
|
|
154
154
|
os?: string;
|
|
155
155
|
upload_ids?: string[];
|
|
156
|
+
selected_model_id?: string;
|
|
156
157
|
};
|
|
157
158
|
}
|
|
158
159
|
export interface FixedConversationHistoryResponse extends ConversationHistoryResponse {
|
|
@@ -205,6 +206,7 @@ export interface ChatAgentTool {
|
|
|
205
206
|
image?: string;
|
|
206
207
|
input?: string;
|
|
207
208
|
output?: string;
|
|
209
|
+
goal?: string;
|
|
208
210
|
}
|
|
209
211
|
export interface ChatStepAttempt {
|
|
210
212
|
/**
|
|
@@ -214,8 +216,8 @@ export interface ChatStepAttempt {
|
|
|
214
216
|
}
|
|
215
217
|
export interface BaseChatStep {
|
|
216
218
|
id: string;
|
|
217
|
-
type: 'planning' | 'step' | 'answer';
|
|
218
|
-
status: 'pending' | 'running' | 'success' | 'error';
|
|
219
|
+
type: 'planning' | 'step' | 'answer' | 'tool';
|
|
220
|
+
status: 'pending' | 'running' | 'success' | 'error' | 'awaiting_approval';
|
|
219
221
|
/**
|
|
220
222
|
* Duration in seconds.
|
|
221
223
|
*/
|
|
@@ -223,9 +225,23 @@ export interface BaseChatStep {
|
|
|
223
225
|
}
|
|
224
226
|
export interface PlanningChatStep extends BaseChatStep {
|
|
225
227
|
type: 'planning';
|
|
226
|
-
status: 'success';
|
|
228
|
+
status: 'success' | 'awaiting_approval';
|
|
227
229
|
steps: string[];
|
|
228
230
|
goal: string;
|
|
231
|
+
user_question?: string;
|
|
232
|
+
}
|
|
233
|
+
export interface ToolChatStep extends BaseChatStep {
|
|
234
|
+
type: 'tool';
|
|
235
|
+
status: 'running' | 'success' | 'error' | 'awaiting_approval';
|
|
236
|
+
/**
|
|
237
|
+
* Each step might attempt to run for multiple times, with different inputs and outputs. If first attempt succeeds, this array will have
|
|
238
|
+
* only one element.
|
|
239
|
+
*
|
|
240
|
+
* This array never has less than one element, despite the step's status.
|
|
241
|
+
*/
|
|
242
|
+
attempts: ChatStepAttempt[];
|
|
243
|
+
input?: Record<string, any>;
|
|
244
|
+
user_question?: string;
|
|
229
245
|
}
|
|
230
246
|
export interface StepChatStep extends BaseChatStep {
|
|
231
247
|
type: 'step';
|
|
@@ -242,15 +258,17 @@ export interface StepChatStep extends BaseChatStep {
|
|
|
242
258
|
export interface AnswerChatStep extends BaseChatStep {
|
|
243
259
|
type: 'answer';
|
|
244
260
|
}
|
|
245
|
-
export type ChatStep = PlanningChatStep | StepChatStep | AnswerChatStep;
|
|
261
|
+
export type ChatStep = PlanningChatStep | StepChatStep | AnswerChatStep | ToolChatStep;
|
|
246
262
|
export interface BaseAgentInfo {
|
|
247
263
|
type: 'chat' | 'planning' | 'step' | 'tool' | 'final_answer';
|
|
248
|
-
action: 'start' | 'end';
|
|
264
|
+
action: 'start' | 'end' | 'awaiting_approval';
|
|
249
265
|
duration?: number;
|
|
266
|
+
id: string;
|
|
250
267
|
}
|
|
251
268
|
export interface AgentTool {
|
|
252
269
|
tool_id: string;
|
|
253
270
|
tool_execution_id: string;
|
|
271
|
+
goal: string;
|
|
254
272
|
}
|
|
255
273
|
export interface PlanningAgentInfo extends BaseAgentInfo {
|
|
256
274
|
type: 'planning';
|
|
@@ -262,6 +280,7 @@ export interface PlanningAgentInfo extends BaseAgentInfo {
|
|
|
262
280
|
goal: string;
|
|
263
281
|
tools?: AgentTool[];
|
|
264
282
|
}[];
|
|
283
|
+
user_question?: string;
|
|
265
284
|
};
|
|
266
285
|
}
|
|
267
286
|
export interface StepAgentInfo extends BaseAgentInfo {
|
|
@@ -275,6 +294,8 @@ export interface ToolAgentInfo extends BaseAgentInfo {
|
|
|
275
294
|
input?: any;
|
|
276
295
|
attempt: number;
|
|
277
296
|
output?: string;
|
|
297
|
+
user_question?: string;
|
|
298
|
+
tool_id: string;
|
|
278
299
|
};
|
|
279
300
|
}
|
|
280
301
|
export interface GenericAgentInfo extends BaseAgentInfo {
|