@harnessio/react-sei-panorama-service-client 0.18.5 → 0.19.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/hooks/useDeveloperControllerUpdateDeveloperMutation.d.ts +21 -0
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpdateDeveloperMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerMttrBreakdownQuery.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerMttrBreakdownQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerMttrQuery.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerMttrQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerSummaryQuery.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerSummaryQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/{useIntegrationControllerGetFilterValuesMutation.d.ts → useIntegrationControllerGetFilterValuesQuery.d.ts} +5 -5
- package/dist/sei-panorama-service/src/services/hooks/{useIntegrationControllerGetFilterValuesMutation.js → useIntegrationControllerGetFilterValuesQuery.js} +3 -3
- package/dist/sei-panorama-service/src/services/index.d.ts +16 -3
- package/dist/sei-panorama-service/src/services/index.js +5 -1
- package/dist/sei-panorama-service/src/services/schemas/DeveloperCloudIdMapping.d.ts +7 -0
- package/dist/sei-panorama-service/src/services/schemas/DeveloperInfo.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyMttrDataPointBreakdown.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyMttrDataPointBreakdown.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyMttrMetricBreakdown.d.ts +34 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyMttrMetricBreakdown.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencySummaryRequest.d.ts +11 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencySummaryRequest.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationUserInfo.d.ts +0 -10
- package/dist/sei-panorama-service/src/services/schemas/MttrDataPoint.d.ts +30 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrDataPoint.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrMetric.d.ts +33 -0
- package/dist/sei-panorama-service/src/services/schemas/MttrMetric.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamDevelopersDto.d.ts +1 -4
- package/package.json +1 -1
- package/dist/sei-panorama-service/src/services/schemas/Developer.d.ts +0 -33
- /package/dist/sei-panorama-service/src/services/schemas/{Developer.js → DeveloperCloudIdMapping.js} +0 -0
@@ -0,0 +1,21 @@
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
2
|
+
import type { DeveloperCloudIdMapping } from '../schemas/DeveloperCloudIdMapping';
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
5
|
+
export interface DeveloperControllerUpdateDeveloperMutationPathParams {
|
6
|
+
/**
|
7
|
+
* @format int32
|
8
|
+
*/
|
9
|
+
developerRefId: number;
|
10
|
+
}
|
11
|
+
export type DeveloperControllerUpdateDeveloperRequestBody = DeveloperCloudIdMapping[];
|
12
|
+
export type DeveloperControllerUpdateDeveloperOkResponse = ResponseWithPagination<boolean>;
|
13
|
+
export type DeveloperControllerUpdateDeveloperErrorResponse = boolean;
|
14
|
+
export interface DeveloperControllerUpdateDeveloperProps extends DeveloperControllerUpdateDeveloperMutationPathParams, Omit<FetcherOptions<unknown, DeveloperControllerUpdateDeveloperRequestBody>, 'url'> {
|
15
|
+
body: DeveloperControllerUpdateDeveloperRequestBody;
|
16
|
+
}
|
17
|
+
export declare function developerControllerUpdateDeveloper(props: DeveloperControllerUpdateDeveloperProps): Promise<DeveloperControllerUpdateDeveloperOkResponse>;
|
18
|
+
/**
|
19
|
+
* Update a developer's cloud ID mappings for various integrations
|
20
|
+
*/
|
21
|
+
export declare function useDeveloperControllerUpdateDeveloperMutation(options?: Omit<UseMutationOptions<DeveloperControllerUpdateDeveloperOkResponse, DeveloperControllerUpdateDeveloperErrorResponse, DeveloperControllerUpdateDeveloperProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DeveloperControllerUpdateDeveloperOkResponse, boolean, DeveloperControllerUpdateDeveloperProps, unknown>;
|
@@ -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 developerControllerUpdateDeveloper(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/developers/${props.developerRefId}`, method: 'PUT' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Update a developer's cloud ID mappings for various integrations
|
11
|
+
*/
|
12
|
+
export function useDeveloperControllerUpdateDeveloperMutation(options) {
|
13
|
+
return useMutation((mutateProps) => developerControllerUpdateDeveloper(mutateProps), options);
|
14
|
+
}
|
package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerMttrBreakdownQuery.d.ts
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
2
|
+
import type { EfficiencyMttrDataPointBreakdown } from '../schemas/EfficiencyMttrDataPointBreakdown';
|
3
|
+
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
6
|
+
export interface EfficiencyControllerMttrBreakdownQueryQueryParams {
|
7
|
+
account: string;
|
8
|
+
projectIdentifier: string;
|
9
|
+
orgIdentifier: string;
|
10
|
+
}
|
11
|
+
export type EfficiencyControllerMttrBreakdownRequestBody = EfficiencyRequest;
|
12
|
+
export type EfficiencyControllerMttrBreakdownOkResponse = ResponseWithPagination<EfficiencyMttrDataPointBreakdown>;
|
13
|
+
export type EfficiencyControllerMttrBreakdownErrorResponse = string;
|
14
|
+
export interface EfficiencyControllerMttrBreakdownProps extends Omit<FetcherOptions<EfficiencyControllerMttrBreakdownQueryQueryParams, EfficiencyControllerMttrBreakdownRequestBody>, 'url'> {
|
15
|
+
queryParams: EfficiencyControllerMttrBreakdownQueryQueryParams;
|
16
|
+
body: EfficiencyControllerMttrBreakdownRequestBody;
|
17
|
+
}
|
18
|
+
export declare function efficiencyControllerMttrBreakdown(props: EfficiencyControllerMttrBreakdownProps): Promise<EfficiencyControllerMttrBreakdownOkResponse>;
|
19
|
+
/**
|
20
|
+
* Get Mean Time to Restore breakdown for a project
|
21
|
+
*/
|
22
|
+
export declare function useEfficiencyControllerMttrBreakdownQuery(props: EfficiencyControllerMttrBreakdownProps, options?: Omit<UseQueryOptions<EfficiencyControllerMttrBreakdownOkResponse, EfficiencyControllerMttrBreakdownErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<EfficiencyControllerMttrBreakdownOkResponse, string>;
|
package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerMttrBreakdownQuery.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 { useQuery } from '@tanstack/react-query';
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
6
|
+
export function efficiencyControllerMttrBreakdown(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/insights/efficiency/mttr/breakdown`, method: 'POST' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get Mean Time to Restore breakdown for a project
|
11
|
+
*/
|
12
|
+
export function useEfficiencyControllerMttrBreakdownQuery(props, options) {
|
13
|
+
return useQuery(['EfficiencyControllerMttrBreakdown', props.queryParams, props.body], ({ signal }) => efficiencyControllerMttrBreakdown(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
2
|
+
import type { MttrMetric } from '../schemas/MttrMetric';
|
3
|
+
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
6
|
+
export interface EfficiencyControllerMttrQueryQueryParams {
|
7
|
+
account: string;
|
8
|
+
projectIdentifier: string;
|
9
|
+
orgIdentifier: string;
|
10
|
+
}
|
11
|
+
export type EfficiencyControllerMttrRequestBody = EfficiencyRequest;
|
12
|
+
export type EfficiencyControllerMttrOkResponse = ResponseWithPagination<MttrMetric>;
|
13
|
+
export type EfficiencyControllerMttrErrorResponse = string;
|
14
|
+
export interface EfficiencyControllerMttrProps extends Omit<FetcherOptions<EfficiencyControllerMttrQueryQueryParams, EfficiencyControllerMttrRequestBody>, 'url'> {
|
15
|
+
queryParams: EfficiencyControllerMttrQueryQueryParams;
|
16
|
+
body: EfficiencyControllerMttrRequestBody;
|
17
|
+
}
|
18
|
+
export declare function efficiencyControllerMttr(props: EfficiencyControllerMttrProps): Promise<EfficiencyControllerMttrOkResponse>;
|
19
|
+
/**
|
20
|
+
* Get Mean Time to Restore for a project
|
21
|
+
*/
|
22
|
+
export declare function useEfficiencyControllerMttrQuery(props: EfficiencyControllerMttrProps, options?: Omit<UseQueryOptions<EfficiencyControllerMttrOkResponse, EfficiencyControllerMttrErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<EfficiencyControllerMttrOkResponse, 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 efficiencyControllerMttr(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/insights/efficiency/mttr`, method: 'POST' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get Mean Time to Restore for a project
|
11
|
+
*/
|
12
|
+
export function useEfficiencyControllerMttrQuery(props, options) {
|
13
|
+
return useQuery(['EfficiencyControllerMttr', props.queryParams, props.body], ({ signal }) => efficiencyControllerMttr(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
2
|
+
import type { DoraSummaryMetric } from '../schemas/DoraSummaryMetric';
|
3
|
+
import type { EfficiencySummaryRequest } from '../schemas/EfficiencySummaryRequest';
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
6
|
+
export interface EfficiencyControllerSummaryQueryQueryParams {
|
7
|
+
account: string;
|
8
|
+
projectIdentifier: string;
|
9
|
+
orgIdentifier: string;
|
10
|
+
}
|
11
|
+
export type EfficiencyControllerSummaryRequestBody = EfficiencySummaryRequest;
|
12
|
+
export type EfficiencyControllerSummaryOkResponse = ResponseWithPagination<DoraSummaryMetric>;
|
13
|
+
export type EfficiencyControllerSummaryErrorResponse = string;
|
14
|
+
export interface EfficiencyControllerSummaryProps extends Omit<FetcherOptions<EfficiencyControllerSummaryQueryQueryParams, EfficiencyControllerSummaryRequestBody>, 'url'> {
|
15
|
+
queryParams: EfficiencyControllerSummaryQueryQueryParams;
|
16
|
+
body: EfficiencyControllerSummaryRequestBody;
|
17
|
+
}
|
18
|
+
export declare function efficiencyControllerSummary(props: EfficiencyControllerSummaryProps): Promise<EfficiencyControllerSummaryOkResponse>;
|
19
|
+
/**
|
20
|
+
* Get efficiency metrics summary for a project
|
21
|
+
*/
|
22
|
+
export declare function useEfficiencyControllerSummaryQuery(props: EfficiencyControllerSummaryProps, options?: Omit<UseQueryOptions<EfficiencyControllerSummaryOkResponse, EfficiencyControllerSummaryErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<EfficiencyControllerSummaryOkResponse, 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 efficiencyControllerSummary(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/insights/efficiency/summary`, method: 'POST' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get efficiency metrics summary for a project
|
11
|
+
*/
|
12
|
+
export function useEfficiencyControllerSummaryQuery(props, options) {
|
13
|
+
return useQuery(['EfficiencyControllerSummary', props.queryParams, props.body], ({ signal }) => efficiencyControllerSummary(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
@@ -1,19 +1,19 @@
|
|
1
|
-
import {
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
2
2
|
import type { FilterValuesRequestDto } from '../schemas/FilterValuesRequestDto';
|
3
3
|
import type { ResponseWithPagination } from '../helpers';
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
5
|
-
export interface
|
5
|
+
export interface IntegrationControllerGetFilterValuesQueryQueryParams {
|
6
6
|
account: string;
|
7
7
|
}
|
8
8
|
export type IntegrationControllerGetFilterValuesRequestBody = FilterValuesRequestDto;
|
9
9
|
export type IntegrationControllerGetFilterValuesOkResponse = ResponseWithPagination<string[]>;
|
10
10
|
export type IntegrationControllerGetFilterValuesErrorResponse = string[];
|
11
|
-
export interface IntegrationControllerGetFilterValuesProps extends Omit<FetcherOptions<
|
12
|
-
queryParams:
|
11
|
+
export interface IntegrationControllerGetFilterValuesProps extends Omit<FetcherOptions<IntegrationControllerGetFilterValuesQueryQueryParams, IntegrationControllerGetFilterValuesRequestBody>, 'url'> {
|
12
|
+
queryParams: IntegrationControllerGetFilterValuesQueryQueryParams;
|
13
13
|
body: IntegrationControllerGetFilterValuesRequestBody;
|
14
14
|
}
|
15
15
|
export declare function integrationControllerGetFilterValues(props: IntegrationControllerGetFilterValuesProps): Promise<IntegrationControllerGetFilterValuesOkResponse>;
|
16
16
|
/**
|
17
17
|
* Returns a list of distinct values for a specific filter key in an integration.
|
18
18
|
*/
|
19
|
-
export declare function
|
19
|
+
export declare function useIntegrationControllerGetFilterValuesQuery(props: IntegrationControllerGetFilterValuesProps, options?: Omit<UseQueryOptions<IntegrationControllerGetFilterValuesOkResponse, IntegrationControllerGetFilterValuesErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationControllerGetFilterValuesOkResponse, IntegrationControllerGetFilterValuesErrorResponse>;
|
@@ -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 integrationControllerGetFilterValues(props) {
|
7
7
|
return fetcher(Object.assign({ url: `/v2/integrations/filter_values`, method: 'POST' }, props));
|
@@ -9,6 +9,6 @@ export function integrationControllerGetFilterValues(props) {
|
|
9
9
|
/**
|
10
10
|
* Returns a list of distinct values for a specific filter key in an integration.
|
11
11
|
*/
|
12
|
-
export function
|
13
|
-
return
|
12
|
+
export function useIntegrationControllerGetFilterValuesQuery(props, options) {
|
13
|
+
return useQuery(['IntegrationControllerGetFilterValues', props.queryParams, props.body], ({ signal }) => integrationControllerGetFilterValues(Object.assign(Object.assign({}, props), { signal })), options);
|
14
14
|
}
|
@@ -35,6 +35,8 @@ export type { DeveloperControllerGroupDevelopersErrorResponse, DeveloperControll
|
|
35
35
|
export { developerControllerGroupDevelopers, useDeveloperControllerGroupDevelopersMutation, } from './hooks/useDeveloperControllerGroupDevelopersMutation';
|
36
36
|
export type { DeveloperControllerSaveDevelopersErrorResponse, DeveloperControllerSaveDevelopersMutationPathParams, DeveloperControllerSaveDevelopersOkResponse, DeveloperControllerSaveDevelopersProps, DeveloperControllerSaveDevelopersRequestBody, } from './hooks/useDeveloperControllerSaveDevelopersMutation';
|
37
37
|
export { developerControllerSaveDevelopers, useDeveloperControllerSaveDevelopersMutation, } from './hooks/useDeveloperControllerSaveDevelopersMutation';
|
38
|
+
export type { DeveloperControllerUpdateDeveloperErrorResponse, DeveloperControllerUpdateDeveloperMutationPathParams, DeveloperControllerUpdateDeveloperOkResponse, DeveloperControllerUpdateDeveloperProps, DeveloperControllerUpdateDeveloperRequestBody, } from './hooks/useDeveloperControllerUpdateDeveloperMutation';
|
39
|
+
export { developerControllerUpdateDeveloper, useDeveloperControllerUpdateDeveloperMutation, } from './hooks/useDeveloperControllerUpdateDeveloperMutation';
|
38
40
|
export type { DeveloperControllerUploadDeveloperFileErrorResponse, DeveloperControllerUploadDeveloperFileMutationQueryParams, DeveloperControllerUploadDeveloperFileOkResponse, DeveloperControllerUploadDeveloperFileProps, DeveloperControllerUploadDeveloperFileRequestBody, } from './hooks/useDeveloperControllerUploadDeveloperFileMutation';
|
39
41
|
export { developerControllerUploadDeveloperFile, useDeveloperControllerUploadDeveloperFileMutation, } from './hooks/useDeveloperControllerUploadDeveloperFileMutation';
|
40
42
|
export type { DoraControllerBreakdownErrorResponse, DoraControllerBreakdownOkResponse, DoraControllerBreakdownProps, DoraControllerBreakdownQueryQueryParams, DoraControllerBreakdownRequestBody, } from './hooks/useDoraControllerBreakdownQuery';
|
@@ -83,6 +85,12 @@ export type { EfficiencyControllerLeadTimeErrorResponse, EfficiencyControllerLea
|
|
83
85
|
export { efficiencyControllerLeadTime, useEfficiencyControllerLeadTimeQuery, } from './hooks/useEfficiencyControllerLeadTimeQuery';
|
84
86
|
export type { EfficiencyControllerLeadTimeStagesErrorResponse, EfficiencyControllerLeadTimeStagesOkResponse, EfficiencyControllerLeadTimeStagesProps, EfficiencyControllerLeadTimeStagesQueryQueryParams, EfficiencyControllerLeadTimeStagesRequestBody, } from './hooks/useEfficiencyControllerLeadTimeStagesQuery';
|
85
87
|
export { efficiencyControllerLeadTimeStages, useEfficiencyControllerLeadTimeStagesQuery, } from './hooks/useEfficiencyControllerLeadTimeStagesQuery';
|
88
|
+
export type { EfficiencyControllerMttrBreakdownErrorResponse, EfficiencyControllerMttrBreakdownOkResponse, EfficiencyControllerMttrBreakdownProps, EfficiencyControllerMttrBreakdownQueryQueryParams, EfficiencyControllerMttrBreakdownRequestBody, } from './hooks/useEfficiencyControllerMttrBreakdownQuery';
|
89
|
+
export { efficiencyControllerMttrBreakdown, useEfficiencyControllerMttrBreakdownQuery, } from './hooks/useEfficiencyControllerMttrBreakdownQuery';
|
90
|
+
export type { EfficiencyControllerMttrErrorResponse, EfficiencyControllerMttrOkResponse, EfficiencyControllerMttrProps, EfficiencyControllerMttrQueryQueryParams, EfficiencyControllerMttrRequestBody, } from './hooks/useEfficiencyControllerMttrQuery';
|
91
|
+
export { efficiencyControllerMttr, useEfficiencyControllerMttrQuery, } from './hooks/useEfficiencyControllerMttrQuery';
|
92
|
+
export type { EfficiencyControllerSummaryErrorResponse, EfficiencyControllerSummaryOkResponse, EfficiencyControllerSummaryProps, EfficiencyControllerSummaryQueryQueryParams, EfficiencyControllerSummaryRequestBody, } from './hooks/useEfficiencyControllerSummaryQuery';
|
93
|
+
export { efficiencyControllerSummary, useEfficiencyControllerSummaryQuery, } from './hooks/useEfficiencyControllerSummaryQuery';
|
86
94
|
export type { EfficiencyProfileControllerCreateProfileErrorResponse, EfficiencyProfileControllerCreateProfileMutationQueryParams, EfficiencyProfileControllerCreateProfileOkResponse, EfficiencyProfileControllerCreateProfileProps, EfficiencyProfileControllerCreateProfileRequestBody, } from './hooks/useEfficiencyProfileControllerCreateProfileMutation';
|
87
95
|
export { efficiencyProfileControllerCreateProfile, useEfficiencyProfileControllerCreateProfileMutation, } from './hooks/useEfficiencyProfileControllerCreateProfileMutation';
|
88
96
|
export type { EfficiencyProfileControllerDeleteProfileByRefIdErrorResponse, EfficiencyProfileControllerDeleteProfileByRefIdMutationPathParams, EfficiencyProfileControllerDeleteProfileByRefIdMutationQueryParams, EfficiencyProfileControllerDeleteProfileByRefIdOkResponse, EfficiencyProfileControllerDeleteProfileByRefIdProps, } from './hooks/useEfficiencyProfileControllerDeleteProfileByRefIdMutation';
|
@@ -95,8 +103,8 @@ export type { EfficiencyProfileControllerUpdateProfileErrorResponse, EfficiencyP
|
|
95
103
|
export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
96
104
|
export type { ExportControllerExportDataErrorResponse, ExportControllerExportDataMutationQueryParams, ExportControllerExportDataOkResponse, ExportControllerExportDataProps, ExportControllerExportDataRequestBody, } from './hooks/useExportControllerExportDataMutation';
|
97
105
|
export { exportControllerExportData, useExportControllerExportDataMutation, } from './hooks/useExportControllerExportDataMutation';
|
98
|
-
export type { IntegrationControllerGetFilterValuesErrorResponse,
|
99
|
-
export { integrationControllerGetFilterValues,
|
106
|
+
export type { IntegrationControllerGetFilterValuesErrorResponse, IntegrationControllerGetFilterValuesOkResponse, IntegrationControllerGetFilterValuesProps, IntegrationControllerGetFilterValuesQueryQueryParams, IntegrationControllerGetFilterValuesRequestBody, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
|
107
|
+
export { integrationControllerGetFilterValues, useIntegrationControllerGetFilterValuesQuery, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
|
100
108
|
export type { IntegrationControllerListIntegrationsErrorResponse, IntegrationControllerListIntegrationsOkResponse, IntegrationControllerListIntegrationsProps, IntegrationControllerListIntegrationsQueryQueryParams, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
101
109
|
export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
102
110
|
export type { JiraIssuesControllerGetJiraIssueCountErrorResponse, JiraIssuesControllerGetJiraIssueCountOkResponse, JiraIssuesControllerGetJiraIssueCountProps, } from './hooks/useJiraIssuesControllerGetJiraIssueCountQuery';
|
@@ -181,7 +189,7 @@ export type { DataPointChangeFailureRate } from './schemas/DataPointChangeFailur
|
|
181
189
|
export type { DataPointDeploymentFrequency } from './schemas/DataPointDeploymentFrequency';
|
182
190
|
export type { DbListResponseCategory } from './schemas/DbListResponseCategory';
|
183
191
|
export type { DbListResponseCollectionTree } from './schemas/DbListResponseCollectionTree';
|
184
|
-
export type {
|
192
|
+
export type { DeveloperCloudIdMapping } from './schemas/DeveloperCloudIdMapping';
|
185
193
|
export type { DeveloperFieldDto } from './schemas/DeveloperFieldDto';
|
186
194
|
export type { DeveloperFilePreviewDto } from './schemas/DeveloperFilePreviewDto';
|
187
195
|
export type { DeveloperInfo } from './schemas/DeveloperInfo';
|
@@ -216,11 +224,14 @@ export type { EfficiencyLeadTimeDrilldownItem } from './schemas/EfficiencyLeadTi
|
|
216
224
|
export type { EfficiencyLeadTimeDrilldownResponseWrapper } from './schemas/EfficiencyLeadTimeDrilldownResponseWrapper';
|
217
225
|
export type { EfficiencyLttcMetricBreakdown } from './schemas/EfficiencyLttcMetricBreakdown';
|
218
226
|
export type { EfficiencyMetricDrilldownRequest } from './schemas/EfficiencyMetricDrilldownRequest';
|
227
|
+
export type { EfficiencyMttrDataPointBreakdown } from './schemas/EfficiencyMttrDataPointBreakdown';
|
228
|
+
export type { EfficiencyMttrMetricBreakdown } from './schemas/EfficiencyMttrMetricBreakdown';
|
219
229
|
export type { EfficiencyProfileCreateRequestDto } from './schemas/EfficiencyProfileCreateRequestDto';
|
220
230
|
export type { EfficiencyProfileEvent } from './schemas/EfficiencyProfileEvent';
|
221
231
|
export type { EfficiencyProfileResponseDto } from './schemas/EfficiencyProfileResponseDto';
|
222
232
|
export type { EfficiencyRequest } from './schemas/EfficiencyRequest';
|
223
233
|
export type { EfficiencyRequestDto } from './schemas/EfficiencyRequestDto';
|
234
|
+
export type { EfficiencySummaryRequest } from './schemas/EfficiencySummaryRequest';
|
224
235
|
export type { ErrorResponse } from './schemas/ErrorResponse';
|
225
236
|
export type { ExportRequestDto } from './schemas/ExportRequestDto';
|
226
237
|
export type { FeatureDto } from './schemas/FeatureDto';
|
@@ -244,6 +255,8 @@ export type { LtcStageDto } from './schemas/LtcStageDto';
|
|
244
255
|
export type { Metric } from './schemas/Metric';
|
245
256
|
export type { MinimalTeamHierarchyResponseDto } from './schemas/MinimalTeamHierarchyResponseDto';
|
246
257
|
export type { MttrConfigurationDto } from './schemas/MttrConfigurationDto';
|
258
|
+
export type { MttrDataPoint } from './schemas/MttrDataPoint';
|
259
|
+
export type { MttrMetric } from './schemas/MttrMetric';
|
247
260
|
export type { OrgTreeCreateRequestDto } from './schemas/OrgTreeCreateRequestDto';
|
248
261
|
export type { OrgTreeProfileDto } from './schemas/OrgTreeProfileDto';
|
249
262
|
export type { OrgTreeResponseDto } from './schemas/OrgTreeResponseDto';
|
@@ -16,6 +16,7 @@ export { developerControllerGetDevelopers, useDeveloperControllerGetDevelopersQu
|
|
16
16
|
export { developerControllerGetLatestDeveloperSchema, useDeveloperControllerGetLatestDeveloperSchemaQuery, } from './hooks/useDeveloperControllerGetLatestDeveloperSchemaQuery';
|
17
17
|
export { developerControllerGroupDevelopers, useDeveloperControllerGroupDevelopersMutation, } from './hooks/useDeveloperControllerGroupDevelopersMutation';
|
18
18
|
export { developerControllerSaveDevelopers, useDeveloperControllerSaveDevelopersMutation, } from './hooks/useDeveloperControllerSaveDevelopersMutation';
|
19
|
+
export { developerControllerUpdateDeveloper, useDeveloperControllerUpdateDeveloperMutation, } from './hooks/useDeveloperControllerUpdateDeveloperMutation';
|
19
20
|
export { developerControllerUploadDeveloperFile, useDeveloperControllerUploadDeveloperFileMutation, } from './hooks/useDeveloperControllerUploadDeveloperFileMutation';
|
20
21
|
export { doraControllerBreakdown, useDoraControllerBreakdownQuery, } from './hooks/useDoraControllerBreakdownQuery';
|
21
22
|
export { doraControllerChangeFailureRateBreakdown, useDoraControllerChangeFailureRateBreakdownQuery, } from './hooks/useDoraControllerChangeFailureRateBreakdownQuery';
|
@@ -40,13 +41,16 @@ export { efficiencyControllerLeadTimeBreakdown, useEfficiencyControllerLeadTimeB
|
|
40
41
|
export { efficiencyControllerLeadTimeDrilldown, useEfficiencyControllerLeadTimeDrilldownQuery, } from './hooks/useEfficiencyControllerLeadTimeDrilldownQuery';
|
41
42
|
export { efficiencyControllerLeadTime, useEfficiencyControllerLeadTimeQuery, } from './hooks/useEfficiencyControllerLeadTimeQuery';
|
42
43
|
export { efficiencyControllerLeadTimeStages, useEfficiencyControllerLeadTimeStagesQuery, } from './hooks/useEfficiencyControllerLeadTimeStagesQuery';
|
44
|
+
export { efficiencyControllerMttrBreakdown, useEfficiencyControllerMttrBreakdownQuery, } from './hooks/useEfficiencyControllerMttrBreakdownQuery';
|
45
|
+
export { efficiencyControllerMttr, useEfficiencyControllerMttrQuery, } from './hooks/useEfficiencyControllerMttrQuery';
|
46
|
+
export { efficiencyControllerSummary, useEfficiencyControllerSummaryQuery, } from './hooks/useEfficiencyControllerSummaryQuery';
|
43
47
|
export { efficiencyProfileControllerCreateProfile, useEfficiencyProfileControllerCreateProfileMutation, } from './hooks/useEfficiencyProfileControllerCreateProfileMutation';
|
44
48
|
export { efficiencyProfileControllerDeleteProfileByRefId, useEfficiencyProfileControllerDeleteProfileByRefIdMutation, } from './hooks/useEfficiencyProfileControllerDeleteProfileByRefIdMutation';
|
45
49
|
export { efficiencyProfileControllerGetProfile, useEfficiencyProfileControllerGetProfileQuery, } from './hooks/useEfficiencyProfileControllerGetProfileQuery';
|
46
50
|
export { efficiencyProfileControllerListProfiles, useEfficiencyProfileControllerListProfilesQuery, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
|
47
51
|
export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
48
52
|
export { exportControllerExportData, useExportControllerExportDataMutation, } from './hooks/useExportControllerExportDataMutation';
|
49
|
-
export { integrationControllerGetFilterValues,
|
53
|
+
export { integrationControllerGetFilterValues, useIntegrationControllerGetFilterValuesQuery, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
|
50
54
|
export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
51
55
|
export { jiraIssuesControllerGetJiraIssueCount, useJiraIssuesControllerGetJiraIssueCountQuery, } from './hooks/useJiraIssuesControllerGetJiraIssueCountQuery';
|
52
56
|
export { legacyHealthControllerCheck, useLegacyHealthControllerCheckQuery, } from './hooks/useLegacyHealthControllerCheckQuery';
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import type { Developer } from '../schemas/Developer';
|
2
1
|
import type { IntegrationUserInfo } from '../schemas/IntegrationUserInfo';
|
3
2
|
export interface DeveloperInfo {
|
4
3
|
attributes?: {
|
5
4
|
[key: string]: string;
|
6
5
|
};
|
7
|
-
|
6
|
+
email?: string;
|
8
7
|
integrationUsers?: IntegrationUserInfo[];
|
8
|
+
name?: string;
|
9
9
|
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import type { MttrDataPoint } from '../schemas/MttrDataPoint';
|
2
|
+
export interface EfficiencyMttrMetricBreakdown {
|
3
|
+
/**
|
4
|
+
* @format int32
|
5
|
+
*/
|
6
|
+
count?: number;
|
7
|
+
dataPoints?: MttrDataPoint[];
|
8
|
+
/**
|
9
|
+
* @format date-time
|
10
|
+
*/
|
11
|
+
endDate?: string;
|
12
|
+
/**
|
13
|
+
* @format double
|
14
|
+
*/
|
15
|
+
mean?: number;
|
16
|
+
/**
|
17
|
+
* @format double
|
18
|
+
*/
|
19
|
+
median?: number;
|
20
|
+
/**
|
21
|
+
* @format double
|
22
|
+
*/
|
23
|
+
p90?: number;
|
24
|
+
/**
|
25
|
+
* @format double
|
26
|
+
*/
|
27
|
+
p95?: number;
|
28
|
+
/**
|
29
|
+
* @format date-time
|
30
|
+
*/
|
31
|
+
startDate?: string;
|
32
|
+
teamName?: string;
|
33
|
+
teamRefId?: string;
|
34
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,17 +1,7 @@
|
|
1
1
|
export interface IntegrationUserInfo {
|
2
|
-
cloudEmail?: string;
|
3
2
|
cloudId?: string;
|
4
|
-
cloudName?: string;
|
5
|
-
/**
|
6
|
-
* @format date-time
|
7
|
-
*/
|
8
|
-
createdAt?: string;
|
9
3
|
/**
|
10
4
|
* @format int32
|
11
5
|
*/
|
12
6
|
integrationId?: number;
|
13
|
-
/**
|
14
|
-
* @format date-time
|
15
|
-
*/
|
16
|
-
updatedAt?: string;
|
17
7
|
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
export interface MttrDataPoint {
|
2
|
+
/**
|
3
|
+
* @format int32
|
4
|
+
*/
|
5
|
+
count?: number;
|
6
|
+
/**
|
7
|
+
* @format date-time
|
8
|
+
*/
|
9
|
+
endDate?: string;
|
10
|
+
/**
|
11
|
+
* @format double
|
12
|
+
*/
|
13
|
+
mean?: number;
|
14
|
+
/**
|
15
|
+
* @format double
|
16
|
+
*/
|
17
|
+
median?: number;
|
18
|
+
/**
|
19
|
+
* @format double
|
20
|
+
*/
|
21
|
+
p90?: number;
|
22
|
+
/**
|
23
|
+
* @format double
|
24
|
+
*/
|
25
|
+
p95?: number;
|
26
|
+
/**
|
27
|
+
* @format date-time
|
28
|
+
*/
|
29
|
+
startDate?: string;
|
30
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import type { MttrDataPoint } from '../schemas/MttrDataPoint';
|
2
|
+
export interface MttrMetric {
|
3
|
+
dataPoints?: MttrDataPoint[];
|
4
|
+
/**
|
5
|
+
* @format date-time
|
6
|
+
*/
|
7
|
+
endDate?: string;
|
8
|
+
/**
|
9
|
+
* @format double
|
10
|
+
*/
|
11
|
+
mean?: number;
|
12
|
+
/**
|
13
|
+
* @format double
|
14
|
+
*/
|
15
|
+
median?: number;
|
16
|
+
/**
|
17
|
+
* @format double
|
18
|
+
*/
|
19
|
+
p90?: number;
|
20
|
+
/**
|
21
|
+
* @format double
|
22
|
+
*/
|
23
|
+
p95?: number;
|
24
|
+
rating?: string;
|
25
|
+
/**
|
26
|
+
* @format date-time
|
27
|
+
*/
|
28
|
+
startDate?: string;
|
29
|
+
/**
|
30
|
+
* @format int32
|
31
|
+
*/
|
32
|
+
totalIncidents?: number;
|
33
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,10 +1,7 @@
|
|
1
1
|
import type { DeveloperInfo } from '../schemas/DeveloperInfo';
|
2
2
|
import type { PaginationMetadata } from '../schemas/PaginationMetadata';
|
3
3
|
export interface TeamDevelopersDto {
|
4
|
-
|
5
|
-
[key: string]: DeveloperInfo;
|
6
|
-
};
|
7
|
-
developerRefIds?: number[];
|
4
|
+
developersInfo?: DeveloperInfo[];
|
8
5
|
pagination?: PaginationMetadata;
|
9
6
|
/**
|
10
7
|
* @format int32
|
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.19.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",
|
@@ -1,33 +0,0 @@
|
|
1
|
-
export interface Developer {
|
2
|
-
attributes?: {
|
3
|
-
[key: string]: string;
|
4
|
-
};
|
5
|
-
/**
|
6
|
-
* @format date-time
|
7
|
-
*/
|
8
|
-
createdAt?: string;
|
9
|
-
createdByEmail?: string;
|
10
|
-
email?: string;
|
11
|
-
/**
|
12
|
-
* @format int32
|
13
|
-
*/
|
14
|
-
id?: number;
|
15
|
-
/**
|
16
|
-
* @format int32
|
17
|
-
*/
|
18
|
-
managerRefId?: number;
|
19
|
-
name?: string;
|
20
|
-
/**
|
21
|
-
* @format int32
|
22
|
-
*/
|
23
|
-
refId?: number;
|
24
|
-
/**
|
25
|
-
* @format date-time
|
26
|
-
*/
|
27
|
-
updatedAt?: string;
|
28
|
-
updatedByEmail?: string;
|
29
|
-
/**
|
30
|
-
* @format int32
|
31
|
-
*/
|
32
|
-
versionId?: number;
|
33
|
-
}
|
/package/dist/sei-panorama-service/src/services/schemas/{Developer.js → DeveloperCloudIdMapping.js}
RENAMED
File without changes
|