@harnessio/react-sei-panorama-service-client 0.10.12 → 0.10.13
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/hooks/useProductivityControllerPrVelocityMutation.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useProductivityControllerPrVelocityMutation.js +1 -1
- package/dist/sei-panorama-service/src/services/schemas/SummaryValue.d.ts +2 -0
- package/dist/sei-panorama-service/src/services/schemas/SummaryValue.js +0 -3
- package/package.json +1 -1
@@ -15,6 +15,6 @@ export interface ProductivityControllerPrVelocityProps extends Omit<FetcherOptio
|
|
15
15
|
}
|
16
16
|
export declare function productivityControllerPrVelocity(props: ProductivityControllerPrVelocityProps): Promise<ProductivityControllerPrVelocityOkResponse>;
|
17
17
|
/**
|
18
|
-
* Get
|
18
|
+
* Get PR Velocity for a collection
|
19
19
|
*/
|
20
20
|
export declare function useProductivityControllerPrVelocityMutation(options?: Omit<UseMutationOptions<ProductivityControllerPrVelocityOkResponse, ProductivityControllerPrVelocityErrorResponse, ProductivityControllerPrVelocityProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<ProductivityControllerPrVelocityOkResponse, string, ProductivityControllerPrVelocityProps, unknown>;
|
package/dist/sei-panorama-service/src/services/hooks/useProductivityControllerPrVelocityMutation.js
CHANGED
@@ -7,7 +7,7 @@ export function productivityControllerPrVelocity(props) {
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/productivity/volume/pr_velocity`, method: 'POST' }, props));
|
8
8
|
}
|
9
9
|
/**
|
10
|
-
* Get
|
10
|
+
* Get PR Velocity for a collection
|
11
11
|
*/
|
12
12
|
export function useProductivityControllerPrVelocityMutation(options) {
|
13
13
|
return useMutation((mutateProps) => productivityControllerPrVelocity(mutateProps), options);
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import type { Stage } from '../schemas/Stage';
|
1
2
|
export interface SummaryValue {
|
2
3
|
/**
|
3
4
|
* @format int32
|
@@ -24,4 +25,5 @@ export interface SummaryValue {
|
|
24
25
|
*/
|
25
26
|
p95?: number;
|
26
27
|
rating?: 'DANGER' | 'ELITE' | 'FAIR' | 'NEEDS_IMPROVEMENT' | 'SUCCESS' | 'WARNING';
|
28
|
+
stageBreakdown?: Stage[];
|
27
29
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
3
|
-
"version": "0.10.
|
3
|
+
"version": "0.10.13",
|
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",
|