@stack-spot/portal-network 0.195.1 → 0.196.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.
Files changed (92) hide show
  1. package/CHANGELOG.md +79 -0
  2. package/dist/api/agent-tools.d.ts +135 -148
  3. package/dist/api/agent-tools.d.ts.map +1 -1
  4. package/dist/api/agent-tools.js +41 -4
  5. package/dist/api/agent-tools.js.map +1 -1
  6. package/dist/api/agent.d.ts +55 -55
  7. package/dist/api/agent.d.ts.map +1 -1
  8. package/dist/api/ai.d.ts +196 -25
  9. package/dist/api/ai.d.ts.map +1 -1
  10. package/dist/api/ai.js +153 -22
  11. package/dist/api/ai.js.map +1 -1
  12. package/dist/api/cloudPlatformHorizon.d.ts +178 -9
  13. package/dist/api/cloudPlatformHorizon.d.ts.map +1 -1
  14. package/dist/api/cloudPlatformHorizon.js +69 -1
  15. package/dist/api/cloudPlatformHorizon.js.map +1 -1
  16. package/dist/api/codeShift.d.ts +315 -62
  17. package/dist/api/codeShift.d.ts.map +1 -1
  18. package/dist/api/codeShift.js +153 -12
  19. package/dist/api/codeShift.js.map +1 -1
  20. package/dist/api/discover.d.ts +23 -12
  21. package/dist/api/discover.d.ts.map +1 -1
  22. package/dist/api/discover.js +10 -0
  23. package/dist/api/discover.js.map +1 -1
  24. package/dist/api-addresses.d.ts.map +1 -1
  25. package/dist/client/account.d.ts +233 -233
  26. package/dist/client/account.d.ts.map +1 -1
  27. package/dist/client/agent-tools.d.ts +152 -126
  28. package/dist/client/agent-tools.d.ts.map +1 -1
  29. package/dist/client/agent-tools.js +29 -2
  30. package/dist/client/agent-tools.js.map +1 -1
  31. package/dist/client/agent.d.ts +46 -46
  32. package/dist/client/agent.d.ts.map +1 -1
  33. package/dist/client/ai.d.ts +120 -110
  34. package/dist/client/ai.d.ts.map +1 -1
  35. package/dist/client/ai.js +29 -2
  36. package/dist/client/ai.js.map +1 -1
  37. package/dist/client/api-management.d.ts +2 -2
  38. package/dist/client/cloud-account.d.ts +13 -13
  39. package/dist/client/cloud-platform-horizon.d.ts +38 -19
  40. package/dist/client/cloud-platform-horizon.d.ts.map +1 -1
  41. package/dist/client/cloud-platform-horizon.js +19 -1
  42. package/dist/client/cloud-platform-horizon.js.map +1 -1
  43. package/dist/client/cloud-platform.d.ts +50 -50
  44. package/dist/client/cloud-runtimes.d.ts +4 -4
  45. package/dist/client/cloud-services.d.ts +17 -17
  46. package/dist/client/cloud-services.d.ts.map +1 -1
  47. package/dist/client/code-shift.d.ts +349 -258
  48. package/dist/client/code-shift.d.ts.map +1 -1
  49. package/dist/client/code-shift.js +82 -1
  50. package/dist/client/code-shift.js.map +1 -1
  51. package/dist/client/content.d.ts +127 -132
  52. package/dist/client/content.d.ts.map +1 -1
  53. package/dist/client/data-integration.d.ts +55 -55
  54. package/dist/client/data-integration.d.ts.map +1 -1
  55. package/dist/client/discover.d.ts +15 -9
  56. package/dist/client/discover.d.ts.map +1 -1
  57. package/dist/client/discover.js +208 -0
  58. package/dist/client/discover.js.map +1 -1
  59. package/dist/client/event-bus.d.ts.map +1 -1
  60. package/dist/client/gen-ai-inference.d.ts +20 -20
  61. package/dist/client/insights.d.ts +7 -7
  62. package/dist/client/notification.d.ts +10 -10
  63. package/dist/client/runtime-manager.d.ts +8 -8
  64. package/dist/client/types.d.ts +14 -0
  65. package/dist/client/types.d.ts.map +1 -1
  66. package/dist/client/workflow.d.ts +10 -10
  67. package/dist/client/workspace-ai.d.ts +53 -53
  68. package/dist/client/workspace-manager.d.ts +77 -77
  69. package/dist/client/workspace-search.d.ts +2 -2
  70. package/dist/client/workspace.d.ts +58 -105
  71. package/dist/client/workspace.d.ts.map +1 -1
  72. package/dist/error/dictionary/cloud-platform.d.ts +6 -0
  73. package/dist/error/dictionary/cloud-platform.d.ts.map +1 -1
  74. package/dist/error/dictionary/cloud-platform.js +6 -0
  75. package/dist/error/dictionary/cloud-platform.js.map +1 -1
  76. package/dist/utils/StreamedJson.d.ts.map +1 -1
  77. package/dist/utils/StreamedJson.js +9 -1
  78. package/dist/utils/StreamedJson.js.map +1 -1
  79. package/package.json +2 -2
  80. package/src/api/agent-tools.ts +182 -150
  81. package/src/api/ai.ts +381 -40
  82. package/src/api/cloudPlatformHorizon.ts +412 -9
  83. package/src/api/codeShift.ts +607 -69
  84. package/src/api/discover.ts +35 -12
  85. package/src/client/agent-tools.ts +20 -2
  86. package/src/client/ai.ts +25 -10
  87. package/src/client/cloud-platform-horizon.ts +12 -4
  88. package/src/client/code-shift.ts +50 -1
  89. package/src/client/discover.ts +220 -3
  90. package/src/client/types.ts +17 -2
  91. package/src/error/dictionary/cloud-platform.ts +6 -0
  92. package/src/utils/StreamedJson.tsx +9 -2
@@ -15,24 +15,51 @@ declare class CodeShift extends ReactQueryNetworkClient {
15
15
  * Creates repositories in batch.
16
16
  */
17
17
  createRepositoriesBatch: import("../network/types.js").MutationObject<Omit<{
18
- tags?: string[] | null | undefined;
18
+ tags?: string[] | null;
19
+ authorization: string;
20
+ fastapiCompatV2BodyCreateReposBatchServiceV1ReposBatchPost: import("../api/codeShift.js").BodyCreateReposBatchServiceV1ReposBatchPost;
21
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
22
+ /**
23
+ * Imports repositories in batch.
24
+ */
25
+ createRepositoriesBatchV2: import("../network/types.js").MutationObject<Omit<{
26
+ tags?: string[] | null;
27
+ authorization: string;
28
+ fastapiCompatV2BodyCreateReposBatchServiceV2ReposBatchPost: import("../api/codeShift.js").BodyCreateReposBatchServiceV2ReposBatchPost;
29
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").CreateRepoBatchResponse>;
30
+ /**
31
+ * Gets the status of a batch import.
32
+ */
33
+ getImportBatchResultsV2: import("../network/types.js").QueryObject<Omit<{
34
+ importId: string;
35
+ pageSize?: number;
36
+ page?: number;
37
+ authorization: string;
38
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").GetImportResultResponseRead>;
39
+ /**
40
+ * Downloads the import result for a batch.
41
+ */
42
+ downloadImportBatchResultsV2: import("../network/types.js").QueryObject<Omit<{
43
+ importId: string;
44
+ language?: "ptBr" | "enUs";
45
+ status?: import("../api/codeShift.js").ValidateRepositoryStatus | null;
46
+ extension?: "csv" | "xlsx";
19
47
  authorization: string;
20
- bodyCreateReposBatchServiceV1ReposBatchPost: import("../api/codeShift.js").BodyCreateReposBatchServiceV1ReposBatchPost;
21
48
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
22
49
  /**
23
50
  * Gets list of repositories.
24
51
  */
25
52
  repositories: import("../network/types.js").QueryObject<Omit<{
26
- pageSize?: number | undefined;
27
- page?: number | undefined;
28
- lastEvaluatedKey?: string | undefined;
29
- filter?: string | undefined;
30
- moduleId?: string | undefined;
31
- createdByEmail?: string | null | undefined;
32
- reportByEmail?: string | null | undefined;
33
- orderBy?: "repository.url" | "repository.created_at" | "repository.updated_at" | "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status" | undefined;
34
- orderDirection?: "ASC" | "DESC" | "asc" | "desc" | undefined;
35
- tags?: string[] | null | undefined;
53
+ pageSize?: number;
54
+ page?: number;
55
+ lastEvaluatedKey?: string;
56
+ filter?: string;
57
+ moduleId?: string;
58
+ createdByEmail?: string | null;
59
+ reportByEmail?: string | null;
60
+ orderBy?: "repository.url" | "repository.created_at" | "repository.updated_at" | "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status";
61
+ orderDirection?: "asc" | "desc" | "ASC" | "DESC";
62
+ tags?: string[] | null;
36
63
  authorization: string;
37
64
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListRepositoryResponseRead>;
38
65
  /**
@@ -61,14 +88,14 @@ declare class CodeShift extends ReactQueryNetworkClient {
61
88
  * List Repository Download Service
62
89
  */
63
90
  repositoryDownload: import("../network/types.js").QueryObject<Omit<{
64
- filter?: string | undefined;
65
- moduleId?: string | undefined;
66
- createdByEmail?: string | null | undefined;
67
- reportByEmail?: string | null | undefined;
68
- orderBy?: "repository.url" | "repository.created_at" | "repository.updated_at" | "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status" | undefined;
69
- orderDirection?: "ASC" | "DESC" | "asc" | "desc" | undefined;
70
- tags?: string[] | null | undefined;
71
- extension?: "csv" | "xlsx" | undefined;
91
+ filter?: string;
92
+ moduleId?: string;
93
+ createdByEmail?: string | null;
94
+ reportByEmail?: string | null;
95
+ orderBy?: "repository.url" | "repository.created_at" | "repository.updated_at" | "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status";
96
+ orderDirection?: "asc" | "desc" | "ASC" | "DESC";
97
+ tags?: string[] | null;
98
+ extension?: "csv" | "xlsx";
72
99
  authorization: string;
73
100
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
74
101
  /**
@@ -82,11 +109,16 @@ declare class CodeShift extends ReactQueryNetworkClient {
82
109
  * Gets modules.
83
110
  */
84
111
  modules: import("../network/types.js").QueryObject<Omit<{
85
- pageSize?: number | undefined;
86
- moduleType?: import("../api/codeShift.js").ModuleType | null | undefined;
87
- page?: number | undefined;
88
- lastEvaluatedKey?: string | undefined;
89
- xAccountSlug?: string | undefined;
112
+ pageSize?: number;
113
+ moduleType?: import("../api/codeShift.js").ModuleType | null;
114
+ page?: number;
115
+ lastEvaluatedKey?: string;
116
+ sharedWith?: string | null;
117
+ createdBy?: string | null;
118
+ visibility?: import("../api/codeShift.js").ModuleVisibility | null;
119
+ name?: string | null;
120
+ tags?: string[] | null;
121
+ xAccountSlug?: string;
90
122
  authorization: string;
91
123
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListModuleResponse>;
92
124
  /**
@@ -96,6 +128,20 @@ declare class CodeShift extends ReactQueryNetworkClient {
96
128
  moduleId: string;
97
129
  authorization: string;
98
130
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").GetModuleResponse>;
131
+ /**
132
+ * Add a module in favorites.
133
+ */
134
+ addFavoriteModule: import("../network/types.js").MutationObject<Omit<{
135
+ moduleId: string;
136
+ authorization: string;
137
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
138
+ /**
139
+ * Remove a module from favorites.
140
+ */
141
+ removeFavoriteModule: import("../network/types.js").MutationObject<Omit<{
142
+ moduleId: string;
143
+ authorization: string;
144
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
99
145
  /**
100
146
  * Gets module inputs.
101
147
  */
@@ -108,7 +154,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
108
154
  */
109
155
  createModule: import("../network/types.js").MutationObject<Omit<{
110
156
  authorization: string;
111
- xAccountSlug?: string | undefined;
157
+ xAccountSlug?: string;
112
158
  createModuleRequest: import("../api/codeShift.js").CreateModuleRequest;
113
159
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
114
160
  /**
@@ -117,7 +163,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
117
163
  updateModule: import("../network/types.js").MutationObject<Omit<{
118
164
  moduleId: string;
119
165
  authorization: string;
120
- xAccountSlug?: string | undefined;
166
+ xAccountSlug?: string;
121
167
  putModuleRequest: import("../api/codeShift.js").PutModuleRequest;
122
168
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
123
169
  /**
@@ -127,14 +173,22 @@ declare class CodeShift extends ReactQueryNetworkClient {
127
173
  authorization: string;
128
174
  body: import("../api/codeShift.js").ModuleDispatchRequest[];
129
175
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
176
+ /**
177
+ * Gets module docs.
178
+ */
179
+ moduleDocs: import("../network/types.js").QueryObject<Omit<{
180
+ moduleId: string;
181
+ language?: "pt-br" | "en-us";
182
+ authorization: string;
183
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").GetModuleDocsResponse | null>;
130
184
  /**
131
185
  * Gets repository reports.
132
186
  */
133
187
  repositoryReports: import("../network/types.js").QueryObject<Omit<{
134
188
  repositoryId: string;
135
- pageSize?: number | undefined;
136
- page?: number | undefined;
137
- lastEvaluatedKey?: string | undefined;
189
+ pageSize?: number;
190
+ page?: number;
191
+ lastEvaluatedKey?: string;
138
192
  authorization: string;
139
193
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListRepositoryReportResponseRead>;
140
194
  /**
@@ -149,7 +203,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
149
203
  */
150
204
  downloadReport: import("../network/types.js").QueryObject<Omit<{
151
205
  reportId: string;
152
- extension?: "csv" | "xlsx" | undefined;
206
+ extension?: "csv" | "xlsx";
153
207
  authorization: string;
154
208
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
155
209
  /**
@@ -193,7 +247,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
193
247
  */
194
248
  downloadSearchRepository: import("../network/types.js").MutationObject<Omit<{
195
249
  searchRepoId: string;
196
- extension?: "csv" | "xlsx" | undefined;
250
+ extension?: "csv" | "xlsx";
197
251
  authorization: string;
198
252
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
199
253
  /**
@@ -223,9 +277,9 @@ declare class CodeShift extends ReactQueryNetworkClient {
223
277
  */
224
278
  downloadSearchRepositoryV2: import("../network/types.js").MutationObject<Omit<{
225
279
  searchId: string;
226
- extension?: "csv" | "xlsx" | undefined;
280
+ extension?: "csv" | "xlsx";
227
281
  authorization: string;
228
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ResponseSearchRepoByIdResponseRead>;
282
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
229
283
  /**
230
284
  * Validate if the user has permission.
231
285
  * We do not use opa in this api, so this is the fn needed to check permissions.
@@ -245,9 +299,9 @@ declare class CodeShift extends ReactQueryNetworkClient {
245
299
  * Lists integrations
246
300
  */
247
301
  listIntegration: import("../network/types.js").QueryObject<Omit<{
248
- pageSize?: number | undefined;
249
- page?: number | undefined;
250
- name?: string | null | undefined;
302
+ pageSize?: number;
303
+ page?: number;
304
+ name?: string | null;
251
305
  authorization: string;
252
306
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListIntegrationResponse>;
253
307
  /**
@@ -277,25 +331,25 @@ declare class CodeShift extends ReactQueryNetworkClient {
277
331
  */
278
332
  createProgramGroup: import("../network/types.js").MutationObject<Omit<{
279
333
  name: string;
280
- tags?: string[] | null | undefined;
281
- integrationId?: string | undefined;
334
+ tags?: string[] | null;
335
+ integrationId?: string;
282
336
  authorization: string;
283
- bodyCreateProgramGroupServiceV1ProgramGroupsPost?: import("../api/codeShift.js").BodyCreateProgramGroupServiceV1ProgramGroupsPost | undefined;
337
+ fastapiCompatV2BodyCreateProgramGroupServiceV1ProgramGroupsPost?: import("../api/codeShift.js").BodyCreateProgramGroupServiceV1ProgramGroupsPost;
284
338
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").CreateProgramGroupResponse>;
285
339
  /**
286
340
  * Gets list of program groups.
287
341
  */
288
342
  listProgramGroups: import("../network/types.js").QueryObject<Omit<{
289
- moduleId?: string | null | undefined;
290
- createdByEmail?: string | null | undefined;
291
- reportByEmail?: string | null | undefined;
292
- tags?: string[] | null | undefined;
293
- name?: string | null | undefined;
294
- pageSize?: number | undefined;
295
- page?: number | undefined;
296
- orderBy?: "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status" | "program_group.name" | "program_group.created_at" | "program_group.updated_at" | undefined;
297
- orderDirection?: "ASC" | "DESC" | "asc" | "desc" | undefined;
298
- integrationId?: string | undefined;
343
+ moduleId?: string | null;
344
+ createdByEmail?: string | null;
345
+ reportByEmail?: string | null;
346
+ tags?: string[] | null;
347
+ name?: string | null;
348
+ pageSize?: number;
349
+ page?: number;
350
+ orderBy?: "program_group.name" | "program_group.created_at" | "program_group.updated_at" | "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status";
351
+ orderDirection?: "asc" | "desc" | "ASC" | "DESC";
352
+ integrationId?: string;
299
353
  authorization: string;
300
354
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListProgramGroupResponseRead>;
301
355
  /**
@@ -310,9 +364,9 @@ declare class CodeShift extends ReactQueryNetworkClient {
310
364
  */
311
365
  listProgramGroupReport: import("../network/types.js").QueryObject<Omit<{
312
366
  programGroupId: string;
313
- pageSize?: number | undefined;
314
- page?: number | undefined;
315
- lastEvaluatedKey?: string | undefined;
367
+ pageSize?: number;
368
+ page?: number;
369
+ lastEvaluatedKey?: string;
316
370
  authorization: string;
317
371
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListProgramGroupReportResponseRead>;
318
372
  /**
@@ -320,11 +374,11 @@ declare class CodeShift extends ReactQueryNetworkClient {
320
374
  */
321
375
  updateProgramGroup: import("../network/types.js").MutationObject<Omit<{
322
376
  programGroupId: string;
323
- name?: string | null | undefined;
324
- tags?: string[] | null | undefined;
325
- integrationId?: string | null | undefined;
377
+ name?: string | null;
378
+ tags?: string[] | null;
379
+ integrationId?: string | null;
326
380
  authorization: string;
327
- bodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut?: import("../api/codeShift.js").BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut | undefined;
381
+ fastapiCompatV2BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut?: import("../api/codeShift.js").BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut;
328
382
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
329
383
  /**
330
384
  * Updates a program group components.
@@ -345,31 +399,39 @@ declare class CodeShift extends ReactQueryNetworkClient {
345
399
  * List Program Group Download Service
346
400
  */
347
401
  programGroupDownload: import("../network/types.js").QueryObject<Omit<{
348
- moduleId?: string | null | undefined;
349
- createdByEmail?: string | null | undefined;
350
- reportByEmail?: string | null | undefined;
351
- tags?: string[] | null | undefined;
352
- name?: string | null | undefined;
353
- orderBy?: "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status" | "program_group.name" | "program_group.created_at" | "program_group.updated_at" | undefined;
354
- orderDirection?: "ASC" | "DESC" | "asc" | "desc" | undefined;
355
- integrationId?: string | undefined;
356
- extension?: "csv" | "xlsx" | undefined;
402
+ moduleId?: string | null;
403
+ createdByEmail?: string | null;
404
+ reportByEmail?: string | null;
405
+ tags?: string[] | null;
406
+ name?: string | null;
407
+ orderBy?: "program_group.name" | "program_group.created_at" | "program_group.updated_at" | "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status";
408
+ orderDirection?: "asc" | "desc" | "ASC" | "DESC";
409
+ integrationId?: string;
410
+ extension?: "csv" | "xlsx";
357
411
  authorization: string;
358
412
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
359
413
  /**
360
414
  * Gets list of tags.
361
415
  */
362
416
  tags: import("../network/types.js").QueryObject<Omit<{
363
- name?: string | null | undefined;
417
+ name?: string | null;
418
+ $type?: "Repository" | "Module";
364
419
  authorization: string;
365
420
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListTagResponse>;
366
421
  /**
367
422
  * Validates a SCM URL.
368
423
  */
369
424
  validateSCMUrl: import("../network/types.js").MutationObject<Omit<{
425
+ raiseConflict?: boolean;
370
426
  authorization: string;
371
427
  validateScmUrlRequest: import("../api/codeShift.js").ValidateScmUrlRequest;
372
- }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
428
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ValidateScmUrlResponse>;
429
+ /**
430
+ * PAT Health Check
431
+ */
432
+ checkScmPatHealth: import("../network/types.js").QueryObject<Omit<{
433
+ authorization: string;
434
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, boolean>;
373
435
  /**
374
436
  * Get Branches for a Repository
375
437
  */
@@ -381,164 +443,164 @@ declare class CodeShift extends ReactQueryNetworkClient {
381
443
  * General Report Success And Errors
382
444
  */
383
445
  generalReportSuccessAndErrors: import("../network/types.js").QueryObject<Omit<{
384
- startDate?: string | undefined;
385
- endDate?: string | undefined;
446
+ startDate?: string;
447
+ endDate?: string;
386
448
  authorization: string;
387
449
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").GeneralReportSuccessAndErrorsResponses>;
388
450
  /**
389
451
  * Analytics Repository Last Report Status
390
452
  */
391
453
  analyticsRepositoryLastReportStatus: import("../network/types.js").QueryObject<Omit<{
392
- pageSize?: number | undefined;
393
- page?: number | undefined;
394
- moduleId?: string[] | null | undefined;
395
- executedBy?: string[] | null | undefined;
396
- repositoryUrl?: string | null | undefined;
397
- tags?: string[] | null | undefined;
398
- orderBy?: "mode" | "repositoryUrl" | "moduleName" | "merged" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | null | undefined;
399
- orderDirection?: "ASC" | "DESC" | null | undefined;
400
- startDate?: string | null | undefined;
401
- endDate?: string | null | undefined;
402
- mode?: "scan" | "fix" | null | undefined;
454
+ pageSize?: number;
455
+ page?: number;
456
+ moduleId?: string[] | null;
457
+ executedBy?: string[] | null;
458
+ repositoryUrl?: string | null;
459
+ tags?: string[] | null;
460
+ orderBy?: ("repositoryUrl" | "moduleName" | "merged" | "mode" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues") | null;
461
+ orderDirection?: ("ASC" | "DESC") | null;
462
+ startDate?: string | null;
463
+ endDate?: string | null;
464
+ mode?: ("scan" | "fix") | null;
403
465
  authorization: string;
404
466
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryLastReportStatusResponse>;
405
467
  /**
406
468
  * Analytics Repository Last Report Status Download
407
469
  */
408
470
  analyticsRepositoryLastReportStatusDownload: import("../network/types.js").QueryObject<Omit<{
409
- moduleId?: string[] | null | undefined;
410
- orderBy?: "mode" | "repositoryUrl" | "moduleName" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | null | undefined;
411
- tags?: string[] | null | undefined;
412
- executedBy?: string[] | null | undefined;
413
- repositoryUrl?: string | null | undefined;
414
- orderDirection?: "ASC" | "DESC" | null | undefined;
415
- startDate?: string | undefined;
416
- endDate?: string | undefined;
417
- extension?: "csv" | "xlsx" | undefined;
418
- mode?: "scan" | "fix" | null | undefined;
471
+ moduleId?: string[] | null;
472
+ orderBy?: ("repositoryUrl" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues") | null;
473
+ tags?: string[] | null;
474
+ executedBy?: string[] | null;
475
+ repositoryUrl?: string | null;
476
+ orderDirection?: ("ASC" | "DESC") | null;
477
+ startDate?: string;
478
+ endDate?: string;
479
+ extension?: "csv" | "xlsx";
480
+ mode?: ("scan" | "fix") | null;
419
481
  authorization: string;
420
482
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
421
483
  /**
422
484
  * Analytics Repository Usage
423
485
  */
424
486
  analyticsRepositoryUsage: import("../network/types.js").QueryObject<Omit<{
425
- pageSize?: number | undefined;
426
- page?: number | undefined;
427
- moduleId?: string[] | null | undefined;
428
- userId?: string | null | undefined;
429
- tags?: string[] | null | undefined;
430
- orderBy?: "repositoryUrl" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
431
- executedBy?: string[] | null | undefined;
432
- repositoryUrl?: string | null | undefined;
433
- orderDirection?: "ASC" | "DESC" | null | undefined;
434
- startDate?: string | undefined;
435
- endDate?: string | undefined;
487
+ pageSize?: number;
488
+ page?: number;
489
+ moduleId?: string[] | null;
490
+ userId?: string | null;
491
+ tags?: string[] | null;
492
+ orderBy?: ("repositoryUrl" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
493
+ executedBy?: string[] | null;
494
+ repositoryUrl?: string | null;
495
+ orderDirection?: ("ASC" | "DESC") | null;
496
+ startDate?: string;
497
+ endDate?: string;
436
498
  authorization: string;
437
499
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryUsageResponse>;
438
500
  /**
439
501
  * Analytics Program Groups Last Report Status
440
502
  */
441
503
  analyticsProgramGroupsLastReportStatus: import("../network/types.js").QueryObject<Omit<{
442
- pageSize?: number | undefined;
443
- page?: number | undefined;
444
- moduleId?: string[] | null | undefined;
445
- userId?: string | null | undefined;
446
- tags?: string[] | null | undefined;
447
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | "programName" | null | undefined;
448
- executedBy?: string[] | null | undefined;
449
- programName?: string | null | undefined;
450
- orderDirection?: "ASC" | "DESC" | null | undefined;
451
- startDate?: string | undefined;
452
- endDate?: string | undefined;
504
+ pageSize?: number;
505
+ page?: number;
506
+ moduleId?: string[] | null;
507
+ userId?: string | null;
508
+ tags?: string[] | null;
509
+ orderBy?: ("programName" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues") | null;
510
+ executedBy?: string[] | null;
511
+ programName?: string | null;
512
+ orderDirection?: ("ASC" | "DESC") | null;
513
+ startDate?: string;
514
+ endDate?: string;
453
515
  authorization: string;
454
516
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsLastReportStatusResponse>;
455
517
  /**
456
518
  * Analytics Program Groups Last Report Status Download
457
519
  */
458
520
  analyticsProgramGroupsLastReportStatusDownload: import("../network/types.js").QueryObject<Omit<{
459
- moduleId?: string[] | null | undefined;
460
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | "programName" | null | undefined;
461
- orderDirection?: "ASC" | "DESC" | null | undefined;
462
- startDate?: string | null | undefined;
463
- endDate?: string | null | undefined;
464
- reportType?: "repository" | "program_group" | null | undefined;
465
- extension?: "csv" | "xlsx" | undefined;
521
+ moduleId?: string[] | null;
522
+ orderBy?: ("programName" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues") | null;
523
+ orderDirection?: ("ASC" | "DESC") | null;
524
+ startDate?: string | null;
525
+ endDate?: string | null;
526
+ reportType?: ("repository" | "program_group") | null;
527
+ extension?: "csv" | "xlsx";
466
528
  authorization: string;
467
529
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
468
530
  /**
469
531
  * Analytics User Usage
470
532
  */
471
533
  analyticsUserUsage: import("../network/types.js").QueryObject<Omit<{
472
- pageSize?: number | undefined;
473
- page?: number | undefined;
474
- moduleId?: string[] | null | undefined;
475
- name?: string | null | undefined;
476
- reportType?: "repository" | "program_group" | null | undefined;
477
- orderBy?: "name" | "email" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
478
- orderDirection?: "ASC" | "DESC" | null | undefined;
479
- startDate?: string | undefined;
480
- endDate?: string | undefined;
534
+ pageSize?: number;
535
+ page?: number;
536
+ moduleId?: string[] | null;
537
+ name?: string | null;
538
+ reportType?: ("repository" | "program_group") | null;
539
+ orderBy?: ("name" | "email" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
540
+ orderDirection?: ("ASC" | "DESC") | null;
541
+ startDate?: string;
542
+ endDate?: string;
481
543
  authorization: string;
482
544
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsUserUsageResponse>;
483
545
  /**
484
546
  * Analytics User Usage Download
485
547
  */
486
548
  analyticsUserUsageDownload: import("../network/types.js").QueryObject<Omit<{
487
- moduleId?: string[] | null | undefined;
488
- name?: string | null | undefined;
489
- reportType?: "repository" | "program_group" | null | undefined;
490
- orderBy?: "name" | "email" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
491
- orderDirection?: "ASC" | "DESC" | null | undefined;
492
- startDate?: string | undefined;
493
- endDate?: string | undefined;
494
- extension?: "csv" | "xlsx" | undefined;
549
+ moduleId?: string[] | null;
550
+ name?: string | null;
551
+ reportType?: ("repository" | "program_group") | null;
552
+ orderBy?: ("name" | "email" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
553
+ orderDirection?: ("ASC" | "DESC") | null;
554
+ startDate?: string;
555
+ endDate?: string;
556
+ extension?: "csv" | "xlsx";
495
557
  authorization: string;
496
558
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
497
559
  /**
498
560
  * Analytics Repository Usage Download
499
561
  */
500
562
  analyticsRepositoryUsageDownload: import("../network/types.js").QueryObject<Omit<{
501
- moduleId?: string[] | null | undefined;
502
- userId?: string | null | undefined;
503
- orderBy?: "repositoryUrl" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
504
- tags?: string[] | null | undefined;
505
- executedBy?: string[] | null | undefined;
506
- repositoryUrl?: string | null | undefined;
507
- orderDirection?: "ASC" | "DESC" | null | undefined;
508
- startDate?: string | undefined;
509
- endDate?: string | undefined;
510
- extension?: "csv" | "xlsx" | undefined;
563
+ moduleId?: string[] | null;
564
+ userId?: string | null;
565
+ orderBy?: ("repositoryUrl" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
566
+ tags?: string[] | null;
567
+ executedBy?: string[] | null;
568
+ repositoryUrl?: string | null;
569
+ orderDirection?: ("ASC" | "DESC") | null;
570
+ startDate?: string;
571
+ endDate?: string;
572
+ extension?: "csv" | "xlsx";
511
573
  authorization: string;
512
574
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
513
575
  /**
514
576
  * Analytics Program Groups Usage
515
577
  */
516
578
  analyticsProgramGroupsUsage: import("../network/types.js").QueryObject<Omit<{
517
- pageSize?: number | undefined;
518
- page?: number | undefined;
519
- executedBy?: string[] | null | undefined;
520
- moduleId?: string[] | null | undefined;
521
- tags?: string[] | null | undefined;
522
- orderBy?: "name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
523
- orderDirection?: "ASC" | "DESC" | null | undefined;
524
- programGroupName?: string | null | undefined;
525
- startDate?: string | null | undefined;
526
- endDate?: string | null | undefined;
579
+ pageSize?: number;
580
+ page?: number;
581
+ executedBy?: string[] | null;
582
+ moduleId?: string[] | null;
583
+ tags?: string[] | null;
584
+ orderBy?: ("name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
585
+ orderDirection?: ("ASC" | "DESC") | null;
586
+ programGroupName?: string | null;
587
+ startDate?: string | null;
588
+ endDate?: string | null;
527
589
  authorization: string;
528
590
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsUsageResponse>;
529
591
  /**
530
592
  * Analytics Program Groups Usage Download
531
593
  */
532
594
  analyticsProgramGroupsUsageDownload: import("../network/types.js").QueryObject<Omit<{
533
- moduleId?: string[] | null | undefined;
534
- executedBy?: string[] | null | undefined;
535
- tags?: string[] | null | undefined;
536
- orderBy?: "name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
537
- orderDirection?: "ASC" | "DESC" | null | undefined;
538
- programGroupName?: string | null | undefined;
539
- startDate?: string | null | undefined;
540
- endDate?: string | null | undefined;
541
- extension?: "csv" | "xlsx" | undefined;
595
+ moduleId?: string[] | null;
596
+ executedBy?: string[] | null;
597
+ tags?: string[] | null;
598
+ orderBy?: ("name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
599
+ orderDirection?: ("ASC" | "DESC") | null;
600
+ programGroupName?: string | null;
601
+ startDate?: string | null;
602
+ endDate?: string | null;
603
+ extension?: "csv" | "xlsx";
542
604
  authorization: string;
543
605
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
544
606
  /**
@@ -551,140 +613,169 @@ declare class CodeShift extends ReactQueryNetworkClient {
551
613
  * Analytics Program Groups Details
552
614
  */
553
615
  analyticsProgramGroupsDetails: import("../network/types.js").QueryObject<Omit<{
554
- pageSize?: number | undefined;
555
- page?: number | undefined;
556
- programName?: string | null | undefined;
557
- tags?: string[] | null | undefined;
558
- mode?: "scan" | "fix" | null | undefined;
559
- moduleId?: string[] | null | undefined;
560
- programCreatedById?: string[] | null | undefined;
561
- reportCreatedById?: string[] | null | undefined;
562
- startDate?: string | undefined;
563
- endDate?: string | undefined;
564
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "programGroupName" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | null | undefined;
565
- orderDirection?: "ASC" | "DESC" | null | undefined;
616
+ pageSize?: number;
617
+ page?: number;
618
+ programName?: string | null;
619
+ tags?: string[] | null;
620
+ mode?: ("scan" | "fix") | null;
621
+ moduleId?: string[] | null;
622
+ programCreatedById?: string[] | null;
623
+ reportCreatedById?: string[] | null;
624
+ startDate?: string;
625
+ endDate?: string;
626
+ orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds") | null;
627
+ orderDirection?: ("ASC" | "DESC") | null;
566
628
  authorization: string;
567
629
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsDetailsResponse>;
568
630
  /**
569
631
  * Analytics Program Groups Details Download
570
632
  */
571
633
  analyticsProgramGroupsDetailsDownload: import("../network/types.js").QueryObject<Omit<{
572
- programName?: string | null | undefined;
573
- tags?: string[] | null | undefined;
574
- mode?: "scan" | "fix" | null | undefined;
575
- moduleId?: string[] | null | undefined;
576
- programCreatedById?: string[] | null | undefined;
577
- reportCreatedById?: string[] | null | undefined;
578
- startDate?: string | undefined;
579
- endDate?: string | undefined;
580
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "programGroupName" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | null | undefined;
581
- orderDirection?: "ASC" | "DESC" | null | undefined;
582
- extension?: "csv" | "xlsx" | undefined;
634
+ programName?: string | null;
635
+ tags?: string[] | null;
636
+ mode?: ("scan" | "fix") | null;
637
+ moduleId?: string[] | null;
638
+ programCreatedById?: string[] | null;
639
+ reportCreatedById?: string[] | null;
640
+ startDate?: string;
641
+ endDate?: string;
642
+ orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds") | null;
643
+ orderDirection?: ("ASC" | "DESC") | null;
644
+ extension?: "csv" | "xlsx";
583
645
  authorization: string;
584
646
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
585
647
  /**
586
648
  * Analytics Program Groups Details
587
649
  */
588
650
  analyticsRepositoryDetails: import("../network/types.js").QueryObject<Omit<{
589
- pageSize?: number | undefined;
590
- page?: number | undefined;
591
- repositoryUrl?: string | null | undefined;
592
- tags?: string[] | null | undefined;
593
- mode?: "scan" | "fix" | null | undefined;
594
- moduleId?: string[] | null | undefined;
595
- repositoryCreatedById?: string[] | null | undefined;
596
- executedBy?: string[] | null | undefined;
597
- startDate?: string | undefined;
598
- endDate?: string | undefined;
599
- orderBy?: "repositoryUrl" | "moduleName" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | "sourceBranch" | "targetBranch" | "moduleVersion" | "pullRequestLink" | "reportCreatedByEmail" | "repositoryCreatedByEmail" | "repositoryCreatedByName" | null | undefined;
600
- orderDirection?: "ASC" | "DESC" | null | undefined;
651
+ pageSize?: number;
652
+ page?: number;
653
+ repositoryUrl?: string | null;
654
+ tags?: string[] | null;
655
+ mode?: ("scan" | "fix") | null;
656
+ moduleId?: string[] | null;
657
+ repositoryCreatedById?: string[] | null;
658
+ executedBy?: string[] | null;
659
+ startDate?: string;
660
+ endDate?: string;
661
+ orderBy?: ("totalFilesCount" | "analyzedFilesCount" | "changedFilesCount" | "issuesCount" | "issuesFilesCount" | "reportCreatedAt" | "repositoryUrl" | "sourceBranch" | "targetBranch" | "executionCompletedAt" | "executionStartedAt" | "moduleName" | "moduleVersion" | "processingTimeSeconds" | "pullRequestLink" | "reportCreatedByEmail" | "reportCreatedByName" | "repositoryCreatedByEmail" | "repositoryCreatedByName") | null;
662
+ orderDirection?: ("ASC" | "DESC") | null;
601
663
  authorization: string;
602
664
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryDetailedReportResponse>;
603
665
  /**
604
666
  * Analytics Program Groups Details Download
605
667
  */
606
668
  analyticsRepositoryDetailsDownload: import("../network/types.js").QueryObject<Omit<{
607
- repositoryUrl?: string | null | undefined;
608
- tags?: string[] | null | undefined;
609
- mode?: "scan" | "fix" | null | undefined;
610
- moduleId?: string[] | null | undefined;
611
- repositoryCreatedById?: string[] | null | undefined;
612
- reportCreatedById?: string[] | null | undefined;
613
- startDate?: string | undefined;
614
- endDate?: string | undefined;
615
- orderBy?: "repositoryUrl" | "moduleName" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | "sourceBranch" | "targetBranch" | "moduleVersion" | "pullRequestLink" | "reportCreatedByEmail" | "repositoryCreatedByEmail" | "repositoryCreatedByName" | null | undefined;
616
- orderDirection?: "ASC" | "DESC" | null | undefined;
617
- extension?: "csv" | "xlsx" | undefined;
669
+ repositoryUrl?: string | null;
670
+ tags?: string[] | null;
671
+ mode?: ("scan" | "fix") | null;
672
+ moduleId?: string[] | null;
673
+ repositoryCreatedById?: string[] | null;
674
+ reportCreatedById?: string[] | null;
675
+ startDate?: string;
676
+ endDate?: string;
677
+ orderBy?: ("totalFilesCount" | "analyzedFilesCount" | "changedFilesCount" | "issuesCount" | "issuesFilesCount" | "reportCreatedAt" | "repositoryUrl" | "sourceBranch" | "targetBranch" | "executionCompletedAt" | "executionStartedAt" | "moduleName" | "moduleVersion" | "processingTimeSeconds" | "pullRequestLink" | "reportCreatedByEmail" | "reportCreatedByName" | "repositoryCreatedByEmail" | "repositoryCreatedByName") | null;
678
+ orderDirection?: ("ASC" | "DESC") | null;
679
+ extension?: "csv" | "xlsx";
618
680
  authorization: string;
619
681
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryDetailedReportResponse>;
620
682
  /**
621
683
  * Analytics Program Groups Target Details
622
684
  */
623
685
  analyticsProgramGroupsTargetDetails: import("../network/types.js").QueryObject<Omit<{
624
- pageSize?: number | undefined;
625
- page?: number | undefined;
626
- programName?: string | null | undefined;
627
- componentName?: string | null | undefined;
628
- tags?: string[] | null | undefined;
629
- mode?: "scan" | "fix" | null | undefined;
630
- moduleId?: string[] | null | undefined;
631
- reportCreatedById?: string[] | null | undefined;
632
- startDate?: string | undefined;
633
- endDate?: string | undefined;
634
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "totalIssues" | "programGroupName" | "executionStartedAt" | "executionCompletedAt" | "changedFilesCount" | "componentAppName" | "componentName" | "componentType" | null | undefined;
635
- orderDirection?: "ASC" | "DESC" | null | undefined;
686
+ pageSize?: number;
687
+ page?: number;
688
+ programName?: string | null;
689
+ componentName?: string | null;
690
+ tags?: string[] | null;
691
+ mode?: ("scan" | "fix") | null;
692
+ moduleId?: string[] | null;
693
+ reportCreatedById?: string[] | null;
694
+ startDate?: string;
695
+ endDate?: string;
696
+ orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "executionStartedAt" | "executionCompletedAt" | "componentAppName" | "componentName" | "componentType" | "totalIssues" | "changedFilesCount") | null;
697
+ orderDirection?: ("ASC" | "DESC") | null;
636
698
  authorization: string;
637
699
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsTargetDetailsResponse>;
638
700
  /**
639
701
  * Analytics Program Groups Target Details Download
640
702
  */
641
703
  analyticsProgramGroupsTargetDetailsDownload: import("../network/types.js").QueryObject<Omit<{
642
- programName?: string | null | undefined;
643
- tags?: string[] | null | undefined;
644
- mode?: "scan" | "fix" | null | undefined;
645
- moduleId?: string[] | null | undefined;
646
- componentName?: string | null | undefined;
647
- reportCreatedById?: string[] | null | undefined;
648
- startDate?: string | undefined;
649
- endDate?: string | undefined;
650
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "totalIssues" | "programGroupName" | "executionStartedAt" | "executionCompletedAt" | "changedFilesCount" | "componentAppName" | "componentName" | "componentType" | null | undefined;
651
- orderDirection?: "ASC" | "DESC" | null | undefined;
652
- extension?: "csv" | "xlsx" | undefined;
704
+ programName?: string | null;
705
+ tags?: string[] | null;
706
+ mode?: ("scan" | "fix") | null;
707
+ moduleId?: string[] | null;
708
+ componentName?: string | null;
709
+ reportCreatedById?: string[] | null;
710
+ startDate?: string;
711
+ endDate?: string;
712
+ orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "executionStartedAt" | "executionCompletedAt" | "componentAppName" | "componentName" | "componentType" | "totalIssues" | "changedFilesCount") | null;
713
+ orderDirection?: ("ASC" | "DESC") | null;
714
+ extension?: "csv" | "xlsx";
653
715
  authorization: string;
654
716
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
655
717
  /**
656
718
  * Analytics Repository Target Details
657
719
  */
658
720
  analyticsRepositoryTargetDetails: import("../network/types.js").QueryObject<Omit<{
659
- pageSize?: number | undefined;
660
- page?: number | undefined;
661
- repositoryUrl?: string | null | undefined;
662
- targetName?: string | null | undefined;
663
- tags?: string[] | null | undefined;
664
- mode?: "scan" | "fix" | null | undefined;
665
- moduleId?: string[] | null | undefined;
666
- reportCreatedById?: string[] | null | undefined;
667
- startDate?: string | undefined;
668
- endDate?: string | undefined;
669
- orderBy?: "repositoryUrl" | "moduleName" | "reportCreatedAt" | "issuesCount" | "sourceBranch" | "targetName" | "targetPath" | null | undefined;
670
- orderDirection?: "ASC" | "DESC" | null | undefined;
721
+ pageSize?: number;
722
+ page?: number;
723
+ repositoryUrl?: string | null;
724
+ targetName?: string | null;
725
+ tags?: string[] | null;
726
+ mode?: ("scan" | "fix") | null;
727
+ moduleId?: string[] | null;
728
+ reportCreatedById?: string[] | null;
729
+ startDate?: string;
730
+ endDate?: string;
731
+ orderBy?: ("repositoryUrl" | "sourceBranch" | "moduleName" | "targetName" | "targetPath" | "issuesCount" | "reportCreatedAt") | null;
732
+ orderDirection?: ("ASC" | "DESC") | null;
671
733
  authorization: string;
672
734
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryTargetDetailsResponse>;
673
735
  /**
674
736
  * Analytics Repository Target Details Download
675
737
  */
676
738
  analyticsRepositoryTargetDetailsDownload: import("../network/types.js").QueryObject<Omit<{
677
- repositoryUrl?: string | null | undefined;
678
- targetName?: string | null | undefined;
679
- tags?: string[] | null | undefined;
680
- mode?: "scan" | "fix" | null | undefined;
681
- moduleId?: string[] | null | undefined;
682
- reportCreatedById?: string[] | null | undefined;
683
- startDate?: string | undefined;
684
- endDate?: string | undefined;
685
- orderBy?: "repositoryUrl" | "moduleName" | "reportCreatedAt" | "issuesCount" | "sourceBranch" | "targetName" | "targetPath" | null | undefined;
686
- orderDirection?: "ASC" | "DESC" | null | undefined;
687
- extension?: "csv" | "xlsx" | undefined;
739
+ repositoryUrl?: string | null;
740
+ targetName?: string | null;
741
+ tags?: string[] | null;
742
+ mode?: ("scan" | "fix") | null;
743
+ moduleId?: string[] | null;
744
+ reportCreatedById?: string[] | null;
745
+ startDate?: string;
746
+ endDate?: string;
747
+ orderBy?: ("repositoryUrl" | "sourceBranch" | "moduleName" | "targetName" | "targetPath" | "issuesCount" | "reportCreatedAt") | null;
748
+ orderDirection?: ("ASC" | "DESC") | null;
749
+ extension?: "csv" | "xlsx";
750
+ authorization: string;
751
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
752
+ /**
753
+ * Analytics Modules Execution Times
754
+ */
755
+ analyticsModulesExecutionTimes: import("../network/types.js").QueryObject<Omit<{
756
+ pageSize?: number;
757
+ page?: number;
758
+ moduleId?: string[] | null;
759
+ version?: string[] | null;
760
+ mode?: ("scan" | "fix") | null;
761
+ startDate?: string;
762
+ endDate?: string;
763
+ orderBy?: ("moduleName" | "moduleVersion" | "queueTimeAvg" | "queueTimeP95" | "executionTimeAvg" | "executionTimeP95" | "totalTimeAvg" | "totalTimeP95" | "executionCount") | null;
764
+ orderDirection?: ("ASC" | "DESC") | null;
765
+ authorization: string;
766
+ }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsModuleExecutionTimesResponse>;
767
+ /**
768
+ * Analytics Modules Execution Times Download
769
+ */
770
+ analyticsModulesExecutionTimesDownload: import("../network/types.js").QueryObject<Omit<{
771
+ moduleId?: string[] | null;
772
+ version?: string[] | null;
773
+ mode?: ("scan" | "fix") | null;
774
+ startDate?: string;
775
+ endDate?: string;
776
+ orderBy?: ("moduleName" | "moduleVersion" | "queueTimeAvg" | "queueTimeP95" | "executionTimeAvg" | "executionTimeP95" | "totalTimeAvg" | "totalTimeP95" | "executionCount") | null;
777
+ orderDirection?: ("ASC" | "DESC") | null;
778
+ extension?: "csv" | "xlsx";
688
779
  authorization: string;
689
780
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
690
781
  }