@harnessio/react-sei-panorama-service-client 0.10.5 → 0.10.7
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/useDoraControllerChangeFailureRateBreakdownQuery.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/hooks/useDoraControllerChangeFailureRateBreakdownQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useDoraControllerChangeFailureRateQuery.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/hooks/{useDoraControllerDeploymentFrequencyBreakdownMutation.d.ts → useDoraControllerDeploymentFrequencyBreakdownQuery.d.ts} +5 -5
- package/dist/sei-panorama-service/src/services/hooks/{useDoraControllerDeploymentFrequencyBreakdownMutation.js → useDoraControllerDeploymentFrequencyBreakdownQuery.js} +3 -3
- package/dist/sei-panorama-service/src/services/hooks/{useDoraControllerLeadTimeStagesMutation.d.ts → useDoraControllerLeadTimeStagesQuery.d.ts} +5 -5
- package/dist/sei-panorama-service/src/services/hooks/{useDoraControllerLeadTimeStagesMutation.js → useDoraControllerLeadTimeStagesQuery.js} +3 -3
- package/dist/sei-panorama-service/src/services/hooks/useDoraControllerMttrBreakdownMutation.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/hooks/useDoraControllerMttrBreakdownMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/index.d.ts +11 -4
- package/dist/sei-panorama-service/src/services/index.js +4 -2
- package/dist/sei-panorama-service/src/services/schemas/DataPointChangeFailureRate.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/schemas/DataPointChangeFailureRate.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/DoraChangeFailureRateMetric.d.ts +21 -0
- package/dist/sei-panorama-service/src/services/schemas/DoraChangeFailureRateMetric.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/DoraChangeFailureRateMetricBreakdown.d.ts +12 -0
- package/dist/sei-panorama-service/src/services/schemas/DoraChangeFailureRateMetricBreakdown.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/DoraMetricBreakdown.d.ts +2 -0
- package/package.json +1 -1
@@ -0,0 +1,22 @@
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
2
|
+
import type { DoraChangeFailureRateMetricBreakdown } from '../schemas/DoraChangeFailureRateMetricBreakdown';
|
3
|
+
import type { DoraRequest } from '../schemas/DoraRequest';
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
6
|
+
export interface DoraControllerChangeFailureRateBreakdownQueryQueryParams {
|
7
|
+
account: string;
|
8
|
+
projectIdentifier: string;
|
9
|
+
orgIdentifier: string;
|
10
|
+
}
|
11
|
+
export type DoraControllerChangeFailureRateBreakdownRequestBody = DoraRequest;
|
12
|
+
export type DoraControllerChangeFailureRateBreakdownOkResponse = ResponseWithPagination<DoraChangeFailureRateMetricBreakdown[]>;
|
13
|
+
export type DoraControllerChangeFailureRateBreakdownErrorResponse = string;
|
14
|
+
export interface DoraControllerChangeFailureRateBreakdownProps extends Omit<FetcherOptions<DoraControllerChangeFailureRateBreakdownQueryQueryParams, DoraControllerChangeFailureRateBreakdownRequestBody>, 'url'> {
|
15
|
+
queryParams: DoraControllerChangeFailureRateBreakdownQueryQueryParams;
|
16
|
+
body: DoraControllerChangeFailureRateBreakdownRequestBody;
|
17
|
+
}
|
18
|
+
export declare function doraControllerChangeFailureRateBreakdown(props: DoraControllerChangeFailureRateBreakdownProps): Promise<DoraControllerChangeFailureRateBreakdownOkResponse>;
|
19
|
+
/**
|
20
|
+
* Get change failure rate for a project
|
21
|
+
*/
|
22
|
+
export declare function useDoraControllerChangeFailureRateBreakdownQuery(props: DoraControllerChangeFailureRateBreakdownProps, options?: Omit<UseQueryOptions<DoraControllerChangeFailureRateBreakdownOkResponse, DoraControllerChangeFailureRateBreakdownErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<DoraControllerChangeFailureRateBreakdownOkResponse, string>;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
/* eslint-disable */
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
3
|
+
// Please do not modify this code directly.
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
6
|
+
export function doraControllerChangeFailureRateBreakdown(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/insights/dora/changeFailureRate/breakdown`, method: 'POST' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get change failure rate for a project
|
11
|
+
*/
|
12
|
+
export function useDoraControllerChangeFailureRateBreakdownQuery(props, options) {
|
13
|
+
return useQuery(['DoraControllerChangeFailureRateBreakdown', props.queryParams, props.body], ({ signal }) => doraControllerChangeFailureRateBreakdown(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
package/dist/sei-panorama-service/src/services/hooks/useDoraControllerChangeFailureRateQuery.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
2
|
-
import type {
|
2
|
+
import type { DoraChangeFailureRateMetric } from '../schemas/DoraChangeFailureRateMetric';
|
3
3
|
import type { DoraRequest } from '../schemas/DoraRequest';
|
4
4
|
import type { ResponseWithPagination } from '../helpers';
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
@@ -9,7 +9,7 @@ export interface DoraControllerChangeFailureRateQueryQueryParams {
|
|
9
9
|
orgIdentifier: string;
|
10
10
|
}
|
11
11
|
export type DoraControllerChangeFailureRateRequestBody = DoraRequest;
|
12
|
-
export type DoraControllerChangeFailureRateOkResponse = ResponseWithPagination<
|
12
|
+
export type DoraControllerChangeFailureRateOkResponse = ResponseWithPagination<DoraChangeFailureRateMetric>;
|
13
13
|
export type DoraControllerChangeFailureRateErrorResponse = string;
|
14
14
|
export interface DoraControllerChangeFailureRateProps extends Omit<FetcherOptions<DoraControllerChangeFailureRateQueryQueryParams, DoraControllerChangeFailureRateRequestBody>, 'url'> {
|
15
15
|
queryParams: DoraControllerChangeFailureRateQueryQueryParams;
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import {
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
2
2
|
import type { DoraDeploymentFrequencyMetricBreakdown } from '../schemas/DoraDeploymentFrequencyMetricBreakdown';
|
3
3
|
import type { DoraRequest } from '../schemas/DoraRequest';
|
4
4
|
import type { ResponseWithPagination } from '../helpers';
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
6
|
-
export interface
|
6
|
+
export interface DoraControllerDeploymentFrequencyBreakdownQueryQueryParams {
|
7
7
|
account: string;
|
8
8
|
projectIdentifier: string;
|
9
9
|
orgIdentifier: string;
|
@@ -11,12 +11,12 @@ export interface DoraControllerDeploymentFrequencyBreakdownMutationQueryParams {
|
|
11
11
|
export type DoraControllerDeploymentFrequencyBreakdownRequestBody = DoraRequest;
|
12
12
|
export type DoraControllerDeploymentFrequencyBreakdownOkResponse = ResponseWithPagination<DoraDeploymentFrequencyMetricBreakdown[]>;
|
13
13
|
export type DoraControllerDeploymentFrequencyBreakdownErrorResponse = string;
|
14
|
-
export interface DoraControllerDeploymentFrequencyBreakdownProps extends Omit<FetcherOptions<
|
15
|
-
queryParams:
|
14
|
+
export interface DoraControllerDeploymentFrequencyBreakdownProps extends Omit<FetcherOptions<DoraControllerDeploymentFrequencyBreakdownQueryQueryParams, DoraControllerDeploymentFrequencyBreakdownRequestBody>, 'url'> {
|
15
|
+
queryParams: DoraControllerDeploymentFrequencyBreakdownQueryQueryParams;
|
16
16
|
body: DoraControllerDeploymentFrequencyBreakdownRequestBody;
|
17
17
|
}
|
18
18
|
export declare function doraControllerDeploymentFrequencyBreakdown(props: DoraControllerDeploymentFrequencyBreakdownProps): Promise<DoraControllerDeploymentFrequencyBreakdownOkResponse>;
|
19
19
|
/**
|
20
20
|
* Get deployment frequency breakdown for a project
|
21
21
|
*/
|
22
|
-
export declare function
|
22
|
+
export declare function useDoraControllerDeploymentFrequencyBreakdownQuery(props: DoraControllerDeploymentFrequencyBreakdownProps, options?: Omit<UseQueryOptions<DoraControllerDeploymentFrequencyBreakdownOkResponse, DoraControllerDeploymentFrequencyBreakdownErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<DoraControllerDeploymentFrequencyBreakdownOkResponse, string>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
/* eslint-disable */
|
2
2
|
// This code is autogenerated using @harnessio/oats-cli.
|
3
3
|
// Please do not modify this code directly.
|
4
|
-
import {
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
6
6
|
export function doraControllerDeploymentFrequencyBreakdown(props) {
|
7
7
|
return fetcher(Object.assign({ url: `/v2/insights/dora/deploymentFrequency/breakdown`, method: 'POST' }, props));
|
@@ -9,6 +9,6 @@ export function doraControllerDeploymentFrequencyBreakdown(props) {
|
|
9
9
|
/**
|
10
10
|
* Get deployment frequency breakdown for a project
|
11
11
|
*/
|
12
|
-
export function
|
13
|
-
return
|
12
|
+
export function useDoraControllerDeploymentFrequencyBreakdownQuery(props, options) {
|
13
|
+
return useQuery(['DoraControllerDeploymentFrequencyBreakdown', props.queryParams, props.body], ({ signal }) => doraControllerDeploymentFrequencyBreakdown(Object.assign(Object.assign({}, props), { signal })), options);
|
14
14
|
}
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import {
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
2
2
|
import type { DoraMetric } from '../schemas/DoraMetric';
|
3
3
|
import type { DoraRequest } from '../schemas/DoraRequest';
|
4
4
|
import type { ResponseWithPagination } from '../helpers';
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
6
|
-
export interface
|
6
|
+
export interface DoraControllerLeadTimeStagesQueryQueryParams {
|
7
7
|
account: string;
|
8
8
|
projectIdentifier: string;
|
9
9
|
orgIdentifier: string;
|
@@ -11,12 +11,12 @@ export interface DoraControllerLeadTimeStagesMutationQueryParams {
|
|
11
11
|
export type DoraControllerLeadTimeStagesRequestBody = DoraRequest;
|
12
12
|
export type DoraControllerLeadTimeStagesOkResponse = ResponseWithPagination<DoraMetric>;
|
13
13
|
export type DoraControllerLeadTimeStagesErrorResponse = string;
|
14
|
-
export interface DoraControllerLeadTimeStagesProps extends Omit<FetcherOptions<
|
15
|
-
queryParams:
|
14
|
+
export interface DoraControllerLeadTimeStagesProps extends Omit<FetcherOptions<DoraControllerLeadTimeStagesQueryQueryParams, DoraControllerLeadTimeStagesRequestBody>, 'url'> {
|
15
|
+
queryParams: DoraControllerLeadTimeStagesQueryQueryParams;
|
16
16
|
body: DoraControllerLeadTimeStagesRequestBody;
|
17
17
|
}
|
18
18
|
export declare function doraControllerLeadTimeStages(props: DoraControllerLeadTimeStagesProps): Promise<DoraControllerLeadTimeStagesOkResponse>;
|
19
19
|
/**
|
20
20
|
* Get lead time stages for a project
|
21
21
|
*/
|
22
|
-
export declare function
|
22
|
+
export declare function useDoraControllerLeadTimeStagesQuery(props: DoraControllerLeadTimeStagesProps, options?: Omit<UseQueryOptions<DoraControllerLeadTimeStagesOkResponse, DoraControllerLeadTimeStagesErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<DoraControllerLeadTimeStagesOkResponse, string>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
/* eslint-disable */
|
2
2
|
// This code is autogenerated using @harnessio/oats-cli.
|
3
3
|
// Please do not modify this code directly.
|
4
|
-
import {
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
6
6
|
export function doraControllerLeadTimeStages(props) {
|
7
7
|
return fetcher(Object.assign({ url: `/v2/insights/dora/leadtime/stages`, method: 'POST' }, props));
|
@@ -9,6 +9,6 @@ export function doraControllerLeadTimeStages(props) {
|
|
9
9
|
/**
|
10
10
|
* Get lead time stages for a project
|
11
11
|
*/
|
12
|
-
export function
|
13
|
-
return
|
12
|
+
export function useDoraControllerLeadTimeStagesQuery(props, options) {
|
13
|
+
return useQuery(['DoraControllerLeadTimeStages', props.queryParams, props.body], ({ signal }) => doraControllerLeadTimeStages(Object.assign(Object.assign({}, props), { signal })), options);
|
14
14
|
}
|
package/dist/sei-panorama-service/src/services/hooks/useDoraControllerMttrBreakdownMutation.d.ts
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
2
|
+
import type { DataPointBreakdown } from '../schemas/DataPointBreakdown';
|
3
|
+
import type { DoraRequest } from '../schemas/DoraRequest';
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
6
|
+
export interface DoraControllerMttrBreakdownMutationQueryParams {
|
7
|
+
account: string;
|
8
|
+
projectIdentifier: string;
|
9
|
+
orgIdentifier: string;
|
10
|
+
}
|
11
|
+
export type DoraControllerMttrBreakdownRequestBody = DoraRequest;
|
12
|
+
export type DoraControllerMttrBreakdownOkResponse = ResponseWithPagination<DataPointBreakdown>;
|
13
|
+
export type DoraControllerMttrBreakdownErrorResponse = string;
|
14
|
+
export interface DoraControllerMttrBreakdownProps extends Omit<FetcherOptions<DoraControllerMttrBreakdownMutationQueryParams, DoraControllerMttrBreakdownRequestBody>, 'url'> {
|
15
|
+
queryParams: DoraControllerMttrBreakdownMutationQueryParams;
|
16
|
+
body: DoraControllerMttrBreakdownRequestBody;
|
17
|
+
}
|
18
|
+
export declare function doraControllerMttrBreakdown(props: DoraControllerMttrBreakdownProps): Promise<DoraControllerMttrBreakdownOkResponse>;
|
19
|
+
/**
|
20
|
+
* Get Mean time to restore breakdown for a project
|
21
|
+
*/
|
22
|
+
export declare function useDoraControllerMttrBreakdownMutation(options?: Omit<UseMutationOptions<DoraControllerMttrBreakdownOkResponse, DoraControllerMttrBreakdownErrorResponse, DoraControllerMttrBreakdownProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DoraControllerMttrBreakdownOkResponse, string, DoraControllerMttrBreakdownProps, unknown>;
|
package/dist/sei-panorama-service/src/services/hooks/useDoraControllerMttrBreakdownMutation.js
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
/* eslint-disable */
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
3
|
+
// Please do not modify this code directly.
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
6
|
+
export function doraControllerMttrBreakdown(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/insights/dora/mttr/breakdown`, method: 'POST' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get Mean time to restore breakdown for a project
|
11
|
+
*/
|
12
|
+
export function useDoraControllerMttrBreakdownMutation(options) {
|
13
|
+
return useMutation((mutateProps) => doraControllerMttrBreakdown(mutateProps), options);
|
14
|
+
}
|
@@ -9,18 +9,22 @@ export type { CollectionControllerListErrorResponse, CollectionControllerListOkR
|
|
9
9
|
export { collectionControllerList, useCollectionControllerListQuery, } from './hooks/useCollectionControllerListQuery';
|
10
10
|
export type { DoraControllerBreakdownErrorResponse, DoraControllerBreakdownOkResponse, DoraControllerBreakdownProps, DoraControllerBreakdownQueryQueryParams, DoraControllerBreakdownRequestBody, } from './hooks/useDoraControllerBreakdownQuery';
|
11
11
|
export { doraControllerBreakdown, useDoraControllerBreakdownQuery, } from './hooks/useDoraControllerBreakdownQuery';
|
12
|
+
export type { DoraControllerChangeFailureRateBreakdownErrorResponse, DoraControllerChangeFailureRateBreakdownOkResponse, DoraControllerChangeFailureRateBreakdownProps, DoraControllerChangeFailureRateBreakdownQueryQueryParams, DoraControllerChangeFailureRateBreakdownRequestBody, } from './hooks/useDoraControllerChangeFailureRateBreakdownQuery';
|
13
|
+
export { doraControllerChangeFailureRateBreakdown, useDoraControllerChangeFailureRateBreakdownQuery, } from './hooks/useDoraControllerChangeFailureRateBreakdownQuery';
|
12
14
|
export type { DoraControllerChangeFailureRateErrorResponse, DoraControllerChangeFailureRateOkResponse, DoraControllerChangeFailureRateProps, DoraControllerChangeFailureRateQueryQueryParams, DoraControllerChangeFailureRateRequestBody, } from './hooks/useDoraControllerChangeFailureRateQuery';
|
13
15
|
export { doraControllerChangeFailureRate, useDoraControllerChangeFailureRateQuery, } from './hooks/useDoraControllerChangeFailureRateQuery';
|
14
|
-
export type { DoraControllerDeploymentFrequencyBreakdownErrorResponse,
|
15
|
-
export { doraControllerDeploymentFrequencyBreakdown,
|
16
|
+
export type { DoraControllerDeploymentFrequencyBreakdownErrorResponse, DoraControllerDeploymentFrequencyBreakdownOkResponse, DoraControllerDeploymentFrequencyBreakdownProps, DoraControllerDeploymentFrequencyBreakdownQueryQueryParams, DoraControllerDeploymentFrequencyBreakdownRequestBody, } from './hooks/useDoraControllerDeploymentFrequencyBreakdownQuery';
|
17
|
+
export { doraControllerDeploymentFrequencyBreakdown, useDoraControllerDeploymentFrequencyBreakdownQuery, } from './hooks/useDoraControllerDeploymentFrequencyBreakdownQuery';
|
16
18
|
export type { DoraControllerDeploymentFrequencyErrorResponse, DoraControllerDeploymentFrequencyOkResponse, DoraControllerDeploymentFrequencyProps, DoraControllerDeploymentFrequencyQueryQueryParams, DoraControllerDeploymentFrequencyRequestBody, } from './hooks/useDoraControllerDeploymentFrequencyQuery';
|
17
19
|
export { doraControllerDeploymentFrequency, useDoraControllerDeploymentFrequencyQuery, } from './hooks/useDoraControllerDeploymentFrequencyQuery';
|
18
20
|
export type { DoraControllerLeadTimeErrorResponse, DoraControllerLeadTimeOkResponse, DoraControllerLeadTimeProps, DoraControllerLeadTimeQueryQueryParams, DoraControllerLeadTimeRequestBody, } from './hooks/useDoraControllerLeadTimeQuery';
|
19
21
|
export { doraControllerLeadTime, useDoraControllerLeadTimeQuery, } from './hooks/useDoraControllerLeadTimeQuery';
|
20
|
-
export type { DoraControllerLeadTimeStagesErrorResponse,
|
21
|
-
export { doraControllerLeadTimeStages,
|
22
|
+
export type { DoraControllerLeadTimeStagesErrorResponse, DoraControllerLeadTimeStagesOkResponse, DoraControllerLeadTimeStagesProps, DoraControllerLeadTimeStagesQueryQueryParams, DoraControllerLeadTimeStagesRequestBody, } from './hooks/useDoraControllerLeadTimeStagesQuery';
|
23
|
+
export { doraControllerLeadTimeStages, useDoraControllerLeadTimeStagesQuery, } from './hooks/useDoraControllerLeadTimeStagesQuery';
|
22
24
|
export type { DoraControllerMeanTimeRestoreErrorResponse, DoraControllerMeanTimeRestoreOkResponse, DoraControllerMeanTimeRestoreProps, DoraControllerMeanTimeRestoreQueryQueryParams, DoraControllerMeanTimeRestoreRequestBody, } from './hooks/useDoraControllerMeanTimeRestoreQuery';
|
23
25
|
export { doraControllerMeanTimeRestore, useDoraControllerMeanTimeRestoreQuery, } from './hooks/useDoraControllerMeanTimeRestoreQuery';
|
26
|
+
export type { DoraControllerMttrBreakdownErrorResponse, DoraControllerMttrBreakdownMutationQueryParams, DoraControllerMttrBreakdownOkResponse, DoraControllerMttrBreakdownProps, DoraControllerMttrBreakdownRequestBody, } from './hooks/useDoraControllerMttrBreakdownMutation';
|
27
|
+
export { doraControllerMttrBreakdown, useDoraControllerMttrBreakdownMutation, } from './hooks/useDoraControllerMttrBreakdownMutation';
|
24
28
|
export type { DoraControllerSummaryErrorResponse, DoraControllerSummaryOkResponse, DoraControllerSummaryProps, DoraControllerSummaryQueryQueryParams, DoraControllerSummaryRequestBody, } from './hooks/useDoraControllerSummaryQuery';
|
25
29
|
export { doraControllerSummary, useDoraControllerSummaryQuery, } from './hooks/useDoraControllerSummaryQuery';
|
26
30
|
export type { JiraIssuesControllerGetJiraIssueCountErrorResponse, JiraIssuesControllerGetJiraIssueCountOkResponse, JiraIssuesControllerGetJiraIssueCountProps, } from './hooks/useJiraIssuesControllerGetJiraIssueCountQuery';
|
@@ -32,9 +36,12 @@ export type { CollectionObject } from './schemas/CollectionObject';
|
|
32
36
|
export type { CollectionTree } from './schemas/CollectionTree';
|
33
37
|
export type { DataPoint } from './schemas/DataPoint';
|
34
38
|
export type { DataPointBreakdown } from './schemas/DataPointBreakdown';
|
39
|
+
export type { DataPointChangeFailureRate } from './schemas/DataPointChangeFailureRate';
|
35
40
|
export type { DataPointDeploymentFrequency } from './schemas/DataPointDeploymentFrequency';
|
36
41
|
export type { DbListResponseCategory } from './schemas/DbListResponseCategory';
|
37
42
|
export type { DbListResponseCollectionTree } from './schemas/DbListResponseCollectionTree';
|
43
|
+
export type { DoraChangeFailureRateMetric } from './schemas/DoraChangeFailureRateMetric';
|
44
|
+
export type { DoraChangeFailureRateMetricBreakdown } from './schemas/DoraChangeFailureRateMetricBreakdown';
|
38
45
|
export type { DoraDeploymentFrequencyMetric } from './schemas/DoraDeploymentFrequencyMetric';
|
39
46
|
export type { DoraDeploymentFrequencyMetricBreakdown } from './schemas/DoraDeploymentFrequencyMetricBreakdown';
|
40
47
|
export type { DoraMetric } from './schemas/DoraMetric';
|
@@ -3,12 +3,14 @@ export { categoryControllerList, useCategoryControllerListQuery, } from './hooks
|
|
3
3
|
export { collectionControllerGetCollectionTree, useCollectionControllerGetCollectionTreeQuery, } from './hooks/useCollectionControllerGetCollectionTreeQuery';
|
4
4
|
export { collectionControllerList, useCollectionControllerListQuery, } from './hooks/useCollectionControllerListQuery';
|
5
5
|
export { doraControllerBreakdown, useDoraControllerBreakdownQuery, } from './hooks/useDoraControllerBreakdownQuery';
|
6
|
+
export { doraControllerChangeFailureRateBreakdown, useDoraControllerChangeFailureRateBreakdownQuery, } from './hooks/useDoraControllerChangeFailureRateBreakdownQuery';
|
6
7
|
export { doraControllerChangeFailureRate, useDoraControllerChangeFailureRateQuery, } from './hooks/useDoraControllerChangeFailureRateQuery';
|
7
|
-
export { doraControllerDeploymentFrequencyBreakdown,
|
8
|
+
export { doraControllerDeploymentFrequencyBreakdown, useDoraControllerDeploymentFrequencyBreakdownQuery, } from './hooks/useDoraControllerDeploymentFrequencyBreakdownQuery';
|
8
9
|
export { doraControllerDeploymentFrequency, useDoraControllerDeploymentFrequencyQuery, } from './hooks/useDoraControllerDeploymentFrequencyQuery';
|
9
10
|
export { doraControllerLeadTime, useDoraControllerLeadTimeQuery, } from './hooks/useDoraControllerLeadTimeQuery';
|
10
|
-
export { doraControllerLeadTimeStages,
|
11
|
+
export { doraControllerLeadTimeStages, useDoraControllerLeadTimeStagesQuery, } from './hooks/useDoraControllerLeadTimeStagesQuery';
|
11
12
|
export { doraControllerMeanTimeRestore, useDoraControllerMeanTimeRestoreQuery, } from './hooks/useDoraControllerMeanTimeRestoreQuery';
|
13
|
+
export { doraControllerMttrBreakdown, useDoraControllerMttrBreakdownMutation, } from './hooks/useDoraControllerMttrBreakdownMutation';
|
12
14
|
export { doraControllerSummary, useDoraControllerSummaryQuery, } from './hooks/useDoraControllerSummaryQuery';
|
13
15
|
export { jiraIssuesControllerGetJiraIssueCount, useJiraIssuesControllerGetJiraIssueCountQuery, } from './hooks/useJiraIssuesControllerGetJiraIssueCountQuery';
|
14
16
|
export { legacyHealthControllerCheck, useLegacyHealthControllerCheckQuery, } from './hooks/useLegacyHealthControllerCheckQuery';
|
@@ -0,0 +1,18 @@
|
|
1
|
+
export interface DataPointChangeFailureRate {
|
2
|
+
/**
|
3
|
+
* @format int32
|
4
|
+
*/
|
5
|
+
deploymentCount?: number;
|
6
|
+
/**
|
7
|
+
* @format date-time
|
8
|
+
*/
|
9
|
+
endDate?: string;
|
10
|
+
/**
|
11
|
+
* @format int32
|
12
|
+
*/
|
13
|
+
failureCount?: number;
|
14
|
+
/**
|
15
|
+
* @format date-time
|
16
|
+
*/
|
17
|
+
startDate?: string;
|
18
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
import type { DataPointChangeFailureRate } from '../schemas/DataPointChangeFailureRate';
|
2
|
+
export interface DoraChangeFailureRateMetric {
|
3
|
+
dataPoints?: DataPointChangeFailureRate[];
|
4
|
+
/**
|
5
|
+
* @format int32
|
6
|
+
*/
|
7
|
+
deploymentCount?: number;
|
8
|
+
/**
|
9
|
+
* @format date-time
|
10
|
+
*/
|
11
|
+
endDate?: string;
|
12
|
+
/**
|
13
|
+
* @format int32
|
14
|
+
*/
|
15
|
+
failureCount?: number;
|
16
|
+
rating?: string;
|
17
|
+
/**
|
18
|
+
* @format date-time
|
19
|
+
*/
|
20
|
+
startDate?: string;
|
21
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import type { DataPoint } from '../schemas/DataPoint';
|
1
2
|
import type { Stage } from '../schemas/Stage';
|
2
3
|
export interface DoraMetricBreakdown {
|
3
4
|
collectionId?: string;
|
@@ -6,6 +7,7 @@ export interface DoraMetricBreakdown {
|
|
6
7
|
* @format int32
|
7
8
|
*/
|
8
9
|
count?: number;
|
10
|
+
dataPoints?: DataPoint[];
|
9
11
|
/**
|
10
12
|
* @format date-time
|
11
13
|
*/
|
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.7",
|
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",
|