@harnessio/react-sei-panorama-service-client 0.31.7 → 0.31.9

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 (18) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetMonitoringInstallationsQuery.d.ts +1 -4
  2. package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetProductivityDrilldownQuery.d.ts +56 -0
  3. package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetProductivityDrilldownQuery.js +14 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useIntegrationPropertiesControllerGetValuesQuery.d.ts +1 -0
  5. package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsStatsControllerGetOpenVulnerabilitiesBreakdownQuery.d.ts +1 -0
  6. package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsStatsControllerGetSecurityStatsDrilldownQuery.d.ts +1 -0
  7. package/dist/sei-panorama-service/src/services/index.d.ts +4 -0
  8. package/dist/sei-panorama-service/src/services/index.js +1 -0
  9. package/dist/sei-panorama-service/src/services/schemas/AiEngineeringImpactDrilldownResponseObject.d.ts +19 -0
  10. package/dist/sei-panorama-service/src/services/schemas/AiEngineeringImpactDrilldownResponseObject.js +4 -0
  11. package/dist/sei-panorama-service/src/services/schemas/ApiResponseAiEngineeringImpactDrilldownResponseObject.d.ts +23 -0
  12. package/dist/sei-panorama-service/src/services/schemas/ApiResponseAiEngineeringImpactDrilldownResponseObject.js +1 -0
  13. package/dist/sei-panorama-service/src/services/schemas/EntityDto.d.ts +1 -1
  14. package/dist/sei-panorama-service/src/services/schemas/EntityRequestDto.d.ts +1 -1
  15. package/dist/sei-panorama-service/src/services/schemas/FilterValuesRequestDto.d.ts +1 -1
  16. package/dist/sei-panorama-service/src/services/schemas/SimpleFilter.d.ts +1 -1
  17. package/dist/sei-panorama-service/src/services/schemas/TeamFilter.d.ts +1 -1
  18. package/package.json +1 -1
@@ -3,6 +3,7 @@ import type { AiEngInstallationsResponse } from '../schemas/AiEngInstallationsRe
3
3
  import type { ResponseWithPagination } from '../helpers';
4
4
  import { FetcherOptions } from '../../../../fetcher/index.js';
5
5
  export interface AiEngineeringControllerGetMonitoringInstallationsQueryQueryParams {
6
+ teamRefId?: string;
6
7
  search?: string;
7
8
  sort?: string;
8
9
  order?: string;
@@ -42,10 +43,6 @@ export interface AiEngineeringControllerGetMonitoringInstallationsQueryQueryPara
42
43
  * @example "1"
43
44
  */
44
45
  orgTreeId?: string;
45
- /**
46
- * @example "team-123"
47
- */
48
- teamRefId?: string;
49
46
  /**
50
47
  * @example "claude-code"
51
48
  */
@@ -0,0 +1,56 @@
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
+ work_type?: string;
24
+ sort_by?: string;
25
+ order?: string;
26
+ /**
27
+ * @format int32
28
+ */
29
+ limit?: number;
30
+ /**
31
+ * @format int32
32
+ */
33
+ offset?: number;
34
+ /**
35
+ * @example "WEEKLY"
36
+ */
37
+ granularity?: string;
38
+ /**
39
+ * @example "java"
40
+ */
41
+ language?: string;
42
+ /**
43
+ * @example "senior_engineer"
44
+ */
45
+ role?: string;
46
+ }
47
+ export type AiEngineeringControllerGetProductivityDrilldownOkResponse = ResponseWithPagination<ApiResponseAiEngineeringImpactDrilldownResponseObject>;
48
+ export type AiEngineeringControllerGetProductivityDrilldownErrorResponse = unknown;
49
+ export interface AiEngineeringControllerGetProductivityDrilldownProps extends AiEngineeringControllerGetProductivityDrilldownQueryPathParams, Omit<FetcherOptions<AiEngineeringControllerGetProductivityDrilldownQueryQueryParams, unknown>, 'url'> {
50
+ queryParams: AiEngineeringControllerGetProductivityDrilldownQueryQueryParams;
51
+ }
52
+ export declare function aiEngineeringControllerGetProductivityDrilldown(props: AiEngineeringControllerGetProductivityDrilldownProps): Promise<AiEngineeringControllerGetProductivityDrilldownOkResponse>;
53
+ /**
54
+ * Get productivity metric drilldown by PRs or work items
55
+ */
56
+ 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
+ }
@@ -11,6 +11,7 @@ export interface IntegrationPropertiesControllerGetValuesQueryPathParams {
11
11
  export interface IntegrationPropertiesControllerGetValuesQueryQueryParams {
12
12
  property?: string;
13
13
  customFieldId?: string;
14
+ orgTreeId?: string;
14
15
  }
15
16
  export type IntegrationPropertiesControllerGetValuesOkResponse = ResponseWithPagination<unknown>;
16
17
  export type IntegrationPropertiesControllerGetValuesErrorResponse = IntegrationPropertyValuesResponseDto;
@@ -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;
@@ -19,6 +19,7 @@ export interface SecurityInsightsStatsControllerGetSecurityStatsDrilldownQueryQu
19
19
  */
20
20
  endDate: string;
21
21
  severity?: 'ALL' | 'CRITICAL' | 'HIGH' | 'INFO' | 'LOW' | 'MEDIUM';
22
+ sourceTool?: string;
22
23
  /**
23
24
  * @format int32
24
25
  * @default 0
@@ -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,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -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
+ }
@@ -11,7 +11,7 @@ export interface EntityDto {
11
11
  config?: ActiveWorkStatusConfig & BugPriorityConfig & CompletedWorkStatusConfig & NewFeaturesConfig;
12
12
  entityKey?: string;
13
13
  entityName?: string;
14
- entityType?: 'cd_production_failure' | 'cd_services_pipelines' | 'cd_successful_deployment' | 'im_active_work_status' | 'im_ba_category' | 'im_bugs' | 'im_completed_work_status' | 'im_general' | 'im_incident_detection' | 'im_new_features' | 'itsm_change_requests' | 'itsm_incident_detection' | 'scm_code_driven_deployments' | 'scm_code_driven_hot_fixes' | 'scm_destination_branch' | 'scm_repositories' | 'security_aspm';
14
+ entityType?: 'cd_production_failure' | 'cd_services_pipelines' | 'cd_successful_deployment' | 'im_active_work_status' | 'im_ba_category' | 'im_bugs' | 'im_completed_work_status' | 'im_general' | 'im_incident_detection' | 'im_new_features' | 'im_start_status' | 'itsm_change_requests' | 'itsm_incident_detection' | 'scm_code_driven_deployments' | 'scm_code_driven_hot_fixes' | 'scm_destination_branch' | 'scm_repositories' | 'security_aspm';
15
15
  integrationFilters?: {
16
16
  [key: string]: CompositeFilterExpression & SimpleFilterExpression;
17
17
  };
@@ -7,7 +7,7 @@ import type { SimpleFilterExpression } from '../schemas/SimpleFilterExpression';
7
7
  export interface EntityRequestDto {
8
8
  config?: ActiveWorkStatusConfig & BugPriorityConfig & CompletedWorkStatusConfig & NewFeaturesConfig;
9
9
  entityKey?: string;
10
- entityType?: 'cd_production_failure' | 'cd_services_pipelines' | 'cd_successful_deployment' | 'im_active_work_status' | 'im_ba_category' | 'im_bugs' | 'im_completed_work_status' | 'im_general' | 'im_incident_detection' | 'im_new_features' | 'itsm_change_requests' | 'itsm_incident_detection' | 'scm_code_driven_deployments' | 'scm_code_driven_hot_fixes' | 'scm_destination_branch' | 'scm_repositories' | 'security_aspm';
10
+ entityType?: 'cd_production_failure' | 'cd_services_pipelines' | 'cd_successful_deployment' | 'im_active_work_status' | 'im_ba_category' | 'im_bugs' | 'im_completed_work_status' | 'im_general' | 'im_incident_detection' | 'im_new_features' | 'im_start_status' | 'itsm_change_requests' | 'itsm_incident_detection' | 'scm_code_driven_deployments' | 'scm_code_driven_hot_fixes' | 'scm_destination_branch' | 'scm_repositories' | 'security_aspm';
11
11
  integrationFilters?: {
12
12
  [key: string]: CompositeFilterExpression & SimpleFilterExpression;
13
13
  };
@@ -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.7",
3
+ "version": "0.31.9",
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",