@harnessio/react-sei-panorama-service-client 0.11.0 → 0.12.0

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.
@@ -1,4 +1,4 @@
1
1
  export interface DrilldownDataPoint {
2
- metricType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_BUGS' | 'NUMBER_OF_COMMENTS_PER_PR' | 'NUMBER_OF_STORIES' | 'PR_VELOCITY';
2
+ metricType?: 'PR_VELOCITY' | 'WORK_COMPLETED';
3
3
  type: string;
4
4
  }
@@ -1,4 +1,4 @@
1
1
  export interface IndividualDrilldownDataPoint {
2
- metricType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_BUGS' | 'NUMBER_OF_COMMENTS_PER_PR' | 'NUMBER_OF_STORIES' | 'PR_VELOCITY';
2
+ metricType?: 'PR_VELOCITY' | 'WORK_COMPLETED';
3
3
  type: string;
4
4
  }
@@ -8,8 +8,14 @@ export interface PrVelocityDrilldownResponseDataPoint extends DrilldownDataPoint
8
8
  */
9
9
  averageTimeToMerge?: number;
10
10
  codeChangeStats?: CodeChangeStats;
11
+ contributorCustomFields?: {
12
+ [key: string]: {
13
+ [key: string]: any;
14
+ };
15
+ };
11
16
  contributorId?: string;
12
17
  contributorName?: string;
18
+ contributorUserIntegrationId?: string;
13
19
  /**
14
20
  * @format int64
15
21
  */
@@ -4,6 +4,7 @@ export interface PrVelocityIndividualDrilldownResponseDataPoint extends Individu
4
4
  codeChanges?: CodeChangeStats;
5
5
  contributorId?: string;
6
6
  contributorName?: string;
7
+ contributorUserIntegrationId?: string;
7
8
  /**
8
9
  * @format date-time
9
10
  */
@@ -5,8 +5,14 @@ export interface WorkCompletedDrilldownResponseDataPoint extends DrilldownDataPo
5
5
  * @format double
6
6
  */
7
7
  averageTimeToComplete?: number;
8
+ contributorCustomFields?: {
9
+ [key: string]: {
10
+ [key: string]: any;
11
+ };
12
+ };
8
13
  contributorId?: string;
9
14
  contributorName?: string;
15
+ contributorUserIntegrationId?: string;
10
16
  /**
11
17
  * @format int64
12
18
  */
@@ -6,6 +6,7 @@ export interface WorkCompletedIndividualDrilldownResponseDataPoint extends Indiv
6
6
  closedDate?: string;
7
7
  contributorId?: string;
8
8
  contributorName?: string;
9
+ contributorUserIntegrationId?: string;
9
10
  /**
10
11
  * @format date-time
11
12
  */
@@ -23,5 +24,5 @@ export interface WorkCompletedIndividualDrilldownResponseDataPoint extends Indiv
23
24
  */
24
25
  workItemPortion?: number;
25
26
  workItemSummary?: string;
26
- workType?: 'BUGS' | 'FEATURES' | 'MISSING_TICKETS' | 'OTHERS';
27
+ workType?: 'BUG' | 'FEATURE' | 'MISSING_TICKET' | 'OTHER';
27
28
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
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",