@harnessio/react-sei-panorama-service-client 0.22.13 → 0.22.14
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/schemas/BaExpressionLeafDto.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/FilterValuesRequestDto.d.ts +5 -0
- package/dist/sei-panorama-service/src/services/schemas/OrgTreeResponseDto.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamFilter.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
export interface FilterValuesRequestDto {
|
|
2
|
+
/**
|
|
3
|
+
* Actual custom field key from the external system (used when isCustom = true) - eg. 'customField_10065'
|
|
4
|
+
*/
|
|
5
|
+
customFilterId?: string;
|
|
2
6
|
/**
|
|
3
7
|
* Custom filter key name to get values for (used when isCustom = true)
|
|
8
|
+
* @deprecated
|
|
4
9
|
*/
|
|
5
10
|
customFilterKey?: string;
|
|
6
11
|
/**
|
|
@@ -3,6 +3,10 @@ import type { FilterByField } from '../schemas/FilterByField';
|
|
|
3
3
|
import type { GroupByField } from '../schemas/GroupByField';
|
|
4
4
|
import type { IntegrationResponseDto } from '../schemas/IntegrationResponseDto';
|
|
5
5
|
export interface OrgTreeResponseDto {
|
|
6
|
+
/**
|
|
7
|
+
* Indicates whether the user has view access to at least one team under this org tree
|
|
8
|
+
*/
|
|
9
|
+
access?: boolean;
|
|
6
10
|
businessAlignmentProfile?: OrgTreeProfileDto;
|
|
7
11
|
/**
|
|
8
12
|
* @format int64
|
|
@@ -5,6 +5,7 @@ export interface TeamFilter {
|
|
|
5
5
|
};
|
|
6
6
|
};
|
|
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' | 'WORK_COMPLETED'>;
|
|
8
|
+
customFilterId?: string;
|
|
8
9
|
customFilterKey?: string;
|
|
9
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
11
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.14",
|
|
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",
|