@harnessio/react-sei-panorama-service-client 0.22.8 → 0.22.10

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.
@@ -10,6 +10,7 @@ export interface ExportControllerForTeamsExportDataMutationQueryParams {
10
10
  * @default "csv"
11
11
  */
12
12
  format?: string;
13
+ includeRatings?: boolean;
13
14
  }
14
15
  export type ExportControllerForTeamsExportDataRequestBody = ExportRequestDto;
15
16
  export type ExportControllerForTeamsExportDataOkResponse = ResponseWithPagination<{
@@ -6,7 +6,7 @@ export interface FilterValuesRequestDto {
6
6
  /**
7
7
  * Filter key to get values for (used when isCustom = false)
8
8
  */
9
- filterKey?: 'CODE_AREA' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
9
+ filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORG' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
10
10
  /**
11
11
  * Integration ID
12
12
  */
@@ -11,4 +11,9 @@ export interface IssueRequest {
11
11
  * Pagination request
12
12
  */
13
13
  pagination?: PaginationRequest;
14
+ /**
15
+ * Team reference ID for filtering results by team's integrations
16
+ * @format int32
17
+ */
18
+ teamRefId?: number;
14
19
  }
@@ -11,4 +11,9 @@ export interface PrCommitsRequest {
11
11
  * PR identifier
12
12
  */
13
13
  prId: string;
14
+ /**
15
+ * Team reference ID for filtering results by team's integrations
16
+ * @format int32
17
+ */
18
+ teamRefId?: number;
14
19
  }
@@ -11,4 +11,9 @@ export interface PrRequest {
11
11
  * Pull Request ID
12
12
  */
13
13
  prId: string;
14
+ /**
15
+ * Team reference ID for filtering results by team's integrations
16
+ * @format int32
17
+ */
18
+ teamRefId?: number;
14
19
  }
@@ -6,7 +6,7 @@ export interface TeamFilter {
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
8
  customFilterKey?: string;
9
- filterKey?: 'CODE_AREA' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
9
+ filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORG' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
10
10
  /**
11
11
  * @format int32
12
12
  */
@@ -15,6 +15,10 @@ export interface TeamSummary {
15
15
  leaf?: boolean;
16
16
  name?: string;
17
17
  orgTree?: MinimalOrgTree;
18
+ /**
19
+ * @format int32
20
+ */
21
+ parentRefId?: number;
18
22
  /**
19
23
  * @format int32
20
24
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.22.8",
3
+ "version": "0.22.10",
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",