@harnessio/react-sei-panorama-service-client 0.23.1 → 0.23.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation.d.ts +21 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintDeliveryMutation.d.ts → useSprintInsightsControllerGetSprintDeliveryQuery.d.ts} +2 -2
- package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintDeliveryMutation.js → useSprintInsightsControllerGetSprintDeliveryQuery.js} +3 -3
- package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintDrilldownMutation.d.ts → useSprintInsightsControllerGetSprintDrilldownQuery.d.ts} +2 -2
- package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintDrilldownMutation.js → useSprintInsightsControllerGetSprintDrilldownQuery.js} +3 -3
- package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintSummaryMutation.d.ts → useSprintInsightsControllerGetSprintSummaryQuery.d.ts} +2 -2
- package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintSummaryMutation.js → useSprintInsightsControllerGetSprintSummaryQuery.js} +3 -3
- package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerSearchSprintListMutation.d.ts → useSprintInsightsControllerSearchSprintListQuery.d.ts} +2 -2
- package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerSearchSprintListMutation.js → useSprintInsightsControllerSearchSprintListQuery.js} +3 -3
- package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerSearchSprintTicketsMutation.d.ts → useSprintInsightsControllerSearchSprintTicketsQuery.d.ts} +2 -2
- package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerSearchSprintTicketsMutation.js → useSprintInsightsControllerSearchSprintTicketsQuery.js} +3 -3
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerAssociateDevelopersToTeamMutation.d.ts +22 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerAssociateDevelopersToTeamMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation.d.ts +19 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetDevelopersNotInTeamQuery.d.ts +34 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetDevelopersNotInTeamQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamDevelopersQuery.d.ts +11 -4
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamDevelopersQuery.js +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamDevelopersQuery.d.ts +4 -3
- package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamDevelopersQuery.js +2 -1
- package/dist/sei-panorama-service/src/services/index.d.ts +23 -10
- package/dist/sei-panorama-service/src/services/index.js +9 -5
- package/dist/sei-panorama-service/src/services/schemas/ApiErrorResponse.d.ts +23 -0
- package/dist/sei-panorama-service/src/services/schemas/ApiErrorResponse.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ApiResponseWrapper.d.ts +25 -0
- package/dist/sei-panorama-service/src/services/schemas/ApiResponseWrapper.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/AssociateDevelopersRequestDto.d.ts +10 -0
- package/dist/sei-panorama-service/src/services/schemas/AssociateDevelopersRequestDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationDataStatusRequest.d.ts +9 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationDataStatusRequest.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoMinimalDeveloperDto.d.ts +28 -0
- package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoMinimalDeveloperDto.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ApiResponseWrapper } from '../schemas/ApiResponseWrapper';
|
|
3
|
+
import type { ApiErrorResponse } from '../schemas/ApiErrorResponse';
|
|
4
|
+
import type { IntegrationDataStatusRequest } from '../schemas/IntegrationDataStatusRequest';
|
|
5
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
6
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
+
export interface IntegrationDataStatusControllerGetIntegrationDataStatusMutationQueryParams {
|
|
8
|
+
accountId: string;
|
|
9
|
+
}
|
|
10
|
+
export type IntegrationDataStatusControllerGetIntegrationDataStatusRequestBody = IntegrationDataStatusRequest;
|
|
11
|
+
export type IntegrationDataStatusControllerGetIntegrationDataStatusOkResponse = ResponseWithPagination<ApiResponseWrapper>;
|
|
12
|
+
export type IntegrationDataStatusControllerGetIntegrationDataStatusErrorResponse = ApiErrorResponse;
|
|
13
|
+
export interface IntegrationDataStatusControllerGetIntegrationDataStatusProps extends Omit<FetcherOptions<IntegrationDataStatusControllerGetIntegrationDataStatusMutationQueryParams, IntegrationDataStatusControllerGetIntegrationDataStatusRequestBody>, 'url'> {
|
|
14
|
+
queryParams: IntegrationDataStatusControllerGetIntegrationDataStatusMutationQueryParams;
|
|
15
|
+
body: IntegrationDataStatusControllerGetIntegrationDataStatusRequestBody;
|
|
16
|
+
}
|
|
17
|
+
export declare function integrationDataStatusControllerGetIntegrationDataStatus(props: IntegrationDataStatusControllerGetIntegrationDataStatusProps): Promise<IntegrationDataStatusControllerGetIntegrationDataStatusOkResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* Get integration status based on last 7 completed days health data and actual data availability in Iceberg tables (excluding today to avoid false negatives from pending jobs)
|
|
20
|
+
*/
|
|
21
|
+
export declare function useIntegrationDataStatusControllerGetIntegrationDataStatusMutation(options?: Omit<UseMutationOptions<IntegrationDataStatusControllerGetIntegrationDataStatusOkResponse, IntegrationDataStatusControllerGetIntegrationDataStatusErrorResponse, IntegrationDataStatusControllerGetIntegrationDataStatusProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<IntegrationDataStatusControllerGetIntegrationDataStatusOkResponse, ApiErrorResponse, IntegrationDataStatusControllerGetIntegrationDataStatusProps, 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 integrationDataStatusControllerGetIntegrationDataStatus(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/integrations/data-status`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get integration status based on last 7 completed days health data and actual data availability in Iceberg tables (excluding today to avoid false negatives from pending jobs)
|
|
11
|
+
*/
|
|
12
|
+
export function useIntegrationDataStatusControllerGetIntegrationDataStatusMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => integrationDataStatusControllerGetIntegrationDataStatus(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { SprintDeliveryResponseDto } from '../schemas/SprintDeliveryResponseDto';
|
|
3
3
|
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
4
|
import type { SprintInsightsRequestDto } from '../schemas/SprintInsightsRequestDto';
|
|
@@ -14,4 +14,4 @@ export declare function sprintInsightsControllerGetSprintDelivery(props: SprintI
|
|
|
14
14
|
/**
|
|
15
15
|
* Returns sprint delivery data for charts
|
|
16
16
|
*/
|
|
17
|
-
export declare function
|
|
17
|
+
export declare function useSprintInsightsControllerGetSprintDeliveryQuery(props: SprintInsightsControllerGetSprintDeliveryProps, options?: Omit<UseQueryOptions<SprintInsightsControllerGetSprintDeliveryOkResponse, SprintInsightsControllerGetSprintDeliveryErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SprintInsightsControllerGetSprintDeliveryOkResponse, ErrorResponse>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
3
|
// Please do not modify this code directly.
|
|
4
|
-
import {
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
6
|
export function sprintInsightsControllerGetSprintDelivery(props) {
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/insights/sprints/delivery`, method: 'POST' }, props));
|
|
@@ -9,6 +9,6 @@ export function sprintInsightsControllerGetSprintDelivery(props) {
|
|
|
9
9
|
/**
|
|
10
10
|
* Returns sprint delivery data for charts
|
|
11
11
|
*/
|
|
12
|
-
export function
|
|
13
|
-
return
|
|
12
|
+
export function useSprintInsightsControllerGetSprintDeliveryQuery(props, options) {
|
|
13
|
+
return useQuery(['SprintInsightsControllerGetSprintDelivery', props.body], ({ signal }) => sprintInsightsControllerGetSprintDelivery(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
14
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { SprintDrilldownResponseDto } from '../schemas/SprintDrilldownResponseDto';
|
|
3
3
|
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
4
|
import type { SprintDrilldownRequestDto } from '../schemas/SprintDrilldownRequestDto';
|
|
@@ -14,4 +14,4 @@ export declare function sprintInsightsControllerGetSprintDrilldown(props: Sprint
|
|
|
14
14
|
/**
|
|
15
15
|
* Returns paginated sprint details with sorting
|
|
16
16
|
*/
|
|
17
|
-
export declare function
|
|
17
|
+
export declare function useSprintInsightsControllerGetSprintDrilldownQuery(props: SprintInsightsControllerGetSprintDrilldownProps, options?: Omit<UseQueryOptions<SprintInsightsControllerGetSprintDrilldownOkResponse, SprintInsightsControllerGetSprintDrilldownErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SprintInsightsControllerGetSprintDrilldownOkResponse, ErrorResponse>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
3
|
// Please do not modify this code directly.
|
|
4
|
-
import {
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
6
|
export function sprintInsightsControllerGetSprintDrilldown(props) {
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/insights/sprints/delivery/drilldown`, method: 'POST' }, props));
|
|
@@ -9,6 +9,6 @@ export function sprintInsightsControllerGetSprintDrilldown(props) {
|
|
|
9
9
|
/**
|
|
10
10
|
* Returns paginated sprint details with sorting
|
|
11
11
|
*/
|
|
12
|
-
export function
|
|
13
|
-
return
|
|
12
|
+
export function useSprintInsightsControllerGetSprintDrilldownQuery(props, options) {
|
|
13
|
+
return useQuery(['SprintInsightsControllerGetSprintDrilldown', props.body], ({ signal }) => sprintInsightsControllerGetSprintDrilldown(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
14
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { SprintSummaryResponseDto } from '../schemas/SprintSummaryResponseDto';
|
|
3
3
|
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
4
|
import type { SprintInsightsRequestDto } from '../schemas/SprintInsightsRequestDto';
|
|
@@ -14,4 +14,4 @@ export declare function sprintInsightsControllerGetSprintSummary(props: SprintIn
|
|
|
14
14
|
/**
|
|
15
15
|
* Returns summary cards with sprint metrics
|
|
16
16
|
*/
|
|
17
|
-
export declare function
|
|
17
|
+
export declare function useSprintInsightsControllerGetSprintSummaryQuery(props: SprintInsightsControllerGetSprintSummaryProps, options?: Omit<UseQueryOptions<SprintInsightsControllerGetSprintSummaryOkResponse, SprintInsightsControllerGetSprintSummaryErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SprintInsightsControllerGetSprintSummaryOkResponse, ErrorResponse>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
3
|
// Please do not modify this code directly.
|
|
4
|
-
import {
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
6
|
export function sprintInsightsControllerGetSprintSummary(props) {
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/insights/sprints/summary`, method: 'POST' }, props));
|
|
@@ -9,6 +9,6 @@ export function sprintInsightsControllerGetSprintSummary(props) {
|
|
|
9
9
|
/**
|
|
10
10
|
* Returns summary cards with sprint metrics
|
|
11
11
|
*/
|
|
12
|
-
export function
|
|
13
|
-
return
|
|
12
|
+
export function useSprintInsightsControllerGetSprintSummaryQuery(props, options) {
|
|
13
|
+
return useQuery(['SprintInsightsControllerGetSprintSummary', props.body], ({ signal }) => sprintInsightsControllerGetSprintSummary(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
14
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { SprintListResponseDto } from '../schemas/SprintListResponseDto';
|
|
3
3
|
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
4
|
import type { SprintListRequestDto } from '../schemas/SprintListRequestDto';
|
|
@@ -14,4 +14,4 @@ export declare function sprintInsightsControllerSearchSprintList(props: SprintIn
|
|
|
14
14
|
/**
|
|
15
15
|
* Search completed sprints for dropdown with filters
|
|
16
16
|
*/
|
|
17
|
-
export declare function
|
|
17
|
+
export declare function useSprintInsightsControllerSearchSprintListQuery(props: SprintInsightsControllerSearchSprintListProps, options?: Omit<UseQueryOptions<SprintInsightsControllerSearchSprintListOkResponse, SprintInsightsControllerSearchSprintListErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SprintInsightsControllerSearchSprintListOkResponse, ErrorResponse>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
3
|
// Please do not modify this code directly.
|
|
4
|
-
import {
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
6
|
export function sprintInsightsControllerSearchSprintList(props) {
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/insights/sprints/list/search`, method: 'POST' }, props));
|
|
@@ -9,6 +9,6 @@ export function sprintInsightsControllerSearchSprintList(props) {
|
|
|
9
9
|
/**
|
|
10
10
|
* Search completed sprints for dropdown with filters
|
|
11
11
|
*/
|
|
12
|
-
export function
|
|
13
|
-
return
|
|
12
|
+
export function useSprintInsightsControllerSearchSprintListQuery(props, options) {
|
|
13
|
+
return useQuery(['SprintInsightsControllerSearchSprintList', props.body], ({ signal }) => sprintInsightsControllerSearchSprintList(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
14
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
2
|
import type { SprintTicketsResponseDto } from '../schemas/SprintTicketsResponseDto';
|
|
3
3
|
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
4
|
import type { SprintTicketsRequestDto } from '../schemas/SprintTicketsRequestDto';
|
|
@@ -14,4 +14,4 @@ export declare function sprintInsightsControllerSearchSprintTickets(props: Sprin
|
|
|
14
14
|
/**
|
|
15
15
|
* Search all tickets for a specific sprint with filters
|
|
16
16
|
*/
|
|
17
|
-
export declare function
|
|
17
|
+
export declare function useSprintInsightsControllerSearchSprintTicketsQuery(props: SprintInsightsControllerSearchSprintTicketsProps, options?: Omit<UseQueryOptions<SprintInsightsControllerSearchSprintTicketsOkResponse, SprintInsightsControllerSearchSprintTicketsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SprintInsightsControllerSearchSprintTicketsOkResponse, ErrorResponse>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
3
|
// Please do not modify this code directly.
|
|
4
|
-
import {
|
|
4
|
+
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
6
|
export function sprintInsightsControllerSearchSprintTickets(props) {
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/insights/sprints/tickets/search`, method: 'POST' }, props));
|
|
@@ -9,6 +9,6 @@ export function sprintInsightsControllerSearchSprintTickets(props) {
|
|
|
9
9
|
/**
|
|
10
10
|
* Search all tickets for a specific sprint with filters
|
|
11
11
|
*/
|
|
12
|
-
export function
|
|
13
|
-
return
|
|
12
|
+
export function useSprintInsightsControllerSearchSprintTicketsQuery(props, options) {
|
|
13
|
+
return useQuery(['SprintInsightsControllerSearchSprintTickets', props.body], ({ signal }) => sprintInsightsControllerSearchSprintTickets(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
14
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
3
|
+
import type { AssociateDevelopersRequestDto } from '../schemas/AssociateDevelopersRequestDto';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface TeamsControllerAssociateDevelopersToTeamMutationPathParams {
|
|
7
|
+
/**
|
|
8
|
+
* @format int32
|
|
9
|
+
*/
|
|
10
|
+
teamRefId: number;
|
|
11
|
+
}
|
|
12
|
+
export type TeamsControllerAssociateDevelopersToTeamRequestBody = AssociateDevelopersRequestDto;
|
|
13
|
+
export type TeamsControllerAssociateDevelopersToTeamOkResponse = ResponseWithPagination<unknown>;
|
|
14
|
+
export type TeamsControllerAssociateDevelopersToTeamErrorResponse = unknown | ErrorResponse;
|
|
15
|
+
export interface TeamsControllerAssociateDevelopersToTeamProps extends TeamsControllerAssociateDevelopersToTeamMutationPathParams, Omit<FetcherOptions<unknown, TeamsControllerAssociateDevelopersToTeamRequestBody>, 'url'> {
|
|
16
|
+
body: TeamsControllerAssociateDevelopersToTeamRequestBody;
|
|
17
|
+
}
|
|
18
|
+
export declare function teamsControllerAssociateDevelopersToTeam(props: TeamsControllerAssociateDevelopersToTeamProps): Promise<TeamsControllerAssociateDevelopersToTeamOkResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* Manually associate developers to the specified team by their reference IDs
|
|
21
|
+
*/
|
|
22
|
+
export declare function useTeamsControllerAssociateDevelopersToTeamMutation(options?: Omit<UseMutationOptions<TeamsControllerAssociateDevelopersToTeamOkResponse, TeamsControllerAssociateDevelopersToTeamErrorResponse, TeamsControllerAssociateDevelopersToTeamProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<TeamsControllerAssociateDevelopersToTeamOkResponse, unknown, TeamsControllerAssociateDevelopersToTeamProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function teamsControllerAssociateDevelopersToTeam(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'PATCH' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Manually associate developers to the specified team by their reference IDs
|
|
11
|
+
*/
|
|
12
|
+
export function useTeamsControllerAssociateDevelopersToTeamMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => teamsControllerAssociateDevelopersToTeam(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface TeamsControllerDisassociateDevelopersFromTeamMutationPathParams {
|
|
6
|
+
/**
|
|
7
|
+
* @format int32
|
|
8
|
+
*/
|
|
9
|
+
teamRefId: number;
|
|
10
|
+
}
|
|
11
|
+
export type TeamsControllerDisassociateDevelopersFromTeamOkResponse = ResponseWithPagination<unknown>;
|
|
12
|
+
export type TeamsControllerDisassociateDevelopersFromTeamErrorResponse = unknown | ErrorResponse;
|
|
13
|
+
export interface TeamsControllerDisassociateDevelopersFromTeamProps extends TeamsControllerDisassociateDevelopersFromTeamMutationPathParams, Omit<FetcherOptions<unknown, unknown>, 'url'> {
|
|
14
|
+
}
|
|
15
|
+
export declare function teamsControllerDisassociateDevelopersFromTeam(props: TeamsControllerDisassociateDevelopersFromTeamProps): Promise<TeamsControllerDisassociateDevelopersFromTeamOkResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Remove manual association of developers from the specified team by their reference IDs
|
|
18
|
+
*/
|
|
19
|
+
export declare function useTeamsControllerDisassociateDevelopersFromTeamMutation(options?: Omit<UseMutationOptions<TeamsControllerDisassociateDevelopersFromTeamOkResponse, TeamsControllerDisassociateDevelopersFromTeamErrorResponse, TeamsControllerDisassociateDevelopersFromTeamProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<TeamsControllerDisassociateDevelopersFromTeamOkResponse, unknown, TeamsControllerDisassociateDevelopersFromTeamProps, unknown>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
// This code is autogenerated using @harnessio/oats-cli.
|
|
3
|
+
// Please do not modify this code directly.
|
|
4
|
+
import { useMutation } from '@tanstack/react-query';
|
|
5
|
+
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
|
+
export function teamsControllerDisassociateDevelopersFromTeam(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'DELETE' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Remove manual association of developers from the specified team by their reference IDs
|
|
11
|
+
*/
|
|
12
|
+
export function useTeamsControllerDisassociateDevelopersFromTeamMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => teamsControllerDisassociateDevelopersFromTeam(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { ListResponseDtoMinimalDeveloperDto } from '../schemas/ListResponseDtoMinimalDeveloperDto';
|
|
3
|
+
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface TeamsControllerGetDevelopersNotInTeamQueryPathParams {
|
|
7
|
+
/**
|
|
8
|
+
* @format int32
|
|
9
|
+
*/
|
|
10
|
+
teamRefId: number;
|
|
11
|
+
}
|
|
12
|
+
export interface TeamsControllerGetDevelopersNotInTeamQueryQueryParams {
|
|
13
|
+
searchValue?: string;
|
|
14
|
+
/**
|
|
15
|
+
* @format int32
|
|
16
|
+
* @default 0
|
|
17
|
+
*/
|
|
18
|
+
pageIndex?: number;
|
|
19
|
+
/**
|
|
20
|
+
* @format int32
|
|
21
|
+
* @default 50
|
|
22
|
+
*/
|
|
23
|
+
pageSize?: number;
|
|
24
|
+
}
|
|
25
|
+
export type TeamsControllerGetDevelopersNotInTeamOkResponse = ResponseWithPagination<ListResponseDtoMinimalDeveloperDto>;
|
|
26
|
+
export type TeamsControllerGetDevelopersNotInTeamErrorResponse = ErrorResponse;
|
|
27
|
+
export interface TeamsControllerGetDevelopersNotInTeamProps extends TeamsControllerGetDevelopersNotInTeamQueryPathParams, Omit<FetcherOptions<TeamsControllerGetDevelopersNotInTeamQueryQueryParams, unknown>, 'url'> {
|
|
28
|
+
queryParams: TeamsControllerGetDevelopersNotInTeamQueryQueryParams;
|
|
29
|
+
}
|
|
30
|
+
export declare function teamsControllerGetDevelopersNotInTeam(props: TeamsControllerGetDevelopersNotInTeamProps): Promise<TeamsControllerGetDevelopersNotInTeamOkResponse>;
|
|
31
|
+
/**
|
|
32
|
+
* Returns developers in the account that are NOT currently associated with the team. These are developers that can be added to the team. Supports optional search filtering and pagination.
|
|
33
|
+
*/
|
|
34
|
+
export declare function useTeamsControllerGetDevelopersNotInTeamQuery(props: TeamsControllerGetDevelopersNotInTeamProps, options?: Omit<UseQueryOptions<TeamsControllerGetDevelopersNotInTeamOkResponse, TeamsControllerGetDevelopersNotInTeamErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerGetDevelopersNotInTeamOkResponse, 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 teamsControllerGetDevelopersNotInTeam(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/unassociated-developers`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Returns developers in the account that are NOT currently associated with the team. These are developers that can be added to the team. Supports optional search filtering and pagination.
|
|
11
|
+
*/
|
|
12
|
+
export function useTeamsControllerGetDevelopersNotInTeamQuery(props, options) {
|
|
13
|
+
return useQuery(['TeamsControllerGetDevelopersNotInTeam', props.teamRefId, props.queryParams], ({ signal }) => teamsControllerGetDevelopersNotInTeam(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamDevelopersQuery.d.ts
CHANGED
|
@@ -10,15 +10,22 @@ export interface TeamsControllerGetTeamDevelopersQueryPathParams {
|
|
|
10
10
|
teamRefId: number;
|
|
11
11
|
}
|
|
12
12
|
export interface TeamsControllerGetTeamDevelopersQueryQueryParams {
|
|
13
|
-
|
|
13
|
+
searchKey?: 'email' | 'name';
|
|
14
|
+
searchValue?: string;
|
|
15
|
+
sortKey?: 'email' | 'manual' | 'name' | 'shared' | 'updated_at' | 'updated_by';
|
|
16
|
+
sortOrder?: 'asc' | 'desc';
|
|
17
|
+
shared?: boolean;
|
|
18
|
+
hasIdentities?: boolean;
|
|
14
19
|
/**
|
|
15
20
|
* @format int32
|
|
21
|
+
* @default 0
|
|
16
22
|
*/
|
|
17
|
-
|
|
23
|
+
pageIndex?: number;
|
|
18
24
|
/**
|
|
19
25
|
* @format int32
|
|
26
|
+
* @default 50
|
|
20
27
|
*/
|
|
21
|
-
|
|
28
|
+
pageSize?: number;
|
|
22
29
|
}
|
|
23
30
|
export type TeamsControllerGetTeamDevelopersOkResponse = ResponseWithPagination<TeamDevelopersDto>;
|
|
24
31
|
export type TeamsControllerGetTeamDevelopersErrorResponse = TeamDevelopersDto | ErrorResponse;
|
|
@@ -27,6 +34,6 @@ export interface TeamsControllerGetTeamDevelopersProps extends TeamsControllerGe
|
|
|
27
34
|
}
|
|
28
35
|
export declare function teamsControllerGetTeamDevelopers(props: TeamsControllerGetTeamDevelopersProps): Promise<TeamsControllerGetTeamDevelopersOkResponse>;
|
|
29
36
|
/**
|
|
30
|
-
* Returns developers for the specified team with optional pagination support
|
|
37
|
+
* Returns developers for the specified team with optional filtering, sorting, and pagination support. Each developer includes 'isManual' flag indicating manual association and 'isShared' flag for shared developers.
|
|
31
38
|
*/
|
|
32
39
|
export declare function useTeamsControllerGetTeamDevelopersQuery(props: TeamsControllerGetTeamDevelopersProps, options?: Omit<UseQueryOptions<TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersErrorResponse>;
|
package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerGetTeamDevelopersQuery.js
CHANGED
|
@@ -7,7 +7,7 @@ export function teamsControllerGetTeamDevelopers(props) {
|
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'GET' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Returns developers for the specified team with optional pagination support
|
|
10
|
+
* Returns developers for the specified team with optional filtering, sorting, and pagination support. Each developer includes 'isManual' flag indicating manual association and 'isShared' flag for shared developers.
|
|
11
11
|
*/
|
|
12
12
|
export function useTeamsControllerGetTeamDevelopersQuery(props, options) {
|
|
13
13
|
return useQuery(['TeamsControllerGetTeamDevelopers', props.teamRefId, props.queryParams], ({ signal }) => teamsControllerGetTeamDevelopers(Object.assign(Object.assign({}, props), { signal })), options);
|
|
@@ -14,11 +14,11 @@ export interface TeamsControllerSearchTeamDevelopersQueryQueryParams {
|
|
|
14
14
|
/**
|
|
15
15
|
* @format int32
|
|
16
16
|
*/
|
|
17
|
-
|
|
17
|
+
pageIndex?: number;
|
|
18
18
|
/**
|
|
19
19
|
* @format int32
|
|
20
20
|
*/
|
|
21
|
-
|
|
21
|
+
pageSize?: number;
|
|
22
22
|
}
|
|
23
23
|
export type TeamsControllerSearchTeamDevelopersRequestBody = TeamDeveloperSearchParams;
|
|
24
24
|
export type TeamsControllerSearchTeamDevelopersOkResponse = ResponseWithPagination<TeamDevelopersDto>;
|
|
@@ -29,6 +29,7 @@ export interface TeamsControllerSearchTeamDevelopersProps extends TeamsControlle
|
|
|
29
29
|
}
|
|
30
30
|
export declare function teamsControllerSearchTeamDevelopers(props: TeamsControllerSearchTeamDevelopersProps): Promise<TeamsControllerSearchTeamDevelopersOkResponse>;
|
|
31
31
|
/**
|
|
32
|
-
* Search developers for the specified team with filtering and sorting options
|
|
32
|
+
* Search developers for the specified team with filtering and sorting options. Each developer includes 'isManual' flag indicating manual association and 'isShared' flag for shared developers.
|
|
33
|
+
* @deprecated
|
|
33
34
|
*/
|
|
34
35
|
export declare function useTeamsControllerSearchTeamDevelopersQuery(props: TeamsControllerSearchTeamDevelopersProps, options?: Omit<UseQueryOptions<TeamsControllerSearchTeamDevelopersOkResponse, TeamsControllerSearchTeamDevelopersErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<TeamsControllerSearchTeamDevelopersOkResponse, TeamsControllerSearchTeamDevelopersErrorResponse>;
|
package/dist/sei-panorama-service/src/services/hooks/useTeamsControllerSearchTeamDevelopersQuery.js
CHANGED
|
@@ -7,7 +7,8 @@ export function teamsControllerSearchTeamDevelopers(props) {
|
|
|
7
7
|
return fetcher(Object.assign({ url: `/v2/teams/${props.teamRefId}/developers`, method: 'POST' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* Search developers for the specified team with filtering and sorting options
|
|
10
|
+
* Search developers for the specified team with filtering and sorting options. Each developer includes 'isManual' flag indicating manual association and 'isShared' flag for shared developers.
|
|
11
|
+
* @deprecated
|
|
11
12
|
*/
|
|
12
13
|
export function useTeamsControllerSearchTeamDevelopersQuery(props, options) {
|
|
13
14
|
return useQuery(['TeamsControllerSearchTeamDevelopers', props.teamRefId, props.queryParams, props.body], ({ signal }) => teamsControllerSearchTeamDevelopers(Object.assign(Object.assign({}, props), { signal })), options);
|
|
@@ -169,6 +169,8 @@ export type { IntegrationControllerListIntegrationConfigsErrorResponse, Integrat
|
|
|
169
169
|
export { integrationControllerListIntegrationConfigs, useIntegrationControllerListIntegrationConfigsQuery, } from './hooks/useIntegrationControllerListIntegrationConfigsQuery';
|
|
170
170
|
export type { IntegrationControllerListIntegrationsErrorResponse, IntegrationControllerListIntegrationsOkResponse, IntegrationControllerListIntegrationsProps, IntegrationControllerListIntegrationsQueryQueryParams, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
|
171
171
|
export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
|
172
|
+
export type { IntegrationDataStatusControllerGetIntegrationDataStatusErrorResponse, IntegrationDataStatusControllerGetIntegrationDataStatusMutationQueryParams, IntegrationDataStatusControllerGetIntegrationDataStatusOkResponse, IntegrationDataStatusControllerGetIntegrationDataStatusProps, IntegrationDataStatusControllerGetIntegrationDataStatusRequestBody, } from './hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation';
|
|
173
|
+
export { integrationDataStatusControllerGetIntegrationDataStatus, useIntegrationDataStatusControllerGetIntegrationDataStatusMutation, } from './hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation';
|
|
172
174
|
export type { IntegrationStatsControllerGetCicdJobsCountErrorResponse, IntegrationStatsControllerGetCicdJobsCountOkResponse, IntegrationStatsControllerGetCicdJobsCountProps, IntegrationStatsControllerGetCicdJobsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
|
|
173
175
|
export { integrationStatsControllerGetCicdJobsCount, useIntegrationStatsControllerGetCicdJobsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
|
|
174
176
|
export type { IntegrationStatsControllerGetCicdPipelinesCountErrorResponse, IntegrationStatsControllerGetCicdPipelinesCountOkResponse, IntegrationStatsControllerGetCicdPipelinesCountProps, IntegrationStatsControllerGetCicdPipelinesCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
|
|
@@ -285,16 +287,22 @@ export type { ScmGaControllerGetBuildInfoFromPrErrorResponse, ScmGaControllerGet
|
|
|
285
287
|
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
286
288
|
export type { ScmGaControllerGetDeployInfoFromPrErrorResponse, ScmGaControllerGetDeployInfoFromPrOkResponse, ScmGaControllerGetDeployInfoFromPrProps, ScmGaControllerGetDeployInfoFromPrQueryQueryParams, ScmGaControllerGetDeployInfoFromPrRequestBody, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
287
289
|
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
288
|
-
export type { SprintInsightsControllerGetSprintDeliveryErrorResponse, SprintInsightsControllerGetSprintDeliveryOkResponse, SprintInsightsControllerGetSprintDeliveryProps, SprintInsightsControllerGetSprintDeliveryRequestBody, } from './hooks/
|
|
289
|
-
export { sprintInsightsControllerGetSprintDelivery,
|
|
290
|
-
export type { SprintInsightsControllerGetSprintDrilldownErrorResponse, SprintInsightsControllerGetSprintDrilldownOkResponse, SprintInsightsControllerGetSprintDrilldownProps, SprintInsightsControllerGetSprintDrilldownRequestBody, } from './hooks/
|
|
291
|
-
export { sprintInsightsControllerGetSprintDrilldown,
|
|
292
|
-
export type { SprintInsightsControllerGetSprintSummaryErrorResponse, SprintInsightsControllerGetSprintSummaryOkResponse, SprintInsightsControllerGetSprintSummaryProps, SprintInsightsControllerGetSprintSummaryRequestBody, } from './hooks/
|
|
293
|
-
export { sprintInsightsControllerGetSprintSummary,
|
|
294
|
-
export type { SprintInsightsControllerSearchSprintListErrorResponse, SprintInsightsControllerSearchSprintListOkResponse, SprintInsightsControllerSearchSprintListProps, SprintInsightsControllerSearchSprintListRequestBody, } from './hooks/
|
|
295
|
-
export { sprintInsightsControllerSearchSprintList,
|
|
296
|
-
export type { SprintInsightsControllerSearchSprintTicketsErrorResponse, SprintInsightsControllerSearchSprintTicketsOkResponse, SprintInsightsControllerSearchSprintTicketsProps, SprintInsightsControllerSearchSprintTicketsRequestBody, } from './hooks/
|
|
297
|
-
export { sprintInsightsControllerSearchSprintTickets,
|
|
290
|
+
export type { SprintInsightsControllerGetSprintDeliveryErrorResponse, SprintInsightsControllerGetSprintDeliveryOkResponse, SprintInsightsControllerGetSprintDeliveryProps, SprintInsightsControllerGetSprintDeliveryRequestBody, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
|
|
291
|
+
export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryQuery, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
|
|
292
|
+
export type { SprintInsightsControllerGetSprintDrilldownErrorResponse, SprintInsightsControllerGetSprintDrilldownOkResponse, SprintInsightsControllerGetSprintDrilldownProps, SprintInsightsControllerGetSprintDrilldownRequestBody, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
|
|
293
|
+
export { sprintInsightsControllerGetSprintDrilldown, useSprintInsightsControllerGetSprintDrilldownQuery, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
|
|
294
|
+
export type { SprintInsightsControllerGetSprintSummaryErrorResponse, SprintInsightsControllerGetSprintSummaryOkResponse, SprintInsightsControllerGetSprintSummaryProps, SprintInsightsControllerGetSprintSummaryRequestBody, } from './hooks/useSprintInsightsControllerGetSprintSummaryQuery';
|
|
295
|
+
export { sprintInsightsControllerGetSprintSummary, useSprintInsightsControllerGetSprintSummaryQuery, } from './hooks/useSprintInsightsControllerGetSprintSummaryQuery';
|
|
296
|
+
export type { SprintInsightsControllerSearchSprintListErrorResponse, SprintInsightsControllerSearchSprintListOkResponse, SprintInsightsControllerSearchSprintListProps, SprintInsightsControllerSearchSprintListRequestBody, } from './hooks/useSprintInsightsControllerSearchSprintListQuery';
|
|
297
|
+
export { sprintInsightsControllerSearchSprintList, useSprintInsightsControllerSearchSprintListQuery, } from './hooks/useSprintInsightsControllerSearchSprintListQuery';
|
|
298
|
+
export type { SprintInsightsControllerSearchSprintTicketsErrorResponse, SprintInsightsControllerSearchSprintTicketsOkResponse, SprintInsightsControllerSearchSprintTicketsProps, SprintInsightsControllerSearchSprintTicketsRequestBody, } from './hooks/useSprintInsightsControllerSearchSprintTicketsQuery';
|
|
299
|
+
export { sprintInsightsControllerSearchSprintTickets, useSprintInsightsControllerSearchSprintTicketsQuery, } from './hooks/useSprintInsightsControllerSearchSprintTicketsQuery';
|
|
300
|
+
export type { TeamsControllerAssociateDevelopersToTeamErrorResponse, TeamsControllerAssociateDevelopersToTeamMutationPathParams, TeamsControllerAssociateDevelopersToTeamOkResponse, TeamsControllerAssociateDevelopersToTeamProps, TeamsControllerAssociateDevelopersToTeamRequestBody, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
|
|
301
|
+
export { teamsControllerAssociateDevelopersToTeam, useTeamsControllerAssociateDevelopersToTeamMutation, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
|
|
302
|
+
export type { TeamsControllerDisassociateDevelopersFromTeamErrorResponse, TeamsControllerDisassociateDevelopersFromTeamMutationPathParams, TeamsControllerDisassociateDevelopersFromTeamOkResponse, TeamsControllerDisassociateDevelopersFromTeamProps, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
|
|
303
|
+
export { teamsControllerDisassociateDevelopersFromTeam, useTeamsControllerDisassociateDevelopersFromTeamMutation, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
|
|
304
|
+
export type { TeamsControllerGetDevelopersNotInTeamErrorResponse, TeamsControllerGetDevelopersNotInTeamOkResponse, TeamsControllerGetDevelopersNotInTeamProps, TeamsControllerGetDevelopersNotInTeamQueryPathParams, TeamsControllerGetDevelopersNotInTeamQueryQueryParams, } from './hooks/useTeamsControllerGetDevelopersNotInTeamQuery';
|
|
305
|
+
export { teamsControllerGetDevelopersNotInTeam, useTeamsControllerGetDevelopersNotInTeamQuery, } from './hooks/useTeamsControllerGetDevelopersNotInTeamQuery';
|
|
298
306
|
export type { TeamsControllerGetTeamDevelopersErrorResponse, TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersProps, TeamsControllerGetTeamDevelopersQueryPathParams, TeamsControllerGetTeamDevelopersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
299
307
|
export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
300
308
|
export type { TeamsControllerGetTeamIntegrationFiltersErrorResponse, TeamsControllerGetTeamIntegrationFiltersOkResponse, TeamsControllerGetTeamIntegrationFiltersProps, TeamsControllerGetTeamIntegrationFiltersQueryPathParams, TeamsControllerGetTeamIntegrationFiltersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
|
|
@@ -317,6 +325,9 @@ export type { TeamsControllerUpdateTeamErrorResponse, TeamsControllerUpdateTeamM
|
|
|
317
325
|
export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
|
|
318
326
|
export type { AccessResponseDto } from './schemas/AccessResponseDto';
|
|
319
327
|
export type { ActivityDataDto } from './schemas/ActivityDataDto';
|
|
328
|
+
export type { ApiErrorResponse } from './schemas/ApiErrorResponse';
|
|
329
|
+
export type { ApiResponseWrapper } from './schemas/ApiResponseWrapper';
|
|
330
|
+
export type { AssociateDevelopersRequestDto } from './schemas/AssociateDevelopersRequestDto';
|
|
320
331
|
export type { BaBreakdownDto } from './schemas/BaBreakdownDto';
|
|
321
332
|
export type { BaCategoryDto } from './schemas/BaCategoryDto';
|
|
322
333
|
export type { BaCategoryMetric } from './schemas/BaCategoryMetric';
|
|
@@ -436,6 +447,7 @@ export type { IndividualDrilldownDataV3 } from './schemas/IndividualDrilldownDat
|
|
|
436
447
|
export type { Integration } from './schemas/Integration';
|
|
437
448
|
export type { IntegrationConfigRequestDto } from './schemas/IntegrationConfigRequestDto';
|
|
438
449
|
export type { IntegrationConfigResponseDto } from './schemas/IntegrationConfigResponseDto';
|
|
450
|
+
export type { IntegrationDataStatusRequest } from './schemas/IntegrationDataStatusRequest';
|
|
439
451
|
export type { IntegrationHealthDrillDownDto } from './schemas/IntegrationHealthDrillDownDto';
|
|
440
452
|
export type { IntegrationHealthStatusDto } from './schemas/IntegrationHealthStatusDto';
|
|
441
453
|
export type { IntegrationIdsDto } from './schemas/IntegrationIdsDto';
|
|
@@ -458,6 +470,7 @@ export type { ListResponseDtoDeveloperLicenseDto } from './schemas/ListResponseD
|
|
|
458
470
|
export type { ListResponseDtoEfficiencyProfileResponseDto } from './schemas/ListResponseDtoEfficiencyProfileResponseDto';
|
|
459
471
|
export type { ListResponseDtoIntegrationConfigResponseDto } from './schemas/ListResponseDtoIntegrationConfigResponseDto';
|
|
460
472
|
export type { ListResponseDtoIntegrationResponseDto } from './schemas/ListResponseDtoIntegrationResponseDto';
|
|
473
|
+
export type { ListResponseDtoMinimalDeveloperDto } from './schemas/ListResponseDtoMinimalDeveloperDto';
|
|
461
474
|
export type { ListResponseDtoOrgTreeResponseDto } from './schemas/ListResponseDtoOrgTreeResponseDto';
|
|
462
475
|
export type { ListResponseDtoProductivityProfileResponseDto } from './schemas/ListResponseDtoProductivityProfileResponseDto';
|
|
463
476
|
export type { ListResponseDtobaProfileResponseDto } from './schemas/ListResponseDtobaProfileResponseDto';
|
|
@@ -83,6 +83,7 @@ export { imFieldsControllerListImFields, useImFieldsControllerListImFieldsQuery,
|
|
|
83
83
|
export { integrationControllerGetFilterValues, useIntegrationControllerGetFilterValuesQuery, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
|
|
84
84
|
export { integrationControllerListIntegrationConfigs, useIntegrationControllerListIntegrationConfigsQuery, } from './hooks/useIntegrationControllerListIntegrationConfigsQuery';
|
|
85
85
|
export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
|
86
|
+
export { integrationDataStatusControllerGetIntegrationDataStatus, useIntegrationDataStatusControllerGetIntegrationDataStatusMutation, } from './hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation';
|
|
86
87
|
export { integrationStatsControllerGetCicdJobsCount, useIntegrationStatsControllerGetCicdJobsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
|
|
87
88
|
export { integrationStatsControllerGetCicdPipelinesCount, useIntegrationStatsControllerGetCicdPipelinesCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
|
|
88
89
|
export { integrationStatsControllerGetImProjectsCount, useIntegrationStatsControllerGetImProjectsCountQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
|
|
@@ -141,11 +142,14 @@ export { productivityV3ControllerGetFeatureMetrics, useProductivityV3ControllerG
|
|
|
141
142
|
export { productivityV3ControllerGetIndividualUserFeatureDrillDown, useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery, } from './hooks/useProductivityV3ControllerGetIndividualUserFeatureDrillDownQuery';
|
|
142
143
|
export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPrQuery, } from './hooks/useScmGaControllerGetBuildInfoFromPrQuery';
|
|
143
144
|
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
144
|
-
export { sprintInsightsControllerGetSprintDelivery,
|
|
145
|
-
export { sprintInsightsControllerGetSprintDrilldown,
|
|
146
|
-
export { sprintInsightsControllerGetSprintSummary,
|
|
147
|
-
export { sprintInsightsControllerSearchSprintList,
|
|
148
|
-
export { sprintInsightsControllerSearchSprintTickets,
|
|
145
|
+
export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryQuery, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
|
|
146
|
+
export { sprintInsightsControllerGetSprintDrilldown, useSprintInsightsControllerGetSprintDrilldownQuery, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
|
|
147
|
+
export { sprintInsightsControllerGetSprintSummary, useSprintInsightsControllerGetSprintSummaryQuery, } from './hooks/useSprintInsightsControllerGetSprintSummaryQuery';
|
|
148
|
+
export { sprintInsightsControllerSearchSprintList, useSprintInsightsControllerSearchSprintListQuery, } from './hooks/useSprintInsightsControllerSearchSprintListQuery';
|
|
149
|
+
export { sprintInsightsControllerSearchSprintTickets, useSprintInsightsControllerSearchSprintTicketsQuery, } from './hooks/useSprintInsightsControllerSearchSprintTicketsQuery';
|
|
150
|
+
export { teamsControllerAssociateDevelopersToTeam, useTeamsControllerAssociateDevelopersToTeamMutation, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
|
|
151
|
+
export { teamsControllerDisassociateDevelopersFromTeam, useTeamsControllerDisassociateDevelopersFromTeamMutation, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
|
|
152
|
+
export { teamsControllerGetDevelopersNotInTeam, useTeamsControllerGetDevelopersNotInTeamQuery, } from './hooks/useTeamsControllerGetDevelopersNotInTeamQuery';
|
|
149
153
|
export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
|
|
150
154
|
export { teamsControllerGetTeamIntegrationFilters, useTeamsControllerGetTeamIntegrationFiltersQuery, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
|
|
151
155
|
export { teamsControllerGetTeamIntegrations, useTeamsControllerGetTeamIntegrationsQuery, } from './hooks/useTeamsControllerGetTeamIntegrationsQuery';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* API error response
|
|
3
|
+
*/
|
|
4
|
+
export interface ApiErrorResponse {
|
|
5
|
+
/**
|
|
6
|
+
* Error code
|
|
7
|
+
* @example "INVALID_REQUEST"
|
|
8
|
+
*/
|
|
9
|
+
code?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Additional error details
|
|
12
|
+
*/
|
|
13
|
+
details?: {
|
|
14
|
+
[key: string]: {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Error message
|
|
20
|
+
* @example "Integration IDs list cannot be empty"
|
|
21
|
+
*/
|
|
22
|
+
message?: string;
|
|
23
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { ApiErrorResponse } from '../schemas/ApiErrorResponse';
|
|
2
|
+
/**
|
|
3
|
+
* API response wrapper
|
|
4
|
+
*/
|
|
5
|
+
export interface ApiResponseWrapper {
|
|
6
|
+
/**
|
|
7
|
+
* Response data
|
|
8
|
+
*/
|
|
9
|
+
data?: {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Error information (present when status is error)
|
|
14
|
+
*/
|
|
15
|
+
error?: ApiErrorResponse;
|
|
16
|
+
/**
|
|
17
|
+
* Response status
|
|
18
|
+
* @example "success"
|
|
19
|
+
*/
|
|
20
|
+
status?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Response timestamp
|
|
23
|
+
*/
|
|
24
|
+
timestamp?: string;
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoMinimalDeveloperDto.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { MinimalDeveloperDto } from '../schemas/MinimalDeveloperDto';
|
|
2
|
+
/**
|
|
3
|
+
* Paginated list response containing records and pagination metadata
|
|
4
|
+
*/
|
|
5
|
+
export interface ListResponseDtoMinimalDeveloperDto {
|
|
6
|
+
/**
|
|
7
|
+
* Current page index (0-based)
|
|
8
|
+
* @format int32
|
|
9
|
+
* @example 0
|
|
10
|
+
*/
|
|
11
|
+
pageIndex?: number;
|
|
12
|
+
/**
|
|
13
|
+
* Number of records per page
|
|
14
|
+
* @format int32
|
|
15
|
+
* @example 50
|
|
16
|
+
*/
|
|
17
|
+
pageSize?: number;
|
|
18
|
+
/**
|
|
19
|
+
* List of records for the current page
|
|
20
|
+
*/
|
|
21
|
+
records?: MinimalDeveloperDto[];
|
|
22
|
+
/**
|
|
23
|
+
* Total number of records available across all pages
|
|
24
|
+
* @format int32
|
|
25
|
+
* @example 100
|
|
26
|
+
*/
|
|
27
|
+
totalCount?: number;
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.3",
|
|
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",
|