@harnessio/react-sei-panorama-service-client 0.31.16 → 0.31.17
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/useDeveloperControllerUpsertDeveloperIdentitiesMutation.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerChangeFailureRateBreakdownQuery.d.ts +1 -2
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerChangeFailureRateQuery.d.ts +1 -2
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerDeploymentFrequencyBreakdownQuery.d.ts +1 -2
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerDeploymentFrequencyQuery.d.ts +1 -2
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerLeadTimeBreakdownQuery.d.ts +1 -2
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerLeadTimeQuery.d.ts +1 -2
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerLeadTimeStagesQuery.d.ts +1 -2
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerMttrBreakdownQuery.d.ts +1 -2
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerMttrQuery.d.ts +1 -2
- package/dist/sei-panorama-service/src/services/index.d.ts +0 -1
- package/dist/sei-panorama-service/src/services/schemas/BaExportResponseDto.d.ts +2 -1
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyMetricDrilldownRequest.d.ts +1 -1
- package/package.json +2 -2
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyRequest.d.ts +0 -29
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyRequest.js +0 -4
|
@@ -7,7 +7,7 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
7
7
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
8
8
|
export type DeveloperControllerUpsertDeveloperIdentitiesRequestBody = DeveloperIdentity[];
|
|
9
9
|
export type DeveloperControllerUpsertDeveloperIdentitiesOkResponse = ResponseWithPagination<DeveloperIdentityUpsertResponse>;
|
|
10
|
-
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse =
|
|
10
|
+
export type DeveloperControllerUpsertDeveloperIdentitiesErrorResponse = DeveloperIdentityUpsertFailureResponse | ErrorResponse;
|
|
11
11
|
export interface DeveloperControllerUpsertDeveloperIdentitiesProps extends Omit<FetcherOptions<unknown, DeveloperControllerUpsertDeveloperIdentitiesRequestBody>, 'url'> {
|
|
12
12
|
body: DeveloperControllerUpsertDeveloperIdentitiesRequestBody;
|
|
13
13
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { EfficiencyChangeFailureRateMetricBreakdown } from '../schemas/EfficiencyChangeFailureRateMetricBreakdown';
|
|
3
|
-
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
|
4
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
5
|
export interface EfficiencyControllerChangeFailureRateBreakdownQueryQueryParams {
|
|
@@ -8,7 +7,7 @@ export interface EfficiencyControllerChangeFailureRateBreakdownQueryQueryParams
|
|
|
8
7
|
projectIdentifier: string;
|
|
9
8
|
orgIdentifier: string;
|
|
10
9
|
}
|
|
11
|
-
export type EfficiencyControllerChangeFailureRateBreakdownRequestBody =
|
|
10
|
+
export type EfficiencyControllerChangeFailureRateBreakdownRequestBody = unknown;
|
|
12
11
|
export type EfficiencyControllerChangeFailureRateBreakdownOkResponse = ResponseWithPagination<EfficiencyChangeFailureRateMetricBreakdown[]>;
|
|
13
12
|
export type EfficiencyControllerChangeFailureRateBreakdownErrorResponse = string;
|
|
14
13
|
export interface EfficiencyControllerChangeFailureRateBreakdownProps extends Omit<FetcherOptions<EfficiencyControllerChangeFailureRateBreakdownQueryQueryParams, EfficiencyControllerChangeFailureRateBreakdownRequestBody>, 'url'> {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { DoraChangeFailureRateMetric } from '../schemas/DoraChangeFailureRateMetric';
|
|
3
|
-
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
|
4
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
5
|
export interface EfficiencyControllerChangeFailureRateQueryQueryParams {
|
|
@@ -8,7 +7,7 @@ export interface EfficiencyControllerChangeFailureRateQueryQueryParams {
|
|
|
8
7
|
projectIdentifier: string;
|
|
9
8
|
orgIdentifier: string;
|
|
10
9
|
}
|
|
11
|
-
export type EfficiencyControllerChangeFailureRateRequestBody =
|
|
10
|
+
export type EfficiencyControllerChangeFailureRateRequestBody = unknown;
|
|
12
11
|
export type EfficiencyControllerChangeFailureRateOkResponse = ResponseWithPagination<DoraChangeFailureRateMetric>;
|
|
13
12
|
export type EfficiencyControllerChangeFailureRateErrorResponse = string;
|
|
14
13
|
export interface EfficiencyControllerChangeFailureRateProps extends Omit<FetcherOptions<EfficiencyControllerChangeFailureRateQueryQueryParams, EfficiencyControllerChangeFailureRateRequestBody>, 'url'> {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { EfficiencyDeploymentFrequencyMetricBreakdown } from '../schemas/EfficiencyDeploymentFrequencyMetricBreakdown';
|
|
3
|
-
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
|
4
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
5
|
export interface EfficiencyControllerDeploymentFrequencyBreakdownQueryQueryParams {
|
|
@@ -8,7 +7,7 @@ export interface EfficiencyControllerDeploymentFrequencyBreakdownQueryQueryParam
|
|
|
8
7
|
projectIdentifier: string;
|
|
9
8
|
orgIdentifier: string;
|
|
10
9
|
}
|
|
11
|
-
export type EfficiencyControllerDeploymentFrequencyBreakdownRequestBody =
|
|
10
|
+
export type EfficiencyControllerDeploymentFrequencyBreakdownRequestBody = unknown;
|
|
12
11
|
export type EfficiencyControllerDeploymentFrequencyBreakdownOkResponse = ResponseWithPagination<EfficiencyDeploymentFrequencyMetricBreakdown[]>;
|
|
13
12
|
export type EfficiencyControllerDeploymentFrequencyBreakdownErrorResponse = string;
|
|
14
13
|
export interface EfficiencyControllerDeploymentFrequencyBreakdownProps extends Omit<FetcherOptions<EfficiencyControllerDeploymentFrequencyBreakdownQueryQueryParams, EfficiencyControllerDeploymentFrequencyBreakdownRequestBody>, 'url'> {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { DoraDeploymentFrequencyMetric } from '../schemas/DoraDeploymentFrequencyMetric';
|
|
3
|
-
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
|
4
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
5
|
export interface EfficiencyControllerDeploymentFrequencyQueryQueryParams {
|
|
@@ -8,7 +7,7 @@ export interface EfficiencyControllerDeploymentFrequencyQueryQueryParams {
|
|
|
8
7
|
projectIdentifier: string;
|
|
9
8
|
orgIdentifier: string;
|
|
10
9
|
}
|
|
11
|
-
export type EfficiencyControllerDeploymentFrequencyRequestBody =
|
|
10
|
+
export type EfficiencyControllerDeploymentFrequencyRequestBody = unknown;
|
|
12
11
|
export type EfficiencyControllerDeploymentFrequencyOkResponse = ResponseWithPagination<DoraDeploymentFrequencyMetric>;
|
|
13
12
|
export type EfficiencyControllerDeploymentFrequencyErrorResponse = string;
|
|
14
13
|
export interface EfficiencyControllerDeploymentFrequencyProps extends Omit<FetcherOptions<EfficiencyControllerDeploymentFrequencyQueryQueryParams, EfficiencyControllerDeploymentFrequencyRequestBody>, 'url'> {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { EfficiencyLeadTimeDataPointBreakdown } from '../schemas/EfficiencyLeadTimeDataPointBreakdown';
|
|
3
|
-
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
|
4
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
5
|
export interface EfficiencyControllerLeadTimeBreakdownQueryQueryParams {
|
|
@@ -8,7 +7,7 @@ export interface EfficiencyControllerLeadTimeBreakdownQueryQueryParams {
|
|
|
8
7
|
projectIdentifier: string;
|
|
9
8
|
orgIdentifier: string;
|
|
10
9
|
}
|
|
11
|
-
export type EfficiencyControllerLeadTimeBreakdownRequestBody =
|
|
10
|
+
export type EfficiencyControllerLeadTimeBreakdownRequestBody = unknown;
|
|
12
11
|
export type EfficiencyControllerLeadTimeBreakdownOkResponse = ResponseWithPagination<EfficiencyLeadTimeDataPointBreakdown>;
|
|
13
12
|
export type EfficiencyControllerLeadTimeBreakdownErrorResponse = string;
|
|
14
13
|
export interface EfficiencyControllerLeadTimeBreakdownProps extends Omit<FetcherOptions<EfficiencyControllerLeadTimeBreakdownQueryQueryParams, EfficiencyControllerLeadTimeBreakdownRequestBody>, 'url'> {
|
package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerLeadTimeQuery.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { DoraLttcMttrMetric } from '../schemas/DoraLttcMttrMetric';
|
|
3
|
-
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
|
4
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
5
|
export interface EfficiencyControllerLeadTimeQueryQueryParams {
|
|
@@ -8,7 +7,7 @@ export interface EfficiencyControllerLeadTimeQueryQueryParams {
|
|
|
8
7
|
projectIdentifier: string;
|
|
9
8
|
orgIdentifier: string;
|
|
10
9
|
}
|
|
11
|
-
export type EfficiencyControllerLeadTimeRequestBody =
|
|
10
|
+
export type EfficiencyControllerLeadTimeRequestBody = unknown;
|
|
12
11
|
export type EfficiencyControllerLeadTimeOkResponse = ResponseWithPagination<DoraLttcMttrMetric>;
|
|
13
12
|
export type EfficiencyControllerLeadTimeErrorResponse = string;
|
|
14
13
|
export interface EfficiencyControllerLeadTimeProps extends Omit<FetcherOptions<EfficiencyControllerLeadTimeQueryQueryParams, EfficiencyControllerLeadTimeRequestBody>, 'url'> {
|
package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerLeadTimeStagesQuery.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { DoraLttcMttrMetric } from '../schemas/DoraLttcMttrMetric';
|
|
3
|
-
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
|
4
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
5
|
export interface EfficiencyControllerLeadTimeStagesQueryQueryParams {
|
|
@@ -8,7 +7,7 @@ export interface EfficiencyControllerLeadTimeStagesQueryQueryParams {
|
|
|
8
7
|
projectIdentifier: string;
|
|
9
8
|
orgIdentifier: string;
|
|
10
9
|
}
|
|
11
|
-
export type EfficiencyControllerLeadTimeStagesRequestBody =
|
|
10
|
+
export type EfficiencyControllerLeadTimeStagesRequestBody = unknown;
|
|
12
11
|
export type EfficiencyControllerLeadTimeStagesOkResponse = ResponseWithPagination<DoraLttcMttrMetric>;
|
|
13
12
|
export type EfficiencyControllerLeadTimeStagesErrorResponse = string;
|
|
14
13
|
export interface EfficiencyControllerLeadTimeStagesProps extends Omit<FetcherOptions<EfficiencyControllerLeadTimeStagesQueryQueryParams, EfficiencyControllerLeadTimeStagesRequestBody>, 'url'> {
|
package/dist/sei-panorama-service/src/services/hooks/useEfficiencyControllerMttrBreakdownQuery.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { EfficiencyMttrDataPointBreakdown } from '../schemas/EfficiencyMttrDataPointBreakdown';
|
|
3
|
-
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
|
4
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
5
|
export interface EfficiencyControllerMttrBreakdownQueryQueryParams {
|
|
@@ -8,7 +7,7 @@ export interface EfficiencyControllerMttrBreakdownQueryQueryParams {
|
|
|
8
7
|
projectIdentifier: string;
|
|
9
8
|
orgIdentifier: string;
|
|
10
9
|
}
|
|
11
|
-
export type EfficiencyControllerMttrBreakdownRequestBody =
|
|
10
|
+
export type EfficiencyControllerMttrBreakdownRequestBody = unknown;
|
|
12
11
|
export type EfficiencyControllerMttrBreakdownOkResponse = ResponseWithPagination<EfficiencyMttrDataPointBreakdown>;
|
|
13
12
|
export type EfficiencyControllerMttrBreakdownErrorResponse = string;
|
|
14
13
|
export interface EfficiencyControllerMttrBreakdownProps extends Omit<FetcherOptions<EfficiencyControllerMttrBreakdownQueryQueryParams, EfficiencyControllerMttrBreakdownRequestBody>, 'url'> {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { MttrMetric } from '../schemas/MttrMetric';
|
|
3
|
-
import type { EfficiencyRequest } from '../schemas/EfficiencyRequest';
|
|
4
3
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
5
|
export interface EfficiencyControllerMttrQueryQueryParams {
|
|
@@ -8,7 +7,7 @@ export interface EfficiencyControllerMttrQueryQueryParams {
|
|
|
8
7
|
projectIdentifier: string;
|
|
9
8
|
orgIdentifier: string;
|
|
10
9
|
}
|
|
11
|
-
export type EfficiencyControllerMttrRequestBody =
|
|
10
|
+
export type EfficiencyControllerMttrRequestBody = unknown;
|
|
12
11
|
export type EfficiencyControllerMttrOkResponse = ResponseWithPagination<MttrMetric>;
|
|
13
12
|
export type EfficiencyControllerMttrErrorResponse = string;
|
|
14
13
|
export interface EfficiencyControllerMttrProps extends Omit<FetcherOptions<EfficiencyControllerMttrQueryQueryParams, EfficiencyControllerMttrRequestBody>, 'url'> {
|
|
@@ -885,7 +885,6 @@ export type { EfficiencyMttrMetricBreakdown } from './schemas/EfficiencyMttrMetr
|
|
|
885
885
|
export type { EfficiencyProfileCreateRequestDto } from './schemas/EfficiencyProfileCreateRequestDto';
|
|
886
886
|
export type { EfficiencyProfileEvent } from './schemas/EfficiencyProfileEvent';
|
|
887
887
|
export type { EfficiencyProfileResponseDto } from './schemas/EfficiencyProfileResponseDto';
|
|
888
|
-
export type { EfficiencyRequest } from './schemas/EfficiencyRequest';
|
|
889
888
|
export type { EfficiencyRequestDto } from './schemas/EfficiencyRequestDto';
|
|
890
889
|
export type { EfficiencySummaryRequest } from './schemas/EfficiencySummaryRequest';
|
|
891
890
|
export type { EncryptionKeyResponse } from './schemas/EncryptionKeyResponse';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { CreatedBy } from '../schemas/CreatedBy';
|
|
2
|
+
import type { Download } from '../schemas/Download';
|
|
2
3
|
export interface BaExportResponseDto {
|
|
3
4
|
/**
|
|
4
5
|
* @format date-time
|
|
@@ -9,7 +10,7 @@ export interface BaExportResponseDto {
|
|
|
9
10
|
*/
|
|
10
11
|
createdAt?: string;
|
|
11
12
|
createdBy?: CreatedBy;
|
|
12
|
-
|
|
13
|
+
download?: Download;
|
|
13
14
|
errorCode?: string;
|
|
14
15
|
errorMessage?: string;
|
|
15
16
|
exportId?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.17",
|
|
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",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"keywords": [],
|
|
25
25
|
"scripts": {
|
|
26
|
-
"prebuild": "
|
|
26
|
+
"prebuild": "rimraf dist",
|
|
27
27
|
"build": "yarn generate && tsc",
|
|
28
28
|
"generate": "oats import --config='./oats.config.ts'",
|
|
29
29
|
"fmt": "prettier --write ./index.ts"
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
export interface EfficiencyRequest {
|
|
2
|
-
/**
|
|
3
|
-
* @format date-time
|
|
4
|
-
*/
|
|
5
|
-
dateEnd: string;
|
|
6
|
-
/**
|
|
7
|
-
* @format date-time
|
|
8
|
-
*/
|
|
9
|
-
dateStart: string;
|
|
10
|
-
/**
|
|
11
|
-
* @format date-time
|
|
12
|
-
*/
|
|
13
|
-
drillDownEndDate?: string;
|
|
14
|
-
/**
|
|
15
|
-
* @format date-time
|
|
16
|
-
*/
|
|
17
|
-
drillDownStartDate?: string;
|
|
18
|
-
granularity: string;
|
|
19
|
-
/**
|
|
20
|
-
* @format int32
|
|
21
|
-
*/
|
|
22
|
-
page?: number;
|
|
23
|
-
/**
|
|
24
|
-
* @format int32
|
|
25
|
-
*/
|
|
26
|
-
pageSize?: number;
|
|
27
|
-
teamRefId: string;
|
|
28
|
-
workCategoryFilters?: Array<'ALL' | 'BUGS' | 'FEATURES'>;
|
|
29
|
-
}
|