@stack-spot/portal-network 0.194.2 → 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.
- package/CHANGELOG.md +174 -0
- package/dist/api/agent-tools.d.ts +6 -0
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/agent.d.ts +55 -55
- package/dist/api/agent.d.ts.map +1 -1
- package/dist/api/ai.d.ts +189 -86
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js +238 -142
- package/dist/api/ai.js.map +1 -1
- package/dist/api/cloudPlatform.d.ts +70 -129
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +79 -72
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/api/codeShift.d.ts +315 -62
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +153 -12
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/discover.d.ts +23 -12
- package/dist/api/discover.d.ts.map +1 -1
- package/dist/api/discover.js +10 -0
- package/dist/api/discover.js.map +1 -1
- package/dist/api-addresses.d.ts.map +1 -1
- package/dist/client/account.d.ts +233 -233
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/agent-tools.d.ts +124 -124
- package/dist/client/agent-tools.d.ts.map +1 -1
- package/dist/client/agent-tools.js +10 -1
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/agent.d.ts +46 -46
- package/dist/client/agent.d.ts.map +1 -1
- package/dist/client/ai.d.ts +123 -77
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/ai.js +44 -1
- package/dist/client/ai.js.map +1 -1
- package/dist/client/api-management.d.ts +2 -2
- package/dist/client/cloud-account.d.ts +13 -13
- package/dist/client/cloud-platform-horizon.d.ts +19 -19
- package/dist/client/cloud-platform.d.ts +114 -89
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +73 -46
- package/dist/client/cloud-platform.js.map +1 -1
- package/dist/client/cloud-runtimes.d.ts +4 -4
- package/dist/client/cloud-services.d.ts +17 -17
- package/dist/client/cloud-services.d.ts.map +1 -1
- package/dist/client/code-shift.d.ts +356 -258
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +91 -1
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/content.d.ts +127 -132
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/data-integration.d.ts +55 -55
- package/dist/client/data-integration.d.ts.map +1 -1
- package/dist/client/discover.d.ts +15 -9
- package/dist/client/discover.d.ts.map +1 -1
- package/dist/client/discover.js +208 -0
- package/dist/client/discover.js.map +1 -1
- package/dist/client/event-bus.d.ts.map +1 -1
- package/dist/client/gen-ai-inference.d.ts +20 -20
- package/dist/client/insights.d.ts +7 -7
- package/dist/client/notification.d.ts +10 -10
- package/dist/client/runtime-manager.d.ts +8 -8
- package/dist/client/types.d.ts +14 -0
- package/dist/client/types.d.ts.map +1 -1
- package/dist/client/workflow.d.ts +10 -10
- package/dist/client/workspace-ai.d.ts +48 -48
- package/dist/client/workspace-manager.d.ts +77 -77
- package/dist/client/workspace-search.d.ts +2 -2
- package/dist/client/workspace.d.ts +58 -105
- package/dist/client/workspace.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.d.ts +6 -0
- package/dist/error/dictionary/cloud-platform.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.js +6 -0
- package/dist/error/dictionary/cloud-platform.js.map +1 -1
- package/dist/utils/StreamedJson.d.ts.map +1 -1
- package/dist/utils/StreamedJson.js +9 -1
- package/dist/utils/StreamedJson.js.map +1 -1
- package/package.json +2 -2
- package/readme.md +2 -1
- package/src/api/account.ts +1 -0
- package/src/api/agent-tools.ts +9 -0
- package/src/api/agent.ts +2 -0
- package/src/api/ai.ts +364 -157
- package/src/api/cloudPlatform.ts +142 -216
- package/src/api/codeShift.ts +607 -69
- package/src/api/discover.ts +35 -12
- package/src/api/notification.ts +2 -0
- package/src/client/agent-tools.ts +10 -1
- package/src/client/ai.ts +37 -0
- package/src/client/cloud-platform.ts +40 -25
- package/src/client/code-shift.ts +54 -1
- package/src/client/discover.ts +220 -3
- package/src/client/types.ts +17 -2
- package/src/error/dictionary/cloud-platform.ts +6 -0
- 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
|
|
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
|
|
27
|
-
page?: number
|
|
28
|
-
lastEvaluatedKey?: string
|
|
29
|
-
filter?: string
|
|
30
|
-
moduleId?: string
|
|
31
|
-
createdByEmail?: string | null
|
|
32
|
-
reportByEmail?: string | null
|
|
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"
|
|
34
|
-
orderDirection?: "
|
|
35
|
-
tags?: string[] | null
|
|
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
|
|
65
|
-
moduleId?: string
|
|
66
|
-
createdByEmail?: string | null
|
|
67
|
-
reportByEmail?: string | null
|
|
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"
|
|
69
|
-
orderDirection?: "
|
|
70
|
-
tags?: string[] | null
|
|
71
|
-
extension?: "csv" | "xlsx"
|
|
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
|
|
86
|
-
moduleType?: import("../api/codeShift.js").ModuleType | null
|
|
87
|
-
page?: number
|
|
88
|
-
lastEvaluatedKey?: string
|
|
89
|
-
|
|
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
|
|
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
|
|
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
|
|
136
|
-
page?: number
|
|
137
|
-
lastEvaluatedKey?: string
|
|
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"
|
|
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"
|
|
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"
|
|
287
|
+
extension?: "csv" | "xlsx";
|
|
227
288
|
authorization: string;
|
|
228
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {},
|
|
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
|
|
249
|
-
page?: number
|
|
250
|
-
name?: string | null
|
|
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
|
|
281
|
-
integrationId?: string
|
|
341
|
+
tags?: string[] | null;
|
|
342
|
+
integrationId?: string;
|
|
282
343
|
authorization: string;
|
|
283
|
-
|
|
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
|
|
290
|
-
createdByEmail?: string | null
|
|
291
|
-
reportByEmail?: string | null
|
|
292
|
-
tags?: string[] | null
|
|
293
|
-
name?: string | null
|
|
294
|
-
pageSize?: number
|
|
295
|
-
page?: number
|
|
296
|
-
orderBy?: "
|
|
297
|
-
orderDirection?: "
|
|
298
|
-
integrationId?: string
|
|
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
|
|
314
|
-
page?: number
|
|
315
|
-
lastEvaluatedKey?: string
|
|
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
|
|
324
|
-
tags?: string[] | null
|
|
325
|
-
integrationId?: string | null
|
|
384
|
+
name?: string | null;
|
|
385
|
+
tags?: string[] | null;
|
|
386
|
+
integrationId?: string | null;
|
|
326
387
|
authorization: string;
|
|
327
|
-
|
|
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
|
|
349
|
-
createdByEmail?: string | null
|
|
350
|
-
reportByEmail?: string | null
|
|
351
|
-
tags?: string[] | null
|
|
352
|
-
name?: string | null
|
|
353
|
-
orderBy?: "
|
|
354
|
-
orderDirection?: "
|
|
355
|
-
integrationId?: string
|
|
356
|
-
extension?: "csv" | "xlsx"
|
|
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
|
|
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"> & {},
|
|
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
|
|
385
|
-
endDate?: string
|
|
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
|
|
393
|
-
page?: number
|
|
394
|
-
moduleId?: string[] | null
|
|
395
|
-
executedBy?: string[] | null
|
|
396
|
-
repositoryUrl?: string | null
|
|
397
|
-
tags?: string[] | null
|
|
398
|
-
orderBy?: "
|
|
399
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
400
|
-
startDate?: string | null
|
|
401
|
-
endDate?: string | null
|
|
402
|
-
mode?: "scan" | "fix" | null
|
|
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
|
|
410
|
-
orderBy?: "
|
|
411
|
-
tags?: string[] | null
|
|
412
|
-
executedBy?: string[] | null
|
|
413
|
-
repositoryUrl?: string | null
|
|
414
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
415
|
-
startDate?: string
|
|
416
|
-
endDate?: string
|
|
417
|
-
extension?: "csv" | "xlsx"
|
|
418
|
-
mode?: "scan" | "fix" | null
|
|
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
|
|
426
|
-
page?: number
|
|
427
|
-
moduleId?: string[] | null
|
|
428
|
-
userId?: string | null
|
|
429
|
-
tags?: string[] | null
|
|
430
|
-
orderBy?: "repositoryUrl" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null
|
|
431
|
-
executedBy?: string[] | null
|
|
432
|
-
repositoryUrl?: string | null
|
|
433
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
434
|
-
startDate?: string
|
|
435
|
-
endDate?: string
|
|
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
|
|
443
|
-
page?: number
|
|
444
|
-
moduleId?: string[] | null
|
|
445
|
-
userId?: string | null
|
|
446
|
-
tags?: string[] | null
|
|
447
|
-
orderBy?: "
|
|
448
|
-
executedBy?: string[] | null
|
|
449
|
-
programName?: string | null
|
|
450
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
451
|
-
startDate?: string
|
|
452
|
-
endDate?: string
|
|
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
|
|
460
|
-
orderBy?: "
|
|
461
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
462
|
-
startDate?: string | null
|
|
463
|
-
endDate?: string | null
|
|
464
|
-
reportType?: "repository" | "program_group" | null
|
|
465
|
-
extension?: "csv" | "xlsx"
|
|
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
|
|
473
|
-
page?: number
|
|
474
|
-
moduleId?: string[] | null
|
|
475
|
-
name?: string | null
|
|
476
|
-
reportType?: "repository" | "program_group" | null
|
|
477
|
-
orderBy?: "name" | "email" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null
|
|
478
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
479
|
-
startDate?: string
|
|
480
|
-
endDate?: string
|
|
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
|
|
488
|
-
name?: string | null
|
|
489
|
-
reportType?: "repository" | "program_group" | null
|
|
490
|
-
orderBy?: "name" | "email" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null
|
|
491
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
492
|
-
startDate?: string
|
|
493
|
-
endDate?: string
|
|
494
|
-
extension?: "csv" | "xlsx"
|
|
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
|
|
502
|
-
userId?: string | null
|
|
503
|
-
orderBy?: "repositoryUrl" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null
|
|
504
|
-
tags?: string[] | null
|
|
505
|
-
executedBy?: string[] | null
|
|
506
|
-
repositoryUrl?: string | null
|
|
507
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
508
|
-
startDate?: string
|
|
509
|
-
endDate?: string
|
|
510
|
-
extension?: "csv" | "xlsx"
|
|
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
|
|
518
|
-
page?: number
|
|
519
|
-
executedBy?: string[] | null
|
|
520
|
-
moduleId?: string[] | null
|
|
521
|
-
tags?: string[] | null
|
|
522
|
-
orderBy?: "name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null
|
|
523
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
524
|
-
programGroupName?: string | null
|
|
525
|
-
startDate?: string | null
|
|
526
|
-
endDate?: string | null
|
|
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
|
|
534
|
-
executedBy?: string[] | null
|
|
535
|
-
tags?: string[] | null
|
|
536
|
-
orderBy?: "name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null
|
|
537
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
538
|
-
programGroupName?: string | null
|
|
539
|
-
startDate?: string | null
|
|
540
|
-
endDate?: string | null
|
|
541
|
-
extension?: "csv" | "xlsx"
|
|
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
|
|
555
|
-
page?: number
|
|
556
|
-
programName?: string | null
|
|
557
|
-
tags?: string[] | null
|
|
558
|
-
mode?: "scan" | "fix" | null
|
|
559
|
-
moduleId?: string[] | null
|
|
560
|
-
programCreatedById?: string[] | null
|
|
561
|
-
reportCreatedById?: string[] | null
|
|
562
|
-
startDate?: string
|
|
563
|
-
endDate?: string
|
|
564
|
-
orderBy?: "
|
|
565
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
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
|
|
573
|
-
tags?: string[] | null
|
|
574
|
-
mode?: "scan" | "fix" | null
|
|
575
|
-
moduleId?: string[] | null
|
|
576
|
-
programCreatedById?: string[] | null
|
|
577
|
-
reportCreatedById?: string[] | null
|
|
578
|
-
startDate?: string
|
|
579
|
-
endDate?: string
|
|
580
|
-
orderBy?: "
|
|
581
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
582
|
-
extension?: "csv" | "xlsx"
|
|
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
|
|
590
|
-
page?: number
|
|
591
|
-
repositoryUrl?: string | null
|
|
592
|
-
tags?: string[] | null
|
|
593
|
-
mode?: "scan" | "fix" | null
|
|
594
|
-
moduleId?: string[] | null
|
|
595
|
-
repositoryCreatedById?: string[] | null
|
|
596
|
-
executedBy?: string[] | null
|
|
597
|
-
startDate?: string
|
|
598
|
-
endDate?: string
|
|
599
|
-
orderBy?: "
|
|
600
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
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
|
|
608
|
-
tags?: string[] | null
|
|
609
|
-
mode?: "scan" | "fix" | null
|
|
610
|
-
moduleId?: string[] | null
|
|
611
|
-
repositoryCreatedById?: string[] | null
|
|
612
|
-
reportCreatedById?: string[] | null
|
|
613
|
-
startDate?: string
|
|
614
|
-
endDate?: string
|
|
615
|
-
orderBy?: "
|
|
616
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
617
|
-
extension?: "csv" | "xlsx"
|
|
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
|
|
625
|
-
page?: number
|
|
626
|
-
programName?: string | null
|
|
627
|
-
componentName?: string | null
|
|
628
|
-
tags?: string[] | null
|
|
629
|
-
mode?: "scan" | "fix" | null
|
|
630
|
-
moduleId?: string[] | null
|
|
631
|
-
reportCreatedById?: string[] | null
|
|
632
|
-
startDate?: string
|
|
633
|
-
endDate?: string
|
|
634
|
-
orderBy?: "
|
|
635
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
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
|
|
643
|
-
tags?: string[] | null
|
|
644
|
-
mode?: "scan" | "fix" | null
|
|
645
|
-
moduleId?: string[] | null
|
|
646
|
-
componentName?: string | null
|
|
647
|
-
reportCreatedById?: string[] | null
|
|
648
|
-
startDate?: string
|
|
649
|
-
endDate?: string
|
|
650
|
-
orderBy?: "
|
|
651
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
652
|
-
extension?: "csv" | "xlsx"
|
|
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
|
|
660
|
-
page?: number
|
|
661
|
-
repositoryUrl?: string | null
|
|
662
|
-
targetName?: string | null
|
|
663
|
-
tags?: string[] | null
|
|
664
|
-
mode?: "scan" | "fix" | null
|
|
665
|
-
moduleId?: string[] | null
|
|
666
|
-
reportCreatedById?: string[] | null
|
|
667
|
-
startDate?: string
|
|
668
|
-
endDate?: string
|
|
669
|
-
orderBy?: "repositoryUrl" | "
|
|
670
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
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
|
|
678
|
-
targetName?: string | null
|
|
679
|
-
tags?: string[] | null
|
|
680
|
-
mode?: "scan" | "fix" | null
|
|
681
|
-
moduleId?: string[] | null
|
|
682
|
-
reportCreatedById?: string[] | null
|
|
683
|
-
startDate?: string
|
|
684
|
-
endDate?: string
|
|
685
|
-
orderBy?: "repositoryUrl" | "
|
|
686
|
-
orderDirection?: "ASC" | "DESC" | null
|
|
687
|
-
extension?: "csv" | "xlsx"
|
|
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
|
}
|