@stack-spot/portal-network 0.173.0 → 0.174.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 +239 -0
- 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 +4 -1
- package/dist/api/ai.d.ts.map +1 -1
- package/dist/api/ai.js.map +1 -1
- package/dist/api/codeShift.d.ts +504 -23
- package/dist/api/codeShift.d.ts.map +1 -1
- package/dist/api/codeShift.js +217 -0
- package/dist/api/codeShift.js.map +1 -1
- package/dist/api/discover.d.ts +294 -0
- package/dist/api/discover.d.ts.map +1 -0
- package/dist/api/discover.js +180 -0
- package/dist/api/discover.js.map +1 -0
- package/dist/api-addresses.d.ts +11 -3
- package/dist/api-addresses.d.ts.map +1 -1
- package/dist/api-addresses.js +22 -2
- package/dist/api-addresses.js.map +1 -1
- package/dist/apis-itau.json +225 -0
- package/dist/apis.json +2 -2
- 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 +183 -28
- package/dist/client/code-shift.d.ts.map +1 -1
- package/dist/client/code-shift.js +106 -7
- package/dist/client/code-shift.js.map +1 -1
- package/dist/client/data-integration.d.ts +9 -0
- package/dist/client/data-integration.d.ts.map +1 -1
- package/dist/client/data-integration.js +10 -1
- package/dist/client/data-integration.js.map +1 -1
- package/dist/client/discover.d.ts +64 -0
- package/dist/client/discover.d.ts.map +1 -0
- package/dist/client/discover.js +124 -0
- package/dist/client/discover.js.map +1 -0
- package/dist/client/workspace-manager.d.ts +9 -0
- package/dist/client/workspace-manager.d.ts.map +1 -1
- package/dist/client/workspace-manager.js +11 -2
- package/dist/client/workspace-manager.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/dist/error/dictionary/cloud-platform.d.ts +70 -8
- package/dist/error/dictionary/cloud-platform.d.ts.map +1 -1
- package/dist/error/dictionary/cloud-platform.js +74 -12
- package/dist/error/dictionary/cloud-platform.js.map +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/network/NetworkClient.d.ts +4 -2
- package/dist/network/NetworkClient.d.ts.map +1 -1
- package/dist/network/NetworkClient.js +5 -3
- package/dist/network/NetworkClient.js.map +1 -1
- package/dist/network/types.d.ts +1 -0
- package/dist/network/types.d.ts.map +1 -1
- package/package.json +2 -2
- package/readme.md +1 -1
- package/src/api/account.ts +1 -0
- package/src/api/agent-tools.ts +4 -0
- package/src/api/agent.ts +2 -0
- package/src/api/ai.ts +4 -1
- package/src/api/codeShift.ts +898 -33
- package/src/api/discover.ts +435 -0
- package/src/api/notification.ts +2 -0
- package/src/api-addresses.ts +26 -3
- package/src/apis-itau.json +225 -0
- package/src/apis.json +2 -2
- package/src/client/agent-tools.ts +4 -8
- package/src/client/ai.ts +4 -3
- package/src/client/code-shift.ts +73 -7
- package/src/client/data-integration.ts +6 -0
- package/src/client/discover.ts +89 -0
- package/src/client/workspace-manager.ts +8 -1
- package/src/error/dictionary/agent-tools.ts +76 -0
- package/src/error/dictionary/cloud-platform.ts +74 -12
- package/src/index.ts +5 -3
- package/src/network/NetworkClient.ts +7 -4
- package/src/network/types.ts +2 -0
- package/dist/api/discovery.d.ts +0 -494
- package/dist/api/discovery.d.ts.map +0 -1
- package/dist/api/discovery.js +0 -205
- package/dist/api/discovery.js.map +0 -1
- package/dist/client/discovery.d.ts +0 -110
- package/dist/client/discovery.d.ts.map +0 -1
- package/dist/client/discovery.js +0 -133
- package/dist/client/discovery.js.map +0 -1
- package/src/api/discovery.ts +0 -729
- package/src/client/discovery.ts +0 -73
|
@@ -30,18 +30,18 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
30
30
|
moduleId?: string | undefined;
|
|
31
31
|
createdByEmail?: string | null | undefined;
|
|
32
32
|
reportByEmail?: string | null | undefined;
|
|
33
|
-
orderBy?:
|
|
34
|
-
orderDirection?:
|
|
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
35
|
tags?: string[] | null | undefined;
|
|
36
36
|
authorization: string;
|
|
37
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").
|
|
37
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListRepositoryResponseRead>;
|
|
38
38
|
/**
|
|
39
39
|
* Gets a repository
|
|
40
40
|
*/
|
|
41
41
|
repository: import("../network/types.js").QueryObject<Omit<{
|
|
42
42
|
repositoryId: string;
|
|
43
43
|
authorization: string;
|
|
44
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").
|
|
44
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").RepositoryResponseRead>;
|
|
45
45
|
/**
|
|
46
46
|
* Deletes a repository
|
|
47
47
|
*/
|
|
@@ -57,6 +57,20 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
57
57
|
authorization: string;
|
|
58
58
|
putRepositoryRequest: import("../api/codeShift.js").PutRepositoryRequest;
|
|
59
59
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
60
|
+
/**
|
|
61
|
+
* List Repository Download Service
|
|
62
|
+
*/
|
|
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;
|
|
72
|
+
authorization: string;
|
|
73
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
60
74
|
/**
|
|
61
75
|
* Get a report for a pull request by id.
|
|
62
76
|
*/
|
|
@@ -72,15 +86,29 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
72
86
|
moduleType?: import("../api/codeShift.js").ModuleType | null | undefined;
|
|
73
87
|
page?: number | undefined;
|
|
74
88
|
lastEvaluatedKey?: string | undefined;
|
|
75
|
-
xAccountSlug?:
|
|
89
|
+
xAccountSlug?: string | undefined;
|
|
76
90
|
authorization: string;
|
|
77
91
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListModuleResponse>;
|
|
92
|
+
/**
|
|
93
|
+
* Gets module by id.
|
|
94
|
+
*/
|
|
95
|
+
module: import("../network/types.js").QueryObject<Omit<{
|
|
96
|
+
moduleId: string;
|
|
97
|
+
authorization: string;
|
|
98
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").GetModuleResponse>;
|
|
99
|
+
/**
|
|
100
|
+
* Gets module inputs.
|
|
101
|
+
*/
|
|
102
|
+
modulesInputs: import("../network/types.js").QueryObject<Omit<{
|
|
103
|
+
moduleId: string;
|
|
104
|
+
authorization: string;
|
|
105
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").GetModuleInputsResponse>;
|
|
78
106
|
/**
|
|
79
107
|
* Creates a module.
|
|
80
108
|
*/
|
|
81
109
|
createModule: import("../network/types.js").MutationObject<Omit<{
|
|
82
110
|
authorization: string;
|
|
83
|
-
xAccountSlug?:
|
|
111
|
+
xAccountSlug?: string | undefined;
|
|
84
112
|
createModuleRequest: import("../api/codeShift.js").CreateModuleRequest;
|
|
85
113
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
86
114
|
/**
|
|
@@ -99,14 +127,14 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
99
127
|
page?: number | undefined;
|
|
100
128
|
lastEvaluatedKey?: string | undefined;
|
|
101
129
|
authorization: string;
|
|
102
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").
|
|
130
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListRepositoryReportResponseRead>;
|
|
103
131
|
/**
|
|
104
132
|
* Gets report.
|
|
105
133
|
*/
|
|
106
134
|
report: import("../network/types.js").QueryObject<Omit<{
|
|
107
135
|
reportId: string;
|
|
108
136
|
authorization: string;
|
|
109
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").
|
|
137
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").GetReportResponseRead>;
|
|
110
138
|
/**
|
|
111
139
|
* Downloads a report as a csv file.
|
|
112
140
|
*/
|
|
@@ -150,6 +178,13 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
150
178
|
extension?: "csv" | "xlsx" | undefined;
|
|
151
179
|
authorization: string;
|
|
152
180
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
181
|
+
/**
|
|
182
|
+
* Searches for repositories (v2)
|
|
183
|
+
*/
|
|
184
|
+
searchRepositoryV2: import("../network/types.js").MutationObject<Omit<{
|
|
185
|
+
authorization: string;
|
|
186
|
+
searchReposInScmRequest: import("../api/codeShift.js").SearchReposInScmRequest;
|
|
187
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
153
188
|
/**
|
|
154
189
|
* Validate if the user has permission.
|
|
155
190
|
* We do not use opa in this api, so this is the fn needed to check permissions.
|
|
@@ -217,11 +252,11 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
217
252
|
name?: string | null | undefined;
|
|
218
253
|
pageSize?: number | undefined;
|
|
219
254
|
page?: number | undefined;
|
|
220
|
-
orderBy?:
|
|
221
|
-
orderDirection?:
|
|
255
|
+
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;
|
|
256
|
+
orderDirection?: "ASC" | "DESC" | "asc" | "desc" | undefined;
|
|
222
257
|
integrationId?: string | undefined;
|
|
223
258
|
authorization: string;
|
|
224
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").
|
|
259
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListProgramGroupResponseRead>;
|
|
225
260
|
/**
|
|
226
261
|
* Gets a program group by id.
|
|
227
262
|
*/
|
|
@@ -238,7 +273,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
238
273
|
page?: number | undefined;
|
|
239
274
|
lastEvaluatedKey?: string | undefined;
|
|
240
275
|
authorization: string;
|
|
241
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").
|
|
276
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListProgramGroupReportResponseRead>;
|
|
242
277
|
/**
|
|
243
278
|
* Updates a program group.
|
|
244
279
|
*/
|
|
@@ -265,6 +300,21 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
265
300
|
programGroupId: string;
|
|
266
301
|
authorization: string;
|
|
267
302
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
303
|
+
/**
|
|
304
|
+
* List Program Group Download Service
|
|
305
|
+
*/
|
|
306
|
+
programGroupDownload: import("../network/types.js").QueryObject<Omit<{
|
|
307
|
+
moduleId?: string | null | undefined;
|
|
308
|
+
createdByEmail?: string | null | undefined;
|
|
309
|
+
reportByEmail?: string | null | undefined;
|
|
310
|
+
tags?: string[] | null | undefined;
|
|
311
|
+
name?: string | null | undefined;
|
|
312
|
+
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;
|
|
313
|
+
orderDirection?: "ASC" | "DESC" | "asc" | "desc" | undefined;
|
|
314
|
+
integrationId?: string | undefined;
|
|
315
|
+
extension?: "csv" | "xlsx" | undefined;
|
|
316
|
+
authorization: string;
|
|
317
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
268
318
|
/**
|
|
269
319
|
* Gets list of tags.
|
|
270
320
|
*/
|
|
@@ -304,7 +354,7 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
304
354
|
executedBy?: string[] | null | undefined;
|
|
305
355
|
repositoryUrl?: string | null | undefined;
|
|
306
356
|
tags?: string[] | null | undefined;
|
|
307
|
-
orderBy?: "mode" | "repositoryUrl" | "moduleName" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | null | undefined;
|
|
357
|
+
orderBy?: "mode" | "repositoryUrl" | "moduleName" | "merged" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | null | undefined;
|
|
308
358
|
orderDirection?: "ASC" | "DESC" | null | undefined;
|
|
309
359
|
startDate?: string | null | undefined;
|
|
310
360
|
endDate?: string | null | undefined;
|
|
@@ -362,21 +412,18 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
362
412
|
authorization: string;
|
|
363
413
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsLastReportStatusResponse>;
|
|
364
414
|
/**
|
|
365
|
-
* Analytics Program Groups
|
|
415
|
+
* Analytics Program Groups Last Report Status Download
|
|
366
416
|
*/
|
|
367
|
-
|
|
368
|
-
pageSize?: number | undefined;
|
|
369
|
-
page?: number | undefined;
|
|
370
|
-
executedBy?: string[] | null | undefined;
|
|
417
|
+
analyticsProgramGroupsLastReportStatusDownload: import("../network/types.js").QueryObject<Omit<{
|
|
371
418
|
moduleId?: string[] | null | undefined;
|
|
372
|
-
|
|
373
|
-
orderBy?: "name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
|
|
419
|
+
orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "reportCreatedBy" | "totalFiles" | "totalFilesAnalyzed" | "totalFilesIssues" | "totalFilesChanged" | "totalIssues" | "programName" | null | undefined;
|
|
374
420
|
orderDirection?: "ASC" | "DESC" | null | undefined;
|
|
375
|
-
programGroupName?: string | null | undefined;
|
|
376
421
|
startDate?: string | null | undefined;
|
|
377
422
|
endDate?: string | null | undefined;
|
|
423
|
+
reportType?: "repository" | "program_group" | null | undefined;
|
|
424
|
+
extension?: "csv" | "xlsx" | undefined;
|
|
378
425
|
authorization: string;
|
|
379
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {},
|
|
426
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
380
427
|
/**
|
|
381
428
|
* Analytics User Usage
|
|
382
429
|
*/
|
|
@@ -423,18 +470,21 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
423
470
|
authorization: string;
|
|
424
471
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
425
472
|
/**
|
|
426
|
-
* Analytics Program Groups
|
|
473
|
+
* Analytics Program Groups Usage
|
|
427
474
|
*/
|
|
428
|
-
|
|
475
|
+
analyticsProgramGroupsUsage: import("../network/types.js").QueryObject<Omit<{
|
|
476
|
+
pageSize?: number | undefined;
|
|
477
|
+
page?: number | undefined;
|
|
478
|
+
executedBy?: string[] | null | undefined;
|
|
429
479
|
moduleId?: string[] | null | undefined;
|
|
430
|
-
|
|
480
|
+
tags?: string[] | null | undefined;
|
|
481
|
+
orderBy?: "name" | "totalScan" | "totalScanFailure" | "totalScanSuccess" | "totalFix" | "totalFixFailure" | "totalFixSuccess" | null | undefined;
|
|
431
482
|
orderDirection?: "ASC" | "DESC" | null | undefined;
|
|
483
|
+
programGroupName?: string | null | undefined;
|
|
432
484
|
startDate?: string | null | undefined;
|
|
433
485
|
endDate?: string | null | undefined;
|
|
434
|
-
reportType?: "repository" | "program_group" | null | undefined;
|
|
435
|
-
extension?: "csv" | "xlsx" | undefined;
|
|
436
486
|
authorization: string;
|
|
437
|
-
}, "authorization" | "authorizationHeader" | "jwtToken"> & {},
|
|
487
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsUsageResponse>;
|
|
438
488
|
/**
|
|
439
489
|
* Analytics Program Groups Usage Download
|
|
440
490
|
*/
|
|
@@ -456,6 +506,111 @@ declare class CodeShift extends ReactQueryNetworkClient {
|
|
|
456
506
|
getUsersService: import("../network/types.js").QueryObject<Omit<{
|
|
457
507
|
authorization: string;
|
|
458
508
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").ListUserResponse>;
|
|
509
|
+
/**
|
|
510
|
+
* Analytics Program Groups Details
|
|
511
|
+
*/
|
|
512
|
+
analyticsProgramGroupsDetails: import("../network/types.js").QueryObject<Omit<{
|
|
513
|
+
pageSize?: number | undefined;
|
|
514
|
+
page?: number | undefined;
|
|
515
|
+
programName?: string | null | undefined;
|
|
516
|
+
tags?: string[] | null | undefined;
|
|
517
|
+
mode?: "scan" | "fix" | null | undefined;
|
|
518
|
+
moduleId?: string[] | null | undefined;
|
|
519
|
+
programCreatedById?: string[] | null | undefined;
|
|
520
|
+
reportCreatedById?: string[] | null | undefined;
|
|
521
|
+
startDate?: string | undefined;
|
|
522
|
+
endDate?: string | undefined;
|
|
523
|
+
orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "programGroupName" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | null | undefined;
|
|
524
|
+
orderDirection?: "ASC" | "DESC" | null | undefined;
|
|
525
|
+
authorization: string;
|
|
526
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsDetailsResponse>;
|
|
527
|
+
/**
|
|
528
|
+
* Analytics Program Groups Details Download
|
|
529
|
+
*/
|
|
530
|
+
analyticsProgramGroupsDetailsDownload: import("../network/types.js").QueryObject<Omit<{
|
|
531
|
+
programName?: string | null | undefined;
|
|
532
|
+
tags?: string[] | null | undefined;
|
|
533
|
+
mode?: "scan" | "fix" | null | undefined;
|
|
534
|
+
moduleId?: string[] | null | undefined;
|
|
535
|
+
programCreatedById?: string[] | null | undefined;
|
|
536
|
+
reportCreatedById?: string[] | null | undefined;
|
|
537
|
+
startDate?: string | undefined;
|
|
538
|
+
endDate?: string | undefined;
|
|
539
|
+
orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "programGroupName" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | null | undefined;
|
|
540
|
+
orderDirection?: "ASC" | "DESC" | null | undefined;
|
|
541
|
+
extension?: "csv" | "xlsx" | undefined;
|
|
542
|
+
authorization: string;
|
|
543
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
544
|
+
/**
|
|
545
|
+
* Analytics Program Groups Details
|
|
546
|
+
*/
|
|
547
|
+
analyticsRepositoryDetails: import("../network/types.js").QueryObject<Omit<{
|
|
548
|
+
pageSize?: number | undefined;
|
|
549
|
+
page?: number | undefined;
|
|
550
|
+
repositoryUrl?: string | null | undefined;
|
|
551
|
+
tags?: string[] | null | undefined;
|
|
552
|
+
mode?: "scan" | "fix" | null | undefined;
|
|
553
|
+
moduleId?: string[] | null | undefined;
|
|
554
|
+
repositoryCreatedById?: string[] | null | undefined;
|
|
555
|
+
executedBy?: string[] | null | undefined;
|
|
556
|
+
startDate?: string | undefined;
|
|
557
|
+
endDate?: string | undefined;
|
|
558
|
+
orderBy?: "repositoryUrl" | "moduleName" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | "sourceBranch" | "targetBranch" | "moduleVersion" | "pullRequestLink" | "reportCreatedByEmail" | "repositoryCreatedByEmail" | "repositoryCreatedByName" | null | undefined;
|
|
559
|
+
orderDirection?: "ASC" | "DESC" | null | undefined;
|
|
560
|
+
authorization: string;
|
|
561
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryDetailedReportResponse>;
|
|
562
|
+
/**
|
|
563
|
+
* Analytics Program Groups Details Download
|
|
564
|
+
*/
|
|
565
|
+
analyticsRepositoryDetailsDownload: import("../network/types.js").QueryObject<Omit<{
|
|
566
|
+
repositoryUrl?: string | null | undefined;
|
|
567
|
+
tags?: string[] | null | undefined;
|
|
568
|
+
mode?: "scan" | "fix" | null | undefined;
|
|
569
|
+
moduleId?: string[] | null | undefined;
|
|
570
|
+
repositoryCreatedById?: string[] | null | undefined;
|
|
571
|
+
reportCreatedById?: string[] | null | undefined;
|
|
572
|
+
startDate?: string | undefined;
|
|
573
|
+
endDate?: string | undefined;
|
|
574
|
+
orderBy?: "repositoryUrl" | "moduleName" | "reportCreatedAt" | "reportCreatedByName" | "executionStartedAt" | "executionCompletedAt" | "totalFilesCount" | "analyzedFilesCount" | "issuesFilesCount" | "changedFilesCount" | "issuesCount" | "processingTimeSeconds" | "sourceBranch" | "targetBranch" | "moduleVersion" | "pullRequestLink" | "reportCreatedByEmail" | "repositoryCreatedByEmail" | "repositoryCreatedByName" | null | undefined;
|
|
575
|
+
orderDirection?: "ASC" | "DESC" | null | undefined;
|
|
576
|
+
extension?: "csv" | "xlsx" | undefined;
|
|
577
|
+
authorization: string;
|
|
578
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsRepositoryDetailedReportResponse>;
|
|
579
|
+
/**
|
|
580
|
+
* Analytics Program Groups Target Details
|
|
581
|
+
*/
|
|
582
|
+
analyticsProgramGroupsTargetDetails: import("../network/types.js").QueryObject<Omit<{
|
|
583
|
+
pageSize?: number | undefined;
|
|
584
|
+
page?: number | undefined;
|
|
585
|
+
programName?: string | null | undefined;
|
|
586
|
+
componentName?: string | null | undefined;
|
|
587
|
+
tags?: string[] | null | undefined;
|
|
588
|
+
mode?: "scan" | "fix" | null | undefined;
|
|
589
|
+
moduleId?: string[] | null | undefined;
|
|
590
|
+
reportCreatedById?: string[] | null | undefined;
|
|
591
|
+
startDate?: string | undefined;
|
|
592
|
+
endDate?: string | undefined;
|
|
593
|
+
orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "totalIssues" | "programGroupName" | "executionStartedAt" | "executionCompletedAt" | "changedFilesCount" | "componentAppName" | "componentName" | "componentType" | null | undefined;
|
|
594
|
+
orderDirection?: "ASC" | "DESC" | null | undefined;
|
|
595
|
+
authorization: string;
|
|
596
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/codeShift.js").AnalyticsProgramGroupsTargetDetailsResponse>;
|
|
597
|
+
/**
|
|
598
|
+
* Analytics Program Groups Target Details Download
|
|
599
|
+
*/
|
|
600
|
+
analyticsProgramGroupsTargetDetailsDownload: import("../network/types.js").QueryObject<Omit<{
|
|
601
|
+
programName?: string | null | undefined;
|
|
602
|
+
tags?: string[] | null | undefined;
|
|
603
|
+
mode?: "scan" | "fix" | null | undefined;
|
|
604
|
+
moduleId?: string[] | null | undefined;
|
|
605
|
+
componentName?: string | null | undefined;
|
|
606
|
+
reportCreatedById?: string[] | null | undefined;
|
|
607
|
+
startDate?: string | undefined;
|
|
608
|
+
endDate?: string | undefined;
|
|
609
|
+
orderBy?: "mode" | "moduleName" | "reportCreatedAt" | "totalIssues" | "programGroupName" | "executionStartedAt" | "executionCompletedAt" | "changedFilesCount" | "componentAppName" | "componentName" | "componentType" | null | undefined;
|
|
610
|
+
orderDirection?: "ASC" | "DESC" | null | undefined;
|
|
611
|
+
extension?: "csv" | "xlsx" | undefined;
|
|
612
|
+
authorization: string;
|
|
613
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, any>;
|
|
459
614
|
}
|
|
460
615
|
export declare const codeShiftClient: CodeShift;
|
|
461
616
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code-shift.d.ts","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"code-shift.d.ts","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { analyticsRepositoryLastReportStatusDownloadV1AnalyticsRepositoriesLastReportStatusDownloadGet, analyticsRepositoryLastReportStatusV1AnalyticsRepositoriesLastReportStatusGet, analyticsRepositoryUsageDownloadV1AnalyticsRepositoriesUsageDownloadGet, analyticsRepositoryUsageV1AnalyticsRepositoriesUsageGet, analyticsProgramGroupsLastReportStatusDownloadV1AnalyticsProgramGroupsLastReportStatusDownloadGet, analyticsProgramGroupsLastReportStatusV1AnalyticsProgramGroupsLastReportStatusGet, analyticsProgramGroupsUsageDownloadV1AnalyticsProgramGroupsUsageDownloadGet, analyticsProgramGroupsUsageV1AnalyticsProgramGroupsUsageGet, analyticsUserUsageDownloadV1AnalyticsUsersUsageDownloadGet, analyticsUserUsageV1AnalyticsUsersUsageGet, checkRoleRouteV1RolesRoleGet, createAccountSettingsV1SettingsPut, createIntegrationServiceV1IntegrationsPost, createModuleServiceV1ModulesPost, createProgramGroupServiceV1ProgramGroupsPost, createReposBatchServiceV1ReposBatchPost, createRepositoryServiceV1ReposPost, defaults, deleteIntegrationServiceV1IntegrationsIntegrationIdDelete, deleteProgramGroupServiceV1ProgramGroupsProgramGroupIdDelete, deleteRepositoryServiceV1ReposRepositoryIdDelete, dispatchModuleServiceV1ModulesDispatchesPost, downloadReportV1ReportsReportIdDownloadGet, downloadSearchReposScmServiceV1ReposSearchScmSearchRepoIdDownloadGet, generalReportSuccessAndErrorsV1AnalyticsReportsGeneralSuccessAndErrorsGet, getAccountSettingsV1SettingsGet, getIntegrationByIdServiceV1IntegrationsIntegrationIdGet, getProgramGroupByIdServiceV1ProgramGroupsProgramGroupIdGet, getReportPullRequestContentV1ReportsReportIdPullRequestGet, getReportV1ReportsReportIdGet, getRepositoryByIdServiceV1ReposRepositoryIdGet, getStatusSearchReposScmServiceV1ReposSearchScmSearchRepoIdStatusGet, listBranchesServiceV1ReposBranchesGet, listIntegrationServiceV1IntegrationsGet, listModulesServiceV1ModulesGet, listProgramGroupReportServiceV1ProgramGroupsProgramGroupIdReportsGet, listProgramGroupServiceV1ProgramGroupsGet, listRepositoryReportV1ReposRepositoryIdReportsGet, listRepositoryServiceV1ReposGet, listTagsServiceV1TagsGet, searchReposScmServiceV1ReposSearchScmGet, updateIntegrationServiceV1IntegrationsIntegrationIdPut, updateProgramGroupComponentsServiceV1ProgramGroupsProgramGroupIdComponentsPut, updateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut, updateRepositoryServiceV1ReposRepositoryIdPut, validateScmUrlServiceV1ReposValidateScmUrlPost, listUserServiceV1UsersGet, } from '../api/codeShift.js';
|
|
1
|
+
import { analyticsRepositoryLastReportStatusDownloadV1AnalyticsRepositoriesLastReportStatusDownloadGet, analyticsRepositoryLastReportStatusV1AnalyticsRepositoriesLastReportStatusGet, analyticsRepositoryUsageDownloadV1AnalyticsRepositoriesUsageDownloadGet, analyticsRepositoryUsageV1AnalyticsRepositoriesUsageGet, analyticsProgramGroupsLastReportStatusDownloadV1AnalyticsProgramGroupsLastReportStatusDownloadGet, analyticsProgramGroupsLastReportStatusV1AnalyticsProgramGroupsLastReportStatusGet, analyticsProgramGroupsUsageDownloadV1AnalyticsProgramGroupsUsageDownloadGet, analyticsProgramGroupsUsageV1AnalyticsProgramGroupsUsageGet, analyticsUserUsageDownloadV1AnalyticsUsersUsageDownloadGet, analyticsUserUsageV1AnalyticsUsersUsageGet, checkRoleRouteV1RolesRoleGet, createAccountSettingsV1SettingsPut, createIntegrationServiceV1IntegrationsPost, createModuleServiceV1ModulesPost, createProgramGroupServiceV1ProgramGroupsPost, createReposBatchServiceV1ReposBatchPost, createRepositoryServiceV1ReposPost, defaults, deleteIntegrationServiceV1IntegrationsIntegrationIdDelete, deleteProgramGroupServiceV1ProgramGroupsProgramGroupIdDelete, deleteRepositoryServiceV1ReposRepositoryIdDelete, dispatchModuleServiceV1ModulesDispatchesPost, downloadReportV1ReportsReportIdDownloadGet, downloadSearchReposScmServiceV1ReposSearchScmSearchRepoIdDownloadGet, generalReportSuccessAndErrorsV1AnalyticsReportsGeneralSuccessAndErrorsGet, getAccountSettingsV1SettingsGet, getIntegrationByIdServiceV1IntegrationsIntegrationIdGet, getProgramGroupByIdServiceV1ProgramGroupsProgramGroupIdGet, getReportPullRequestContentV1ReportsReportIdPullRequestGet, getReportV1ReportsReportIdGet, getRepositoryByIdServiceV1ReposRepositoryIdGet, getStatusSearchReposScmServiceV1ReposSearchScmSearchRepoIdStatusGet, listBranchesServiceV1ReposBranchesGet, listIntegrationServiceV1IntegrationsGet, listModulesServiceV1ModulesGet, listProgramGroupReportServiceV1ProgramGroupsProgramGroupIdReportsGet, listProgramGroupServiceV1ProgramGroupsGet, listRepositoryReportV1ReposRepositoryIdReportsGet, listRepositoryServiceV1ReposGet, listTagsServiceV1TagsGet, searchReposScmServiceV1ReposSearchScmGet, updateIntegrationServiceV1IntegrationsIntegrationIdPut, updateProgramGroupComponentsServiceV1ProgramGroupsProgramGroupIdComponentsPut, updateProgramGroupServiceV1ProgramGroupsProgramGroupIdPut, updateRepositoryServiceV1ReposRepositoryIdPut, validateScmUrlServiceV1ReposValidateScmUrlPost, listUserServiceV1UsersGet, analyticsProgramGroupsDetailsV1AnalyticsProgramGroupsDetailsGet, analyticsProgramGroupsDetailsDownloadV1AnalyticsProgramGroupsDetailsDownloadGet, getModuleInputsV1ModulesModuleIdInputsGet, analyticsRepositoryDetailedReportDownloadV1AnalyticsRepositoriesDetailsDownloadGet, analyticsRepositoryDetailedReportV1AnalyticsRepositoriesDetailsGet, listRepositoryDownloadServiceV1ReposDownloadGet, listProgramGroupDownloadServiceV1ProgramGroupsDownloadGet, getModuleV1ModulesModuleIdGet, analyticsProgramGroupsTargetDetailsV1AnalyticsProgramGroupsTargetDetailsGet, analyticsProgramGroupsTargetDetailsDownloadV1AnalyticsProgramGroupsTargetDetailsDownloadGet, searchReposScmServiceV2ReposSearchScmPost, } from '../api/codeShift.js';
|
|
2
2
|
import { DefaultAPIError } from '../error/DefaultAPIError.js';
|
|
3
3
|
import { codeShiftDictionary } from '../error/dictionary/code-shift.js';
|
|
4
4
|
import { ReactQueryNetworkClient } from '../network/ReactQueryNetworkClient.js';
|
|
@@ -61,6 +61,15 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
61
61
|
writable: true,
|
|
62
62
|
value: this.mutation(removeAuthorizationParam(updateRepositoryServiceV1ReposRepositoryIdPut))
|
|
63
63
|
});
|
|
64
|
+
/**
|
|
65
|
+
* List Repository Download Service
|
|
66
|
+
*/
|
|
67
|
+
Object.defineProperty(this, "repositoryDownload", {
|
|
68
|
+
enumerable: true,
|
|
69
|
+
configurable: true,
|
|
70
|
+
writable: true,
|
|
71
|
+
value: this.query(removeAuthorizationParam(listRepositoryDownloadServiceV1ReposDownloadGet))
|
|
72
|
+
});
|
|
64
73
|
/**
|
|
65
74
|
* Get a report for a pull request by id.
|
|
66
75
|
*/
|
|
@@ -79,6 +88,24 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
79
88
|
writable: true,
|
|
80
89
|
value: this.query(removeAuthorizationParam(listModulesServiceV1ModulesGet))
|
|
81
90
|
});
|
|
91
|
+
/**
|
|
92
|
+
* Gets module by id.
|
|
93
|
+
*/
|
|
94
|
+
Object.defineProperty(this, "module", {
|
|
95
|
+
enumerable: true,
|
|
96
|
+
configurable: true,
|
|
97
|
+
writable: true,
|
|
98
|
+
value: this.query(removeAuthorizationParam(getModuleV1ModulesModuleIdGet))
|
|
99
|
+
});
|
|
100
|
+
/**
|
|
101
|
+
* Gets module inputs.
|
|
102
|
+
*/
|
|
103
|
+
Object.defineProperty(this, "modulesInputs", {
|
|
104
|
+
enumerable: true,
|
|
105
|
+
configurable: true,
|
|
106
|
+
writable: true,
|
|
107
|
+
value: this.query(removeAuthorizationParam(getModuleInputsV1ModulesModuleIdInputsGet))
|
|
108
|
+
});
|
|
82
109
|
/**
|
|
83
110
|
* Creates a module.
|
|
84
111
|
*/
|
|
@@ -169,6 +196,15 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
169
196
|
writable: true,
|
|
170
197
|
value: this.mutation(removeAuthorizationParam(downloadSearchReposScmServiceV1ReposSearchScmSearchRepoIdDownloadGet))
|
|
171
198
|
});
|
|
199
|
+
/**
|
|
200
|
+
* Searches for repositories (v2)
|
|
201
|
+
*/
|
|
202
|
+
Object.defineProperty(this, "searchRepositoryV2", {
|
|
203
|
+
enumerable: true,
|
|
204
|
+
configurable: true,
|
|
205
|
+
writable: true,
|
|
206
|
+
value: this.mutation(removeAuthorizationParam(searchReposScmServiceV2ReposSearchScmPost))
|
|
207
|
+
});
|
|
172
208
|
/**
|
|
173
209
|
* Validate if the user has permission.
|
|
174
210
|
* We do not use opa in this api, so this is the fn needed to check permissions.
|
|
@@ -287,6 +323,15 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
287
323
|
writable: true,
|
|
288
324
|
value: this.mutation(removeAuthorizationParam(deleteProgramGroupServiceV1ProgramGroupsProgramGroupIdDelete))
|
|
289
325
|
});
|
|
326
|
+
/**
|
|
327
|
+
* List Program Group Download Service
|
|
328
|
+
*/
|
|
329
|
+
Object.defineProperty(this, "programGroupDownload", {
|
|
330
|
+
enumerable: true,
|
|
331
|
+
configurable: true,
|
|
332
|
+
writable: true,
|
|
333
|
+
value: this.query(removeAuthorizationParam(listProgramGroupDownloadServiceV1ProgramGroupsDownloadGet))
|
|
334
|
+
});
|
|
290
335
|
/**
|
|
291
336
|
* Gets list of tags.
|
|
292
337
|
*/
|
|
@@ -360,13 +405,13 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
360
405
|
value: this.query(removeAuthorizationParam(analyticsProgramGroupsLastReportStatusV1AnalyticsProgramGroupsLastReportStatusGet))
|
|
361
406
|
});
|
|
362
407
|
/**
|
|
363
|
-
* Analytics Program Groups
|
|
408
|
+
* Analytics Program Groups Last Report Status Download
|
|
364
409
|
*/
|
|
365
|
-
Object.defineProperty(this, "
|
|
410
|
+
Object.defineProperty(this, "analyticsProgramGroupsLastReportStatusDownload", {
|
|
366
411
|
enumerable: true,
|
|
367
412
|
configurable: true,
|
|
368
413
|
writable: true,
|
|
369
|
-
value: this.query(removeAuthorizationParam(
|
|
414
|
+
value: this.query(removeAuthorizationParam(analyticsProgramGroupsLastReportStatusDownloadV1AnalyticsProgramGroupsLastReportStatusDownloadGet))
|
|
370
415
|
});
|
|
371
416
|
/**
|
|
372
417
|
* Analytics User Usage
|
|
@@ -396,13 +441,13 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
396
441
|
value: this.query(removeAuthorizationParam(analyticsRepositoryUsageDownloadV1AnalyticsRepositoriesUsageDownloadGet))
|
|
397
442
|
});
|
|
398
443
|
/**
|
|
399
|
-
* Analytics Program Groups
|
|
444
|
+
* Analytics Program Groups Usage
|
|
400
445
|
*/
|
|
401
|
-
Object.defineProperty(this, "
|
|
446
|
+
Object.defineProperty(this, "analyticsProgramGroupsUsage", {
|
|
402
447
|
enumerable: true,
|
|
403
448
|
configurable: true,
|
|
404
449
|
writable: true,
|
|
405
|
-
value: this.query(removeAuthorizationParam(
|
|
450
|
+
value: this.query(removeAuthorizationParam(analyticsProgramGroupsUsageV1AnalyticsProgramGroupsUsageGet))
|
|
406
451
|
});
|
|
407
452
|
/**
|
|
408
453
|
* Analytics Program Groups Usage Download
|
|
@@ -422,6 +467,60 @@ class CodeShift extends ReactQueryNetworkClient {
|
|
|
422
467
|
writable: true,
|
|
423
468
|
value: this.query(removeAuthorizationParam(listUserServiceV1UsersGet))
|
|
424
469
|
});
|
|
470
|
+
/**
|
|
471
|
+
* Analytics Program Groups Details
|
|
472
|
+
*/
|
|
473
|
+
Object.defineProperty(this, "analyticsProgramGroupsDetails", {
|
|
474
|
+
enumerable: true,
|
|
475
|
+
configurable: true,
|
|
476
|
+
writable: true,
|
|
477
|
+
value: this.query(removeAuthorizationParam(analyticsProgramGroupsDetailsV1AnalyticsProgramGroupsDetailsGet))
|
|
478
|
+
});
|
|
479
|
+
/**
|
|
480
|
+
* Analytics Program Groups Details Download
|
|
481
|
+
*/
|
|
482
|
+
Object.defineProperty(this, "analyticsProgramGroupsDetailsDownload", {
|
|
483
|
+
enumerable: true,
|
|
484
|
+
configurable: true,
|
|
485
|
+
writable: true,
|
|
486
|
+
value: this.query(removeAuthorizationParam(analyticsProgramGroupsDetailsDownloadV1AnalyticsProgramGroupsDetailsDownloadGet))
|
|
487
|
+
});
|
|
488
|
+
/**
|
|
489
|
+
* Analytics Program Groups Details
|
|
490
|
+
*/
|
|
491
|
+
Object.defineProperty(this, "analyticsRepositoryDetails", {
|
|
492
|
+
enumerable: true,
|
|
493
|
+
configurable: true,
|
|
494
|
+
writable: true,
|
|
495
|
+
value: this.query(removeAuthorizationParam(analyticsRepositoryDetailedReportV1AnalyticsRepositoriesDetailsGet))
|
|
496
|
+
});
|
|
497
|
+
/**
|
|
498
|
+
* Analytics Program Groups Details Download
|
|
499
|
+
*/
|
|
500
|
+
Object.defineProperty(this, "analyticsRepositoryDetailsDownload", {
|
|
501
|
+
enumerable: true,
|
|
502
|
+
configurable: true,
|
|
503
|
+
writable: true,
|
|
504
|
+
value: this.query(removeAuthorizationParam(analyticsRepositoryDetailedReportDownloadV1AnalyticsRepositoriesDetailsDownloadGet))
|
|
505
|
+
});
|
|
506
|
+
/**
|
|
507
|
+
* Analytics Program Groups Target Details
|
|
508
|
+
*/
|
|
509
|
+
Object.defineProperty(this, "analyticsProgramGroupsTargetDetails", {
|
|
510
|
+
enumerable: true,
|
|
511
|
+
configurable: true,
|
|
512
|
+
writable: true,
|
|
513
|
+
value: this.query(removeAuthorizationParam(analyticsProgramGroupsTargetDetailsV1AnalyticsProgramGroupsTargetDetailsGet))
|
|
514
|
+
});
|
|
515
|
+
/**
|
|
516
|
+
* Analytics Program Groups Target Details Download
|
|
517
|
+
*/
|
|
518
|
+
Object.defineProperty(this, "analyticsProgramGroupsTargetDetailsDownload", {
|
|
519
|
+
enumerable: true,
|
|
520
|
+
configurable: true,
|
|
521
|
+
writable: true,
|
|
522
|
+
value: this.query(removeAuthorizationParam(analyticsProgramGroupsTargetDetailsDownloadV1AnalyticsProgramGroupsTargetDetailsDownloadGet))
|
|
523
|
+
});
|
|
425
524
|
}
|
|
426
525
|
buildStackSpotError(error) {
|
|
427
526
|
return new DefaultAPIError(error.data, error.status, codeShiftDictionary, error.headers);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"code-shift.js","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,6FAA6F,EAC7F,6EAA6E,EAC7E,uEAAuE,EACvE,uDAAuD,EACvD,iGAAiG,EACjG,iFAAiF,EACjF,2EAA2E,EAC3E,2DAA2D,EAC3D,0DAA0D,EAC1D,0CAA0C,EAC1C,4BAA4B,EAC5B,kCAAkC,EAClC,0CAA0C,EAC1C,gCAAgC,EAChC,4CAA4C,EAC5C,uCAAuC,EACvC,kCAAkC,EAClC,QAAQ,EACR,yDAAyD,EACzD,4DAA4D,EAC5D,gDAAgD,EAChD,4CAA4C,EAC5C,0CAA0C,EAC1C,oEAAoE,EACpE,yEAAyE,EACzE,+BAA+B,EAC/B,uDAAuD,EACvD,0DAA0D,EAC1D,0DAA0D,EAC1D,6BAA6B,EAC7B,8CAA8C,EAC9C,mEAAmE,EACnE,qCAAqC,EACrC,uCAAuC,EACvC,8BAA8B,EAC9B,oEAAoE,EACpE,yCAAyC,EACzC,iDAAiD,EACjD,+BAA+B,EAC/B,wBAAwB,EACxB,wCAAwC,EACxC,sDAAsD,EACtD,6EAA6E,EAC7E,yDAAyD,EACzD,6CAA6C,EAC7C,8CAA8C,EAC9C,yBAAyB,
|
|
1
|
+
{"version":3,"file":"code-shift.js","sourceRoot":"","sources":["../../src/client/code-shift.ts"],"names":[],"mappings":"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"}
|
|
@@ -230,6 +230,15 @@ declare class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
230
230
|
xUsername?: string | null | undefined;
|
|
231
231
|
authorization: string;
|
|
232
232
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
233
|
+
/**
|
|
234
|
+
* Get Indexed Files
|
|
235
|
+
*/
|
|
236
|
+
listIndexedProjectFiles: import("../network/types.js").QueryObject<Omit<{
|
|
237
|
+
ksSlug: string;
|
|
238
|
+
xAccountId?: string | null | undefined;
|
|
239
|
+
xUsername?: string | null | undefined;
|
|
240
|
+
authorization: string;
|
|
241
|
+
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/dataIntegration.js").KnowledgeSourceFilesIngestedResponse[]>;
|
|
233
242
|
}
|
|
234
243
|
export declare const dataIntegrationClient: DataIntegrationClient;
|
|
235
244
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-integration.d.ts","sourceRoot":"","sources":["../../src/client/data-integration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAC7C,OAAO,EAML,cAAc,
|
|
1
|
+
{"version":3,"file":"data-integration.d.ts","sourceRoot":"","sources":["../../src/client/data-integration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAA;AAC7C,OAAO,EAML,cAAc,EAoBf,MAAM,wBAAwB,CAAA;AAI/B,OAAO,EAAE,iBAAiB,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oCAAoC,CAAA;AAI5E,cAAM,qBAAsB,SAAQ,uBAAuB;;IAKzD,SAAS,CAAC,mBAAmB,CAAC,KAAK,EAAE,SAAS,GAAG,iBAAiB;IAGlE;;OAEG;IACH,uBAAuB;;;;;+HAA+E;IACtG;;OAEG;IACH,2BAA2B;;;;;8HAAuF;IAClH;;;OAGG;IACH,oBAAoB;;;;;;wEAAkG;IACtH;;OAEG;IACH,2BAA2B;;;;;;wEAAwG;IACnI;;OAEG;IACH,SAAS;;;;;;wEAA8F;IACvG;;OAEG;IACH,sBAAsB,CACpB,YAAY,EAAE,MAAM,EACpB,aAAa,EAAE,MAAM,EACrB,OAAO,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,WAAW,CAAA;KAAE;IAapC;;OAEG;IACH,gBAAgB;;;;;;wEAAqH;IACrI;;OAEG;IACH,gBAAgB;;;;;;;mIAAoE;IACpF;;OAEG;IACH,0BAA0B;;;;;4EAAyF;IACnH;;OAEG;IACH,6BAA6B;;;;;4EAA8F;IAC3H;;OAEG;IACH,oBAAoB;;;;;;;;+HAAkF;IACtG;;OAEG;IACH,sBAAsB;;;;;;6HAAyF;IAG/G,WAAW;eAE+B,IAAI,EAAE;cAAQ,cAAc;;yEAoBpE;IAEF;;MAEE;IACF,6BAA6B;;;;;+HACiC;IAE9D;;QAEI;IACJ,qBAAqB;;;;;wEAA0E;IAE/F;;QAEI;IACJ,6BAA6B;;;;;+HAA6E;IAE1G;;QAEI;IACJ,yBAAyB;;;;;6HAAwE;IAEjG;;OAEG;IACH,aAAa;;;;;qIAAqE;IAClF;;OAEG;IACH,qBAAqB;;;;;;4EAA+E;IACpG;;OAEG;IACH,oBAAoB;;;;;4EAAkF;IACtG;;OAEG;IACH,sBAAsB;;;;;;4EAAsF;IAC5G;;OAEG;IACH,mBAAmB;;;;;;4EAAgF;IACnG;;OAEG;IACH,kCAAkC;;;;;;4EAAyF;IAC3H;;OAEG;IACH,wCAAwC;;;;;;4EAAiG;IACzI;;OAEG;IACH,uBAAuB;;;;;4IAAwF;CAEhH;AAED,eAAO,MAAM,qBAAqB,uBAA8B,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { addFavoriteV1KnowledgeSourcesSlugFavoritePost, createKsV1KnowledgeSourcesPost, defaults, deleteFavoriteV1KnowledgeSourcesSlugFavoriteDelete, deleteKoByIdV1KnowledgeSourcesKsSlugObjectsKoIdDelete, findKoByIdV1KnowledgeSourcesKsSlugObjectsKoIdGet, findKsV1KnowledgeSourcesSlugGet, forkKsV1KnowledgeSourcesSlugForkPost, getFileUploadStatusV1FileUploadFileUploadIdGet, getUploadFormV1FileUploadFormPost, getUploadFormV2V2FileUploadFormPost, listKosV1KnowledgeSourcesKsSlugObjectsGet, listKsV1KnowledgeSourcesGet, publishKsV1KnowledgeSourcesSlugPublishPost, resetKosV1KnowledgeSourcesKsSlugObjectsDelete, saveChunkedFilesDeprecatedV1FileUploadFileUploadIdPost, saveChunkedFilesV1FileUploadFileUploadIdKnowledgeObjectsPost, searchKsV1KnowledgeSourcesSearchPost, searchObjectsV1SearchPost, shareKsV1KnowledgeSourcesSlugSharePost, splitUploadedFilePreviewV1FileUploadFileUploadIdSplitPreviewSplitStrategyGet, splitUploadedFileV1FileUploadFileUploadIdSplitPost, updateKsV1KnowledgeSourcesSlugPatch, } from '../api/dataIntegration.js';
|
|
1
|
+
import { addFavoriteV1KnowledgeSourcesSlugFavoritePost, createKsV1KnowledgeSourcesPost, defaults, deleteFavoriteV1KnowledgeSourcesSlugFavoriteDelete, deleteKoByIdV1KnowledgeSourcesKsSlugObjectsKoIdDelete, findKoByIdV1KnowledgeSourcesKsSlugObjectsKoIdGet, findKsV1KnowledgeSourcesSlugGet, forkKsV1KnowledgeSourcesSlugForkPost, getFileUploadStatusV1FileUploadFileUploadIdGet, getIndexedFilesV1KnowledgeSourcesKsSlugFilesGet, getUploadFormV1FileUploadFormPost, getUploadFormV2V2FileUploadFormPost, listKosV1KnowledgeSourcesKsSlugObjectsGet, listKsV1KnowledgeSourcesGet, publishKsV1KnowledgeSourcesSlugPublishPost, resetKosV1KnowledgeSourcesKsSlugObjectsDelete, saveChunkedFilesDeprecatedV1FileUploadFileUploadIdPost, saveChunkedFilesV1FileUploadFileUploadIdKnowledgeObjectsPost, searchKsV1KnowledgeSourcesSearchPost, searchObjectsV1SearchPost, shareKsV1KnowledgeSourcesSlugSharePost, splitUploadedFilePreviewV1FileUploadFileUploadIdSplitPreviewSplitStrategyGet, splitUploadedFileV1FileUploadFileUploadIdSplitPost, updateKsV1KnowledgeSourcesSlugPatch, } from '../api/dataIntegration.js';
|
|
2
2
|
import { DefaultAPIError } from '../error/DefaultAPIError.js';
|
|
3
3
|
import { baseDictionary } from '../error/dictionary/base.js';
|
|
4
4
|
import { FileUploadError } from '../error/FileUploadError.js';
|
|
@@ -236,6 +236,15 @@ class DataIntegrationClient extends ReactQueryNetworkClient {
|
|
|
236
236
|
writable: true,
|
|
237
237
|
value: this.mutation(removeAuthorizationParam(deleteKoByIdV1KnowledgeSourcesKsSlugObjectsKoIdDelete))
|
|
238
238
|
});
|
|
239
|
+
/**
|
|
240
|
+
* Get Indexed Files
|
|
241
|
+
*/
|
|
242
|
+
Object.defineProperty(this, "listIndexedProjectFiles", {
|
|
243
|
+
enumerable: true,
|
|
244
|
+
configurable: true,
|
|
245
|
+
writable: true,
|
|
246
|
+
value: this.query(removeAuthorizationParam(getIndexedFilesV1KnowledgeSourcesKsSlugFilesGet))
|
|
247
|
+
});
|
|
239
248
|
}
|
|
240
249
|
buildStackSpotError(error) {
|
|
241
250
|
return new DefaultAPIError(error.data, error.status, baseDictionary, error.headers);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-integration.js","sourceRoot":"","sources":["../../src/client/data-integration.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"data-integration.js","sourceRoot":"","sources":["../../src/client/data-integration.ts"],"names":[],"mappings":"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"}
|