@stack-spot/portal-network 0.172.2 → 0.172.3-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +191 -0
- package/dist/api/account.d.ts +19 -11
- package/dist/api/account.d.ts.map +1 -1
- package/dist/api/account.js +2 -2
- package/dist/api/account.js.map +1 -1
- package/dist/api/agent-tools.d.ts +1 -0
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/ai.d.ts +2 -1
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js.map +1 -1
- package/dist/api/codeShift.d.ts +483 -18
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +204 -0
- package/dist/api/codeShift.js.map +1 -1
- package/dist/client/account.d.ts +16 -0
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/account.js +10 -1
- package/dist/client/account.js.map +1 -1
- package/dist/client/agent-tools.d.ts.map +1 -1
- package/dist/client/agent-tools.js +3 -8
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/ai.js +3 -3
- package/dist/client/ai.js.map +1 -1
- package/dist/client/code-shift.d.ts +171 -23
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +97 -7
- package/dist/client/code-shift.js.map +1 -1
- package/dist/error/dictionary/agent-tools.d.ts +75 -0
- package/dist/error/dictionary/agent-tools.d.ts.map +1 -0
- package/dist/error/dictionary/agent-tools.js +75 -0
- package/dist/error/dictionary/agent-tools.js.map +1 -0
- package/package.json +2 -2
- package/readme.md +1 -1
- package/src/api/account.ts +21 -12
- package/src/api/agent-tools.ts +4 -0
- package/src/api/agent.ts +2 -0
- package/src/api/ai.ts +2 -1
- package/src/api/codeShift.ts +843 -28
- package/src/api/notification.ts +2 -0
- package/src/client/account.ts +5 -0
- package/src/client/agent-tools.ts +4 -8
- package/src/client/ai.ts +4 -3
- package/src/client/code-shift.ts +68 -7
- package/src/error/dictionary/agent-tools.ts +76 -0
package/dist/api/codeShift.d.ts
CHANGED
|
@@ -38,9 +38,9 @@ export type CreateModuleRequest = {
|
|
|
38
38
|
/** Module description */
|
|
39
39
|
description: string;
|
|
40
40
|
/** Module workflow_name */
|
|
41
|
-
workflowName
|
|
41
|
+
workflowName?: string | null;
|
|
42
42
|
/** Module version */
|
|
43
|
-
version
|
|
43
|
+
version?: string | null;
|
|
44
44
|
/** Module mode */
|
|
45
45
|
modes: string[];
|
|
46
46
|
/** Module tags */
|
|
@@ -48,14 +48,14 @@ export type CreateModuleRequest = {
|
|
|
48
48
|
/** Inputs of module */
|
|
49
49
|
inputs: InputRequest[];
|
|
50
50
|
/** Module studio */
|
|
51
|
-
studio
|
|
51
|
+
studio?: string | null;
|
|
52
52
|
/** Module studio */
|
|
53
53
|
constants?: {
|
|
54
54
|
[key: string]: any;
|
|
55
55
|
} | null;
|
|
56
56
|
gitAction?: GitAction | null;
|
|
57
57
|
};
|
|
58
|
-
export type ExceptionType = "CODE_SHIFT_API_0000_UNEXPECTED_ERROR" | "CODE_SHIFT_API_0001_INVALID_VALUE" | "CODE_SHIFT_API_0002_NOT_IMPLEMENTED" | "CODE_SHIFT_API_0003_NOT_FOUND" | "CODE_SHIFT_API_0004_VALIDATION_ERROR" | "CODE_SHIFT_API_0005_CONFLICT" | "CODE_SHIFT_API_0006_INVALID_REPO_URL" | "CODE_SHIFT_API_0007_FORBIDDEN" | "CODE_SHIFT_API_0008_DEFAULT_BRANCH" | "CODE_SHIFT_API_0009_INVALID_SPREADSHEET" | "CODE_SHIFT_API_0010_PR_LINK_NOT_EXISTS" | "CODE_SHIFT_API_0011_EMPTY_SPREADSHEET" | "CODE_SHIFT_API_0012_REPOSITORY_NOT_EXISTS_IN_SCM" | "CODE_SHIFT_API_0013_SCM_BRANCH_NOT_EXISTS_EXCEPTION" | "CODE_SHIFT_API_0014_ACCOUNT_NOT_FOUND_EXCEPTION" | "CODE_SHIFT_API_3000_WORKFLOW_API_DISPATCH_FAILURE" | "CODE_SHIFT_API_3001_WORKFLOW_API_DISPATCH_FORBIDDEN" | "CODE_SHIFT_API_3009_WORKFLOW_API_DISPATCH_PARSE_ERROR" | "CODE_SHIFT_API_3010_AWS_SECRET_MANAGER_GET_SECRET_FAILURE" | "CODE_SHIFT_API_3011_AWS_SECRET_MANAGER_PARSE_SECRET_ERROR" | "CODE_SHIFT_API_3100_SCM_GET_REPOSITORIES_FAILURE" | "CODE_SHIFT_API_3110_SCM_GET_PULL_REQUEST_FAILURE" | "CODE_SHIFT_API_3120_SCM_GET_BRANCHES_FAILURE" | "CODE_SHIFT_API_3130_SCM_GET_SCM_REPOSITORY_FETCH_FAILURE" | "CODE_SHIFT_API_3131_SCM_REPOSITORY_NOT_FOUND" | "CODE_SHIFT_API_3140_SCM_GET_BRANCH_FAILURE" | "CODE_SHIFT_API_3142_SCM_GET_BRANCHES_NOT_FOUND" | "CODE_SHIFT_API_4000_ACCOUNTS_API_PAT_FAILURE" | "CODE_SHIFT_API_4001_ACCOUNTS_API_PAT_FORBIDDEN" | "CODE_SHIFT_API_4002_ACCOUNTS_API_PAT_NOT_FOUND" | "CODE_SHIFT_API_4009_ACCOUNTS_API_PAT_PARSE_ERROR" | "CODE_SHIFT_API_4010_GET_SCM_CREDENTIALS_FAILURE" | "CODE_SHIFT_API_4011_GET_SCM_CREDENTIALS_FORBIDDEN" | "CODE_SHIFT_API_4012_GET_SCM_CREDENTIALS_NOT_FOUND" | "CODE_SHIFT_API_4019_GET_SCM_CREDENTIALS_PARSE_ERROR" | "CODE_SHIFT_API_6000_IAM_GENERATE_TOKEN_FAILURE" | "CODE_SHIFT_API_6000_IAM_INTROSPECT_TOKEN_FAILURE";
|
|
58
|
+
export type ExceptionType = "CODE_SHIFT_API_0000_UNEXPECTED_ERROR" | "CODE_SHIFT_API_0001_INVALID_VALUE" | "CODE_SHIFT_API_0002_NOT_IMPLEMENTED" | "CODE_SHIFT_API_0003_NOT_FOUND" | "CODE_SHIFT_API_0004_VALIDATION_ERROR" | "CODE_SHIFT_API_0005_CONFLICT" | "CODE_SHIFT_API_0006_INVALID_REPO_URL" | "CODE_SHIFT_API_0007_FORBIDDEN" | "CODE_SHIFT_API_0008_DEFAULT_BRANCH" | "CODE_SHIFT_API_0009_INVALID_SPREADSHEET" | "CODE_SHIFT_API_0010_PR_LINK_NOT_EXISTS" | "CODE_SHIFT_API_0011_EMPTY_SPREADSHEET" | "CODE_SHIFT_API_0012_REPOSITORY_NOT_EXISTS_IN_SCM" | "CODE_SHIFT_API_0013_SCM_BRANCH_NOT_EXISTS_EXCEPTION" | "CODE_SHIFT_API_0014_ACCOUNT_NOT_FOUND_EXCEPTION" | "CODE_SHIFT_API_0015_INVALID_WORKFLOW_URL_EXCEPTION" | "CODE_SHIFT_API_0016_INVALID_ACTION_YAML_EXCEPTION" | "CODE_SHIFT_API_0017_FAIL_READING_ACTION_INPUTS_EXCEPTION" | "CODE_SHIFT_API_0018_MODULE_DISPATCHER_GENERIC_EXCEPTION" | "CODE_SHIFT_API_0019_GITHUB_DISPATCH_WORKFLOW_UNAUTHORIZED_EXCEPTION" | "CODE_SHIFT_API_0020_GITHUB_SAML_EXCEPTION" | "CODE_SHIFT_API_0021_GITHUB_AUTHORIZATION_ENCODING_EXCEPTION" | "CODE_SHIFT_API_0022_GITHUB_DISPATCH_WORKFLOW_NOT_FOUND_EXCEPTION" | "CODE_SHIFT_API_3000_WORKFLOW_API_DISPATCH_FAILURE" | "CODE_SHIFT_API_3001_WORKFLOW_API_DISPATCH_FORBIDDEN" | "CODE_SHIFT_API_3009_WORKFLOW_API_DISPATCH_PARSE_ERROR" | "CODE_SHIFT_API_3010_AWS_SECRET_MANAGER_GET_SECRET_FAILURE" | "CODE_SHIFT_API_3011_AWS_SECRET_MANAGER_PARSE_SECRET_ERROR" | "CODE_SHIFT_API_3100_SCM_GET_REPOSITORIES_FAILURE" | "CODE_SHIFT_API_3110_SCM_GET_PULL_REQUEST_FAILURE" | "CODE_SHIFT_API_3120_SCM_GET_BRANCHES_FAILURE" | "CODE_SHIFT_API_3130_SCM_GET_SCM_REPOSITORY_FETCH_FAILURE" | "CODE_SHIFT_API_3131_SCM_REPOSITORY_NOT_FOUND" | "CODE_SHIFT_API_3140_SCM_GET_BRANCH_FAILURE" | "CODE_SHIFT_API_3142_SCM_GET_BRANCHES_NOT_FOUND" | "CODE_SHIFT_API_3150_SCM_GET_REPOSITORY_FILE_FAILURE" | "CODE_SHIFT_API_3151_SCM_GET_REPOSITORY_FILE_NOT_FOUND" | "CODE_SHIFT_API_3500_CONTENT_API_GET_WORKFLOW_VERSION_FAILURE" | "CODE_SHIFT_API_4000_ACCOUNTS_API_PAT_FAILURE" | "CODE_SHIFT_API_4001_ACCOUNTS_API_PAT_FORBIDDEN" | "CODE_SHIFT_API_4002_ACCOUNTS_API_PAT_NOT_FOUND" | "CODE_SHIFT_API_4009_ACCOUNTS_API_PAT_PARSE_ERROR" | "CODE_SHIFT_API_4010_GET_SCM_CREDENTIALS_FAILURE" | "CODE_SHIFT_API_4011_GET_SCM_CREDENTIALS_FORBIDDEN" | "CODE_SHIFT_API_4012_GET_SCM_CREDENTIALS_NOT_FOUND" | "CODE_SHIFT_API_4019_GET_SCM_CREDENTIALS_PARSE_ERROR" | "CODE_SHIFT_API_6000_IAM_GENERATE_TOKEN_FAILURE" | "CODE_SHIFT_API_6000_IAM_INTROSPECT_TOKEN_FAILURE";
|
|
59
59
|
export type BadRequestExceptionTypes = "CODE_SHIFT_API_1001_DECODE_JWT_ERROR" | "CODE_SHIFT_API_2001_BAD_REQUEST_REQUIRED_FIELD" | "CODE_SHIFT_API_2002_BAD_REQUEST_EMPTY_FIELD_NOT_ALLOWED" | "CODE_SHIFT_API_2003_BAD_REQUEST_TYPE_FIELD_NOT_ALLOWED" | "CODE_SHIFT_API_2004_BAD_REQUEST_VALUE_FIELD_NOT_ALLOWED" | "CODE_SHIFT_API_2005_BAD_REQUEST_VALUE_FIELD_MAX_LENGTH" | "CODE_SHIFT_API_2006_BAD_REQUEST_VALUE_FIELD_MIN_LENGTH" | "CODE_SHIFT_API_2007_BAD_REQUEST_VALUE_REGEX_DOESNT_MATCH" | "CODE_SHIFT_API_2008_BAD_REQUEST_VALUE_FIELD_NUMBER_NOT_LT" | "CODE_SHIFT_API_2100_CREATE_BODY_REPO_AND_REPO_CREATE_ACTION" | "CODE_SHIFT_API_2101_CREATE_BODY_NOT_REPO_AND_NOT_REPO_CREATE_ACTION" | "CODE_SHIFT_API_2102_BAD_REQUEST_DATE_MAX_INTERVAL" | "CODE_SHIFT_API_2103_BAD_REQUEST_INVALID_PAGE" | "CODE_SHIFT_API_2104_BAD_REQUEST_DUPLICATED_ALIAS" | "CODE_SHIFT_API_2105_BAD_REQUEST_INVALID_REPO_URL" | "CODE_SHIFT_API_2110_BAD_REQUEST_PUT_STEP_STATUS_COMPLETED_WITHOUT_CONCLUSION" | "CODE_SHIFT_API_2112_BAD_REQUEST_PUT_STEP_STATUS_NOT_COMPLETED_AND_CONCLUSION_DEFINED" | "CODE_SHIFT_API_2113_BAD_REQUEST_PUT_STEP_STATUS_COMPLETED_AND_COMPLETED_AT_NOT_DEFINED" | "CODE_SHIFT_API_2114_BAD_REQUEST_PUT_STEP_STATUS_IN_PROGRESS_AND_STARTED_AT_NOT_DEFINED" | "CODE_SHIFT_API_2115_BAD_REQUEST_PUT_STEP_COMPLETED_AT_DEFINED_AND_STATUS_NOT_COMPLETED" | "CODE_SHIFT_API_2116_BAD_REQUEST_PUT_STEP_STARTED_AT_DEFINED_AND_STATUS_PENDING" | "CODE_SHIFT_API_2117_BAD_REQUEST_PUT_STEP_LOG_DEFINED_AND_CONCLUSION_IS_NOT_FAILURE" | "CODE_SHIFT_API_2120_BAD_REQUEST_MULTIPLE_INTEGRATION" | "CODE_SHIFT_API_2121_BAD_REQUEST_EMPTY_INTEGRATION" | "CODE_SHIFT_API_2121_BAD_REQUEST_EMPTY_TARGET" | "CODE_SHIFT_API_2121_BAD_REQUEST_FILLED_TARGET" | "CODE_SHIFT_API_2999_BAD_REQUEST_UNMAPPED";
|
|
60
60
|
export type InvalidPayloadDetails = {
|
|
61
61
|
code: BadRequestExceptionTypes | ExceptionType;
|
|
@@ -100,9 +100,9 @@ export type ModuleResponse = {
|
|
|
100
100
|
/** Module description */
|
|
101
101
|
description: string;
|
|
102
102
|
/** Workflow name */
|
|
103
|
-
workflowName: string;
|
|
103
|
+
workflowName: string | null;
|
|
104
104
|
/** Studio */
|
|
105
|
-
studio: string;
|
|
105
|
+
studio: string | null;
|
|
106
106
|
/** Module modes */
|
|
107
107
|
modes: string[];
|
|
108
108
|
/** Module versions */
|
|
@@ -148,6 +148,69 @@ export type PutModuleRequest = {
|
|
|
148
148
|
} | null;
|
|
149
149
|
gitAction?: GitAction | null;
|
|
150
150
|
};
|
|
151
|
+
export type GetModuleResponse = {
|
|
152
|
+
/** Module ID */
|
|
153
|
+
id: string;
|
|
154
|
+
/** Module type */
|
|
155
|
+
"type": ModuleType;
|
|
156
|
+
/** Module name */
|
|
157
|
+
name: string;
|
|
158
|
+
/** Module description */
|
|
159
|
+
description: string;
|
|
160
|
+
/** Workflow name */
|
|
161
|
+
workflowName: string | null;
|
|
162
|
+
/** Studio */
|
|
163
|
+
studio: string | null;
|
|
164
|
+
/** Module modes */
|
|
165
|
+
modes: string[];
|
|
166
|
+
/** Module versions */
|
|
167
|
+
version: string | null;
|
|
168
|
+
/** Module studio */
|
|
169
|
+
constants?: {
|
|
170
|
+
[key: string]: any;
|
|
171
|
+
} | null;
|
|
172
|
+
gitAction?: GitAction | null;
|
|
173
|
+
};
|
|
174
|
+
export type ExternalItemsModel = {
|
|
175
|
+
source: string;
|
|
176
|
+
value: string;
|
|
177
|
+
label: string;
|
|
178
|
+
};
|
|
179
|
+
export type ConditionModel = {
|
|
180
|
+
variable: string;
|
|
181
|
+
operator: string;
|
|
182
|
+
value: any;
|
|
183
|
+
};
|
|
184
|
+
export type OutputModel = {
|
|
185
|
+
"from": string;
|
|
186
|
+
to: string;
|
|
187
|
+
};
|
|
188
|
+
export type InputModel = {
|
|
189
|
+
label: string;
|
|
190
|
+
name: string;
|
|
191
|
+
"type": string;
|
|
192
|
+
required: boolean;
|
|
193
|
+
pattern: string | null;
|
|
194
|
+
help: string | null;
|
|
195
|
+
"default": any | null;
|
|
196
|
+
items: string[] | null;
|
|
197
|
+
externalItems: ExternalItemsModel | null;
|
|
198
|
+
itemsValues: string[] | null;
|
|
199
|
+
condition: ConditionModel | null;
|
|
200
|
+
connectionInterfaceType: string | null;
|
|
201
|
+
outputs: OutputModel[] | null;
|
|
202
|
+
input: InputModel | null;
|
|
203
|
+
inputs: InputModel[] | null;
|
|
204
|
+
scope: string | null;
|
|
205
|
+
};
|
|
206
|
+
export type ComputedInputModel = {
|
|
207
|
+
name: string;
|
|
208
|
+
expression: string;
|
|
209
|
+
};
|
|
210
|
+
export type GetModuleInputsResponse = {
|
|
211
|
+
inputs: InputModel[];
|
|
212
|
+
computedInputs: ComputedInputModel[] | null;
|
|
213
|
+
};
|
|
151
214
|
export type Mode = "scan" | "fix";
|
|
152
215
|
export type ModuleDispatchRequest = {
|
|
153
216
|
/** Module mode */
|
|
@@ -178,7 +241,7 @@ export type IssuesRequest = {
|
|
|
178
241
|
};
|
|
179
242
|
export type TargetFilesRequest = {
|
|
180
243
|
fileName: string;
|
|
181
|
-
filePath
|
|
244
|
+
filePath?: string | null;
|
|
182
245
|
details?: string | null;
|
|
183
246
|
dependsOn?: DependsOnRequest[] | null;
|
|
184
247
|
issues?: IssuesRequest[] | null;
|
|
@@ -191,7 +254,7 @@ export type PutReportRequest = {
|
|
|
191
254
|
changedFilesCount?: number | null;
|
|
192
255
|
pullRequestLink?: string | null;
|
|
193
256
|
commitHash?: string | null;
|
|
194
|
-
targetFiles
|
|
257
|
+
targetFiles?: TargetFilesRequest[];
|
|
195
258
|
moduleVersion?: string | null;
|
|
196
259
|
customOutputs?: {
|
|
197
260
|
[key: string]: any;
|
|
@@ -279,6 +342,40 @@ export type GetReportResponse = {
|
|
|
279
342
|
} | null;
|
|
280
343
|
targetFiles: TargetFilesResponse[];
|
|
281
344
|
errorLog?: string | null;
|
|
345
|
+
exceptions: HttpErrorResponse[];
|
|
346
|
+
status: ReportStatus | null;
|
|
347
|
+
scmPullRequestData: PullRequestResponse | null;
|
|
348
|
+
inputs?: {
|
|
349
|
+
[key: string]: any;
|
|
350
|
+
} | null;
|
|
351
|
+
};
|
|
352
|
+
export type GetReportResponseRead = {
|
|
353
|
+
id: string;
|
|
354
|
+
"module": ModuleResponse2 | null;
|
|
355
|
+
application: ApplicationResponse | null;
|
|
356
|
+
execution: ExecutionResponse | null;
|
|
357
|
+
mode: string;
|
|
358
|
+
sourceBranch: string | null;
|
|
359
|
+
targetBranch?: string | null;
|
|
360
|
+
createdBy: UserResponse;
|
|
361
|
+
createdAt: string;
|
|
362
|
+
updatedAt: string;
|
|
363
|
+
filesCount: number | null;
|
|
364
|
+
totalFilesCount: number | null;
|
|
365
|
+
changedFilesCount: number | null;
|
|
366
|
+
analyzedFilesCount: number | null;
|
|
367
|
+
issuesFilesCount: number | null;
|
|
368
|
+
issuesCount: number | null;
|
|
369
|
+
commitHash: string | null;
|
|
370
|
+
pullRequestLink?: string | null;
|
|
371
|
+
programGroup: ProgramGroupResponse | null;
|
|
372
|
+
moduleVersion?: string | null;
|
|
373
|
+
customOutputs?: {
|
|
374
|
+
[key: string]: any;
|
|
375
|
+
} | null;
|
|
376
|
+
targetFiles: TargetFilesResponse[];
|
|
377
|
+
errorLog?: string | null;
|
|
378
|
+
exceptions: HttpErrorResponseRead[];
|
|
282
379
|
status: ReportStatus | null;
|
|
283
380
|
scmPullRequestData: PullRequestResponse | null;
|
|
284
381
|
inputs?: {
|
|
@@ -320,6 +417,24 @@ export type ReportResponse = {
|
|
|
320
417
|
issuesCount: number | null;
|
|
321
418
|
pullRequestLink?: string | null;
|
|
322
419
|
errorLog?: string | null;
|
|
420
|
+
exceptions: HttpErrorResponse[];
|
|
421
|
+
status: ReportStatus | null;
|
|
422
|
+
};
|
|
423
|
+
export type ReportResponseRead = {
|
|
424
|
+
id: string;
|
|
425
|
+
"module": ModuleResponse3;
|
|
426
|
+
execution: ExecutionResponse | null;
|
|
427
|
+
mode: string;
|
|
428
|
+
sourceBranch: string;
|
|
429
|
+
targetBranch?: string | null;
|
|
430
|
+
createdBy: UserResponse2;
|
|
431
|
+
createdAt: string;
|
|
432
|
+
updatedAt: string;
|
|
433
|
+
filesCount: number | null;
|
|
434
|
+
issuesCount: number | null;
|
|
435
|
+
pullRequestLink?: string | null;
|
|
436
|
+
errorLog?: string | null;
|
|
437
|
+
exceptions: HttpErrorResponseRead[];
|
|
323
438
|
status: ReportStatus | null;
|
|
324
439
|
};
|
|
325
440
|
export type ListRepositoryReportResponse = {
|
|
@@ -330,6 +445,14 @@ export type ListRepositoryReportResponse = {
|
|
|
330
445
|
/** Last evaluated key */
|
|
331
446
|
lastEvaluatedKey: string | null;
|
|
332
447
|
};
|
|
448
|
+
export type ListRepositoryReportResponseRead = {
|
|
449
|
+
/** List of reports */
|
|
450
|
+
items: ReportResponseRead[];
|
|
451
|
+
/** Number of reports */
|
|
452
|
+
itemsCount: number;
|
|
453
|
+
/** Last evaluated key */
|
|
454
|
+
lastEvaluatedKey: string | null;
|
|
455
|
+
};
|
|
333
456
|
export type BodyCreateReposBatchServiceV1ReposBatchPost = {
|
|
334
457
|
file: Blob;
|
|
335
458
|
};
|
|
@@ -358,6 +481,24 @@ export type ReportResponse2 = {
|
|
|
358
481
|
issuesCount: number | null;
|
|
359
482
|
pullRequestLink?: string | null;
|
|
360
483
|
errorLog?: string | null;
|
|
484
|
+
exceptions: HttpErrorResponse[];
|
|
485
|
+
status: ReportStatus | null;
|
|
486
|
+
};
|
|
487
|
+
export type ReportResponseRead2 = {
|
|
488
|
+
id: string;
|
|
489
|
+
execution: ExecutionResponse | null;
|
|
490
|
+
mode: string;
|
|
491
|
+
moduleId: string;
|
|
492
|
+
sourceBranch: string;
|
|
493
|
+
targetBranch?: string | null;
|
|
494
|
+
createdBy: UserResponse3 | null;
|
|
495
|
+
createdAt: string;
|
|
496
|
+
updatedAt: string;
|
|
497
|
+
filesCount: number | null;
|
|
498
|
+
issuesCount: number | null;
|
|
499
|
+
pullRequestLink?: string | null;
|
|
500
|
+
errorLog?: string | null;
|
|
501
|
+
exceptions: HttpErrorResponseRead[];
|
|
361
502
|
status: ReportStatus | null;
|
|
362
503
|
};
|
|
363
504
|
export type RepositoryResponse = {
|
|
@@ -372,6 +513,18 @@ export type RepositoryResponse = {
|
|
|
372
513
|
url: string;
|
|
373
514
|
defaultBranch: string;
|
|
374
515
|
};
|
|
516
|
+
export type RepositoryResponseRead = {
|
|
517
|
+
/** Repository ID */
|
|
518
|
+
id: string;
|
|
519
|
+
/** Repository creation date */
|
|
520
|
+
createdAt?: string | null;
|
|
521
|
+
/** Repository creation user */
|
|
522
|
+
createdBy?: string | null;
|
|
523
|
+
lastModuleReport: ReportResponseRead2 | null;
|
|
524
|
+
tags: string[];
|
|
525
|
+
url: string;
|
|
526
|
+
defaultBranch: string;
|
|
527
|
+
};
|
|
375
528
|
export type ListRepositoryResponse = {
|
|
376
529
|
/** List of applications */
|
|
377
530
|
items: RepositoryResponse[];
|
|
@@ -380,6 +533,14 @@ export type ListRepositoryResponse = {
|
|
|
380
533
|
/** Last evaluated key */
|
|
381
534
|
lastEvaluatedKey?: string | null;
|
|
382
535
|
};
|
|
536
|
+
export type ListRepositoryResponseRead = {
|
|
537
|
+
/** List of applications */
|
|
538
|
+
items: RepositoryResponseRead[];
|
|
539
|
+
/** Number of applications */
|
|
540
|
+
itemsCount: number;
|
|
541
|
+
/** Last evaluated key */
|
|
542
|
+
lastEvaluatedKey?: string | null;
|
|
543
|
+
};
|
|
383
544
|
export type ListBranchesResponse = {
|
|
384
545
|
/** List of all branches */
|
|
385
546
|
branches: string[];
|
|
@@ -470,6 +631,22 @@ export type ReportResponse3 = {
|
|
|
470
631
|
issuesCount: number | null;
|
|
471
632
|
pullRequestLink?: string | null;
|
|
472
633
|
errorLog?: string | null;
|
|
634
|
+
exceptions: HttpErrorResponse[];
|
|
635
|
+
status: ReportStatus | null;
|
|
636
|
+
};
|
|
637
|
+
export type ReportResponseRead3 = {
|
|
638
|
+
id: string;
|
|
639
|
+
execution: ExecutionResponse | null;
|
|
640
|
+
mode: string;
|
|
641
|
+
moduleId: string;
|
|
642
|
+
createdBy: UserResponse4 | null;
|
|
643
|
+
createdAt: string;
|
|
644
|
+
updatedAt: string;
|
|
645
|
+
filesCount: number | null;
|
|
646
|
+
issuesCount: number | null;
|
|
647
|
+
pullRequestLink?: string | null;
|
|
648
|
+
errorLog?: string | null;
|
|
649
|
+
exceptions: HttpErrorResponseRead[];
|
|
473
650
|
status: ReportStatus | null;
|
|
474
651
|
};
|
|
475
652
|
export type ProgramGroupResponse2 = {
|
|
@@ -484,10 +661,26 @@ export type ProgramGroupResponse2 = {
|
|
|
484
661
|
updatedAt: string;
|
|
485
662
|
lastModuleReport: ReportResponse3 | null;
|
|
486
663
|
};
|
|
664
|
+
export type ProgramGroupResponseRead = {
|
|
665
|
+
id: string;
|
|
666
|
+
name: string;
|
|
667
|
+
integrationId: string | null;
|
|
668
|
+
tags: string[];
|
|
669
|
+
components: any[];
|
|
670
|
+
accountId: string;
|
|
671
|
+
createdBy: string | null;
|
|
672
|
+
createdAt: string;
|
|
673
|
+
updatedAt: string;
|
|
674
|
+
lastModuleReport: ReportResponseRead3 | null;
|
|
675
|
+
};
|
|
487
676
|
export type ListProgramGroupResponse = {
|
|
488
677
|
items: ProgramGroupResponse2[];
|
|
489
678
|
itemsCount: number;
|
|
490
679
|
};
|
|
680
|
+
export type ListProgramGroupResponseRead = {
|
|
681
|
+
items: ProgramGroupResponseRead[];
|
|
682
|
+
itemsCount: number;
|
|
683
|
+
};
|
|
491
684
|
export type ProgramGroupResponse3 = {
|
|
492
685
|
id: string;
|
|
493
686
|
name: string;
|
|
@@ -529,6 +722,22 @@ export type ReportResponse4 = {
|
|
|
529
722
|
issuesCount: number | null;
|
|
530
723
|
pullRequestLink?: string | null;
|
|
531
724
|
errorLog?: string | null;
|
|
725
|
+
exceptions: HttpErrorResponse[];
|
|
726
|
+
status: ReportStatus | null;
|
|
727
|
+
};
|
|
728
|
+
export type ReportResponseRead4 = {
|
|
729
|
+
id: string;
|
|
730
|
+
"module": ModuleResponse4;
|
|
731
|
+
execution: ExecutionResponse | null;
|
|
732
|
+
mode: string;
|
|
733
|
+
createdBy: UserResponse5;
|
|
734
|
+
createdAt: string;
|
|
735
|
+
updatedAt: string;
|
|
736
|
+
filesCount: number | null;
|
|
737
|
+
issuesCount: number | null;
|
|
738
|
+
pullRequestLink?: string | null;
|
|
739
|
+
errorLog?: string | null;
|
|
740
|
+
exceptions: HttpErrorResponseRead[];
|
|
532
741
|
status: ReportStatus | null;
|
|
533
742
|
};
|
|
534
743
|
export type ListProgramGroupReportResponse = {
|
|
@@ -537,6 +746,12 @@ export type ListProgramGroupReportResponse = {
|
|
|
537
746
|
/** Number of reports */
|
|
538
747
|
itemsCount: number;
|
|
539
748
|
};
|
|
749
|
+
export type ListProgramGroupReportResponseRead = {
|
|
750
|
+
/** List of reports */
|
|
751
|
+
items: ReportResponseRead4[];
|
|
752
|
+
/** Number of reports */
|
|
753
|
+
itemsCount: number;
|
|
754
|
+
};
|
|
540
755
|
export type TagResponse = {
|
|
541
756
|
name: string;
|
|
542
757
|
};
|
|
@@ -569,6 +784,8 @@ export type RepositoryLastReportStatusResponse = {
|
|
|
569
784
|
totalFilesIssues: number | null;
|
|
570
785
|
totalFilesChanged: number | null;
|
|
571
786
|
totalIssues: number | null;
|
|
787
|
+
pullRequestLink: string | null;
|
|
788
|
+
merged: boolean | null;
|
|
572
789
|
};
|
|
573
790
|
export type AnalyticsRepositoryLastReportStatusResponse = {
|
|
574
791
|
totalFiles?: number;
|
|
@@ -577,6 +794,8 @@ export type AnalyticsRepositoryLastReportStatusResponse = {
|
|
|
577
794
|
totalFilesChanged?: number;
|
|
578
795
|
totalIssues?: number;
|
|
579
796
|
items: RepositoryLastReportStatusResponse[];
|
|
797
|
+
totalPullRequests?: number;
|
|
798
|
+
totalMergedPullRequests?: number;
|
|
580
799
|
totalItems?: number;
|
|
581
800
|
};
|
|
582
801
|
export type RepositoryUsageResponse = {
|
|
@@ -587,6 +806,8 @@ export type RepositoryUsageResponse = {
|
|
|
587
806
|
totalFix?: number;
|
|
588
807
|
totalFixSuccess?: number;
|
|
589
808
|
totalFixFailure?: number;
|
|
809
|
+
totalPullRequests?: number;
|
|
810
|
+
mergedPullRequests?: number;
|
|
590
811
|
};
|
|
591
812
|
export type AnalyticsRepositoryUsageResponse = {
|
|
592
813
|
totalScan?: number;
|
|
@@ -595,6 +816,8 @@ export type AnalyticsRepositoryUsageResponse = {
|
|
|
595
816
|
totalFix?: number;
|
|
596
817
|
totalFixSuccess?: number;
|
|
597
818
|
totalFixFailure?: number;
|
|
819
|
+
totalPullRequests?: number;
|
|
820
|
+
mergedPullRequests?: number;
|
|
598
821
|
items: RepositoryUsageResponse[];
|
|
599
822
|
totalItems?: number;
|
|
600
823
|
};
|
|
@@ -658,6 +881,100 @@ export type AnalyticsProgramGroupsUsageResponse = {
|
|
|
658
881
|
items: ProgramGroupsUsageResponse[];
|
|
659
882
|
totalItems?: number;
|
|
660
883
|
};
|
|
884
|
+
export type ProgramGroupsDetailsResponse = {
|
|
885
|
+
programGroupName: string;
|
|
886
|
+
programGroupTags?: string | null;
|
|
887
|
+
integrationName?: string | null;
|
|
888
|
+
programGroupCreatedByName?: string | null;
|
|
889
|
+
programGroupCreatedByEmail?: string | null;
|
|
890
|
+
moduleName: string;
|
|
891
|
+
reportInputs?: string | null;
|
|
892
|
+
mode: string;
|
|
893
|
+
reportCreatedAt: string;
|
|
894
|
+
reportCreatedByName?: string | null;
|
|
895
|
+
reportCreatedByEmail?: string | null;
|
|
896
|
+
reportOutputs?: string | null;
|
|
897
|
+
executionStartedAt?: string | null;
|
|
898
|
+
executionCompletedAt?: string | null;
|
|
899
|
+
processingTimeSeconds?: number | null;
|
|
900
|
+
totalFilesCount?: number;
|
|
901
|
+
analyzedFilesCount?: number;
|
|
902
|
+
issuesFilesCount?: number;
|
|
903
|
+
changedFilesCount?: number;
|
|
904
|
+
issuesCount?: number;
|
|
905
|
+
};
|
|
906
|
+
export type AnalyticsProgramGroupsDetailsResponse = {
|
|
907
|
+
totalFilesCount?: number;
|
|
908
|
+
analyzedFilesCount?: number;
|
|
909
|
+
issuesFilesCount?: number;
|
|
910
|
+
changedFilesCount?: number;
|
|
911
|
+
issuesCount?: number;
|
|
912
|
+
processingTime95Percentile?: number | null;
|
|
913
|
+
totalItems?: number;
|
|
914
|
+
items?: ProgramGroupsDetailsResponse[];
|
|
915
|
+
};
|
|
916
|
+
export type RepositoryDetailedReportItemResponse = {
|
|
917
|
+
analyzedFilesCount?: number;
|
|
918
|
+
changedFilesCount?: number;
|
|
919
|
+
errorLog?: string | null;
|
|
920
|
+
executionCompletedAt?: string | null;
|
|
921
|
+
executionConclusion?: string | null;
|
|
922
|
+
executionStartedAt?: string | null;
|
|
923
|
+
executionStatus?: string | null;
|
|
924
|
+
inputs?: string;
|
|
925
|
+
issuesCount?: number;
|
|
926
|
+
issuesFilesCount?: number;
|
|
927
|
+
mode?: string | null;
|
|
928
|
+
moduleName?: string | null;
|
|
929
|
+
moduleVersion?: string | null;
|
|
930
|
+
processingTimeSeconds?: number | null;
|
|
931
|
+
pullRequestLink?: string | null;
|
|
932
|
+
reportCreatedAt?: string | null;
|
|
933
|
+
reportCreatedByEmail?: string | null;
|
|
934
|
+
reportCreatedByName?: string | null;
|
|
935
|
+
repositoryCreatedByEmail?: string | null;
|
|
936
|
+
repositoryCreatedByName?: string | null;
|
|
937
|
+
repositoryTags?: string;
|
|
938
|
+
repositoryUrl: string;
|
|
939
|
+
sourceBranch?: string | null;
|
|
940
|
+
targetBranch?: string | null;
|
|
941
|
+
totalFilesCount?: number;
|
|
942
|
+
status?: string | null;
|
|
943
|
+
};
|
|
944
|
+
export type AnalyticsRepositoryDetailedReportResponse = {
|
|
945
|
+
totalFilesCount?: number;
|
|
946
|
+
analyzedFilesCount?: number;
|
|
947
|
+
issuesFilesCount?: number;
|
|
948
|
+
changedFilesCount?: number;
|
|
949
|
+
issuesCount?: number;
|
|
950
|
+
processingTime95Percentile?: number | null;
|
|
951
|
+
totalItems?: number;
|
|
952
|
+
items?: RepositoryDetailedReportItemResponse[];
|
|
953
|
+
};
|
|
954
|
+
export type ProgramGroupsTargetDetailsResponse = {
|
|
955
|
+
programGroupName: string;
|
|
956
|
+
programGroupTags?: string | null;
|
|
957
|
+
mode: string;
|
|
958
|
+
moduleName: string;
|
|
959
|
+
reportCreatedAt: string;
|
|
960
|
+
executionStartedAt?: string | null;
|
|
961
|
+
executionCompletedAt?: string | null;
|
|
962
|
+
componentAppName: string;
|
|
963
|
+
componentName: string;
|
|
964
|
+
componentType: string;
|
|
965
|
+
totalIssues?: number;
|
|
966
|
+
changedFilesCount?: number;
|
|
967
|
+
reportOutputs?: string | null;
|
|
968
|
+
aiAdjusted?: string | null;
|
|
969
|
+
changemanPackage?: string | null;
|
|
970
|
+
};
|
|
971
|
+
export type AnalyticsProgramGroupsTargetDetailsResponse = {
|
|
972
|
+
totalComponents?: number;
|
|
973
|
+
totalIssues?: number;
|
|
974
|
+
totalChangedFiles?: number;
|
|
975
|
+
totalItems?: number;
|
|
976
|
+
items?: ProgramGroupsTargetDetailsResponse[];
|
|
977
|
+
};
|
|
661
978
|
export type UserResponse6 = {
|
|
662
979
|
id: string;
|
|
663
980
|
name: string;
|
|
@@ -679,7 +996,7 @@ export declare function checkRoleRouteV1RolesRoleGet({ role, authorization }: {
|
|
|
679
996
|
*/
|
|
680
997
|
export declare function createModuleServiceV1ModulesPost({ authorization, xAccountSlug, createModuleRequest }: {
|
|
681
998
|
authorization: string;
|
|
682
|
-
xAccountSlug?:
|
|
999
|
+
xAccountSlug?: string;
|
|
683
1000
|
createModuleRequest: CreateModuleRequest;
|
|
684
1001
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
685
1002
|
/**
|
|
@@ -690,7 +1007,7 @@ export declare function listModulesServiceV1ModulesGet({ pageSize, moduleType, p
|
|
|
690
1007
|
moduleType?: ModuleType | null;
|
|
691
1008
|
page?: number;
|
|
692
1009
|
lastEvaluatedKey?: string;
|
|
693
|
-
xAccountSlug?:
|
|
1010
|
+
xAccountSlug?: string;
|
|
694
1011
|
authorization: string;
|
|
695
1012
|
}, opts?: Oazapfts.RequestOpts): Promise<ListModuleResponse>;
|
|
696
1013
|
/**
|
|
@@ -699,7 +1016,7 @@ export declare function listModulesServiceV1ModulesGet({ pageSize, moduleType, p
|
|
|
699
1016
|
export declare function deleteModuleServiceV1ModulesModuleIdDelete({ moduleId, authorization, xAccountSlug }: {
|
|
700
1017
|
moduleId: string;
|
|
701
1018
|
authorization: string;
|
|
702
|
-
xAccountSlug?:
|
|
1019
|
+
xAccountSlug?: string;
|
|
703
1020
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
704
1021
|
/**
|
|
705
1022
|
* Update Module Service
|
|
@@ -707,9 +1024,23 @@ export declare function deleteModuleServiceV1ModulesModuleIdDelete({ moduleId, a
|
|
|
707
1024
|
export declare function updateModuleServiceV1ModulesModuleIdPut({ moduleId, authorization, xAccountSlug, putModuleRequest }: {
|
|
708
1025
|
moduleId: string;
|
|
709
1026
|
authorization: string;
|
|
710
|
-
xAccountSlug?:
|
|
1027
|
+
xAccountSlug?: string;
|
|
711
1028
|
putModuleRequest: PutModuleRequest;
|
|
712
1029
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1030
|
+
/**
|
|
1031
|
+
* Get Module
|
|
1032
|
+
*/
|
|
1033
|
+
export declare function getModuleV1ModulesModuleIdGet({ moduleId, authorization }: {
|
|
1034
|
+
moduleId: string;
|
|
1035
|
+
authorization: string;
|
|
1036
|
+
}, opts?: Oazapfts.RequestOpts): Promise<GetModuleResponse>;
|
|
1037
|
+
/**
|
|
1038
|
+
* Get Module Inputs
|
|
1039
|
+
*/
|
|
1040
|
+
export declare function getModuleInputsV1ModulesModuleIdInputsGet({ moduleId, authorization }: {
|
|
1041
|
+
moduleId: string;
|
|
1042
|
+
authorization: string;
|
|
1043
|
+
}, opts?: Oazapfts.RequestOpts): Promise<GetModuleInputsResponse>;
|
|
713
1044
|
/**
|
|
714
1045
|
* Dispatch Module Service
|
|
715
1046
|
*/
|
|
@@ -731,7 +1062,7 @@ export declare function putReportV1ReportsReportIdPut({ reportId, authorization,
|
|
|
731
1062
|
export declare function getReportV1ReportsReportIdGet({ reportId, authorization }: {
|
|
732
1063
|
reportId: string;
|
|
733
1064
|
authorization: string;
|
|
734
|
-
}, opts?: Oazapfts.RequestOpts): Promise<
|
|
1065
|
+
}, opts?: Oazapfts.RequestOpts): Promise<GetReportResponseRead>;
|
|
735
1066
|
/**
|
|
736
1067
|
* Get Report Pull Request Content
|
|
737
1068
|
*/
|
|
@@ -778,7 +1109,7 @@ export declare function listRepositoryReportV1ReposRepositoryIdReportsGet({ repo
|
|
|
778
1109
|
page?: number;
|
|
779
1110
|
lastEvaluatedKey?: string;
|
|
780
1111
|
authorization: string;
|
|
781
|
-
}, opts?: Oazapfts.RequestOpts): Promise<
|
|
1112
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ListRepositoryReportResponseRead>;
|
|
782
1113
|
/**
|
|
783
1114
|
* Create Repos Batch Service
|
|
784
1115
|
*/
|
|
@@ -809,7 +1140,21 @@ export declare function listRepositoryServiceV1ReposGet({ pageSize, page, lastEv
|
|
|
809
1140
|
orderDirection?: string;
|
|
810
1141
|
tags?: string[] | null;
|
|
811
1142
|
authorization: string;
|
|
812
|
-
}, opts?: Oazapfts.RequestOpts): Promise<
|
|
1143
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ListRepositoryResponseRead>;
|
|
1144
|
+
/**
|
|
1145
|
+
* List Repository Download Service
|
|
1146
|
+
*/
|
|
1147
|
+
export declare function listRepositoryDownloadServiceV1ReposDownloadGet({ filter, moduleId, createdByEmail, reportByEmail, orderBy, orderDirection, tags, extension, authorization }: {
|
|
1148
|
+
filter?: string;
|
|
1149
|
+
moduleId?: string;
|
|
1150
|
+
createdByEmail?: string | null;
|
|
1151
|
+
reportByEmail?: string | null;
|
|
1152
|
+
orderBy?: string;
|
|
1153
|
+
orderDirection?: string;
|
|
1154
|
+
tags?: string[] | null;
|
|
1155
|
+
extension?: "csv" | "xlsx";
|
|
1156
|
+
authorization: string;
|
|
1157
|
+
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
813
1158
|
/**
|
|
814
1159
|
* List Branches Service
|
|
815
1160
|
*/
|
|
@@ -823,7 +1168,7 @@ export declare function listBranchesServiceV1ReposBranchesGet({ repositoryUrl, a
|
|
|
823
1168
|
export declare function getRepositoryByIdServiceV1ReposRepositoryIdGet({ repositoryId, authorization }: {
|
|
824
1169
|
repositoryId: string;
|
|
825
1170
|
authorization: string;
|
|
826
|
-
}, opts?: Oazapfts.RequestOpts): Promise<
|
|
1171
|
+
}, opts?: Oazapfts.RequestOpts): Promise<RepositoryResponseRead>;
|
|
827
1172
|
/**
|
|
828
1173
|
* Delete Repository Service
|
|
829
1174
|
*/
|
|
@@ -922,7 +1267,22 @@ export declare function listProgramGroupServiceV1ProgramGroupsGet({ moduleId, cr
|
|
|
922
1267
|
orderDirection?: string;
|
|
923
1268
|
integrationId?: string;
|
|
924
1269
|
authorization: string;
|
|
925
|
-
}, opts?: Oazapfts.RequestOpts): Promise<
|
|
1270
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ListProgramGroupResponseRead>;
|
|
1271
|
+
/**
|
|
1272
|
+
* List Program Group Download Service
|
|
1273
|
+
*/
|
|
1274
|
+
export declare function listProgramGroupDownloadServiceV1ProgramGroupsDownloadGet({ moduleId, createdByEmail, reportByEmail, tags, name, orderBy, orderDirection, integrationId, extension, authorization }: {
|
|
1275
|
+
moduleId?: string | null;
|
|
1276
|
+
createdByEmail?: string | null;
|
|
1277
|
+
reportByEmail?: string | null;
|
|
1278
|
+
tags?: string[] | null;
|
|
1279
|
+
name?: string | null;
|
|
1280
|
+
orderBy?: string;
|
|
1281
|
+
orderDirection?: string;
|
|
1282
|
+
integrationId?: string;
|
|
1283
|
+
extension?: "csv" | "xlsx";
|
|
1284
|
+
authorization: string;
|
|
1285
|
+
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
926
1286
|
/**
|
|
927
1287
|
* Get Program Group By Id Service
|
|
928
1288
|
*/
|
|
@@ -965,7 +1325,7 @@ export declare function listProgramGroupReportServiceV1ProgramGroupsProgramGroup
|
|
|
965
1325
|
page?: number;
|
|
966
1326
|
lastEvaluatedKey?: string;
|
|
967
1327
|
authorization: string;
|
|
968
|
-
}, opts?: Oazapfts.RequestOpts): Promise<
|
|
1328
|
+
}, opts?: Oazapfts.RequestOpts): Promise<ListProgramGroupReportResponseRead>;
|
|
969
1329
|
/**
|
|
970
1330
|
* List Tags Service
|
|
971
1331
|
*/
|
|
@@ -1137,6 +1497,111 @@ export declare function analyticsProgramGroupsUsageDownloadV1AnalyticsProgramGro
|
|
|
1137
1497
|
extension?: "csv" | "xlsx";
|
|
1138
1498
|
authorization: string;
|
|
1139
1499
|
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1500
|
+
/**
|
|
1501
|
+
* Analytics Program Groups Details
|
|
1502
|
+
*/
|
|
1503
|
+
export declare function analyticsProgramGroupsDetailsV1AnalyticsProgramGroupsDetailsGet({ pageSize, page, programName, tags, mode, moduleId, programCreatedById, reportCreatedById, startDate, endDate, orderBy, orderDirection, authorization }: {
|
|
1504
|
+
pageSize?: number;
|
|
1505
|
+
page?: number;
|
|
1506
|
+
programName?: string | null;
|
|
1507
|
+
tags?: string[] | null;
|
|
1508
|
+
mode?: ("scan" | "fix") | null;
|
|
1509
|
+
moduleId?: string[] | null;
|
|
1510
|
+
programCreatedById?: string[] | null;
|
|
1511
|
+
reportCreatedById?: string[] | null;
|
|
1512
|
+
startDate?: string;
|
|
1513
|
+
endDate?: string;
|
|
1514
|
+
orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds") | null;
|
|
1515
|
+
orderDirection?: ("ASC" | "DESC") | null;
|
|
1516
|
+
authorization: string;
|
|
1517
|
+
}, opts?: Oazapfts.RequestOpts): Promise<AnalyticsProgramGroupsDetailsResponse>;
|
|
1518
|
+
/**
|
|
1519
|
+
* Analytics Program Groups Details Download
|
|
1520
|
+
*/
|
|
1521
|
+
export declare function analyticsProgramGroupsDetailsDownloadV1AnalyticsProgramGroupsDetailsDownloadGet({ programName, tags, mode, moduleId, programCreatedById, reportCreatedById, startDate, endDate, orderBy, orderDirection, extension, authorization }: {
|
|
1522
|
+
programName?: string | null;
|
|
1523
|
+
tags?: string[] | null;
|
|
1524
|
+
mode?: ("scan" | "fix") | null;
|
|
1525
|
+
moduleId?: string[] | null;
|
|
1526
|
+
programCreatedById?: string[] | null;
|
|
1527
|
+
reportCreatedById?: string[] | null;
|
|
1528
|
+
startDate?: string;
|
|
1529
|
+
endDate?: string;
|
|
1530
|
+
orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds") | null;
|
|
1531
|
+
orderDirection?: ("ASC" | "DESC") | null;
|
|
1532
|
+
extension?: "csv" | "xlsx";
|
|
1533
|
+
authorization: string;
|
|
1534
|
+
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1535
|
+
/**
|
|
1536
|
+
* Analytics Repository Detailed Report
|
|
1537
|
+
*/
|
|
1538
|
+
export declare function analyticsRepositoryDetailedReportV1AnalyticsRepositoriesDetailsGet({ pageSize, page, repositoryUrl, tags, mode, moduleId, repositoryCreatedById, executedBy, startDate, endDate, orderBy, orderDirection, authorization }: {
|
|
1539
|
+
pageSize?: number;
|
|
1540
|
+
page?: number;
|
|
1541
|
+
repositoryUrl?: string | null;
|
|
1542
|
+
tags?: string[] | null;
|
|
1543
|
+
mode?: ("scan" | "fix") | null;
|
|
1544
|
+
moduleId?: string[] | null;
|
|
1545
|
+
repositoryCreatedById?: string[] | null;
|
|
1546
|
+
executedBy?: string[] | null;
|
|
1547
|
+
startDate?: string;
|
|
1548
|
+
endDate?: string;
|
|
1549
|
+
orderBy?: ("totalFilesCount" | "analyzedFilesCount" | "changedFilesCount" | "issuesCount" | "issuesFilesCount" | "reportCreatedAt" | "repositoryUrl" | "sourceBranch" | "targetBranch" | "executionCompletedAt" | "executionStartedAt" | "moduleName" | "moduleVersion" | "processingTimeSeconds" | "pullRequestLink" | "reportCreatedByEmail" | "reportCreatedByName" | "repositoryCreatedByEmail" | "repositoryCreatedByName") | null;
|
|
1550
|
+
orderDirection?: ("ASC" | "DESC") | null;
|
|
1551
|
+
authorization: string;
|
|
1552
|
+
}, opts?: Oazapfts.RequestOpts): Promise<AnalyticsRepositoryDetailedReportResponse>;
|
|
1553
|
+
/**
|
|
1554
|
+
* Analytics Repository Detailed Report Download
|
|
1555
|
+
*/
|
|
1556
|
+
export declare function analyticsRepositoryDetailedReportDownloadV1AnalyticsRepositoriesDetailsDownloadGet({ repositoryUrl, tags, mode, moduleId, repositoryCreatedById, reportCreatedById, startDate, endDate, orderBy, orderDirection, extension, authorization }: {
|
|
1557
|
+
repositoryUrl?: string | null;
|
|
1558
|
+
tags?: string[] | null;
|
|
1559
|
+
mode?: ("scan" | "fix") | null;
|
|
1560
|
+
moduleId?: string[] | null;
|
|
1561
|
+
repositoryCreatedById?: string[] | null;
|
|
1562
|
+
reportCreatedById?: string[] | null;
|
|
1563
|
+
startDate?: string;
|
|
1564
|
+
endDate?: string;
|
|
1565
|
+
orderBy?: ("totalFilesCount" | "analyzedFilesCount" | "changedFilesCount" | "issuesCount" | "issuesFilesCount" | "reportCreatedAt" | "repositoryUrl" | "sourceBranch" | "targetBranch" | "executionCompletedAt" | "executionStartedAt" | "moduleName" | "moduleVersion" | "processingTimeSeconds" | "pullRequestLink" | "reportCreatedByEmail" | "reportCreatedByName" | "repositoryCreatedByEmail" | "repositoryCreatedByName") | null;
|
|
1566
|
+
orderDirection?: ("ASC" | "DESC") | null;
|
|
1567
|
+
extension?: "csv" | "xlsx";
|
|
1568
|
+
authorization: string;
|
|
1569
|
+
}, opts?: Oazapfts.RequestOpts): Promise<AnalyticsRepositoryDetailedReportResponse>;
|
|
1570
|
+
/**
|
|
1571
|
+
* Analytics Program Groups Target Details
|
|
1572
|
+
*/
|
|
1573
|
+
export declare function analyticsProgramGroupsTargetDetailsV1AnalyticsProgramGroupsTargetDetailsGet({ pageSize, page, programName, componentName, tags, mode, moduleId, reportCreatedById, startDate, endDate, orderBy, orderDirection, authorization }: {
|
|
1574
|
+
pageSize?: number;
|
|
1575
|
+
page?: number;
|
|
1576
|
+
programName?: string | null;
|
|
1577
|
+
componentName?: string | null;
|
|
1578
|
+
tags?: string[] | null;
|
|
1579
|
+
mode?: ("scan" | "fix") | null;
|
|
1580
|
+
moduleId?: string[] | null;
|
|
1581
|
+
reportCreatedById?: string[] | null;
|
|
1582
|
+
startDate?: string;
|
|
1583
|
+
endDate?: string;
|
|
1584
|
+
orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "executionStartedAt" | "executionCompletedAt" | "componentAppName" | "componentName" | "componentType" | "totalIssues" | "changedFilesCount") | null;
|
|
1585
|
+
orderDirection?: ("ASC" | "DESC") | null;
|
|
1586
|
+
authorization: string;
|
|
1587
|
+
}, opts?: Oazapfts.RequestOpts): Promise<AnalyticsProgramGroupsTargetDetailsResponse>;
|
|
1588
|
+
/**
|
|
1589
|
+
* Analytics Program Groups Target Details Download
|
|
1590
|
+
*/
|
|
1591
|
+
export declare function analyticsProgramGroupsTargetDetailsDownloadV1AnalyticsProgramGroupsTargetDetailsDownloadGet({ programName, tags, mode, moduleId, componentName, reportCreatedById, startDate, endDate, orderBy, orderDirection, extension, authorization }: {
|
|
1592
|
+
programName?: string | null;
|
|
1593
|
+
tags?: string[] | null;
|
|
1594
|
+
mode?: ("scan" | "fix") | null;
|
|
1595
|
+
moduleId?: string[] | null;
|
|
1596
|
+
componentName?: string | null;
|
|
1597
|
+
reportCreatedById?: string[] | null;
|
|
1598
|
+
startDate?: string;
|
|
1599
|
+
endDate?: string;
|
|
1600
|
+
orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "executionStartedAt" | "executionCompletedAt" | "componentAppName" | "componentName" | "componentType" | "totalIssues" | "changedFilesCount") | null;
|
|
1601
|
+
orderDirection?: ("ASC" | "DESC") | null;
|
|
1602
|
+
extension?: "csv" | "xlsx";
|
|
1603
|
+
authorization: string;
|
|
1604
|
+
}, opts?: Oazapfts.RequestOpts): Promise<any>;
|
|
1140
1605
|
/**
|
|
1141
1606
|
* List User Service
|
|
1142
1607
|
*/
|