@harnessio/react-sei-panorama-service-client 0.21.13 → 0.21.15
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/useBaControllerDeleteProfileMutation.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useBaControllerDeleteProfileMutation.js +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerDeleteDevelopersMutation.d.ts +13 -0
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerDeleteDevelopersMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerSaveDevelopersMutation.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpsertDevelopersMutation.d.ts +17 -0
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerUpsertDevelopersMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyProfileControllerDeleteProfileByRefIdMutation.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useEfficiencyProfileControllerDeleteProfileByRefIdMutation.js +1 -1
- 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/useIssuesControllerGetIssuesForVersionReleaseMutation.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/hooks/useIssuesControllerGetIssuesForVersionReleaseMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useProductivityProfileControllerDeleteProfileMutation.d.ts +3 -0
- package/dist/sei-panorama-service/src/services/hooks/useProductivityProfileControllerDeleteProfileMutation.js +3 -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 +22 -0
- package/dist/sei-panorama-service/src/services/index.js +7 -0
- package/dist/sei-panorama-service/src/services/schemas/DeveloperUpsertResponseDto.d.ts +14 -0
- package/dist/sei-panorama-service/src/services/schemas/DeveloperUpsertResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/DeveloperValidationErrorDto.d.ts +2 -1
- 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/ReleaseIssueDto.d.ts +12 -0
- package/dist/sei-panorama-service/src/services/schemas/ReleaseIssueDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ReleaseIssuesResponseWrapper.d.ts +15 -0
- package/dist/sei-panorama-service/src/services/schemas/ReleaseIssuesResponseWrapper.js +1 -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/dist/sei-panorama-service/src/services/schemas/VersionReleaseRequest.d.ts +15 -0
- package/dist/sei-panorama-service/src/services/schemas/VersionReleaseRequest.js +1 -0
- package/package.json +1 -1
package/dist/sei-panorama-service/src/services/hooks/useBaControllerDeleteProfileMutation.d.ts
CHANGED
|
@@ -19,6 +19,6 @@ export interface BaControllerDeleteProfileProps extends BaControllerDeleteProfil
|
|
|
19
19
|
}
|
|
20
20
|
export declare function baControllerDeleteProfile(props: BaControllerDeleteProfileProps): Promise<BaControllerDeleteProfileOkResponse>;
|
|
21
21
|
/**
|
|
22
|
-
* Deletes a BA profile and its categories.
|
|
22
|
+
* Deletes a BA profile and its categories. Profile cannot be deleted if it is linked to org trees.
|
|
23
23
|
*/
|
|
24
24
|
export declare function useBaControllerDeleteProfileMutation(options?: Omit<UseMutationOptions<BaControllerDeleteProfileOkResponse, BaControllerDeleteProfileErrorResponse, BaControllerDeleteProfileProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<BaControllerDeleteProfileOkResponse, string, BaControllerDeleteProfileProps, unknown>;
|
package/dist/sei-panorama-service/src/services/hooks/useBaControllerDeleteProfileMutation.js
CHANGED
|
@@ -7,7 +7,7 @@ export function baControllerDeleteProfile(props) {
|
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/${props.profileRefId}`, method: 'DELETE' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Deletes a BA profile and its categories.
|
|
10
|
+
* Deletes a BA profile and its categories. Profile cannot be deleted if it is linked to org trees.
|
|
11
11
|
*/
|
|
12
12
|
export function useBaControllerDeleteProfileMutation(options) {
|
|
13
13
|
return useMutation((mutateProps) => baControllerDeleteProfile(mutateProps), options);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { DeveloperUpsertResponseDto } from '../schemas/DeveloperUpsertResponseDto';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export type DeveloperControllerDeleteDevelopersOkResponse = ResponseWithPagination<DeveloperUpsertResponseDto>;
|
|
6
|
+
export type DeveloperControllerDeleteDevelopersErrorResponse = DeveloperUpsertResponseDto;
|
|
7
|
+
export interface DeveloperControllerDeleteDevelopersProps extends Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
8
|
+
}
|
|
9
|
+
export declare function developerControllerDeleteDevelopers(props: DeveloperControllerDeleteDevelopersProps): Promise<DeveloperControllerDeleteDevelopersOkResponse>;
|
|
10
|
+
/**
|
|
11
|
+
* Delete developers by their email addresses. This will remove the specified developers from the active dataset.
|
|
12
|
+
*/
|
|
13
|
+
export declare function useDeveloperControllerDeleteDevelopersMutation(options?: Omit<UseMutationOptions<DeveloperControllerDeleteDevelopersOkResponse, DeveloperControllerDeleteDevelopersErrorResponse, DeveloperControllerDeleteDevelopersProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DeveloperControllerDeleteDevelopersOkResponse, DeveloperUpsertResponseDto, DeveloperControllerDeleteDevelopersProps, 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 developerControllerDeleteDevelopers(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/developers`, method: 'DELETE' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Delete developers by their email addresses. This will remove the specified developers from the active dataset.
|
|
11
|
+
*/
|
|
12
|
+
export function useDeveloperControllerDeleteDevelopersMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => developerControllerDeleteDevelopers(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -11,7 +11,7 @@ export interface DeveloperControllerSaveDevelopersMutationPathParams {
|
|
|
11
11
|
}
|
|
12
12
|
export type DeveloperControllerSaveDevelopersRequestBody = DeveloperFieldDto[];
|
|
13
13
|
export type DeveloperControllerSaveDevelopersOkResponse = ResponseWithPagination<DeveloperSaveResponseDto>;
|
|
14
|
-
export type DeveloperControllerSaveDevelopersErrorResponse =
|
|
14
|
+
export type DeveloperControllerSaveDevelopersErrorResponse = DeveloperSaveResponseDto;
|
|
15
15
|
export interface DeveloperControllerSaveDevelopersProps extends DeveloperControllerSaveDevelopersMutationPathParams, Omit<FetcherOptions<unknown, DeveloperControllerSaveDevelopersRequestBody>, 'url'> {
|
|
16
16
|
body: DeveloperControllerSaveDevelopersRequestBody;
|
|
17
17
|
}
|
|
@@ -19,4 +19,4 @@ export declare function developerControllerSaveDevelopers(props: DeveloperContro
|
|
|
19
19
|
/**
|
|
20
20
|
* Saves the developers from a validated upload to the database
|
|
21
21
|
*/
|
|
22
|
-
export declare function useDeveloperControllerSaveDevelopersMutation(options?: Omit<UseMutationOptions<DeveloperControllerSaveDevelopersOkResponse, DeveloperControllerSaveDevelopersErrorResponse, DeveloperControllerSaveDevelopersProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DeveloperControllerSaveDevelopersOkResponse,
|
|
22
|
+
export declare function useDeveloperControllerSaveDevelopersMutation(options?: Omit<UseMutationOptions<DeveloperControllerSaveDevelopersOkResponse, DeveloperControllerSaveDevelopersErrorResponse, DeveloperControllerSaveDevelopersProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DeveloperControllerSaveDevelopersOkResponse, DeveloperSaveResponseDto, DeveloperControllerSaveDevelopersProps, unknown>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { DeveloperUpsertResponseDto } from '../schemas/DeveloperUpsertResponseDto';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export type DeveloperControllerUpsertDevelopersRequestBody = Array<{
|
|
6
|
+
[key: string]: string;
|
|
7
|
+
}>;
|
|
8
|
+
export type DeveloperControllerUpsertDevelopersOkResponse = ResponseWithPagination<DeveloperUpsertResponseDto>;
|
|
9
|
+
export type DeveloperControllerUpsertDevelopersErrorResponse = DeveloperUpsertResponseDto;
|
|
10
|
+
export interface DeveloperControllerUpsertDevelopersProps extends Omit<FetcherOptions<unknown, DeveloperControllerUpsertDevelopersRequestBody>, 'url'> {
|
|
11
|
+
body: DeveloperControllerUpsertDevelopersRequestBody;
|
|
12
|
+
}
|
|
13
|
+
export declare function developerControllerUpsertDevelopers(props: DeveloperControllerUpsertDevelopersProps): Promise<DeveloperControllerUpsertDevelopersOkResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* Upsert developers by merging new records with existing ones. New records will be added and existing records with matching emails will be updated.
|
|
16
|
+
*/
|
|
17
|
+
export declare function useDeveloperControllerUpsertDevelopersMutation(options?: Omit<UseMutationOptions<DeveloperControllerUpsertDevelopersOkResponse, DeveloperControllerUpsertDevelopersErrorResponse, DeveloperControllerUpsertDevelopersProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DeveloperControllerUpsertDevelopersOkResponse, DeveloperUpsertResponseDto, DeveloperControllerUpsertDevelopersProps, 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 developerControllerUpsertDevelopers(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/developers/`, method: 'PATCH' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Upsert developers by merging new records with existing ones. New records will be added and existing records with matching emails will be updated.
|
|
11
|
+
*/
|
|
12
|
+
export function useDeveloperControllerUpsertDevelopersMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => developerControllerUpsertDevelopers(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -18,6 +18,6 @@ export interface EfficiencyProfileControllerDeleteProfileByRefIdProps extends Ef
|
|
|
18
18
|
}
|
|
19
19
|
export declare function efficiencyProfileControllerDeleteProfileByRefId(props: EfficiencyProfileControllerDeleteProfileByRefIdProps): Promise<EfficiencyProfileControllerDeleteProfileByRefIdOkResponse>;
|
|
20
20
|
/**
|
|
21
|
-
* Marks the specified efficiency profile as inactive by creating a new version with active=false
|
|
21
|
+
* Marks the specified efficiency profile as inactive by creating a new version with active=false. Note: Efficiency profiles that are linked to org trees cannot be deleted. You must first unlink the profile from all org trees before deletion.
|
|
22
22
|
*/
|
|
23
23
|
export declare function useEfficiencyProfileControllerDeleteProfileByRefIdMutation(options?: Omit<UseMutationOptions<EfficiencyProfileControllerDeleteProfileByRefIdOkResponse, EfficiencyProfileControllerDeleteProfileByRefIdErrorResponse, EfficiencyProfileControllerDeleteProfileByRefIdProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<EfficiencyProfileControllerDeleteProfileByRefIdOkResponse, ErrorResponse, EfficiencyProfileControllerDeleteProfileByRefIdProps, unknown>;
|
|
@@ -7,7 +7,7 @@ export function efficiencyProfileControllerDeleteProfileByRefId(props) {
|
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/profiles/efficiency/${props.refId}`, method: 'DELETE' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Marks the specified efficiency profile as inactive by creating a new version with active=false
|
|
10
|
+
* Marks the specified efficiency profile as inactive by creating a new version with active=false. Note: Efficiency profiles that are linked to org trees cannot be deleted. You must first unlink the profile from all org trees before deletion.
|
|
11
11
|
*/
|
|
12
12
|
export function useEfficiencyProfileControllerDeleteProfileByRefIdMutation(options) {
|
|
13
13
|
return useMutation((mutateProps) => efficiencyProfileControllerDeleteProfileByRefId(mutateProps), options);
|
|
@@ -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,22 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ReleaseIssuesResponseWrapper } from '../schemas/ReleaseIssuesResponseWrapper';
|
|
3
|
+
import type { VersionReleaseRequest } from '../schemas/VersionReleaseRequest';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface IssuesControllerGetIssuesForVersionReleaseMutationQueryParams {
|
|
7
|
+
account: string;
|
|
8
|
+
projectIdentifier: string;
|
|
9
|
+
orgIdentifier: string;
|
|
10
|
+
}
|
|
11
|
+
export type IssuesControllerGetIssuesForVersionReleaseRequestBody = VersionReleaseRequest;
|
|
12
|
+
export type IssuesControllerGetIssuesForVersionReleaseOkResponse = ResponseWithPagination<ReleaseIssuesResponseWrapper>;
|
|
13
|
+
export type IssuesControllerGetIssuesForVersionReleaseErrorResponse = string;
|
|
14
|
+
export interface IssuesControllerGetIssuesForVersionReleaseProps extends Omit<FetcherOptions<IssuesControllerGetIssuesForVersionReleaseMutationQueryParams, IssuesControllerGetIssuesForVersionReleaseRequestBody>, 'url'> {
|
|
15
|
+
queryParams: IssuesControllerGetIssuesForVersionReleaseMutationQueryParams;
|
|
16
|
+
body: IssuesControllerGetIssuesForVersionReleaseRequestBody;
|
|
17
|
+
}
|
|
18
|
+
export declare function issuesControllerGetIssuesForVersionRelease(props: IssuesControllerGetIssuesForVersionReleaseProps): Promise<IssuesControllerGetIssuesForVersionReleaseOkResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Get all issues associated with a specific version release with pagination support
|
|
21
|
+
*/
|
|
22
|
+
export declare function useIssuesControllerGetIssuesForVersionReleaseMutation(options?: Omit<UseMutationOptions<IssuesControllerGetIssuesForVersionReleaseOkResponse, IssuesControllerGetIssuesForVersionReleaseErrorResponse, IssuesControllerGetIssuesForVersionReleaseProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<IssuesControllerGetIssuesForVersionReleaseOkResponse, string, IssuesControllerGetIssuesForVersionReleaseProps, 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 issuesControllerGetIssuesForVersionRelease(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/issues/versions`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get all issues associated with a specific version release with pagination support
|
|
11
|
+
*/
|
|
12
|
+
export function useIssuesControllerGetIssuesForVersionReleaseMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => issuesControllerGetIssuesForVersionRelease(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -17,4 +17,7 @@ export interface ProductivityProfileControllerDeleteProfileProps extends Product
|
|
|
17
17
|
queryParams: ProductivityProfileControllerDeleteProfileMutationQueryParams;
|
|
18
18
|
}
|
|
19
19
|
export declare function productivityProfileControllerDeleteProfile(props: ProductivityProfileControllerDeleteProfileProps): Promise<ProductivityProfileControllerDeleteProfileOkResponse>;
|
|
20
|
+
/**
|
|
21
|
+
* Marks the specified productivity profile as inactive by creating a new version with active=false. Note: Productivity profiles that are linked to org trees cannot be deleted. You must first unlink the profile from all org trees before deletion.
|
|
22
|
+
*/
|
|
20
23
|
export declare function useProductivityProfileControllerDeleteProfileMutation(options?: Omit<UseMutationOptions<ProductivityProfileControllerDeleteProfileOkResponse, ProductivityProfileControllerDeleteProfileErrorResponse, ProductivityProfileControllerDeleteProfileProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<ProductivityProfileControllerDeleteProfileOkResponse, ErrorResponse, ProductivityProfileControllerDeleteProfileProps, unknown>;
|
|
@@ -6,6 +6,9 @@ import { fetcher } from '../../../../fetcher/index.js';
|
|
|
6
6
|
export function productivityProfileControllerDeleteProfile(props) {
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/profiles/productivity/${props.refId}`, method: 'DELETE' }, props));
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* Marks the specified productivity profile as inactive by creating a new version with active=false. Note: Productivity profiles that are linked to org trees cannot be deleted. You must first unlink the profile from all org trees before deletion.
|
|
11
|
+
*/
|
|
9
12
|
export function useProductivityProfileControllerDeleteProfileMutation(options) {
|
|
10
13
|
return useMutation((mutateProps) => productivityProfileControllerDeleteProfile(mutateProps), options);
|
|
11
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'> {
|
|
@@ -49,6 +49,8 @@ export type { CollectionControllerGetCollectionTreeErrorResponse, CollectionCont
|
|
|
49
49
|
export { collectionControllerGetCollectionTree, useCollectionControllerGetCollectionTreeQuery, } from './hooks/useCollectionControllerGetCollectionTreeQuery';
|
|
50
50
|
export type { CollectionControllerListCollectionsErrorResponse, CollectionControllerListCollectionsOkResponse, CollectionControllerListCollectionsProps, CollectionControllerListCollectionsQueryQueryParams, CollectionControllerListCollectionsRequestBody, } from './hooks/useCollectionControllerListCollectionsQuery';
|
|
51
51
|
export { collectionControllerListCollections, useCollectionControllerListCollectionsQuery, } from './hooks/useCollectionControllerListCollectionsQuery';
|
|
52
|
+
export type { DeveloperControllerDeleteDevelopersErrorResponse, DeveloperControllerDeleteDevelopersOkResponse, DeveloperControllerDeleteDevelopersProps, } from './hooks/useDeveloperControllerDeleteDevelopersMutation';
|
|
53
|
+
export { developerControllerDeleteDevelopers, useDeveloperControllerDeleteDevelopersMutation, } from './hooks/useDeveloperControllerDeleteDevelopersMutation';
|
|
52
54
|
export type { DeveloperControllerDownloadDeveloperCsvErrorResponse, DeveloperControllerDownloadDeveloperCsvOkResponse, DeveloperControllerDownloadDeveloperCsvProps, } from './hooks/useDeveloperControllerDownloadDeveloperCsvQuery';
|
|
53
55
|
export { developerControllerDownloadDeveloperCsv, useDeveloperControllerDownloadDeveloperCsvQuery, } from './hooks/useDeveloperControllerDownloadDeveloperCsvQuery';
|
|
54
56
|
export type { DeveloperControllerDownloadGeneratedDevelopersCsvErrorResponse, DeveloperControllerDownloadGeneratedDevelopersCsvOkResponse, DeveloperControllerDownloadGeneratedDevelopersCsvProps, } from './hooks/useDeveloperControllerDownloadGeneratedDevelopersCsvQuery';
|
|
@@ -71,6 +73,8 @@ export type { DeveloperControllerUpdateDeveloperErrorResponse, DeveloperControll
|
|
|
71
73
|
export { developerControllerUpdateDeveloper, useDeveloperControllerUpdateDeveloperMutation, } from './hooks/useDeveloperControllerUpdateDeveloperMutation';
|
|
72
74
|
export type { DeveloperControllerUploadDeveloperFileErrorResponse, DeveloperControllerUploadDeveloperFileMutationQueryParams, DeveloperControllerUploadDeveloperFileOkResponse, DeveloperControllerUploadDeveloperFileProps, DeveloperControllerUploadDeveloperFileRequestBody, } from './hooks/useDeveloperControllerUploadDeveloperFileMutation';
|
|
73
75
|
export { developerControllerUploadDeveloperFile, useDeveloperControllerUploadDeveloperFileMutation, } from './hooks/useDeveloperControllerUploadDeveloperFileMutation';
|
|
76
|
+
export type { DeveloperControllerUpsertDevelopersErrorResponse, DeveloperControllerUpsertDevelopersOkResponse, DeveloperControllerUpsertDevelopersProps, DeveloperControllerUpsertDevelopersRequestBody, } from './hooks/useDeveloperControllerUpsertDevelopersMutation';
|
|
77
|
+
export { developerControllerUpsertDevelopers, useDeveloperControllerUpsertDevelopersMutation, } from './hooks/useDeveloperControllerUpsertDevelopersMutation';
|
|
74
78
|
export type { DoraControllerBreakdownErrorResponse, DoraControllerBreakdownOkResponse, DoraControllerBreakdownProps, DoraControllerBreakdownQueryQueryParams, DoraControllerBreakdownRequestBody, } from './hooks/useDoraControllerBreakdownQuery';
|
|
75
79
|
export { doraControllerBreakdown, useDoraControllerBreakdownQuery, } from './hooks/useDoraControllerBreakdownQuery';
|
|
76
80
|
export type { DoraControllerChangeFailureRateBreakdownErrorResponse, DoraControllerChangeFailureRateBreakdownOkResponse, DoraControllerChangeFailureRateBreakdownProps, DoraControllerChangeFailureRateBreakdownQueryQueryParams, DoraControllerChangeFailureRateBreakdownRequestBody, } from './hooks/useDoraControllerChangeFailureRateBreakdownQuery';
|
|
@@ -131,6 +135,8 @@ export type { EfficiencyProfileControllerGetProfileErrorResponse, EfficiencyProf
|
|
|
131
135
|
export { efficiencyProfileControllerGetProfile, useEfficiencyProfileControllerGetProfileQuery, } from './hooks/useEfficiencyProfileControllerGetProfileQuery';
|
|
132
136
|
export type { EfficiencyProfileControllerListProfilesErrorResponse, EfficiencyProfileControllerListProfilesOkResponse, EfficiencyProfileControllerListProfilesProps, EfficiencyProfileControllerListProfilesQueryQueryParams, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
|
|
133
137
|
export { efficiencyProfileControllerListProfiles, useEfficiencyProfileControllerListProfilesQuery, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
|
|
138
|
+
export type { EfficiencyProfileControllerSearchProfilesErrorResponse, EfficiencyProfileControllerSearchProfilesMutationQueryParams, EfficiencyProfileControllerSearchProfilesOkResponse, EfficiencyProfileControllerSearchProfilesProps, EfficiencyProfileControllerSearchProfilesRequestBody, } from './hooks/useEfficiencyProfileControllerSearchProfilesMutation';
|
|
139
|
+
export { efficiencyProfileControllerSearchProfiles, useEfficiencyProfileControllerSearchProfilesMutation, } from './hooks/useEfficiencyProfileControllerSearchProfilesMutation';
|
|
134
140
|
export type { EfficiencyProfileControllerUpdateProfileErrorResponse, EfficiencyProfileControllerUpdateProfileMutationPathParams, EfficiencyProfileControllerUpdateProfileMutationQueryParams, EfficiencyProfileControllerUpdateProfileOkResponse, EfficiencyProfileControllerUpdateProfileProps, EfficiencyProfileControllerUpdateProfileRequestBody, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
|
135
141
|
export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
|
136
142
|
export type { ExportControllerForCollectionsExportDataErrorResponse, ExportControllerForCollectionsExportDataMutationQueryParams, ExportControllerForCollectionsExportDataOkResponse, ExportControllerForCollectionsExportDataProps, ExportControllerForCollectionsExportDataRequestBody, } from './hooks/useExportControllerForCollectionsExportDataMutation';
|
|
@@ -163,6 +169,8 @@ export type { IssuesControllerGetCommitsInfoFromPrErrorResponse, IssuesControlle
|
|
|
163
169
|
export { issuesControllerGetCommitsInfoFromPr, useIssuesControllerGetCommitsInfoFromPrQuery, } from './hooks/useIssuesControllerGetCommitsInfoFromPrQuery';
|
|
164
170
|
export type { IssuesControllerGetDeployInfoFromIssuesErrorResponse, IssuesControllerGetDeployInfoFromIssuesOkResponse, IssuesControllerGetDeployInfoFromIssuesProps, IssuesControllerGetDeployInfoFromIssuesQueryQueryParams, IssuesControllerGetDeployInfoFromIssuesRequestBody, } from './hooks/useIssuesControllerGetDeployInfoFromIssuesQuery';
|
|
165
171
|
export { issuesControllerGetDeployInfoFromIssues, useIssuesControllerGetDeployInfoFromIssuesQuery, } from './hooks/useIssuesControllerGetDeployInfoFromIssuesQuery';
|
|
172
|
+
export type { IssuesControllerGetIssuesForVersionReleaseErrorResponse, IssuesControllerGetIssuesForVersionReleaseMutationQueryParams, IssuesControllerGetIssuesForVersionReleaseOkResponse, IssuesControllerGetIssuesForVersionReleaseProps, IssuesControllerGetIssuesForVersionReleaseRequestBody, } from './hooks/useIssuesControllerGetIssuesForVersionReleaseMutation';
|
|
173
|
+
export { issuesControllerGetIssuesForVersionRelease, useIssuesControllerGetIssuesForVersionReleaseMutation, } from './hooks/useIssuesControllerGetIssuesForVersionReleaseMutation';
|
|
166
174
|
export type { IssuesControllerGetPrsFromIssuesErrorResponse, IssuesControllerGetPrsFromIssuesOkResponse, IssuesControllerGetPrsFromIssuesProps, IssuesControllerGetPrsFromIssuesQueryQueryParams, IssuesControllerGetPrsFromIssuesRequestBody, } from './hooks/useIssuesControllerGetPrsFromIssuesQuery';
|
|
167
175
|
export { issuesControllerGetPrsFromIssues, useIssuesControllerGetPrsFromIssuesQuery, } from './hooks/useIssuesControllerGetPrsFromIssuesQuery';
|
|
168
176
|
export type { JiraIssuesControllerGetJiraIssueCountErrorResponse, JiraIssuesControllerGetJiraIssueCountOkResponse, JiraIssuesControllerGetJiraIssueCountProps, } from './hooks/useJiraIssuesControllerGetJiraIssueCountQuery';
|
|
@@ -227,6 +235,8 @@ export type { ProductivityProfileControllerGetProfileByRefIdErrorResponse, Produ
|
|
|
227
235
|
export { productivityProfileControllerGetProfileByRefId, useProductivityProfileControllerGetProfileByRefIdQuery, } from './hooks/useProductivityProfileControllerGetProfileByRefIdQuery';
|
|
228
236
|
export type { ProductivityProfileControllerListProfilesErrorResponse, ProductivityProfileControllerListProfilesOkResponse, ProductivityProfileControllerListProfilesProps, ProductivityProfileControllerListProfilesQueryQueryParams, } from './hooks/useProductivityProfileControllerListProfilesQuery';
|
|
229
237
|
export { productivityProfileControllerListProfiles, useProductivityProfileControllerListProfilesQuery, } from './hooks/useProductivityProfileControllerListProfilesQuery';
|
|
238
|
+
export type { ProductivityProfileControllerSearchProfilesErrorResponse, ProductivityProfileControllerSearchProfilesMutationQueryParams, ProductivityProfileControllerSearchProfilesOkResponse, ProductivityProfileControllerSearchProfilesProps, ProductivityProfileControllerSearchProfilesRequestBody, } from './hooks/useProductivityProfileControllerSearchProfilesMutation';
|
|
239
|
+
export { productivityProfileControllerSearchProfiles, useProductivityProfileControllerSearchProfilesMutation, } from './hooks/useProductivityProfileControllerSearchProfilesMutation';
|
|
230
240
|
export type { ProductivityProfileControllerUpdateProfileErrorResponse, ProductivityProfileControllerUpdateProfileMutationPathParams, ProductivityProfileControllerUpdateProfileMutationQueryParams, ProductivityProfileControllerUpdateProfileOkResponse, ProductivityProfileControllerUpdateProfileProps, ProductivityProfileControllerUpdateProfileRequestBody, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
|
|
231
241
|
export { productivityProfileControllerUpdateProfile, useProductivityProfileControllerUpdateProfileMutation, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
|
|
232
242
|
export type { ProductivityV3ControllerGetFeatureBreakdownErrorResponse, ProductivityV3ControllerGetFeatureBreakdownOkResponse, ProductivityV3ControllerGetFeatureBreakdownProps, ProductivityV3ControllerGetFeatureBreakdownQueryQueryParams, ProductivityV3ControllerGetFeatureBreakdownRequestBody, } from './hooks/useProductivityV3ControllerGetFeatureBreakdownQuery';
|
|
@@ -237,6 +247,10 @@ export type { ProductivityV3ControllerGetFeatureMetricsErrorResponse, Productivi
|
|
|
237
247
|
export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerGetFeatureMetricsQuery, } from './hooks/useProductivityV3ControllerGetFeatureMetricsQuery';
|
|
238
248
|
export type { ProductivityV3ControllerGetIndividualUserFeatureDrillDownErrorResponse, ProductivityV3ControllerGetIndividualUserFeatureDrillDownOkResponse, ProductivityV3ControllerGetIndividualUserFeatureDrillDownProps, ProductivityV3ControllerGetIndividualUserFeatureDrillDownQueryQueryParams, ProductivityV3ControllerGetIndividualUserFeatureDrillDownRequestBody, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
|
|
239
249
|
export { productivityV3ControllerGetIndividualUserFeatureDrillDown, useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
|
|
250
|
+
export type { ScmGaControllerGetBuildInfoFromPrErrorResponse, ScmGaControllerGetBuildInfoFromPrOkResponse, ScmGaControllerGetBuildInfoFromPrProps, ScmGaControllerGetBuildInfoFromPrQueryQueryParams, ScmGaControllerGetBuildInfoFromPrRequestBody, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
251
|
+
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
252
|
+
export type { ScmGaControllerGetDeployInfoFromPrErrorResponse, ScmGaControllerGetDeployInfoFromPrOkResponse, ScmGaControllerGetDeployInfoFromPrProps, ScmGaControllerGetDeployInfoFromPrQueryQueryParams, ScmGaControllerGetDeployInfoFromPrRequestBody, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
253
|
+
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
240
254
|
export type { TeamsControllerGetTeamDevelopersErrorResponse, TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersProps, TeamsControllerGetTeamDevelopersQueryPathParams, TeamsControllerGetTeamDevelopersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
241
255
|
export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
242
256
|
export type { TeamsControllerGetTeamIntegrationFiltersErrorResponse, TeamsControllerGetTeamIntegrationFiltersOkResponse, TeamsControllerGetTeamIntegrationFiltersProps, TeamsControllerGetTeamIntegrationFiltersQueryPathParams, TeamsControllerGetTeamIntegrationFiltersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
|
|
@@ -303,6 +317,7 @@ export type { DeveloperLicenseDto } from './schemas/DeveloperLicenseDto';
|
|
|
303
317
|
export type { DeveloperListResponseDto } from './schemas/DeveloperListResponseDto';
|
|
304
318
|
export type { DeveloperSaveResponseDto } from './schemas/DeveloperSaveResponseDto';
|
|
305
319
|
export type { DeveloperSearchParams } from './schemas/DeveloperSearchParams';
|
|
320
|
+
export type { DeveloperUpsertResponseDto } from './schemas/DeveloperUpsertResponseDto';
|
|
306
321
|
export type { DeveloperValidationErrorDto } from './schemas/DeveloperValidationErrorDto';
|
|
307
322
|
export type { DfConfigurationDto } from './schemas/DfConfigurationDto';
|
|
308
323
|
export type { DoraChangeFailureRateMetric } from './schemas/DoraChangeFailureRateMetric';
|
|
@@ -370,6 +385,7 @@ export type { IssuesPrResponse } from './schemas/IssuesPrResponse';
|
|
|
370
385
|
export type { IssuesPrResponseWrapper } from './schemas/IssuesPrResponseWrapper';
|
|
371
386
|
export type { JsonNode } from './schemas/JsonNode';
|
|
372
387
|
export type { LicenseSearchParams } from './schemas/LicenseSearchParams';
|
|
388
|
+
export type { ListResponseDto } from './schemas/ListResponseDto';
|
|
373
389
|
export type { ListResponseDtoDeveloperLicenseDto } from './schemas/ListResponseDtoDeveloperLicenseDto';
|
|
374
390
|
export type { ListResponseDtoEfficiencyProfileResponseDto } from './schemas/ListResponseDtoEfficiencyProfileResponseDto';
|
|
375
391
|
export type { ListResponseDtoIntegrationResponseDto } from './schemas/ListResponseDtoIntegrationResponseDto';
|
|
@@ -401,6 +417,7 @@ export type { PrCommitsResponseWrapper } from './schemas/PrCommitsResponseWrappe
|
|
|
401
417
|
export type { PrCycleTimeDrilldownResponseDataPoint } from './schemas/PrCycleTimeDrilldownResponseDataPoint';
|
|
402
418
|
export type { PrCycleTimeDrilldownResponseDataPointV3 } from './schemas/PrCycleTimeDrilldownResponseDataPointV3';
|
|
403
419
|
export type { PrInfo } from './schemas/PrInfo';
|
|
420
|
+
export type { PrRequest } from './schemas/PrRequest';
|
|
404
421
|
export type { PrSize } from './schemas/PrSize';
|
|
405
422
|
export type { PrVelocityDrilldownResponseDataPoint } from './schemas/PrVelocityDrilldownResponseDataPoint';
|
|
406
423
|
export type { PrVelocityDrilldownResponseDataPointV3 } from './schemas/PrVelocityDrilldownResponseDataPointV3';
|
|
@@ -423,13 +440,17 @@ export type { ProductivityV3FeatureBreakdownResponseDto } from './schemas/Produc
|
|
|
423
440
|
export type { ProductivityV3FeatureDrilldownResponseDto } from './schemas/ProductivityV3FeatureDrilldownResponseDto';
|
|
424
441
|
export type { ProductivityV3FeatureIndividualDrilldownResponseDto } from './schemas/ProductivityV3FeatureIndividualDrilldownResponseDto';
|
|
425
442
|
export type { ProductivityV3FeatureRequestDto } from './schemas/ProductivityV3FeatureRequestDto';
|
|
443
|
+
export type { ProfileSearchParams } from './schemas/ProfileSearchParams';
|
|
426
444
|
export type { RefIdDto } from './schemas/RefIdDto';
|
|
445
|
+
export type { ReleaseIssueDto } from './schemas/ReleaseIssueDto';
|
|
446
|
+
export type { ReleaseIssuesResponseWrapper } from './schemas/ReleaseIssuesResponseWrapper';
|
|
427
447
|
export type { SectionDto } from './schemas/SectionDto';
|
|
428
448
|
export type { SortOption } from './schemas/SortOption';
|
|
429
449
|
export type { Stage } from './schemas/Stage';
|
|
430
450
|
export type { SummaryCard } from './schemas/SummaryCard';
|
|
431
451
|
export type { SummaryValue } from './schemas/SummaryValue';
|
|
432
452
|
export type { SummaryValueChange } from './schemas/SummaryValueChange';
|
|
453
|
+
export type { TeamDeveloperSearchParams } from './schemas/TeamDeveloperSearchParams';
|
|
433
454
|
export type { TeamDevelopersDto } from './schemas/TeamDevelopersDto';
|
|
434
455
|
export type { TeamFilter } from './schemas/TeamFilter';
|
|
435
456
|
export type { TeamInfoUpdateRequestDto } from './schemas/TeamInfoUpdateRequestDto';
|
|
@@ -438,6 +459,7 @@ export type { TeamResponse } from './schemas/TeamResponse';
|
|
|
438
459
|
export type { TeamSearchParams } from './schemas/TeamSearchParams';
|
|
439
460
|
export type { TeamSummary } from './schemas/TeamSummary';
|
|
440
461
|
export type { TotalStatisticCount } from './schemas/TotalStatisticCount';
|
|
462
|
+
export type { VersionReleaseRequest } from './schemas/VersionReleaseRequest';
|
|
441
463
|
export type { WorkCompletedDrilldownResponseDataPoint } from './schemas/WorkCompletedDrilldownResponseDataPoint';
|
|
442
464
|
export type { WorkCompletedDrilldownResponseDataPointV3 } from './schemas/WorkCompletedDrilldownResponseDataPointV3';
|
|
443
465
|
export type { WorkCompletedIndividualDrilldownResponseDataPoint } from './schemas/WorkCompletedIndividualDrilldownResponseDataPoint';
|
|
@@ -23,6 +23,7 @@ export { categoryControllerGetCategory, useCategoryControllerGetCategoryQuery, }
|
|
|
23
23
|
export { categoryControllerList, useCategoryControllerListQuery, } from './hooks/useCategoryControllerListQuery';
|
|
24
24
|
export { collectionControllerGetCollectionTree, useCollectionControllerGetCollectionTreeQuery, } from './hooks/useCollectionControllerGetCollectionTreeQuery';
|
|
25
25
|
export { collectionControllerListCollections, useCollectionControllerListCollectionsQuery, } from './hooks/useCollectionControllerListCollectionsQuery';
|
|
26
|
+
export { developerControllerDeleteDevelopers, useDeveloperControllerDeleteDevelopersMutation, } from './hooks/useDeveloperControllerDeleteDevelopersMutation';
|
|
26
27
|
export { developerControllerDownloadDeveloperCsv, useDeveloperControllerDownloadDeveloperCsvQuery, } from './hooks/useDeveloperControllerDownloadDeveloperCsvQuery';
|
|
27
28
|
export { developerControllerDownloadGeneratedDevelopersCsv, useDeveloperControllerDownloadGeneratedDevelopersCsvQuery, } from './hooks/useDeveloperControllerDownloadGeneratedDevelopersCsvQuery';
|
|
28
29
|
export { developerControllerGetDeveloperUploadPreview, useDeveloperControllerGetDeveloperUploadPreviewQuery, } from './hooks/useDeveloperControllerGetDeveloperUploadPreviewQuery';
|
|
@@ -34,6 +35,7 @@ export { developerControllerSaveDevelopers, useDeveloperControllerSaveDevelopers
|
|
|
34
35
|
export { developerControllerSearchDevelopers, useDeveloperControllerSearchDevelopersQuery, } from './hooks/useDeveloperControllerSearchDevelopersQuery';
|
|
35
36
|
export { developerControllerUpdateDeveloper, useDeveloperControllerUpdateDeveloperMutation, } from './hooks/useDeveloperControllerUpdateDeveloperMutation';
|
|
36
37
|
export { developerControllerUploadDeveloperFile, useDeveloperControllerUploadDeveloperFileMutation, } from './hooks/useDeveloperControllerUploadDeveloperFileMutation';
|
|
38
|
+
export { developerControllerUpsertDevelopers, useDeveloperControllerUpsertDevelopersMutation, } from './hooks/useDeveloperControllerUpsertDevelopersMutation';
|
|
37
39
|
export { doraControllerBreakdown, useDoraControllerBreakdownQuery, } from './hooks/useDoraControllerBreakdownQuery';
|
|
38
40
|
export { doraControllerChangeFailureRateBreakdown, useDoraControllerChangeFailureRateBreakdownQuery, } from './hooks/useDoraControllerChangeFailureRateBreakdownQuery';
|
|
39
41
|
export { doraControllerChangeFailureRate, useDoraControllerChangeFailureRateQuery, } from './hooks/useDoraControllerChangeFailureRateQuery';
|
|
@@ -64,6 +66,7 @@ export { efficiencyProfileControllerCreateProfile, useEfficiencyProfileControlle
|
|
|
64
66
|
export { efficiencyProfileControllerDeleteProfileByRefId, useEfficiencyProfileControllerDeleteProfileByRefIdMutation, } from './hooks/useEfficiencyProfileControllerDeleteProfileByRefIdMutation';
|
|
65
67
|
export { efficiencyProfileControllerGetProfile, useEfficiencyProfileControllerGetProfileQuery, } from './hooks/useEfficiencyProfileControllerGetProfileQuery';
|
|
66
68
|
export { efficiencyProfileControllerListProfiles, useEfficiencyProfileControllerListProfilesQuery, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
|
|
69
|
+
export { efficiencyProfileControllerSearchProfiles, useEfficiencyProfileControllerSearchProfilesMutation, } from './hooks/useEfficiencyProfileControllerSearchProfilesMutation';
|
|
67
70
|
export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
|
68
71
|
export { exportControllerForCollectionsExportData, useExportControllerForCollectionsExportDataMutation, } from './hooks/useExportControllerForCollectionsExportDataMutation';
|
|
69
72
|
export { exportControllerForTeamsExportData, useExportControllerForTeamsExportDataMutation, } from './hooks/useExportControllerForTeamsExportDataMutation';
|
|
@@ -80,6 +83,7 @@ export { integrationStatsControllerGetScmReposCount, useIntegrationStatsControll
|
|
|
80
83
|
export { issuesControllerGetBuildInfoFromIssues, useIssuesControllerGetBuildInfoFromIssuesQuery, } from './hooks/useIssuesControllerGetBuildInfoFromIssuesQuery';
|
|
81
84
|
export { issuesControllerGetCommitsInfoFromPr, useIssuesControllerGetCommitsInfoFromPrQuery, } from './hooks/useIssuesControllerGetCommitsInfoFromPrQuery';
|
|
82
85
|
export { issuesControllerGetDeployInfoFromIssues, useIssuesControllerGetDeployInfoFromIssuesQuery, } from './hooks/useIssuesControllerGetDeployInfoFromIssuesQuery';
|
|
86
|
+
export { issuesControllerGetIssuesForVersionRelease, useIssuesControllerGetIssuesForVersionReleaseMutation, } from './hooks/useIssuesControllerGetIssuesForVersionReleaseMutation';
|
|
83
87
|
export { issuesControllerGetPrsFromIssues, useIssuesControllerGetPrsFromIssuesQuery, } from './hooks/useIssuesControllerGetPrsFromIssuesQuery';
|
|
84
88
|
export { jiraIssuesControllerGetJiraIssueCount, useJiraIssuesControllerGetJiraIssueCountQuery, } from './hooks/useJiraIssuesControllerGetJiraIssueCountQuery';
|
|
85
89
|
export { legacyHealthControllerCheck, useLegacyHealthControllerCheckQuery, } from './hooks/useLegacyHealthControllerCheckQuery';
|
|
@@ -112,11 +116,14 @@ export { productivityProfileControllerDeleteProfile, useProductivityProfileContr
|
|
|
112
116
|
export { productivityProfileControllerGetProductivityProfileFilterValues, useProductivityProfileControllerGetProductivityProfileFilterValuesQuery, } from './hooks/useProductivityProfileControllerGetProductivityProfileFilterValuesQuery';
|
|
113
117
|
export { productivityProfileControllerGetProfileByRefId, useProductivityProfileControllerGetProfileByRefIdQuery, } from './hooks/useProductivityProfileControllerGetProfileByRefIdQuery';
|
|
114
118
|
export { productivityProfileControllerListProfiles, useProductivityProfileControllerListProfilesQuery, } from './hooks/useProductivityProfileControllerListProfilesQuery';
|
|
119
|
+
export { productivityProfileControllerSearchProfiles, useProductivityProfileControllerSearchProfilesMutation, } from './hooks/useProductivityProfileControllerSearchProfilesMutation';
|
|
115
120
|
export { productivityProfileControllerUpdateProfile, useProductivityProfileControllerUpdateProfileMutation, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
|
|
116
121
|
export { productivityV3ControllerGetFeatureBreakdown, useProductivityV3ControllerGetFeatureBreakdownQuery, } from './hooks/useProductivityV3ControllerGetFeatureBreakdownQuery';
|
|
117
122
|
export { productivityV3ControllerGetFeatureDrillDown, useProductivityV3ControllerGetFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetFeatureDrillDownQuery';
|
|
118
123
|
export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerGetFeatureMetricsQuery, } from './hooks/useProductivityV3ControllerGetFeatureMetricsQuery';
|
|
119
124
|
export { productivityV3ControllerGetIndividualUserFeatureDrillDown, useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
|
|
125
|
+
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
126
|
+
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
120
127
|
export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
121
128
|
export { teamsControllerGetTeamIntegrationFilters, useTeamsControllerGetTeamIntegrationFiltersQuery, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
|
|
122
129
|
export { teamsControllerGetTeamIntegrations, useTeamsControllerGetTeamIntegrationsQuery, } from './hooks/useTeamsControllerGetTeamIntegrationsQuery';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { DeveloperValidationErrorDto } from '../schemas/DeveloperValidationErrorDto';
|
|
2
|
+
/**
|
|
3
|
+
* Response for saving developers from an upload
|
|
4
|
+
*/
|
|
5
|
+
export interface DeveloperUpsertResponseDto {
|
|
6
|
+
/**
|
|
7
|
+
* Validation errors found in the data
|
|
8
|
+
*/
|
|
9
|
+
errors?: DeveloperValidationErrorDto[];
|
|
10
|
+
/**
|
|
11
|
+
* Status message
|
|
12
|
+
*/
|
|
13
|
+
status?: 'FAILURE' | 'SUCCESS';
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -10,7 +10,8 @@ export interface DeveloperValidationErrorDto {
|
|
|
10
10
|
/**
|
|
11
11
|
* Type of validation error
|
|
12
12
|
*/
|
|
13
|
-
errorType?: 'CIRCULAR_REFERENCE' | '
|
|
13
|
+
errorType?: 'CIRCULAR_REFERENCE' | 'DUPLICATE_EMAIL' | 'REQUIRED_FIELD_MISSING';
|
|
14
|
+
fieldName?: string;
|
|
14
15
|
/**
|
|
15
16
|
* Sample records with this error
|
|
16
17
|
*/
|
|
@@ -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,15 @@
|
|
|
1
|
+
import type { ReleaseIssueDto } from '../schemas/ReleaseIssueDto';
|
|
2
|
+
import type { PaginationInfo } from '../schemas/PaginationInfo';
|
|
3
|
+
/**
|
|
4
|
+
* Response wrapper for version release issues information
|
|
5
|
+
*/
|
|
6
|
+
export interface ReleaseIssuesResponseWrapper {
|
|
7
|
+
/**
|
|
8
|
+
* List of issues for the version release
|
|
9
|
+
*/
|
|
10
|
+
issues?: ReleaseIssueDto[];
|
|
11
|
+
/**
|
|
12
|
+
* Pagination information
|
|
13
|
+
*/
|
|
14
|
+
pagination?: PaginationInfo;
|
|
15
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { PaginationRequest } from '../schemas/PaginationRequest';
|
|
2
|
+
/**
|
|
3
|
+
* Request for retrieving issues for a specific version release
|
|
4
|
+
*/
|
|
5
|
+
export interface VersionReleaseRequest {
|
|
6
|
+
/**
|
|
7
|
+
* Pagination request
|
|
8
|
+
*/
|
|
9
|
+
pagination?: PaginationRequest;
|
|
10
|
+
/**
|
|
11
|
+
* Version identifier
|
|
12
|
+
* @format int32
|
|
13
|
+
*/
|
|
14
|
+
versionId: number;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
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.15",
|
|
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",
|