@stack-spot/portal-network 0.195.0 → 0.196.0
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/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/codeShift.d.ts +109 -39
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +51 -10
- package/dist/api/codeShift.js.map +1 -1
- package/dist/client/ai.d.ts +29 -0
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/code-shift.d.ts +23 -3
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +19 -1
- package/dist/client/code-shift.js.map +1 -1
- package/package.json +1 -1
- package/src/api/ai.ts +364 -157
- package/src/api/codeShift.ts +189 -44
- package/src/client/code-shift.ts +10 -0
package/dist/client/ai.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
14
14
|
authorization: string;
|
|
15
15
|
xAccountId?: string | null | undefined;
|
|
16
16
|
xMemberId?: string | null | undefined;
|
|
17
|
+
xUsername?: string | null | undefined;
|
|
17
18
|
quickActionsRequest: import("../api/ai.js").QuickActionsRequest;
|
|
18
19
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").SimpleResponse>;
|
|
19
20
|
/**
|
|
@@ -47,6 +48,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
47
48
|
authorization: string;
|
|
48
49
|
xAccountId?: string | null | undefined;
|
|
49
50
|
xMemberId?: string | null | undefined;
|
|
51
|
+
xUsername?: string | null | undefined;
|
|
50
52
|
customKnowledgeSourceRequest: import("../api/ai.js").CustomKnowledgeSourceRequest;
|
|
51
53
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
52
54
|
/**
|
|
@@ -57,6 +59,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
57
59
|
authorization: string;
|
|
58
60
|
xAccountId?: string | null | undefined;
|
|
59
61
|
xMemberId?: string | null | undefined;
|
|
62
|
+
xUsername?: string | null | undefined;
|
|
60
63
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").GetAiStackResponse[]>;
|
|
61
64
|
/**
|
|
62
65
|
* Gets total tokens usage
|
|
@@ -65,6 +68,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
65
68
|
authorization: string;
|
|
66
69
|
xAccountId?: string | null | undefined;
|
|
67
70
|
xMemberId?: string | null | undefined;
|
|
71
|
+
xUsername?: string | null | undefined;
|
|
68
72
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").TokensCurrentUsageResponse>;
|
|
69
73
|
/**
|
|
70
74
|
* Gets current tokens usage
|
|
@@ -75,6 +79,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
75
79
|
authorization: string;
|
|
76
80
|
xAccountId?: string | null | undefined;
|
|
77
81
|
xMemberId?: string | null | undefined;
|
|
82
|
+
xUsername?: string | null | undefined;
|
|
78
83
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").TokensCurrentUsageResponse>;
|
|
79
84
|
/**
|
|
80
85
|
* Gets a workspace by its id.
|
|
@@ -84,6 +89,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
84
89
|
authorization: string;
|
|
85
90
|
xAccountId?: string | null | undefined;
|
|
86
91
|
xMemberId?: string | null | undefined;
|
|
92
|
+
xUsername?: string | null | undefined;
|
|
87
93
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").KnowledgeSourceResponse[]>;
|
|
88
94
|
/**
|
|
89
95
|
* @deprecated
|
|
@@ -96,6 +102,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
96
102
|
authorization: string;
|
|
97
103
|
xAccountId?: string | null | undefined;
|
|
98
104
|
xMemberId?: string | null | undefined;
|
|
105
|
+
xUsername?: string | null | undefined;
|
|
99
106
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandListResponse[]>;
|
|
100
107
|
/**
|
|
101
108
|
* Lists all the quick commands according to filters passed as parameter (including QC with secrets).
|
|
@@ -107,6 +114,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
107
114
|
authorization: string;
|
|
108
115
|
xAccountId?: string | null | undefined;
|
|
109
116
|
xMemberId?: string | null | undefined;
|
|
117
|
+
xUsername?: string | null | undefined;
|
|
110
118
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandListResponse[]>;
|
|
111
119
|
/**
|
|
112
120
|
* Gets a quick command by its slug.
|
|
@@ -117,6 +125,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
117
125
|
authorization: string;
|
|
118
126
|
xAccountId?: string | null | undefined;
|
|
119
127
|
xMemberId?: string | null | undefined;
|
|
128
|
+
xUsername?: string | null | undefined;
|
|
120
129
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandResponse>;
|
|
121
130
|
/**
|
|
122
131
|
* Creates a new execution for a quick command by its slug.
|
|
@@ -127,6 +136,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
127
136
|
authorization: string;
|
|
128
137
|
xAccountId?: string | null | undefined;
|
|
129
138
|
xMemberId?: string | null | undefined;
|
|
139
|
+
xUsername?: string | null | undefined;
|
|
130
140
|
quickCommandCreateRequest?: import("../api/ai.js").QuickCommandCreateRequest | undefined;
|
|
131
141
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
132
142
|
/**
|
|
@@ -137,6 +147,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
137
147
|
authorization: string;
|
|
138
148
|
xAccountId?: string | null | undefined;
|
|
139
149
|
xMemberId?: string | null | undefined;
|
|
150
|
+
xUsername?: string | null | undefined;
|
|
140
151
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandExecutionResponse>;
|
|
141
152
|
/**
|
|
142
153
|
* Lists the knowledge sources according to filters passed as parameter.
|
|
@@ -149,6 +160,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
149
160
|
authorization: string;
|
|
150
161
|
xAccountId?: string | null | undefined;
|
|
151
162
|
xMemberId?: string | null | undefined;
|
|
163
|
+
xUsername?: string | null | undefined;
|
|
152
164
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").KnowledgeSourceItemResponse[]>;
|
|
153
165
|
/**
|
|
154
166
|
* Gets a knowledge source by its slug.
|
|
@@ -181,6 +193,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
181
193
|
authorization: string;
|
|
182
194
|
xAccountId?: string | null | undefined;
|
|
183
195
|
xMemberId?: string | null | undefined;
|
|
196
|
+
xUsername?: string | null | undefined;
|
|
184
197
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").ConversationResponse[], "">;
|
|
185
198
|
/**
|
|
186
199
|
* Gets a specific chat from the history according to its id.
|
|
@@ -190,6 +203,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
190
203
|
authorization: string;
|
|
191
204
|
xAccountId?: string | null | undefined;
|
|
192
205
|
xMemberId?: string | null | undefined;
|
|
206
|
+
xUsername?: string | null | undefined;
|
|
193
207
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, FixedConversationResponse>;
|
|
194
208
|
/**
|
|
195
209
|
* Deletes a chat from the chat history.
|
|
@@ -199,6 +213,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
199
213
|
authorization: string;
|
|
200
214
|
xAccountId?: string | null | undefined;
|
|
201
215
|
xMemberId?: string | null | undefined;
|
|
216
|
+
xUsername?: string | null | undefined;
|
|
202
217
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
203
218
|
/**
|
|
204
219
|
* Gets a plain text version of the chat with id passed as parameter.
|
|
@@ -208,6 +223,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
208
223
|
authorization: string;
|
|
209
224
|
xAccountId?: string | null | undefined;
|
|
210
225
|
xMemberId?: string | null | undefined;
|
|
226
|
+
xUsername?: string | null | undefined;
|
|
211
227
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
212
228
|
/**
|
|
213
229
|
* Renames a chat.
|
|
@@ -217,6 +233,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
217
233
|
authorization: string;
|
|
218
234
|
xAccountId?: string | null | undefined;
|
|
219
235
|
xMemberId?: string | null | undefined;
|
|
236
|
+
xUsername?: string | null | undefined;
|
|
220
237
|
conversationUpdateTitleRequest: import("../api/ai.js").ConversationUpdateTitleRequest;
|
|
221
238
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").ConversationResponse>;
|
|
222
239
|
/**
|
|
@@ -226,6 +243,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
226
243
|
authorization: string;
|
|
227
244
|
xAccountId?: string | null | undefined;
|
|
228
245
|
xMemberId?: string | null | undefined;
|
|
246
|
+
xUsername?: string | null | undefined;
|
|
229
247
|
body: import("../api/ai.js").GenericEventRequest[];
|
|
230
248
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
231
249
|
/**
|
|
@@ -237,6 +255,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
237
255
|
authorization: string;
|
|
238
256
|
xAccountId?: string | null | undefined;
|
|
239
257
|
xMemberId?: string | null | undefined;
|
|
258
|
+
xUsername?: string | null | undefined;
|
|
240
259
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
241
260
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandStepFetchResponse>;
|
|
242
261
|
/**
|
|
@@ -248,6 +267,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
248
267
|
authorization: string;
|
|
249
268
|
xAccountId?: string | null | undefined;
|
|
250
269
|
xMemberId?: string | null | undefined;
|
|
270
|
+
xUsername?: string | null | undefined;
|
|
251
271
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
252
272
|
}, "authorization"> & {
|
|
253
273
|
headers?: Record<string, any> | undefined;
|
|
@@ -263,6 +283,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
263
283
|
authorization: string;
|
|
264
284
|
xAccountId?: string | null | undefined;
|
|
265
285
|
xMemberId?: string | null | undefined;
|
|
286
|
+
xUsername?: string | null | undefined;
|
|
266
287
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
267
288
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, string | QuickCommandPromptResponse2>;
|
|
268
289
|
/**
|
|
@@ -274,6 +295,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
274
295
|
authorization: string;
|
|
275
296
|
xAccountId?: string | null | undefined;
|
|
276
297
|
xMemberId?: string | null | undefined;
|
|
298
|
+
xUsername?: string | null | undefined;
|
|
277
299
|
quickCommandEvaluateStepRouterRequest: import("../api/ai.js").QuickCommandEvaluateStepRouterRequest;
|
|
278
300
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandEvaluateStepRouterResponse>;
|
|
279
301
|
/**
|
|
@@ -288,6 +310,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
288
310
|
authorization: string;
|
|
289
311
|
xAccountId?: string | null | undefined;
|
|
290
312
|
xMemberId?: string | null | undefined;
|
|
313
|
+
xUsername?: string | null | undefined;
|
|
291
314
|
quickCommandsExecutionRequest: QuickCommandsExecutionRequest;
|
|
292
315
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/ai.js").QuickCommandFinalResultResponse>;
|
|
293
316
|
/**
|
|
@@ -298,6 +321,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
298
321
|
authorization: string;
|
|
299
322
|
xAccountId?: string | null | undefined;
|
|
300
323
|
xMemberId?: string | null | undefined;
|
|
324
|
+
xUsername?: string | null | undefined;
|
|
301
325
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
302
326
|
/**
|
|
303
327
|
* Removes the resource of type Stack AI from the list of favorites.
|
|
@@ -307,6 +331,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
307
331
|
authorization: string;
|
|
308
332
|
xAccountId?: string | null | undefined;
|
|
309
333
|
xMemberId?: string | null | undefined;
|
|
334
|
+
xUsername?: string | null | undefined;
|
|
310
335
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
311
336
|
/**
|
|
312
337
|
* Updates a Quick Command
|
|
@@ -316,6 +341,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
316
341
|
authorization: string;
|
|
317
342
|
xAccountId?: string | null | undefined;
|
|
318
343
|
xMemberId?: string | null | undefined;
|
|
344
|
+
xUsername?: string | null | undefined;
|
|
319
345
|
quickCommandsUpdateRequest: import("../api/ai.js").QuickCommandsUpdateRequest;
|
|
320
346
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
321
347
|
/**
|
|
@@ -326,6 +352,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
326
352
|
authorization: string;
|
|
327
353
|
xAccountId?: string | null | undefined;
|
|
328
354
|
xMemberId?: string | null | undefined;
|
|
355
|
+
xUsername?: string | null | undefined;
|
|
329
356
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
330
357
|
/**
|
|
331
358
|
* Removes the resource of type Quick Command from the list of favorites.
|
|
@@ -335,6 +362,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
335
362
|
authorization: string;
|
|
336
363
|
xAccountId?: string | null | undefined;
|
|
337
364
|
xMemberId?: string | null | undefined;
|
|
365
|
+
xUsername?: string | null | undefined;
|
|
338
366
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
339
367
|
private static toolsOfAgent;
|
|
340
368
|
sendChatMessage(request: FixedChatRequest, minChangeIntervalMS?: number): StreamedJson<ChatResponseWithSteps>;
|
|
@@ -344,6 +372,7 @@ declare class AIClient extends ReactQueryNetworkClient {
|
|
|
344
372
|
authorization: string;
|
|
345
373
|
xAccountId?: string | null | undefined;
|
|
346
374
|
xMemberId?: string | null | undefined;
|
|
375
|
+
xUsername?: string | null | undefined;
|
|
347
376
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, FixedDependencyResponse>;
|
|
348
377
|
}
|
|
349
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
|
|
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;;;;;;;;;;0DAW7B;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"}
|
|
@@ -17,7 +17,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
17
17
|
createRepositoriesBatch: import("../network/types.js").MutationObject<Omit<{
|
|
18
18
|
tags?: string[] | null | undefined;
|
|
19
19
|
authorization: string;
|
|
20
|
-
|
|
20
|
+
fastapiCompatV2BodyCreateReposBatchServiceV1ReposBatchPost: import("../api/codeShift.js").BodyCreateReposBatchServiceV1ReposBatchPost;
|
|
21
21
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
22
22
|
/**
|
|
23
23
|
* Gets list of repositories.
|
|
@@ -86,6 +86,11 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
86
86
|
moduleType?: import("../api/codeShift.js").ModuleType | null | undefined;
|
|
87
87
|
page?: number | undefined;
|
|
88
88
|
lastEvaluatedKey?: string | undefined;
|
|
89
|
+
sharedWith?: string | null | undefined;
|
|
90
|
+
createdBy?: string | null | undefined;
|
|
91
|
+
visibility?: import("../api/codeShift.js").ModuleVisibility | null | undefined;
|
|
92
|
+
name?: string | null | undefined;
|
|
93
|
+
tags?: string[] | null | undefined;
|
|
89
94
|
xAccountSlug?: string | undefined;
|
|
90
95
|
authorization: string;
|
|
91
96
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListModuleResponse>;
|
|
@@ -96,6 +101,20 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
96
101
|
moduleId: string;
|
|
97
102
|
authorization: string;
|
|
98
103
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").GetModuleResponse>;
|
|
104
|
+
/**
|
|
105
|
+
* Add a module in favorites.
|
|
106
|
+
*/
|
|
107
|
+
addFavoriteModule: import("../network/types.js").MutationObject<Omit<{
|
|
108
|
+
moduleId: string;
|
|
109
|
+
authorization: string;
|
|
110
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
111
|
+
/**
|
|
112
|
+
* Remove a module from favorites.
|
|
113
|
+
*/
|
|
114
|
+
removeFavoriteModule: import("../network/types.js").MutationObject<Omit<{
|
|
115
|
+
moduleId: string;
|
|
116
|
+
authorization: string;
|
|
117
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
99
118
|
/**
|
|
100
119
|
* Gets module inputs.
|
|
101
120
|
*/
|
|
@@ -280,7 +299,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
280
299
|
tags?: string[] | null | undefined;
|
|
281
300
|
integrationId?: string | undefined;
|
|
282
301
|
authorization: string;
|
|
283
|
-
|
|
302
|
+
fastapiCompatV2BodyCreateProgramGroupServiceV1ProgramGroupsPost?: import("../api/codeShift.js").BodyCreateProgramGroupServiceV1ProgramGroupsPost | undefined;
|
|
284
303
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").CreateProgramGroupResponse>;
|
|
285
304
|
/**
|
|
286
305
|
* Gets list of program groups.
|
|
@@ -324,7 +343,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
324
343
|
tags?: string[] | null | undefined;
|
|
325
344
|
integrationId?: string | null | undefined;
|
|
326
345
|
authorization: string;
|
|
327
|
-
|
|
346
|
+
fastapiCompatV2BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut?: import("../api/codeShift.js").BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut | undefined;
|
|
328
347
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
329
348
|
/**
|
|
330
349
|
* Updates a program group components.
|
|
@@ -361,6 +380,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
361
380
|
*/
|
|
362
381
|
tags: import("../network/types.js").QueryObject<Omit<{
|
|
363
382
|
name?: string | null | undefined;
|
|
383
|
+
$type?: "Repository" | "Module" | undefined;
|
|
364
384
|
authorization: string;
|
|
365
385
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListTagResponse>;
|
|
366
386
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code-shift.d.ts","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"code-shift.d.ts","sourceRoot":"","sources":["../../src/client/code-shift.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, putCustomerRatingReportV1ReportsReportIdCustomerRatingPut, updateModuleServiceV1ModulesModuleIdPut, downloadSearchReposScmV2V2ReposSearchScmSearchIdDownloadGet, } from '../api/codeShift.js';
|
|
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, putCustomerRatingReportV1ReportsReportIdCustomerRatingPut, updateModuleServiceV1ModulesModuleIdPut, downloadSearchReposScmV2V2ReposSearchScmSearchIdDownloadGet, moduleFavoriteServiceAddV1ModulesModuleIdFavoritesPost, moduleFavoriteServiceDeleteV1ModulesModuleIdFavoritesDelete, } 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';
|
|
@@ -97,6 +97,24 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
97
97
|
writable: true,
|
|
98
98
|
value: this.query(removeAuthorizationParam(getModuleV1ModulesModuleIdGet))
|
|
99
99
|
});
|
|
100
|
+
/**
|
|
101
|
+
* Add a module in favorites.
|
|
102
|
+
*/
|
|
103
|
+
Object.defineProperty(this, "addFavoriteModule", {
|
|
104
|
+
enumerable: true,
|
|
105
|
+
configurable: true,
|
|
106
|
+
writable: true,
|
|
107
|
+
value: this.mutation(removeAuthorizationParam(moduleFavoriteServiceAddV1ModulesModuleIdFavoritesPost))
|
|
108
|
+
});
|
|
109
|
+
/**
|
|
110
|
+
* Remove a module from favorites.
|
|
111
|
+
*/
|
|
112
|
+
Object.defineProperty(this, "removeFavoriteModule", {
|
|
113
|
+
enumerable: true,
|
|
114
|
+
configurable: true,
|
|
115
|
+
writable: true,
|
|
116
|
+
value: this.mutation(removeAuthorizationParam(moduleFavoriteServiceDeleteV1ModulesModuleIdFavoritesDelete))
|
|
117
|
+
});
|
|
100
118
|
/**
|
|
101
119
|
* Gets module inputs.
|
|
102
120
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code-shift.js","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"code-shift.js","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"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"}
|