@harnessio/react-sei-panorama-service-client 0.31.7 → 0.31.8
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/useAiEngineeringControllerGetProductivityDrilldownQuery.d.ts +55 -0
- package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetProductivityDrilldownQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpsertDeveloperIdentitiesMutation.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsStatsControllerGetOpenVulnerabilitiesBreakdownQuery.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsStatsControllerGetSecurityStatsDrilldownQuery.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/index.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/index.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/AiEngineeringImpactDrilldownResponseObject.d.ts +19 -0
- package/dist/sei-panorama-service/src/services/schemas/AiEngineeringImpactDrilldownResponseObject.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ApiResponseAiEngineeringImpactDrilldownResponseObject.d.ts +23 -0
- package/dist/sei-panorama-service/src/services/schemas/ApiResponseAiEngineeringImpactDrilldownResponseObject.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/FilterValuesRequestDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/SimpleFilter.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/TeamFilter.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ApiResponseAiEngineeringImpactDrilldownResponseObject } from '../schemas/ApiResponseAiEngineeringImpactDrilldownResponseObject';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface AiEngineeringControllerGetProductivityDrilldownQueryPathParams {
|
|
6
|
+
metric: string;
|
|
7
|
+
}
|
|
8
|
+
export interface AiEngineeringControllerGetProductivityDrilldownQueryQueryParams {
|
|
9
|
+
account: string;
|
|
10
|
+
schema: string;
|
|
11
|
+
orgIdentifier?: string;
|
|
12
|
+
projectIdentifier?: string;
|
|
13
|
+
routingId?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @format int32
|
|
16
|
+
*/
|
|
17
|
+
orgTreeId?: number;
|
|
18
|
+
teamRefId?: string;
|
|
19
|
+
start_date: string;
|
|
20
|
+
end_date: string;
|
|
21
|
+
dimensions: string;
|
|
22
|
+
assistant?: string;
|
|
23
|
+
sort_by?: string;
|
|
24
|
+
order?: string;
|
|
25
|
+
/**
|
|
26
|
+
* @format int32
|
|
27
|
+
*/
|
|
28
|
+
limit?: number;
|
|
29
|
+
/**
|
|
30
|
+
* @format int32
|
|
31
|
+
*/
|
|
32
|
+
offset?: number;
|
|
33
|
+
/**
|
|
34
|
+
* @example "WEEKLY"
|
|
35
|
+
*/
|
|
36
|
+
granularity?: string;
|
|
37
|
+
/**
|
|
38
|
+
* @example "java"
|
|
39
|
+
*/
|
|
40
|
+
language?: string;
|
|
41
|
+
/**
|
|
42
|
+
* @example "senior_engineer"
|
|
43
|
+
*/
|
|
44
|
+
role?: string;
|
|
45
|
+
}
|
|
46
|
+
export type AiEngineeringControllerGetProductivityDrilldownOkResponse = ResponseWithPagination<ApiResponseAiEngineeringImpactDrilldownResponseObject>;
|
|
47
|
+
export type AiEngineeringControllerGetProductivityDrilldownErrorResponse = unknown;
|
|
48
|
+
export interface AiEngineeringControllerGetProductivityDrilldownProps extends AiEngineeringControllerGetProductivityDrilldownQueryPathParams, Omit<FetcherOptions<AiEngineeringControllerGetProductivityDrilldownQueryQueryParams, unknown>, 'url'> {
|
|
49
|
+
queryParams: AiEngineeringControllerGetProductivityDrilldownQueryQueryParams;
|
|
50
|
+
}
|
|
51
|
+
export declare function aiEngineeringControllerGetProductivityDrilldown(props: AiEngineeringControllerGetProductivityDrilldownProps): Promise<AiEngineeringControllerGetProductivityDrilldownOkResponse>;
|
|
52
|
+
/**
|
|
53
|
+
* Get productivity metric drilldown by PRs or work items
|
|
54
|
+
*/
|
|
55
|
+
export declare function useAiEngineeringControllerGetProductivityDrilldownQuery(props: AiEngineeringControllerGetProductivityDrilldownProps, options?: Omit<UseQueryOptions<AiEngineeringControllerGetProductivityDrilldownOkResponse, AiEngineeringControllerGetProductivityDrilldownErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<AiEngineeringControllerGetProductivityDrilldownOkResponse, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function aiEngineeringControllerGetProductivityDrilldown(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/ai-engineering/insights/impact/productivity/${props.metric}/drilldown`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get productivity metric drilldown by PRs or work items
|
|
11
|
+
*/
|
|
12
|
+
export function useAiEngineeringControllerGetProductivityDrilldownQuery(props, options) {
|
|
13
|
+
return useQuery(['AiEngineeringControllerGetProductivityDrilldown', props.metric, props.queryParams], ({ signal }) => aiEngineeringControllerGetProductivityDrilldown(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -7,7 +7,7 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export type DeveloperControllerUpsertDeveloperIdentitiesRequestBody = DeveloperIdentity[];
|
|
9
9
|
export type DeveloperControllerUpsertDeveloperIdentitiesOkResponse = ResponseWithPagination<DeveloperIdentityUpsertResponse>;
|
|
10
|
-
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = DeveloperIdentityUpsertFailureResponse | ErrorResponse;
|
|
10
|
+
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = (DeveloperIdentityUpsertFailureResponse & ErrorResponse) | ErrorResponse;
|
|
11
11
|
export interface DeveloperControllerUpsertDeveloperIdentitiesProps extends Omit<FetcherOptions<unknown, DeveloperControllerUpsertDeveloperIdentitiesRequestBody>, 'url'> {
|
|
12
12
|
body: DeveloperControllerUpsertDeveloperIdentitiesRequestBody;
|
|
13
13
|
}
|
|
@@ -18,6 +18,7 @@ export interface SecurityInsightsStatsControllerGetOpenVulnerabilitiesBreakdownQ
|
|
|
18
18
|
* @format date-time
|
|
19
19
|
*/
|
|
20
20
|
endDate: string;
|
|
21
|
+
sourceTool?: string;
|
|
21
22
|
}
|
|
22
23
|
export type SecurityInsightsStatsControllerGetOpenVulnerabilitiesBreakdownOkResponse = ResponseWithPagination<OpenVulnerabilitiesStatsBreakdownResponseDto>;
|
|
23
24
|
export type SecurityInsightsStatsControllerGetOpenVulnerabilitiesBreakdownErrorResponse = string;
|
|
@@ -37,6 +37,8 @@ export type { AiEngineeringControllerGetOptimizationByIdErrorResponse, AiEnginee
|
|
|
37
37
|
export { aiEngineeringControllerGetOptimizationById, useAiEngineeringControllerGetOptimizationByIdQuery, } from './hooks/useAiEngineeringControllerGetOptimizationByIdQuery';
|
|
38
38
|
export type { AiEngineeringControllerGetProductivityBreakdownErrorResponse, AiEngineeringControllerGetProductivityBreakdownOkResponse, AiEngineeringControllerGetProductivityBreakdownProps, AiEngineeringControllerGetProductivityBreakdownQueryPathParams, AiEngineeringControllerGetProductivityBreakdownQueryQueryParams, } from './hooks/useAiEngineeringControllerGetProductivityBreakdownQuery';
|
|
39
39
|
export { aiEngineeringControllerGetProductivityBreakdown, useAiEngineeringControllerGetProductivityBreakdownQuery, } from './hooks/useAiEngineeringControllerGetProductivityBreakdownQuery';
|
|
40
|
+
export type { AiEngineeringControllerGetProductivityDrilldownErrorResponse, AiEngineeringControllerGetProductivityDrilldownOkResponse, AiEngineeringControllerGetProductivityDrilldownProps, AiEngineeringControllerGetProductivityDrilldownQueryPathParams, AiEngineeringControllerGetProductivityDrilldownQueryQueryParams, } from './hooks/useAiEngineeringControllerGetProductivityDrilldownQuery';
|
|
41
|
+
export { aiEngineeringControllerGetProductivityDrilldown, useAiEngineeringControllerGetProductivityDrilldownQuery, } from './hooks/useAiEngineeringControllerGetProductivityDrilldownQuery';
|
|
40
42
|
export type { AiEngineeringControllerGetProductivitySummaryErrorResponse, AiEngineeringControllerGetProductivitySummaryOkResponse, AiEngineeringControllerGetProductivitySummaryProps, AiEngineeringControllerGetProductivitySummaryQueryPathParams, AiEngineeringControllerGetProductivitySummaryQueryQueryParams, } from './hooks/useAiEngineeringControllerGetProductivitySummaryQuery';
|
|
41
43
|
export { aiEngineeringControllerGetProductivitySummary, useAiEngineeringControllerGetProductivitySummaryQuery, } from './hooks/useAiEngineeringControllerGetProductivitySummaryQuery';
|
|
42
44
|
export type { AiEngineeringControllerGetRolesCatalogErrorResponse, AiEngineeringControllerGetRolesCatalogOkResponse, AiEngineeringControllerGetRolesCatalogProps, AiEngineeringControllerGetRolesCatalogQueryQueryParams, } from './hooks/useAiEngineeringControllerGetRolesCatalogQuery';
|
|
@@ -677,6 +679,7 @@ export type { AiEngInstallation } from './schemas/AiEngInstallation';
|
|
|
677
679
|
export type { AiEngInstallationsResponse } from './schemas/AiEngInstallationsResponse';
|
|
678
680
|
export type { AiEngineeringImpactBreakdownData } from './schemas/AiEngineeringImpactBreakdownData';
|
|
679
681
|
export type { AiEngineeringImpactBreakdownItem } from './schemas/AiEngineeringImpactBreakdownItem';
|
|
682
|
+
export type { AiEngineeringImpactDrilldownResponseObject } from './schemas/AiEngineeringImpactDrilldownResponseObject';
|
|
680
683
|
export type { AiEngineeringImpactSummaryData } from './schemas/AiEngineeringImpactSummaryData';
|
|
681
684
|
export type { AiMetrics } from './schemas/AiMetrics';
|
|
682
685
|
export type { AiRawMetricsRequestDto } from './schemas/AiRawMetricsRequestDto';
|
|
@@ -699,6 +702,7 @@ export type { ApiError } from './schemas/ApiError';
|
|
|
699
702
|
export type { ApiErrorResponse } from './schemas/ApiErrorResponse';
|
|
700
703
|
export type { ApiResponseAiCodeLifecycleData } from './schemas/ApiResponseAiCodeLifecycleData';
|
|
701
704
|
export type { ApiResponseAiEngineeringImpactBreakdownData } from './schemas/ApiResponseAiEngineeringImpactBreakdownData';
|
|
705
|
+
export type { ApiResponseAiEngineeringImpactDrilldownResponseObject } from './schemas/ApiResponseAiEngineeringImpactDrilldownResponseObject';
|
|
702
706
|
export type { ApiResponseAiEngineeringImpactSummaryData } from './schemas/ApiResponseAiEngineeringImpactSummaryData';
|
|
703
707
|
export type { ApiResponseAiSummaryData } from './schemas/ApiResponseAiSummaryData';
|
|
704
708
|
export type { ApiResponseCatalogTemplate } from './schemas/ApiResponseCatalogTemplate';
|
|
@@ -17,6 +17,7 @@ export { aiEngineeringControllerGetModelsCatalog, useAiEngineeringControllerGetM
|
|
|
17
17
|
export { aiEngineeringControllerGetMonitoringInstallations, useAiEngineeringControllerGetMonitoringInstallationsQuery, } from './hooks/useAiEngineeringControllerGetMonitoringInstallationsQuery';
|
|
18
18
|
export { aiEngineeringControllerGetOptimizationById, useAiEngineeringControllerGetOptimizationByIdQuery, } from './hooks/useAiEngineeringControllerGetOptimizationByIdQuery';
|
|
19
19
|
export { aiEngineeringControllerGetProductivityBreakdown, useAiEngineeringControllerGetProductivityBreakdownQuery, } from './hooks/useAiEngineeringControllerGetProductivityBreakdownQuery';
|
|
20
|
+
export { aiEngineeringControllerGetProductivityDrilldown, useAiEngineeringControllerGetProductivityDrilldownQuery, } from './hooks/useAiEngineeringControllerGetProductivityDrilldownQuery';
|
|
20
21
|
export { aiEngineeringControllerGetProductivitySummary, useAiEngineeringControllerGetProductivitySummaryQuery, } from './hooks/useAiEngineeringControllerGetProductivitySummaryQuery';
|
|
21
22
|
export { aiEngineeringControllerGetRolesCatalog, useAiEngineeringControllerGetRolesCatalogQuery, } from './hooks/useAiEngineeringControllerGetRolesCatalogQuery';
|
|
22
23
|
export { aiEngineeringControllerGetScorecards, useAiEngineeringControllerGetScorecardsQuery, } from './hooks/useAiEngineeringControllerGetScorecardsQuery';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export interface AiEngineeringImpactDrilldownResponseObject {
|
|
2
|
+
dimensions?: string;
|
|
3
|
+
items?: Array<{
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
}>;
|
|
6
|
+
/**
|
|
7
|
+
* @format int32
|
|
8
|
+
*/
|
|
9
|
+
limit?: number;
|
|
10
|
+
metric?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @format int32
|
|
13
|
+
*/
|
|
14
|
+
offset?: number;
|
|
15
|
+
/**
|
|
16
|
+
* @format int32
|
|
17
|
+
*/
|
|
18
|
+
totalCount?: number;
|
|
19
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { AiEngineeringImpactDrilldownResponseObject } from '../schemas/AiEngineeringImpactDrilldownResponseObject';
|
|
2
|
+
export interface ApiResponseAiEngineeringImpactDrilldownResponseObject {
|
|
3
|
+
/**
|
|
4
|
+
* Endpoint-specific payload (template DTOs, lists, aggregates, etc.)
|
|
5
|
+
*/
|
|
6
|
+
data?: AiEngineeringImpactDrilldownResponseObject;
|
|
7
|
+
/**
|
|
8
|
+
* HATEOAS links for resource navigation (self, next, prev, etc.)
|
|
9
|
+
*/
|
|
10
|
+
links?: {
|
|
11
|
+
[key: string]: {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Operation metadata: date ranges, filters, granularity, pagination info, etc.
|
|
17
|
+
*/
|
|
18
|
+
meta?: {
|
|
19
|
+
[key: string]: {
|
|
20
|
+
[key: string]: any;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -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?: 'ARMOR_AGG_DIMENSION' | 'ARMOR_AGG_VALUE' | 'ARMOR_TAG_KEY' | 'ARMOR_TAG_VALUE' | 'ARMOR_TOOL_SOURCE' | 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'CUSTOM_PAGERDUTY' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'ITSM_ASSIGNMENT_GROUP' | 'ITSM_BUSINESS_SERVICE' | 'ITSM_PAGERDUTY_PRIORITY' | 'ITSM_PAGERDUTY_SERVICE_NAME' | 'ITSM_PAGERDUTY_STATUS' | 'ITSM_PAGERDUTY_URGENCY' | 'ITSM_PRIORITY' | 'ITSM_SEVERITY' | 'ITSM_URGENCY' | '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_ORG_NAME' | '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';
|
|
14
|
+
filterKey?: 'ARMOR_AGG_DIMENSION' | 'ARMOR_AGG_VALUE' | 'ARMOR_TAG_KEY' | 'ARMOR_TAG_KEY_VALUE' | 'ARMOR_TAG_VALUE' | 'ARMOR_TOOL_SOURCE' | 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'CUSTOM_PAGERDUTY' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'ITSM_ASSIGNMENT_GROUP' | 'ITSM_BUSINESS_SERVICE' | 'ITSM_PAGERDUTY_PRIORITY' | 'ITSM_PAGERDUTY_SERVICE_NAME' | 'ITSM_PAGERDUTY_STATUS' | 'ITSM_PAGERDUTY_URGENCY' | 'ITSM_PRIORITY' | 'ITSM_SEVERITY' | 'ITSM_URGENCY' | '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_ORG_NAME' | '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
|
*/
|
|
@@ -6,7 +6,7 @@ export interface SimpleFilter {
|
|
|
6
6
|
* Filter key
|
|
7
7
|
* @example "PROJECT"
|
|
8
8
|
*/
|
|
9
|
-
filterKey?: 'ARMOR_AGG_DIMENSION' | 'ARMOR_AGG_VALUE' | 'ARMOR_TAG_KEY' | 'ARMOR_TAG_VALUE' | 'ARMOR_TOOL_SOURCE' | 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'CUSTOM_PAGERDUTY' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'ITSM_ASSIGNMENT_GROUP' | 'ITSM_BUSINESS_SERVICE' | 'ITSM_PAGERDUTY_PRIORITY' | 'ITSM_PAGERDUTY_SERVICE_NAME' | 'ITSM_PAGERDUTY_STATUS' | 'ITSM_PAGERDUTY_URGENCY' | 'ITSM_PRIORITY' | 'ITSM_SEVERITY' | 'ITSM_URGENCY' | '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_ORG_NAME' | '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';
|
|
9
|
+
filterKey?: 'ARMOR_AGG_DIMENSION' | 'ARMOR_AGG_VALUE' | 'ARMOR_TAG_KEY' | 'ARMOR_TAG_KEY_VALUE' | 'ARMOR_TAG_VALUE' | 'ARMOR_TOOL_SOURCE' | 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'CUSTOM_PAGERDUTY' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'ITSM_ASSIGNMENT_GROUP' | 'ITSM_BUSINESS_SERVICE' | 'ITSM_PAGERDUTY_PRIORITY' | 'ITSM_PAGERDUTY_SERVICE_NAME' | 'ITSM_PAGERDUTY_STATUS' | 'ITSM_PAGERDUTY_URGENCY' | 'ITSM_PRIORITY' | 'ITSM_SEVERITY' | 'ITSM_URGENCY' | '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_ORG_NAME' | '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';
|
|
10
10
|
/**
|
|
11
11
|
* Filter ID
|
|
12
12
|
* @format int32
|
|
@@ -7,7 +7,7 @@ export interface TeamFilter {
|
|
|
7
7
|
applicableMetrics?: Array<'AI_INSIGHTS' | 'AVG_TIME_TO_FIRST_COMMENT' | 'BA' | 'CFR' | 'CODE_REWORK' | 'CODING_DAYS' | 'DF' | 'LINES_OF_CODE' | 'LTTC' | 'MTTR' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'SPRINT_INSIGHTS' | 'TOTAL_OPEN_VULNERABILITIES' | 'WORK_COMPLETED'>;
|
|
8
8
|
customFilterId?: string;
|
|
9
9
|
customFilterKey?: string;
|
|
10
|
-
filterKey?: 'ARMOR_AGG_DIMENSION' | 'ARMOR_AGG_VALUE' | 'ARMOR_TAG_KEY' | 'ARMOR_TAG_VALUE' | 'ARMOR_TOOL_SOURCE' | 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'CUSTOM_PAGERDUTY' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'ITSM_ASSIGNMENT_GROUP' | 'ITSM_BUSINESS_SERVICE' | 'ITSM_PAGERDUTY_PRIORITY' | 'ITSM_PAGERDUTY_SERVICE_NAME' | 'ITSM_PAGERDUTY_STATUS' | 'ITSM_PAGERDUTY_URGENCY' | 'ITSM_PRIORITY' | 'ITSM_SEVERITY' | 'ITSM_URGENCY' | '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_ORG_NAME' | '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';
|
|
10
|
+
filterKey?: 'ARMOR_AGG_DIMENSION' | 'ARMOR_AGG_VALUE' | 'ARMOR_TAG_KEY' | 'ARMOR_TAG_KEY_VALUE' | 'ARMOR_TAG_VALUE' | 'ARMOR_TOOL_SOURCE' | 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'CUSTOM_PAGERDUTY' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'ITSM_ASSIGNMENT_GROUP' | 'ITSM_BUSINESS_SERVICE' | 'ITSM_PAGERDUTY_PRIORITY' | 'ITSM_PAGERDUTY_SERVICE_NAME' | 'ITSM_PAGERDUTY_STATUS' | 'ITSM_PAGERDUTY_URGENCY' | 'ITSM_PRIORITY' | 'ITSM_SEVERITY' | 'ITSM_URGENCY' | '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_ORG_NAME' | '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.31.
|
|
3
|
+
"version": "0.31.8",
|
|
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",
|