@harnessio/react-sei-panorama-service-client 0.25.21 → 0.25.22
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/dist/sei-panorama-service/src/services/index.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationSummary.d.ts +3 -16
- package/dist/sei-panorama-service/src/services/schemas/TeamFilterIntegrationSummary.d.ts +21 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamFilterIntegrationSummary.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamFiltersResponseDto.d.ts +2 -2
- package/package.json +1 -1
|
@@ -681,6 +681,7 @@ export type { TeamDeveloperDto } from './schemas/TeamDeveloperDto';
|
|
|
681
681
|
export type { TeamDeveloperSearchParams } from './schemas/TeamDeveloperSearchParams';
|
|
682
682
|
export type { TeamDevelopersDto } from './schemas/TeamDevelopersDto';
|
|
683
683
|
export type { TeamFilter } from './schemas/TeamFilter';
|
|
684
|
+
export type { TeamFilterIntegrationSummary } from './schemas/TeamFilterIntegrationSummary';
|
|
684
685
|
export type { TeamFiltersResponseDto } from './schemas/TeamFiltersResponseDto';
|
|
685
686
|
export type { TeamHierarchyDto } from './schemas/TeamHierarchyDto';
|
|
686
687
|
export type { TeamInfo } from './schemas/TeamInfo';
|
|
@@ -1,21 +1,8 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Summary of a team integration
|
|
3
|
-
*/
|
|
4
1
|
export interface IntegrationSummary {
|
|
2
|
+
applicationType?: string;
|
|
5
3
|
/**
|
|
6
|
-
* Integration ID
|
|
7
4
|
* @format int32
|
|
8
|
-
* @example 100
|
|
9
5
|
*/
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
* Integration name
|
|
13
|
-
* @example "GitHub Enterprise"
|
|
14
|
-
*/
|
|
15
|
-
integration_name?: string;
|
|
16
|
-
/**
|
|
17
|
-
* Integration type
|
|
18
|
-
* @example "GITHUB"
|
|
19
|
-
*/
|
|
20
|
-
integration_type?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
|
|
6
|
+
integrationId?: number;
|
|
7
|
+
name?: string;
|
|
21
8
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Summary of a team integration filters
|
|
3
|
+
*/
|
|
4
|
+
export interface TeamFilterIntegrationSummary {
|
|
5
|
+
/**
|
|
6
|
+
* Integration ID
|
|
7
|
+
* @format int32
|
|
8
|
+
* @example 100
|
|
9
|
+
*/
|
|
10
|
+
integration_id?: number;
|
|
11
|
+
/**
|
|
12
|
+
* Integration name
|
|
13
|
+
* @example "GitHub Enterprise"
|
|
14
|
+
*/
|
|
15
|
+
integration_name?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Integration type
|
|
18
|
+
* @example "GITHUB"
|
|
19
|
+
*/
|
|
20
|
+
integration_type?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
|
|
21
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { BaTeamCategoryDefinition } from '../schemas/BaTeamCategoryDefinition';
|
|
2
2
|
import type { TeamInsightConfigDto } from '../schemas/TeamInsightConfigDto';
|
|
3
3
|
import type { SimpleFilter } from '../schemas/SimpleFilter';
|
|
4
|
-
import type {
|
|
4
|
+
import type { TeamFilterIntegrationSummary } from '../schemas/TeamFilterIntegrationSummary';
|
|
5
5
|
/**
|
|
6
6
|
* Complete filter definitions and configurations for a team
|
|
7
7
|
*/
|
|
@@ -35,7 +35,7 @@ export interface TeamFiltersResponseDto {
|
|
|
35
35
|
/**
|
|
36
36
|
* Integrations configured for this team
|
|
37
37
|
*/
|
|
38
|
-
team_integrations?:
|
|
38
|
+
team_integrations?: TeamFilterIntegrationSummary[];
|
|
39
39
|
/**
|
|
40
40
|
* Team reference identifier
|
|
41
41
|
* @format int32
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.22",
|
|
4
4
|
"description": "Harness React sei panorama service client - SEI Panorama APIs integrated with react hooks for Panorama project",
|
|
5
5
|
"author": "Harness Inc",
|
|
6
6
|
"license": "MIT",
|