@stack-spot/portal-network 0.198.2 → 0.198.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/api/agent-tools.d.ts +6 -0
  3. package/dist/api/agent-tools.d.ts.map +1 -1
  4. package/dist/api/agent-tools.js.map +1 -1
  5. package/dist/api/agent.d.ts +55 -55
  6. package/dist/api/agent.d.ts.map +1 -1
  7. package/dist/api-addresses.d.ts.map +1 -1
  8. package/dist/client/account.d.ts +233 -233
  9. package/dist/client/account.d.ts.map +1 -1
  10. package/dist/client/agent-tools.d.ts +123 -123
  11. package/dist/client/agent-tools.d.ts.map +1 -1
  12. package/dist/client/agent.d.ts +46 -46
  13. package/dist/client/agent.d.ts.map +1 -1
  14. package/dist/client/ai.d.ts +106 -106
  15. package/dist/client/ai.d.ts.map +1 -1
  16. package/dist/client/api-management.d.ts +2 -2
  17. package/dist/client/cloud-account.d.ts +13 -13
  18. package/dist/client/cloud-platform-horizon.d.ts +19 -19
  19. package/dist/client/cloud-platform.d.ts +50 -50
  20. package/dist/client/cloud-runtimes.d.ts +4 -4
  21. package/dist/client/cloud-services.d.ts +17 -17
  22. package/dist/client/cloud-services.d.ts.map +1 -1
  23. package/dist/client/code-shift.d.ts +261 -261
  24. package/dist/client/content.d.ts +127 -132
  25. package/dist/client/content.d.ts.map +1 -1
  26. package/dist/client/data-integration.d.ts +55 -55
  27. package/dist/client/data-integration.d.ts.map +1 -1
  28. package/dist/client/discover.d.ts +8 -8
  29. package/dist/client/discover.d.ts.map +1 -1
  30. package/dist/client/event-bus.d.ts.map +1 -1
  31. package/dist/client/gen-ai-inference.d.ts +20 -20
  32. package/dist/client/insights.d.ts +7 -7
  33. package/dist/client/notification.d.ts +10 -10
  34. package/dist/client/runtime-manager.d.ts +8 -8
  35. package/dist/client/workflow.d.ts +10 -10
  36. package/dist/client/workspace-ai.d.ts +48 -48
  37. package/dist/client/workspace-manager.d.ts +77 -77
  38. package/dist/client/workspace-search.d.ts +2 -2
  39. package/dist/client/workspace.d.ts +58 -105
  40. package/dist/client/workspace.d.ts.map +1 -1
  41. package/package.json +1 -1
  42. package/src/api/agent-tools.ts +6 -0
@@ -15,7 +15,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
15
15
  * Creates repositories in batch.
16
16
  */
17
17
  createRepositoriesBatch: import("../network/types.js").MutationObject<Omit<{
18
- tags?: string[] | null | undefined;
18
+ tags?: string[] | null;
19
19
  authorization: string;
20
20
  fastapiCompatV2BodyCreateReposBatchServiceV1ReposBatchPost: import("../api/codeShift.js").BodyCreateReposBatchServiceV1ReposBatchPost;
21
21
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
@@ -23,16 +23,16 @@ declare class CodeShift extends ReactQueryNetworkClient {
23
23
  * Gets list of repositories.
24
24
  */
25
25
  repositories: import("../network/types.js").QueryObject<Omit<{
26
- pageSize?: number | undefined;
27
- page?: number | undefined;
28
- lastEvaluatedKey?: string | undefined;
29
- filter?: string | undefined;
30
- moduleId?: string | undefined;
31
- createdByEmail?: string | null | undefined;
32
- reportByEmail?: string | null | undefined;
33
- orderBy?: "repository.url" | "repository.created_at" | "repository.updated_at" | "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status" | undefined;
34
- orderDirection?: "ASC" | "DESC" | "asc" | "desc" | undefined;
35
- tags?: string[] | null | undefined;
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?: "asc" | "desc" | "ASC" | "DESC";
35
+ tags?: string[] | null;
36
36
  authorization: string;
37
37
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListRepositoryResponseRead>;
38
38
  /**
@@ -61,14 +61,14 @@ declare class CodeShift extends ReactQueryNetworkClient {
61
61
  * List Repository Download Service
62
62
  */
63
63
  repositoryDownload: import("../network/types.js").QueryObject<Omit<{
64
- filter?: string | undefined;
65
- moduleId?: string | undefined;
66
- createdByEmail?: string | null | undefined;
67
- reportByEmail?: string | null | undefined;
68
- orderBy?: "repository.url" | "repository.created_at" | "repository.updated_at" | "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status" | undefined;
69
- orderDirection?: "ASC" | "DESC" | "asc" | "desc" | undefined;
70
- tags?: string[] | null | undefined;
71
- extension?: "csv" | "xlsx" | undefined;
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?: "asc" | "desc" | "ASC" | "DESC";
70
+ tags?: string[] | null;
71
+ extension?: "csv" | "xlsx";
72
72
  authorization: string;
73
73
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
74
74
  /**
@@ -82,16 +82,16 @@ declare class CodeShift extends ReactQueryNetworkClient {
82
82
  * Gets modules.
83
83
  */
84
84
  modules: import("../network/types.js").QueryObject<Omit<{
85
- pageSize?: number | undefined;
86
- moduleType?: import("../api/codeShift.js").ModuleType | null | undefined;
87
- page?: number | undefined;
88
- lastEvaluatedKey?: string | undefined;
89
- sharedWith?: string | null | undefined;
90
- createdBy?: string | null | undefined;
91
- visibility?: import("../api/codeShift.js").ModuleVisibility | null | undefined;
92
- name?: string | null | undefined;
93
- tags?: string[] | null | undefined;
94
- xAccountSlug?: string | undefined;
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;
95
95
  authorization: string;
96
96
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListModuleResponse>;
97
97
  /**
@@ -127,7 +127,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
127
127
  */
128
128
  createModule: import("../network/types.js").MutationObject<Omit<{
129
129
  authorization: string;
130
- xAccountSlug?: string | undefined;
130
+ xAccountSlug?: string;
131
131
  createModuleRequest: import("../api/codeShift.js").CreateModuleRequest;
132
132
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
133
133
  /**
@@ -136,7 +136,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
136
136
  updateModule: import("../network/types.js").MutationObject<Omit<{
137
137
  moduleId: string;
138
138
  authorization: string;
139
- xAccountSlug?: string | undefined;
139
+ xAccountSlug?: string;
140
140
  putModuleRequest: import("../api/codeShift.js").PutModuleRequest;
141
141
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
142
142
  /**
@@ -151,9 +151,9 @@ declare class CodeShift extends ReactQueryNetworkClient {
151
151
  */
152
152
  repositoryReports: import("../network/types.js").QueryObject<Omit<{
153
153
  repositoryId: string;
154
- pageSize?: number | undefined;
155
- page?: number | undefined;
156
- lastEvaluatedKey?: string | undefined;
154
+ pageSize?: number;
155
+ page?: number;
156
+ lastEvaluatedKey?: string;
157
157
  authorization: string;
158
158
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListRepositoryReportResponseRead>;
159
159
  /**
@@ -168,7 +168,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
168
168
  */
169
169
  downloadReport: import("../network/types.js").QueryObject<Omit<{
170
170
  reportId: string;
171
- extension?: "csv" | "xlsx" | undefined;
171
+ extension?: "csv" | "xlsx";
172
172
  authorization: string;
173
173
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
174
174
  /**
@@ -212,7 +212,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
212
212
  */
213
213
  downloadSearchRepository: import("../network/types.js").MutationObject<Omit<{
214
214
  searchRepoId: string;
215
- extension?: "csv" | "xlsx" | undefined;
215
+ extension?: "csv" | "xlsx";
216
216
  authorization: string;
217
217
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
218
218
  /**
@@ -242,7 +242,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
242
242
  */
243
243
  downloadSearchRepositoryV2: import("../network/types.js").MutationObject<Omit<{
244
244
  searchId: string;
245
- extension?: "csv" | "xlsx" | undefined;
245
+ extension?: "csv" | "xlsx";
246
246
  authorization: string;
247
247
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ResponseSearchRepoByIdResponseRead>;
248
248
  /**
@@ -264,9 +264,9 @@ declare class CodeShift extends ReactQueryNetworkClient {
264
264
  * Lists integrations
265
265
  */
266
266
  listIntegration: import("../network/types.js").QueryObject<Omit<{
267
- pageSize?: number | undefined;
268
- page?: number | undefined;
269
- name?: string | null | undefined;
267
+ pageSize?: number;
268
+ page?: number;
269
+ name?: string | null;
270
270
  authorization: string;
271
271
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListIntegrationResponse>;
272
272
  /**
@@ -296,25 +296,25 @@ declare class CodeShift extends ReactQueryNetworkClient {
296
296
  */
297
297
  createProgramGroup: import("../network/types.js").MutationObject<Omit<{
298
298
  name: string;
299
- tags?: string[] | null | undefined;
300
- integrationId?: string | undefined;
299
+ tags?: string[] | null;
300
+ integrationId?: string;
301
301
  authorization: string;
302
- fastapiCompatV2BodyCreateProgramGroupServiceV1ProgramGroupsPost?: import("../api/codeShift.js").BodyCreateProgramGroupServiceV1ProgramGroupsPost | undefined;
302
+ fastapiCompatV2BodyCreateProgramGroupServiceV1ProgramGroupsPost?: import("../api/codeShift.js").BodyCreateProgramGroupServiceV1ProgramGroupsPost;
303
303
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").CreateProgramGroupResponse>;
304
304
  /**
305
305
  * Gets list of program groups.
306
306
  */
307
307
  listProgramGroups: import("../network/types.js").QueryObject<Omit<{
308
- moduleId?: string | null | undefined;
309
- createdByEmail?: string | null | undefined;
310
- reportByEmail?: string | null | undefined;
311
- tags?: string[] | null | undefined;
312
- name?: string | null | undefined;
313
- pageSize?: number | undefined;
314
- page?: number | undefined;
315
- orderBy?: "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status" | "program_group.name" | "program_group.created_at" | "program_group.updated_at" | undefined;
316
- orderDirection?: "ASC" | "DESC" | "asc" | "desc" | undefined;
317
- integrationId?: string | undefined;
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?: "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";
316
+ orderDirection?: "asc" | "desc" | "ASC" | "DESC";
317
+ integrationId?: string;
318
318
  authorization: string;
319
319
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListProgramGroupResponseRead>;
320
320
  /**
@@ -329,9 +329,9 @@ declare class CodeShift extends ReactQueryNetworkClient {
329
329
  */
330
330
  listProgramGroupReport: import("../network/types.js").QueryObject<Omit<{
331
331
  programGroupId: string;
332
- pageSize?: number | undefined;
333
- page?: number | undefined;
334
- lastEvaluatedKey?: string | undefined;
332
+ pageSize?: number;
333
+ page?: number;
334
+ lastEvaluatedKey?: string;
335
335
  authorization: string;
336
336
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListProgramGroupReportResponseRead>;
337
337
  /**
@@ -339,11 +339,11 @@ declare class CodeShift extends ReactQueryNetworkClient {
339
339
  */
340
340
  updateProgramGroup: import("../network/types.js").MutationObject<Omit<{
341
341
  programGroupId: string;
342
- name?: string | null | undefined;
343
- tags?: string[] | null | undefined;
344
- integrationId?: string | null | undefined;
342
+ name?: string | null;
343
+ tags?: string[] | null;
344
+ integrationId?: string | null;
345
345
  authorization: string;
346
- fastapiCompatV2BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut?: import("../api/codeShift.js").BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut | undefined;
346
+ fastapiCompatV2BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut?: import("../api/codeShift.js").BodyUpdateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut;
347
347
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
348
348
  /**
349
349
  * Updates a program group components.
@@ -364,23 +364,23 @@ declare class CodeShift extends ReactQueryNetworkClient {
364
364
  * List Program Group Download Service
365
365
  */
366
366
  programGroupDownload: import("../network/types.js").QueryObject<Omit<{
367
- moduleId?: string | null | undefined;
368
- createdByEmail?: string | null | undefined;
369
- reportByEmail?: string | null | undefined;
370
- tags?: string[] | null | undefined;
371
- name?: string | null | undefined;
372
- orderBy?: "report.issues_count" | "report.total_files_count" | "report.analyzed_files_count" | "report.issues_files_count" | "report.created_at" | "report.updated_at" | "execution.status" | "program_group.name" | "program_group.created_at" | "program_group.updated_at" | undefined;
373
- orderDirection?: "ASC" | "DESC" | "asc" | "desc" | undefined;
374
- integrationId?: string | undefined;
375
- extension?: "csv" | "xlsx" | undefined;
367
+ moduleId?: string | null;
368
+ createdByEmail?: string | null;
369
+ reportByEmail?: string | null;
370
+ tags?: string[] | null;
371
+ name?: string | null;
372
+ 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";
373
+ orderDirection?: "asc" | "desc" | "ASC" | "DESC";
374
+ integrationId?: string;
375
+ extension?: "csv" | "xlsx";
376
376
  authorization: string;
377
377
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
378
378
  /**
379
379
  * Gets list of tags.
380
380
  */
381
381
  tags: import("../network/types.js").QueryObject<Omit<{
382
- name?: string | null | undefined;
383
- $type?: "Repository" | "Module" | undefined;
382
+ name?: string | null;
383
+ $type?: "Repository" | "Module";
384
384
  authorization: string;
385
385
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListTagResponse>;
386
386
  /**
@@ -407,164 +407,164 @@ declare class CodeShift extends ReactQueryNetworkClient {
407
407
  * General Report Success And Errors
408
408
  */
409
409
  generalReportSuccessAndErrors: import("../network/types.js").QueryObject<Omit<{
410
- startDate?: string | undefined;
411
- endDate?: string | undefined;
410
+ startDate?: string;
411
+ endDate?: string;
412
412
  authorization: string;
413
413
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").GeneralReportSuccessAndErrorsResponses>;
414
414
  /**
415
415
  * Analytics Repository Last Report Status
416
416
  */
417
417
  analyticsRepositoryLastReportStatus: import("../network/types.js").QueryObject<Omit<{
418
- pageSize?: number | undefined;
419
- page?: number | undefined;
420
- moduleId?: string[] | null | undefined;
421
- executedBy?: string[] | null | undefined;
422
- repositoryUrl?: string | null | undefined;
423
- tags?: string[] | null | undefined;
424
- orderBy?: "mode" | "repositoryUrl" | "moduleName" | "merged" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | null | undefined;
425
- orderDirection?: "ASC" | "DESC" | null | undefined;
426
- startDate?: string | null | undefined;
427
- endDate?: string | null | undefined;
428
- mode?: "scan" | "fix" | null | undefined;
418
+ pageSize?: number;
419
+ page?: number;
420
+ moduleId?: string[] | null;
421
+ executedBy?: string[] | null;
422
+ repositoryUrl?: string | null;
423
+ tags?: string[] | null;
424
+ orderBy?: ("repositoryUrl" | "moduleName" | "merged" | "mode" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues") | null;
425
+ orderDirection?: ("ASC" | "DESC") | null;
426
+ startDate?: string | null;
427
+ endDate?: string | null;
428
+ mode?: ("scan" | "fix") | null;
429
429
  authorization: string;
430
430
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryLastReportStatusResponse>;
431
431
  /**
432
432
  * Analytics Repository Last Report Status Download
433
433
  */
434
434
  analyticsRepositoryLastReportStatusDownload: import("../network/types.js").QueryObject<Omit<{
435
- moduleId?: string[] | null | undefined;
436
- orderBy?: "mode" | "repositoryUrl" | "moduleName" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | null | undefined;
437
- tags?: string[] | null | undefined;
438
- executedBy?: string[] | null | undefined;
439
- repositoryUrl?: string | null | undefined;
440
- orderDirection?: "ASC" | "DESC" | null | undefined;
441
- startDate?: string | undefined;
442
- endDate?: string | undefined;
443
- extension?: "csv" | "xlsx" | undefined;
444
- mode?: "scan" | "fix" | null | undefined;
435
+ moduleId?: string[] | null;
436
+ orderBy?: ("repositoryUrl" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues") | null;
437
+ tags?: string[] | null;
438
+ executedBy?: string[] | null;
439
+ repositoryUrl?: string | null;
440
+ orderDirection?: ("ASC" | "DESC") | null;
441
+ startDate?: string;
442
+ endDate?: string;
443
+ extension?: "csv" | "xlsx";
444
+ mode?: ("scan" | "fix") | null;
445
445
  authorization: string;
446
446
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
447
447
  /**
448
448
  * Analytics Repository Usage
449
449
  */
450
450
  analyticsRepositoryUsage: import("../network/types.js").QueryObject<Omit<{
451
- pageSize?: number | undefined;
452
- page?: number | undefined;
453
- moduleId?: string[] | null | undefined;
454
- userId?: string | null | undefined;
455
- tags?: string[] | null | undefined;
456
- orderBy?: "repositoryUrl" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
457
- executedBy?: string[] | null | undefined;
458
- repositoryUrl?: string | null | undefined;
459
- orderDirection?: "ASC" | "DESC" | null | undefined;
460
- startDate?: string | undefined;
461
- endDate?: string | undefined;
451
+ pageSize?: number;
452
+ page?: number;
453
+ moduleId?: string[] | null;
454
+ userId?: string | null;
455
+ tags?: string[] | null;
456
+ orderBy?: ("repositoryUrl" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
457
+ executedBy?: string[] | null;
458
+ repositoryUrl?: string | null;
459
+ orderDirection?: ("ASC" | "DESC") | null;
460
+ startDate?: string;
461
+ endDate?: string;
462
462
  authorization: string;
463
463
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryUsageResponse>;
464
464
  /**
465
465
  * Analytics Program Groups Last Report Status
466
466
  */
467
467
  analyticsProgramGroupsLastReportStatus: import("../network/types.js").QueryObject<Omit<{
468
- pageSize?: number | undefined;
469
- page?: number | undefined;
470
- moduleId?: string[] | null | undefined;
471
- userId?: string | null | undefined;
472
- tags?: string[] | null | undefined;
473
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | "programName" | null | undefined;
474
- executedBy?: string[] | null | undefined;
475
- programName?: string | null | undefined;
476
- orderDirection?: "ASC" | "DESC" | null | undefined;
477
- startDate?: string | undefined;
478
- endDate?: string | undefined;
468
+ pageSize?: number;
469
+ page?: number;
470
+ moduleId?: string[] | null;
471
+ userId?: string | null;
472
+ tags?: string[] | null;
473
+ orderBy?: ("programName" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues") | null;
474
+ executedBy?: string[] | null;
475
+ programName?: string | null;
476
+ orderDirection?: ("ASC" | "DESC") | null;
477
+ startDate?: string;
478
+ endDate?: string;
479
479
  authorization: string;
480
480
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsLastReportStatusResponse>;
481
481
  /**
482
482
  * Analytics Program Groups Last Report Status Download
483
483
  */
484
484
  analyticsProgramGroupsLastReportStatusDownload: import("../network/types.js").QueryObject<Omit<{
485
- moduleId?: string[] | null | undefined;
486
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | "programName" | null | undefined;
487
- orderDirection?: "ASC" | "DESC" | null | undefined;
488
- startDate?: string | null | undefined;
489
- endDate?: string | null | undefined;
490
- reportType?: "repository" | "program_group" | null | undefined;
491
- extension?: "csv" | "xlsx" | undefined;
485
+ moduleId?: string[] | null;
486
+ orderBy?: ("programName" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues") | null;
487
+ orderDirection?: ("ASC" | "DESC") | null;
488
+ startDate?: string | null;
489
+ endDate?: string | null;
490
+ reportType?: ("repository" | "program_group") | null;
491
+ extension?: "csv" | "xlsx";
492
492
  authorization: string;
493
493
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
494
494
  /**
495
495
  * Analytics User Usage
496
496
  */
497
497
  analyticsUserUsage: import("../network/types.js").QueryObject<Omit<{
498
- pageSize?: number | undefined;
499
- page?: number | undefined;
500
- moduleId?: string[] | null | undefined;
501
- name?: string | null | undefined;
502
- reportType?: "repository" | "program_group" | null | undefined;
503
- orderBy?: "name" | "email" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
504
- orderDirection?: "ASC" | "DESC" | null | undefined;
505
- startDate?: string | undefined;
506
- endDate?: string | undefined;
498
+ pageSize?: number;
499
+ page?: number;
500
+ moduleId?: string[] | null;
501
+ name?: string | null;
502
+ reportType?: ("repository" | "program_group") | null;
503
+ orderBy?: ("name" | "email" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
504
+ orderDirection?: ("ASC" | "DESC") | null;
505
+ startDate?: string;
506
+ endDate?: string;
507
507
  authorization: string;
508
508
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsUserUsageResponse>;
509
509
  /**
510
510
  * Analytics User Usage Download
511
511
  */
512
512
  analyticsUserUsageDownload: import("../network/types.js").QueryObject<Omit<{
513
- moduleId?: string[] | null | undefined;
514
- name?: string | null | undefined;
515
- reportType?: "repository" | "program_group" | null | undefined;
516
- orderBy?: "name" | "email" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
517
- orderDirection?: "ASC" | "DESC" | null | undefined;
518
- startDate?: string | undefined;
519
- endDate?: string | undefined;
520
- extension?: "csv" | "xlsx" | undefined;
513
+ moduleId?: string[] | null;
514
+ name?: string | null;
515
+ reportType?: ("repository" | "program_group") | null;
516
+ orderBy?: ("name" | "email" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
517
+ orderDirection?: ("ASC" | "DESC") | null;
518
+ startDate?: string;
519
+ endDate?: string;
520
+ extension?: "csv" | "xlsx";
521
521
  authorization: string;
522
522
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
523
523
  /**
524
524
  * Analytics Repository Usage Download
525
525
  */
526
526
  analyticsRepositoryUsageDownload: import("../network/types.js").QueryObject<Omit<{
527
- moduleId?: string[] | null | undefined;
528
- userId?: string | null | undefined;
529
- orderBy?: "repositoryUrl" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
530
- tags?: string[] | null | undefined;
531
- executedBy?: string[] | null | undefined;
532
- repositoryUrl?: string | null | undefined;
533
- orderDirection?: "ASC" | "DESC" | null | undefined;
534
- startDate?: string | undefined;
535
- endDate?: string | undefined;
536
- extension?: "csv" | "xlsx" | undefined;
527
+ moduleId?: string[] | null;
528
+ userId?: string | null;
529
+ orderBy?: ("repositoryUrl" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
530
+ tags?: string[] | null;
531
+ executedBy?: string[] | null;
532
+ repositoryUrl?: string | null;
533
+ orderDirection?: ("ASC" | "DESC") | null;
534
+ startDate?: string;
535
+ endDate?: string;
536
+ extension?: "csv" | "xlsx";
537
537
  authorization: string;
538
538
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
539
539
  /**
540
540
  * Analytics Program Groups Usage
541
541
  */
542
542
  analyticsProgramGroupsUsage: import("../network/types.js").QueryObject<Omit<{
543
- pageSize?: number | undefined;
544
- page?: number | undefined;
545
- executedBy?: string[] | null | undefined;
546
- moduleId?: string[] | null | undefined;
547
- tags?: string[] | null | undefined;
548
- orderBy?: "name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
549
- orderDirection?: "ASC" | "DESC" | null | undefined;
550
- programGroupName?: string | null | undefined;
551
- startDate?: string | null | undefined;
552
- endDate?: string | null | undefined;
543
+ pageSize?: number;
544
+ page?: number;
545
+ executedBy?: string[] | null;
546
+ moduleId?: string[] | null;
547
+ tags?: string[] | null;
548
+ orderBy?: ("name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
549
+ orderDirection?: ("ASC" | "DESC") | null;
550
+ programGroupName?: string | null;
551
+ startDate?: string | null;
552
+ endDate?: string | null;
553
553
  authorization: string;
554
554
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsUsageResponse>;
555
555
  /**
556
556
  * Analytics Program Groups Usage Download
557
557
  */
558
558
  analyticsProgramGroupsUsageDownload: import("../network/types.js").QueryObject<Omit<{
559
- moduleId?: string[] | null | undefined;
560
- executedBy?: string[] | null | undefined;
561
- tags?: string[] | null | undefined;
562
- orderBy?: "name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
563
- orderDirection?: "ASC" | "DESC" | null | undefined;
564
- programGroupName?: string | null | undefined;
565
- startDate?: string | null | undefined;
566
- endDate?: string | null | undefined;
567
- extension?: "csv" | "xlsx" | undefined;
559
+ moduleId?: string[] | null;
560
+ executedBy?: string[] | null;
561
+ tags?: string[] | null;
562
+ orderBy?: ("name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess") | null;
563
+ orderDirection?: ("ASC" | "DESC") | null;
564
+ programGroupName?: string | null;
565
+ startDate?: string | null;
566
+ endDate?: string | null;
567
+ extension?: "csv" | "xlsx";
568
568
  authorization: string;
569
569
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
570
570
  /**
@@ -577,140 +577,140 @@ declare class CodeShift extends ReactQueryNetworkClient {
577
577
  * Analytics Program Groups Details
578
578
  */
579
579
  analyticsProgramGroupsDetails: import("../network/types.js").QueryObject<Omit<{
580
- pageSize?: number | undefined;
581
- page?: number | undefined;
582
- programName?: string | null | undefined;
583
- tags?: string[] | null | undefined;
584
- mode?: "scan" | "fix" | null | undefined;
585
- moduleId?: string[] | null | undefined;
586
- programCreatedById?: string[] | null | undefined;
587
- reportCreatedById?: string[] | null | undefined;
588
- startDate?: string | undefined;
589
- endDate?: string | undefined;
590
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "programGroupName" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | null | undefined;
591
- orderDirection?: "ASC" | "DESC" | null | undefined;
580
+ pageSize?: number;
581
+ page?: number;
582
+ programName?: string | null;
583
+ tags?: string[] | null;
584
+ mode?: ("scan" | "fix") | null;
585
+ moduleId?: string[] | null;
586
+ programCreatedById?: string[] | null;
587
+ reportCreatedById?: string[] | null;
588
+ startDate?: string;
589
+ endDate?: string;
590
+ orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds") | null;
591
+ orderDirection?: ("ASC" | "DESC") | null;
592
592
  authorization: string;
593
593
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsDetailsResponse>;
594
594
  /**
595
595
  * Analytics Program Groups Details Download
596
596
  */
597
597
  analyticsProgramGroupsDetailsDownload: import("../network/types.js").QueryObject<Omit<{
598
- programName?: string | null | undefined;
599
- tags?: string[] | null | undefined;
600
- mode?: "scan" | "fix" | null | undefined;
601
- moduleId?: string[] | null | undefined;
602
- programCreatedById?: string[] | null | undefined;
603
- reportCreatedById?: string[] | null | undefined;
604
- startDate?: string | undefined;
605
- endDate?: string | undefined;
606
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "programGroupName" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | null | undefined;
607
- orderDirection?: "ASC" | "DESC" | null | undefined;
608
- extension?: "csv" | "xlsx" | undefined;
598
+ programName?: string | null;
599
+ tags?: string[] | null;
600
+ mode?: ("scan" | "fix") | null;
601
+ moduleId?: string[] | null;
602
+ programCreatedById?: string[] | null;
603
+ reportCreatedById?: string[] | null;
604
+ startDate?: string;
605
+ endDate?: string;
606
+ orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds") | null;
607
+ orderDirection?: ("ASC" | "DESC") | null;
608
+ extension?: "csv" | "xlsx";
609
609
  authorization: string;
610
610
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
611
611
  /**
612
612
  * Analytics Program Groups Details
613
613
  */
614
614
  analyticsRepositoryDetails: import("../network/types.js").QueryObject<Omit<{
615
- pageSize?: number | undefined;
616
- page?: number | undefined;
617
- repositoryUrl?: string | null | undefined;
618
- tags?: string[] | null | undefined;
619
- mode?: "scan" | "fix" | null | undefined;
620
- moduleId?: string[] | null | undefined;
621
- repositoryCreatedById?: string[] | null | undefined;
622
- executedBy?: string[] | null | undefined;
623
- startDate?: string | undefined;
624
- endDate?: string | undefined;
625
- orderBy?: "repositoryUrl" | "moduleName" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | "sourceBranch" | "targetBranch" | "moduleVersion" | "pullRequestLink" | "reportCreatedByEmail" | "repositoryCreatedByEmail" | "repositoryCreatedByName" | null | undefined;
626
- orderDirection?: "ASC" | "DESC" | null | undefined;
615
+ pageSize?: number;
616
+ page?: number;
617
+ repositoryUrl?: string | null;
618
+ tags?: string[] | null;
619
+ mode?: ("scan" | "fix") | null;
620
+ moduleId?: string[] | null;
621
+ repositoryCreatedById?: string[] | null;
622
+ executedBy?: string[] | null;
623
+ startDate?: string;
624
+ endDate?: string;
625
+ orderBy?: ("totalFilesCount" | "analyzedFilesCount" | "changedFilesCount" | "issuesCount" | "issuesFilesCount" | "reportCreatedAt" | "repositoryUrl" | "sourceBranch" | "targetBranch" | "executionCompletedAt" | "executionStartedAt" | "moduleName" | "moduleVersion" | "processingTimeSeconds" | "pullRequestLink" | "reportCreatedByEmail" | "reportCreatedByName" | "repositoryCreatedByEmail" | "repositoryCreatedByName") | null;
626
+ orderDirection?: ("ASC" | "DESC") | null;
627
627
  authorization: string;
628
628
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryDetailedReportResponse>;
629
629
  /**
630
630
  * Analytics Program Groups Details Download
631
631
  */
632
632
  analyticsRepositoryDetailsDownload: import("../network/types.js").QueryObject<Omit<{
633
- repositoryUrl?: string | null | undefined;
634
- tags?: string[] | null | undefined;
635
- mode?: "scan" | "fix" | null | undefined;
636
- moduleId?: string[] | null | undefined;
637
- repositoryCreatedById?: string[] | null | undefined;
638
- reportCreatedById?: string[] | null | undefined;
639
- startDate?: string | undefined;
640
- endDate?: string | undefined;
641
- orderBy?: "repositoryUrl" | "moduleName" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | "sourceBranch" | "targetBranch" | "moduleVersion" | "pullRequestLink" | "reportCreatedByEmail" | "repositoryCreatedByEmail" | "repositoryCreatedByName" | null | undefined;
642
- orderDirection?: "ASC" | "DESC" | null | undefined;
643
- extension?: "csv" | "xlsx" | undefined;
633
+ repositoryUrl?: string | null;
634
+ tags?: string[] | null;
635
+ mode?: ("scan" | "fix") | null;
636
+ moduleId?: string[] | null;
637
+ repositoryCreatedById?: string[] | null;
638
+ reportCreatedById?: string[] | null;
639
+ startDate?: string;
640
+ endDate?: string;
641
+ orderBy?: ("totalFilesCount" | "analyzedFilesCount" | "changedFilesCount" | "issuesCount" | "issuesFilesCount" | "reportCreatedAt" | "repositoryUrl" | "sourceBranch" | "targetBranch" | "executionCompletedAt" | "executionStartedAt" | "moduleName" | "moduleVersion" | "processingTimeSeconds" | "pullRequestLink" | "reportCreatedByEmail" | "reportCreatedByName" | "repositoryCreatedByEmail" | "repositoryCreatedByName") | null;
642
+ orderDirection?: ("ASC" | "DESC") | null;
643
+ extension?: "csv" | "xlsx";
644
644
  authorization: string;
645
645
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryDetailedReportResponse>;
646
646
  /**
647
647
  * Analytics Program Groups Target Details
648
648
  */
649
649
  analyticsProgramGroupsTargetDetails: import("../network/types.js").QueryObject<Omit<{
650
- pageSize?: number | undefined;
651
- page?: number | undefined;
652
- programName?: string | null | undefined;
653
- componentName?: string | null | undefined;
654
- tags?: string[] | null | undefined;
655
- mode?: "scan" | "fix" | null | undefined;
656
- moduleId?: string[] | null | undefined;
657
- reportCreatedById?: string[] | null | undefined;
658
- startDate?: string | undefined;
659
- endDate?: string | undefined;
660
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "totalIssues" | "programGroupName" | "executionStartedAt" | "executionCompletedAt" | "changedFilesCount" | "componentAppName" | "componentName" | "componentType" | null | undefined;
661
- orderDirection?: "ASC" | "DESC" | null | undefined;
650
+ pageSize?: number;
651
+ page?: number;
652
+ programName?: string | null;
653
+ componentName?: string | null;
654
+ tags?: string[] | null;
655
+ mode?: ("scan" | "fix") | null;
656
+ moduleId?: string[] | null;
657
+ reportCreatedById?: string[] | null;
658
+ startDate?: string;
659
+ endDate?: string;
660
+ orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "executionStartedAt" | "executionCompletedAt" | "componentAppName" | "componentName" | "componentType" | "totalIssues" | "changedFilesCount") | null;
661
+ orderDirection?: ("ASC" | "DESC") | null;
662
662
  authorization: string;
663
663
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsTargetDetailsResponse>;
664
664
  /**
665
665
  * Analytics Program Groups Target Details Download
666
666
  */
667
667
  analyticsProgramGroupsTargetDetailsDownload: import("../network/types.js").QueryObject<Omit<{
668
- programName?: string | null | undefined;
669
- tags?: string[] | null | undefined;
670
- mode?: "scan" | "fix" | null | undefined;
671
- moduleId?: string[] | null | undefined;
672
- componentName?: string | null | undefined;
673
- reportCreatedById?: string[] | null | undefined;
674
- startDate?: string | undefined;
675
- endDate?: string | undefined;
676
- orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "totalIssues" | "programGroupName" | "executionStartedAt" | "executionCompletedAt" | "changedFilesCount" | "componentAppName" | "componentName" | "componentType" | null | undefined;
677
- orderDirection?: "ASC" | "DESC" | null | undefined;
678
- extension?: "csv" | "xlsx" | undefined;
668
+ programName?: string | null;
669
+ tags?: string[] | null;
670
+ mode?: ("scan" | "fix") | null;
671
+ moduleId?: string[] | null;
672
+ componentName?: string | null;
673
+ reportCreatedById?: string[] | null;
674
+ startDate?: string;
675
+ endDate?: string;
676
+ orderBy?: ("programGroupName" | "moduleName" | "mode" | "reportCreatedAt" | "executionStartedAt" | "executionCompletedAt" | "componentAppName" | "componentName" | "componentType" | "totalIssues" | "changedFilesCount") | null;
677
+ orderDirection?: ("ASC" | "DESC") | null;
678
+ extension?: "csv" | "xlsx";
679
679
  authorization: string;
680
680
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
681
681
  /**
682
682
  * Analytics Repository Target Details
683
683
  */
684
684
  analyticsRepositoryTargetDetails: import("../network/types.js").QueryObject<Omit<{
685
- pageSize?: number | undefined;
686
- page?: number | undefined;
687
- repositoryUrl?: string | null | undefined;
688
- targetName?: string | null | undefined;
689
- tags?: string[] | null | undefined;
690
- mode?: "scan" | "fix" | null | undefined;
691
- moduleId?: string[] | null | undefined;
692
- reportCreatedById?: string[] | null | undefined;
693
- startDate?: string | undefined;
694
- endDate?: string | undefined;
695
- orderBy?: "repositoryUrl" | "moduleName" | "reportCreatedAt" | "issuesCount" | "sourceBranch" | "targetName" | "targetPath" | null | undefined;
696
- orderDirection?: "ASC" | "DESC" | null | undefined;
685
+ pageSize?: number;
686
+ page?: number;
687
+ repositoryUrl?: string | null;
688
+ targetName?: string | null;
689
+ tags?: string[] | null;
690
+ mode?: ("scan" | "fix") | null;
691
+ moduleId?: string[] | null;
692
+ reportCreatedById?: string[] | null;
693
+ startDate?: string;
694
+ endDate?: string;
695
+ orderBy?: ("repositoryUrl" | "sourceBranch" | "moduleName" | "targetName" | "targetPath" | "issuesCount" | "reportCreatedAt") | null;
696
+ orderDirection?: ("ASC" | "DESC") | null;
697
697
  authorization: string;
698
698
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryTargetDetailsResponse>;
699
699
  /**
700
700
  * Analytics Repository Target Details Download
701
701
  */
702
702
  analyticsRepositoryTargetDetailsDownload: import("../network/types.js").QueryObject<Omit<{
703
- repositoryUrl?: string | null | undefined;
704
- targetName?: string | null | undefined;
705
- tags?: string[] | null | undefined;
706
- mode?: "scan" | "fix" | null | undefined;
707
- moduleId?: string[] | null | undefined;
708
- reportCreatedById?: string[] | null | undefined;
709
- startDate?: string | undefined;
710
- endDate?: string | undefined;
711
- orderBy?: "repositoryUrl" | "moduleName" | "reportCreatedAt" | "issuesCount" | "sourceBranch" | "targetName" | "targetPath" | null | undefined;
712
- orderDirection?: "ASC" | "DESC" | null | undefined;
713
- extension?: "csv" | "xlsx" | undefined;
703
+ repositoryUrl?: string | null;
704
+ targetName?: string | null;
705
+ tags?: string[] | null;
706
+ mode?: ("scan" | "fix") | null;
707
+ moduleId?: string[] | null;
708
+ reportCreatedById?: string[] | null;
709
+ startDate?: string;
710
+ endDate?: string;
711
+ orderBy?: ("repositoryUrl" | "sourceBranch" | "moduleName" | "targetName" | "targetPath" | "issuesCount" | "reportCreatedAt") | null;
712
+ orderDirection?: ("ASC" | "DESC") | null;
713
+ extension?: "csv" | "xlsx";
714
714
  authorization: string;
715
715
  }, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
716
716
  }