@harnessio/react-sei-panorama-service-client 0.23.3 → 0.23.4
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/useIntegrationStatsControllerGetCicdJobRunsCountQuery.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobRunsCountQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation.d.ts +20 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation.d.ts +20 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSprintInsightsControllerGetSprintListQuery.d.ts +17 -0
- package/dist/sei-panorama-service/src/services/hooks/useSprintInsightsControllerGetSprintListQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useSprintInsightsControllerSearchSprintTicketsQuery.js +1 -1
- package/dist/sei-panorama-service/src/services/index.d.ts +10 -7
- package/dist/sei-panorama-service/src/services/index.js +4 -2
- package/dist/sei-panorama-service/src/services/schemas/ActivityDataDto.d.ts +8 -0
- package/dist/sei-panorama-service/src/services/schemas/CloudIdentity.d.ts +13 -0
- package/dist/sei-panorama-service/src/services/schemas/ProductivityDataPoint.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureBreakdownResponseDataPoint.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureRequestDto.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureResponseDto.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/schemas/ProductivityV3FeatureBreakdownResponseDataPoint.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/ProductivityV3FeatureRequestDto.d.ts +2 -2
- package/dist/sei-panorama-service/src/services/schemas/SprintDrilldownRequestDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/SprintInfoDto.d.ts +5 -0
- package/dist/sei-panorama-service/src/services/schemas/SprintTicketsResponseDto.d.ts +0 -2
- package/dist/sei-panorama-service/src/services/schemas/SprintWorkBreakdownDto.d.ts +0 -4
- package/dist/sei-panorama-service/src/services/schemas/TeamDeveloperDto.d.ts +44 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamDeveloperSearchParams.d.ts +9 -1
- package/dist/sei-panorama-service/src/services/schemas/TeamDevelopersDto.d.ts +10 -2
- package/package.json +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery.d.ts +0 -18
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery.js +0 -14
- package/dist/sei-panorama-service/src/services/hooks/useSprintInsightsControllerSearchSprintListQuery.d.ts +0 -17
- package/dist/sei-panorama-service/src/services/hooks/useSprintInsightsControllerSearchSprintListQuery.js +0 -14
- package/dist/sei-panorama-service/src/services/schemas/DeveloperInfo.d.ts +0 -17
- package/dist/sei-panorama-service/src/services/schemas/IntegrationUserInfo.d.ts +0 -7
- package/dist/sei-panorama-service/src/services/schemas/SprintTicketsMetadataDto.d.ts +0 -5
- package/dist/sei-panorama-service/src/services/schemas/SprintTicketsMetadataDto.js +0 -1
- /package/dist/sei-panorama-service/src/services/schemas/{IntegrationUserInfo.js → CloudIdentity.js} +0 -0
- /package/dist/sei-panorama-service/src/services/schemas/{DeveloperInfo.js → TeamDeveloperDto.js} +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { IntegrationStatsDto } from '../schemas/IntegrationStatsDto';
|
|
3
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
+
export interface IntegrationStatsControllerGetCicdJobRunsCountQueryQueryParams {
|
|
6
|
+
integration_ids: string;
|
|
7
|
+
account: string;
|
|
8
|
+
}
|
|
9
|
+
export type IntegrationStatsControllerGetCicdJobRunsCountOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
|
|
10
|
+
export type IntegrationStatsControllerGetCicdJobRunsCountErrorResponse = IntegrationStatsDto[];
|
|
11
|
+
export interface IntegrationStatsControllerGetCicdJobRunsCountProps extends Omit<FetcherOptions<IntegrationStatsControllerGetCicdJobRunsCountQueryQueryParams, unknown>, 'url'> {
|
|
12
|
+
queryParams: IntegrationStatsControllerGetCicdJobRunsCountQueryQueryParams;
|
|
13
|
+
}
|
|
14
|
+
export declare function integrationStatsControllerGetCicdJobRunsCount(props: IntegrationStatsControllerGetCicdJobRunsCountProps): Promise<IntegrationStatsControllerGetCicdJobRunsCountOkResponse>;
|
|
15
|
+
/**
|
|
16
|
+
* Get CICD job runs counts
|
|
17
|
+
*/
|
|
18
|
+
export declare function useIntegrationStatsControllerGetCicdJobRunsCountQuery(props: IntegrationStatsControllerGetCicdJobRunsCountProps, options?: Omit<UseQueryOptions<IntegrationStatsControllerGetCicdJobRunsCountOkResponse, IntegrationStatsControllerGetCicdJobRunsCountErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationStatsControllerGetCicdJobRunsCountOkResponse, IntegrationStatsControllerGetCicdJobRunsCountErrorResponse>;
|
|
@@ -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 integrationStatsControllerGetCicdJobRunsCount(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/integration-stats/cicd/job_runs`, method: 'GET' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get CICD job runs counts
|
|
11
|
+
*/
|
|
12
|
+
export function useIntegrationStatsControllerGetCicdJobRunsCountQuery(props, options) {
|
|
13
|
+
return useQuery(['IntegrationStatsControllerGetCicdJobRunsCount', props.queryParams], ({ signal }) => integrationStatsControllerGetCicdJobRunsCount(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { IntegrationStatsDto } from '../schemas/IntegrationStatsDto';
|
|
3
|
+
import type { ScmStatsRequest } from '../schemas/ScmStatsRequest';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutationQueryParams {
|
|
7
|
+
account: string;
|
|
8
|
+
}
|
|
9
|
+
export type IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeRequestBody = ScmStatsRequest;
|
|
10
|
+
export type IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
|
|
11
|
+
export type IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeErrorResponse = IntegrationStatsDto[];
|
|
12
|
+
export interface IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeProps extends Omit<FetcherOptions<IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutationQueryParams, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeRequestBody>, 'url'> {
|
|
13
|
+
queryParams: IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutationQueryParams;
|
|
14
|
+
body: IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeRequestBody;
|
|
15
|
+
}
|
|
16
|
+
export declare function integrationStatsControllerGetCicdJobRunsCountWithDateRange(props: IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeProps): Promise<IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeOkResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* Get CICD job runs counts with optional daily breakdown
|
|
19
|
+
*/
|
|
20
|
+
export declare function useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation(options?: Omit<UseMutationOptions<IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeProps, 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 integrationStatsControllerGetCicdJobRunsCountWithDateRange(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/integration-stats/cicd/job_runs`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get CICD job runs counts with optional daily breakdown
|
|
11
|
+
*/
|
|
12
|
+
export function useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => integrationStatsControllerGetCicdJobRunsCountWithDateRange(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { UseMutationOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { IntegrationStatsDto } from '../schemas/IntegrationStatsDto';
|
|
3
|
+
import type { ScmStatsRequest } from '../schemas/ScmStatsRequest';
|
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
|
+
export interface IntegrationStatsControllerGetCicdJobsCountWithDateRangeMutationQueryParams {
|
|
7
|
+
account: string;
|
|
8
|
+
}
|
|
9
|
+
export type IntegrationStatsControllerGetCicdJobsCountWithDateRangeRequestBody = ScmStatsRequest;
|
|
10
|
+
export type IntegrationStatsControllerGetCicdJobsCountWithDateRangeOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
|
|
11
|
+
export type IntegrationStatsControllerGetCicdJobsCountWithDateRangeErrorResponse = IntegrationStatsDto[];
|
|
12
|
+
export interface IntegrationStatsControllerGetCicdJobsCountWithDateRangeProps extends Omit<FetcherOptions<IntegrationStatsControllerGetCicdJobsCountWithDateRangeMutationQueryParams, IntegrationStatsControllerGetCicdJobsCountWithDateRangeRequestBody>, 'url'> {
|
|
13
|
+
queryParams: IntegrationStatsControllerGetCicdJobsCountWithDateRangeMutationQueryParams;
|
|
14
|
+
body: IntegrationStatsControllerGetCicdJobsCountWithDateRangeRequestBody;
|
|
15
|
+
}
|
|
16
|
+
export declare function integrationStatsControllerGetCicdJobsCountWithDateRange(props: IntegrationStatsControllerGetCicdJobsCountWithDateRangeProps): Promise<IntegrationStatsControllerGetCicdJobsCountWithDateRangeOkResponse>;
|
|
17
|
+
/**
|
|
18
|
+
* Get CICD job counts with optional daily breakdown
|
|
19
|
+
*/
|
|
20
|
+
export declare function useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation(options?: Omit<UseMutationOptions<IntegrationStatsControllerGetCicdJobsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeProps>, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult<IntegrationStatsControllerGetCicdJobsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeProps, 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 integrationStatsControllerGetCicdJobsCountWithDateRange(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/integration-stats/cicd/jobs`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Get CICD job counts with optional daily breakdown
|
|
11
|
+
*/
|
|
12
|
+
export function useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation(options) {
|
|
13
|
+
return useMutation((mutateProps) => integrationStatsControllerGetCicdJobsCountWithDateRange(mutateProps), options);
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
+
import type { SprintListResponseDto } from '../schemas/SprintListResponseDto';
|
|
3
|
+
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
|
+
import type { SprintListRequestDto } from '../schemas/SprintListRequestDto';
|
|
5
|
+
import type { ResponseWithPagination } from '../helpers';
|
|
6
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
+
export type SprintInsightsControllerGetSprintListRequestBody = SprintListRequestDto;
|
|
8
|
+
export type SprintInsightsControllerGetSprintListOkResponse = ResponseWithPagination<SprintListResponseDto>;
|
|
9
|
+
export type SprintInsightsControllerGetSprintListErrorResponse = ErrorResponse;
|
|
10
|
+
export interface SprintInsightsControllerGetSprintListProps extends Omit<FetcherOptions<unknown, SprintInsightsControllerGetSprintListRequestBody>, 'url'> {
|
|
11
|
+
body: SprintInsightsControllerGetSprintListRequestBody;
|
|
12
|
+
}
|
|
13
|
+
export declare function sprintInsightsControllerGetSprintList(props: SprintInsightsControllerGetSprintListProps): Promise<SprintInsightsControllerGetSprintListOkResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* Search completed sprints for dropdown with filters
|
|
16
|
+
*/
|
|
17
|
+
export declare function useSprintInsightsControllerGetSprintListQuery(props: SprintInsightsControllerGetSprintListProps, options?: Omit<UseQueryOptions<SprintInsightsControllerGetSprintListOkResponse, SprintInsightsControllerGetSprintListErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SprintInsightsControllerGetSprintListOkResponse, 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 sprintInsightsControllerGetSprintList(props) {
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/insights/sprints/list`, method: 'POST' }, props));
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Search completed sprints for dropdown with filters
|
|
11
|
+
*/
|
|
12
|
+
export function useSprintInsightsControllerGetSprintListQuery(props, options) {
|
|
13
|
+
return useQuery(['SprintInsightsControllerGetSprintList', props.body], ({ signal }) => sprintInsightsControllerGetSprintList(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
+
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { fetcher } from '../../../../fetcher/index.js';
|
|
6
6
|
export function sprintInsightsControllerSearchSprintTickets(props) {
|
|
7
|
-
return fetcher(Object.assign({ url: `/v2/insights/sprints/tickets
|
|
7
|
+
return fetcher(Object.assign({ url: `/v2/insights/sprints/tickets`, method: 'POST' }, props));
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* Search all tickets for a specific sprint with filters
|
|
@@ -171,10 +171,14 @@ export type { IntegrationControllerListIntegrationsErrorResponse, IntegrationCon
|
|
|
171
171
|
export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
|
172
172
|
export type { IntegrationDataStatusControllerGetIntegrationDataStatusErrorResponse, IntegrationDataStatusControllerGetIntegrationDataStatusMutationQueryParams, IntegrationDataStatusControllerGetIntegrationDataStatusOkResponse, IntegrationDataStatusControllerGetIntegrationDataStatusProps, IntegrationDataStatusControllerGetIntegrationDataStatusRequestBody, } from './hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation';
|
|
173
173
|
export { integrationDataStatusControllerGetIntegrationDataStatus, useIntegrationDataStatusControllerGetIntegrationDataStatusMutation, } from './hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation';
|
|
174
|
+
export type { IntegrationStatsControllerGetCicdJobRunsCountErrorResponse, IntegrationStatsControllerGetCicdJobRunsCountOkResponse, IntegrationStatsControllerGetCicdJobRunsCountProps, IntegrationStatsControllerGetCicdJobRunsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountQuery';
|
|
175
|
+
export { integrationStatsControllerGetCicdJobRunsCount, useIntegrationStatsControllerGetCicdJobRunsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountQuery';
|
|
176
|
+
export type { IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutationQueryParams, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeProps, IntegrationStatsControllerGetCicdJobRunsCountWithDateRangeRequestBody, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation';
|
|
177
|
+
export { integrationStatsControllerGetCicdJobRunsCountWithDateRange, useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation';
|
|
174
178
|
export type { IntegrationStatsControllerGetCicdJobsCountErrorResponse, IntegrationStatsControllerGetCicdJobsCountOkResponse, IntegrationStatsControllerGetCicdJobsCountProps, IntegrationStatsControllerGetCicdJobsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
|
|
175
179
|
export { integrationStatsControllerGetCicdJobsCount, useIntegrationStatsControllerGetCicdJobsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
|
|
176
|
-
export type {
|
|
177
|
-
export {
|
|
180
|
+
export type { IntegrationStatsControllerGetCicdJobsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeMutationQueryParams, IntegrationStatsControllerGetCicdJobsCountWithDateRangeOkResponse, IntegrationStatsControllerGetCicdJobsCountWithDateRangeProps, IntegrationStatsControllerGetCicdJobsCountWithDateRangeRequestBody, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation';
|
|
181
|
+
export { integrationStatsControllerGetCicdJobsCountWithDateRange, useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation';
|
|
178
182
|
export type { IntegrationStatsControllerGetImProjectsCountErrorResponse, IntegrationStatsControllerGetImProjectsCountOkResponse, IntegrationStatsControllerGetImProjectsCountProps, IntegrationStatsControllerGetImProjectsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
|
|
179
183
|
export { integrationStatsControllerGetImProjectsCount, useIntegrationStatsControllerGetImProjectsCountQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
|
|
180
184
|
export type { IntegrationStatsControllerGetImProjectsCountWithDateRangeErrorResponse, IntegrationStatsControllerGetImProjectsCountWithDateRangeOkResponse, IntegrationStatsControllerGetImProjectsCountWithDateRangeProps, IntegrationStatsControllerGetImProjectsCountWithDateRangeQueryQueryParams, IntegrationStatsControllerGetImProjectsCountWithDateRangeRequestBody, } from './hooks/useIntegrationStatsControllerGetImProjectsCountWithDateRangeQuery';
|
|
@@ -291,10 +295,10 @@ export type { SprintInsightsControllerGetSprintDeliveryErrorResponse, SprintInsi
|
|
|
291
295
|
export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryQuery, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
|
|
292
296
|
export type { SprintInsightsControllerGetSprintDrilldownErrorResponse, SprintInsightsControllerGetSprintDrilldownOkResponse, SprintInsightsControllerGetSprintDrilldownProps, SprintInsightsControllerGetSprintDrilldownRequestBody, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
|
|
293
297
|
export { sprintInsightsControllerGetSprintDrilldown, useSprintInsightsControllerGetSprintDrilldownQuery, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
|
|
298
|
+
export type { SprintInsightsControllerGetSprintListErrorResponse, SprintInsightsControllerGetSprintListOkResponse, SprintInsightsControllerGetSprintListProps, SprintInsightsControllerGetSprintListRequestBody, } from './hooks/useSprintInsightsControllerGetSprintListQuery';
|
|
299
|
+
export { sprintInsightsControllerGetSprintList, useSprintInsightsControllerGetSprintListQuery, } from './hooks/useSprintInsightsControllerGetSprintListQuery';
|
|
294
300
|
export type { SprintInsightsControllerGetSprintSummaryErrorResponse, SprintInsightsControllerGetSprintSummaryOkResponse, SprintInsightsControllerGetSprintSummaryProps, SprintInsightsControllerGetSprintSummaryRequestBody, } from './hooks/useSprintInsightsControllerGetSprintSummaryQuery';
|
|
295
301
|
export { sprintInsightsControllerGetSprintSummary, useSprintInsightsControllerGetSprintSummaryQuery, } from './hooks/useSprintInsightsControllerGetSprintSummaryQuery';
|
|
296
|
-
export type { SprintInsightsControllerSearchSprintListErrorResponse, SprintInsightsControllerSearchSprintListOkResponse, SprintInsightsControllerSearchSprintListProps, SprintInsightsControllerSearchSprintListRequestBody, } from './hooks/useSprintInsightsControllerSearchSprintListQuery';
|
|
297
|
-
export { sprintInsightsControllerSearchSprintList, useSprintInsightsControllerSearchSprintListQuery, } from './hooks/useSprintInsightsControllerSearchSprintListQuery';
|
|
298
302
|
export type { SprintInsightsControllerSearchSprintTicketsErrorResponse, SprintInsightsControllerSearchSprintTicketsOkResponse, SprintInsightsControllerSearchSprintTicketsProps, SprintInsightsControllerSearchSprintTicketsRequestBody, } from './hooks/useSprintInsightsControllerSearchSprintTicketsQuery';
|
|
299
303
|
export { sprintInsightsControllerSearchSprintTickets, useSprintInsightsControllerSearchSprintTicketsQuery, } from './hooks/useSprintInsightsControllerSearchSprintTicketsQuery';
|
|
300
304
|
export type { TeamsControllerAssociateDevelopersToTeamErrorResponse, TeamsControllerAssociateDevelopersToTeamMutationPathParams, TeamsControllerAssociateDevelopersToTeamOkResponse, TeamsControllerAssociateDevelopersToTeamProps, TeamsControllerAssociateDevelopersToTeamRequestBody, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
|
|
@@ -353,6 +357,7 @@ export type { BreakdownRecord } from './schemas/BreakdownRecord';
|
|
|
353
357
|
export type { BuildInfo } from './schemas/BuildInfo';
|
|
354
358
|
export type { Category } from './schemas/Category';
|
|
355
359
|
export type { CfrConfigurationDto } from './schemas/CfrConfigurationDto';
|
|
360
|
+
export type { CloudIdentity } from './schemas/CloudIdentity';
|
|
356
361
|
export type { CodeChangeStats } from './schemas/CodeChangeStats';
|
|
357
362
|
export type { CodeChanges } from './schemas/CodeChanges';
|
|
358
363
|
export type { CodingDaysDrilldownResponseDataPointV3 } from './schemas/CodingDaysDrilldownResponseDataPointV3';
|
|
@@ -380,7 +385,6 @@ export type { DeveloperIdentity } from './schemas/DeveloperIdentity';
|
|
|
380
385
|
export type { DeveloperIdentityError } from './schemas/DeveloperIdentityError';
|
|
381
386
|
export type { DeveloperIdentityUpsertFailureResponse } from './schemas/DeveloperIdentityUpsertFailureResponse';
|
|
382
387
|
export type { DeveloperIdentityUpsertResponse } from './schemas/DeveloperIdentityUpsertResponse';
|
|
383
|
-
export type { DeveloperInfo } from './schemas/DeveloperInfo';
|
|
384
388
|
export type { DeveloperLicenseDto } from './schemas/DeveloperLicenseDto';
|
|
385
389
|
export type { DeveloperListResponseDto } from './schemas/DeveloperListResponseDto';
|
|
386
390
|
export type { DeveloperReuploadResponseDto } from './schemas/DeveloperReuploadResponseDto';
|
|
@@ -456,7 +460,6 @@ export type { IntegrationResponseDto } from './schemas/IntegrationResponseDto';
|
|
|
456
460
|
export type { IntegrationStatsDto } from './schemas/IntegrationStatsDto';
|
|
457
461
|
export type { IntegrationSummary } from './schemas/IntegrationSummary';
|
|
458
462
|
export type { IntegrationUser } from './schemas/IntegrationUser';
|
|
459
|
-
export type { IntegrationUserInfo } from './schemas/IntegrationUserInfo';
|
|
460
463
|
export type { IssueRequest } from './schemas/IssueRequest';
|
|
461
464
|
export type { IssuesPipelineExecutionResponse } from './schemas/IssuesPipelineExecutionResponse';
|
|
462
465
|
export type { IssuesPipelineExecutionResponseWrapper } from './schemas/IssuesPipelineExecutionResponseWrapper';
|
|
@@ -562,7 +565,6 @@ export type { SprintSummaryMeticDto } from './schemas/SprintSummaryMeticDto';
|
|
|
562
565
|
export type { SprintSummaryResponseDto } from './schemas/SprintSummaryResponseDto';
|
|
563
566
|
export type { SprintTicketDto } from './schemas/SprintTicketDto';
|
|
564
567
|
export type { SprintTicketEstimatesDto } from './schemas/SprintTicketEstimatesDto';
|
|
565
|
-
export type { SprintTicketsMetadataDto } from './schemas/SprintTicketsMetadataDto';
|
|
566
568
|
export type { SprintTicketsRequestDto } from './schemas/SprintTicketsRequestDto';
|
|
567
569
|
export type { SprintTicketsResponseDto } from './schemas/SprintTicketsResponseDto';
|
|
568
570
|
export type { SprintWorkBreakdownDto } from './schemas/SprintWorkBreakdownDto';
|
|
@@ -570,6 +572,7 @@ export type { Stage } from './schemas/Stage';
|
|
|
570
572
|
export type { SummaryCard } from './schemas/SummaryCard';
|
|
571
573
|
export type { SummaryValue } from './schemas/SummaryValue';
|
|
572
574
|
export type { SummaryValueChange } from './schemas/SummaryValueChange';
|
|
575
|
+
export type { TeamDeveloperDto } from './schemas/TeamDeveloperDto';
|
|
573
576
|
export type { TeamDeveloperSearchParams } from './schemas/TeamDeveloperSearchParams';
|
|
574
577
|
export type { TeamDevelopersDto } from './schemas/TeamDevelopersDto';
|
|
575
578
|
export type { TeamFilter } from './schemas/TeamFilter';
|
|
@@ -84,8 +84,10 @@ export { integrationControllerGetFilterValues, useIntegrationControllerGetFilter
|
|
|
84
84
|
export { integrationControllerListIntegrationConfigs, useIntegrationControllerListIntegrationConfigsQuery, } from './hooks/useIntegrationControllerListIntegrationConfigsQuery';
|
|
85
85
|
export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
|
86
86
|
export { integrationDataStatusControllerGetIntegrationDataStatus, useIntegrationDataStatusControllerGetIntegrationDataStatusMutation, } from './hooks/useIntegrationDataStatusControllerGetIntegrationDataStatusMutation';
|
|
87
|
+
export { integrationStatsControllerGetCicdJobRunsCount, useIntegrationStatsControllerGetCicdJobRunsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountQuery';
|
|
88
|
+
export { integrationStatsControllerGetCicdJobRunsCountWithDateRange, useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation, } from './hooks/useIntegrationStatsControllerGetCicdJobRunsCountWithDateRangeMutation';
|
|
87
89
|
export { integrationStatsControllerGetCicdJobsCount, useIntegrationStatsControllerGetCicdJobsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
|
|
88
|
-
export {
|
|
90
|
+
export { integrationStatsControllerGetCicdJobsCountWithDateRange, useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountWithDateRangeMutation';
|
|
89
91
|
export { integrationStatsControllerGetImProjectsCount, useIntegrationStatsControllerGetImProjectsCountQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
|
|
90
92
|
export { integrationStatsControllerGetImProjectsCountWithDateRange, useIntegrationStatsControllerGetImProjectsCountWithDateRangeQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountWithDateRangeQuery';
|
|
91
93
|
export { integrationStatsControllerGetImTicketsCount, useIntegrationStatsControllerGetImTicketsCountQuery, } from './hooks/useIntegrationStatsControllerGetImTicketsCountQuery';
|
|
@@ -144,8 +146,8 @@ export { scmGaControllerGetBuildInfoFromPr, useScmGaControllerGetBuildInfoFromPr
|
|
|
144
146
|
export { scmGaControllerGetDeployInfoFromPr, useScmGaControllerGetDeployInfoFromPrQuery, } from './hooks/useScmGaControllerGetDeployInfoFromPrQuery';
|
|
145
147
|
export { sprintInsightsControllerGetSprintDelivery, useSprintInsightsControllerGetSprintDeliveryQuery, } from './hooks/useSprintInsightsControllerGetSprintDeliveryQuery';
|
|
146
148
|
export { sprintInsightsControllerGetSprintDrilldown, useSprintInsightsControllerGetSprintDrilldownQuery, } from './hooks/useSprintInsightsControllerGetSprintDrilldownQuery';
|
|
149
|
+
export { sprintInsightsControllerGetSprintList, useSprintInsightsControllerGetSprintListQuery, } from './hooks/useSprintInsightsControllerGetSprintListQuery';
|
|
147
150
|
export { sprintInsightsControllerGetSprintSummary, useSprintInsightsControllerGetSprintSummaryQuery, } from './hooks/useSprintInsightsControllerGetSprintSummaryQuery';
|
|
148
|
-
export { sprintInsightsControllerSearchSprintList, useSprintInsightsControllerSearchSprintListQuery, } from './hooks/useSprintInsightsControllerSearchSprintListQuery';
|
|
149
151
|
export { sprintInsightsControllerSearchSprintTickets, useSprintInsightsControllerSearchSprintTicketsQuery, } from './hooks/useSprintInsightsControllerSearchSprintTicketsQuery';
|
|
150
152
|
export { teamsControllerAssociateDevelopersToTeam, useTeamsControllerAssociateDevelopersToTeamMutation, } from './hooks/useTeamsControllerAssociateDevelopersToTeamMutation';
|
|
151
153
|
export { teamsControllerDisassociateDevelopersFromTeam, useTeamsControllerDisassociateDevelopersFromTeamMutation, } from './hooks/useTeamsControllerDisassociateDevelopersFromTeamMutation';
|
|
@@ -5,7 +5,7 @@ export interface ProductivityDataPoint {
|
|
|
5
5
|
*/
|
|
6
6
|
endDate?: string;
|
|
7
7
|
granularDataPoints?: ProductivityDataPoint[];
|
|
8
|
-
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
8
|
+
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
9
9
|
stacks?: {
|
|
10
10
|
[key: string]: number;
|
|
11
11
|
};
|
|
@@ -9,7 +9,7 @@ export interface ProductivityFeatureBreakdownResponseDataPoint {
|
|
|
9
9
|
* @format date-time
|
|
10
10
|
*/
|
|
11
11
|
endDate?: string;
|
|
12
|
-
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
12
|
+
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
13
13
|
stacks?: {
|
|
14
14
|
[key: string]: number;
|
|
15
15
|
};
|
|
@@ -8,7 +8,7 @@ export interface ProductivityFeatureRequestDto {
|
|
|
8
8
|
* @format date-time
|
|
9
9
|
*/
|
|
10
10
|
endDate?: string;
|
|
11
|
-
featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
|
|
11
|
+
featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODE_REWORK' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
|
|
12
12
|
granularity?: 'MONTHLY' | 'QUARTERLY' | 'WEEKLY';
|
|
13
13
|
/**
|
|
14
14
|
* @format int32
|
|
@@ -20,7 +20,7 @@ export interface ProductivityFeatureRequestDto {
|
|
|
20
20
|
page_size?: number;
|
|
21
21
|
sortBy?: 'AVG_TIME_TO_MERGE' | 'CODING_DAYS' | 'COMMITS' | 'COMMITTED_AT' | 'COMMIT_AUTHOR' | 'CONTRIBUTORS' | 'NUMBER_OF_PRS' | 'NUMER_OF_WORKITEMS' | 'PR_CREATED_AT' | 'PR_CYCLE_TIME_AUTHOR' | 'PR_CYCLE_TIME_CREATED_AT' | 'PR_CYCLE_TIME_MERGED_AT' | 'PR_CYCLE_TIME_PR_NUMBER' | 'PR_CYCLE_TIME_REPOSITORY' | 'PR_CYCLE_TIME_TITLE' | 'PR_CYCLE_TIME_TOTAL_LINE_CHANGES' | 'PR_CYCLE_TOTAL_TIME' | 'PR_MERGED_AT' | 'PR_NUMBER' | 'TOTAL_CODE_CHANGES' | 'TOTAL_LEADTIME' | 'WORKITEM_CLOSED_AT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_TIME_TO_COMPLETE';
|
|
22
22
|
sortByCriteria?: 'ASC' | 'DESC';
|
|
23
|
-
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
23
|
+
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
24
24
|
/**
|
|
25
25
|
* @format date-time
|
|
26
26
|
*/
|
|
@@ -6,11 +6,11 @@ export interface ProductivityFeatureResponseDto {
|
|
|
6
6
|
* @format date-time
|
|
7
7
|
*/
|
|
8
8
|
endDate?: string;
|
|
9
|
-
featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
|
|
9
|
+
featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODE_REWORK' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
|
|
10
10
|
granularity?: 'MONTHLY' | 'QUARTERLY' | 'WEEKLY';
|
|
11
11
|
previousData?: ProductivityDataPoint;
|
|
12
12
|
section?: 'COLLABORATION' | 'OUTPUT' | 'VOLUME';
|
|
13
|
-
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
13
|
+
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
14
14
|
/**
|
|
15
15
|
* @format date-time
|
|
16
16
|
*/
|
|
@@ -8,7 +8,7 @@ export interface ProductivityV3FeatureBreakdownResponseDataPoint {
|
|
|
8
8
|
* @format date-time
|
|
9
9
|
*/
|
|
10
10
|
endDate?: string;
|
|
11
|
-
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
11
|
+
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
12
12
|
stacks?: {
|
|
13
13
|
[key: string]: number;
|
|
14
14
|
};
|
|
@@ -5,7 +5,7 @@ export interface ProductivityV3FeatureRequestDto {
|
|
|
5
5
|
* @format date-time
|
|
6
6
|
*/
|
|
7
7
|
endDate?: string;
|
|
8
|
-
featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
|
|
8
|
+
featureType?: 'AVG_TIME_TO_FIRST_COMMENT' | 'CODE_REWORK' | 'CODING_DAYS' | 'LINES_OF_CODE' | 'NUMBER_OF_COMMENTS_PER_PR' | 'PR_CYCLE_TIME' | 'PR_VELOCITY' | 'WORK_COMPLETED';
|
|
9
9
|
granularity?: 'MONTHLY' | 'QUARTERLY' | 'WEEKLY';
|
|
10
10
|
/**
|
|
11
11
|
* @format int32
|
|
@@ -17,7 +17,7 @@ export interface ProductivityV3FeatureRequestDto {
|
|
|
17
17
|
page_size?: number;
|
|
18
18
|
sortBy?: 'AVG_TIME_TO_MERGE' | 'CODING_DAYS' | 'COMMITS' | 'COMMITTED_AT' | 'COMMIT_AUTHOR' | 'CONTRIBUTORS' | 'NUMBER_OF_PRS' | 'NUMER_OF_WORKITEMS' | 'PR_CREATED_AT' | 'PR_CYCLE_TIME_AUTHOR' | 'PR_CYCLE_TIME_CREATED_AT' | 'PR_CYCLE_TIME_MERGED_AT' | 'PR_CYCLE_TIME_PR_NUMBER' | 'PR_CYCLE_TIME_REPOSITORY' | 'PR_CYCLE_TIME_TITLE' | 'PR_CYCLE_TIME_TOTAL_LINE_CHANGES' | 'PR_CYCLE_TOTAL_TIME' | 'PR_MERGED_AT' | 'PR_NUMBER' | 'TOTAL_CODE_CHANGES' | 'TOTAL_LEADTIME' | 'WORKITEM_CLOSED_AT' | 'WORKITEM_CREATED_AT' | 'WORKITEM_ID' | 'WORKITEM_TIME_TO_COMPLETE';
|
|
19
19
|
sortByCriteria?: 'ASC' | 'DESC';
|
|
20
|
-
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
20
|
+
stackBy?: 'ALL_WORK_ISSUE_CATEGORIES' | 'BUGS_PRIORITY' | 'CODE_AGE' | 'FEATURES_TICKET_SIZE' | 'OTHERS_ISSUE_TYPE' | 'PR_SIZE' | 'PR_STAGES' | 'WORK_TYPE';
|
|
21
21
|
/**
|
|
22
22
|
* @format date-time
|
|
23
23
|
*/
|
|
@@ -11,7 +11,7 @@ export interface SprintDrilldownRequestDto {
|
|
|
11
11
|
dateStart: string;
|
|
12
12
|
granularity?: 'MONTHLY' | 'QUARTERLY' | 'SPRINT' | 'WEEKLY';
|
|
13
13
|
paginationRequest?: PaginationRequest;
|
|
14
|
-
sortBy?: 'END_DATE' | 'SPRINT_ID' | 'SPRINT_NAME' | 'START_DATE';
|
|
14
|
+
sortBy?: 'CHURN_RATE' | 'COMMIT_DELIVERY_PERCENTAGE' | 'CREEP_DELIVERY_PERCENTAGE' | 'DELIVERED_COMMIT' | 'DELIVERED_CREEP' | 'END_DATE' | 'SCOPE_CREEP' | 'SPRINT_COMMIT' | 'SPRINT_ID' | 'SPRINT_NAME' | 'START_DATE' | 'TOTAL_DELIVERY_PERCENTAGE';
|
|
15
15
|
sortOrder?: string;
|
|
16
16
|
sprintIds?: string[];
|
|
17
17
|
teamRefId: string;
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import type { SprintTicketDto } from '../schemas/SprintTicketDto';
|
|
2
|
-
import type { SprintTicketsMetadataDto } from '../schemas/SprintTicketsMetadataDto';
|
|
3
2
|
export interface SprintTicketsResponseDto {
|
|
4
3
|
data?: SprintTicketDto[];
|
|
5
|
-
metadata?: SprintTicketsMetadataDto;
|
|
6
4
|
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { CloudIdentity } from '../schemas/CloudIdentity';
|
|
2
|
+
export interface TeamDeveloperDto {
|
|
3
|
+
/**
|
|
4
|
+
* Developer email
|
|
5
|
+
* @example "john.doe@example.com"
|
|
6
|
+
*/
|
|
7
|
+
email?: string;
|
|
8
|
+
/**
|
|
9
|
+
* List of cloud identities associated with this developer
|
|
10
|
+
*/
|
|
11
|
+
identities?: CloudIdentity[];
|
|
12
|
+
/**
|
|
13
|
+
* Indicates whether this developer was manually associated to the team
|
|
14
|
+
* @example true
|
|
15
|
+
*/
|
|
16
|
+
manual?: boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Developer name
|
|
19
|
+
* @example "John Doe"
|
|
20
|
+
*/
|
|
21
|
+
name?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Developer reference ID
|
|
24
|
+
* @format int32
|
|
25
|
+
* @example 1001
|
|
26
|
+
*/
|
|
27
|
+
refId?: number;
|
|
28
|
+
/**
|
|
29
|
+
* Indicates whether this developer is shared across multiple teams in the org tree
|
|
30
|
+
* @example true
|
|
31
|
+
*/
|
|
32
|
+
shared?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Timestamp when the developer was last associated or updated in the team (epoch seconds)
|
|
35
|
+
* @format int64
|
|
36
|
+
* @example 1699876200
|
|
37
|
+
*/
|
|
38
|
+
updatedAtEpochSec?: number;
|
|
39
|
+
/**
|
|
40
|
+
* Email of the user who last updated the developer association
|
|
41
|
+
* @example "john.doe@example.com"
|
|
42
|
+
*/
|
|
43
|
+
updatedByEmail?: string;
|
|
44
|
+
}
|
|
@@ -3,6 +3,10 @@ export interface TeamDeveloperSearchParams {
|
|
|
3
3
|
* List of developer reference IDs to filter by
|
|
4
4
|
*/
|
|
5
5
|
developerRefIds?: number[];
|
|
6
|
+
/**
|
|
7
|
+
* Filter by identity completeness: true = has all identities, false = missing at least one identity, null = no filter
|
|
8
|
+
*/
|
|
9
|
+
hasIdentities?: boolean;
|
|
6
10
|
/**
|
|
7
11
|
* Field to search in
|
|
8
12
|
*/
|
|
@@ -11,10 +15,14 @@ export interface TeamDeveloperSearchParams {
|
|
|
11
15
|
* Value to search for
|
|
12
16
|
*/
|
|
13
17
|
searchValue?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Filter by shared status: true = shared developers only, false = non-shared developers only, null = all developers
|
|
20
|
+
*/
|
|
21
|
+
shared?: boolean;
|
|
14
22
|
/**
|
|
15
23
|
* Field to sort by
|
|
16
24
|
*/
|
|
17
|
-
sortKey?: 'email' | 'name';
|
|
25
|
+
sortKey?: 'email' | 'manual' | 'name' | 'shared' | 'updated_at' | 'updated_by';
|
|
18
26
|
/**
|
|
19
27
|
* Sort order
|
|
20
28
|
* @default "ASC"
|
|
@@ -1,10 +1,18 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { TeamDeveloperDto } from '../schemas/TeamDeveloperDto';
|
|
2
2
|
import type { PaginationMetadata } from '../schemas/PaginationMetadata';
|
|
3
3
|
export interface TeamDevelopersDto {
|
|
4
|
-
|
|
4
|
+
developers?: TeamDeveloperDto[];
|
|
5
5
|
pagination?: PaginationMetadata;
|
|
6
|
+
/**
|
|
7
|
+
* @format int32
|
|
8
|
+
*/
|
|
9
|
+
sharedDevelopers?: number;
|
|
6
10
|
/**
|
|
7
11
|
* @format int32
|
|
8
12
|
*/
|
|
9
13
|
teamRefId?: number;
|
|
14
|
+
/**
|
|
15
|
+
* @format int32
|
|
16
|
+
*/
|
|
17
|
+
totalDevelopers?: number;
|
|
10
18
|
}
|
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.4",
|
|
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",
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
-
import type { IntegrationStatsDto } from '../schemas/IntegrationStatsDto';
|
|
3
|
-
import type { ResponseWithPagination } from '../helpers';
|
|
4
|
-
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
|
-
export interface IntegrationStatsControllerGetCicdPipelinesCountQueryQueryParams {
|
|
6
|
-
integration_ids: string;
|
|
7
|
-
account: string;
|
|
8
|
-
}
|
|
9
|
-
export type IntegrationStatsControllerGetCicdPipelinesCountOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
|
|
10
|
-
export type IntegrationStatsControllerGetCicdPipelinesCountErrorResponse = IntegrationStatsDto[];
|
|
11
|
-
export interface IntegrationStatsControllerGetCicdPipelinesCountProps extends Omit<FetcherOptions<IntegrationStatsControllerGetCicdPipelinesCountQueryQueryParams, unknown>, 'url'> {
|
|
12
|
-
queryParams: IntegrationStatsControllerGetCicdPipelinesCountQueryQueryParams;
|
|
13
|
-
}
|
|
14
|
-
export declare function integrationStatsControllerGetCicdPipelinesCount(props: IntegrationStatsControllerGetCicdPipelinesCountProps): Promise<IntegrationStatsControllerGetCicdPipelinesCountOkResponse>;
|
|
15
|
-
/**
|
|
16
|
-
* Get CICD job runs counts
|
|
17
|
-
*/
|
|
18
|
-
export declare function useIntegrationStatsControllerGetCicdPipelinesCountQuery(props: IntegrationStatsControllerGetCicdPipelinesCountProps, options?: Omit<UseQueryOptions<IntegrationStatsControllerGetCicdPipelinesCountOkResponse, IntegrationStatsControllerGetCicdPipelinesCountErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationStatsControllerGetCicdPipelinesCountOkResponse, IntegrationStatsControllerGetCicdPipelinesCountErrorResponse>;
|
|
@@ -1,14 +0,0 @@
|
|
|
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 integrationStatsControllerGetCicdPipelinesCount(props) {
|
|
7
|
-
return fetcher(Object.assign({ url: `/v2/integration-stats/cicd/job_runs`, method: 'GET' }, props));
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* Get CICD job runs counts
|
|
11
|
-
*/
|
|
12
|
-
export function useIntegrationStatsControllerGetCicdPipelinesCountQuery(props, options) {
|
|
13
|
-
return useQuery(['IntegrationStatsControllerGetCicdPipelinesCount', props.queryParams], ({ signal }) => integrationStatsControllerGetCicdPipelinesCount(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
-
import type { SprintListResponseDto } from '../schemas/SprintListResponseDto';
|
|
3
|
-
import type { ErrorResponse } from '../schemas/ErrorResponse';
|
|
4
|
-
import type { SprintListRequestDto } from '../schemas/SprintListRequestDto';
|
|
5
|
-
import type { ResponseWithPagination } from '../helpers';
|
|
6
|
-
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
7
|
-
export type SprintInsightsControllerSearchSprintListRequestBody = SprintListRequestDto;
|
|
8
|
-
export type SprintInsightsControllerSearchSprintListOkResponse = ResponseWithPagination<SprintListResponseDto>;
|
|
9
|
-
export type SprintInsightsControllerSearchSprintListErrorResponse = ErrorResponse;
|
|
10
|
-
export interface SprintInsightsControllerSearchSprintListProps extends Omit<FetcherOptions<unknown, SprintInsightsControllerSearchSprintListRequestBody>, 'url'> {
|
|
11
|
-
body: SprintInsightsControllerSearchSprintListRequestBody;
|
|
12
|
-
}
|
|
13
|
-
export declare function sprintInsightsControllerSearchSprintList(props: SprintInsightsControllerSearchSprintListProps): Promise<SprintInsightsControllerSearchSprintListOkResponse>;
|
|
14
|
-
/**
|
|
15
|
-
* Search completed sprints for dropdown with filters
|
|
16
|
-
*/
|
|
17
|
-
export declare function useSprintInsightsControllerSearchSprintListQuery(props: SprintInsightsControllerSearchSprintListProps, options?: Omit<UseQueryOptions<SprintInsightsControllerSearchSprintListOkResponse, SprintInsightsControllerSearchSprintListErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<SprintInsightsControllerSearchSprintListOkResponse, ErrorResponse>;
|
|
@@ -1,14 +0,0 @@
|
|
|
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 sprintInsightsControllerSearchSprintList(props) {
|
|
7
|
-
return fetcher(Object.assign({ url: `/v2/insights/sprints/list/search`, method: 'POST' }, props));
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* Search completed sprints for dropdown with filters
|
|
11
|
-
*/
|
|
12
|
-
export function useSprintInsightsControllerSearchSprintListQuery(props, options) {
|
|
13
|
-
return useQuery(['SprintInsightsControllerSearchSprintList', props.body], ({ signal }) => sprintInsightsControllerSearchSprintList(Object.assign(Object.assign({}, props), { signal })), options);
|
|
14
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { IntegrationUserInfo } from '../schemas/IntegrationUserInfo';
|
|
2
|
-
export interface DeveloperInfo {
|
|
3
|
-
attributes?: {
|
|
4
|
-
[key: string]: string;
|
|
5
|
-
};
|
|
6
|
-
/**
|
|
7
|
-
* @format int32
|
|
8
|
-
*/
|
|
9
|
-
developerId?: number;
|
|
10
|
-
email?: string;
|
|
11
|
-
integrationUsers?: IntegrationUserInfo[];
|
|
12
|
-
name?: string;
|
|
13
|
-
/**
|
|
14
|
-
* @format int32
|
|
15
|
-
*/
|
|
16
|
-
refId?: number;
|
|
17
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
/package/dist/sei-panorama-service/src/services/schemas/{IntegrationUserInfo.js → CloudIdentity.js}
RENAMED
|
File without changes
|
/package/dist/sei-panorama-service/src/services/schemas/{DeveloperInfo.js → TeamDeveloperDto.js}
RENAMED
|
File without changes
|