@harnessio/react-sei-panorama-service-client 0.20.0 → 0.20.2

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 (43) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useBaControllerDeleteProfileMutation.d.ts +2 -2
  2. package/dist/sei-panorama-service/src/services/hooks/useBaControllerDeleteProfileMutation.js +1 -1
  3. package/dist/sei-panorama-service/src/services/hooks/useBaControllerDrilldownDataMutation.d.ts +22 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useBaControllerDrilldownDataMutation.js +14 -0
  5. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetAllTeamsWithFiltersQuery.d.ts +2 -2
  6. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetProfileByIdQuery.js +1 -1
  7. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetProfileByRefIdQuery.d.ts +25 -0
  8. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetProfileByRefIdQuery.js +14 -0
  9. package/dist/sei-panorama-service/src/services/hooks/useBaControllerUpdateProfileMutation.d.ts +2 -2
  10. package/dist/sei-panorama-service/src/services/hooks/useBaControllerUpdateProfileMutation.js +1 -1
  11. package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerDownloadDeveloperCsvQuery.d.ts +12 -0
  12. package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerDownloadDeveloperCsvQuery.js +14 -0
  13. package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerDownloadGeneratedDevelopersCsvQuery.d.ts +12 -0
  14. package/dist/sei-panorama-service/src/services/hooks/useDeveloperControllerDownloadGeneratedDevelopersCsvQuery.js +14 -0
  15. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerDeleteOrgTreeMutation.d.ts +19 -0
  16. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerDeleteOrgTreeMutation.js +14 -0
  17. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation.d.ts +1 -1
  18. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation.js +1 -1
  19. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerUpdateTeamMutation.d.ts +27 -0
  20. package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerUpdateTeamMutation.js +14 -0
  21. package/dist/sei-panorama-service/src/services/index.d.ts +16 -0
  22. package/dist/sei-panorama-service/src/services/index.js +6 -0
  23. package/dist/sei-panorama-service/src/services/schemas/BaCategoryTeamFilterDto.d.ts +1 -11
  24. package/dist/sei-panorama-service/src/services/schemas/BaDrilldownItemDto.d.ts +35 -0
  25. package/dist/sei-panorama-service/src/services/schemas/BaDrilldownItemDto.js +4 -0
  26. package/dist/sei-panorama-service/src/services/schemas/BaDrilldownRequestDto.d.ts +18 -0
  27. package/dist/sei-panorama-service/src/services/schemas/BaDrilldownRequestDto.js +1 -0
  28. package/dist/sei-panorama-service/src/services/schemas/BaDrilldownResponseDto.d.ts +7 -0
  29. package/dist/sei-panorama-service/src/services/schemas/BaDrilldownResponseDto.js +1 -0
  30. package/dist/sei-panorama-service/src/services/schemas/BaFilterDto.d.ts +1 -10
  31. package/dist/sei-panorama-service/src/services/schemas/BaFilterSetDto.d.ts +1 -10
  32. package/dist/sei-panorama-service/src/services/schemas/BaProfileRequestDto.d.ts +1 -1
  33. package/dist/sei-panorama-service/src/services/schemas/BaTeamCategoryDefinition.d.ts +0 -2
  34. package/dist/sei-panorama-service/src/services/schemas/EfficiencyProfileResponseDto.d.ts +2 -0
  35. package/dist/sei-panorama-service/src/services/schemas/ErrorResponse.d.ts +1 -0
  36. package/dist/sei-panorama-service/src/services/schemas/GroupedTeamFiltersResponseDto.d.ts +2 -0
  37. package/dist/sei-panorama-service/src/services/schemas/MinimalOrgTree.d.ts +2 -0
  38. package/dist/sei-panorama-service/src/services/schemas/MinimalTeamHierarchyResponseDto.d.ts +14 -0
  39. package/dist/sei-panorama-service/src/services/schemas/MinimalTeamHierarchyResponseDto.js +0 -3
  40. package/dist/sei-panorama-service/src/services/schemas/ProductivityProfileResponseDto.d.ts +2 -0
  41. package/dist/sei-panorama-service/src/services/schemas/TeamInfoUpdateRequestDto.d.ts +10 -0
  42. package/dist/sei-panorama-service/src/services/schemas/TeamInfoUpdateRequestDto.js +4 -0
  43. package/package.json +1 -1
@@ -3,9 +3,9 @@ import type { ResponseWithPagination } from '../helpers';
3
3
  import { FetcherOptions } from '../../../../fetcher/index.js';
4
4
  export interface BaControllerDeleteProfileMutationPathParams {
5
5
  /**
6
- * @format uuid
6
+ * @format int32
7
7
  */
8
- profileId: string;
8
+ profileRefId: number;
9
9
  }
10
10
  export interface BaControllerDeleteProfileMutationQueryParams {
11
11
  account: string;
@@ -4,7 +4,7 @@
4
4
  import { useMutation } from '@tanstack/react-query';
5
5
  import { fetcher } from '../../../../fetcher/index.js';
6
6
  export function baControllerDeleteProfile(props) {
7
- return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/${props.profileId}`, method: 'DELETE' }, props));
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/${props.profileRefId}`, method: 'DELETE' }, props));
8
8
  }
9
9
  /**
10
10
  * Deletes a BA profile and its categories.
@@ -0,0 +1,22 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { BaDrilldownResponseDto } from '../schemas/BaDrilldownResponseDto';
3
+ import type { BaDrilldownRequestDto } from '../schemas/BaDrilldownRequestDto';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface BaControllerDrilldownDataMutationQueryParams {
7
+ account: string;
8
+ projectIdentifier: string;
9
+ orgIdentifier: string;
10
+ }
11
+ export type BaControllerDrilldownDataRequestBody = BaDrilldownRequestDto;
12
+ export type BaControllerDrilldownDataOkResponse = ResponseWithPagination<BaDrilldownResponseDto>;
13
+ export type BaControllerDrilldownDataErrorResponse = string;
14
+ export interface BaControllerDrilldownDataProps extends Omit<FetcherOptions<BaControllerDrilldownDataMutationQueryParams, BaControllerDrilldownDataRequestBody>, 'url'> {
15
+ queryParams: BaControllerDrilldownDataMutationQueryParams;
16
+ body: BaControllerDrilldownDataRequestBody;
17
+ }
18
+ export declare function baControllerDrilldownData(props: BaControllerDrilldownDataProps): Promise<BaControllerDrilldownDataOkResponse>;
19
+ /**
20
+ * Provides detailed drilldown data for business alignment metrics by category.
21
+ */
22
+ export declare function useBaControllerDrilldownDataMutation(options?: Omit<UseMutationOptions<BaControllerDrilldownDataOkResponse, BaControllerDrilldownDataErrorResponse, BaControllerDrilldownDataProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<BaControllerDrilldownDataOkResponse, string, BaControllerDrilldownDataProps, 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 baControllerDrilldownData(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/drilldown`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * Provides detailed drilldown data for business alignment metrics by category.
11
+ */
12
+ export function useBaControllerDrilldownDataMutation(options) {
13
+ return useMutation((mutateProps) => baControllerDrilldownData(mutateProps), options);
14
+ }
@@ -7,9 +7,9 @@ export interface BaControllerGetAllTeamsWithFiltersQueryQueryParams {
7
7
  projectIdentifier: string;
8
8
  orgIdentifier: string;
9
9
  /**
10
- * @format uuid
10
+ * @format int32
11
11
  */
12
- profileId?: string;
12
+ profileRefId?: number;
13
13
  }
14
14
  export type BaControllerGetAllTeamsWithFiltersOkResponse = ResponseWithPagination<BaTeamWithFiltersDto[]>;
15
15
  export type BaControllerGetAllTeamsWithFiltersErrorResponse = string;
@@ -4,7 +4,7 @@
4
4
  import { useQuery } from '@tanstack/react-query';
5
5
  import { fetcher } from '../../../../fetcher/index.js';
6
6
  export function baControllerGetProfileById(props) {
7
- return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/${props.profileId}`, method: 'GET' }, props));
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/id/${props.profileId}`, method: 'GET' }, props));
8
8
  }
9
9
  /**
10
10
  * Retrieves a BA profile with its categories by ID.
@@ -0,0 +1,25 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
3
+ import type { ResponseWithPagination } from '../helpers';
4
+ import { FetcherOptions } from '../../../../fetcher/index.js';
5
+ export interface BaControllerGetProfileByRefIdQueryPathParams {
6
+ /**
7
+ * @format int32
8
+ */
9
+ profileRefId: number;
10
+ }
11
+ export interface BaControllerGetProfileByRefIdQueryQueryParams {
12
+ account: string;
13
+ projectIdentifier: string;
14
+ orgIdentifier: string;
15
+ }
16
+ export type BaControllerGetProfileByRefIdOkResponse = ResponseWithPagination<BaProfileResponseDto>;
17
+ export type BaControllerGetProfileByRefIdErrorResponse = string;
18
+ export interface BaControllerGetProfileByRefIdProps extends BaControllerGetProfileByRefIdQueryPathParams, Omit<FetcherOptions<BaControllerGetProfileByRefIdQueryQueryParams, unknown>, 'url'> {
19
+ queryParams: BaControllerGetProfileByRefIdQueryQueryParams;
20
+ }
21
+ export declare function baControllerGetProfileByRefId(props: BaControllerGetProfileByRefIdProps): Promise<BaControllerGetProfileByRefIdOkResponse>;
22
+ /**
23
+ * Retrieves a BA profile with its categories by refId.
24
+ */
25
+ export declare function useBaControllerGetProfileByRefIdQuery(props: BaControllerGetProfileByRefIdProps, options?: Omit<UseQueryOptions<BaControllerGetProfileByRefIdOkResponse, BaControllerGetProfileByRefIdErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<BaControllerGetProfileByRefIdOkResponse, 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 baControllerGetProfileByRefId(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/ref/${props.profileRefId}`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Retrieves a BA profile with its categories by refId.
11
+ */
12
+ export function useBaControllerGetProfileByRefIdQuery(props, options) {
13
+ return useQuery(['BAControllerGetProfileByRefId', props.profileRefId, props.queryParams], ({ signal }) => baControllerGetProfileByRefId(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -5,9 +5,9 @@ import type { ResponseWithPagination } from '../helpers';
5
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
6
6
  export interface BaControllerUpdateProfileMutationPathParams {
7
7
  /**
8
- * @format uuid
8
+ * @format int32
9
9
  */
10
- profileId: string;
10
+ profileRefId: number;
11
11
  }
12
12
  export interface BaControllerUpdateProfileMutationQueryParams {
13
13
  account: string;
@@ -4,7 +4,7 @@
4
4
  import { useMutation } from '@tanstack/react-query';
5
5
  import { fetcher } from '../../../../fetcher/index.js';
6
6
  export function baControllerUpdateProfile(props) {
7
- return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/${props.profileId}`, method: 'PUT' }, props));
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/${props.profileRefId}`, method: 'PUT' }, props));
8
8
  }
9
9
  /**
10
10
  * Updates an existing BA profile with its categories.
@@ -0,0 +1,12 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ResponseWithPagination } from '../helpers';
3
+ import { FetcherOptions } from '../../../../fetcher/index.js';
4
+ export type DeveloperControllerDownloadDeveloperCsvOkResponse = ResponseWithPagination<unknown>;
5
+ export type DeveloperControllerDownloadDeveloperCsvErrorResponse = unknown;
6
+ export interface DeveloperControllerDownloadDeveloperCsvProps extends Omit<FetcherOptions<unknown, unknown>, 'url'> {
7
+ }
8
+ export declare function developerControllerDownloadDeveloperCsv(props: DeveloperControllerDownloadDeveloperCsvProps): Promise<DeveloperControllerDownloadDeveloperCsvOkResponse>;
9
+ /**
10
+ * Downloads the latest uploaded developer CSV file
11
+ */
12
+ export declare function useDeveloperControllerDownloadDeveloperCsvQuery(props: DeveloperControllerDownloadDeveloperCsvProps, options?: Omit<UseQueryOptions<DeveloperControllerDownloadDeveloperCsvOkResponse, DeveloperControllerDownloadDeveloperCsvErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<DeveloperControllerDownloadDeveloperCsvOkResponse, 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 developerControllerDownloadDeveloperCsv(props) {
7
+ return fetcher(Object.assign({ url: `/v2/developers/download`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Downloads the latest uploaded developer CSV file
11
+ */
12
+ export function useDeveloperControllerDownloadDeveloperCsvQuery(props, options) {
13
+ return useQuery(['DeveloperControllerDownloadDeveloperCsv'], ({ signal }) => developerControllerDownloadDeveloperCsv(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -0,0 +1,12 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { ResponseWithPagination } from '../helpers';
3
+ import { FetcherOptions } from '../../../../fetcher/index.js';
4
+ export type DeveloperControllerDownloadGeneratedDevelopersCsvOkResponse = ResponseWithPagination<unknown>;
5
+ export type DeveloperControllerDownloadGeneratedDevelopersCsvErrorResponse = unknown;
6
+ export interface DeveloperControllerDownloadGeneratedDevelopersCsvProps extends Omit<FetcherOptions<unknown, unknown>, 'url'> {
7
+ }
8
+ export declare function developerControllerDownloadGeneratedDevelopersCsv(props: DeveloperControllerDownloadGeneratedDevelopersCsvProps): Promise<DeveloperControllerDownloadGeneratedDevelopersCsvOkResponse>;
9
+ /**
10
+ * Downloads a CSV file generated from all developers in the database
11
+ */
12
+ export declare function useDeveloperControllerDownloadGeneratedDevelopersCsvQuery(props: DeveloperControllerDownloadGeneratedDevelopersCsvProps, options?: Omit<UseQueryOptions<DeveloperControllerDownloadGeneratedDevelopersCsvOkResponse, DeveloperControllerDownloadGeneratedDevelopersCsvErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<DeveloperControllerDownloadGeneratedDevelopersCsvOkResponse, 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 developerControllerDownloadGeneratedDevelopersCsv(props) {
7
+ return fetcher(Object.assign({ url: `/v2/developers/download/generated`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Downloads a CSV file generated from all developers in the database
11
+ */
12
+ export function useDeveloperControllerDownloadGeneratedDevelopersCsvQuery(props, options) {
13
+ return useQuery(['DeveloperControllerDownloadGeneratedDevelopersCsv'], ({ signal }) => developerControllerDownloadGeneratedDevelopersCsv(Object.assign(Object.assign({}, props), { signal })), 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 OrgTreeControllerDeleteOrgTreeMutationPathParams {
6
+ /**
7
+ * @format int32
8
+ */
9
+ id: number;
10
+ }
11
+ export type OrgTreeControllerDeleteOrgTreeOkResponse = ResponseWithPagination<unknown>;
12
+ export type OrgTreeControllerDeleteOrgTreeErrorResponse = ErrorResponse;
13
+ export interface OrgTreeControllerDeleteOrgTreeProps extends OrgTreeControllerDeleteOrgTreeMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
14
+ }
15
+ export declare function orgTreeControllerDeleteOrgTree(props: OrgTreeControllerDeleteOrgTreeProps): Promise<OrgTreeControllerDeleteOrgTreeOkResponse>;
16
+ /**
17
+ * Deletes an organization tree and all its associated data
18
+ */
19
+ export declare function useOrgTreeControllerDeleteOrgTreeMutation(options?: Omit<UseMutationOptions<OrgTreeControllerDeleteOrgTreeOkResponse, OrgTreeControllerDeleteOrgTreeErrorResponse, OrgTreeControllerDeleteOrgTreeProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<OrgTreeControllerDeleteOrgTreeOkResponse, ErrorResponse, OrgTreeControllerDeleteOrgTreeProps, 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 orgTreeControllerDeleteOrgTree(props) {
7
+ return fetcher(Object.assign({ url: `/v2/org-trees/${props.id}`, method: 'DELETE' }, props));
8
+ }
9
+ /**
10
+ * Deletes an organization tree and all its associated data
11
+ */
12
+ export function useOrgTreeControllerDeleteOrgTreeMutation(options) {
13
+ return useMutation((mutateProps) => orgTreeControllerDeleteOrgTree(mutateProps), options);
14
+ }
@@ -20,6 +20,6 @@ export interface TeamsControllerUpdateTeamIntegrationFiltersProps extends TeamsC
20
20
  }
21
21
  export declare function teamsControllerUpdateTeamIntegrationFilters(props: TeamsControllerUpdateTeamIntegrationFiltersProps): Promise<TeamsControllerUpdateTeamIntegrationFiltersOkResponse>;
22
22
  /**
23
- * Updates filters for the specified team using a map of integration types to filters. Each integration type can have multiple filters.
23
+ * Updates integration filters for a team
24
24
  */
25
25
  export declare function useTeamsControllerUpdateTeamIntegrationFiltersMutation(options?: Omit<UseMutationOptions<TeamsControllerUpdateTeamIntegrationFiltersOkResponse, TeamsControllerUpdateTeamIntegrationFiltersErrorResponse, TeamsControllerUpdateTeamIntegrationFiltersProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<TeamsControllerUpdateTeamIntegrationFiltersOkResponse, unknown, TeamsControllerUpdateTeamIntegrationFiltersProps, unknown>;
@@ -7,7 +7,7 @@ export function teamsControllerUpdateTeamIntegrationFilters(props) {
7
7
  return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/integration_filters`, method: 'PUT' }, props));
8
8
  }
9
9
  /**
10
- * Updates filters for the specified team using a map of integration types to filters. Each integration type can have multiple filters.
10
+ * Updates integration filters for a team
11
11
  */
12
12
  export function useTeamsControllerUpdateTeamIntegrationFiltersMutation(options) {
13
13
  return useMutation((mutateProps) => teamsControllerUpdateTeamIntegrationFilters(mutateProps), options);
@@ -0,0 +1,27 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { TeamResponse } from '../schemas/TeamResponse';
3
+ import type { TeamInfoUpdateRequestDto } from '../schemas/TeamInfoUpdateRequestDto';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface TeamsControllerUpdateTeamMutationPathParams {
7
+ /**
8
+ * @format int32
9
+ */
10
+ teamRefId: number;
11
+ }
12
+ export interface TeamsControllerUpdateTeamMutationQueryParams {
13
+ account: string;
14
+ email: string;
15
+ }
16
+ export type TeamsControllerUpdateTeamRequestBody = TeamInfoUpdateRequestDto;
17
+ export type TeamsControllerUpdateTeamOkResponse = ResponseWithPagination<TeamResponse>;
18
+ export type TeamsControllerUpdateTeamErrorResponse = TeamResponse;
19
+ export interface TeamsControllerUpdateTeamProps extends TeamsControllerUpdateTeamMutationPathParams, Omit<FetcherOptions<TeamsControllerUpdateTeamMutationQueryParams, TeamsControllerUpdateTeamRequestBody>, 'url'> {
20
+ queryParams: TeamsControllerUpdateTeamMutationQueryParams;
21
+ body: TeamsControllerUpdateTeamRequestBody;
22
+ }
23
+ export declare function teamsControllerUpdateTeam(props: TeamsControllerUpdateTeamProps): Promise<TeamsControllerUpdateTeamOkResponse>;
24
+ /**
25
+ * Updates the team with the specified reference ID
26
+ */
27
+ export declare function useTeamsControllerUpdateTeamMutation(options?: Omit<UseMutationOptions<TeamsControllerUpdateTeamOkResponse, TeamsControllerUpdateTeamErrorResponse, TeamsControllerUpdateTeamProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<TeamsControllerUpdateTeamOkResponse, TeamResponse, TeamsControllerUpdateTeamProps, 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 teamsControllerUpdateTeam(props) {
7
+ return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/team_info`, method: 'PUT' }, props));
8
+ }
9
+ /**
10
+ * Updates the team with the specified reference ID
11
+ */
12
+ export function useTeamsControllerUpdateTeamMutation(options) {
13
+ return useMutation((mutateProps) => teamsControllerUpdateTeam(mutateProps), options);
14
+ }
@@ -7,12 +7,16 @@ export type { BaControllerDeleteProfileErrorResponse, BaControllerDeleteProfileM
7
7
  export { baControllerDeleteProfile, useBaControllerDeleteProfileMutation, } from './hooks/useBaControllerDeleteProfileMutation';
8
8
  export type { BaControllerDeleteTeamWithFiltersErrorResponse, BaControllerDeleteTeamWithFiltersMutationPathParams, BaControllerDeleteTeamWithFiltersMutationQueryParams, BaControllerDeleteTeamWithFiltersOkResponse, BaControllerDeleteTeamWithFiltersProps, } from './hooks/useBaControllerDeleteTeamWithFiltersMutation';
9
9
  export { baControllerDeleteTeamWithFilters, useBaControllerDeleteTeamWithFiltersMutation, } from './hooks/useBaControllerDeleteTeamWithFiltersMutation';
10
+ export type { BaControllerDrilldownDataErrorResponse, BaControllerDrilldownDataMutationQueryParams, BaControllerDrilldownDataOkResponse, BaControllerDrilldownDataProps, BaControllerDrilldownDataRequestBody, } from './hooks/useBaControllerDrilldownDataMutation';
11
+ export { baControllerDrilldownData, useBaControllerDrilldownDataMutation, } from './hooks/useBaControllerDrilldownDataMutation';
10
12
  export type { BaControllerGetAllProfilesErrorResponse, BaControllerGetAllProfilesOkResponse, BaControllerGetAllProfilesProps, BaControllerGetAllProfilesQueryQueryParams, } from './hooks/useBaControllerGetAllProfilesQuery';
11
13
  export { baControllerGetAllProfiles, useBaControllerGetAllProfilesQuery, } from './hooks/useBaControllerGetAllProfilesQuery';
12
14
  export type { BaControllerGetAllTeamsWithFiltersErrorResponse, BaControllerGetAllTeamsWithFiltersOkResponse, BaControllerGetAllTeamsWithFiltersProps, BaControllerGetAllTeamsWithFiltersQueryQueryParams, } from './hooks/useBaControllerGetAllTeamsWithFiltersQuery';
13
15
  export { baControllerGetAllTeamsWithFilters, useBaControllerGetAllTeamsWithFiltersQuery, } from './hooks/useBaControllerGetAllTeamsWithFiltersQuery';
14
16
  export type { BaControllerGetProfileByIdErrorResponse, BaControllerGetProfileByIdOkResponse, BaControllerGetProfileByIdProps, BaControllerGetProfileByIdQueryPathParams, BaControllerGetProfileByIdQueryQueryParams, } from './hooks/useBaControllerGetProfileByIdQuery';
15
17
  export { baControllerGetProfileById, useBaControllerGetProfileByIdQuery, } from './hooks/useBaControllerGetProfileByIdQuery';
18
+ export type { BaControllerGetProfileByRefIdErrorResponse, BaControllerGetProfileByRefIdOkResponse, BaControllerGetProfileByRefIdProps, BaControllerGetProfileByRefIdQueryPathParams, BaControllerGetProfileByRefIdQueryQueryParams, } from './hooks/useBaControllerGetProfileByRefIdQuery';
19
+ export { baControllerGetProfileByRefId, useBaControllerGetProfileByRefIdQuery, } from './hooks/useBaControllerGetProfileByRefIdQuery';
16
20
  export type { BaControllerGetTeamWithFiltersByIdErrorResponse, BaControllerGetTeamWithFiltersByIdOkResponse, BaControllerGetTeamWithFiltersByIdProps, BaControllerGetTeamWithFiltersByIdQueryPathParams, BaControllerGetTeamWithFiltersByIdQueryQueryParams, } from './hooks/useBaControllerGetTeamWithFiltersByIdQuery';
17
21
  export { baControllerGetTeamWithFiltersById, useBaControllerGetTeamWithFiltersByIdQuery, } from './hooks/useBaControllerGetTeamWithFiltersByIdQuery';
18
22
  export type { BaControllerInsightBreakdownErrorResponse, BaControllerInsightBreakdownOkResponse, BaControllerInsightBreakdownProps, BaControllerInsightBreakdownQueryQueryParams, BaControllerInsightBreakdownRequestBody, } from './hooks/useBaControllerInsightBreakdownQuery';
@@ -45,6 +49,10 @@ export type { CollectionControllerGetCollectionTreeErrorResponse, CollectionCont
45
49
  export { collectionControllerGetCollectionTree, useCollectionControllerGetCollectionTreeQuery, } from './hooks/useCollectionControllerGetCollectionTreeQuery';
46
50
  export type { CollectionControllerListCollectionsErrorResponse, CollectionControllerListCollectionsOkResponse, CollectionControllerListCollectionsProps, CollectionControllerListCollectionsQueryQueryParams, CollectionControllerListCollectionsRequestBody, } from './hooks/useCollectionControllerListCollectionsQuery';
47
51
  export { collectionControllerListCollections, useCollectionControllerListCollectionsQuery, } from './hooks/useCollectionControllerListCollectionsQuery';
52
+ export type { DeveloperControllerDownloadDeveloperCsvErrorResponse, DeveloperControllerDownloadDeveloperCsvOkResponse, DeveloperControllerDownloadDeveloperCsvProps, } from './hooks/useDeveloperControllerDownloadDeveloperCsvQuery';
53
+ export { developerControllerDownloadDeveloperCsv, useDeveloperControllerDownloadDeveloperCsvQuery, } from './hooks/useDeveloperControllerDownloadDeveloperCsvQuery';
54
+ export type { DeveloperControllerDownloadGeneratedDevelopersCsvErrorResponse, DeveloperControllerDownloadGeneratedDevelopersCsvOkResponse, DeveloperControllerDownloadGeneratedDevelopersCsvProps, } from './hooks/useDeveloperControllerDownloadGeneratedDevelopersCsvQuery';
55
+ export { developerControllerDownloadGeneratedDevelopersCsv, useDeveloperControllerDownloadGeneratedDevelopersCsvQuery, } from './hooks/useDeveloperControllerDownloadGeneratedDevelopersCsvQuery';
48
56
  export type { DeveloperControllerGetDeveloperUploadPreviewErrorResponse, DeveloperControllerGetDeveloperUploadPreviewOkResponse, DeveloperControllerGetDeveloperUploadPreviewProps, DeveloperControllerGetDeveloperUploadPreviewQueryPathParams, } from './hooks/useDeveloperControllerGetDeveloperUploadPreviewQuery';
49
57
  export { developerControllerGetDeveloperUploadPreview, useDeveloperControllerGetDeveloperUploadPreviewQuery, } from './hooks/useDeveloperControllerGetDeveloperUploadPreviewQuery';
50
58
  export type { DeveloperControllerGetDevelopersErrorResponse, DeveloperControllerGetDevelopersOkResponse, DeveloperControllerGetDevelopersProps, DeveloperControllerGetDevelopersQueryQueryParams, } from './hooks/useDeveloperControllerGetDevelopersQuery';
@@ -141,6 +149,8 @@ export type { LegacyHealthControllerCheckErrorResponse, LegacyHealthControllerCh
141
149
  export { legacyHealthControllerCheck, useLegacyHealthControllerCheckQuery, } from './hooks/useLegacyHealthControllerCheckQuery';
142
150
  export type { OrgTreeControllerCreateOrgTreeErrorResponse, OrgTreeControllerCreateOrgTreeMutationQueryParams, OrgTreeControllerCreateOrgTreeOkResponse, OrgTreeControllerCreateOrgTreeProps, OrgTreeControllerCreateOrgTreeRequestBody, } from './hooks/useOrgTreeControllerCreateOrgTreeMutation';
143
151
  export { orgTreeControllerCreateOrgTree, useOrgTreeControllerCreateOrgTreeMutation, } from './hooks/useOrgTreeControllerCreateOrgTreeMutation';
152
+ export type { OrgTreeControllerDeleteOrgTreeErrorResponse, OrgTreeControllerDeleteOrgTreeMutationPathParams, OrgTreeControllerDeleteOrgTreeOkResponse, OrgTreeControllerDeleteOrgTreeProps, } from './hooks/useOrgTreeControllerDeleteOrgTreeMutation';
153
+ export { orgTreeControllerDeleteOrgTree, useOrgTreeControllerDeleteOrgTreeMutation, } from './hooks/useOrgTreeControllerDeleteOrgTreeMutation';
144
154
  export type { OrgTreeControllerGetBusinessAlignmentProfileRefIdErrorResponse, OrgTreeControllerGetBusinessAlignmentProfileRefIdOkResponse, OrgTreeControllerGetBusinessAlignmentProfileRefIdProps, OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryPathParams, OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
145
155
  export { orgTreeControllerGetBusinessAlignmentProfileRefId, useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
146
156
  export type { OrgTreeControllerGetEfficiencyProfileRefIdErrorResponse, OrgTreeControllerGetEfficiencyProfileRefIdOkResponse, OrgTreeControllerGetEfficiencyProfileRefIdProps, OrgTreeControllerGetEfficiencyProfileRefIdQueryPathParams, OrgTreeControllerGetEfficiencyProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
@@ -207,11 +217,16 @@ export type { TeamsControllerUpdateTeamIntegrationFiltersErrorResponse, TeamsCon
207
217
  export { teamsControllerUpdateTeamIntegrationFilters, useTeamsControllerUpdateTeamIntegrationFiltersMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
208
218
  export type { TeamsControllerUpdateTeamIntegrationsErrorResponse, TeamsControllerUpdateTeamIntegrationsMutationPathParams, TeamsControllerUpdateTeamIntegrationsMutationQueryParams, TeamsControllerUpdateTeamIntegrationsOkResponse, TeamsControllerUpdateTeamIntegrationsProps, TeamsControllerUpdateTeamIntegrationsRequestBody, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
209
219
  export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
220
+ export type { TeamsControllerUpdateTeamErrorResponse, TeamsControllerUpdateTeamMutationPathParams, TeamsControllerUpdateTeamMutationQueryParams, TeamsControllerUpdateTeamOkResponse, TeamsControllerUpdateTeamProps, TeamsControllerUpdateTeamRequestBody, } from './hooks/useTeamsControllerUpdateTeamMutation';
221
+ export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
210
222
  export type { BaBreakdownDto } from './schemas/BaBreakdownDto';
211
223
  export type { BaCategoryDto } from './schemas/BaCategoryDto';
212
224
  export type { BaCategoryMetric } from './schemas/BaCategoryMetric';
213
225
  export type { BaCategoryTeamFilterDto } from './schemas/BaCategoryTeamFilterDto';
214
226
  export type { BaDataPoint } from './schemas/BaDataPoint';
227
+ export type { BaDrilldownItemDto } from './schemas/BaDrilldownItemDto';
228
+ export type { BaDrilldownRequestDto } from './schemas/BaDrilldownRequestDto';
229
+ export type { BaDrilldownResponseDto } from './schemas/BaDrilldownResponseDto';
215
230
  export type { BaExpressionLeafDto } from './schemas/BaExpressionLeafDto';
216
231
  export type { BaFeatureResponseDto } from './schemas/BaFeatureResponseDto';
217
232
  export type { BaFeatureSummaryCardDto } from './schemas/BaFeatureSummaryCardDto';
@@ -364,6 +379,7 @@ export type { SummaryValue } from './schemas/SummaryValue';
364
379
  export type { SummaryValueChange } from './schemas/SummaryValueChange';
365
380
  export type { TeamDevelopersDto } from './schemas/TeamDevelopersDto';
366
381
  export type { TeamFilter } from './schemas/TeamFilter';
382
+ export type { TeamInfoUpdateRequestDto } from './schemas/TeamInfoUpdateRequestDto';
367
383
  export type { TeamIntegrationDto } from './schemas/TeamIntegrationDto';
368
384
  export type { TeamResponse } from './schemas/TeamResponse';
369
385
  export type { TeamSummary } from './schemas/TeamSummary';
@@ -2,9 +2,11 @@ export { baControllerCreateProfile, useBaControllerCreateProfileMutation, } from
2
2
  export { baControllerCreateTeamWithFilters, useBaControllerCreateTeamWithFiltersMutation, } from './hooks/useBaControllerCreateTeamWithFiltersMutation';
3
3
  export { baControllerDeleteProfile, useBaControllerDeleteProfileMutation, } from './hooks/useBaControllerDeleteProfileMutation';
4
4
  export { baControllerDeleteTeamWithFilters, useBaControllerDeleteTeamWithFiltersMutation, } from './hooks/useBaControllerDeleteTeamWithFiltersMutation';
5
+ export { baControllerDrilldownData, useBaControllerDrilldownDataMutation, } from './hooks/useBaControllerDrilldownDataMutation';
5
6
  export { baControllerGetAllProfiles, useBaControllerGetAllProfilesQuery, } from './hooks/useBaControllerGetAllProfilesQuery';
6
7
  export { baControllerGetAllTeamsWithFilters, useBaControllerGetAllTeamsWithFiltersQuery, } from './hooks/useBaControllerGetAllTeamsWithFiltersQuery';
7
8
  export { baControllerGetProfileById, useBaControllerGetProfileByIdQuery, } from './hooks/useBaControllerGetProfileByIdQuery';
9
+ export { baControllerGetProfileByRefId, useBaControllerGetProfileByRefIdQuery, } from './hooks/useBaControllerGetProfileByRefIdQuery';
8
10
  export { baControllerGetTeamWithFiltersById, useBaControllerGetTeamWithFiltersByIdQuery, } from './hooks/useBaControllerGetTeamWithFiltersByIdQuery';
9
11
  export { baControllerInsightBreakdown, useBaControllerInsightBreakdownQuery, } from './hooks/useBaControllerInsightBreakdownQuery';
10
12
  export { baControllerInsightMetrics, useBaControllerInsightMetricsQuery, } from './hooks/useBaControllerInsightMetricsQuery';
@@ -21,6 +23,8 @@ export { categoryControllerGetCategory, useCategoryControllerGetCategoryQuery, }
21
23
  export { categoryControllerList, useCategoryControllerListQuery, } from './hooks/useCategoryControllerListQuery';
22
24
  export { collectionControllerGetCollectionTree, useCollectionControllerGetCollectionTreeQuery, } from './hooks/useCollectionControllerGetCollectionTreeQuery';
23
25
  export { collectionControllerListCollections, useCollectionControllerListCollectionsQuery, } from './hooks/useCollectionControllerListCollectionsQuery';
26
+ export { developerControllerDownloadDeveloperCsv, useDeveloperControllerDownloadDeveloperCsvQuery, } from './hooks/useDeveloperControllerDownloadDeveloperCsvQuery';
27
+ export { developerControllerDownloadGeneratedDevelopersCsv, useDeveloperControllerDownloadGeneratedDevelopersCsvQuery, } from './hooks/useDeveloperControllerDownloadGeneratedDevelopersCsvQuery';
24
28
  export { developerControllerGetDeveloperUploadPreview, useDeveloperControllerGetDeveloperUploadPreviewQuery, } from './hooks/useDeveloperControllerGetDeveloperUploadPreviewQuery';
25
29
  export { developerControllerGetDevelopers, useDeveloperControllerGetDevelopersQuery, } from './hooks/useDeveloperControllerGetDevelopersQuery';
26
30
  export { developerControllerGetLatestDeveloperSchema, useDeveloperControllerGetLatestDeveloperSchemaQuery, } from './hooks/useDeveloperControllerGetLatestDeveloperSchemaQuery';
@@ -69,6 +73,7 @@ export { issuesControllerGetPrsFromIssues, useIssuesControllerGetPrsFromIssuesQu
69
73
  export { jiraIssuesControllerGetJiraIssueCount, useJiraIssuesControllerGetJiraIssueCountQuery, } from './hooks/useJiraIssuesControllerGetJiraIssueCountQuery';
70
74
  export { legacyHealthControllerCheck, useLegacyHealthControllerCheckQuery, } from './hooks/useLegacyHealthControllerCheckQuery';
71
75
  export { orgTreeControllerCreateOrgTree, useOrgTreeControllerCreateOrgTreeMutation, } from './hooks/useOrgTreeControllerCreateOrgTreeMutation';
76
+ export { orgTreeControllerDeleteOrgTree, useOrgTreeControllerDeleteOrgTreeMutation, } from './hooks/useOrgTreeControllerDeleteOrgTreeMutation';
72
77
  export { orgTreeControllerGetBusinessAlignmentProfileRefId, useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
73
78
  export { orgTreeControllerGetEfficiencyProfileRefId, useOrgTreeControllerGetEfficiencyProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
74
79
  export { orgTreeControllerGetOrgTreeIntegrations, useOrgTreeControllerGetOrgTreeIntegrationsQuery, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
@@ -102,3 +107,4 @@ export { teamsControllerGetTeam, useTeamsControllerGetTeamQuery, } from './hooks
102
107
  export { teamsControllerListTeams, useTeamsControllerListTeamsQuery, } from './hooks/useTeamsControllerListTeamsQuery';
103
108
  export { teamsControllerUpdateTeamIntegrationFilters, useTeamsControllerUpdateTeamIntegrationFiltersMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationFiltersMutation';
104
109
  export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
110
+ export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
@@ -3,24 +3,14 @@ export interface BaCategoryTeamFilterDto {
3
3
  /**
4
4
  * @format uuid
5
5
  */
6
- baCategoryId: string;
7
- /**
8
- * @format date-time
9
- */
10
- createdAt?: string;
6
+ baCategoryId?: string;
11
7
  filterSet: BaFilterSetDto;
12
8
  /**
13
9
  * @format uuid
14
10
  */
15
11
  id?: string;
16
- isActive?: boolean;
17
- name?: string;
18
12
  /**
19
13
  * @format int32
20
14
  */
21
15
  teamRefId?: number;
22
- /**
23
- * @format date-time
24
- */
25
- updatedAt?: string;
26
16
  }
@@ -0,0 +1,35 @@
1
+ export interface BaDrilldownItemDto {
2
+ assignee?: string;
3
+ categoryName?: string;
4
+ /**
5
+ * @format int32
6
+ */
7
+ categoryOrder?: number;
8
+ epic?: string;
9
+ hasChildren?: boolean;
10
+ /**
11
+ * @format int32
12
+ */
13
+ hierarchyLevel?: number;
14
+ /**
15
+ * @format int32
16
+ */
17
+ integrationId?: number;
18
+ issueKey?: string;
19
+ issueTitle?: string;
20
+ issueType?: string;
21
+ project?: string;
22
+ status?: string;
23
+ /**
24
+ * @format double
25
+ */
26
+ storyPoints?: number;
27
+ /**
28
+ * @format int64
29
+ */
30
+ totalEffort?: number;
31
+ /**
32
+ * @format int64
33
+ */
34
+ totalTimeToResolve?: number;
35
+ }
@@ -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,18 @@
1
+ import type { PaginationRequest } from '../schemas/PaginationRequest';
2
+ export interface BaDrilldownRequestDto {
3
+ /**
4
+ * @format date-time
5
+ */
6
+ endDate: string;
7
+ pagination?: PaginationRequest;
8
+ sortBy?: 'ASSIGNEE' | 'CATEGORY_NAME' | 'CATEGORY_ORDER' | 'EPIC' | 'HIERARCHY_LEVEL' | 'ISSUE_KEY' | 'ISSUE_TYPE' | 'PROJECT' | 'STATUS' | 'STORY_POINTS' | 'TOTAL_EFFORT' | 'TOTAL_TIME_TO_RESOLVE';
9
+ sortByCriteria?: 'ASC' | 'DESC';
10
+ /**
11
+ * @format date-time
12
+ */
13
+ startDate: string;
14
+ /**
15
+ * @format int32
16
+ */
17
+ teamRefId: number;
18
+ }
@@ -0,0 +1,7 @@
1
+ import type { BaDrilldownItemDto } from '../schemas/BaDrilldownItemDto';
2
+ import type { PaginationInfo } from '../schemas/PaginationInfo';
3
+ export interface BaDrilldownResponseDto {
4
+ data?: BaDrilldownItemDto[];
5
+ headers?: string[];
6
+ pagination?: PaginationInfo;
7
+ }
@@ -1,10 +1,5 @@
1
1
  import type { BaExpressionLeafDto } from '../schemas/BaExpressionLeafDto';
2
2
  export interface BaFilterDto {
3
- conjunctionType?: 'AND' | 'OR';
4
- /**
5
- * @format date-time
6
- */
7
- createdAt?: string;
8
3
  expressions?: BaExpressionLeafDto[];
9
4
  /**
10
5
  * @format uuid
@@ -14,9 +9,5 @@ export interface BaFilterDto {
14
9
  * @format uuid
15
10
  */
16
11
  id?: string;
17
- name?: string;
18
- /**
19
- * @format date-time
20
- */
21
- updatedAt?: string;
12
+ logicalOperator?: 'AND' | 'OR';
22
13
  }
@@ -1,18 +1,9 @@
1
1
  import type { BaFilterDto } from '../schemas/BaFilterDto';
2
2
  export interface BaFilterSetDto {
3
- conjunctionType?: 'AND' | 'OR';
4
- /**
5
- * @format date-time
6
- */
7
- createdAt?: string;
8
3
  filters?: BaFilterDto[];
9
4
  /**
10
5
  * @format uuid
11
6
  */
12
7
  id?: string;
13
- name?: string;
14
- /**
15
- * @format date-time
16
- */
17
- updatedAt?: string;
8
+ logicalOperator?: 'AND' | 'OR';
18
9
  }
@@ -1,6 +1,6 @@
1
1
  import type { BaCategoryDto } from '../schemas/BaCategoryDto';
2
2
  export interface BaProfileRequestDto {
3
3
  categories?: BaCategoryDto[];
4
- description: string;
4
+ description?: string;
5
5
  name: string;
6
6
  }
@@ -5,6 +5,4 @@ export interface BaTeamCategoryDefinition {
5
5
  */
6
6
  categoryId: string;
7
7
  filterSet: BaFilterSetDto;
8
- isActive?: boolean;
9
- name?: string;
10
8
  }
@@ -2,6 +2,7 @@ import type { CfrConfigurationDto } from '../schemas/CfrConfigurationDto';
2
2
  import type { DfConfigurationDto } from '../schemas/DfConfigurationDto';
3
3
  import type { LtcConfigurationDto } from '../schemas/LtcConfigurationDto';
4
4
  import type { MttrConfigurationDto } from '../schemas/MttrConfigurationDto';
5
+ import type { MinimalOrgTree } from '../schemas/MinimalOrgTree';
5
6
  export interface EfficiencyProfileResponseDto {
6
7
  changeFailureRate?: CfrConfigurationDto;
7
8
  /**
@@ -18,6 +19,7 @@ export interface EfficiencyProfileResponseDto {
18
19
  leadTimeForChanges?: LtcConfigurationDto;
19
20
  meanTimeToRestore?: MttrConfigurationDto;
20
21
  name?: string;
22
+ orgTrees?: MinimalOrgTree[];
21
23
  /**
22
24
  * @format int32
23
25
  */
@@ -1,5 +1,6 @@
1
1
  export interface ErrorResponse {
2
2
  error?: string;
3
+ errorId?: string;
3
4
  message?: string;
4
5
  /**
5
6
  * @format int32
@@ -1,5 +1,7 @@
1
+ import type { BaTeamCategoryDefinition } from '../schemas/BaTeamCategoryDefinition';
1
2
  import type { TeamFilter } from '../schemas/TeamFilter';
2
3
  export interface GroupedTeamFiltersResponseDto {
4
+ categories?: BaTeamCategoryDefinition[];
3
5
  groupedFilters?: {
4
6
  [key: string]: TeamFilter[];
5
7
  };
@@ -4,4 +4,6 @@ export interface MinimalOrgTree {
4
4
  */
5
5
  id?: number;
6
6
  name?: string;
7
+ orgIdentifier?: string;
8
+ projectIdentifier?: string;
7
9
  }
@@ -1,3 +1,5 @@
1
+ import type { TeamFilter } from '../schemas/TeamFilter';
2
+ import type { IntegrationResponseDto } from '../schemas/IntegrationResponseDto';
1
3
  /**
2
4
  * Team hierarchy response with minimal information
3
5
  */
@@ -13,6 +15,18 @@ export interface MinimalTeamHierarchyResponseDto {
13
15
  * @example 10
14
16
  */
15
17
  developerCount?: number;
18
+ /**
19
+ * Map of integration Filters associated with the team
20
+ * @example []
21
+ */
22
+ groupedFilters?: {
23
+ [key: string]: TeamFilter[];
24
+ };
25
+ /**
26
+ * List of integrations associated with the team
27
+ * @example []
28
+ */
29
+ integrations?: IntegrationResponseDto[];
16
30
  /**
17
31
  * Whether this team is a leaf node (has no children)
18
32
  */
@@ -1,4 +1 @@
1
- /* eslint-disable */
2
- // This code is autogenerated using @harnessio/oats-cli.
3
- // Please do not modify this code directly.
4
1
  export {};
@@ -1,3 +1,4 @@
1
+ import type { MinimalOrgTree } from '../schemas/MinimalOrgTree';
1
2
  import type { SectionDto } from '../schemas/SectionDto';
2
3
  export interface ProductivityProfileResponseDto {
3
4
  active?: boolean;
@@ -12,6 +13,7 @@ export interface ProductivityProfileResponseDto {
12
13
  */
13
14
  id?: number;
14
15
  name: string;
16
+ orgTrees?: MinimalOrgTree[];
15
17
  /**
16
18
  * @format int32
17
19
  */
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Request object for updating team information
3
+ */
4
+ export interface TeamInfoUpdateRequestDto {
5
+ /**
6
+ * New name for the team
7
+ * @example "Engineering Team"
8
+ */
9
+ name?: string;
10
+ }
@@ -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.20.0",
3
+ "version": "0.20.2",
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",