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