@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.
@@ -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 Usage
262
+ * Analytics Program Groups Last Report Status Download
261
263
  */
262
- analyticsProgramGroupsUsage = this.query(removeAuthorizationParam(analyticsProgramGroupsUsageV1AnalyticsProgramGroupsUsageGet))
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 Last Report Status Download
282
+ * Analytics Program Groups Usage
279
283
  */
280
- analyticsProgramGroupsLastReportStatusDownload = this.query(
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()
@@ -73,4 +73,4 @@ export const agentToolsDictionary = {
73
73
  AGENT_2000_ACCOUNT_API_ERROR: 'Erro na integração com a API de Conta',
74
74
  AGENT_2001_IAM_API_ERROR: 'Erro na integração com a API IAM',
75
75
  },
76
- } satisfies Dictionary
76
+ } satisfies Dictionary