@harnessio/react-sei-panorama-service-client 0.31.6 → 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.
Files changed (18) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetCodeLifecycleQuery.d.ts +5 -2
  2. package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetProductivityDrilldownQuery.d.ts +55 -0
  3. package/dist/sei-panorama-service/src/services/hooks/useAiEngineeringControllerGetProductivityDrilldownQuery.js +14 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpsertDeveloperIdentitiesMutation.d.ts +1 -1
  5. package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsStatsControllerGetOpenVulnerabilitiesBreakdownQuery.d.ts +1 -0
  6. package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsStatsControllerGetOpenVulnerabilitiesQuery.d.ts +1 -0
  7. package/dist/sei-panorama-service/src/services/hooks/useSecurityInsightsStatsControllerGetSecurityStatsDrilldownQuery.d.ts +1 -0
  8. package/dist/sei-panorama-service/src/services/index.d.ts +4 -0
  9. package/dist/sei-panorama-service/src/services/index.js +1 -0
  10. package/dist/sei-panorama-service/src/services/schemas/AiEngInstallation.d.ts +3 -3
  11. package/dist/sei-panorama-service/src/services/schemas/AiEngineeringImpactDrilldownResponseObject.d.ts +19 -0
  12. package/dist/sei-panorama-service/src/services/schemas/AiEngineeringImpactDrilldownResponseObject.js +4 -0
  13. package/dist/sei-panorama-service/src/services/schemas/ApiResponseAiEngineeringImpactDrilldownResponseObject.d.ts +23 -0
  14. package/dist/sei-panorama-service/src/services/schemas/ApiResponseAiEngineeringImpactDrilldownResponseObject.js +1 -0
  15. package/dist/sei-panorama-service/src/services/schemas/FilterValuesRequestDto.d.ts +7 -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
@@ -13,8 +13,11 @@ export interface AiEngineeringControllerGetCodeLifecycleQueryQueryParams {
13
13
  */
14
14
  orgTreeId?: number;
15
15
  teamRefId?: string;
16
- start_date?: string;
17
- end_date?: string;
16
+ start_date: string;
17
+ end_date: string;
18
+ /**
19
+ * @example "WEEKLY"
20
+ */
18
21
  granularity?: string;
19
22
  /**
20
23
  * @example "claude-code"
@@ -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;
@@ -19,6 +19,7 @@ export interface SecurityInsightsStatsControllerGetOpenVulnerabilitiesQueryQuery
19
19
  */
20
20
  endDate: string;
21
21
  granularity?: 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'WEEKLY';
22
+ sourceTool?: string;
22
23
  }
23
24
  export type SecurityInsightsStatsControllerGetOpenVulnerabilitiesOkResponse = ResponseWithPagination<SecurityStatsTrendResponseDto>;
24
25
  export type SecurityInsightsStatsControllerGetOpenVulnerabilitiesErrorResponse = 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';
@@ -10,10 +10,10 @@ export interface AiEngInstallation {
10
10
  */
11
11
  lastInstallTime?: string;
12
12
  /**
13
- * Most recent session date (null if no session activity)
14
- * @format date
13
+ * Most recent session end time in epoch ms (null if no session activity)
14
+ * @format date-time
15
15
  */
16
- lastSessionDate?: string;
16
+ lastSessionActivity?: string;
17
17
  /**
18
18
  * Developer email
19
19
  */
@@ -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 FilterValuesRequestDto {
11
11
  /**
12
12
  * Filter key to get values for (used when isCustom = false)
13
13
  */
14
- filterKey?: 'ARMOR_ASSET_TYPE' | 'ARMOR_ASSET_URL' | 'ARMOR_ENVIRONMENT' | 'ARMOR_PRODUCT_NAME' | 'ARMOR_SUB_PRODUCT_NAME' | '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
  */
@@ -20,6 +20,12 @@ export interface FilterValuesRequestDto {
20
20
  * Is custom filter
21
21
  */
22
22
  isCustom?: boolean;
23
+ /**
24
+ * Previously selected filter values to scope this filter's results. Key is a FilterKey, value is the list of selected values for that key.
25
+ */
26
+ selectedFilters?: {
27
+ [key: string]: string[];
28
+ };
23
29
  /**
24
30
  * Team Integration ID
25
31
  */
@@ -6,7 +6,7 @@ export interface SimpleFilter {
6
6
  * Filter key
7
7
  * @example "PROJECT"
8
8
  */
9
- filterKey?: 'ARMOR_ASSET_TYPE' | 'ARMOR_ASSET_URL' | 'ARMOR_ENVIRONMENT' | 'ARMOR_PRODUCT_NAME' | 'ARMOR_SUB_PRODUCT_NAME' | '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_ASSET_TYPE' | 'ARMOR_ASSET_URL' | 'ARMOR_ENVIRONMENT' | 'ARMOR_PRODUCT_NAME' | 'ARMOR_SUB_PRODUCT_NAME' | '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.6",
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",