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