@harnessio/react-sei-panorama-service-client 0.21.12 → 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.
Files changed (39) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery.d.ts +16 -0
  2. package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery.js +14 -0
  3. package/dist/sei-panorama-service/src/services/hooks/useEfficiencyProfileControllerSearchProfilesMutation.d.ts +31 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useEfficiencyProfileControllerSearchProfilesMutation.js +14 -0
  5. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerCreateOrgTreeMutation.d.ts +2 -1
  6. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery.d.ts +1 -5
  7. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery.js +1 -1
  8. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery.d.ts +1 -5
  9. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery.js +1 -1
  10. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreesQuery.d.ts +2 -1
  11. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerPreviewTeamHierarchyMutation.d.ts +1 -5
  12. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerUpdateOrgTreeIntegrationsMutation.d.ts +1 -5
  13. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerUpdateOrgTreeMutation.d.ts +1 -5
  14. package/dist/sei-panorama-service/src/services/hooks/useProductivityProfileControllerSearchProfilesMutation.d.ts +31 -0
  15. package/dist/sei-panorama-service/src/services/hooks/useProductivityProfileControllerSearchProfilesMutation.js +14 -0
  16. package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetBuildInfoFromPrQuery.d.ts +22 -0
  17. package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetBuildInfoFromPrQuery.js +14 -0
  18. package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetDeployInfoFromPrQuery.d.ts +22 -0
  19. package/dist/sei-panorama-service/src/services/hooks/useScmGaControllerGetDeployInfoFromPrQuery.js +14 -0
  20. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamIntegrationFiltersQuery.d.ts +0 -1
  21. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamDevelopersQuery.d.ts +33 -0
  22. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamDevelopersQuery.js +14 -0
  23. package/dist/sei-panorama-service/src/services/index.d.ts +21 -5
  24. package/dist/sei-panorama-service/src/services/index.js +6 -0
  25. package/dist/sei-panorama-service/src/services/schemas/EfficiencyLeadTimeDrilldownItem.d.ts +34 -0
  26. package/dist/sei-panorama-service/src/services/schemas/EfficiencyLeadTimeDrilldownResponseWrapper.d.ts +4 -0
  27. package/dist/sei-panorama-service/src/services/schemas/EfficiencyMetricDrilldownRequest.d.ts +1 -1
  28. package/dist/sei-panorama-service/src/services/schemas/ListResponseDto.d.ts +17 -0
  29. package/dist/sei-panorama-service/src/services/schemas/ListResponseDto.js +4 -0
  30. package/dist/sei-panorama-service/src/services/schemas/MinimalTeamHierarchyResponseDto.d.ts +1 -1
  31. package/dist/sei-panorama-service/src/services/schemas/OrgTreeSearchParams.d.ts +2 -2
  32. package/dist/sei-panorama-service/src/services/schemas/PrRequest.d.ts +14 -0
  33. package/dist/sei-panorama-service/src/services/schemas/PrRequest.js +1 -0
  34. package/dist/sei-panorama-service/src/services/schemas/ProfileSearchParams.d.ts +6 -0
  35. package/dist/sei-panorama-service/src/services/schemas/ProfileSearchParams.js +4 -0
  36. package/dist/sei-panorama-service/src/services/schemas/SummaryCard.d.ts +1 -0
  37. package/dist/sei-panorama-service/src/services/schemas/TeamDeveloperSearchParams.d.ts +23 -0
  38. package/dist/sei-panorama-service/src/services/schemas/TeamDeveloperSearchParams.js +4 -0
  39. package/package.json +1 -1
@@ -0,0 +1,16 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ResponseWithPagination } from '../helpers';
3
+ import { FetcherOptions } from '../../../../fetcher/index.js';
4
+ export interface DeveloperControllerGetDistinctDeveloperAttributeValuesQueryQueryParams {
5
+ attribute: string;
6
+ }
7
+ export type DeveloperControllerGetDistinctDeveloperAttributeValuesOkResponse = ResponseWithPagination<string[]>;
8
+ export type DeveloperControllerGetDistinctDeveloperAttributeValuesErrorResponse = unknown;
9
+ export interface DeveloperControllerGetDistinctDeveloperAttributeValuesProps extends Omit<FetcherOptions<DeveloperControllerGetDistinctDeveloperAttributeValuesQueryQueryParams, unknown>, 'url'> {
10
+ queryParams: DeveloperControllerGetDistinctDeveloperAttributeValuesQueryQueryParams;
11
+ }
12
+ export declare function developerControllerGetDistinctDeveloperAttributeValues(props: DeveloperControllerGetDistinctDeveloperAttributeValuesProps): Promise<DeveloperControllerGetDistinctDeveloperAttributeValuesOkResponse>;
13
+ /**
14
+ * Returns distinct values for a given attribute key from developers.attributes for the active version.
15
+ */
16
+ export declare function useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery(props: DeveloperControllerGetDistinctDeveloperAttributeValuesProps, options?: Omit<UseQueryOptions<DeveloperControllerGetDistinctDeveloperAttributeValuesOkResponse, DeveloperControllerGetDistinctDeveloperAttributeValuesErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<DeveloperControllerGetDistinctDeveloperAttributeValuesOkResponse, 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 { useQuery } from '@tanstack/react-query';
5
+ import { fetcher } from '../../../../fetcher/index.js';
6
+ export function developerControllerGetDistinctDeveloperAttributeValues(props) {
7
+ return fetcher(Object.assign({ url: `/v2/developers/attribute-values`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Returns distinct values for a given attribute key from developers.attributes for the active version.
11
+ */
12
+ export function useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery(props, options) {
13
+ return useQuery(['DeveloperControllerGetDistinctDeveloperAttributeValues', props.queryParams], ({ signal }) => developerControllerGetDistinctDeveloperAttributeValues(Object.assign(Object.assign({}, props), { signal })), 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 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
+ }
@@ -6,7 +6,8 @@ import type { ResponseWithPagination } from '../helpers';
6
6
  import { FetcherOptions } from '../../../../fetcher/index.js';
7
7
  export interface OrgTreeControllerCreateOrgTreeMutationQueryParams {
8
8
  accountIdentifier: string;
9
- orgIdentifer: string;
9
+ orgIdentifer?: string;
10
+ orgIdentifier?: string;
10
11
  projectIdentifier: string;
11
12
  }
12
13
  export type OrgTreeControllerCreateOrgTreeRequestBody = OrgTreeCreateRequestDto;
@@ -9,13 +9,9 @@ export interface OrgTreeControllerGetOrgTreeIntegrationsQueryPathParams {
9
9
  */
10
10
  orgTreeId: number;
11
11
  }
12
- export interface OrgTreeControllerGetOrgTreeIntegrationsQueryQueryParams {
13
- accountIdentifier: string;
14
- }
15
12
  export type OrgTreeControllerGetOrgTreeIntegrationsOkResponse = ResponseWithPagination<IntegrationResponseDto[]>;
16
13
  export type OrgTreeControllerGetOrgTreeIntegrationsErrorResponse = ErrorResponse;
17
- export interface OrgTreeControllerGetOrgTreeIntegrationsProps extends OrgTreeControllerGetOrgTreeIntegrationsQueryPathParams, Omit<FetcherOptions<OrgTreeControllerGetOrgTreeIntegrationsQueryQueryParams, unknown>, 'url'> {
18
- queryParams: OrgTreeControllerGetOrgTreeIntegrationsQueryQueryParams;
14
+ export interface OrgTreeControllerGetOrgTreeIntegrationsProps extends OrgTreeControllerGetOrgTreeIntegrationsQueryPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
19
15
  }
20
16
  export declare function orgTreeControllerGetOrgTreeIntegrations(props: OrgTreeControllerGetOrgTreeIntegrationsProps): Promise<OrgTreeControllerGetOrgTreeIntegrationsOkResponse>;
21
17
  /**
@@ -10,5 +10,5 @@ export function orgTreeControllerGetOrgTreeIntegrations(props) {
10
10
  * Get the integrations associated with an organization tree
11
11
  */
12
12
  export function useOrgTreeControllerGetOrgTreeIntegrationsQuery(props, options) {
13
- return useQuery(['OrgTreeControllerGetOrgTreeIntegrations', props.orgTreeId, props.queryParams], ({ signal }) => orgTreeControllerGetOrgTreeIntegrations(Object.assign(Object.assign({}, props), { signal })), options);
13
+ return useQuery(['OrgTreeControllerGetOrgTreeIntegrations', props.orgTreeId], ({ signal }) => orgTreeControllerGetOrgTreeIntegrations(Object.assign(Object.assign({}, props), { signal })), options);
14
14
  }
@@ -9,13 +9,9 @@ export interface OrgTreeControllerGetOrgTreeTeamHierarchyQueryPathParams {
9
9
  */
10
10
  orgTreeId: number;
11
11
  }
12
- export interface OrgTreeControllerGetOrgTreeTeamHierarchyQueryQueryParams {
13
- accountIdentifier: string;
14
- }
15
12
  export type OrgTreeControllerGetOrgTreeTeamHierarchyOkResponse = ResponseWithPagination<MinimalTeamHierarchyResponseDto>;
16
13
  export type OrgTreeControllerGetOrgTreeTeamHierarchyErrorResponse = ErrorResponse;
17
- export interface OrgTreeControllerGetOrgTreeTeamHierarchyProps extends OrgTreeControllerGetOrgTreeTeamHierarchyQueryPathParams, Omit<FetcherOptions<OrgTreeControllerGetOrgTreeTeamHierarchyQueryQueryParams, unknown>, 'url'> {
18
- queryParams: OrgTreeControllerGetOrgTreeTeamHierarchyQueryQueryParams;
14
+ export interface OrgTreeControllerGetOrgTreeTeamHierarchyProps extends OrgTreeControllerGetOrgTreeTeamHierarchyQueryPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
19
15
  }
20
16
  export declare function orgTreeControllerGetOrgTreeTeamHierarchy(props: OrgTreeControllerGetOrgTreeTeamHierarchyProps): Promise<OrgTreeControllerGetOrgTreeTeamHierarchyOkResponse>;
21
17
  /**
@@ -10,5 +10,5 @@ export function orgTreeControllerGetOrgTreeTeamHierarchy(props) {
10
10
  * Get the team hierarchy for an organization tree
11
11
  */
12
12
  export function useOrgTreeControllerGetOrgTreeTeamHierarchyQuery(props, options) {
13
- return useQuery(['OrgTreeControllerGetOrgTreeTeamHierarchy', props.orgTreeId, props.queryParams], ({ signal }) => orgTreeControllerGetOrgTreeTeamHierarchy(Object.assign(Object.assign({}, props), { signal })), options);
13
+ return useQuery(['OrgTreeControllerGetOrgTreeTeamHierarchy', props.orgTreeId], ({ signal }) => orgTreeControllerGetOrgTreeTeamHierarchy(Object.assign(Object.assign({}, props), { signal })), options);
14
14
  }
@@ -5,7 +5,8 @@ import type { ResponseWithPagination } from '../helpers';
5
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
6
6
  export interface OrgTreeControllerGetOrgTreesQueryQueryParams {
7
7
  accountIdentifier: string;
8
- orgIdentifer: string;
8
+ orgIdentifer?: string;
9
+ orgIdentifier?: string;
9
10
  projectIdentifier: string;
10
11
  /**
11
12
  * @format int32
@@ -4,14 +4,10 @@ import type { ErrorResponse } from '../schemas/ErrorResponse';
4
4
  import type { OrgTreePreviewRequestDto } from '../schemas/OrgTreePreviewRequestDto';
5
5
  import type { ResponseWithPagination } from '../helpers';
6
6
  import { FetcherOptions } from '../../../../fetcher/index.js';
7
- export interface OrgTreeControllerPreviewTeamHierarchyMutationQueryParams {
8
- accountIdentifier: string;
9
- }
10
7
  export type OrgTreeControllerPreviewTeamHierarchyRequestBody = OrgTreePreviewRequestDto;
11
8
  export type OrgTreeControllerPreviewTeamHierarchyOkResponse = ResponseWithPagination<PreviewTeamHierarchyResponseDto>;
12
9
  export type OrgTreeControllerPreviewTeamHierarchyErrorResponse = ErrorResponse;
13
- export interface OrgTreeControllerPreviewTeamHierarchyProps extends Omit<FetcherOptions<OrgTreeControllerPreviewTeamHierarchyMutationQueryParams, OrgTreeControllerPreviewTeamHierarchyRequestBody>, 'url'> {
14
- queryParams: OrgTreeControllerPreviewTeamHierarchyMutationQueryParams;
10
+ export interface OrgTreeControllerPreviewTeamHierarchyProps extends Omit<FetcherOptions<unknown, OrgTreeControllerPreviewTeamHierarchyRequestBody>, 'url'> {
15
11
  body: OrgTreeControllerPreviewTeamHierarchyRequestBody;
16
12
  }
17
13
  export declare function orgTreeControllerPreviewTeamHierarchy(props: OrgTreeControllerPreviewTeamHierarchyProps): Promise<OrgTreeControllerPreviewTeamHierarchyOkResponse>;
@@ -10,14 +10,10 @@ export interface OrgTreeControllerUpdateOrgTreeIntegrationsMutationPathParams {
10
10
  */
11
11
  orgTreeId: number;
12
12
  }
13
- export interface OrgTreeControllerUpdateOrgTreeIntegrationsMutationQueryParams {
14
- accountIdentifier: string;
15
- }
16
13
  export type OrgTreeControllerUpdateOrgTreeIntegrationsRequestBody = IntegrationIdsDto;
17
14
  export type OrgTreeControllerUpdateOrgTreeIntegrationsOkResponse = ResponseWithPagination<IntegrationResponseDto>;
18
15
  export type OrgTreeControllerUpdateOrgTreeIntegrationsErrorResponse = ErrorResponse;
19
- export interface OrgTreeControllerUpdateOrgTreeIntegrationsProps extends OrgTreeControllerUpdateOrgTreeIntegrationsMutationPathParams, Omit<FetcherOptions<OrgTreeControllerUpdateOrgTreeIntegrationsMutationQueryParams, OrgTreeControllerUpdateOrgTreeIntegrationsRequestBody>, 'url'> {
20
- queryParams: OrgTreeControllerUpdateOrgTreeIntegrationsMutationQueryParams;
16
+ export interface OrgTreeControllerUpdateOrgTreeIntegrationsProps extends OrgTreeControllerUpdateOrgTreeIntegrationsMutationPathParams, Omit<FetcherOptions<unknown, OrgTreeControllerUpdateOrgTreeIntegrationsRequestBody>, 'url'> {
21
17
  body: OrgTreeControllerUpdateOrgTreeIntegrationsRequestBody;
22
18
  }
23
19
  export declare function orgTreeControllerUpdateOrgTreeIntegrations(props: OrgTreeControllerUpdateOrgTreeIntegrationsProps): Promise<OrgTreeControllerUpdateOrgTreeIntegrationsOkResponse>;
@@ -10,14 +10,10 @@ export interface OrgTreeControllerUpdateOrgTreeMutationPathParams {
10
10
  */
11
11
  id: number;
12
12
  }
13
- export interface OrgTreeControllerUpdateOrgTreeMutationQueryParams {
14
- accountIdentifier: string;
15
- }
16
13
  export type OrgTreeControllerUpdateOrgTreeRequestBody = OrgTreeUpdateRequestDto;
17
14
  export type OrgTreeControllerUpdateOrgTreeOkResponse = ResponseWithPagination<OrgTreeResponseDto>;
18
15
  export type OrgTreeControllerUpdateOrgTreeErrorResponse = ErrorResponse;
19
- export interface OrgTreeControllerUpdateOrgTreeProps extends OrgTreeControllerUpdateOrgTreeMutationPathParams, Omit<FetcherOptions<OrgTreeControllerUpdateOrgTreeMutationQueryParams, OrgTreeControllerUpdateOrgTreeRequestBody>, 'url'> {
20
- queryParams: OrgTreeControllerUpdateOrgTreeMutationQueryParams;
16
+ export interface OrgTreeControllerUpdateOrgTreeProps extends OrgTreeControllerUpdateOrgTreeMutationPathParams, Omit<FetcherOptions<unknown, OrgTreeControllerUpdateOrgTreeRequestBody>, 'url'> {
21
17
  body: OrgTreeControllerUpdateOrgTreeRequestBody;
22
18
  }
23
19
  export declare function orgTreeControllerUpdateOrgTree(props: OrgTreeControllerUpdateOrgTreeProps): Promise<OrgTreeControllerUpdateOrgTreeOkResponse>;
@@ -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
+ }
@@ -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>;
@@ -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
+ }
@@ -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>;
@@ -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
+ }
@@ -10,7 +10,6 @@ export interface TeamsControllerGetTeamIntegrationFiltersQueryPathParams {
10
10
  }
11
11
  export interface TeamsControllerGetTeamIntegrationFiltersQueryQueryParams {
12
12
  integrationType?: 'CD' | 'CI' | 'IM' | 'ITSM' | 'SCM';
13
- account: string;
14
13
  }
15
14
  export type TeamsControllerGetTeamIntegrationFiltersOkResponse = ResponseWithPagination<GroupedTeamFiltersResponseDto>;
16
15
  export type TeamsControllerGetTeamIntegrationFiltersErrorResponse = GroupedTeamFiltersResponseDto;
@@ -0,0 +1,33 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { TeamDevelopersDto } from '../schemas/TeamDevelopersDto';
3
+ import type { TeamDeveloperSearchParams } from '../schemas/TeamDeveloperSearchParams';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface TeamsControllerSearchTeamDevelopersQueryPathParams {
7
+ /**
8
+ * @format int32
9
+ */
10
+ teamRefId: number;
11
+ }
12
+ export interface TeamsControllerSearchTeamDevelopersQueryQueryParams {
13
+ /**
14
+ * @format int32
15
+ */
16
+ page?: number;
17
+ /**
18
+ * @format int32
19
+ */
20
+ size?: number;
21
+ }
22
+ export type TeamsControllerSearchTeamDevelopersRequestBody = TeamDeveloperSearchParams;
23
+ export type TeamsControllerSearchTeamDevelopersOkResponse = ResponseWithPagination<TeamDevelopersDto>;
24
+ export type TeamsControllerSearchTeamDevelopersErrorResponse = TeamDevelopersDto;
25
+ export interface TeamsControllerSearchTeamDevelopersProps extends TeamsControllerSearchTeamDevelopersQueryPathParams, Omit<FetcherOptions<TeamsControllerSearchTeamDevelopersQueryQueryParams, TeamsControllerSearchTeamDevelopersRequestBody>, 'url'> {
26
+ queryParams: TeamsControllerSearchTeamDevelopersQueryQueryParams;
27
+ body: TeamsControllerSearchTeamDevelopersRequestBody;
28
+ }
29
+ export declare function teamsControllerSearchTeamDevelopers(props: TeamsControllerSearchTeamDevelopersProps): Promise<TeamsControllerSearchTeamDevelopersOkResponse>;
30
+ /**
31
+ * Search developers for the specified team with filtering and sorting options
32
+ */
33
+ export declare function useTeamsControllerSearchTeamDevelopersQuery(props: TeamsControllerSearchTeamDevelopersProps, options?: Omit<UseQueryOptions<TeamsControllerSearchTeamDevelopersOkResponse, TeamsControllerSearchTeamDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerSearchTeamDevelopersOkResponse, TeamDevelopersDto>;
@@ -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 teamsControllerSearchTeamDevelopers(props) {
7
+ return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * Search developers for the specified team with filtering and sorting options
11
+ */
12
+ export function useTeamsControllerSearchTeamDevelopersQuery(props, options) {
13
+ return useQuery(['TeamsControllerSearchTeamDevelopers', props.teamRefId, props.queryParams, props.body], ({ signal }) => teamsControllerSearchTeamDevelopers(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -57,6 +57,8 @@ export type { DeveloperControllerGetDeveloperUploadPreviewErrorResponse, Develop
57
57
  export { developerControllerGetDeveloperUploadPreview, useDeveloperControllerGetDeveloperUploadPreviewQuery, } from './hooks/useDeveloperControllerGetDeveloperUploadPreviewQuery';
58
58
  export type { DeveloperControllerGetDevelopersErrorResponse, DeveloperControllerGetDevelopersOkResponse, DeveloperControllerGetDevelopersProps, DeveloperControllerGetDevelopersQueryQueryParams, } from './hooks/useDeveloperControllerGetDevelopersQuery';
59
59
  export { developerControllerGetDevelopers, useDeveloperControllerGetDevelopersQuery, } from './hooks/useDeveloperControllerGetDevelopersQuery';
60
+ export type { DeveloperControllerGetDistinctDeveloperAttributeValuesErrorResponse, DeveloperControllerGetDistinctDeveloperAttributeValuesOkResponse, DeveloperControllerGetDistinctDeveloperAttributeValuesProps, DeveloperControllerGetDistinctDeveloperAttributeValuesQueryQueryParams, } from './hooks/useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery';
61
+ export { developerControllerGetDistinctDeveloperAttributeValues, useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery, } from './hooks/useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery';
60
62
  export type { DeveloperControllerGetLatestDeveloperSchemaErrorResponse, DeveloperControllerGetLatestDeveloperSchemaOkResponse, DeveloperControllerGetLatestDeveloperSchemaProps, DeveloperControllerGetLatestDeveloperSchemaQueryPathParams, } from './hooks/useDeveloperControllerGetLatestDeveloperSchemaQuery';
61
63
  export { developerControllerGetLatestDeveloperSchema, useDeveloperControllerGetLatestDeveloperSchemaQuery, } from './hooks/useDeveloperControllerGetLatestDeveloperSchemaQuery';
62
64
  export type { DeveloperControllerGroupDevelopersErrorResponse, DeveloperControllerGroupDevelopersMutationQueryParams, DeveloperControllerGroupDevelopersOkResponse, DeveloperControllerGroupDevelopersProps, DeveloperControllerGroupDevelopersRequestBody, } from './hooks/useDeveloperControllerGroupDevelopersMutation';
@@ -129,6 +131,8 @@ export type { EfficiencyProfileControllerGetProfileErrorResponse, EfficiencyProf
129
131
  export { efficiencyProfileControllerGetProfile, useEfficiencyProfileControllerGetProfileQuery, } from './hooks/useEfficiencyProfileControllerGetProfileQuery';
130
132
  export type { EfficiencyProfileControllerListProfilesErrorResponse, EfficiencyProfileControllerListProfilesOkResponse, EfficiencyProfileControllerListProfilesProps, EfficiencyProfileControllerListProfilesQueryQueryParams, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
131
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';
132
136
  export type { EfficiencyProfileControllerUpdateProfileErrorResponse, EfficiencyProfileControllerUpdateProfileMutationPathParams, EfficiencyProfileControllerUpdateProfileMutationQueryParams, EfficiencyProfileControllerUpdateProfileOkResponse, EfficiencyProfileControllerUpdateProfileProps, EfficiencyProfileControllerUpdateProfileRequestBody, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
133
137
  export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
134
138
  export type { ExportControllerForCollectionsExportDataErrorResponse, ExportControllerForCollectionsExportDataMutationQueryParams, ExportControllerForCollectionsExportDataOkResponse, ExportControllerForCollectionsExportDataProps, ExportControllerForCollectionsExportDataRequestBody, } from './hooks/useExportControllerForCollectionsExportDataMutation';
@@ -183,17 +187,17 @@ export type { OrgTreeControllerGetBusinessAlignmentProfileRefIdErrorResponse, Or
183
187
  export { orgTreeControllerGetBusinessAlignmentProfileRefId, useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
184
188
  export type { OrgTreeControllerGetEfficiencyProfileRefIdErrorResponse, OrgTreeControllerGetEfficiencyProfileRefIdOkResponse, OrgTreeControllerGetEfficiencyProfileRefIdProps, OrgTreeControllerGetEfficiencyProfileRefIdQueryPathParams, OrgTreeControllerGetEfficiencyProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
185
189
  export { orgTreeControllerGetEfficiencyProfileRefId, useOrgTreeControllerGetEfficiencyProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
186
- export type { OrgTreeControllerGetOrgTreeIntegrationsErrorResponse, OrgTreeControllerGetOrgTreeIntegrationsOkResponse, OrgTreeControllerGetOrgTreeIntegrationsProps, OrgTreeControllerGetOrgTreeIntegrationsQueryPathParams, OrgTreeControllerGetOrgTreeIntegrationsQueryQueryParams, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
190
+ export type { OrgTreeControllerGetOrgTreeIntegrationsErrorResponse, OrgTreeControllerGetOrgTreeIntegrationsOkResponse, OrgTreeControllerGetOrgTreeIntegrationsProps, OrgTreeControllerGetOrgTreeIntegrationsQueryPathParams, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
187
191
  export { orgTreeControllerGetOrgTreeIntegrations, useOrgTreeControllerGetOrgTreeIntegrationsQuery, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
188
192
  export type { OrgTreeControllerGetOrgTreeErrorResponse, OrgTreeControllerGetOrgTreeOkResponse, OrgTreeControllerGetOrgTreeProps, OrgTreeControllerGetOrgTreeQueryPathParams, OrgTreeControllerGetOrgTreeQueryQueryParams, } from './hooks/useOrgTreeControllerGetOrgTreeQuery';
189
193
  export { orgTreeControllerGetOrgTree, useOrgTreeControllerGetOrgTreeQuery, } from './hooks/useOrgTreeControllerGetOrgTreeQuery';
190
- export type { OrgTreeControllerGetOrgTreeTeamHierarchyErrorResponse, OrgTreeControllerGetOrgTreeTeamHierarchyOkResponse, OrgTreeControllerGetOrgTreeTeamHierarchyProps, OrgTreeControllerGetOrgTreeTeamHierarchyQueryPathParams, OrgTreeControllerGetOrgTreeTeamHierarchyQueryQueryParams, } from './hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery';
194
+ export type { OrgTreeControllerGetOrgTreeTeamHierarchyErrorResponse, OrgTreeControllerGetOrgTreeTeamHierarchyOkResponse, OrgTreeControllerGetOrgTreeTeamHierarchyProps, OrgTreeControllerGetOrgTreeTeamHierarchyQueryPathParams, } from './hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery';
191
195
  export { orgTreeControllerGetOrgTreeTeamHierarchy, useOrgTreeControllerGetOrgTreeTeamHierarchyQuery, } from './hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery';
192
196
  export type { OrgTreeControllerGetOrgTreesErrorResponse, OrgTreeControllerGetOrgTreesOkResponse, OrgTreeControllerGetOrgTreesProps, OrgTreeControllerGetOrgTreesQueryQueryParams, } from './hooks/useOrgTreeControllerGetOrgTreesQuery';
193
197
  export { orgTreeControllerGetOrgTrees, useOrgTreeControllerGetOrgTreesQuery, } from './hooks/useOrgTreeControllerGetOrgTreesQuery';
194
198
  export type { OrgTreeControllerGetProductivityProfileRefIdErrorResponse, OrgTreeControllerGetProductivityProfileRefIdOkResponse, OrgTreeControllerGetProductivityProfileRefIdProps, OrgTreeControllerGetProductivityProfileRefIdQueryPathParams, OrgTreeControllerGetProductivityProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetProductivityProfileRefIdQuery';
195
199
  export { orgTreeControllerGetProductivityProfileRefId, useOrgTreeControllerGetProductivityProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetProductivityProfileRefIdQuery';
196
- export type { OrgTreeControllerPreviewTeamHierarchyErrorResponse, OrgTreeControllerPreviewTeamHierarchyMutationQueryParams, OrgTreeControllerPreviewTeamHierarchyOkResponse, OrgTreeControllerPreviewTeamHierarchyProps, OrgTreeControllerPreviewTeamHierarchyRequestBody, } from './hooks/useOrgTreeControllerPreviewTeamHierarchyMutation';
200
+ export type { OrgTreeControllerPreviewTeamHierarchyErrorResponse, OrgTreeControllerPreviewTeamHierarchyOkResponse, OrgTreeControllerPreviewTeamHierarchyProps, OrgTreeControllerPreviewTeamHierarchyRequestBody, } from './hooks/useOrgTreeControllerPreviewTeamHierarchyMutation';
197
201
  export { orgTreeControllerPreviewTeamHierarchy, useOrgTreeControllerPreviewTeamHierarchyMutation, } from './hooks/useOrgTreeControllerPreviewTeamHierarchyMutation';
198
202
  export type { OrgTreeControllerSearchOrgTreesErrorResponse, OrgTreeControllerSearchOrgTreesOkResponse, OrgTreeControllerSearchOrgTreesProps, OrgTreeControllerSearchOrgTreesQueryQueryParams, OrgTreeControllerSearchOrgTreesRequestBody, } from './hooks/useOrgTreeControllerSearchOrgTreesQuery';
199
203
  export { orgTreeControllerSearchOrgTrees, useOrgTreeControllerSearchOrgTreesQuery, } from './hooks/useOrgTreeControllerSearchOrgTreesQuery';
@@ -201,9 +205,9 @@ export type { OrgTreeControllerUpdateBusinessAlignmentProfileRefIdErrorResponse,
201
205
  export { orgTreeControllerUpdateBusinessAlignmentProfileRefId, useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation';
202
206
  export type { OrgTreeControllerUpdateEfficiencyProfileRefIdErrorResponse, OrgTreeControllerUpdateEfficiencyProfileRefIdMutationPathParams, OrgTreeControllerUpdateEfficiencyProfileRefIdMutationQueryParams, OrgTreeControllerUpdateEfficiencyProfileRefIdOkResponse, OrgTreeControllerUpdateEfficiencyProfileRefIdProps, OrgTreeControllerUpdateEfficiencyProfileRefIdRequestBody, } from './hooks/useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation';
203
207
  export { orgTreeControllerUpdateEfficiencyProfileRefId, useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation';
204
- export type { OrgTreeControllerUpdateOrgTreeIntegrationsErrorResponse, OrgTreeControllerUpdateOrgTreeIntegrationsMutationPathParams, OrgTreeControllerUpdateOrgTreeIntegrationsMutationQueryParams, OrgTreeControllerUpdateOrgTreeIntegrationsOkResponse, OrgTreeControllerUpdateOrgTreeIntegrationsProps, OrgTreeControllerUpdateOrgTreeIntegrationsRequestBody, } from './hooks/useOrgTreeControllerUpdateOrgTreeIntegrationsMutation';
208
+ export type { OrgTreeControllerUpdateOrgTreeIntegrationsErrorResponse, OrgTreeControllerUpdateOrgTreeIntegrationsMutationPathParams, OrgTreeControllerUpdateOrgTreeIntegrationsOkResponse, OrgTreeControllerUpdateOrgTreeIntegrationsProps, OrgTreeControllerUpdateOrgTreeIntegrationsRequestBody, } from './hooks/useOrgTreeControllerUpdateOrgTreeIntegrationsMutation';
205
209
  export { orgTreeControllerUpdateOrgTreeIntegrations, useOrgTreeControllerUpdateOrgTreeIntegrationsMutation, } from './hooks/useOrgTreeControllerUpdateOrgTreeIntegrationsMutation';
206
- export type { OrgTreeControllerUpdateOrgTreeErrorResponse, OrgTreeControllerUpdateOrgTreeMutationPathParams, OrgTreeControllerUpdateOrgTreeMutationQueryParams, OrgTreeControllerUpdateOrgTreeOkResponse, OrgTreeControllerUpdateOrgTreeProps, OrgTreeControllerUpdateOrgTreeRequestBody, } from './hooks/useOrgTreeControllerUpdateOrgTreeMutation';
210
+ export type { OrgTreeControllerUpdateOrgTreeErrorResponse, OrgTreeControllerUpdateOrgTreeMutationPathParams, OrgTreeControllerUpdateOrgTreeOkResponse, OrgTreeControllerUpdateOrgTreeProps, OrgTreeControllerUpdateOrgTreeRequestBody, } from './hooks/useOrgTreeControllerUpdateOrgTreeMutation';
207
211
  export { orgTreeControllerUpdateOrgTree, useOrgTreeControllerUpdateOrgTreeMutation, } from './hooks/useOrgTreeControllerUpdateOrgTreeMutation';
208
212
  export type { OrgTreeControllerUpdateProductivityProfileRefIdErrorResponse, OrgTreeControllerUpdateProductivityProfileRefIdMutationPathParams, OrgTreeControllerUpdateProductivityProfileRefIdMutationQueryParams, OrgTreeControllerUpdateProductivityProfileRefIdOkResponse, OrgTreeControllerUpdateProductivityProfileRefIdProps, OrgTreeControllerUpdateProductivityProfileRefIdRequestBody, } from './hooks/useOrgTreeControllerUpdateProductivityProfileRefIdMutation';
209
213
  export { orgTreeControllerUpdateProductivityProfileRefId, useOrgTreeControllerUpdateProductivityProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateProductivityProfileRefIdMutation';
@@ -225,6 +229,8 @@ export type { ProductivityProfileControllerGetProfileByRefIdErrorResponse, Produ
225
229
  export { productivityProfileControllerGetProfileByRefId, useProductivityProfileControllerGetProfileByRefIdQuery, } from './hooks/useProductivityProfileControllerGetProfileByRefIdQuery';
226
230
  export type { ProductivityProfileControllerListProfilesErrorResponse, ProductivityProfileControllerListProfilesOkResponse, ProductivityProfileControllerListProfilesProps, ProductivityProfileControllerListProfilesQueryQueryParams, } from './hooks/useProductivityProfileControllerListProfilesQuery';
227
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';
228
234
  export type { ProductivityProfileControllerUpdateProfileErrorResponse, ProductivityProfileControllerUpdateProfileMutationPathParams, ProductivityProfileControllerUpdateProfileMutationQueryParams, ProductivityProfileControllerUpdateProfileOkResponse, ProductivityProfileControllerUpdateProfileProps, ProductivityProfileControllerUpdateProfileRequestBody, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
229
235
  export { productivityProfileControllerUpdateProfile, useProductivityProfileControllerUpdateProfileMutation, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
230
236
  export type { ProductivityV3ControllerGetFeatureBreakdownErrorResponse, ProductivityV3ControllerGetFeatureBreakdownOkResponse, ProductivityV3ControllerGetFeatureBreakdownProps, ProductivityV3ControllerGetFeatureBreakdownQueryQueryParams, ProductivityV3ControllerGetFeatureBreakdownRequestBody, } from './hooks/useProductivityV3ControllerGetFeatureBreakdownQuery';
@@ -235,6 +241,10 @@ export type { ProductivityV3ControllerGetFeatureMetricsErrorResponse, Productivi
235
241
  export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerGetFeatureMetricsQuery, } from './hooks/useProductivityV3ControllerGetFeatureMetricsQuery';
236
242
  export type { ProductivityV3ControllerGetIndividualUserFeatureDrillDownErrorResponse, ProductivityV3ControllerGetIndividualUserFeatureDrillDownOkResponse, ProductivityV3ControllerGetIndividualUserFeatureDrillDownProps, ProductivityV3ControllerGetIndividualUserFeatureDrillDownQueryQueryParams, ProductivityV3ControllerGetIndividualUserFeatureDrillDownRequestBody, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
237
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';
238
248
  export type { TeamsControllerGetTeamDevelopersErrorResponse, TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersProps, TeamsControllerGetTeamDevelopersQueryPathParams, TeamsControllerGetTeamDevelopersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
239
249
  export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
240
250
  export type { TeamsControllerGetTeamIntegrationFiltersErrorResponse, TeamsControllerGetTeamIntegrationFiltersOkResponse, TeamsControllerGetTeamIntegrationFiltersProps, TeamsControllerGetTeamIntegrationFiltersQueryPathParams, TeamsControllerGetTeamIntegrationFiltersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
@@ -245,6 +255,8 @@ export type { TeamsControllerGetTeamErrorResponse, TeamsControllerGetTeamOkRespo
245
255
  export { teamsControllerGetTeam, useTeamsControllerGetTeamQuery, } from './hooks/useTeamsControllerGetTeamQuery';
246
256
  export type { TeamsControllerListTeamsErrorResponse, TeamsControllerListTeamsOkResponse, TeamsControllerListTeamsProps, TeamsControllerListTeamsQueryQueryParams, } from './hooks/useTeamsControllerListTeamsQuery';
247
257
  export { teamsControllerListTeams, useTeamsControllerListTeamsQuery, } from './hooks/useTeamsControllerListTeamsQuery';
258
+ export type { TeamsControllerSearchTeamDevelopersErrorResponse, TeamsControllerSearchTeamDevelopersOkResponse, TeamsControllerSearchTeamDevelopersProps, TeamsControllerSearchTeamDevelopersQueryPathParams, TeamsControllerSearchTeamDevelopersQueryQueryParams, TeamsControllerSearchTeamDevelopersRequestBody, } from './hooks/useTeamsControllerSearchTeamDevelopersQuery';
259
+ export { teamsControllerSearchTeamDevelopers, useTeamsControllerSearchTeamDevelopersQuery, } from './hooks/useTeamsControllerSearchTeamDevelopersQuery';
248
260
  export type { TeamsControllerSearchTeamsErrorResponse, TeamsControllerSearchTeamsOkResponse, TeamsControllerSearchTeamsProps, TeamsControllerSearchTeamsQueryQueryParams, TeamsControllerSearchTeamsRequestBody, } from './hooks/useTeamsControllerSearchTeamsQuery';
249
261
  export { teamsControllerSearchTeams, useTeamsControllerSearchTeamsQuery, } from './hooks/useTeamsControllerSearchTeamsQuery';
250
262
  export type { TeamsControllerUpdateTeamIntegrationFiltersErrorResponse, TeamsControllerUpdateTeamIntegrationFiltersMutationPathParams, TeamsControllerUpdateTeamIntegrationFiltersMutationQueryParams, TeamsControllerUpdateTeamIntegrationFiltersOkResponse, TeamsControllerUpdateTeamIntegrationFiltersProps, TeamsControllerUpdateTeamIntegrationFiltersRequestBody, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
@@ -366,6 +378,7 @@ export type { IssuesPrResponse } from './schemas/IssuesPrResponse';
366
378
  export type { IssuesPrResponseWrapper } from './schemas/IssuesPrResponseWrapper';
367
379
  export type { JsonNode } from './schemas/JsonNode';
368
380
  export type { LicenseSearchParams } from './schemas/LicenseSearchParams';
381
+ export type { ListResponseDto } from './schemas/ListResponseDto';
369
382
  export type { ListResponseDtoDeveloperLicenseDto } from './schemas/ListResponseDtoDeveloperLicenseDto';
370
383
  export type { ListResponseDtoEfficiencyProfileResponseDto } from './schemas/ListResponseDtoEfficiencyProfileResponseDto';
371
384
  export type { ListResponseDtoIntegrationResponseDto } from './schemas/ListResponseDtoIntegrationResponseDto';
@@ -397,6 +410,7 @@ export type { PrCommitsResponseWrapper } from './schemas/PrCommitsResponseWrappe
397
410
  export type { PrCycleTimeDrilldownResponseDataPoint } from './schemas/PrCycleTimeDrilldownResponseDataPoint';
398
411
  export type { PrCycleTimeDrilldownResponseDataPointV3 } from './schemas/PrCycleTimeDrilldownResponseDataPointV3';
399
412
  export type { PrInfo } from './schemas/PrInfo';
413
+ export type { PrRequest } from './schemas/PrRequest';
400
414
  export type { PrSize } from './schemas/PrSize';
401
415
  export type { PrVelocityDrilldownResponseDataPoint } from './schemas/PrVelocityDrilldownResponseDataPoint';
402
416
  export type { PrVelocityDrilldownResponseDataPointV3 } from './schemas/PrVelocityDrilldownResponseDataPointV3';
@@ -419,6 +433,7 @@ export type { ProductivityV3FeatureBreakdownResponseDto } from './schemas/Produc
419
433
  export type { ProductivityV3FeatureDrilldownResponseDto } from './schemas/ProductivityV3FeatureDrilldownResponseDto';
420
434
  export type { ProductivityV3FeatureIndividualDrilldownResponseDto } from './schemas/ProductivityV3FeatureIndividualDrilldownResponseDto';
421
435
  export type { ProductivityV3FeatureRequestDto } from './schemas/ProductivityV3FeatureRequestDto';
436
+ export type { ProfileSearchParams } from './schemas/ProfileSearchParams';
422
437
  export type { RefIdDto } from './schemas/RefIdDto';
423
438
  export type { SectionDto } from './schemas/SectionDto';
424
439
  export type { SortOption } from './schemas/SortOption';
@@ -426,6 +441,7 @@ export type { Stage } from './schemas/Stage';
426
441
  export type { SummaryCard } from './schemas/SummaryCard';
427
442
  export type { SummaryValue } from './schemas/SummaryValue';
428
443
  export type { SummaryValueChange } from './schemas/SummaryValueChange';
444
+ export type { TeamDeveloperSearchParams } from './schemas/TeamDeveloperSearchParams';
429
445
  export type { TeamDevelopersDto } from './schemas/TeamDevelopersDto';
430
446
  export type { TeamFilter } from './schemas/TeamFilter';
431
447
  export type { TeamInfoUpdateRequestDto } from './schemas/TeamInfoUpdateRequestDto';
@@ -27,6 +27,7 @@ export { developerControllerDownloadDeveloperCsv, useDeveloperControllerDownload
27
27
  export { developerControllerDownloadGeneratedDevelopersCsv, useDeveloperControllerDownloadGeneratedDevelopersCsvQuery, } from './hooks/useDeveloperControllerDownloadGeneratedDevelopersCsvQuery';
28
28
  export { developerControllerGetDeveloperUploadPreview, useDeveloperControllerGetDeveloperUploadPreviewQuery, } from './hooks/useDeveloperControllerGetDeveloperUploadPreviewQuery';
29
29
  export { developerControllerGetDevelopers, useDeveloperControllerGetDevelopersQuery, } from './hooks/useDeveloperControllerGetDevelopersQuery';
30
+ export { developerControllerGetDistinctDeveloperAttributeValues, useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery, } from './hooks/useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery';
30
31
  export { developerControllerGetLatestDeveloperSchema, useDeveloperControllerGetLatestDeveloperSchemaQuery, } from './hooks/useDeveloperControllerGetLatestDeveloperSchemaQuery';
31
32
  export { developerControllerGroupDevelopers, useDeveloperControllerGroupDevelopersMutation, } from './hooks/useDeveloperControllerGroupDevelopersMutation';
32
33
  export { developerControllerSaveDevelopers, useDeveloperControllerSaveDevelopersMutation, } from './hooks/useDeveloperControllerSaveDevelopersMutation';
@@ -63,6 +64,7 @@ export { efficiencyProfileControllerCreateProfile, useEfficiencyProfileControlle
63
64
  export { efficiencyProfileControllerDeleteProfileByRefId, useEfficiencyProfileControllerDeleteProfileByRefIdMutation, } from './hooks/useEfficiencyProfileControllerDeleteProfileByRefIdMutation';
64
65
  export { efficiencyProfileControllerGetProfile, useEfficiencyProfileControllerGetProfileQuery, } from './hooks/useEfficiencyProfileControllerGetProfileQuery';
65
66
  export { efficiencyProfileControllerListProfiles, useEfficiencyProfileControllerListProfilesQuery, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
67
+ export { efficiencyProfileControllerSearchProfiles, useEfficiencyProfileControllerSearchProfilesMutation, } from './hooks/useEfficiencyProfileControllerSearchProfilesMutation';
66
68
  export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
67
69
  export { exportControllerForCollectionsExportData, useExportControllerForCollectionsExportDataMutation, } from './hooks/useExportControllerForCollectionsExportDataMutation';
68
70
  export { exportControllerForTeamsExportData, useExportControllerForTeamsExportDataMutation, } from './hooks/useExportControllerForTeamsExportDataMutation';
@@ -111,16 +113,20 @@ export { productivityProfileControllerDeleteProfile, useProductivityProfileContr
111
113
  export { productivityProfileControllerGetProductivityProfileFilterValues, useProductivityProfileControllerGetProductivityProfileFilterValuesQuery, } from './hooks/useProductivityProfileControllerGetProductivityProfileFilterValuesQuery';
112
114
  export { productivityProfileControllerGetProfileByRefId, useProductivityProfileControllerGetProfileByRefIdQuery, } from './hooks/useProductivityProfileControllerGetProfileByRefIdQuery';
113
115
  export { productivityProfileControllerListProfiles, useProductivityProfileControllerListProfilesQuery, } from './hooks/useProductivityProfileControllerListProfilesQuery';
116
+ export { productivityProfileControllerSearchProfiles, useProductivityProfileControllerSearchProfilesMutation, } from './hooks/useProductivityProfileControllerSearchProfilesMutation';
114
117
  export { productivityProfileControllerUpdateProfile, useProductivityProfileControllerUpdateProfileMutation, } from './hooks/useProductivityProfileControllerUpdateProfileMutation';
115
118
  export { productivityV3ControllerGetFeatureBreakdown, useProductivityV3ControllerGetFeatureBreakdownQuery, } from './hooks/useProductivityV3ControllerGetFeatureBreakdownQuery';
116
119
  export { productivityV3ControllerGetFeatureDrillDown, useProductivityV3ControllerGetFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetFeatureDrillDownQuery';
117
120
  export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerGetFeatureMetricsQuery, } from './hooks/useProductivityV3ControllerGetFeatureMetricsQuery';
118
121
  export { productivityV3ControllerGetIndividualUserFeatureDrillDown, useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
122
+ export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
123
+ export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
119
124
  export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
120
125
  export { teamsControllerGetTeamIntegrationFilters, useTeamsControllerGetTeamIntegrationFiltersQuery, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
121
126
  export { teamsControllerGetTeamIntegrations, useTeamsControllerGetTeamIntegrationsQuery, } from './hooks/useTeamsControllerGetTeamIntegrationsQuery';
122
127
  export { teamsControllerGetTeam, useTeamsControllerGetTeamQuery, } from './hooks/useTeamsControllerGetTeamQuery';
123
128
  export { teamsControllerListTeams, useTeamsControllerListTeamsQuery, } from './hooks/useTeamsControllerListTeamsQuery';
129
+ export { teamsControllerSearchTeamDevelopers, useTeamsControllerSearchTeamDevelopersQuery, } from './hooks/useTeamsControllerSearchTeamDevelopersQuery';
124
130
  export { teamsControllerSearchTeams, useTeamsControllerSearchTeamsQuery, } from './hooks/useTeamsControllerSearchTeamsQuery';
125
131
  export { teamsControllerUpdateTeamIntegrationFilters, useTeamsControllerUpdateTeamIntegrationFiltersMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
126
132
  export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
@@ -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
  */
@@ -17,7 +17,7 @@ export interface EfficiencyMetricDrilldownRequest {
17
17
  /**
18
18
  * Column to sort by
19
19
  */
20
- sortBy?: 'ISSUE_KEY' | 'TOTAL';
20
+ sortBy?: 'ISSUE_KEY' | 'PR_NUMBER' | 'TOTAL';
21
21
  /**
22
22
  * Sort order (ASC/DESC)
23
23
  */
@@ -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,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -51,7 +51,7 @@ export interface MinimalTeamHierarchyResponseDto {
51
51
  /**
52
52
  * Reference ID of the team
53
53
  * @format int32
54
- * @example 1073741824
54
+ * @example 10
55
55
  */
56
56
  refId?: number;
57
57
  /**
@@ -1,6 +1,6 @@
1
1
  export interface OrgTreeSearchParams {
2
- searchKey?: 'efficiencyProfileName' | 'name' | 'productivityProfileName';
2
+ searchKey?: 'businessAlignmentProfileName' | 'efficiencyProfileName' | 'name' | 'productivityProfileName';
3
3
  searchValue?: string;
4
- sortBy?: 'createdAt' | 'efficiencyProfileName' | 'name' | 'productivityProfileName' | 'teamCount' | 'updatedAt' | 'updatedBy';
4
+ sortBy?: 'businessAlignmentProfileName' | 'createdAt' | 'efficiencyProfileName' | 'name' | 'productivityProfileName' | 'teamCount' | 'updatedAt' | 'updatedBy';
5
5
  sortOrder?: 'asc' | 'desc';
6
6
  }
@@ -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,6 @@
1
+ export interface ProfileSearchParams {
2
+ searchKey?: 'name';
3
+ searchValue?: string;
4
+ sortKey?: 'createdAt' | 'name' | 'updatedAt' | 'updatedBy';
5
+ sortOrder?: 'asc' | 'desc';
6
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -1,6 +1,7 @@
1
1
  import type { SummaryValueChange } from '../schemas/SummaryValueChange';
2
2
  import type { SummaryValue } from '../schemas/SummaryValue';
3
3
  export interface SummaryCard {
4
+ basedOn?: string;
4
5
  changePercentage?: SummaryValueChange;
5
6
  currentValue?: SummaryValue;
6
7
  /**
@@ -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,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.21.12",
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",