@harnessio/react-sei-panorama-service-client 0.19.5 → 0.20.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.
Files changed (60) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useBaControllerCreateProfileMutation.d.ts +22 -0
  2. package/dist/sei-panorama-service/src/services/hooks/useBaControllerCreateProfileMutation.js +14 -0
  3. package/dist/sei-panorama-service/src/services/hooks/useBaControllerCreateTeamWithFiltersMutation.d.ts +22 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useBaControllerCreateTeamWithFiltersMutation.js +14 -0
  5. package/dist/sei-panorama-service/src/services/hooks/useBaControllerDeleteProfileMutation.d.ts +24 -0
  6. package/dist/sei-panorama-service/src/services/hooks/useBaControllerDeleteProfileMutation.js +14 -0
  7. package/dist/sei-panorama-service/src/services/hooks/useBaControllerDeleteTeamWithFiltersMutation.d.ts +24 -0
  8. package/dist/sei-panorama-service/src/services/hooks/useBaControllerDeleteTeamWithFiltersMutation.js +14 -0
  9. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetAllProfilesQuery.d.ts +19 -0
  10. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetAllProfilesQuery.js +14 -0
  11. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetAllTeamsWithFiltersQuery.d.ts +23 -0
  12. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetAllTeamsWithFiltersQuery.js +14 -0
  13. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetProfileByIdQuery.d.ts +25 -0
  14. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetProfileByIdQuery.js +14 -0
  15. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetTeamWithFiltersByIdQuery.d.ts +25 -0
  16. package/dist/sei-panorama-service/src/services/hooks/useBaControllerGetTeamWithFiltersByIdQuery.js +14 -0
  17. package/dist/sei-panorama-service/src/services/hooks/useBaControllerInsightBreakdownQuery.d.ts +2 -2
  18. package/dist/sei-panorama-service/src/services/hooks/useBaControllerInsightMetricsQuery.d.ts +2 -2
  19. package/dist/sei-panorama-service/src/services/hooks/useBaControllerInsightSummaryQuery.d.ts +2 -2
  20. package/dist/sei-panorama-service/src/services/hooks/useBaControllerUpdateProfileMutation.d.ts +28 -0
  21. package/dist/sei-panorama-service/src/services/hooks/useBaControllerUpdateProfileMutation.js +14 -0
  22. package/dist/sei-panorama-service/src/services/hooks/useBaControllerUpdateTeamWithFiltersMutation.d.ts +22 -0
  23. package/dist/sei-panorama-service/src/services/hooks/useBaControllerUpdateTeamWithFiltersMutation.js +14 -0
  24. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery.d.ts +24 -0
  25. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery.js +14 -0
  26. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation.d.ts +26 -0
  27. package/dist/sei-panorama-service/src/services/hooks/useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation.js +14 -0
  28. package/dist/sei-panorama-service/src/services/index.d.ts +35 -0
  29. package/dist/sei-panorama-service/src/services/index.js +12 -0
  30. package/dist/sei-panorama-service/src/services/schemas/BaCategoryDto.d.ts +13 -0
  31. package/dist/sei-panorama-service/src/services/schemas/BaCategoryDto.js +4 -0
  32. package/dist/sei-panorama-service/src/services/schemas/BaCategoryTeamFilterDto.d.ts +26 -0
  33. package/dist/sei-panorama-service/src/services/schemas/BaCategoryTeamFilterDto.js +1 -0
  34. package/dist/sei-panorama-service/src/services/schemas/BaExpressionLeafDto.d.ts +15 -0
  35. package/dist/sei-panorama-service/src/services/schemas/BaExpressionLeafDto.js +1 -0
  36. package/dist/sei-panorama-service/src/services/schemas/BaFilterDto.d.ts +22 -0
  37. package/dist/sei-panorama-service/src/services/schemas/BaFilterDto.js +1 -0
  38. package/dist/sei-panorama-service/src/services/schemas/BaFilterSetDto.d.ts +18 -0
  39. package/dist/sei-panorama-service/src/services/schemas/BaFilterSetDto.js +1 -0
  40. package/dist/sei-panorama-service/src/services/schemas/BaInsightRequestDto.d.ts +4 -1
  41. package/dist/sei-panorama-service/src/services/schemas/BaProfileRequestDto.d.ts +6 -0
  42. package/dist/sei-panorama-service/src/services/schemas/BaProfileRequestDto.js +1 -0
  43. package/dist/sei-panorama-service/src/services/schemas/BaProfileResponseDto.d.ts +22 -0
  44. package/dist/sei-panorama-service/src/services/schemas/BaProfileResponseDto.js +1 -0
  45. package/dist/sei-panorama-service/src/services/schemas/BaSummaryRequestDto.d.ts +4 -1
  46. package/dist/sei-panorama-service/src/services/schemas/BaTeamCategoryDefinition.d.ts +10 -0
  47. package/dist/sei-panorama-service/src/services/schemas/BaTeamCategoryDefinition.js +1 -0
  48. package/dist/sei-panorama-service/src/services/schemas/BaTeamFiltersRequest.d.ts +12 -0
  49. package/dist/sei-panorama-service/src/services/schemas/BaTeamFiltersRequest.js +1 -0
  50. package/dist/sei-panorama-service/src/services/schemas/BaTeamWithFiltersDto.d.ts +28 -0
  51. package/dist/sei-panorama-service/src/services/schemas/BaTeamWithFiltersDto.js +1 -0
  52. package/dist/sei-panorama-service/src/services/schemas/BreakdownRecord.d.ts +2 -2
  53. package/dist/sei-panorama-service/src/services/schemas/IntegrationResponseDto.d.ts +1 -1
  54. package/dist/sei-panorama-service/src/services/schemas/IssuesPrResponse.d.ts +4 -0
  55. package/dist/sei-panorama-service/src/services/schemas/JsonNode.d.ts +3 -0
  56. package/dist/sei-panorama-service/src/services/schemas/JsonNode.js +4 -0
  57. package/dist/sei-panorama-service/src/services/schemas/OrgTreeCreateRequestDto.d.ts +4 -0
  58. package/dist/sei-panorama-service/src/services/schemas/OrgTreeResponseDto.d.ts +1 -0
  59. package/dist/sei-panorama-service/src/services/schemas/OrgTreeUpdateRequestDto.d.ts +4 -0
  60. package/package.json +1 -1
@@ -0,0 +1,22 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
3
+ import type { BaProfileRequestDto } from '../schemas/BaProfileRequestDto';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface BaControllerCreateProfileMutationQueryParams {
7
+ account: string;
8
+ projectIdentifier: string;
9
+ orgIdentifier: string;
10
+ }
11
+ export type BaControllerCreateProfileRequestBody = BaProfileRequestDto;
12
+ export type BaControllerCreateProfileOkResponse = ResponseWithPagination<BaProfileResponseDto>;
13
+ export type BaControllerCreateProfileErrorResponse = string;
14
+ export interface BaControllerCreateProfileProps extends Omit<FetcherOptions<BaControllerCreateProfileMutationQueryParams, BaControllerCreateProfileRequestBody>, 'url'> {
15
+ queryParams: BaControllerCreateProfileMutationQueryParams;
16
+ body: BaControllerCreateProfileRequestBody;
17
+ }
18
+ export declare function baControllerCreateProfile(props: BaControllerCreateProfileProps): Promise<BaControllerCreateProfileOkResponse>;
19
+ /**
20
+ * Creates a new BA profile with categories for business alignment analysis.
21
+ */
22
+ export declare function useBaControllerCreateProfileMutation(options?: Omit<UseMutationOptions<BaControllerCreateProfileOkResponse, BaControllerCreateProfileErrorResponse, BaControllerCreateProfileProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<BaControllerCreateProfileOkResponse, string, BaControllerCreateProfileProps, 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 baControllerCreateProfile(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/profiles`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * Creates a new BA profile with categories for business alignment analysis.
11
+ */
12
+ export function useBaControllerCreateProfileMutation(options) {
13
+ return useMutation((mutateProps) => baControllerCreateProfile(mutateProps), options);
14
+ }
@@ -0,0 +1,22 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { BaTeamWithFiltersDto } from '../schemas/BaTeamWithFiltersDto';
3
+ import type { BaTeamFiltersRequest } from '../schemas/BaTeamFiltersRequest';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface BaControllerCreateTeamWithFiltersMutationQueryParams {
7
+ account: string;
8
+ projectIdentifier: string;
9
+ orgIdentifier: string;
10
+ }
11
+ export type BaControllerCreateTeamWithFiltersRequestBody = BaTeamFiltersRequest;
12
+ export type BaControllerCreateTeamWithFiltersOkResponse = ResponseWithPagination<BaTeamWithFiltersDto>;
13
+ export type BaControllerCreateTeamWithFiltersErrorResponse = string;
14
+ export interface BaControllerCreateTeamWithFiltersProps extends Omit<FetcherOptions<BaControllerCreateTeamWithFiltersMutationQueryParams, BaControllerCreateTeamWithFiltersRequestBody>, 'url'> {
15
+ queryParams: BaControllerCreateTeamWithFiltersMutationQueryParams;
16
+ body: BaControllerCreateTeamWithFiltersRequestBody;
17
+ }
18
+ export declare function baControllerCreateTeamWithFilters(props: BaControllerCreateTeamWithFiltersProps): Promise<BaControllerCreateTeamWithFiltersOkResponse>;
19
+ /**
20
+ * Creates category filters and expression trees for the specified team.
21
+ */
22
+ export declare function useBaControllerCreateTeamWithFiltersMutation(options?: Omit<UseMutationOptions<BaControllerCreateTeamWithFiltersOkResponse, BaControllerCreateTeamWithFiltersErrorResponse, BaControllerCreateTeamWithFiltersProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<BaControllerCreateTeamWithFiltersOkResponse, string, BaControllerCreateTeamWithFiltersProps, 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 baControllerCreateTeamWithFilters(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/teams/filters`, method: 'POST' }, props));
8
+ }
9
+ /**
10
+ * Creates category filters and expression trees for the specified team.
11
+ */
12
+ export function useBaControllerCreateTeamWithFiltersMutation(options) {
13
+ return useMutation((mutateProps) => baControllerCreateTeamWithFilters(mutateProps), options);
14
+ }
@@ -0,0 +1,24 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { ResponseWithPagination } from '../helpers';
3
+ import { FetcherOptions } from '../../../../fetcher/index.js';
4
+ export interface BaControllerDeleteProfileMutationPathParams {
5
+ /**
6
+ * @format uuid
7
+ */
8
+ profileId: string;
9
+ }
10
+ export interface BaControllerDeleteProfileMutationQueryParams {
11
+ account: string;
12
+ projectIdentifier: string;
13
+ orgIdentifier: string;
14
+ }
15
+ export type BaControllerDeleteProfileOkResponse = ResponseWithPagination<unknown>;
16
+ export type BaControllerDeleteProfileErrorResponse = string;
17
+ export interface BaControllerDeleteProfileProps extends BaControllerDeleteProfileMutationPathParams, Omit<FetcherOptions<BaControllerDeleteProfileMutationQueryParams, unknown>, 'url'> {
18
+ queryParams: BaControllerDeleteProfileMutationQueryParams;
19
+ }
20
+ export declare function baControllerDeleteProfile(props: BaControllerDeleteProfileProps): Promise<BaControllerDeleteProfileOkResponse>;
21
+ /**
22
+ * Deletes a BA profile and its categories.
23
+ */
24
+ export declare function useBaControllerDeleteProfileMutation(options?: Omit<UseMutationOptions<BaControllerDeleteProfileOkResponse, BaControllerDeleteProfileErrorResponse, BaControllerDeleteProfileProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<BaControllerDeleteProfileOkResponse, string, BaControllerDeleteProfileProps, 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 baControllerDeleteProfile(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/${props.profileId}`, method: 'DELETE' }, props));
8
+ }
9
+ /**
10
+ * Deletes a BA profile and its categories.
11
+ */
12
+ export function useBaControllerDeleteProfileMutation(options) {
13
+ return useMutation((mutateProps) => baControllerDeleteProfile(mutateProps), options);
14
+ }
@@ -0,0 +1,24 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { ResponseWithPagination } from '../helpers';
3
+ import { FetcherOptions } from '../../../../fetcher/index.js';
4
+ export interface BaControllerDeleteTeamWithFiltersMutationPathParams {
5
+ /**
6
+ * @format int32
7
+ */
8
+ teamRefId: number;
9
+ }
10
+ export interface BaControllerDeleteTeamWithFiltersMutationQueryParams {
11
+ account: string;
12
+ projectIdentifier: string;
13
+ orgIdentifier: string;
14
+ }
15
+ export type BaControllerDeleteTeamWithFiltersOkResponse = ResponseWithPagination<unknown>;
16
+ export type BaControllerDeleteTeamWithFiltersErrorResponse = string;
17
+ export interface BaControllerDeleteTeamWithFiltersProps extends BaControllerDeleteTeamWithFiltersMutationPathParams, Omit<FetcherOptions<BaControllerDeleteTeamWithFiltersMutationQueryParams, unknown>, 'url'> {
18
+ queryParams: BaControllerDeleteTeamWithFiltersMutationQueryParams;
19
+ }
20
+ export declare function baControllerDeleteTeamWithFilters(props: BaControllerDeleteTeamWithFiltersProps): Promise<BaControllerDeleteTeamWithFiltersOkResponse>;
21
+ /**
22
+ * Deletes all category filters and expressions for the specified team.
23
+ */
24
+ export declare function useBaControllerDeleteTeamWithFiltersMutation(options?: Omit<UseMutationOptions<BaControllerDeleteTeamWithFiltersOkResponse, BaControllerDeleteTeamWithFiltersErrorResponse, BaControllerDeleteTeamWithFiltersProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<BaControllerDeleteTeamWithFiltersOkResponse, string, BaControllerDeleteTeamWithFiltersProps, 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 baControllerDeleteTeamWithFilters(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/teams/${props.teamRefId}/filters`, method: 'DELETE' }, props));
8
+ }
9
+ /**
10
+ * Deletes all category filters and expressions for the specified team.
11
+ */
12
+ export function useBaControllerDeleteTeamWithFiltersMutation(options) {
13
+ return useMutation((mutateProps) => baControllerDeleteTeamWithFilters(mutateProps), options);
14
+ }
@@ -0,0 +1,19 @@
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 BaControllerGetAllProfilesQueryQueryParams {
6
+ account: string;
7
+ projectIdentifier: string;
8
+ orgIdentifier: string;
9
+ }
10
+ export type BaControllerGetAllProfilesOkResponse = ResponseWithPagination<BaProfileResponseDto[]>;
11
+ export type BaControllerGetAllProfilesErrorResponse = string;
12
+ export interface BaControllerGetAllProfilesProps extends Omit<FetcherOptions<BaControllerGetAllProfilesQueryQueryParams, unknown>, 'url'> {
13
+ queryParams: BaControllerGetAllProfilesQueryQueryParams;
14
+ }
15
+ export declare function baControllerGetAllProfiles(props: BaControllerGetAllProfilesProps): Promise<BaControllerGetAllProfilesOkResponse>;
16
+ /**
17
+ * Retrieves all BA profiles with their categories.
18
+ */
19
+ export declare function useBaControllerGetAllProfilesQuery(props: BaControllerGetAllProfilesProps, options?: Omit<UseQueryOptions<BaControllerGetAllProfilesOkResponse, BaControllerGetAllProfilesErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<BaControllerGetAllProfilesOkResponse, 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 baControllerGetAllProfiles(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/profiles`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Retrieves all BA profiles with their categories.
11
+ */
12
+ export function useBaControllerGetAllProfilesQuery(props, options) {
13
+ return useQuery(['BAControllerGetAllProfiles', props.queryParams], ({ signal }) => baControllerGetAllProfiles(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -0,0 +1,23 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { BaTeamWithFiltersDto } from '../schemas/BaTeamWithFiltersDto';
3
+ import type { ResponseWithPagination } from '../helpers';
4
+ import { FetcherOptions } from '../../../../fetcher/index.js';
5
+ export interface BaControllerGetAllTeamsWithFiltersQueryQueryParams {
6
+ account: string;
7
+ projectIdentifier: string;
8
+ orgIdentifier: string;
9
+ /**
10
+ * @format uuid
11
+ */
12
+ profileId?: string;
13
+ }
14
+ export type BaControllerGetAllTeamsWithFiltersOkResponse = ResponseWithPagination<BaTeamWithFiltersDto[]>;
15
+ export type BaControllerGetAllTeamsWithFiltersErrorResponse = string;
16
+ export interface BaControllerGetAllTeamsWithFiltersProps extends Omit<FetcherOptions<BaControllerGetAllTeamsWithFiltersQueryQueryParams, unknown>, 'url'> {
17
+ queryParams: BaControllerGetAllTeamsWithFiltersQueryQueryParams;
18
+ }
19
+ export declare function baControllerGetAllTeamsWithFilters(props: BaControllerGetAllTeamsWithFiltersProps): Promise<BaControllerGetAllTeamsWithFiltersOkResponse>;
20
+ /**
21
+ * Retrieves all teams with their category filters and expressions.
22
+ */
23
+ export declare function useBaControllerGetAllTeamsWithFiltersQuery(props: BaControllerGetAllTeamsWithFiltersProps, options?: Omit<UseQueryOptions<BaControllerGetAllTeamsWithFiltersOkResponse, BaControllerGetAllTeamsWithFiltersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<BaControllerGetAllTeamsWithFiltersOkResponse, 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 baControllerGetAllTeamsWithFilters(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/teams/filters`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Retrieves all teams with their category filters and expressions.
11
+ */
12
+ export function useBaControllerGetAllTeamsWithFiltersQuery(props, options) {
13
+ return useQuery(['BAControllerGetAllTeamsWithFilters', props.queryParams], ({ signal }) => baControllerGetAllTeamsWithFilters(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -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 BaControllerGetProfileByIdQueryPathParams {
6
+ /**
7
+ * @format uuid
8
+ */
9
+ profileId: string;
10
+ }
11
+ export interface BaControllerGetProfileByIdQueryQueryParams {
12
+ account: string;
13
+ projectIdentifier: string;
14
+ orgIdentifier: string;
15
+ }
16
+ export type BaControllerGetProfileByIdOkResponse = ResponseWithPagination<BaProfileResponseDto>;
17
+ export type BaControllerGetProfileByIdErrorResponse = string;
18
+ export interface BaControllerGetProfileByIdProps extends BaControllerGetProfileByIdQueryPathParams, Omit<FetcherOptions<BaControllerGetProfileByIdQueryQueryParams, unknown>, 'url'> {
19
+ queryParams: BaControllerGetProfileByIdQueryQueryParams;
20
+ }
21
+ export declare function baControllerGetProfileById(props: BaControllerGetProfileByIdProps): Promise<BaControllerGetProfileByIdOkResponse>;
22
+ /**
23
+ * Retrieves a BA profile with its categories by ID.
24
+ */
25
+ export declare function useBaControllerGetProfileByIdQuery(props: BaControllerGetProfileByIdProps, options?: Omit<UseQueryOptions<BaControllerGetProfileByIdOkResponse, BaControllerGetProfileByIdErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<BaControllerGetProfileByIdOkResponse, 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 baControllerGetProfileById(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/${props.profileId}`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Retrieves a BA profile with its categories by ID.
11
+ */
12
+ export function useBaControllerGetProfileByIdQuery(props, options) {
13
+ return useQuery(['BAControllerGetProfileById', props.profileId, props.queryParams], ({ signal }) => baControllerGetProfileById(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -0,0 +1,25 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { BaTeamWithFiltersDto } from '../schemas/BaTeamWithFiltersDto';
3
+ import type { ResponseWithPagination } from '../helpers';
4
+ import { FetcherOptions } from '../../../../fetcher/index.js';
5
+ export interface BaControllerGetTeamWithFiltersByIdQueryPathParams {
6
+ /**
7
+ * @format int32
8
+ */
9
+ teamRefId: number;
10
+ }
11
+ export interface BaControllerGetTeamWithFiltersByIdQueryQueryParams {
12
+ account: string;
13
+ projectIdentifier: string;
14
+ orgIdentifier: string;
15
+ }
16
+ export type BaControllerGetTeamWithFiltersByIdOkResponse = ResponseWithPagination<BaTeamWithFiltersDto>;
17
+ export type BaControllerGetTeamWithFiltersByIdErrorResponse = string;
18
+ export interface BaControllerGetTeamWithFiltersByIdProps extends BaControllerGetTeamWithFiltersByIdQueryPathParams, Omit<FetcherOptions<BaControllerGetTeamWithFiltersByIdQueryQueryParams, unknown>, 'url'> {
19
+ queryParams: BaControllerGetTeamWithFiltersByIdQueryQueryParams;
20
+ }
21
+ export declare function baControllerGetTeamWithFiltersById(props: BaControllerGetTeamWithFiltersByIdProps): Promise<BaControllerGetTeamWithFiltersByIdOkResponse>;
22
+ /**
23
+ * Retrieves category filters and expressions for the specified team.
24
+ */
25
+ export declare function useBaControllerGetTeamWithFiltersByIdQuery(props: BaControllerGetTeamWithFiltersByIdProps, options?: Omit<UseQueryOptions<BaControllerGetTeamWithFiltersByIdOkResponse, BaControllerGetTeamWithFiltersByIdErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<BaControllerGetTeamWithFiltersByIdOkResponse, 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 baControllerGetTeamWithFiltersById(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/teams/${props.teamRefId}/filters`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Retrieves category filters and expressions for the specified team.
11
+ */
12
+ export function useBaControllerGetTeamWithFiltersByIdQuery(props, options) {
13
+ return useQuery(['BAControllerGetTeamWithFiltersById', props.teamRefId, props.queryParams], ({ signal }) => baControllerGetTeamWithFiltersById(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -5,8 +5,8 @@ import type { ResponseWithPagination } from '../helpers';
5
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
6
6
  export interface BaControllerInsightBreakdownQueryQueryParams {
7
7
  account: string;
8
- projectIdentifier?: string;
9
- orgIdentifier?: string;
8
+ projectIdentifier: string;
9
+ orgIdentifier: string;
10
10
  }
11
11
  export type BaControllerInsightBreakdownRequestBody = BaInsightRequestDto;
12
12
  export type BaControllerInsightBreakdownOkResponse = ResponseWithPagination<BaBreakdownDto>;
@@ -5,8 +5,8 @@ import type { ResponseWithPagination } from '../helpers';
5
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
6
6
  export interface BaControllerInsightMetricsQueryQueryParams {
7
7
  account: string;
8
- projectIdentifier?: string;
9
- orgIdentifier?: string;
8
+ projectIdentifier: string;
9
+ orgIdentifier: string;
10
10
  }
11
11
  export type BaControllerInsightMetricsRequestBody = BaInsightRequestDto;
12
12
  export type BaControllerInsightMetricsOkResponse = ResponseWithPagination<BaFeatureResponseDto>;
@@ -5,8 +5,8 @@ import type { ResponseWithPagination } from '../helpers';
5
5
  import { FetcherOptions } from '../../../../fetcher/index.js';
6
6
  export interface BaControllerInsightSummaryQueryQueryParams {
7
7
  account: string;
8
- projectIdentifier?: string;
9
- orgIdentifier?: string;
8
+ projectIdentifier: string;
9
+ orgIdentifier: string;
10
10
  }
11
11
  export type BaControllerInsightSummaryRequestBody = BaSummaryRequestDto;
12
12
  export type BaControllerInsightSummaryOkResponse = ResponseWithPagination<BaFeatureSummaryCardDto>;
@@ -0,0 +1,28 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
3
+ import type { BaProfileRequestDto } from '../schemas/BaProfileRequestDto';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface BaControllerUpdateProfileMutationPathParams {
7
+ /**
8
+ * @format uuid
9
+ */
10
+ profileId: string;
11
+ }
12
+ export interface BaControllerUpdateProfileMutationQueryParams {
13
+ account: string;
14
+ projectIdentifier: string;
15
+ orgIdentifier: string;
16
+ }
17
+ export type BaControllerUpdateProfileRequestBody = BaProfileRequestDto;
18
+ export type BaControllerUpdateProfileOkResponse = ResponseWithPagination<BaProfileResponseDto>;
19
+ export type BaControllerUpdateProfileErrorResponse = string;
20
+ export interface BaControllerUpdateProfileProps extends BaControllerUpdateProfileMutationPathParams, Omit<FetcherOptions<BaControllerUpdateProfileMutationQueryParams, BaControllerUpdateProfileRequestBody>, 'url'> {
21
+ queryParams: BaControllerUpdateProfileMutationQueryParams;
22
+ body: BaControllerUpdateProfileRequestBody;
23
+ }
24
+ export declare function baControllerUpdateProfile(props: BaControllerUpdateProfileProps): Promise<BaControllerUpdateProfileOkResponse>;
25
+ /**
26
+ * Updates an existing BA profile with its categories.
27
+ */
28
+ export declare function useBaControllerUpdateProfileMutation(options?: Omit<UseMutationOptions<BaControllerUpdateProfileOkResponse, BaControllerUpdateProfileErrorResponse, BaControllerUpdateProfileProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<BaControllerUpdateProfileOkResponse, string, BaControllerUpdateProfileProps, 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 baControllerUpdateProfile(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/profiles/${props.profileId}`, method: 'PUT' }, props));
8
+ }
9
+ /**
10
+ * Updates an existing BA profile with its categories.
11
+ */
12
+ export function useBaControllerUpdateProfileMutation(options) {
13
+ return useMutation((mutateProps) => baControllerUpdateProfile(mutateProps), options);
14
+ }
@@ -0,0 +1,22 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { BaTeamWithFiltersDto } from '../schemas/BaTeamWithFiltersDto';
3
+ import type { BaTeamFiltersRequest } from '../schemas/BaTeamFiltersRequest';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface BaControllerUpdateTeamWithFiltersMutationQueryParams {
7
+ account: string;
8
+ projectIdentifier: string;
9
+ orgIdentifier: string;
10
+ }
11
+ export type BaControllerUpdateTeamWithFiltersRequestBody = BaTeamFiltersRequest;
12
+ export type BaControllerUpdateTeamWithFiltersOkResponse = ResponseWithPagination<BaTeamWithFiltersDto>;
13
+ export type BaControllerUpdateTeamWithFiltersErrorResponse = string;
14
+ export interface BaControllerUpdateTeamWithFiltersProps extends Omit<FetcherOptions<BaControllerUpdateTeamWithFiltersMutationQueryParams, BaControllerUpdateTeamWithFiltersRequestBody>, 'url'> {
15
+ queryParams: BaControllerUpdateTeamWithFiltersMutationQueryParams;
16
+ body: BaControllerUpdateTeamWithFiltersRequestBody;
17
+ }
18
+ export declare function baControllerUpdateTeamWithFilters(props: BaControllerUpdateTeamWithFiltersProps): Promise<BaControllerUpdateTeamWithFiltersOkResponse>;
19
+ /**
20
+ * Updates existing category filters and expressions for the specified team.
21
+ */
22
+ export declare function useBaControllerUpdateTeamWithFiltersMutation(options?: Omit<UseMutationOptions<BaControllerUpdateTeamWithFiltersOkResponse, BaControllerUpdateTeamWithFiltersErrorResponse, BaControllerUpdateTeamWithFiltersProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<BaControllerUpdateTeamWithFiltersOkResponse, string, BaControllerUpdateTeamWithFiltersProps, 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 baControllerUpdateTeamWithFilters(props) {
7
+ return fetcher(Object.assign({ url: `/v2/insights/ba/teams/filters`, method: 'PUT' }, props));
8
+ }
9
+ /**
10
+ * Updates existing category filters and expressions for the specified team.
11
+ */
12
+ export function useBaControllerUpdateTeamWithFiltersMutation(options) {
13
+ return useMutation((mutateProps) => baControllerUpdateTeamWithFilters(mutateProps), options);
14
+ }
@@ -0,0 +1,24 @@
1
+ import { UseQueryOptions } from '@tanstack/react-query';
2
+ import type { RefIdDto } from '../schemas/RefIdDto';
3
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryPathParams {
7
+ /**
8
+ * @format int32
9
+ */
10
+ orgTreeId: number;
11
+ }
12
+ export interface OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryQueryParams {
13
+ accountIdentifier: string;
14
+ }
15
+ export type OrgTreeControllerGetBusinessAlignmentProfileRefIdOkResponse = ResponseWithPagination<RefIdDto>;
16
+ export type OrgTreeControllerGetBusinessAlignmentProfileRefIdErrorResponse = ErrorResponse;
17
+ export interface OrgTreeControllerGetBusinessAlignmentProfileRefIdProps extends OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryPathParams, Omit<FetcherOptions<OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryQueryParams, unknown>, 'url'> {
18
+ queryParams: OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryQueryParams;
19
+ }
20
+ export declare function orgTreeControllerGetBusinessAlignmentProfileRefId(props: OrgTreeControllerGetBusinessAlignmentProfileRefIdProps): Promise<OrgTreeControllerGetBusinessAlignmentProfileRefIdOkResponse>;
21
+ /**
22
+ * Retrieves the business alignment profile reference ID for the specified org tree
23
+ */
24
+ export declare function useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery(props: OrgTreeControllerGetBusinessAlignmentProfileRefIdProps, options?: Omit<UseQueryOptions<OrgTreeControllerGetBusinessAlignmentProfileRefIdOkResponse, OrgTreeControllerGetBusinessAlignmentProfileRefIdErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<OrgTreeControllerGetBusinessAlignmentProfileRefIdOkResponse, 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 orgTreeControllerGetBusinessAlignmentProfileRefId(props) {
7
+ return fetcher(Object.assign({ url: `/v2/org-trees/${props.orgTreeId}/businessAlignmentProfile`, method: 'GET' }, props));
8
+ }
9
+ /**
10
+ * Retrieves the business alignment profile reference ID for the specified org tree
11
+ */
12
+ export function useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery(props, options) {
13
+ return useQuery(['OrgTreeControllerGetBusinessAlignmentProfileRefId', props.orgTreeId, props.queryParams], ({ signal }) => orgTreeControllerGetBusinessAlignmentProfileRefId(Object.assign(Object.assign({}, props), { signal })), options);
14
+ }
@@ -0,0 +1,26 @@
1
+ import { UseMutationOptions } from '@tanstack/react-query';
2
+ import type { RefIdDto } from '../schemas/RefIdDto';
3
+ import type { ErrorResponse } from '../schemas/ErrorResponse';
4
+ import type { ResponseWithPagination } from '../helpers';
5
+ import { FetcherOptions } from '../../../../fetcher/index.js';
6
+ export interface OrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutationPathParams {
7
+ /**
8
+ * @format int32
9
+ */
10
+ orgTreeId: number;
11
+ }
12
+ export interface OrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutationQueryParams {
13
+ accountIdentifier: string;
14
+ }
15
+ export type OrgTreeControllerUpdateBusinessAlignmentProfileRefIdRequestBody = RefIdDto;
16
+ export type OrgTreeControllerUpdateBusinessAlignmentProfileRefIdOkResponse = ResponseWithPagination<RefIdDto>;
17
+ export type OrgTreeControllerUpdateBusinessAlignmentProfileRefIdErrorResponse = ErrorResponse;
18
+ export interface OrgTreeControllerUpdateBusinessAlignmentProfileRefIdProps extends OrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutationPathParams, Omit<FetcherOptions<OrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutationQueryParams, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdRequestBody>, 'url'> {
19
+ queryParams: OrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutationQueryParams;
20
+ body: OrgTreeControllerUpdateBusinessAlignmentProfileRefIdRequestBody;
21
+ }
22
+ export declare function orgTreeControllerUpdateBusinessAlignmentProfileRefId(props: OrgTreeControllerUpdateBusinessAlignmentProfileRefIdProps): Promise<OrgTreeControllerUpdateBusinessAlignmentProfileRefIdOkResponse>;
23
+ /**
24
+ * Updates the business alignment profile reference ID for the specified org tree
25
+ */
26
+ export declare function useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation(options?: Omit<UseMutationOptions<OrgTreeControllerUpdateBusinessAlignmentProfileRefIdOkResponse, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdErrorResponse, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<OrgTreeControllerUpdateBusinessAlignmentProfileRefIdOkResponse, ErrorResponse, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdProps, 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 orgTreeControllerUpdateBusinessAlignmentProfileRefId(props) {
7
+ return fetcher(Object.assign({ url: `/v2/org-trees/${props.orgTreeId}/businessAlignmentProfile`, method: 'PUT' }, props));
8
+ }
9
+ /**
10
+ * Updates the business alignment profile reference ID for the specified org tree
11
+ */
12
+ export function useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation(options) {
13
+ return useMutation((mutateProps) => orgTreeControllerUpdateBusinessAlignmentProfileRefId(mutateProps), options);
14
+ }
@@ -1,10 +1,30 @@
1
1
  export type { GetPathParamsType, ResponseWithPagination } from './helpers';
2
+ export type { BaControllerCreateProfileErrorResponse, BaControllerCreateProfileMutationQueryParams, BaControllerCreateProfileOkResponse, BaControllerCreateProfileProps, BaControllerCreateProfileRequestBody, } from './hooks/useBaControllerCreateProfileMutation';
3
+ export { baControllerCreateProfile, useBaControllerCreateProfileMutation, } from './hooks/useBaControllerCreateProfileMutation';
4
+ export type { BaControllerCreateTeamWithFiltersErrorResponse, BaControllerCreateTeamWithFiltersMutationQueryParams, BaControllerCreateTeamWithFiltersOkResponse, BaControllerCreateTeamWithFiltersProps, BaControllerCreateTeamWithFiltersRequestBody, } from './hooks/useBaControllerCreateTeamWithFiltersMutation';
5
+ export { baControllerCreateTeamWithFilters, useBaControllerCreateTeamWithFiltersMutation, } from './hooks/useBaControllerCreateTeamWithFiltersMutation';
6
+ export type { BaControllerDeleteProfileErrorResponse, BaControllerDeleteProfileMutationPathParams, BaControllerDeleteProfileMutationQueryParams, BaControllerDeleteProfileOkResponse, BaControllerDeleteProfileProps, } from './hooks/useBaControllerDeleteProfileMutation';
7
+ export { baControllerDeleteProfile, useBaControllerDeleteProfileMutation, } from './hooks/useBaControllerDeleteProfileMutation';
8
+ export type { BaControllerDeleteTeamWithFiltersErrorResponse, BaControllerDeleteTeamWithFiltersMutationPathParams, BaControllerDeleteTeamWithFiltersMutationQueryParams, BaControllerDeleteTeamWithFiltersOkResponse, BaControllerDeleteTeamWithFiltersProps, } from './hooks/useBaControllerDeleteTeamWithFiltersMutation';
9
+ export { baControllerDeleteTeamWithFilters, useBaControllerDeleteTeamWithFiltersMutation, } from './hooks/useBaControllerDeleteTeamWithFiltersMutation';
10
+ export type { BaControllerGetAllProfilesErrorResponse, BaControllerGetAllProfilesOkResponse, BaControllerGetAllProfilesProps, BaControllerGetAllProfilesQueryQueryParams, } from './hooks/useBaControllerGetAllProfilesQuery';
11
+ export { baControllerGetAllProfiles, useBaControllerGetAllProfilesQuery, } from './hooks/useBaControllerGetAllProfilesQuery';
12
+ export type { BaControllerGetAllTeamsWithFiltersErrorResponse, BaControllerGetAllTeamsWithFiltersOkResponse, BaControllerGetAllTeamsWithFiltersProps, BaControllerGetAllTeamsWithFiltersQueryQueryParams, } from './hooks/useBaControllerGetAllTeamsWithFiltersQuery';
13
+ export { baControllerGetAllTeamsWithFilters, useBaControllerGetAllTeamsWithFiltersQuery, } from './hooks/useBaControllerGetAllTeamsWithFiltersQuery';
14
+ export type { BaControllerGetProfileByIdErrorResponse, BaControllerGetProfileByIdOkResponse, BaControllerGetProfileByIdProps, BaControllerGetProfileByIdQueryPathParams, BaControllerGetProfileByIdQueryQueryParams, } from './hooks/useBaControllerGetProfileByIdQuery';
15
+ export { baControllerGetProfileById, useBaControllerGetProfileByIdQuery, } from './hooks/useBaControllerGetProfileByIdQuery';
16
+ export type { BaControllerGetTeamWithFiltersByIdErrorResponse, BaControllerGetTeamWithFiltersByIdOkResponse, BaControllerGetTeamWithFiltersByIdProps, BaControllerGetTeamWithFiltersByIdQueryPathParams, BaControllerGetTeamWithFiltersByIdQueryQueryParams, } from './hooks/useBaControllerGetTeamWithFiltersByIdQuery';
17
+ export { baControllerGetTeamWithFiltersById, useBaControllerGetTeamWithFiltersByIdQuery, } from './hooks/useBaControllerGetTeamWithFiltersByIdQuery';
2
18
  export type { BaControllerInsightBreakdownErrorResponse, BaControllerInsightBreakdownOkResponse, BaControllerInsightBreakdownProps, BaControllerInsightBreakdownQueryQueryParams, BaControllerInsightBreakdownRequestBody, } from './hooks/useBaControllerInsightBreakdownQuery';
3
19
  export { baControllerInsightBreakdown, useBaControllerInsightBreakdownQuery, } from './hooks/useBaControllerInsightBreakdownQuery';
4
20
  export type { BaControllerInsightMetricsErrorResponse, BaControllerInsightMetricsOkResponse, BaControllerInsightMetricsProps, BaControllerInsightMetricsQueryQueryParams, BaControllerInsightMetricsRequestBody, } from './hooks/useBaControllerInsightMetricsQuery';
5
21
  export { baControllerInsightMetrics, useBaControllerInsightMetricsQuery, } from './hooks/useBaControllerInsightMetricsQuery';
6
22
  export type { BaControllerInsightSummaryErrorResponse, BaControllerInsightSummaryOkResponse, BaControllerInsightSummaryProps, BaControllerInsightSummaryQueryQueryParams, BaControllerInsightSummaryRequestBody, } from './hooks/useBaControllerInsightSummaryQuery';
7
23
  export { baControllerInsightSummary, useBaControllerInsightSummaryQuery, } from './hooks/useBaControllerInsightSummaryQuery';
24
+ export type { BaControllerUpdateProfileErrorResponse, BaControllerUpdateProfileMutationPathParams, BaControllerUpdateProfileMutationQueryParams, BaControllerUpdateProfileOkResponse, BaControllerUpdateProfileProps, BaControllerUpdateProfileRequestBody, } from './hooks/useBaControllerUpdateProfileMutation';
25
+ export { baControllerUpdateProfile, useBaControllerUpdateProfileMutation, } from './hooks/useBaControllerUpdateProfileMutation';
26
+ export type { BaControllerUpdateTeamWithFiltersErrorResponse, BaControllerUpdateTeamWithFiltersMutationQueryParams, BaControllerUpdateTeamWithFiltersOkResponse, BaControllerUpdateTeamWithFiltersProps, BaControllerUpdateTeamWithFiltersRequestBody, } from './hooks/useBaControllerUpdateTeamWithFiltersMutation';
27
+ export { baControllerUpdateTeamWithFilters, useBaControllerUpdateTeamWithFiltersMutation, } from './hooks/useBaControllerUpdateTeamWithFiltersMutation';
8
28
  export type { CacheControllerClearAccountCategoriesCacheErrorResponse, CacheControllerClearAccountCategoriesCacheMutationPathParams, CacheControllerClearAccountCategoriesCacheOkResponse, CacheControllerClearAccountCategoriesCacheProps, } from './hooks/useCacheControllerClearAccountCategoriesCacheMutation';
9
29
  export { cacheControllerClearAccountCategoriesCache, useCacheControllerClearAccountCategoriesCacheMutation, } from './hooks/useCacheControllerClearAccountCategoriesCacheMutation';
10
30
  export type { CacheControllerClearAccountCollectionsCacheErrorResponse, CacheControllerClearAccountCollectionsCacheMutationPathParams, CacheControllerClearAccountCollectionsCacheOkResponse, CacheControllerClearAccountCollectionsCacheProps, } from './hooks/useCacheControllerClearAccountCollectionsCacheMutation';
@@ -121,6 +141,8 @@ export type { LegacyHealthControllerCheckErrorResponse, LegacyHealthControllerCh
121
141
  export { legacyHealthControllerCheck, useLegacyHealthControllerCheckQuery, } from './hooks/useLegacyHealthControllerCheckQuery';
122
142
  export type { OrgTreeControllerCreateOrgTreeErrorResponse, OrgTreeControllerCreateOrgTreeMutationQueryParams, OrgTreeControllerCreateOrgTreeOkResponse, OrgTreeControllerCreateOrgTreeProps, OrgTreeControllerCreateOrgTreeRequestBody, } from './hooks/useOrgTreeControllerCreateOrgTreeMutation';
123
143
  export { orgTreeControllerCreateOrgTree, useOrgTreeControllerCreateOrgTreeMutation, } from './hooks/useOrgTreeControllerCreateOrgTreeMutation';
144
+ export type { OrgTreeControllerGetBusinessAlignmentProfileRefIdErrorResponse, OrgTreeControllerGetBusinessAlignmentProfileRefIdOkResponse, OrgTreeControllerGetBusinessAlignmentProfileRefIdProps, OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryPathParams, OrgTreeControllerGetBusinessAlignmentProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
145
+ export { orgTreeControllerGetBusinessAlignmentProfileRefId, useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
124
146
  export type { OrgTreeControllerGetEfficiencyProfileRefIdErrorResponse, OrgTreeControllerGetEfficiencyProfileRefIdOkResponse, OrgTreeControllerGetEfficiencyProfileRefIdProps, OrgTreeControllerGetEfficiencyProfileRefIdQueryPathParams, OrgTreeControllerGetEfficiencyProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
125
147
  export { orgTreeControllerGetEfficiencyProfileRefId, useOrgTreeControllerGetEfficiencyProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
126
148
  export type { OrgTreeControllerGetOrgTreeIntegrationsErrorResponse, OrgTreeControllerGetOrgTreeIntegrationsOkResponse, OrgTreeControllerGetOrgTreeIntegrationsProps, OrgTreeControllerGetOrgTreeIntegrationsQueryPathParams, OrgTreeControllerGetOrgTreeIntegrationsQueryQueryParams, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
@@ -133,6 +155,8 @@ export type { OrgTreeControllerGetOrgTreesErrorResponse, OrgTreeControllerGetOrg
133
155
  export { orgTreeControllerGetOrgTrees, useOrgTreeControllerGetOrgTreesQuery, } from './hooks/useOrgTreeControllerGetOrgTreesQuery';
134
156
  export type { OrgTreeControllerGetProductivityProfileRefIdErrorResponse, OrgTreeControllerGetProductivityProfileRefIdOkResponse, OrgTreeControllerGetProductivityProfileRefIdProps, OrgTreeControllerGetProductivityProfileRefIdQueryPathParams, OrgTreeControllerGetProductivityProfileRefIdQueryQueryParams, } from './hooks/useOrgTreeControllerGetProductivityProfileRefIdQuery';
135
157
  export { orgTreeControllerGetProductivityProfileRefId, useOrgTreeControllerGetProductivityProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetProductivityProfileRefIdQuery';
158
+ export type { OrgTreeControllerUpdateBusinessAlignmentProfileRefIdErrorResponse, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutationPathParams, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutationQueryParams, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdOkResponse, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdProps, OrgTreeControllerUpdateBusinessAlignmentProfileRefIdRequestBody, } from './hooks/useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation';
159
+ export { orgTreeControllerUpdateBusinessAlignmentProfileRefId, useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation';
136
160
  export type { OrgTreeControllerUpdateEfficiencyProfileRefIdErrorResponse, OrgTreeControllerUpdateEfficiencyProfileRefIdMutationPathParams, OrgTreeControllerUpdateEfficiencyProfileRefIdMutationQueryParams, OrgTreeControllerUpdateEfficiencyProfileRefIdOkResponse, OrgTreeControllerUpdateEfficiencyProfileRefIdProps, OrgTreeControllerUpdateEfficiencyProfileRefIdRequestBody, } from './hooks/useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation';
137
161
  export { orgTreeControllerUpdateEfficiencyProfileRefId, useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation';
138
162
  export type { OrgTreeControllerUpdateOrgTreeIntegrationsErrorResponse, OrgTreeControllerUpdateOrgTreeIntegrationsMutationPathParams, OrgTreeControllerUpdateOrgTreeIntegrationsMutationQueryParams, OrgTreeControllerUpdateOrgTreeIntegrationsOkResponse, OrgTreeControllerUpdateOrgTreeIntegrationsProps, OrgTreeControllerUpdateOrgTreeIntegrationsRequestBody, } from './hooks/useOrgTreeControllerUpdateOrgTreeIntegrationsMutation';
@@ -184,12 +208,22 @@ export { teamsControllerUpdateTeamIntegrationFilters, useTeamsControllerUpdateTe
184
208
  export type { TeamsControllerUpdateTeamIntegrationsErrorResponse, TeamsControllerUpdateTeamIntegrationsMutationPathParams, TeamsControllerUpdateTeamIntegrationsMutationQueryParams, TeamsControllerUpdateTeamIntegrationsOkResponse, TeamsControllerUpdateTeamIntegrationsProps, TeamsControllerUpdateTeamIntegrationsRequestBody, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
185
209
  export { teamsControllerUpdateTeamIntegrations, useTeamsControllerUpdateTeamIntegrationsMutation, } from './hooks/useTeamsControllerUpdateTeamIntegrationsMutation';
186
210
  export type { BaBreakdownDto } from './schemas/BaBreakdownDto';
211
+ export type { BaCategoryDto } from './schemas/BaCategoryDto';
187
212
  export type { BaCategoryMetric } from './schemas/BaCategoryMetric';
213
+ export type { BaCategoryTeamFilterDto } from './schemas/BaCategoryTeamFilterDto';
188
214
  export type { BaDataPoint } from './schemas/BaDataPoint';
215
+ export type { BaExpressionLeafDto } from './schemas/BaExpressionLeafDto';
189
216
  export type { BaFeatureResponseDto } from './schemas/BaFeatureResponseDto';
190
217
  export type { BaFeatureSummaryCardDto } from './schemas/BaFeatureSummaryCardDto';
218
+ export type { BaFilterDto } from './schemas/BaFilterDto';
219
+ export type { BaFilterSetDto } from './schemas/BaFilterSetDto';
191
220
  export type { BaInsightRequestDto } from './schemas/BaInsightRequestDto';
221
+ export type { BaProfileRequestDto } from './schemas/BaProfileRequestDto';
222
+ export type { BaProfileResponseDto } from './schemas/BaProfileResponseDto';
192
223
  export type { BaSummaryRequestDto } from './schemas/BaSummaryRequestDto';
224
+ export type { BaTeamCategoryDefinition } from './schemas/BaTeamCategoryDefinition';
225
+ export type { BaTeamFiltersRequest } from './schemas/BaTeamFiltersRequest';
226
+ export type { BaTeamWithFiltersDto } from './schemas/BaTeamWithFiltersDto';
193
227
  export type { BreakdownRecord } from './schemas/BreakdownRecord';
194
228
  export type { BuildInfo } from './schemas/BuildInfo';
195
229
  export type { Category } from './schemas/Category';
@@ -273,6 +307,7 @@ export type { IssuesPipelineExecutionResponse } from './schemas/IssuesPipelineEx
273
307
  export type { IssuesPipelineExecutionResponseWrapper } from './schemas/IssuesPipelineExecutionResponseWrapper';
274
308
  export type { IssuesPrResponse } from './schemas/IssuesPrResponse';
275
309
  export type { IssuesPrResponseWrapper } from './schemas/IssuesPrResponseWrapper';
310
+ export type { JsonNode } from './schemas/JsonNode';
276
311
  export type { ListResponseDtoEfficiencyProfileResponseDto } from './schemas/ListResponseDtoEfficiencyProfileResponseDto';
277
312
  export type { ListResponseDtoIntegrationResponseDto } from './schemas/ListResponseDtoIntegrationResponseDto';
278
313
  export type { ListResponseDtoOrgTreeResponseDto } from './schemas/ListResponseDtoOrgTreeResponseDto';
@@ -1,6 +1,16 @@
1
+ export { baControllerCreateProfile, useBaControllerCreateProfileMutation, } from './hooks/useBaControllerCreateProfileMutation';
2
+ export { baControllerCreateTeamWithFilters, useBaControllerCreateTeamWithFiltersMutation, } from './hooks/useBaControllerCreateTeamWithFiltersMutation';
3
+ export { baControllerDeleteProfile, useBaControllerDeleteProfileMutation, } from './hooks/useBaControllerDeleteProfileMutation';
4
+ export { baControllerDeleteTeamWithFilters, useBaControllerDeleteTeamWithFiltersMutation, } from './hooks/useBaControllerDeleteTeamWithFiltersMutation';
5
+ export { baControllerGetAllProfiles, useBaControllerGetAllProfilesQuery, } from './hooks/useBaControllerGetAllProfilesQuery';
6
+ export { baControllerGetAllTeamsWithFilters, useBaControllerGetAllTeamsWithFiltersQuery, } from './hooks/useBaControllerGetAllTeamsWithFiltersQuery';
7
+ export { baControllerGetProfileById, useBaControllerGetProfileByIdQuery, } from './hooks/useBaControllerGetProfileByIdQuery';
8
+ export { baControllerGetTeamWithFiltersById, useBaControllerGetTeamWithFiltersByIdQuery, } from './hooks/useBaControllerGetTeamWithFiltersByIdQuery';
1
9
  export { baControllerInsightBreakdown, useBaControllerInsightBreakdownQuery, } from './hooks/useBaControllerInsightBreakdownQuery';
2
10
  export { baControllerInsightMetrics, useBaControllerInsightMetricsQuery, } from './hooks/useBaControllerInsightMetricsQuery';
3
11
  export { baControllerInsightSummary, useBaControllerInsightSummaryQuery, } from './hooks/useBaControllerInsightSummaryQuery';
12
+ export { baControllerUpdateProfile, useBaControllerUpdateProfileMutation, } from './hooks/useBaControllerUpdateProfileMutation';
13
+ export { baControllerUpdateTeamWithFilters, useBaControllerUpdateTeamWithFiltersMutation, } from './hooks/useBaControllerUpdateTeamWithFiltersMutation';
4
14
  export { cacheControllerClearAccountCategoriesCache, useCacheControllerClearAccountCategoriesCacheMutation, } from './hooks/useCacheControllerClearAccountCategoriesCacheMutation';
5
15
  export { cacheControllerClearAccountCollectionsCache, useCacheControllerClearAccountCollectionsCacheMutation, } from './hooks/useCacheControllerClearAccountCollectionsCacheMutation';
6
16
  export { cacheControllerClearAllCategoriesCacheForAccount, useCacheControllerClearAllCategoriesCacheForAccountMutation, } from './hooks/useCacheControllerClearAllCategoriesCacheForAccountMutation';
@@ -59,12 +69,14 @@ export { issuesControllerGetPrsFromIssues, useIssuesControllerGetPrsFromIssuesQu
59
69
  export { jiraIssuesControllerGetJiraIssueCount, useJiraIssuesControllerGetJiraIssueCountQuery, } from './hooks/useJiraIssuesControllerGetJiraIssueCountQuery';
60
70
  export { legacyHealthControllerCheck, useLegacyHealthControllerCheckQuery, } from './hooks/useLegacyHealthControllerCheckQuery';
61
71
  export { orgTreeControllerCreateOrgTree, useOrgTreeControllerCreateOrgTreeMutation, } from './hooks/useOrgTreeControllerCreateOrgTreeMutation';
72
+ export { orgTreeControllerGetBusinessAlignmentProfileRefId, useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetBusinessAlignmentProfileRefIdQuery';
62
73
  export { orgTreeControllerGetEfficiencyProfileRefId, useOrgTreeControllerGetEfficiencyProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetEfficiencyProfileRefIdQuery';
63
74
  export { orgTreeControllerGetOrgTreeIntegrations, useOrgTreeControllerGetOrgTreeIntegrationsQuery, } from './hooks/useOrgTreeControllerGetOrgTreeIntegrationsQuery';
64
75
  export { orgTreeControllerGetOrgTree, useOrgTreeControllerGetOrgTreeQuery, } from './hooks/useOrgTreeControllerGetOrgTreeQuery';
65
76
  export { orgTreeControllerGetOrgTreeTeamHierarchy, useOrgTreeControllerGetOrgTreeTeamHierarchyQuery, } from './hooks/useOrgTreeControllerGetOrgTreeTeamHierarchyQuery';
66
77
  export { orgTreeControllerGetOrgTrees, useOrgTreeControllerGetOrgTreesQuery, } from './hooks/useOrgTreeControllerGetOrgTreesQuery';
67
78
  export { orgTreeControllerGetProductivityProfileRefId, useOrgTreeControllerGetProductivityProfileRefIdQuery, } from './hooks/useOrgTreeControllerGetProductivityProfileRefIdQuery';
79
+ export { orgTreeControllerUpdateBusinessAlignmentProfileRefId, useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateBusinessAlignmentProfileRefIdMutation';
68
80
  export { orgTreeControllerUpdateEfficiencyProfileRefId, useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation, } from './hooks/useOrgTreeControllerUpdateEfficiencyProfileRefIdMutation';
69
81
  export { orgTreeControllerUpdateOrgTreeIntegrations, useOrgTreeControllerUpdateOrgTreeIntegrationsMutation, } from './hooks/useOrgTreeControllerUpdateOrgTreeIntegrationsMutation';
70
82
  export { orgTreeControllerUpdateOrgTree, useOrgTreeControllerUpdateOrgTreeMutation, } from './hooks/useOrgTreeControllerUpdateOrgTreeMutation';
@@ -0,0 +1,13 @@
1
+ export interface BaCategoryDto {
2
+ categoryColor: string;
3
+ categoryName: string;
4
+ /**
5
+ * @format int32
6
+ */
7
+ categoryOrder: number;
8
+ /**
9
+ * @format uuid
10
+ */
11
+ id?: string;
12
+ inheritance?: 'ALL' | 'EXCLUDE_PARENT' | 'IMMEDIATE_ONLY' | 'LEAF_ONLY' | 'NONE';
13
+ }
@@ -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,26 @@
1
+ import type { BaFilterSetDto } from '../schemas/BaFilterSetDto';
2
+ export interface BaCategoryTeamFilterDto {
3
+ /**
4
+ * @format uuid
5
+ */
6
+ baCategoryId: string;
7
+ /**
8
+ * @format date-time
9
+ */
10
+ createdAt?: string;
11
+ filterSet: BaFilterSetDto;
12
+ /**
13
+ * @format uuid
14
+ */
15
+ id?: string;
16
+ isActive?: boolean;
17
+ name?: string;
18
+ /**
19
+ * @format int32
20
+ */
21
+ teamRefId?: number;
22
+ /**
23
+ * @format date-time
24
+ */
25
+ updatedAt?: string;
26
+ }
@@ -0,0 +1,15 @@
1
+ import type { JsonNode } from '../schemas/JsonNode';
2
+ export interface BaExpressionLeafDto {
3
+ /**
4
+ * @format uuid
5
+ */
6
+ filterId?: string;
7
+ filterKey: string;
8
+ /**
9
+ * @format uuid
10
+ */
11
+ id?: string;
12
+ metadata?: JsonNode;
13
+ operator: 'CONTAINS' | 'ENDS_WITH' | 'EQUALS' | 'NOT_CONTAINS' | 'NOT_EQUALS' | 'STARTS_WITH';
14
+ values?: string[];
15
+ }
@@ -0,0 +1,22 @@
1
+ import type { BaExpressionLeafDto } from '../schemas/BaExpressionLeafDto';
2
+ export interface BaFilterDto {
3
+ conjunctionType?: 'AND' | 'OR';
4
+ /**
5
+ * @format date-time
6
+ */
7
+ createdAt?: string;
8
+ expressions?: BaExpressionLeafDto[];
9
+ /**
10
+ * @format uuid
11
+ */
12
+ filterSetId?: string;
13
+ /**
14
+ * @format uuid
15
+ */
16
+ id?: string;
17
+ name?: string;
18
+ /**
19
+ * @format date-time
20
+ */
21
+ updatedAt?: string;
22
+ }
@@ -0,0 +1,18 @@
1
+ import type { BaFilterDto } from '../schemas/BaFilterDto';
2
+ export interface BaFilterSetDto {
3
+ conjunctionType?: 'AND' | 'OR';
4
+ /**
5
+ * @format date-time
6
+ */
7
+ createdAt?: string;
8
+ filters?: BaFilterDto[];
9
+ /**
10
+ * @format uuid
11
+ */
12
+ id?: string;
13
+ name?: string;
14
+ /**
15
+ * @format date-time
16
+ */
17
+ updatedAt?: string;
18
+ }
@@ -1,5 +1,4 @@
1
1
  export interface BaInsightRequestDto {
2
- collectionId?: string;
3
2
  /**
4
3
  * @format date-time
5
4
  */
@@ -9,4 +8,8 @@ export interface BaInsightRequestDto {
9
8
  * @format date-time
10
9
  */
11
10
  startDate?: string;
11
+ /**
12
+ * @format int32
13
+ */
14
+ teamRefId?: number;
12
15
  }
@@ -0,0 +1,6 @@
1
+ import type { BaCategoryDto } from '../schemas/BaCategoryDto';
2
+ export interface BaProfileRequestDto {
3
+ categories?: BaCategoryDto[];
4
+ description: string;
5
+ name: string;
6
+ }
@@ -0,0 +1,22 @@
1
+ import type { BaCategoryDto } from '../schemas/BaCategoryDto';
2
+ export interface BaProfileResponseDto {
3
+ categories?: BaCategoryDto[];
4
+ /**
5
+ * @format date-time
6
+ */
7
+ createdAt?: string;
8
+ description?: string;
9
+ /**
10
+ * @format uuid
11
+ */
12
+ id?: string;
13
+ name?: string;
14
+ /**
15
+ * @format int32
16
+ */
17
+ refId?: number;
18
+ /**
19
+ * @format date-time
20
+ */
21
+ updatedAt?: string;
22
+ }
@@ -1,5 +1,4 @@
1
1
  export interface BaSummaryRequestDto {
2
- collectionId?: string;
3
2
  /**
4
3
  * @format date-time
5
4
  */
@@ -8,4 +7,8 @@ export interface BaSummaryRequestDto {
8
7
  * @format date-time
9
8
  */
10
9
  startDate?: string;
10
+ /**
11
+ * @format int32
12
+ */
13
+ teamRefId?: number;
11
14
  }
@@ -0,0 +1,10 @@
1
+ import type { BaFilterSetDto } from '../schemas/BaFilterSetDto';
2
+ export interface BaTeamCategoryDefinition {
3
+ /**
4
+ * @format uuid
5
+ */
6
+ categoryId: string;
7
+ filterSet: BaFilterSetDto;
8
+ isActive?: boolean;
9
+ name?: string;
10
+ }
@@ -0,0 +1,12 @@
1
+ import type { BaTeamCategoryDefinition } from '../schemas/BaTeamCategoryDefinition';
2
+ export interface BaTeamFiltersRequest {
3
+ /**
4
+ * @format int32
5
+ */
6
+ baProfileRefId: number;
7
+ categories?: BaTeamCategoryDefinition[];
8
+ /**
9
+ * @format int32
10
+ */
11
+ teamRefId: number;
12
+ }
@@ -0,0 +1,28 @@
1
+ import type { BaCategoryTeamFilterDto } from '../schemas/BaCategoryTeamFilterDto';
2
+ export interface BaTeamWithFiltersDto {
3
+ /**
4
+ * @format uuid
5
+ */
6
+ baProfileId?: string;
7
+ /**
8
+ * @format int32
9
+ */
10
+ baProfileRefId: number;
11
+ categoryFilters?: BaCategoryTeamFilterDto[];
12
+ /**
13
+ * @format date-time
14
+ */
15
+ createdAt?: string;
16
+ /**
17
+ * @format uuid
18
+ */
19
+ id?: string;
20
+ /**
21
+ * @format int32
22
+ */
23
+ teamRefId: number;
24
+ /**
25
+ * @format date-time
26
+ */
27
+ updatedAt?: string;
28
+ }
@@ -1,6 +1,6 @@
1
1
  import type { BaDataPoint } from '../schemas/BaDataPoint';
2
2
  export interface BreakdownRecord {
3
- collectionId?: string;
4
- collectionName?: string;
5
3
  data?: BaDataPoint;
4
+ teamName?: string;
5
+ teamRefId?: string;
6
6
  }
@@ -5,7 +5,7 @@ export interface IntegrationResponseDto {
5
5
  /**
6
6
  * Application type
7
7
  */
8
- applicationType?: 'ADO_PIPELINES' | 'ADO_REPOS' | 'AZURE_BOARDS' | 'BITBUCKET' | 'BITBUCKET_SERVER' | 'CUSTOM' | 'GITHUB' | 'GITLAB' | 'HARNESSCODE' | 'HARNESSNG' | 'HARNESS_CD' | 'HARNESS_CI' | 'JENKINS' | 'JIRA';
8
+ applicationType?: 'ADO_BOARDS' | 'ADO_PIPELINES' | 'ADO_REPOS' | 'BITBUCKET' | 'BITBUCKET_SERVER' | 'CUSTOM' | 'GITHUB' | 'GITLAB' | 'HARNESSCODE' | 'HARNESSNG' | 'HARNESS_CD' | 'HARNESS_CI' | 'JENKINS' | 'JIRA';
9
9
  /**
10
10
  * Integration ID
11
11
  * @format int32
@@ -24,6 +24,10 @@ export interface IssuesPrResponse {
24
24
  * PR number
25
25
  */
26
26
  prNumber?: string;
27
+ /**
28
+ * PR title
29
+ */
30
+ prTitle?: string;
27
31
  /**
28
32
  * Repository name
29
33
  */
@@ -0,0 +1,3 @@
1
+ export interface JsonNode {
2
+ [key: string]: any;
3
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -1,5 +1,9 @@
1
1
  import type { GroupByField } from '../schemas/GroupByField';
2
2
  export interface OrgTreeCreateRequestDto {
3
+ /**
4
+ * @format int32
5
+ */
6
+ businessAlignmentProfileRefId?: number;
3
7
  /**
4
8
  * @format int32
5
9
  */
@@ -2,6 +2,7 @@ import type { OrgTreeProfileDto } from '../schemas/OrgTreeProfileDto';
2
2
  import type { GroupByField } from '../schemas/GroupByField';
3
3
  import type { IntegrationResponseDto } from '../schemas/IntegrationResponseDto';
4
4
  export interface OrgTreeResponseDto {
5
+ businessAlignmentProfile?: OrgTreeProfileDto;
5
6
  /**
6
7
  * @format int64
7
8
  */
@@ -1,4 +1,8 @@
1
1
  export interface OrgTreeUpdateRequestDto {
2
+ /**
3
+ * @format int32
4
+ */
5
+ businessAlignmentProfileRefId?: number;
2
6
  /**
3
7
  * @format int32
4
8
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.19.5",
3
+ "version": "0.20.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",