@harnessio/react-sei-panorama-service-client 0.23.1 → 0.23.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation.d.ts +21 -0
  2. package/dist/sei-panorama-service/src/services/hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation.js +14 -0
  3. package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintDeliveryMutation.d.ts → useSprintInsightsControllerGetSprintDeliveryQuery.d.ts} +2 -2
  4. package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintDeliveryMutation.js → useSprintInsightsControllerGetSprintDeliveryQuery.js} +3 -3
  5. package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintDrilldownMutation.d.ts → useSprintInsightsControllerGetSprintDrilldownQuery.d.ts} +2 -2
  6. package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintDrilldownMutation.js → useSprintInsightsControllerGetSprintDrilldownQuery.js} +3 -3
  7. package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintSummaryMutation.d.ts → useSprintInsightsControllerGetSprintSummaryQuery.d.ts} +2 -2
  8. package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerGetSprintSummaryMutation.js → useSprintInsightsControllerGetSprintSummaryQuery.js} +3 -3
  9. package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerSearchSprintListMutation.d.ts → useSprintInsightsControllerSearchSprintListQuery.d.ts} +2 -2
  10. package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerSearchSprintListMutation.js → useSprintInsightsControllerSearchSprintListQuery.js} +3 -3
  11. package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerSearchSprintTicketsMutation.d.ts → useSprintInsightsControllerSearchSprintTicketsQuery.d.ts} +2 -2
  12. package/dist/sei-panorama-service/src/services/hooks/{useSprintInsightsControllerSearchSprintTicketsMutation.js → useSprintInsightsControllerSearchSprintTicketsQuery.js} +3 -3
  13. package/dist/sei-panorama-service/src/services/index.d.ts +15 -10
  14. package/dist/sei-panorama-service/src/services/index.js +6 -5
  15. package/dist/sei-panorama-service/src/services/schemas/ApiErrorResponse.d.ts +23 -0
  16. package/dist/sei-panorama-service/src/services/schemas/ApiErrorResponse.js +4 -0
  17. package/dist/sei-panorama-service/src/services/schemas/ApiResponseWrapper.d.ts +25 -0
  18. package/dist/sei-panorama-service/src/services/schemas/ApiResponseWrapper.js +1 -0
  19. package/dist/sei-panorama-service/src/services/schemas/IntegrationDataStatusRequest.d.ts +9 -0
  20. package/dist/sei-panorama-service/src/services/schemas/IntegrationDataStatusRequest.js +4 -0
  21. 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 { UseMutationOptions } from '@tanstack/react-query';
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 useSprintInsightsControllerGetSprintDeliveryMutation(options?: Omit<UseMutationOptions<SprintInsightsControllerGetSprintDeliveryOkResponse, SprintInsightsControllerGetSprintDeliveryErrorResponse, SprintInsightsControllerGetSprintDeliveryProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<SprintInsightsControllerGetSprintDeliveryOkResponse, ErrorResponse, SprintInsightsControllerGetSprintDeliveryProps, unknown>;
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 { useMutation } from '@tanstack/react-query';
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 useSprintInsightsControllerGetSprintDeliveryMutation(options) {
13
- return useMutation((mutateProps) => sprintInsightsControllerGetSprintDelivery(mutateProps), options);
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 { UseMutationOptions } from '@tanstack/react-query';
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 useSprintInsightsControllerGetSprintDrilldownMutation(options?: Omit<UseMutationOptions<SprintInsightsControllerGetSprintDrilldownOkResponse, SprintInsightsControllerGetSprintDrilldownErrorResponse, SprintInsightsControllerGetSprintDrilldownProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<SprintInsightsControllerGetSprintDrilldownOkResponse, ErrorResponse, SprintInsightsControllerGetSprintDrilldownProps, unknown>;
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 { useMutation } from '@tanstack/react-query';
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 useSprintInsightsControllerGetSprintDrilldownMutation(options) {
13
- return useMutation((mutateProps) => sprintInsightsControllerGetSprintDrilldown(mutateProps), options);
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 { UseMutationOptions } from '@tanstack/react-query';
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 useSprintInsightsControllerGetSprintSummaryMutation(options?: Omit<UseMutationOptions<SprintInsightsControllerGetSprintSummaryOkResponse, SprintInsightsControllerGetSprintSummaryErrorResponse, SprintInsightsControllerGetSprintSummaryProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<SprintInsightsControllerGetSprintSummaryOkResponse, ErrorResponse, SprintInsightsControllerGetSprintSummaryProps, unknown>;
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 { useMutation } from '@tanstack/react-query';
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 useSprintInsightsControllerGetSprintSummaryMutation(options) {
13
- return useMutation((mutateProps) => sprintInsightsControllerGetSprintSummary(mutateProps), options);
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 { UseMutationOptions } from '@tanstack/react-query';
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 useSprintInsightsControllerSearchSprintListMutation(options?: Omit<UseMutationOptions<SprintInsightsControllerSearchSprintListOkResponse, SprintInsightsControllerSearchSprintListErrorResponse, SprintInsightsControllerSearchSprintListProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<SprintInsightsControllerSearchSprintListOkResponse, ErrorResponse, SprintInsightsControllerSearchSprintListProps, unknown>;
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 { useMutation } from '@tanstack/react-query';
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 useSprintInsightsControllerSearchSprintListMutation(options) {
13
- return useMutation((mutateProps) => sprintInsightsControllerSearchSprintList(mutateProps), options);
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 { UseMutationOptions } from '@tanstack/react-query';
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 useSprintInsightsControllerSearchSprintTicketsMutation(options?: Omit<UseMutationOptions<SprintInsightsControllerSearchSprintTicketsOkResponse, SprintInsightsControllerSearchSprintTicketsErrorResponse, SprintInsightsControllerSearchSprintTicketsProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<SprintInsightsControllerSearchSprintTicketsOkResponse, ErrorResponse, SprintInsightsControllerSearchSprintTicketsProps, unknown>;
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 { useMutation } from '@tanstack/react-query';
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 useSprintInsightsControllerSearchSprintTicketsMutation(options) {
13
- return useMutation((mutateProps) => sprintInsightsControllerSearchSprintTickets(mutateProps), options);
12
+ export function useSprintInsightsControllerSearchSprintTicketsQuery(props, options) {
13
+ return useQuery(['SprintInsightsControllerSearchSprintTickets', props.body], ({ signal }) => sprintInsightsControllerSearchSprintTickets(Object.assign(Object.assign({}, props), { signal })), options);
14
14
  }
@@ -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,16 @@ 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/useSprintInsightsControllerGetSprintDeliveryMutation';
289
- export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryMutation, } from './hooks/useSprintInsightsControllerGetSprintDeliveryMutation';
290
- export type { SprintInsightsControllerGetSprintDrilldownErrorResponse, SprintInsightsControllerGetSprintDrilldownOkResponse, SprintInsightsControllerGetSprintDrilldownProps, SprintInsightsControllerGetSprintDrilldownRequestBody, } from './hooks/useSprintInsightsControllerGetSprintDrilldownMutation';
291
- export { sprintInsightsControllerGetSprintDrilldown, useSprintInsightsControllerGetSprintDrilldownMutation, } from './hooks/useSprintInsightsControllerGetSprintDrilldownMutation';
292
- export type { SprintInsightsControllerGetSprintSummaryErrorResponse, SprintInsightsControllerGetSprintSummaryOkResponse, SprintInsightsControllerGetSprintSummaryProps, SprintInsightsControllerGetSprintSummaryRequestBody, } from './hooks/useSprintInsightsControllerGetSprintSummaryMutation';
293
- export { sprintInsightsControllerGetSprintSummary, useSprintInsightsControllerGetSprintSummaryMutation, } from './hooks/useSprintInsightsControllerGetSprintSummaryMutation';
294
- export type { SprintInsightsControllerSearchSprintListErrorResponse, SprintInsightsControllerSearchSprintListOkResponse, SprintInsightsControllerSearchSprintListProps, SprintInsightsControllerSearchSprintListRequestBody, } from './hooks/useSprintInsightsControllerSearchSprintListMutation';
295
- export { sprintInsightsControllerSearchSprintList, useSprintInsightsControllerSearchSprintListMutation, } from './hooks/useSprintInsightsControllerSearchSprintListMutation';
296
- export type { SprintInsightsControllerSearchSprintTicketsErrorResponse, SprintInsightsControllerSearchSprintTicketsOkResponse, SprintInsightsControllerSearchSprintTicketsProps, SprintInsightsControllerSearchSprintTicketsRequestBody, } from './hooks/useSprintInsightsControllerSearchSprintTicketsMutation';
297
- export { sprintInsightsControllerSearchSprintTickets, useSprintInsightsControllerSearchSprintTicketsMutation, } from './hooks/useSprintInsightsControllerSearchSprintTicketsMutation';
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';
298
300
  export type { TeamsControllerGetTeamDevelopersErrorResponse, TeamsControllerGetTeamDevelopersOkResponse, TeamsControllerGetTeamDevelopersProps, TeamsControllerGetTeamDevelopersQueryPathParams, TeamsControllerGetTeamDevelopersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
299
301
  export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
300
302
  export type { TeamsControllerGetTeamIntegrationFiltersErrorResponse, TeamsControllerGetTeamIntegrationFiltersOkResponse, TeamsControllerGetTeamIntegrationFiltersProps, TeamsControllerGetTeamIntegrationFiltersQueryPathParams, TeamsControllerGetTeamIntegrationFiltersQueryQueryParams, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
@@ -317,6 +319,8 @@ export type { TeamsControllerUpdateTeamErrorResponse, TeamsControllerUpdateTeamM
317
319
  export { teamsControllerUpdateTeam, useTeamsControllerUpdateTeamMutation, } from './hooks/useTeamsControllerUpdateTeamMutation';
318
320
  export type { AccessResponseDto } from './schemas/AccessResponseDto';
319
321
  export type { ActivityDataDto } from './schemas/ActivityDataDto';
322
+ export type { ApiErrorResponse } from './schemas/ApiErrorResponse';
323
+ export type { ApiResponseWrapper } from './schemas/ApiResponseWrapper';
320
324
  export type { BaBreakdownDto } from './schemas/BaBreakdownDto';
321
325
  export type { BaCategoryDto } from './schemas/BaCategoryDto';
322
326
  export type { BaCategoryMetric } from './schemas/BaCategoryMetric';
@@ -436,6 +440,7 @@ export type { IndividualDrilldownDataV3 } from './schemas/IndividualDrilldownDat
436
440
  export type { Integration } from './schemas/Integration';
437
441
  export type { IntegrationConfigRequestDto } from './schemas/IntegrationConfigRequestDto';
438
442
  export type { IntegrationConfigResponseDto } from './schemas/IntegrationConfigResponseDto';
443
+ export type { IntegrationDataStatusRequest } from './schemas/IntegrationDataStatusRequest';
439
444
  export type { IntegrationHealthDrillDownDto } from './schemas/IntegrationHealthDrillDownDto';
440
445
  export type { IntegrationHealthStatusDto } from './schemas/IntegrationHealthStatusDto';
441
446
  export type { IntegrationIdsDto } from './schemas/IntegrationIdsDto';
@@ -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,11 @@ 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, useSprintInsightsControllerGetSprintDeliveryMutation, } from './hooks/useSprintInsightsControllerGetSprintDeliveryMutation';
145
- export { sprintInsightsControllerGetSprintDrilldown, useSprintInsightsControllerGetSprintDrilldownMutation, } from './hooks/useSprintInsightsControllerGetSprintDrilldownMutation';
146
- export { sprintInsightsControllerGetSprintSummary, useSprintInsightsControllerGetSprintSummaryMutation, } from './hooks/useSprintInsightsControllerGetSprintSummaryMutation';
147
- export { sprintInsightsControllerSearchSprintList, useSprintInsightsControllerSearchSprintListMutation, } from './hooks/useSprintInsightsControllerSearchSprintListMutation';
148
- export { sprintInsightsControllerSearchSprintTickets, useSprintInsightsControllerSearchSprintTicketsMutation, } from './hooks/useSprintInsightsControllerSearchSprintTicketsMutation';
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';
149
150
  export { teamsControllerGetTeamDevelopers, useTeamsControllerGetTeamDevelopersQuery, } from './hooks/useTeamsControllerGetTeamDevelopersQuery';
150
151
  export { teamsControllerGetTeamIntegrationFilters, useTeamsControllerGetTeamIntegrationFiltersQuery, } from './hooks/useTeamsControllerGetTeamIntegrationFiltersQuery';
151
152
  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,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,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,9 @@
1
+ /**
2
+ * Request containing list of integration IDs
3
+ */
4
+ export interface IntegrationDataStatusRequest {
5
+ /**
6
+ * List of integration IDs to check status for
7
+ */
8
+ integrationIds: string[];
9
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-sei-panorama-service-client",
3
- "version": "0.23.1",
3
+ "version": "0.23.2",
4
4
  "description": "Harness React sei panorama service client - SEI Panorama APIs integrated with react hooks for Panorama project",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",