@harnessio/react-sei-panorama-service-client 0.17.3 → 0.17.4
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/index.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/DoraLeadTimePrDrilldownRequest.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/DoraMetricDrilldownRequest.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/PrCycleTimeDrilldownResponseDataPoint.d.ts +8 -0
- package/dist/sei-panorama-service/src/services/schemas/ProductivityDataPoint.d.ts +5 -8
- package/dist/sei-panorama-service/src/services/schemas/ProductivityDataPoint.js +0 -3
- package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureBreakdownResponseDataPoint.d.ts +3 -6
- package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureBreakdownResponseDataPoint.js +0 -3
- package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureRequestDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/TotalStatisticCount.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/schemas/TotalStatisticCount.js +4 -0
- package/package.json +1 -1
@@ -154,6 +154,7 @@ export type { StageDto } from './schemas/StageDto';
|
|
154
154
|
export type { SummaryCard } from './schemas/SummaryCard';
|
155
155
|
export type { SummaryValue } from './schemas/SummaryValue';
|
156
156
|
export type { SummaryValueChange } from './schemas/SummaryValueChange';
|
157
|
+
export type { TotalStatisticCount } from './schemas/TotalStatisticCount';
|
157
158
|
export type { WorkCompletedDrilldownResponseDataPoint } from './schemas/WorkCompletedDrilldownResponseDataPoint';
|
158
159
|
export type { WorkCompletedIndividualDrilldownResponseDataPoint } from './schemas/WorkCompletedIndividualDrilldownResponseDataPoint';
|
159
160
|
export type { WorkType } from './schemas/WorkType';
|
@@ -2,6 +2,6 @@ import type { PaginationRequest } from '../schemas/PaginationRequest';
|
|
2
2
|
export interface DoraLeadTimePrDrilldownRequest {
|
3
3
|
pagination?: PaginationRequest;
|
4
4
|
prId: string;
|
5
|
-
sortBy?: 'COMMITTED_AT' | 'COMMIT_AUTHOR' | 'CONTRIBUTORS' | 'PR_CREATED_AT' | 'PR_MERGED_AT' | 'PR_NUMBER' | 'TOTAL_CODE_CHANGES' | 'TOTAL_LEADTIME' | 'WORKITEM_CLOSED_AT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_TIME_TO_COMPLETE';
|
5
|
+
sortBy?: 'AVG_TIME_TO_MERGE' | 'COMMITTED_AT' | 'COMMIT_AUTHOR' | 'CONTRIBUTORS' | 'NUMBER_OF_PRS' | 'NUMER_OF_WORKITEMS' | 'PR_CREATED_AT' | 'PR_CYCLE_TIME_AUTHOR' | 'PR_CYCLE_TIME_CHANGES' | 'PR_CYCLE_TIME_CREATED_AT' | 'PR_CYCLE_TIME_CYCLE_TIME' | 'PR_CYCLE_TIME_MERGED_AT' | 'PR_CYCLE_TIME_PR_ID' | 'PR_CYCLE_TIME_REPOSITORY' | 'PR_CYCLE_TIME_TITLE' | 'PR_MERGED_AT' | 'PR_NUMBER' | 'TOTAL_CODE_CHANGES' | 'TOTAL_LEADTIME' | 'WORKITEM_CLOSED_AT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_TIME_TO_COMPLETE';
|
6
6
|
sortByCriteria?: 'ASC' | 'DESC';
|
7
7
|
}
|
@@ -11,6 +11,6 @@ export interface DoraMetricDrilldownRequest {
|
|
11
11
|
dateStart: string;
|
12
12
|
pagination?: PaginationRequest;
|
13
13
|
prId?: string;
|
14
|
-
sortBy?: 'COMMITTED_AT' | 'COMMIT_AUTHOR' | 'CONTRIBUTORS' | 'PR_CREATED_AT' | 'PR_MERGED_AT' | 'PR_NUMBER' | 'TOTAL_CODE_CHANGES' | 'TOTAL_LEADTIME' | 'WORKITEM_CLOSED_AT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_TIME_TO_COMPLETE';
|
14
|
+
sortBy?: 'AVG_TIME_TO_MERGE' | 'COMMITTED_AT' | 'COMMIT_AUTHOR' | 'CONTRIBUTORS' | 'NUMBER_OF_PRS' | 'NUMER_OF_WORKITEMS' | 'PR_CREATED_AT' | 'PR_CYCLE_TIME_AUTHOR' | 'PR_CYCLE_TIME_CHANGES' | 'PR_CYCLE_TIME_CREATED_AT' | 'PR_CYCLE_TIME_CYCLE_TIME' | 'PR_CYCLE_TIME_MERGED_AT' | 'PR_CYCLE_TIME_PR_ID' | 'PR_CYCLE_TIME_REPOSITORY' | 'PR_CYCLE_TIME_TITLE' | 'PR_MERGED_AT' | 'PR_NUMBER' | 'TOTAL_CODE_CHANGES' | 'TOTAL_LEADTIME' | 'WORKITEM_CLOSED_AT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_TIME_TO_COMPLETE';
|
15
15
|
sortByCriteria?: 'ASC' | 'DESC';
|
16
16
|
}
|
package/dist/sei-panorama-service/src/services/schemas/PrCycleTimeDrilldownResponseDataPoint.d.ts
CHANGED
@@ -8,6 +8,14 @@ export interface PrCycleTimeDrilldownResponseDataPoint extends DrilldownDataPoin
|
|
8
8
|
* @format date-time
|
9
9
|
*/
|
10
10
|
createdDate?: string;
|
11
|
+
/**
|
12
|
+
* @format double
|
13
|
+
*/
|
14
|
+
firstCommentTime?: number;
|
15
|
+
/**
|
16
|
+
* @format double
|
17
|
+
*/
|
18
|
+
lastApprovalTime?: number;
|
11
19
|
/**
|
12
20
|
* @format date-time
|
13
21
|
*/
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import type { TotalStatisticCount } from '../schemas/TotalStatisticCount';
|
1
2
|
export interface ProductivityDataPoint {
|
2
3
|
/**
|
3
4
|
* @format date-time
|
@@ -12,6 +13,9 @@ export interface ProductivityDataPoint {
|
|
12
13
|
* @format date-time
|
13
14
|
*/
|
14
15
|
startDate?: string;
|
16
|
+
statisticGranularProductivityDataPoints?: {
|
17
|
+
[key: string]: TotalStatisticCount;
|
18
|
+
};
|
15
19
|
/**
|
16
20
|
* @format double
|
17
21
|
*/
|
@@ -20,12 +24,5 @@ export interface ProductivityDataPoint {
|
|
20
24
|
* @format double
|
21
25
|
*/
|
22
26
|
totalEntries?: number;
|
23
|
-
|
24
|
-
[key: string]: {
|
25
|
-
[key: string]: number;
|
26
|
-
};
|
27
|
-
};
|
28
|
-
totalStatisticCount?: {
|
29
|
-
[key: string]: number;
|
30
|
-
};
|
27
|
+
totalStatisticCount?: TotalStatisticCount;
|
31
28
|
}
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import type { TotalStatisticCount } from '../schemas/TotalStatisticCount';
|
1
2
|
export interface ProductivityFeatureBreakdownResponseDataPoint {
|
2
3
|
/**
|
3
4
|
* @format int64
|
@@ -17,15 +18,11 @@ export interface ProductivityFeatureBreakdownResponseDataPoint {
|
|
17
18
|
*/
|
18
19
|
startDate?: string;
|
19
20
|
statisticGranularProductivityDataPoints?: {
|
20
|
-
[key: string]:
|
21
|
-
[key: string]: number;
|
22
|
-
};
|
21
|
+
[key: string]: TotalStatisticCount;
|
23
22
|
};
|
24
23
|
/**
|
25
24
|
* @format double
|
26
25
|
*/
|
27
26
|
totalCount?: number;
|
28
|
-
totalStatisticCount?:
|
29
|
-
[key: string]: number;
|
30
|
-
};
|
27
|
+
totalStatisticCount?: TotalStatisticCount;
|
31
28
|
}
|
@@ -18,7 +18,7 @@ export interface ProductivityFeatureRequestDto {
|
|
18
18
|
* @format int32
|
19
19
|
*/
|
20
20
|
page_size?: number;
|
21
|
-
sortBy?: 'COMMITTED_AT' | 'COMMIT_AUTHOR' | 'CONTRIBUTORS' | 'PR_CREATED_AT' | 'PR_MERGED_AT' | 'PR_NUMBER' | 'TOTAL_CODE_CHANGES' | 'TOTAL_LEADTIME' | 'WORKITEM_CLOSED_AT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_TIME_TO_COMPLETE';
|
21
|
+
sortBy?: 'AVG_TIME_TO_MERGE' | 'COMMITTED_AT' | 'COMMIT_AUTHOR' | 'CONTRIBUTORS' | 'NUMBER_OF_PRS' | 'NUMER_OF_WORKITEMS' | 'PR_CREATED_AT' | 'PR_CYCLE_TIME_AUTHOR' | 'PR_CYCLE_TIME_CHANGES' | 'PR_CYCLE_TIME_CREATED_AT' | 'PR_CYCLE_TIME_CYCLE_TIME' | 'PR_CYCLE_TIME_MERGED_AT' | 'PR_CYCLE_TIME_PR_ID' | 'PR_CYCLE_TIME_REPOSITORY' | 'PR_CYCLE_TIME_TITLE' | 'PR_MERGED_AT' | 'PR_NUMBER' | 'TOTAL_CODE_CHANGES' | 'TOTAL_LEADTIME' | 'WORKITEM_CLOSED_AT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_TIME_TO_COMPLETE';
|
22
22
|
sortByCriteria?: 'ASC' | 'DESC';
|
23
23
|
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
24
24
|
/**
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
3
|
-
"version": "0.17.
|
3
|
+
"version": "0.17.4",
|
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",
|