@harnessio/react-sei-panorama-service-client 0.21.12 → 0.21.13
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/useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery.d.ts +16 -0
- package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerGetDistinctDeveloperAttributeValuesQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerCreateOrgTreeMutation.d.ts +2 -1
- package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery.d.ts +1 -5
- package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery.js +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery.d.ts +1 -5
- package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery.js +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreesQuery.d.ts +2 -1
- package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerPreviewTeamHierarchyMutation.d.ts +1 -5
- package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerUpdateOrgTreeIntegrationsMutation.d.ts +1 -5
- package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerUpdateOrgTreeMutation.d.ts +1 -5
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamIntegrationFiltersQuery.d.ts +0 -1
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamDevelopersQuery.d.ts +33 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamDevelopersQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/index.d.ts +9 -5
- package/dist/sei-panorama-service/src/services/index.js +2 -0
- package/dist/sei-panorama-service/src/services/schemas/OrgTreeSearchParams.d.ts +2 -2
- 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
|
+
}
|
package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerCreateOrgTreeMutation.d.ts
CHANGED
@@ -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
|
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<
|
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
|
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<
|
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
|
13
|
+
return useQuery(['OrgTreeControllerGetOrgTreeTeamHierarchy', props.orgTreeId], ({ signal }) => orgTreeControllerGetOrgTreeTeamHierarchy(Object.assign(Object.assign({}, props), { signal })), options);
|
14
14
|
}
|
package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetOrgTreesQuery.d.ts
CHANGED
@@ -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
|
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<
|
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<
|
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>;
|
package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerUpdateOrgTreeMutation.d.ts
CHANGED
@@ -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<
|
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>;
|
@@ -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 { DeveloperSearchParams } from '../schemas/DeveloperSearchParams';
|
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 = DeveloperSearchParams;
|
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>;
|
package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamDevelopersQuery.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 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';
|
@@ -183,17 +185,17 @@ export type { OrgTreeControllerGetBusinessAlignmentProfileRefIdErrorResponse, Or
|
|
183
185
|
export { orgTreeControllerGetBusinessAlignmentProfileRefId, useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
|
184
186
|
export type { OrgTreeControllerGetEfficiencyProfileRefIdErrorResponse, OrgTreeControllerGetEfficiencyProfileRefIdOkResponse, OrgTreeControllerGetEfficiencyProfileRefIdProps, OrgTreeControllerGetEfficiencyProfileRefIdQueryPathParams, OrgTreeControllerGetEfficiencyProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
|
185
187
|
export { orgTreeControllerGetEfficiencyProfileRefId, useOrgTreeControllerGetEfficiencyProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
|
186
|
-
export type { OrgTreeControllerGetOrgTreeIntegrationsErrorResponse, OrgTreeControllerGetOrgTreeIntegrationsOkResponse, OrgTreeControllerGetOrgTreeIntegrationsProps, OrgTreeControllerGetOrgTreeIntegrationsQueryPathParams,
|
188
|
+
export type { OrgTreeControllerGetOrgTreeIntegrationsErrorResponse, OrgTreeControllerGetOrgTreeIntegrationsOkResponse, OrgTreeControllerGetOrgTreeIntegrationsProps, OrgTreeControllerGetOrgTreeIntegrationsQueryPathParams, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
|
187
189
|
export { orgTreeControllerGetOrgTreeIntegrations, useOrgTreeControllerGetOrgTreeIntegrationsQuery, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
|
188
190
|
export type { OrgTreeControllerGetOrgTreeErrorResponse, OrgTreeControllerGetOrgTreeOkResponse, OrgTreeControllerGetOrgTreeProps, OrgTreeControllerGetOrgTreeQueryPathParams, OrgTreeControllerGetOrgTreeQueryQueryParams, } from './hooks/useOrgTreeControllerGetOrgTreeQuery';
|
189
191
|
export { orgTreeControllerGetOrgTree, useOrgTreeControllerGetOrgTreeQuery, } from './hooks/useOrgTreeControllerGetOrgTreeQuery';
|
190
|
-
export type { OrgTreeControllerGetOrgTreeTeamHierarchyErrorResponse, OrgTreeControllerGetOrgTreeTeamHierarchyOkResponse, OrgTreeControllerGetOrgTreeTeamHierarchyProps, OrgTreeControllerGetOrgTreeTeamHierarchyQueryPathParams,
|
192
|
+
export type { OrgTreeControllerGetOrgTreeTeamHierarchyErrorResponse, OrgTreeControllerGetOrgTreeTeamHierarchyOkResponse, OrgTreeControllerGetOrgTreeTeamHierarchyProps, OrgTreeControllerGetOrgTreeTeamHierarchyQueryPathParams, } from './hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery';
|
191
193
|
export { orgTreeControllerGetOrgTreeTeamHierarchy, useOrgTreeControllerGetOrgTreeTeamHierarchyQuery, } from './hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery';
|
192
194
|
export type { OrgTreeControllerGetOrgTreesErrorResponse, OrgTreeControllerGetOrgTreesOkResponse, OrgTreeControllerGetOrgTreesProps, OrgTreeControllerGetOrgTreesQueryQueryParams, } from './hooks/useOrgTreeControllerGetOrgTreesQuery';
|
193
195
|
export { orgTreeControllerGetOrgTrees, useOrgTreeControllerGetOrgTreesQuery, } from './hooks/useOrgTreeControllerGetOrgTreesQuery';
|
194
196
|
export type { OrgTreeControllerGetProductivityProfileRefIdErrorResponse, OrgTreeControllerGetProductivityProfileRefIdOkResponse, OrgTreeControllerGetProductivityProfileRefIdProps, OrgTreeControllerGetProductivityProfileRefIdQueryPathParams, OrgTreeControllerGetProductivityProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetProductivityProfileRefIdQuery';
|
195
197
|
export { orgTreeControllerGetProductivityProfileRefId, useOrgTreeControllerGetProductivityProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetProductivityProfileRefIdQuery';
|
196
|
-
export type { OrgTreeControllerPreviewTeamHierarchyErrorResponse,
|
198
|
+
export type { OrgTreeControllerPreviewTeamHierarchyErrorResponse, OrgTreeControllerPreviewTeamHierarchyOkResponse, OrgTreeControllerPreviewTeamHierarchyProps, OrgTreeControllerPreviewTeamHierarchyRequestBody, } from './hooks/useOrgTreeControllerPreviewTeamHierarchyMutation';
|
197
199
|
export { orgTreeControllerPreviewTeamHierarchy, useOrgTreeControllerPreviewTeamHierarchyMutation, } from './hooks/useOrgTreeControllerPreviewTeamHierarchyMutation';
|
198
200
|
export type { OrgTreeControllerSearchOrgTreesErrorResponse, OrgTreeControllerSearchOrgTreesOkResponse, OrgTreeControllerSearchOrgTreesProps, OrgTreeControllerSearchOrgTreesQueryQueryParams, OrgTreeControllerSearchOrgTreesRequestBody, } from './hooks/useOrgTreeControllerSearchOrgTreesQuery';
|
199
201
|
export { orgTreeControllerSearchOrgTrees, useOrgTreeControllerSearchOrgTreesQuery, } from './hooks/useOrgTreeControllerSearchOrgTreesQuery';
|
@@ -201,9 +203,9 @@ export type { OrgTreeControllerUpdateBusinessAlignmentProfileRefIdErrorResponse,
|
|
201
203
|
export { orgTreeControllerUpdateBusinessAlignmentProfileRefId, useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation';
|
202
204
|
export type { OrgTreeControllerUpdateEfficiencyProfileRefIdErrorResponse, OrgTreeControllerUpdateEfficiencyProfileRefIdMutationPathParams, OrgTreeControllerUpdateEfficiencyProfileRefIdMutationQueryParams, OrgTreeControllerUpdateEfficiencyProfileRefIdOkResponse, OrgTreeControllerUpdateEfficiencyProfileRefIdProps, OrgTreeControllerUpdateEfficiencyProfileRefIdRequestBody, } from './hooks/useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation';
|
203
205
|
export { orgTreeControllerUpdateEfficiencyProfileRefId, useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation';
|
204
|
-
export type { OrgTreeControllerUpdateOrgTreeIntegrationsErrorResponse, OrgTreeControllerUpdateOrgTreeIntegrationsMutationPathParams,
|
206
|
+
export type { OrgTreeControllerUpdateOrgTreeIntegrationsErrorResponse, OrgTreeControllerUpdateOrgTreeIntegrationsMutationPathParams, OrgTreeControllerUpdateOrgTreeIntegrationsOkResponse, OrgTreeControllerUpdateOrgTreeIntegrationsProps, OrgTreeControllerUpdateOrgTreeIntegrationsRequestBody, } from './hooks/useOrgTreeControllerUpdateOrgTreeIntegrationsMutation';
|
205
207
|
export { orgTreeControllerUpdateOrgTreeIntegrations, useOrgTreeControllerUpdateOrgTreeIntegrationsMutation, } from './hooks/useOrgTreeControllerUpdateOrgTreeIntegrationsMutation';
|
206
|
-
export type { OrgTreeControllerUpdateOrgTreeErrorResponse, OrgTreeControllerUpdateOrgTreeMutationPathParams,
|
208
|
+
export type { OrgTreeControllerUpdateOrgTreeErrorResponse, OrgTreeControllerUpdateOrgTreeMutationPathParams, OrgTreeControllerUpdateOrgTreeOkResponse, OrgTreeControllerUpdateOrgTreeProps, OrgTreeControllerUpdateOrgTreeRequestBody, } from './hooks/useOrgTreeControllerUpdateOrgTreeMutation';
|
207
209
|
export { orgTreeControllerUpdateOrgTree, useOrgTreeControllerUpdateOrgTreeMutation, } from './hooks/useOrgTreeControllerUpdateOrgTreeMutation';
|
208
210
|
export type { OrgTreeControllerUpdateProductivityProfileRefIdErrorResponse, OrgTreeControllerUpdateProductivityProfileRefIdMutationPathParams, OrgTreeControllerUpdateProductivityProfileRefIdMutationQueryParams, OrgTreeControllerUpdateProductivityProfileRefIdOkResponse, OrgTreeControllerUpdateProductivityProfileRefIdProps, OrgTreeControllerUpdateProductivityProfileRefIdRequestBody, } from './hooks/useOrgTreeControllerUpdateProductivityProfileRefIdMutation';
|
209
211
|
export { orgTreeControllerUpdateProductivityProfileRefId, useOrgTreeControllerUpdateProductivityProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateProductivityProfileRefIdMutation';
|
@@ -245,6 +247,8 @@ export type { TeamsControllerGetTeamErrorResponse, TeamsControllerGetTeamOkRespo
|
|
245
247
|
export { teamsControllerGetTeam, useTeamsControllerGetTeamQuery, } from './hooks/useTeamsControllerGetTeamQuery';
|
246
248
|
export type { TeamsControllerListTeamsErrorResponse, TeamsControllerListTeamsOkResponse, TeamsControllerListTeamsProps, TeamsControllerListTeamsQueryQueryParams, } from './hooks/useTeamsControllerListTeamsQuery';
|
247
249
|
export { teamsControllerListTeams, useTeamsControllerListTeamsQuery, } from './hooks/useTeamsControllerListTeamsQuery';
|
250
|
+
export type { TeamsControllerSearchTeamDevelopersErrorResponse, TeamsControllerSearchTeamDevelopersOkResponse, TeamsControllerSearchTeamDevelopersProps, TeamsControllerSearchTeamDevelopersQueryPathParams, TeamsControllerSearchTeamDevelopersQueryQueryParams, TeamsControllerSearchTeamDevelopersRequestBody, } from './hooks/useTeamsControllerSearchTeamDevelopersQuery';
|
251
|
+
export { teamsControllerSearchTeamDevelopers, useTeamsControllerSearchTeamDevelopersQuery, } from './hooks/useTeamsControllerSearchTeamDevelopersQuery';
|
248
252
|
export type { TeamsControllerSearchTeamsErrorResponse, TeamsControllerSearchTeamsOkResponse, TeamsControllerSearchTeamsProps, TeamsControllerSearchTeamsQueryQueryParams, TeamsControllerSearchTeamsRequestBody, } from './hooks/useTeamsControllerSearchTeamsQuery';
|
249
253
|
export { teamsControllerSearchTeams, useTeamsControllerSearchTeamsQuery, } from './hooks/useTeamsControllerSearchTeamsQuery';
|
250
254
|
export type { TeamsControllerUpdateTeamIntegrationFiltersErrorResponse, TeamsControllerUpdateTeamIntegrationFiltersMutationPathParams, TeamsControllerUpdateTeamIntegrationFiltersMutationQueryParams, TeamsControllerUpdateTeamIntegrationFiltersOkResponse, TeamsControllerUpdateTeamIntegrationFiltersProps, TeamsControllerUpdateTeamIntegrationFiltersRequestBody, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
|
@@ -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';
|
@@ -121,6 +122,7 @@ export { teamsControllerGetTeamIntegrationFilters, useTeamsControllerGetTeamInte
|
|
121
122
|
export { teamsControllerGetTeamIntegrations, useTeamsControllerGetTeamIntegrationsQuery, } from './hooks/useTeamsControllerGetTeamIntegrationsQuery';
|
122
123
|
export { teamsControllerGetTeam, useTeamsControllerGetTeamQuery, } from './hooks/useTeamsControllerGetTeamQuery';
|
123
124
|
export { teamsControllerListTeams, useTeamsControllerListTeamsQuery, } from './hooks/useTeamsControllerListTeamsQuery';
|
125
|
+
export { teamsControllerSearchTeamDevelopers, useTeamsControllerSearchTeamDevelopersQuery, } from './hooks/useTeamsControllerSearchTeamDevelopersQuery';
|
124
126
|
export { teamsControllerSearchTeams, useTeamsControllerSearchTeamsQuery, } from './hooks/useTeamsControllerSearchTeamsQuery';
|
125
127
|
export { teamsControllerUpdateTeamIntegrationFilters, useTeamsControllerUpdateTeamIntegrationFiltersMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
|
126
128
|
export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
|
@@ -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
|
}
|
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.13",
|
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",
|