@harnessio/react-sei-panorama-service-client 0.22.13 → 0.23.0
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/useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery.d.ts +35 -0
- package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerAssociateDevelopersToTeamMutation.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerAssociateDevelopersToTeamMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation.d.ts +19 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamDevelopersQuery.d.ts +8 -4
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamDevelopersQuery.js +1 -1
- package/dist/sei-panorama-service/src/services/index.d.ts +8 -0
- package/dist/sei-panorama-service/src/services/index.js +3 -0
- package/dist/sei-panorama-service/src/services/schemas/AssociateDevelopersRequestDto.d.ts +10 -0
- package/dist/sei-panorama-service/src/services/schemas/AssociateDevelopersRequestDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/BaExpressionLeafDto.d.ts +1 -0
- package/dist/sei-panorama-service/src/services/schemas/FilterValuesRequestDto.d.ts +5 -0
- package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoMinimalDeveloperDto.d.ts +28 -0
- package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoMinimalDeveloperDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/OrgTreeResponseDto.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamFilter.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ListResponseDtoMinimalDeveloperDto } from '../schemas/ListResponseDtoMinimalDeveloperDto';
|
|
3
|
+
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryPathParams {
|
|
7
|
+
/**
|
|
8
|
+
* @format int32
|
|
9
|
+
*/
|
|
10
|
+
orgTreeId: number;
|
|
11
|
+
}
|
|
12
|
+
export interface OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryQueryParams {
|
|
13
|
+
accountIdentifier: string;
|
|
14
|
+
search_value?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @format int32
|
|
17
|
+
* @default 0
|
|
18
|
+
*/
|
|
19
|
+
pageIndex?: number;
|
|
20
|
+
/**
|
|
21
|
+
* @format int32
|
|
22
|
+
* @default 50
|
|
23
|
+
*/
|
|
24
|
+
pageSize?: number;
|
|
25
|
+
}
|
|
26
|
+
export type OrgTreeControllerGetDevelopersByOrgTreeFiltersOkResponse = ResponseWithPagination<ListResponseDtoMinimalDeveloperDto>;
|
|
27
|
+
export type OrgTreeControllerGetDevelopersByOrgTreeFiltersErrorResponse = ErrorResponse;
|
|
28
|
+
export interface OrgTreeControllerGetDevelopersByOrgTreeFiltersProps extends OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryPathParams, Omit<FetcherOptions<OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryQueryParams, unknown>, 'url'> {
|
|
29
|
+
queryParams: OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryQueryParams;
|
|
30
|
+
}
|
|
31
|
+
export declare function orgTreeControllerGetDevelopersByOrgTreeFilters(props: OrgTreeControllerGetDevelopersByOrgTreeFiltersProps): Promise<OrgTreeControllerGetDevelopersByOrgTreeFiltersOkResponse>;
|
|
32
|
+
/**
|
|
33
|
+
* Returns developers whose attributes match the org tree's filter criteria, with optional search filtering on name and email, ordered alphabetically by name
|
|
34
|
+
*/
|
|
35
|
+
export declare function useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery(props: OrgTreeControllerGetDevelopersByOrgTreeFiltersProps, options?: Omit<UseQueryOptions<OrgTreeControllerGetDevelopersByOrgTreeFiltersOkResponse, OrgTreeControllerGetDevelopersByOrgTreeFiltersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<OrgTreeControllerGetDevelopersByOrgTreeFiltersOkResponse, 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 orgTreeControllerGetDevelopersByOrgTreeFilters(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/org-trees/${props.orgTreeId}/developers`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Returns developers whose attributes match the org tree's filter criteria, with optional search filtering on name and email, ordered alphabetically by name
|
|
11
|
+
*/
|
|
12
|
+
export function useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery(props, options) {
|
|
13
|
+
return useQuery(['OrgTreeControllerGetDevelopersByOrgTreeFilters', props.orgTreeId, props.queryParams], ({ signal }) => orgTreeControllerGetDevelopersByOrgTreeFilters(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
3
|
+
import type { AssociateDevelopersRequestDto } from '../schemas/AssociateDevelopersRequestDto';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface TeamsControllerAssociateDevelopersToTeamMutationPathParams {
|
|
7
|
+
/**
|
|
8
|
+
* @format int32
|
|
9
|
+
*/
|
|
10
|
+
teamRefId: number;
|
|
11
|
+
}
|
|
12
|
+
export type TeamsControllerAssociateDevelopersToTeamRequestBody = AssociateDevelopersRequestDto;
|
|
13
|
+
export type TeamsControllerAssociateDevelopersToTeamOkResponse = ResponseWithPagination<unknown>;
|
|
14
|
+
export type TeamsControllerAssociateDevelopersToTeamErrorResponse = unknown | ErrorResponse;
|
|
15
|
+
export interface TeamsControllerAssociateDevelopersToTeamProps extends TeamsControllerAssociateDevelopersToTeamMutationPathParams, Omit<FetcherOptions<unknown, TeamsControllerAssociateDevelopersToTeamRequestBody>, 'url'> {
|
|
16
|
+
body: TeamsControllerAssociateDevelopersToTeamRequestBody;
|
|
17
|
+
}
|
|
18
|
+
export declare function teamsControllerAssociateDevelopersToTeam(props: TeamsControllerAssociateDevelopersToTeamProps): Promise<TeamsControllerAssociateDevelopersToTeamOkResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Manually associate developers to the specified team by their reference IDs
|
|
21
|
+
*/
|
|
22
|
+
export declare function useTeamsControllerAssociateDevelopersToTeamMutation(options?: Omit<UseMutationOptions<TeamsControllerAssociateDevelopersToTeamOkResponse, TeamsControllerAssociateDevelopersToTeamErrorResponse, TeamsControllerAssociateDevelopersToTeamProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<TeamsControllerAssociateDevelopersToTeamOkResponse, unknown, TeamsControllerAssociateDevelopersToTeamProps, 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 teamsControllerAssociateDevelopersToTeam(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'PATCH' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Manually associate developers to the specified team by their reference IDs
|
|
11
|
+
*/
|
|
12
|
+
export function useTeamsControllerAssociateDevelopersToTeamMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => teamsControllerAssociateDevelopersToTeam(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface TeamsControllerDisassociateDevelopersFromTeamMutationPathParams {
|
|
6
|
+
/**
|
|
7
|
+
* @format int32
|
|
8
|
+
*/
|
|
9
|
+
teamRefId: number;
|
|
10
|
+
}
|
|
11
|
+
export type TeamsControllerDisassociateDevelopersFromTeamOkResponse = ResponseWithPagination<unknown>;
|
|
12
|
+
export type TeamsControllerDisassociateDevelopersFromTeamErrorResponse = unknown | ErrorResponse;
|
|
13
|
+
export interface TeamsControllerDisassociateDevelopersFromTeamProps extends TeamsControllerDisassociateDevelopersFromTeamMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
14
|
+
}
|
|
15
|
+
export declare function teamsControllerDisassociateDevelopersFromTeam(props: TeamsControllerDisassociateDevelopersFromTeamProps): Promise<TeamsControllerDisassociateDevelopersFromTeamOkResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Remove manual association of developers from the specified team by their reference IDs
|
|
18
|
+
*/
|
|
19
|
+
export declare function useTeamsControllerDisassociateDevelopersFromTeamMutation(options?: Omit<UseMutationOptions<TeamsControllerDisassociateDevelopersFromTeamOkResponse, TeamsControllerDisassociateDevelopersFromTeamErrorResponse, TeamsControllerDisassociateDevelopersFromTeamProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<TeamsControllerDisassociateDevelopersFromTeamOkResponse, unknown, TeamsControllerDisassociateDevelopersFromTeamProps, 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 teamsControllerDisassociateDevelopersFromTeam(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'DELETE' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Remove manual association of developers from the specified team by their reference IDs
|
|
11
|
+
*/
|
|
12
|
+
export function useTeamsControllerDisassociateDevelopersFromTeamMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => teamsControllerDisassociateDevelopersFromTeam(mutateProps), options);
|
|
14
|
+
}
|
package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamDevelopersQuery.d.ts
CHANGED
|
@@ -10,15 +10,19 @@ export interface TeamsControllerGetTeamDevelopersQueryPathParams {
|
|
|
10
10
|
teamRefId: number;
|
|
11
11
|
}
|
|
12
12
|
export interface TeamsControllerGetTeamDevelopersQueryQueryParams {
|
|
13
|
-
|
|
13
|
+
search_key?: 'email' | 'name';
|
|
14
|
+
search_value?: string;
|
|
15
|
+
sort_key?: 'email' | 'name';
|
|
16
|
+
sort_order?: 'asc' | 'desc';
|
|
17
|
+
type?: 'all' | 'primary' | 'shared';
|
|
14
18
|
/**
|
|
15
19
|
* @format int32
|
|
16
20
|
*/
|
|
17
|
-
|
|
21
|
+
pageIndex?: number;
|
|
18
22
|
/**
|
|
19
23
|
* @format int32
|
|
20
24
|
*/
|
|
21
|
-
|
|
25
|
+
pageSize?: number;
|
|
22
26
|
}
|
|
23
27
|
export type TeamsControllerGetTeamDevelopersOkResponse = ResponseWithPagination<TeamDevelopersDto>;
|
|
24
28
|
export type TeamsControllerGetTeamDevelopersErrorResponse = TeamDevelopersDto | ErrorResponse;
|
|
@@ -27,6 +31,6 @@ export interface TeamsControllerGetTeamDevelopersProps extends TeamsControllerGe
|
|
|
27
31
|
}
|
|
28
32
|
export declare function teamsControllerGetTeamDevelopers(props: TeamsControllerGetTeamDevelopersProps): Promise<TeamsControllerGetTeamDevelopersOkResponse>;
|
|
29
33
|
/**
|
|
30
|
-
* Returns developers for the specified team with optional pagination support
|
|
34
|
+
* Returns developers for the specified team with optional filtering, sorting, and pagination support. Each developer includes 'isManual' flag indicating manual association and 'isShared' flag for shared developers.
|
|
31
35
|
*/
|
|
32
36
|
export declare function useTeamsControllerGetTeamDevelopersQuery(props: TeamsControllerGetTeamDevelopersProps, options?: Omit<UseQueryOptions<TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersErrorResponse>;
|
package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamDevelopersQuery.js
CHANGED
|
@@ -7,7 +7,7 @@ export function teamsControllerGetTeamDevelopers(props) {
|
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'GET' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Returns developers for the specified team with optional pagination support
|
|
10
|
+
* Returns developers for the specified team with optional filtering, sorting, and pagination support. Each developer includes 'isManual' flag indicating manual association and 'isShared' flag for shared developers.
|
|
11
11
|
*/
|
|
12
12
|
export function useTeamsControllerGetTeamDevelopersQuery(props, options) {
|
|
13
13
|
return useQuery(['TeamsControllerGetTeamDevelopers', props.teamRefId, props.queryParams], ({ signal }) => teamsControllerGetTeamDevelopers(Object.assign(Object.assign({}, props), { signal })), options);
|
|
@@ -223,6 +223,8 @@ export type { OrgTreeControllerDeleteOrgTreeErrorResponse, OrgTreeControllerDele
|
|
|
223
223
|
export { orgTreeControllerDeleteOrgTree, useOrgTreeControllerDeleteOrgTreeMutation, } from './hooks/useOrgTreeControllerDeleteOrgTreeMutation';
|
|
224
224
|
export type { OrgTreeControllerGetBusinessAlignmentProfileRefIdErrorResponse, OrgTreeControllerGetBusinessAlignmentProfileRefIdOkResponse, OrgTreeControllerGetBusinessAlignmentProfileRefIdProps, OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryPathParams, OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
|
|
225
225
|
export { orgTreeControllerGetBusinessAlignmentProfileRefId, useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
|
|
226
|
+
export type { OrgTreeControllerGetDevelopersByOrgTreeFiltersErrorResponse, OrgTreeControllerGetDevelopersByOrgTreeFiltersOkResponse, OrgTreeControllerGetDevelopersByOrgTreeFiltersProps, OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryPathParams, OrgTreeControllerGetDevelopersByOrgTreeFiltersQueryQueryParams, } from './hooks/useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery';
|
|
227
|
+
export { orgTreeControllerGetDevelopersByOrgTreeFilters, useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery, } from './hooks/useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery';
|
|
226
228
|
export type { OrgTreeControllerGetEfficiencyProfileRefIdErrorResponse, OrgTreeControllerGetEfficiencyProfileRefIdOkResponse, OrgTreeControllerGetEfficiencyProfileRefIdProps, OrgTreeControllerGetEfficiencyProfileRefIdQueryPathParams, OrgTreeControllerGetEfficiencyProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
|
|
227
229
|
export { orgTreeControllerGetEfficiencyProfileRefId, useOrgTreeControllerGetEfficiencyProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
|
|
228
230
|
export type { OrgTreeControllerGetOrgTreeIntegrationsErrorResponse, OrgTreeControllerGetOrgTreeIntegrationsOkResponse, OrgTreeControllerGetOrgTreeIntegrationsProps, OrgTreeControllerGetOrgTreeIntegrationsQueryPathParams, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
|
|
@@ -285,6 +287,10 @@ export type { ScmGaControllerGetBuildInfoFromPrErrorResponse, ScmGaControllerGet
|
|
|
285
287
|
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
286
288
|
export type { ScmGaControllerGetDeployInfoFromPrErrorResponse, ScmGaControllerGetDeployInfoFromPrOkResponse, ScmGaControllerGetDeployInfoFromPrProps, ScmGaControllerGetDeployInfoFromPrQueryQueryParams, ScmGaControllerGetDeployInfoFromPrRequestBody, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
287
289
|
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
290
|
+
export type { TeamsControllerAssociateDevelopersToTeamErrorResponse, TeamsControllerAssociateDevelopersToTeamMutationPathParams, TeamsControllerAssociateDevelopersToTeamOkResponse, TeamsControllerAssociateDevelopersToTeamProps, TeamsControllerAssociateDevelopersToTeamRequestBody, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
|
|
291
|
+
export { teamsControllerAssociateDevelopersToTeam, useTeamsControllerAssociateDevelopersToTeamMutation, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
|
|
292
|
+
export type { TeamsControllerDisassociateDevelopersFromTeamErrorResponse, TeamsControllerDisassociateDevelopersFromTeamMutationPathParams, TeamsControllerDisassociateDevelopersFromTeamOkResponse, TeamsControllerDisassociateDevelopersFromTeamProps, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
|
|
293
|
+
export { teamsControllerDisassociateDevelopersFromTeam, useTeamsControllerDisassociateDevelopersFromTeamMutation, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
|
|
288
294
|
export type { TeamsControllerGetTeamDevelopersErrorResponse, TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersProps, TeamsControllerGetTeamDevelopersQueryPathParams, TeamsControllerGetTeamDevelopersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
289
295
|
export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
290
296
|
export type { TeamsControllerGetTeamIntegrationFiltersErrorResponse, TeamsControllerGetTeamIntegrationFiltersOkResponse, TeamsControllerGetTeamIntegrationFiltersProps, TeamsControllerGetTeamIntegrationFiltersQueryPathParams, TeamsControllerGetTeamIntegrationFiltersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
|
|
@@ -307,6 +313,7 @@ export type { TeamsControllerUpdateTeamErrorResponse, TeamsControllerUpdateTeamM
|
|
|
307
313
|
export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
308
314
|
export type { AccessResponseDto } from './schemas/AccessResponseDto';
|
|
309
315
|
export type { ActivityDataDto } from './schemas/ActivityDataDto';
|
|
316
|
+
export type { AssociateDevelopersRequestDto } from './schemas/AssociateDevelopersRequestDto';
|
|
310
317
|
export type { BaBreakdownDto } from './schemas/BaBreakdownDto';
|
|
311
318
|
export type { BaCategoryDto } from './schemas/BaCategoryDto';
|
|
312
319
|
export type { BaCategoryMetric } from './schemas/BaCategoryMetric';
|
|
@@ -446,6 +453,7 @@ export type { ListResponseDtoDeveloperLicenseDto } from './schemas/ListResponseD
|
|
|
446
453
|
export type { ListResponseDtoEfficiencyProfileResponseDto } from './schemas/ListResponseDtoEfficiencyProfileResponseDto';
|
|
447
454
|
export type { ListResponseDtoIntegrationConfigResponseDto } from './schemas/ListResponseDtoIntegrationConfigResponseDto';
|
|
448
455
|
export type { ListResponseDtoIntegrationResponseDto } from './schemas/ListResponseDtoIntegrationResponseDto';
|
|
456
|
+
export type { ListResponseDtoMinimalDeveloperDto } from './schemas/ListResponseDtoMinimalDeveloperDto';
|
|
449
457
|
export type { ListResponseDtoOrgTreeResponseDto } from './schemas/ListResponseDtoOrgTreeResponseDto';
|
|
450
458
|
export type { ListResponseDtoProductivityProfileResponseDto } from './schemas/ListResponseDtoProductivityProfileResponseDto';
|
|
451
459
|
export type { ListResponseDtobaProfileResponseDto } from './schemas/ListResponseDtobaProfileResponseDto';
|
|
@@ -110,6 +110,7 @@ export { migrationControllerProcessHistoricalDataForMigration, useMigrationContr
|
|
|
110
110
|
export { orgTreeControllerCreateOrgTree, useOrgTreeControllerCreateOrgTreeMutation, } from './hooks/useOrgTreeControllerCreateOrgTreeMutation';
|
|
111
111
|
export { orgTreeControllerDeleteOrgTree, useOrgTreeControllerDeleteOrgTreeMutation, } from './hooks/useOrgTreeControllerDeleteOrgTreeMutation';
|
|
112
112
|
export { orgTreeControllerGetBusinessAlignmentProfileRefId, useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
|
|
113
|
+
export { orgTreeControllerGetDevelopersByOrgTreeFilters, useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery, } from './hooks/useOrgTreeControllerGetDevelopersByOrgTreeFiltersQuery';
|
|
113
114
|
export { orgTreeControllerGetEfficiencyProfileRefId, useOrgTreeControllerGetEfficiencyProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
|
|
114
115
|
export { orgTreeControllerGetOrgTreeIntegrations, useOrgTreeControllerGetOrgTreeIntegrationsQuery, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
|
|
115
116
|
export { orgTreeControllerGetOrgTree, useOrgTreeControllerGetOrgTreeQuery, } from './hooks/useOrgTreeControllerGetOrgTreeQuery';
|
|
@@ -141,6 +142,8 @@ export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerG
|
|
|
141
142
|
export { productivityV3ControllerGetIndividualUserFeatureDrillDown, useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
|
|
142
143
|
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
143
144
|
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
145
|
+
export { teamsControllerAssociateDevelopersToTeam, useTeamsControllerAssociateDevelopersToTeamMutation, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
|
|
146
|
+
export { teamsControllerDisassociateDevelopersFromTeam, useTeamsControllerDisassociateDevelopersFromTeamMutation, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
|
|
144
147
|
export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
145
148
|
export { teamsControllerGetTeamIntegrationFilters, useTeamsControllerGetTeamIntegrationFiltersQuery, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
|
|
146
149
|
export { teamsControllerGetTeamIntegrations, useTeamsControllerGetTeamIntegrationsQuery, } from './hooks/useTeamsControllerGetTeamIntegrationsQuery';
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
export interface FilterValuesRequestDto {
|
|
2
|
+
/**
|
|
3
|
+
* Actual custom field key from the external system (used when isCustom = true) - eg. 'customField_10065'
|
|
4
|
+
*/
|
|
5
|
+
customFilterId?: string;
|
|
2
6
|
/**
|
|
3
7
|
* Custom filter key name to get values for (used when isCustom = true)
|
|
8
|
+
* @deprecated
|
|
4
9
|
*/
|
|
5
10
|
customFilterKey?: string;
|
|
6
11
|
/**
|
package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoMinimalDeveloperDto.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { MinimalDeveloperDto } from '../schemas/MinimalDeveloperDto';
|
|
2
|
+
/**
|
|
3
|
+
* Paginated list response containing records and pagination metadata
|
|
4
|
+
*/
|
|
5
|
+
export interface ListResponseDtoMinimalDeveloperDto {
|
|
6
|
+
/**
|
|
7
|
+
* Current page index (0-based)
|
|
8
|
+
* @format int32
|
|
9
|
+
* @example 0
|
|
10
|
+
*/
|
|
11
|
+
pageIndex?: number;
|
|
12
|
+
/**
|
|
13
|
+
* Number of records per page
|
|
14
|
+
* @format int32
|
|
15
|
+
* @example 50
|
|
16
|
+
*/
|
|
17
|
+
pageSize?: number;
|
|
18
|
+
/**
|
|
19
|
+
* List of records for the current page
|
|
20
|
+
*/
|
|
21
|
+
records?: MinimalDeveloperDto[];
|
|
22
|
+
/**
|
|
23
|
+
* Total number of records available across all pages
|
|
24
|
+
* @format int32
|
|
25
|
+
* @example 100
|
|
26
|
+
*/
|
|
27
|
+
totalCount?: number;
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -3,6 +3,10 @@ import type { FilterByField } from '../schemas/FilterByField';
|
|
|
3
3
|
import type { GroupByField } from '../schemas/GroupByField';
|
|
4
4
|
import type { IntegrationResponseDto } from '../schemas/IntegrationResponseDto';
|
|
5
5
|
export interface OrgTreeResponseDto {
|
|
6
|
+
/**
|
|
7
|
+
* Indicates whether the user has view access to at least one team under this org tree
|
|
8
|
+
*/
|
|
9
|
+
access?: boolean;
|
|
6
10
|
businessAlignmentProfile?: OrgTreeProfileDto;
|
|
7
11
|
/**
|
|
8
12
|
* @format int64
|
|
@@ -5,6 +5,7 @@ export interface TeamFilter {
|
|
|
5
5
|
};
|
|
6
6
|
};
|
|
7
7
|
applicableMetrics?: Array<'AVG_TIME_TO_FIRST_COMMENT' | 'BA' | 'CFR' | 'CODING_DAYS' | 'DF' | 'LINES_OF_CODE' | 'LTTC' | 'MTTR' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED'>;
|
|
8
|
+
customFilterId?: string;
|
|
8
9
|
customFilterKey?: string;
|
|
9
10
|
filterKey?: 'CODE_AREA' | 'COMPONENTS' | 'CUSTOM' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'LABELS' | 'ORGANIZATION' | 'PARENT_KEY' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
|
|
10
11
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
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",
|