@harnessio/react-sei-panorama-service-client 0.21.9 → 0.21.11

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 (16) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/{useDeveloperControllerSearchDevelopersMutation.d.ts → useDeveloperControllerSearchDevelopersQuery.d.ts} +5 -5
  2. package/dist/sei-panorama-service/src/services/hooks/{useDeveloperControllerSearchDevelopersMutation.js → useDeveloperControllerSearchDevelopersQuery.js} +3 -3
  3. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerSearchOrgTreesQuery.d.ts +32 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerSearchOrgTreesQuery.js +14 -0
  5. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchDevelopersQuery.d.ts +31 -0
  6. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchDevelopersQuery.js +11 -0
  7. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamsQuery.d.ts +39 -0
  8. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamsQuery.js +14 -0
  9. package/dist/sei-panorama-service/src/services/index.d.ts +10 -2
  10. package/dist/sei-panorama-service/src/services/index.js +4 -1
  11. package/dist/sei-panorama-service/src/services/schemas/DeveloperSearchParams.d.ts +12 -3
  12. package/dist/sei-panorama-service/src/services/schemas/OrgTreeSearchParams.d.ts +6 -0
  13. package/dist/sei-panorama-service/src/services/schemas/OrgTreeSearchParams.js +4 -0
  14. package/dist/sei-panorama-service/src/services/schemas/TeamSearchParams.d.ts +6 -0
  15. package/dist/sei-panorama-service/src/services/schemas/TeamSearchParams.js +4 -0
  16. package/package.json +1 -1
@@ -1,9 +1,9 @@
1
- import { UseMutationOptions } from '@tanstack/react-query';
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
2
  import type { DeveloperListResponseDto } from '../schemas/DeveloperListResponseDto';
3
3
  import type { DeveloperSearchParams } from '../schemas/DeveloperSearchParams';
4
4
  import type { ResponseWithPagination } from '../helpers';
5
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
6
- export interface DeveloperControllerSearchDevelopersMutationQueryParams {
6
+ export interface DeveloperControllerSearchDevelopersQueryQueryParams {
7
7
  /**
8
8
  * @format int32
9
9
  * @default 0
@@ -18,12 +18,12 @@ export interface DeveloperControllerSearchDevelopersMutationQueryParams {
18
18
  export type DeveloperControllerSearchDevelopersRequestBody = DeveloperSearchParams;
19
19
  export type DeveloperControllerSearchDevelopersOkResponse = ResponseWithPagination<DeveloperListResponseDto>;
20
20
  export type DeveloperControllerSearchDevelopersErrorResponse = DeveloperListResponseDto;
21
- export interface DeveloperControllerSearchDevelopersProps extends Omit<FetcherOptions<DeveloperControllerSearchDevelopersMutationQueryParams, DeveloperControllerSearchDevelopersRequestBody>, 'url'> {
22
- queryParams: DeveloperControllerSearchDevelopersMutationQueryParams;
21
+ export interface DeveloperControllerSearchDevelopersProps extends Omit<FetcherOptions<DeveloperControllerSearchDevelopersQueryQueryParams, DeveloperControllerSearchDevelopersRequestBody>, 'url'> {
22
+ queryParams: DeveloperControllerSearchDevelopersQueryQueryParams;
23
23
  body: DeveloperControllerSearchDevelopersRequestBody;
24
24
  }
25
25
  export declare function developerControllerSearchDevelopers(props: DeveloperControllerSearchDevelopersProps): Promise<DeveloperControllerSearchDevelopersOkResponse>;
26
26
  /**
27
27
  * Returns a list of developers matching the search criteria with sorting options
28
28
  */
29
- export declare function useDeveloperControllerSearchDevelopersMutation(options?: Omit<UseMutationOptions<DeveloperControllerSearchDevelopersOkResponse, DeveloperControllerSearchDevelopersErrorResponse, DeveloperControllerSearchDevelopersProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<DeveloperControllerSearchDevelopersOkResponse, DeveloperListResponseDto, DeveloperControllerSearchDevelopersProps, unknown>;
29
+ export declare function useDeveloperControllerSearchDevelopersQuery(props: DeveloperControllerSearchDevelopersProps, options?: Omit<UseQueryOptions<DeveloperControllerSearchDevelopersOkResponse, DeveloperControllerSearchDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<DeveloperControllerSearchDevelopersOkResponse, DeveloperListResponseDto>;
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable */
2
2
  // This code is autogenerated using @harnessio/oats-cli.
3
3
  // Please do not modify this code directly.
4
- import { useMutation } from '@tanstack/react-query';
4
+ import { useQuery } from '@tanstack/react-query';
5
5
  import { fetcher } from '../../../../fetcher/index.js';
6
6
  export function developerControllerSearchDevelopers(props) {
7
7
  return fetcher(Object.assign({ url: `/v2/developers/list`, method: 'POST' }, props));
@@ -9,6 +9,6 @@ export function developerControllerSearchDevelopers(props) {
9
9
  /**
10
10
  * Returns a list of developers matching the search criteria with sorting options
11
11
  */
12
- export function useDeveloperControllerSearchDevelopersMutation(options) {
13
- return useMutation((mutateProps) => developerControllerSearchDevelopers(mutateProps), options);
12
+ export function useDeveloperControllerSearchDevelopersQuery(props, options) {
13
+ return useQuery(['DeveloperControllerSearchDevelopers', props.queryParams, props.body], ({ signal }) => developerControllerSearchDevelopers(Object.assign(Object.assign({}, props), { signal })), options);
14
14
  }
@@ -0,0 +1,32 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ListResponseDtoOrgTreeResponseDto } from '../schemas/ListResponseDtoOrgTreeResponseDto';
3
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
4
+ import type { OrgTreeSearchParams } from '../schemas/OrgTreeSearchParams';
5
+ import type { ResponseWithPagination } from '../helpers';
6
+ import { FetcherOptions } from '../../../../fetcher/index.js';
7
+ export interface OrgTreeControllerSearchOrgTreesQueryQueryParams {
8
+ orgIdentifer: string;
9
+ projectIdentifier: string;
10
+ /**
11
+ * @format int32
12
+ * @default 0
13
+ */
14
+ pageIndex?: number;
15
+ /**
16
+ * @format int32
17
+ * @default 50
18
+ */
19
+ pageSize?: number;
20
+ }
21
+ export type OrgTreeControllerSearchOrgTreesRequestBody = OrgTreeSearchParams;
22
+ export type OrgTreeControllerSearchOrgTreesOkResponse = ResponseWithPagination<ListResponseDtoOrgTreeResponseDto>;
23
+ export type OrgTreeControllerSearchOrgTreesErrorResponse = ErrorResponse;
24
+ export interface OrgTreeControllerSearchOrgTreesProps extends Omit<FetcherOptions<OrgTreeControllerSearchOrgTreesQueryQueryParams, OrgTreeControllerSearchOrgTreesRequestBody>, 'url'> {
25
+ queryParams: OrgTreeControllerSearchOrgTreesQueryQueryParams;
26
+ body: OrgTreeControllerSearchOrgTreesRequestBody;
27
+ }
28
+ export declare function orgTreeControllerSearchOrgTrees(props: OrgTreeControllerSearchOrgTreesProps): Promise<OrgTreeControllerSearchOrgTreesOkResponse>;
29
+ /**
30
+ * Search organization trees with filtering and sorting
31
+ */
32
+ export declare function useOrgTreeControllerSearchOrgTreesQuery(props: OrgTreeControllerSearchOrgTreesProps, options?: Omit<UseQueryOptions<OrgTreeControllerSearchOrgTreesOkResponse, OrgTreeControllerSearchOrgTreesErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<OrgTreeControllerSearchOrgTreesOkResponse, ErrorResponse>;
@@ -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 orgTreeControllerSearchOrgTrees(props) {
7
+ return fetcher(Object.assign({ url: `/v2/org-trees/list`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * Search organization trees with filtering and sorting
11
+ */
12
+ export function useOrgTreeControllerSearchOrgTreesQuery(props, options) {
13
+ return useQuery(['OrgTreeControllerSearchOrgTrees', props.queryParams, props.body], ({ signal }) => orgTreeControllerSearchOrgTrees(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -0,0 +1,31 @@
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 TeamsControllerSearchDevelopersQueryPathParams {
7
+ /**
8
+ * @format int32
9
+ */
10
+ teamRefId: number;
11
+ }
12
+ export interface TeamsControllerSearchDevelopersQueryQueryParams {
13
+ account: string;
14
+ /**
15
+ * @format int32
16
+ */
17
+ page?: number;
18
+ /**
19
+ * @format int32
20
+ */
21
+ size?: number;
22
+ }
23
+ export type TeamsControllerSearchDevelopersRequestBody = DeveloperSearchParams;
24
+ export type TeamsControllerSearchDevelopersOkResponse = ResponseWithPagination<TeamDevelopersDto>;
25
+ export type TeamsControllerSearchDevelopersErrorResponse = unknown;
26
+ export interface TeamsControllerSearchDevelopersProps extends TeamsControllerSearchDevelopersQueryPathParams, Omit<FetcherOptions<TeamsControllerSearchDevelopersQueryQueryParams, TeamsControllerSearchDevelopersRequestBody>, 'url'> {
27
+ queryParams: TeamsControllerSearchDevelopersQueryQueryParams;
28
+ body: TeamsControllerSearchDevelopersRequestBody;
29
+ }
30
+ export declare function teamsControllerSearchDevelopers(props: TeamsControllerSearchDevelopersProps): Promise<TeamsControllerSearchDevelopersOkResponse>;
31
+ export declare function useTeamsControllerSearchDevelopersQuery(props: TeamsControllerSearchDevelopersProps, options?: Omit<UseQueryOptions<TeamsControllerSearchDevelopersOkResponse, TeamsControllerSearchDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerSearchDevelopersOkResponse, unknown>;
@@ -0,0 +1,11 @@
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 teamsControllerSearchDevelopers(props) {
7
+ return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'POST' }, props));
8
+ }
9
+ export function useTeamsControllerSearchDevelopersQuery(props, options) {
10
+ return useQuery(['TeamsControllerSearchDevelopers', props.teamRefId, props.queryParams, props.body], ({ signal }) => teamsControllerSearchDevelopers(Object.assign(Object.assign({}, props), { signal })), options);
11
+ }
@@ -0,0 +1,39 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { PaginatedResponseTeamSummary } from '../schemas/PaginatedResponseTeamSummary';
3
+ import type { TeamSearchParams } from '../schemas/TeamSearchParams';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface TeamsControllerSearchTeamsQueryQueryParams {
7
+ /**
8
+ * @default ""
9
+ */
10
+ orgIdentifier?: string;
11
+ /**
12
+ * @default ""
13
+ */
14
+ projectIdentifier?: string;
15
+ /**
16
+ * @default true
17
+ */
18
+ leafTeamsOnly?: boolean;
19
+ /**
20
+ * @format int32
21
+ */
22
+ page?: number;
23
+ /**
24
+ * @format int32
25
+ */
26
+ pageSize?: number;
27
+ }
28
+ export type TeamsControllerSearchTeamsRequestBody = TeamSearchParams;
29
+ export type TeamsControllerSearchTeamsOkResponse = ResponseWithPagination<PaginatedResponseTeamSummary>;
30
+ export type TeamsControllerSearchTeamsErrorResponse = unknown;
31
+ export interface TeamsControllerSearchTeamsProps extends Omit<FetcherOptions<TeamsControllerSearchTeamsQueryQueryParams, TeamsControllerSearchTeamsRequestBody>, 'url'> {
32
+ queryParams: TeamsControllerSearchTeamsQueryQueryParams;
33
+ body: TeamsControllerSearchTeamsRequestBody;
34
+ }
35
+ export declare function teamsControllerSearchTeams(props: TeamsControllerSearchTeamsProps): Promise<TeamsControllerSearchTeamsOkResponse>;
36
+ /**
37
+ * Search teams with filtering and sorting options
38
+ */
39
+ export declare function useTeamsControllerSearchTeamsQuery(props: TeamsControllerSearchTeamsProps, options?: Omit<UseQueryOptions<TeamsControllerSearchTeamsOkResponse, TeamsControllerSearchTeamsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerSearchTeamsOkResponse, 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 teamsControllerSearchTeams(props) {
7
+ return fetcher(Object.assign({ url: `/v2/teams/list`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * Search teams with filtering and sorting options
11
+ */
12
+ export function useTeamsControllerSearchTeamsQuery(props, options) {
13
+ return useQuery(['TeamsControllerSearchTeams', props.queryParams, props.body], ({ signal }) => teamsControllerSearchTeams(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -63,8 +63,8 @@ export type { DeveloperControllerGroupDevelopersErrorResponse, DeveloperControll
63
63
  export { developerControllerGroupDevelopers, useDeveloperControllerGroupDevelopersMutation, } from './hooks/useDeveloperControllerGroupDevelopersMutation';
64
64
  export type { DeveloperControllerSaveDevelopersErrorResponse, DeveloperControllerSaveDevelopersMutationPathParams, DeveloperControllerSaveDevelopersOkResponse, DeveloperControllerSaveDevelopersProps, DeveloperControllerSaveDevelopersRequestBody, } from './hooks/useDeveloperControllerSaveDevelopersMutation';
65
65
  export { developerControllerSaveDevelopers, useDeveloperControllerSaveDevelopersMutation, } from './hooks/useDeveloperControllerSaveDevelopersMutation';
66
- export type { DeveloperControllerSearchDevelopersErrorResponse, DeveloperControllerSearchDevelopersMutationQueryParams, DeveloperControllerSearchDevelopersOkResponse, DeveloperControllerSearchDevelopersProps, DeveloperControllerSearchDevelopersRequestBody, } from './hooks/useDeveloperControllerSearchDevelopersMutation';
67
- export { developerControllerSearchDevelopers, useDeveloperControllerSearchDevelopersMutation, } from './hooks/useDeveloperControllerSearchDevelopersMutation';
66
+ export type { DeveloperControllerSearchDevelopersErrorResponse, DeveloperControllerSearchDevelopersOkResponse, DeveloperControllerSearchDevelopersProps, DeveloperControllerSearchDevelopersQueryQueryParams, DeveloperControllerSearchDevelopersRequestBody, } from './hooks/useDeveloperControllerSearchDevelopersQuery';
67
+ export { developerControllerSearchDevelopers, useDeveloperControllerSearchDevelopersQuery, } from './hooks/useDeveloperControllerSearchDevelopersQuery';
68
68
  export type { DeveloperControllerUpdateDeveloperErrorResponse, DeveloperControllerUpdateDeveloperMutationPathParams, DeveloperControllerUpdateDeveloperOkResponse, DeveloperControllerUpdateDeveloperProps, DeveloperControllerUpdateDeveloperRequestBody, } from './hooks/useDeveloperControllerUpdateDeveloperMutation';
69
69
  export { developerControllerUpdateDeveloper, useDeveloperControllerUpdateDeveloperMutation, } from './hooks/useDeveloperControllerUpdateDeveloperMutation';
70
70
  export type { DeveloperControllerUploadDeveloperFileErrorResponse, DeveloperControllerUploadDeveloperFileMutationQueryParams, DeveloperControllerUploadDeveloperFileOkResponse, DeveloperControllerUploadDeveloperFileProps, DeveloperControllerUploadDeveloperFileRequestBody, } from './hooks/useDeveloperControllerUploadDeveloperFileMutation';
@@ -193,6 +193,8 @@ export type { OrgTreeControllerGetOrgTreesErrorResponse, OrgTreeControllerGetOrg
193
193
  export { orgTreeControllerGetOrgTrees, useOrgTreeControllerGetOrgTreesQuery, } from './hooks/useOrgTreeControllerGetOrgTreesQuery';
194
194
  export type { OrgTreeControllerGetProductivityProfileRefIdErrorResponse, OrgTreeControllerGetProductivityProfileRefIdOkResponse, OrgTreeControllerGetProductivityProfileRefIdProps, OrgTreeControllerGetProductivityProfileRefIdQueryPathParams, OrgTreeControllerGetProductivityProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetProductivityProfileRefIdQuery';
195
195
  export { orgTreeControllerGetProductivityProfileRefId, useOrgTreeControllerGetProductivityProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetProductivityProfileRefIdQuery';
196
+ export type { OrgTreeControllerSearchOrgTreesErrorResponse, OrgTreeControllerSearchOrgTreesOkResponse, OrgTreeControllerSearchOrgTreesProps, OrgTreeControllerSearchOrgTreesQueryQueryParams, OrgTreeControllerSearchOrgTreesRequestBody, } from './hooks/useOrgTreeControllerSearchOrgTreesQuery';
197
+ export { orgTreeControllerSearchOrgTrees, useOrgTreeControllerSearchOrgTreesQuery, } from './hooks/useOrgTreeControllerSearchOrgTreesQuery';
196
198
  export type { OrgTreeControllerUpdateBusinessAlignmentProfileRefIdErrorResponse, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutationPathParams, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutationQueryParams, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdOkResponse, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdProps, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdRequestBody, } from './hooks/useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation';
197
199
  export { orgTreeControllerUpdateBusinessAlignmentProfileRefId, useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation';
198
200
  export type { OrgTreeControllerUpdateEfficiencyProfileRefIdErrorResponse, OrgTreeControllerUpdateEfficiencyProfileRefIdMutationPathParams, OrgTreeControllerUpdateEfficiencyProfileRefIdMutationQueryParams, OrgTreeControllerUpdateEfficiencyProfileRefIdOkResponse, OrgTreeControllerUpdateEfficiencyProfileRefIdProps, OrgTreeControllerUpdateEfficiencyProfileRefIdRequestBody, } from './hooks/useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation';
@@ -241,6 +243,10 @@ export type { TeamsControllerGetTeamErrorResponse, TeamsControllerGetTeamOkRespo
241
243
  export { teamsControllerGetTeam, useTeamsControllerGetTeamQuery, } from './hooks/useTeamsControllerGetTeamQuery';
242
244
  export type { TeamsControllerListTeamsErrorResponse, TeamsControllerListTeamsOkResponse, TeamsControllerListTeamsProps, TeamsControllerListTeamsQueryQueryParams, } from './hooks/useTeamsControllerListTeamsQuery';
243
245
  export { teamsControllerListTeams, useTeamsControllerListTeamsQuery, } from './hooks/useTeamsControllerListTeamsQuery';
246
+ export type { TeamsControllerSearchDevelopersErrorResponse, TeamsControllerSearchDevelopersOkResponse, TeamsControllerSearchDevelopersProps, TeamsControllerSearchDevelopersQueryPathParams, TeamsControllerSearchDevelopersQueryQueryParams, TeamsControllerSearchDevelopersRequestBody, } from './hooks/useTeamsControllerSearchDevelopersQuery';
247
+ export { teamsControllerSearchDevelopers, useTeamsControllerSearchDevelopersQuery, } from './hooks/useTeamsControllerSearchDevelopersQuery';
248
+ export type { TeamsControllerSearchTeamsErrorResponse, TeamsControllerSearchTeamsOkResponse, TeamsControllerSearchTeamsProps, TeamsControllerSearchTeamsQueryQueryParams, TeamsControllerSearchTeamsRequestBody, } from './hooks/useTeamsControllerSearchTeamsQuery';
249
+ export { teamsControllerSearchTeams, useTeamsControllerSearchTeamsQuery, } from './hooks/useTeamsControllerSearchTeamsQuery';
244
250
  export type { TeamsControllerUpdateTeamIntegrationFiltersErrorResponse, TeamsControllerUpdateTeamIntegrationFiltersMutationPathParams, TeamsControllerUpdateTeamIntegrationFiltersMutationQueryParams, TeamsControllerUpdateTeamIntegrationFiltersOkResponse, TeamsControllerUpdateTeamIntegrationFiltersProps, TeamsControllerUpdateTeamIntegrationFiltersRequestBody, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
245
251
  export { teamsControllerUpdateTeamIntegrationFilters, useTeamsControllerUpdateTeamIntegrationFiltersMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
246
252
  export type { TeamsControllerUpdateTeamIntegrationsErrorResponse, TeamsControllerUpdateTeamIntegrationsMutationPathParams, TeamsControllerUpdateTeamIntegrationsMutationQueryParams, TeamsControllerUpdateTeamIntegrationsOkResponse, TeamsControllerUpdateTeamIntegrationsProps, TeamsControllerUpdateTeamIntegrationsRequestBody, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
@@ -376,6 +382,7 @@ export type { MttrMetric } from './schemas/MttrMetric';
376
382
  export type { OrgTreeCreateRequestDto } from './schemas/OrgTreeCreateRequestDto';
377
383
  export type { OrgTreeProfileDto } from './schemas/OrgTreeProfileDto';
378
384
  export type { OrgTreeResponseDto } from './schemas/OrgTreeResponseDto';
385
+ export type { OrgTreeSearchParams } from './schemas/OrgTreeSearchParams';
379
386
  export type { OrgTreeUpdateRequestDto } from './schemas/OrgTreeUpdateRequestDto';
380
387
  export type { PaginatedResponseTeamSummary } from './schemas/PaginatedResponseTeamSummary';
381
388
  export type { PaginationInfo } from './schemas/PaginationInfo';
@@ -421,6 +428,7 @@ export type { TeamFilter } from './schemas/TeamFilter';
421
428
  export type { TeamInfoUpdateRequestDto } from './schemas/TeamInfoUpdateRequestDto';
422
429
  export type { TeamIntegrationDto } from './schemas/TeamIntegrationDto';
423
430
  export type { TeamResponse } from './schemas/TeamResponse';
431
+ export type { TeamSearchParams } from './schemas/TeamSearchParams';
424
432
  export type { TeamSummary } from './schemas/TeamSummary';
425
433
  export type { TotalStatisticCount } from './schemas/TotalStatisticCount';
426
434
  export type { WorkCompletedDrilldownResponseDataPoint } from './schemas/WorkCompletedDrilldownResponseDataPoint';
@@ -30,7 +30,7 @@ export { developerControllerGetDevelopers, useDeveloperControllerGetDevelopersQu
30
30
  export { developerControllerGetLatestDeveloperSchema, useDeveloperControllerGetLatestDeveloperSchemaQuery, } from './hooks/useDeveloperControllerGetLatestDeveloperSchemaQuery';
31
31
  export { developerControllerGroupDevelopers, useDeveloperControllerGroupDevelopersMutation, } from './hooks/useDeveloperControllerGroupDevelopersMutation';
32
32
  export { developerControllerSaveDevelopers, useDeveloperControllerSaveDevelopersMutation, } from './hooks/useDeveloperControllerSaveDevelopersMutation';
33
- export { developerControllerSearchDevelopers, useDeveloperControllerSearchDevelopersMutation, } from './hooks/useDeveloperControllerSearchDevelopersMutation';
33
+ export { developerControllerSearchDevelopers, useDeveloperControllerSearchDevelopersQuery, } from './hooks/useDeveloperControllerSearchDevelopersQuery';
34
34
  export { developerControllerUpdateDeveloper, useDeveloperControllerUpdateDeveloperMutation, } from './hooks/useDeveloperControllerUpdateDeveloperMutation';
35
35
  export { developerControllerUploadDeveloperFile, useDeveloperControllerUploadDeveloperFileMutation, } from './hooks/useDeveloperControllerUploadDeveloperFileMutation';
36
36
  export { doraControllerBreakdown, useDoraControllerBreakdownQuery, } from './hooks/useDoraControllerBreakdownQuery';
@@ -95,6 +95,7 @@ export { orgTreeControllerGetOrgTree, useOrgTreeControllerGetOrgTreeQuery, } fro
95
95
  export { orgTreeControllerGetOrgTreeTeamHierarchy, useOrgTreeControllerGetOrgTreeTeamHierarchyQuery, } from './hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery';
96
96
  export { orgTreeControllerGetOrgTrees, useOrgTreeControllerGetOrgTreesQuery, } from './hooks/useOrgTreeControllerGetOrgTreesQuery';
97
97
  export { orgTreeControllerGetProductivityProfileRefId, useOrgTreeControllerGetProductivityProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetProductivityProfileRefIdQuery';
98
+ export { orgTreeControllerSearchOrgTrees, useOrgTreeControllerSearchOrgTreesQuery, } from './hooks/useOrgTreeControllerSearchOrgTreesQuery';
98
99
  export { orgTreeControllerUpdateBusinessAlignmentProfileRefId, useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation';
99
100
  export { orgTreeControllerUpdateEfficiencyProfileRefId, useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation';
100
101
  export { orgTreeControllerUpdateOrgTreeIntegrations, useOrgTreeControllerUpdateOrgTreeIntegrationsMutation, } from './hooks/useOrgTreeControllerUpdateOrgTreeIntegrationsMutation';
@@ -119,6 +120,8 @@ export { teamsControllerGetTeamIntegrationFilters, useTeamsControllerGetTeamInte
119
120
  export { teamsControllerGetTeamIntegrations, useTeamsControllerGetTeamIntegrationsQuery, } from './hooks/useTeamsControllerGetTeamIntegrationsQuery';
120
121
  export { teamsControllerGetTeam, useTeamsControllerGetTeamQuery, } from './hooks/useTeamsControllerGetTeamQuery';
121
122
  export { teamsControllerListTeams, useTeamsControllerListTeamsQuery, } from './hooks/useTeamsControllerListTeamsQuery';
123
+ export { teamsControllerSearchDevelopers, useTeamsControllerSearchDevelopersQuery, } from './hooks/useTeamsControllerSearchDevelopersQuery';
124
+ export { teamsControllerSearchTeams, useTeamsControllerSearchTeamsQuery, } from './hooks/useTeamsControllerSearchTeamsQuery';
122
125
  export { teamsControllerUpdateTeamIntegrationFilters, useTeamsControllerUpdateTeamIntegrationFiltersMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
123
126
  export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
124
127
  export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
@@ -1,6 +1,15 @@
1
1
  export interface DeveloperSearchParams {
2
- emailFilter?: string;
3
- nameFilter?: string;
4
- sortBy?: 'email' | 'name';
2
+ /**
3
+ * custom developer attribute
4
+ */
5
+ searchKey?: string;
6
+ /**
7
+ * filter value for customSearchKey
8
+ */
9
+ searchValue?: string;
10
+ /**
11
+ * sort on custom developer attribute
12
+ */
13
+ sortKey?: string;
5
14
  sortOrder?: 'asc' | 'desc';
6
15
  }
@@ -0,0 +1,6 @@
1
+ export interface OrgTreeSearchParams {
2
+ searchKey?: 'efficiencyProfileName' | 'name' | 'productivityProfileName';
3
+ searchValue?: string;
4
+ sortBy?: 'createdAt' | 'efficiencyProfileName' | 'name' | 'productivityProfileName' | '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 {};
@@ -0,0 +1,6 @@
1
+ export interface TeamSearchParams {
2
+ searchKey?: 'managerName' | 'name' | 'orgTreeName';
3
+ searchValue?: string;
4
+ sortBy?: 'createdAt' | 'developerCount' | 'managerName' | 'name' | 'orgTreeName' | '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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.21.9",
3
+ "version": "0.21.11",
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",