@harnessio/react-sei-panorama-service-client 0.21.13 → 0.21.14
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/useEfficiencyProfileControllerSearchProfilesMutation.d.ts +31 -0
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyProfileControllerSearchProfilesMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useProductivityProfileControllerSearchProfilesMutation.d.ts +31 -0
- package/dist/sei-panorama-service/src/services/hooks/useProductivityProfileControllerSearchProfilesMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetBuildInfoFromPrQuery.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetBuildInfoFromPrQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetDeployInfoFromPrQuery.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetDeployInfoFromPrQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamDevelopersQuery.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/index.d.ts +12 -0
- package/dist/sei-panorama-service/src/services/index.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyLeadTimeDrilldownItem.d.ts +34 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyLeadTimeDrilldownResponseWrapper.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/EfficiencyMetricDrilldownRequest.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/ListResponseDto.d.ts +17 -0
- package/dist/sei-panorama-service/src/services/schemas/ListResponseDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/MinimalTeamHierarchyResponseDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/PrRequest.d.ts +14 -0
- package/dist/sei-panorama-service/src/services/schemas/PrRequest.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/ProfileSearchParams.d.ts +6 -0
- package/dist/sei-panorama-service/src/services/schemas/ProfileSearchParams.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/SummaryCard.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamDeveloperSearchParams.d.ts +23 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamDeveloperSearchParams.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ListResponseDto } from '../schemas/ListResponseDto';
|
|
3
|
+
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
|
+
import type { ProfileSearchParams } from '../schemas/ProfileSearchParams';
|
|
5
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
6
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
+
export interface EfficiencyProfileControllerSearchProfilesMutationQueryParams {
|
|
8
|
+
/**
|
|
9
|
+
* @format int32
|
|
10
|
+
* @default 0
|
|
11
|
+
*/
|
|
12
|
+
pageIndex?: number;
|
|
13
|
+
/**
|
|
14
|
+
* @format int32
|
|
15
|
+
* @default 50
|
|
16
|
+
*/
|
|
17
|
+
pageSize?: number;
|
|
18
|
+
accountIdentifier: string;
|
|
19
|
+
}
|
|
20
|
+
export type EfficiencyProfileControllerSearchProfilesRequestBody = ProfileSearchParams;
|
|
21
|
+
export type EfficiencyProfileControllerSearchProfilesOkResponse = ResponseWithPagination<ListResponseDto>;
|
|
22
|
+
export type EfficiencyProfileControllerSearchProfilesErrorResponse = ErrorResponse;
|
|
23
|
+
export interface EfficiencyProfileControllerSearchProfilesProps extends Omit<FetcherOptions<EfficiencyProfileControllerSearchProfilesMutationQueryParams, EfficiencyProfileControllerSearchProfilesRequestBody>, 'url'> {
|
|
24
|
+
queryParams: EfficiencyProfileControllerSearchProfilesMutationQueryParams;
|
|
25
|
+
body: EfficiencyProfileControllerSearchProfilesRequestBody;
|
|
26
|
+
}
|
|
27
|
+
export declare function efficiencyProfileControllerSearchProfiles(props: EfficiencyProfileControllerSearchProfilesProps): Promise<EfficiencyProfileControllerSearchProfilesOkResponse>;
|
|
28
|
+
/**
|
|
29
|
+
* Search efficiency profiles with filtering and sorting options
|
|
30
|
+
*/
|
|
31
|
+
export declare function useEfficiencyProfileControllerSearchProfilesMutation(options?: Omit<UseMutationOptions<EfficiencyProfileControllerSearchProfilesOkResponse, EfficiencyProfileControllerSearchProfilesErrorResponse, EfficiencyProfileControllerSearchProfilesProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<EfficiencyProfileControllerSearchProfilesOkResponse, ErrorResponse, EfficiencyProfileControllerSearchProfilesProps, 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 efficiencyProfileControllerSearchProfiles(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/profiles/efficiency/list`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Search efficiency profiles with filtering and sorting options
|
|
11
|
+
*/
|
|
12
|
+
export function useEfficiencyProfileControllerSearchProfilesMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => efficiencyProfileControllerSearchProfiles(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ListResponseDto } from '../schemas/ListResponseDto';
|
|
3
|
+
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
|
+
import type { ProfileSearchParams } from '../schemas/ProfileSearchParams';
|
|
5
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
6
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
+
export interface ProductivityProfileControllerSearchProfilesMutationQueryParams {
|
|
8
|
+
/**
|
|
9
|
+
* @format int32
|
|
10
|
+
* @default 0
|
|
11
|
+
*/
|
|
12
|
+
pageIndex?: number;
|
|
13
|
+
/**
|
|
14
|
+
* @format int32
|
|
15
|
+
* @default 50
|
|
16
|
+
*/
|
|
17
|
+
pageSize?: number;
|
|
18
|
+
accountIdentifier: string;
|
|
19
|
+
}
|
|
20
|
+
export type ProductivityProfileControllerSearchProfilesRequestBody = ProfileSearchParams;
|
|
21
|
+
export type ProductivityProfileControllerSearchProfilesOkResponse = ResponseWithPagination<ListResponseDto>;
|
|
22
|
+
export type ProductivityProfileControllerSearchProfilesErrorResponse = ErrorResponse;
|
|
23
|
+
export interface ProductivityProfileControllerSearchProfilesProps extends Omit<FetcherOptions<ProductivityProfileControllerSearchProfilesMutationQueryParams, ProductivityProfileControllerSearchProfilesRequestBody>, 'url'> {
|
|
24
|
+
queryParams: ProductivityProfileControllerSearchProfilesMutationQueryParams;
|
|
25
|
+
body: ProductivityProfileControllerSearchProfilesRequestBody;
|
|
26
|
+
}
|
|
27
|
+
export declare function productivityProfileControllerSearchProfiles(props: ProductivityProfileControllerSearchProfilesProps): Promise<ProductivityProfileControllerSearchProfilesOkResponse>;
|
|
28
|
+
/**
|
|
29
|
+
* Search productivity profiles with filtering and sorting options
|
|
30
|
+
*/
|
|
31
|
+
export declare function useProductivityProfileControllerSearchProfilesMutation(options?: Omit<UseMutationOptions<ProductivityProfileControllerSearchProfilesOkResponse, ProductivityProfileControllerSearchProfilesErrorResponse, ProductivityProfileControllerSearchProfilesProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<ProductivityProfileControllerSearchProfilesOkResponse, ErrorResponse, ProductivityProfileControllerSearchProfilesProps, 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 productivityProfileControllerSearchProfiles(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/profiles/productivity/list`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Search productivity profiles with filtering and sorting options
|
|
11
|
+
*/
|
|
12
|
+
export function useProductivityProfileControllerSearchProfilesMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => productivityProfileControllerSearchProfiles(mutateProps), options);
|
|
14
|
+
}
|
package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetBuildInfoFromPrQuery.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { IssuesPipelineExecutionResponseWrapper } from '../schemas/IssuesPipelineExecutionResponseWrapper';
|
|
3
|
+
import type { PrRequest } from '../schemas/PrRequest';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface ScmGaControllerGetBuildInfoFromPrQueryQueryParams {
|
|
7
|
+
account: string;
|
|
8
|
+
projectIdentifier: string;
|
|
9
|
+
orgIdentifier: string;
|
|
10
|
+
}
|
|
11
|
+
export type ScmGaControllerGetBuildInfoFromPrRequestBody = PrRequest;
|
|
12
|
+
export type ScmGaControllerGetBuildInfoFromPrOkResponse = ResponseWithPagination<IssuesPipelineExecutionResponseWrapper>;
|
|
13
|
+
export type ScmGaControllerGetBuildInfoFromPrErrorResponse = string;
|
|
14
|
+
export interface ScmGaControllerGetBuildInfoFromPrProps extends Omit<FetcherOptions<ScmGaControllerGetBuildInfoFromPrQueryQueryParams, ScmGaControllerGetBuildInfoFromPrRequestBody>, 'url'> {
|
|
15
|
+
queryParams: ScmGaControllerGetBuildInfoFromPrQueryQueryParams;
|
|
16
|
+
body: ScmGaControllerGetBuildInfoFromPrRequestBody;
|
|
17
|
+
}
|
|
18
|
+
export declare function scmGaControllerGetBuildInfoFromPr(props: ScmGaControllerGetBuildInfoFromPrProps): Promise<ScmGaControllerGetBuildInfoFromPrOkResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Get build information for a pull request with pagination support
|
|
21
|
+
*/
|
|
22
|
+
export declare function useScmGaControllerGetBuildInfoFromPrQuery(props: ScmGaControllerGetBuildInfoFromPrProps, options?: Omit<UseQueryOptions<ScmGaControllerGetBuildInfoFromPrOkResponse, ScmGaControllerGetBuildInfoFromPrErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<ScmGaControllerGetBuildInfoFromPrOkResponse, string>;
|
package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetBuildInfoFromPrQuery.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 scmGaControllerGetBuildInfoFromPr(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/scm/pr/builds`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get build information for a pull request with pagination support
|
|
11
|
+
*/
|
|
12
|
+
export function useScmGaControllerGetBuildInfoFromPrQuery(props, options) {
|
|
13
|
+
return useQuery(['ScmGaControllerGetBuildInfoFromPr', props.queryParams, props.body], ({ signal }) => scmGaControllerGetBuildInfoFromPr(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetDeployInfoFromPrQuery.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { IssuesPipelineExecutionResponseWrapper } from '../schemas/IssuesPipelineExecutionResponseWrapper';
|
|
3
|
+
import type { PrRequest } from '../schemas/PrRequest';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface ScmGaControllerGetDeployInfoFromPrQueryQueryParams {
|
|
7
|
+
account: string;
|
|
8
|
+
projectIdentifier: string;
|
|
9
|
+
orgIdentifier: string;
|
|
10
|
+
}
|
|
11
|
+
export type ScmGaControllerGetDeployInfoFromPrRequestBody = PrRequest;
|
|
12
|
+
export type ScmGaControllerGetDeployInfoFromPrOkResponse = ResponseWithPagination<IssuesPipelineExecutionResponseWrapper>;
|
|
13
|
+
export type ScmGaControllerGetDeployInfoFromPrErrorResponse = string;
|
|
14
|
+
export interface ScmGaControllerGetDeployInfoFromPrProps extends Omit<FetcherOptions<ScmGaControllerGetDeployInfoFromPrQueryQueryParams, ScmGaControllerGetDeployInfoFromPrRequestBody>, 'url'> {
|
|
15
|
+
queryParams: ScmGaControllerGetDeployInfoFromPrQueryQueryParams;
|
|
16
|
+
body: ScmGaControllerGetDeployInfoFromPrRequestBody;
|
|
17
|
+
}
|
|
18
|
+
export declare function scmGaControllerGetDeployInfoFromPr(props: ScmGaControllerGetDeployInfoFromPrProps): Promise<ScmGaControllerGetDeployInfoFromPrOkResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Get deployment information for a pull request with pagination support
|
|
21
|
+
*/
|
|
22
|
+
export declare function useScmGaControllerGetDeployInfoFromPrQuery(props: ScmGaControllerGetDeployInfoFromPrProps, options?: Omit<UseQueryOptions<ScmGaControllerGetDeployInfoFromPrOkResponse, ScmGaControllerGetDeployInfoFromPrErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<ScmGaControllerGetDeployInfoFromPrOkResponse, string>;
|
package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetDeployInfoFromPrQuery.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 scmGaControllerGetDeployInfoFromPr(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/scm/pr/deployments`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get deployment information for a pull request with pagination support
|
|
11
|
+
*/
|
|
12
|
+
export function useScmGaControllerGetDeployInfoFromPrQuery(props, options) {
|
|
13
|
+
return useQuery(['ScmGaControllerGetDeployInfoFromPr', props.queryParams, props.body], ({ signal }) => scmGaControllerGetDeployInfoFromPr(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { TeamDevelopersDto } from '../schemas/TeamDevelopersDto';
|
|
3
|
-
import type {
|
|
3
|
+
import type { TeamDeveloperSearchParams } from '../schemas/TeamDeveloperSearchParams';
|
|
4
4
|
import type { ResponseWithPagination } from '../helpers';
|
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
6
|
export interface TeamsControllerSearchTeamDevelopersQueryPathParams {
|
|
@@ -19,7 +19,7 @@ export interface TeamsControllerSearchTeamDevelopersQueryQueryParams {
|
|
|
19
19
|
*/
|
|
20
20
|
size?: number;
|
|
21
21
|
}
|
|
22
|
-
export type TeamsControllerSearchTeamDevelopersRequestBody =
|
|
22
|
+
export type TeamsControllerSearchTeamDevelopersRequestBody = TeamDeveloperSearchParams;
|
|
23
23
|
export type TeamsControllerSearchTeamDevelopersOkResponse = ResponseWithPagination<TeamDevelopersDto>;
|
|
24
24
|
export type TeamsControllerSearchTeamDevelopersErrorResponse = TeamDevelopersDto;
|
|
25
25
|
export interface TeamsControllerSearchTeamDevelopersProps extends TeamsControllerSearchTeamDevelopersQueryPathParams, Omit<FetcherOptions<TeamsControllerSearchTeamDevelopersQueryQueryParams, TeamsControllerSearchTeamDevelopersRequestBody>, 'url'> {
|
|
@@ -131,6 +131,8 @@ export type { EfficiencyProfileControllerGetProfileErrorResponse, EfficiencyProf
|
|
|
131
131
|
export { efficiencyProfileControllerGetProfile, useEfficiencyProfileControllerGetProfileQuery, } from './hooks/useEfficiencyProfileControllerGetProfileQuery';
|
|
132
132
|
export type { EfficiencyProfileControllerListProfilesErrorResponse, EfficiencyProfileControllerListProfilesOkResponse, EfficiencyProfileControllerListProfilesProps, EfficiencyProfileControllerListProfilesQueryQueryParams, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
|
|
133
133
|
export { efficiencyProfileControllerListProfiles, useEfficiencyProfileControllerListProfilesQuery, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
|
|
134
|
+
export type { EfficiencyProfileControllerSearchProfilesErrorResponse, EfficiencyProfileControllerSearchProfilesMutationQueryParams, EfficiencyProfileControllerSearchProfilesOkResponse, EfficiencyProfileControllerSearchProfilesProps, EfficiencyProfileControllerSearchProfilesRequestBody, } from './hooks/useEfficiencyProfileControllerSearchProfilesMutation';
|
|
135
|
+
export { efficiencyProfileControllerSearchProfiles, useEfficiencyProfileControllerSearchProfilesMutation, } from './hooks/useEfficiencyProfileControllerSearchProfilesMutation';
|
|
134
136
|
export type { EfficiencyProfileControllerUpdateProfileErrorResponse, EfficiencyProfileControllerUpdateProfileMutationPathParams, EfficiencyProfileControllerUpdateProfileMutationQueryParams, EfficiencyProfileControllerUpdateProfileOkResponse, EfficiencyProfileControllerUpdateProfileProps, EfficiencyProfileControllerUpdateProfileRequestBody, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
|
135
137
|
export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
|
136
138
|
export type { ExportControllerForCollectionsExportDataErrorResponse, ExportControllerForCollectionsExportDataMutationQueryParams, ExportControllerForCollectionsExportDataOkResponse, ExportControllerForCollectionsExportDataProps, ExportControllerForCollectionsExportDataRequestBody, } from './hooks/useExportControllerForCollectionsExportDataMutation';
|
|
@@ -227,6 +229,8 @@ export type { ProductivityProfileControllerGetProfileByRefIdErrorResponse, Produ
|
|
|
227
229
|
export { productivityProfileControllerGetProfileByRefId, useProductivityProfileControllerGetProfileByRefIdQuery, } from './hooks/useProductivityProfileControllerGetProfileByRefIdQuery';
|
|
228
230
|
export type { ProductivityProfileControllerListProfilesErrorResponse, ProductivityProfileControllerListProfilesOkResponse, ProductivityProfileControllerListProfilesProps, ProductivityProfileControllerListProfilesQueryQueryParams, } from './hooks/useProductivityProfileControllerListProfilesQuery';
|
|
229
231
|
export { productivityProfileControllerListProfiles, useProductivityProfileControllerListProfilesQuery, } from './hooks/useProductivityProfileControllerListProfilesQuery';
|
|
232
|
+
export type { ProductivityProfileControllerSearchProfilesErrorResponse, ProductivityProfileControllerSearchProfilesMutationQueryParams, ProductivityProfileControllerSearchProfilesOkResponse, ProductivityProfileControllerSearchProfilesProps, ProductivityProfileControllerSearchProfilesRequestBody, } from './hooks/useProductivityProfileControllerSearchProfilesMutation';
|
|
233
|
+
export { productivityProfileControllerSearchProfiles, useProductivityProfileControllerSearchProfilesMutation, } from './hooks/useProductivityProfileControllerSearchProfilesMutation';
|
|
230
234
|
export type { ProductivityProfileControllerUpdateProfileErrorResponse, ProductivityProfileControllerUpdateProfileMutationPathParams, ProductivityProfileControllerUpdateProfileMutationQueryParams, ProductivityProfileControllerUpdateProfileOkResponse, ProductivityProfileControllerUpdateProfileProps, ProductivityProfileControllerUpdateProfileRequestBody, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
|
|
231
235
|
export { productivityProfileControllerUpdateProfile, useProductivityProfileControllerUpdateProfileMutation, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
|
|
232
236
|
export type { ProductivityV3ControllerGetFeatureBreakdownErrorResponse, ProductivityV3ControllerGetFeatureBreakdownOkResponse, ProductivityV3ControllerGetFeatureBreakdownProps, ProductivityV3ControllerGetFeatureBreakdownQueryQueryParams, ProductivityV3ControllerGetFeatureBreakdownRequestBody, } from './hooks/useProductivityV3ControllerGetFeatureBreakdownQuery';
|
|
@@ -237,6 +241,10 @@ export type { ProductivityV3ControllerGetFeatureMetricsErrorResponse, Productivi
|
|
|
237
241
|
export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerGetFeatureMetricsQuery, } from './hooks/useProductivityV3ControllerGetFeatureMetricsQuery';
|
|
238
242
|
export type { ProductivityV3ControllerGetIndividualUserFeatureDrillDownErrorResponse, ProductivityV3ControllerGetIndividualUserFeatureDrillDownOkResponse, ProductivityV3ControllerGetIndividualUserFeatureDrillDownProps, ProductivityV3ControllerGetIndividualUserFeatureDrillDownQueryQueryParams, ProductivityV3ControllerGetIndividualUserFeatureDrillDownRequestBody, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
|
|
239
243
|
export { productivityV3ControllerGetIndividualUserFeatureDrillDown, useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
|
|
244
|
+
export type { ScmGaControllerGetBuildInfoFromPrErrorResponse, ScmGaControllerGetBuildInfoFromPrOkResponse, ScmGaControllerGetBuildInfoFromPrProps, ScmGaControllerGetBuildInfoFromPrQueryQueryParams, ScmGaControllerGetBuildInfoFromPrRequestBody, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
245
|
+
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
246
|
+
export type { ScmGaControllerGetDeployInfoFromPrErrorResponse, ScmGaControllerGetDeployInfoFromPrOkResponse, ScmGaControllerGetDeployInfoFromPrProps, ScmGaControllerGetDeployInfoFromPrQueryQueryParams, ScmGaControllerGetDeployInfoFromPrRequestBody, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
247
|
+
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
240
248
|
export type { TeamsControllerGetTeamDevelopersErrorResponse, TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersProps, TeamsControllerGetTeamDevelopersQueryPathParams, TeamsControllerGetTeamDevelopersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
241
249
|
export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
242
250
|
export type { TeamsControllerGetTeamIntegrationFiltersErrorResponse, TeamsControllerGetTeamIntegrationFiltersOkResponse, TeamsControllerGetTeamIntegrationFiltersProps, TeamsControllerGetTeamIntegrationFiltersQueryPathParams, TeamsControllerGetTeamIntegrationFiltersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
|
|
@@ -370,6 +378,7 @@ export type { IssuesPrResponse } from './schemas/IssuesPrResponse';
|
|
|
370
378
|
export type { IssuesPrResponseWrapper } from './schemas/IssuesPrResponseWrapper';
|
|
371
379
|
export type { JsonNode } from './schemas/JsonNode';
|
|
372
380
|
export type { LicenseSearchParams } from './schemas/LicenseSearchParams';
|
|
381
|
+
export type { ListResponseDto } from './schemas/ListResponseDto';
|
|
373
382
|
export type { ListResponseDtoDeveloperLicenseDto } from './schemas/ListResponseDtoDeveloperLicenseDto';
|
|
374
383
|
export type { ListResponseDtoEfficiencyProfileResponseDto } from './schemas/ListResponseDtoEfficiencyProfileResponseDto';
|
|
375
384
|
export type { ListResponseDtoIntegrationResponseDto } from './schemas/ListResponseDtoIntegrationResponseDto';
|
|
@@ -401,6 +410,7 @@ export type { PrCommitsResponseWrapper } from './schemas/PrCommitsResponseWrappe
|
|
|
401
410
|
export type { PrCycleTimeDrilldownResponseDataPoint } from './schemas/PrCycleTimeDrilldownResponseDataPoint';
|
|
402
411
|
export type { PrCycleTimeDrilldownResponseDataPointV3 } from './schemas/PrCycleTimeDrilldownResponseDataPointV3';
|
|
403
412
|
export type { PrInfo } from './schemas/PrInfo';
|
|
413
|
+
export type { PrRequest } from './schemas/PrRequest';
|
|
404
414
|
export type { PrSize } from './schemas/PrSize';
|
|
405
415
|
export type { PrVelocityDrilldownResponseDataPoint } from './schemas/PrVelocityDrilldownResponseDataPoint';
|
|
406
416
|
export type { PrVelocityDrilldownResponseDataPointV3 } from './schemas/PrVelocityDrilldownResponseDataPointV3';
|
|
@@ -423,6 +433,7 @@ export type { ProductivityV3FeatureBreakdownResponseDto } from './schemas/Produc
|
|
|
423
433
|
export type { ProductivityV3FeatureDrilldownResponseDto } from './schemas/ProductivityV3FeatureDrilldownResponseDto';
|
|
424
434
|
export type { ProductivityV3FeatureIndividualDrilldownResponseDto } from './schemas/ProductivityV3FeatureIndividualDrilldownResponseDto';
|
|
425
435
|
export type { ProductivityV3FeatureRequestDto } from './schemas/ProductivityV3FeatureRequestDto';
|
|
436
|
+
export type { ProfileSearchParams } from './schemas/ProfileSearchParams';
|
|
426
437
|
export type { RefIdDto } from './schemas/RefIdDto';
|
|
427
438
|
export type { SectionDto } from './schemas/SectionDto';
|
|
428
439
|
export type { SortOption } from './schemas/SortOption';
|
|
@@ -430,6 +441,7 @@ export type { Stage } from './schemas/Stage';
|
|
|
430
441
|
export type { SummaryCard } from './schemas/SummaryCard';
|
|
431
442
|
export type { SummaryValue } from './schemas/SummaryValue';
|
|
432
443
|
export type { SummaryValueChange } from './schemas/SummaryValueChange';
|
|
444
|
+
export type { TeamDeveloperSearchParams } from './schemas/TeamDeveloperSearchParams';
|
|
433
445
|
export type { TeamDevelopersDto } from './schemas/TeamDevelopersDto';
|
|
434
446
|
export type { TeamFilter } from './schemas/TeamFilter';
|
|
435
447
|
export type { TeamInfoUpdateRequestDto } from './schemas/TeamInfoUpdateRequestDto';
|
|
@@ -64,6 +64,7 @@ export { efficiencyProfileControllerCreateProfile, useEfficiencyProfileControlle
|
|
|
64
64
|
export { efficiencyProfileControllerDeleteProfileByRefId, useEfficiencyProfileControllerDeleteProfileByRefIdMutation, } from './hooks/useEfficiencyProfileControllerDeleteProfileByRefIdMutation';
|
|
65
65
|
export { efficiencyProfileControllerGetProfile, useEfficiencyProfileControllerGetProfileQuery, } from './hooks/useEfficiencyProfileControllerGetProfileQuery';
|
|
66
66
|
export { efficiencyProfileControllerListProfiles, useEfficiencyProfileControllerListProfilesQuery, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
|
|
67
|
+
export { efficiencyProfileControllerSearchProfiles, useEfficiencyProfileControllerSearchProfilesMutation, } from './hooks/useEfficiencyProfileControllerSearchProfilesMutation';
|
|
67
68
|
export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
|
68
69
|
export { exportControllerForCollectionsExportData, useExportControllerForCollectionsExportDataMutation, } from './hooks/useExportControllerForCollectionsExportDataMutation';
|
|
69
70
|
export { exportControllerForTeamsExportData, useExportControllerForTeamsExportDataMutation, } from './hooks/useExportControllerForTeamsExportDataMutation';
|
|
@@ -112,11 +113,14 @@ export { productivityProfileControllerDeleteProfile, useProductivityProfileContr
|
|
|
112
113
|
export { productivityProfileControllerGetProductivityProfileFilterValues, useProductivityProfileControllerGetProductivityProfileFilterValuesQuery, } from './hooks/useProductivityProfileControllerGetProductivityProfileFilterValuesQuery';
|
|
113
114
|
export { productivityProfileControllerGetProfileByRefId, useProductivityProfileControllerGetProfileByRefIdQuery, } from './hooks/useProductivityProfileControllerGetProfileByRefIdQuery';
|
|
114
115
|
export { productivityProfileControllerListProfiles, useProductivityProfileControllerListProfilesQuery, } from './hooks/useProductivityProfileControllerListProfilesQuery';
|
|
116
|
+
export { productivityProfileControllerSearchProfiles, useProductivityProfileControllerSearchProfilesMutation, } from './hooks/useProductivityProfileControllerSearchProfilesMutation';
|
|
115
117
|
export { productivityProfileControllerUpdateProfile, useProductivityProfileControllerUpdateProfileMutation, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
|
|
116
118
|
export { productivityV3ControllerGetFeatureBreakdown, useProductivityV3ControllerGetFeatureBreakdownQuery, } from './hooks/useProductivityV3ControllerGetFeatureBreakdownQuery';
|
|
117
119
|
export { productivityV3ControllerGetFeatureDrillDown, useProductivityV3ControllerGetFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetFeatureDrillDownQuery';
|
|
118
120
|
export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerGetFeatureMetricsQuery, } from './hooks/useProductivityV3ControllerGetFeatureMetricsQuery';
|
|
119
121
|
export { productivityV3ControllerGetIndividualUserFeatureDrillDown, useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
|
|
122
|
+
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
123
|
+
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
120
124
|
export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
121
125
|
export { teamsControllerGetTeamIntegrationFilters, useTeamsControllerGetTeamIntegrationFiltersQuery, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
|
|
122
126
|
export { teamsControllerGetTeamIntegrations, useTeamsControllerGetTeamIntegrationsQuery, } from './hooks/useTeamsControllerGetTeamIntegrationsQuery';
|
|
@@ -87,14 +87,48 @@ export interface EfficiencyLeadTimeDrilldownItem {
|
|
|
87
87
|
* @format date-time
|
|
88
88
|
*/
|
|
89
89
|
lttcStartTime?: string;
|
|
90
|
+
/**
|
|
91
|
+
* pr created at
|
|
92
|
+
* @format date-time
|
|
93
|
+
*/
|
|
94
|
+
prCreatedAt?: string;
|
|
95
|
+
/**
|
|
96
|
+
* pr creator
|
|
97
|
+
*/
|
|
98
|
+
prCreator?: string;
|
|
99
|
+
/**
|
|
100
|
+
* pr Id
|
|
101
|
+
*/
|
|
102
|
+
prId?: string;
|
|
90
103
|
/**
|
|
91
104
|
* PR information by stage
|
|
92
105
|
*/
|
|
93
106
|
prInfo?: {
|
|
94
107
|
[key: string]: PrInfo;
|
|
95
108
|
};
|
|
109
|
+
/**
|
|
110
|
+
* pr merged at
|
|
111
|
+
* @format date-time
|
|
112
|
+
*/
|
|
113
|
+
prMergedAt?: string;
|
|
114
|
+
/**
|
|
115
|
+
* pr number
|
|
116
|
+
*/
|
|
117
|
+
prNumber?: string;
|
|
118
|
+
/**
|
|
119
|
+
* pr repo
|
|
120
|
+
*/
|
|
121
|
+
prRepo?: string;
|
|
122
|
+
/**
|
|
123
|
+
* pr title
|
|
124
|
+
*/
|
|
125
|
+
prTitle?: string;
|
|
96
126
|
/**
|
|
97
127
|
* Project identifier
|
|
98
128
|
*/
|
|
99
129
|
project?: string;
|
|
130
|
+
/**
|
|
131
|
+
* pr target branch
|
|
132
|
+
*/
|
|
133
|
+
targetBranch?: string;
|
|
100
134
|
}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import type { EfficiencyLeadTimeDrilldownItem } from '../schemas/EfficiencyLeadTimeDrilldownItem';
|
|
2
2
|
import type { PaginationInfo } from '../schemas/PaginationInfo';
|
|
3
3
|
export interface EfficiencyLeadTimeDrilldownResponseWrapper {
|
|
4
|
+
/**
|
|
5
|
+
* Indicates whether this is an IM-based (true) or SCM-based (false) lead time configuration
|
|
6
|
+
*/
|
|
7
|
+
basedOn?: string;
|
|
4
8
|
/**
|
|
5
9
|
* List of lead time drilldown items
|
|
6
10
|
*/
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface ListResponseDto {
|
|
2
|
+
/**
|
|
3
|
+
* @format int32
|
|
4
|
+
*/
|
|
5
|
+
pageIndex?: number;
|
|
6
|
+
/**
|
|
7
|
+
* @format int32
|
|
8
|
+
*/
|
|
9
|
+
pageSize?: number;
|
|
10
|
+
records?: Array<{
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
}>;
|
|
13
|
+
/**
|
|
14
|
+
* @format int32
|
|
15
|
+
*/
|
|
16
|
+
totalCount?: number;
|
|
17
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { PaginationRequest } from '../schemas/PaginationRequest';
|
|
2
|
+
/**
|
|
3
|
+
* Request object for PR-related operations
|
|
4
|
+
*/
|
|
5
|
+
export interface PrRequest {
|
|
6
|
+
/**
|
|
7
|
+
* Pagination information for the request
|
|
8
|
+
*/
|
|
9
|
+
pagination?: PaginationRequest;
|
|
10
|
+
/**
|
|
11
|
+
* Pull Request ID
|
|
12
|
+
*/
|
|
13
|
+
prId: string;
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export interface TeamDeveloperSearchParams {
|
|
2
|
+
/**
|
|
3
|
+
* List of developer reference IDs to filter by
|
|
4
|
+
*/
|
|
5
|
+
developerRefIds?: number[];
|
|
6
|
+
/**
|
|
7
|
+
* Field to search in
|
|
8
|
+
*/
|
|
9
|
+
searchKey?: 'email' | 'name';
|
|
10
|
+
/**
|
|
11
|
+
* Value to search for
|
|
12
|
+
*/
|
|
13
|
+
searchValue?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Field to sort by
|
|
16
|
+
*/
|
|
17
|
+
sortKey?: 'email' | 'name';
|
|
18
|
+
/**
|
|
19
|
+
* Sort order
|
|
20
|
+
* @default "ASC"
|
|
21
|
+
*/
|
|
22
|
+
sortOrder?: 'asc' | 'desc';
|
|
23
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.14",
|
|
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",
|