@harnessio/react-sei-panorama-service-client 0.25.2 → 0.25.4
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/hooks/useAiSummaryControllerGenerateSummaryQuery.d.ts +0 -1
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamIntegrationFiltersQuery.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/AiSummaryRequestDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/DoraLttcMttrMetric.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/DrillDownResponseDtoObject.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyProfileEvent.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/FilterValuesRequestDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/Integration.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/IntegrationResponseDto.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/schemas/MttrDrillDownResponseDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/MttrMetric.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/SummarySection.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/TeamFilter.d.ts +1 -1
- package/package.json +1 -1
package/dist/sei-panorama-service/src/services/hooks/useAiSummaryControllerGenerateSummaryQuery.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ import type { AiSummaryRequestDto } from '../schemas/AiSummaryRequestDto';
|
|
|
5
5
|
import type { ResponseWithPagination } from '../helpers';
|
|
6
6
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
7
|
export interface AiSummaryControllerGenerateSummaryQueryQueryParams {
|
|
8
|
-
account: string;
|
|
9
8
|
projectIdentifier: string;
|
|
10
9
|
orgIdentifier: string;
|
|
11
10
|
}
|
|
@@ -9,7 +9,7 @@ export interface TeamsControllerGetTeamIntegrationFiltersQueryPathParams {
|
|
|
9
9
|
teamRefId: number;
|
|
10
10
|
}
|
|
11
11
|
export interface TeamsControllerGetTeamIntegrationFiltersQueryQueryParams {
|
|
12
|
-
integrationType?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM';
|
|
12
|
+
integrationType?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
|
|
13
13
|
}
|
|
14
14
|
export type TeamsControllerGetTeamIntegrationFiltersOkResponse = ResponseWithPagination<GroupedTeamFiltersResponseDto>;
|
|
15
15
|
export type TeamsControllerGetTeamIntegrationFiltersErrorResponse = GroupedTeamFiltersResponseDto;
|
|
@@ -2,7 +2,7 @@ import type { DataPoint } from '../schemas/DataPoint';
|
|
|
2
2
|
import type { RatingDto } from '../schemas/RatingDto';
|
|
3
3
|
import type { Stage } from '../schemas/Stage';
|
|
4
4
|
export interface DoraLttcMttrMetric {
|
|
5
|
-
basedOn?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM';
|
|
5
|
+
basedOn?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
|
|
6
6
|
dataPoints?: DataPoint[];
|
|
7
7
|
/**
|
|
8
8
|
* @format date-time
|
|
@@ -4,7 +4,7 @@ export interface DrillDownResponseDtoObject {
|
|
|
4
4
|
* @format int32
|
|
5
5
|
*/
|
|
6
6
|
count?: number;
|
|
7
|
-
integrationType?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM';
|
|
7
|
+
integrationType?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
|
|
8
8
|
pagination?: PaginationInfo;
|
|
9
9
|
records?: Array<{
|
|
10
10
|
[key: string]: any;
|
|
@@ -11,7 +11,7 @@ export interface FilterValuesRequestDto {
|
|
|
11
11
|
/**
|
|
12
12
|
* Filter key to get values for (used when isCustom = false)
|
|
13
13
|
*/
|
|
14
|
-
filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORGANIZATION' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
|
|
14
|
+
filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORGANIZATION' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SNYK_BRANCH' | 'SNYK_ENVIRONMENT' | 'SNYK_FILE_PATH' | 'SNYK_MONOREPO_PATH' | 'SNYK_ORG_ID' | 'SNYK_PROJECT_TAG' | 'SNYK_REPOSITORY' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM' | 'WIZ_CLOUD_ACCOUNT_ID' | 'WIZ_LANDING_ZONE_NAME' | 'WIZ_PROJECT_ID' | 'WIZ_REGION' | 'WIZ_RESOURCE_TAG' | 'WIZ_RESOURCE_TYPE';
|
|
15
15
|
/**
|
|
16
16
|
* Integration ID
|
|
17
17
|
*/
|
|
@@ -5,7 +5,7 @@ export interface IntegrationResponseDto {
|
|
|
5
5
|
/**
|
|
6
6
|
* Application type
|
|
7
7
|
*/
|
|
8
|
-
applicationType?: 'ADO_BOARDS' | 'ADO_PIPELINES' | 'ADO_REPOS' | 'BITBUCKET' | 'BITBUCKET_SERVER' | 'CUSTOM' | 'GITHUB' | 'GITHUB_ACTIONS' | 'GITLAB' | 'HARNESSCODE' | 'HARNESSNG' | 'HARNESS_CD' | 'HARNESS_CI' | 'JENKINS' | 'JIRA';
|
|
8
|
+
applicationType?: 'ADO_BOARDS' | 'ADO_PIPELINES' | 'ADO_REPOS' | 'BITBUCKET' | 'BITBUCKET_SERVER' | 'CUSTOM' | 'GITHUB' | 'GITHUB_ACTIONS' | 'GITLAB' | 'HARNESSCODE' | 'HARNESSNG' | 'HARNESS_CD' | 'HARNESS_CI' | 'JENKINS' | 'JIRA' | 'SNYK' | 'WIZ';
|
|
9
9
|
/**
|
|
10
10
|
* Integration ID
|
|
11
11
|
* @format int32
|
|
@@ -14,7 +14,7 @@ export interface IntegrationResponseDto {
|
|
|
14
14
|
/**
|
|
15
15
|
* Integration type
|
|
16
16
|
*/
|
|
17
|
-
integrationType?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM';
|
|
17
|
+
integrationType?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
|
|
18
18
|
/**
|
|
19
19
|
* Integration name
|
|
20
20
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { MttrDataPoint } from '../schemas/MttrDataPoint';
|
|
2
2
|
import type { RatingDto } from '../schemas/RatingDto';
|
|
3
3
|
export interface MttrMetric {
|
|
4
|
-
basedOn?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM';
|
|
4
|
+
basedOn?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM' | 'SECURITY';
|
|
5
5
|
dataPoints?: MttrDataPoint[];
|
|
6
6
|
/**
|
|
7
7
|
* @format date-time
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export interface SummarySection {
|
|
2
|
-
name?:
|
|
2
|
+
name?: string;
|
|
3
3
|
summary?: string;
|
|
4
4
|
}
|
|
@@ -7,7 +7,7 @@ export interface TeamFilter {
|
|
|
7
7
|
applicableMetrics?: Array<'AVG_TIME_TO_FIRST_COMMENT' | 'BA' | 'CFR' | 'CODING_DAYS' | 'DF' | 'LINES_OF_CODE' | 'LTTC' | 'MTTR' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'SPRINT_INSIGHTS' | 'WORK_COMPLETED'>;
|
|
8
8
|
customFilterId?: string;
|
|
9
9
|
customFilterKey?: string;
|
|
10
|
-
filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORGANIZATION' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
|
|
10
|
+
filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORGANIZATION' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SNYK_BRANCH' | 'SNYK_ENVIRONMENT' | 'SNYK_FILE_PATH' | 'SNYK_MONOREPO_PATH' | 'SNYK_ORG_ID' | 'SNYK_PROJECT_TAG' | 'SNYK_REPOSITORY' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM' | 'WIZ_CLOUD_ACCOUNT_ID' | 'WIZ_LANDING_ZONE_NAME' | 'WIZ_PROJECT_ID' | 'WIZ_REGION' | 'WIZ_RESOURCE_TAG' | 'WIZ_RESOURCE_TYPE';
|
|
11
11
|
/**
|
|
12
12
|
* @format int32
|
|
13
13
|
*/
|
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.4",
|
|
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",
|