@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.
- package/dist/sei-panorama-service/src/services/schemas/DrilldownDataPoint.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/IndividualDrilldownDataPoint.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/PrVelocityDrilldownResponseDataPoint.d.ts +6 -0
- package/dist/sei-panorama-service/src/services/schemas/PrVelocityIndividualDrilldownResponseDataPoint.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/WorkCompletedDrilldownResponseDataPoint.d.ts +6 -0
- package/dist/sei-panorama-service/src/services/schemas/WorkCompletedIndividualDrilldownResponseDataPoint.d.ts +2 -1
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
1
|
export interface IndividualDrilldownDataPoint {
|
2
|
-
metricType?: '
|
2
|
+
metricType?: 'PR_VELOCITY' | 'WORK_COMPLETED';
|
3
3
|
type: string;
|
4
4
|
}
|
package/dist/sei-panorama-service/src/services/schemas/PrVelocityDrilldownResponseDataPoint.d.ts
CHANGED
@@ -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
|
*/
|
package/dist/sei-panorama-service/src/services/schemas/WorkCompletedDrilldownResponseDataPoint.d.ts
CHANGED
@@ -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?: '
|
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.
|
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",
|