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

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.
@@ -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,71 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { AiEngInstallationsResponse } from '../schemas/AiEngInstallationsResponse';
3
+ import type { ResponseWithPagination } from '../helpers';
4
+ import { FetcherOptions } from '../../../../fetcher/index.js';
5
+ export interface AiEngineeringControllerGetMonitoringInstallationsQueryQueryParams {
6
+ search?: string;
7
+ sort?: string;
8
+ order?: string;
9
+ /**
10
+ * @format int32
11
+ */
12
+ limit?: number;
13
+ /**
14
+ * @format int32
15
+ */
16
+ offset?: number;
17
+ /**
18
+ * @example "default"
19
+ */
20
+ orgIdentifier?: string;
21
+ /**
22
+ * @example "sei"
23
+ */
24
+ projectIdentifier?: string;
25
+ /**
26
+ * @example "kmpySmUISimoRrJL6NL73w"
27
+ */
28
+ routingId?: string;
29
+ /**
30
+ * @example "2026-01-01"
31
+ */
32
+ start_date: string;
33
+ /**
34
+ * @example "2026-05-04"
35
+ */
36
+ end_date: string;
37
+ /**
38
+ * @example "WEEKLY"
39
+ */
40
+ granularity?: string;
41
+ /**
42
+ * @example "1"
43
+ */
44
+ orgTreeId?: string;
45
+ /**
46
+ * @example "team-123"
47
+ */
48
+ teamRefId?: string;
49
+ /**
50
+ * @example "claude-code"
51
+ */
52
+ assistant?: string;
53
+ /**
54
+ * @example "java"
55
+ */
56
+ language?: string;
57
+ /**
58
+ * @example "senior_engineer"
59
+ */
60
+ role?: string;
61
+ }
62
+ export type AiEngineeringControllerGetMonitoringInstallationsOkResponse = ResponseWithPagination<AiEngInstallationsResponse>;
63
+ export type AiEngineeringControllerGetMonitoringInstallationsErrorResponse = unknown;
64
+ export interface AiEngineeringControllerGetMonitoringInstallationsProps extends Omit<FetcherOptions<AiEngineeringControllerGetMonitoringInstallationsQueryQueryParams, unknown>, 'url'> {
65
+ queryParams: AiEngineeringControllerGetMonitoringInstallationsQueryQueryParams;
66
+ }
67
+ export declare function aiEngineeringControllerGetMonitoringInstallations(props: AiEngineeringControllerGetMonitoringInstallationsProps): Promise<AiEngineeringControllerGetMonitoringInstallationsOkResponse>;
68
+ /**
69
+ * Get AI agent installations per developer with session activity
70
+ */
71
+ export declare function useAiEngineeringControllerGetMonitoringInstallationsQuery(props: AiEngineeringControllerGetMonitoringInstallationsProps, options?: Omit<UseQueryOptions<AiEngineeringControllerGetMonitoringInstallationsOkResponse, AiEngineeringControllerGetMonitoringInstallationsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<AiEngineeringControllerGetMonitoringInstallationsOkResponse, 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 aiEngineeringControllerGetMonitoringInstallations(props) {
7
+ return fetcher(Object.assign({ url: `/v2/ai-engineering/monitoring/installations`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Get AI agent installations per developer with session activity
11
+ */
12
+ export function useAiEngineeringControllerGetMonitoringInstallationsQuery(props, options) {
13
+ return useQuery(['AiEngineeringControllerGetMonitoringInstallations', props.queryParams], ({ signal }) => aiEngineeringControllerGetMonitoringInstallations(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) | ErrorResponse;
10
+ export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = DeveloperIdentityUpsertFailureResponse | ErrorResponse;
11
11
  export interface DeveloperControllerUpsertDeveloperIdentitiesProps extends Omit<FetcherOptions<unknown, DeveloperControllerUpsertDeveloperIdentitiesRequestBody>, 'url'> {
12
12
  body: DeveloperControllerUpsertDeveloperIdentitiesRequestBody;
13
13
  }
@@ -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;
@@ -31,6 +31,8 @@ export type { AiEngineeringControllerGetMetricsSummaryErrorResponse, AiEngineeri
31
31
  export { aiEngineeringControllerGetMetricsSummary, useAiEngineeringControllerGetMetricsSummaryQuery, } from './hooks/useAiEngineeringControllerGetMetricsSummaryQuery';
32
32
  export type { AiEngineeringControllerGetModelsCatalogErrorResponse, AiEngineeringControllerGetModelsCatalogOkResponse, AiEngineeringControllerGetModelsCatalogProps, AiEngineeringControllerGetModelsCatalogQueryQueryParams, } from './hooks/useAiEngineeringControllerGetModelsCatalogQuery';
33
33
  export { aiEngineeringControllerGetModelsCatalog, useAiEngineeringControllerGetModelsCatalogQuery, } from './hooks/useAiEngineeringControllerGetModelsCatalogQuery';
34
+ export type { AiEngineeringControllerGetMonitoringInstallationsErrorResponse, AiEngineeringControllerGetMonitoringInstallationsOkResponse, AiEngineeringControllerGetMonitoringInstallationsProps, AiEngineeringControllerGetMonitoringInstallationsQueryQueryParams, } from './hooks/useAiEngineeringControllerGetMonitoringInstallationsQuery';
35
+ export { aiEngineeringControllerGetMonitoringInstallations, useAiEngineeringControllerGetMonitoringInstallationsQuery, } from './hooks/useAiEngineeringControllerGetMonitoringInstallationsQuery';
34
36
  export type { AiEngineeringControllerGetOptimizationByIdErrorResponse, AiEngineeringControllerGetOptimizationByIdOkResponse, AiEngineeringControllerGetOptimizationByIdProps, AiEngineeringControllerGetOptimizationByIdQueryPathParams, AiEngineeringControllerGetOptimizationByIdQueryQueryParams, } from './hooks/useAiEngineeringControllerGetOptimizationByIdQuery';
35
37
  export { aiEngineeringControllerGetOptimizationById, useAiEngineeringControllerGetOptimizationByIdQuery, } from './hooks/useAiEngineeringControllerGetOptimizationByIdQuery';
36
38
  export type { AiEngineeringControllerGetProductivityBreakdownErrorResponse, AiEngineeringControllerGetProductivityBreakdownOkResponse, AiEngineeringControllerGetProductivityBreakdownProps, AiEngineeringControllerGetProductivityBreakdownQueryPathParams, AiEngineeringControllerGetProductivityBreakdownQueryQueryParams, } from './hooks/useAiEngineeringControllerGetProductivityBreakdownQuery';
@@ -671,6 +673,8 @@ export type { AiCodeLifecycleData } from './schemas/AiCodeLifecycleData';
671
673
  export type { AiCodeLifecycleStage } from './schemas/AiCodeLifecycleStage';
672
674
  export type { AiCodeLifecycleToolEntry } from './schemas/AiCodeLifecycleToolEntry';
673
675
  export type { AiCombinedInsightsRequestDto } from './schemas/AiCombinedInsightsRequestDto';
676
+ export type { AiEngInstallation } from './schemas/AiEngInstallation';
677
+ export type { AiEngInstallationsResponse } from './schemas/AiEngInstallationsResponse';
674
678
  export type { AiEngineeringImpactBreakdownData } from './schemas/AiEngineeringImpactBreakdownData';
675
679
  export type { AiEngineeringImpactBreakdownItem } from './schemas/AiEngineeringImpactBreakdownItem';
676
680
  export type { AiEngineeringImpactSummaryData } from './schemas/AiEngineeringImpactSummaryData';
@@ -14,6 +14,7 @@ export { aiEngineeringControllerGetMetricsOverview, useAiEngineeringControllerGe
14
14
  export { aiEngineeringControllerGetMetrics, useAiEngineeringControllerGetMetricsQuery, } from './hooks/useAiEngineeringControllerGetMetricsQuery';
15
15
  export { aiEngineeringControllerGetMetricsSummary, useAiEngineeringControllerGetMetricsSummaryQuery, } from './hooks/useAiEngineeringControllerGetMetricsSummaryQuery';
16
16
  export { aiEngineeringControllerGetModelsCatalog, useAiEngineeringControllerGetModelsCatalogQuery, } from './hooks/useAiEngineeringControllerGetModelsCatalogQuery';
17
+ export { aiEngineeringControllerGetMonitoringInstallations, useAiEngineeringControllerGetMonitoringInstallationsQuery, } from './hooks/useAiEngineeringControllerGetMonitoringInstallationsQuery';
17
18
  export { aiEngineeringControllerGetOptimizationById, useAiEngineeringControllerGetOptimizationByIdQuery, } from './hooks/useAiEngineeringControllerGetOptimizationByIdQuery';
18
19
  export { aiEngineeringControllerGetProductivityBreakdown, useAiEngineeringControllerGetProductivityBreakdownQuery, } from './hooks/useAiEngineeringControllerGetProductivityBreakdownQuery';
19
20
  export { aiEngineeringControllerGetProductivitySummary, useAiEngineeringControllerGetProductivitySummaryQuery, } from './hooks/useAiEngineeringControllerGetProductivitySummaryQuery';
@@ -0,0 +1,29 @@
1
+ export interface AiEngInstallation {
2
+ /**
3
+ * First time the agent was installed
4
+ * @format date-time
5
+ */
6
+ firstInstallTime?: string;
7
+ /**
8
+ * Most recent install or upgrade time
9
+ * @format date-time
10
+ */
11
+ lastInstallTime?: string;
12
+ /**
13
+ * Most recent session end time in epoch ms (null if no session activity)
14
+ * @format date-time
15
+ */
16
+ lastSessionActivity?: string;
17
+ /**
18
+ * Developer email
19
+ */
20
+ userEmail?: string;
21
+ /**
22
+ * Developer name
23
+ */
24
+ userName?: string;
25
+ /**
26
+ * Latest installed agent version
27
+ */
28
+ version?: string;
29
+ }
@@ -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,12 @@
1
+ import type { AiEngInstallation } from '../schemas/AiEngInstallation';
2
+ export interface AiEngInstallationsResponse {
3
+ /**
4
+ * Total installations matching the search filter (used for pagination)
5
+ * @format int64
6
+ */
7
+ count?: number;
8
+ /**
9
+ * Installations for the requested page
10
+ */
11
+ installations?: AiEngInstallation[];
12
+ }
@@ -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_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_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_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.5",
3
+ "version": "0.31.7",
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",