@stack-spot/portal-network 0.172.2-beta.1 → 0.172.3-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 +85 -41
- package/dist/api/ai.d.ts +2 -1
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js.map +1 -1
- package/dist/api/codeShift.d.ts +68 -1
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +47 -0
- package/dist/api/codeShift.js.map +1 -1
- package/dist/client/code-shift.d.ts +50 -28
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +23 -14
- package/dist/client/code-shift.js.map +1 -1
- package/package.json +1 -1
- package/src/api/ai.ts +2 -1
- package/src/api/codeShift.ts +147 -1
- package/src/client/code-shift.ts +20 -12
- package/src/error/dictionary/agent-tools.ts +1 -1
package/src/client/code-shift.ts
CHANGED
|
@@ -56,6 +56,8 @@ import {
|
|
|
56
56
|
listRepositoryDownloadServiceV1ReposDownloadGet,
|
|
57
57
|
listProgramGroupDownloadServiceV1ProgramGroupsDownloadGet,
|
|
58
58
|
getModuleV1ModulesModuleIdGet,
|
|
59
|
+
analyticsProgramGroupsTargetDetailsV1AnalyticsProgramGroupsTargetDetailsGet,
|
|
60
|
+
analyticsProgramGroupsTargetDetailsDownloadV1AnalyticsProgramGroupsTargetDetailsDownloadGet,
|
|
59
61
|
} from '../api/codeShift'
|
|
60
62
|
import { DefaultAPIError } from '../error/DefaultAPIError'
|
|
61
63
|
import { codeShiftDictionary } from '../error/dictionary/code-shift'
|
|
@@ -257,9 +259,11 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
257
259
|
removeAuthorizationParam(analyticsProgramGroupsLastReportStatusV1AnalyticsProgramGroupsLastReportStatusGet),
|
|
258
260
|
)
|
|
259
261
|
/**
|
|
260
|
-
* Analytics Program Groups
|
|
262
|
+
* Analytics Program Groups Last Report Status Download
|
|
261
263
|
*/
|
|
262
|
-
|
|
264
|
+
analyticsProgramGroupsLastReportStatusDownload = this.query(
|
|
265
|
+
removeAuthorizationParam(analyticsProgramGroupsLastReportStatusDownloadV1AnalyticsProgramGroupsLastReportStatusDownloadGet),
|
|
266
|
+
)
|
|
263
267
|
/**
|
|
264
268
|
* Analytics User Usage
|
|
265
269
|
*/
|
|
@@ -275,11 +279,9 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
275
279
|
removeAuthorizationParam(analyticsRepositoryUsageDownloadV1AnalyticsRepositoriesUsageDownloadGet),
|
|
276
280
|
)
|
|
277
281
|
/**
|
|
278
|
-
* Analytics Program Groups
|
|
282
|
+
* Analytics Program Groups Usage
|
|
279
283
|
*/
|
|
280
|
-
|
|
281
|
-
removeAuthorizationParam(analyticsProgramGroupsLastReportStatusDownloadV1AnalyticsProgramGroupsLastReportStatusDownloadGet),
|
|
282
|
-
)
|
|
284
|
+
analyticsProgramGroupsUsage = this.query(removeAuthorizationParam(analyticsProgramGroupsUsageV1AnalyticsProgramGroupsUsageGet))
|
|
283
285
|
/**
|
|
284
286
|
* Analytics Program Groups Usage Download
|
|
285
287
|
*/
|
|
@@ -310,18 +312,24 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
310
312
|
analyticsRepositoryDetails = this.query(
|
|
311
313
|
removeAuthorizationParam(analyticsRepositoryDetailedReportV1AnalyticsRepositoriesDetailsGet),
|
|
312
314
|
)
|
|
313
|
-
/**
|
|
314
|
-
* Analytics Program Group Component
|
|
315
|
-
*/
|
|
316
|
-
analyticsProgramGroupComponent = this.query(
|
|
317
|
-
removeAuthorizationParam(analyticsProgramGroupsLastReportStatusDownloadV1AnalyticsProgramGroupsLastReportStatusDownloadGet),
|
|
318
|
-
)
|
|
319
315
|
/**
|
|
320
316
|
* Analytics Program Groups Details Download
|
|
321
317
|
*/
|
|
322
318
|
analyticsRepositoryDetailsDownload = this.query(
|
|
323
319
|
removeAuthorizationParam(analyticsRepositoryDetailedReportDownloadV1AnalyticsRepositoriesDetailsDownloadGet),
|
|
324
320
|
)
|
|
321
|
+
/**
|
|
322
|
+
* Analytics Program Groups Target Details
|
|
323
|
+
*/
|
|
324
|
+
analyticsProgramGroupsTargetDetails = this.query(
|
|
325
|
+
removeAuthorizationParam(analyticsProgramGroupsTargetDetailsV1AnalyticsProgramGroupsTargetDetailsGet),
|
|
326
|
+
)
|
|
327
|
+
/**
|
|
328
|
+
* Analytics Program Groups Target Details Download
|
|
329
|
+
*/
|
|
330
|
+
analyticsProgramGroupsTargetDetailsDownload = this.query(
|
|
331
|
+
removeAuthorizationParam(analyticsProgramGroupsTargetDetailsDownloadV1AnalyticsProgramGroupsTargetDetailsDownloadGet),
|
|
332
|
+
)
|
|
325
333
|
}
|
|
326
334
|
|
|
327
335
|
export const codeShiftClient = new CodeShift()
|