@harnessio/react-sei-panorama-service-client 0.21.5 → 0.21.7
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/useImFieldsControllerListImFieldsQuery.d.ts +20 -0
- package/dist/sei-panorama-service/src/services/hooks/useImFieldsControllerListImFieldsQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationControllerListIntegrationsQuery.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobsCountQuery.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobsCountQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetImProjectsCountQuery.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetImProjectsCountQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetImTicketsCountQuery.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetImTicketsCountQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmCommitsCountQuery.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmCommitsCountQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmPrsCountQuery.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmPrsCountQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmReposCountQuery.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmReposCountQuery.js +14 -0
- package/dist/sei-panorama-service/src/services/index.d.ts +21 -0
- package/dist/sei-panorama-service/src/services/index.js +8 -0
- package/dist/sei-panorama-service/src/services/schemas/FilterValuesRequestDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/ImFieldDto.d.ts +38 -0
- package/dist/sei-panorama-service/src/services/schemas/ImFieldDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ImFieldsRequestDto.d.ts +23 -0
- package/dist/sei-panorama-service/src/services/schemas/ImFieldsRequestDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ImFieldsResponseDto.d.ts +20 -0
- package/dist/sei-panorama-service/src/services/schemas/ImFieldsResponseDto.js +1 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationResponseDto.d.ts +1 -1
- package/dist/sei-panorama-service/src/services/schemas/IntegrationStatsDto.d.ts +7 -0
- package/dist/sei-panorama-service/src/services/schemas/IntegrationStatsDto.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/PaginationMetadata.d.ts +10 -7
- package/dist/sei-panorama-service/src/services/schemas/ProductivityDataPoint.d.ts +4 -0
- package/dist/sei-panorama-service/src/services/schemas/ProductivityFeatureResponseDto.d.ts +6 -0
- package/dist/sei-panorama-service/src/services/schemas/StatisticalTrendPercent.d.ts +18 -0
- package/dist/sei-panorama-service/src/services/schemas/StatisticalTrendPercent.js +4 -0
- package/dist/sei-panorama-service/src/services/schemas/TeamFilter.d.ts +1 -1
- package/package.json +1 -1
package/dist/sei-panorama-service/src/services/hooks/useImFieldsControllerListImFieldsQuery.d.ts
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
import { UseQueryOptions } from '@tanstack/react-query';
|
2
|
+
import type { ImFieldsResponseDto } from '../schemas/ImFieldsResponseDto';
|
3
|
+
import type { ImFieldsRequestDto } from '../schemas/ImFieldsRequestDto';
|
4
|
+
import type { ResponseWithPagination } from '../helpers';
|
5
|
+
import { FetcherOptions } from '../../../../fetcher/index.js';
|
6
|
+
export interface ImFieldsControllerListImFieldsQueryQueryParams {
|
7
|
+
account: string;
|
8
|
+
}
|
9
|
+
export type ImFieldsControllerListImFieldsRequestBody = ImFieldsRequestDto;
|
10
|
+
export type ImFieldsControllerListImFieldsOkResponse = ResponseWithPagination<ImFieldsResponseDto>;
|
11
|
+
export type ImFieldsControllerListImFieldsErrorResponse = ImFieldsResponseDto;
|
12
|
+
export interface ImFieldsControllerListImFieldsProps extends Omit<FetcherOptions<ImFieldsControllerListImFieldsQueryQueryParams, ImFieldsControllerListImFieldsRequestBody>, 'url'> {
|
13
|
+
queryParams: ImFieldsControllerListImFieldsQueryQueryParams;
|
14
|
+
body: ImFieldsControllerListImFieldsRequestBody;
|
15
|
+
}
|
16
|
+
export declare function imFieldsControllerListImFields(props: ImFieldsControllerListImFieldsProps): Promise<ImFieldsControllerListImFieldsOkResponse>;
|
17
|
+
/**
|
18
|
+
* List IM fields with pagination and filtering
|
19
|
+
*/
|
20
|
+
export declare function useImFieldsControllerListImFieldsQuery(props: ImFieldsControllerListImFieldsProps, options?: Omit<UseQueryOptions<ImFieldsControllerListImFieldsOkResponse, ImFieldsControllerListImFieldsErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<ImFieldsControllerListImFieldsOkResponse, ImFieldsResponseDto>;
|
package/dist/sei-panorama-service/src/services/hooks/useImFieldsControllerListImFieldsQuery.js
ADDED
@@ -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 imFieldsControllerListImFields(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/im_fields/list`, method: 'POST' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* List IM fields with pagination and filtering
|
11
|
+
*/
|
12
|
+
export function useImFieldsControllerListImFieldsQuery(props, options) {
|
13
|
+
return useQuery(['ImFieldsControllerListImFields', props.queryParams, props.body], ({ signal }) => imFieldsControllerListImFields(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
@@ -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 IntegrationStatsControllerGetCicdJobsCountQueryQueryParams {
|
6
|
+
integration_ids: string;
|
7
|
+
account: string;
|
8
|
+
}
|
9
|
+
export type IntegrationStatsControllerGetCicdJobsCountOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
|
10
|
+
export type IntegrationStatsControllerGetCicdJobsCountErrorResponse = IntegrationStatsDto[];
|
11
|
+
export interface IntegrationStatsControllerGetCicdJobsCountProps extends Omit<FetcherOptions<IntegrationStatsControllerGetCicdJobsCountQueryQueryParams, unknown>, 'url'> {
|
12
|
+
queryParams: IntegrationStatsControllerGetCicdJobsCountQueryQueryParams;
|
13
|
+
}
|
14
|
+
export declare function integrationStatsControllerGetCicdJobsCount(props: IntegrationStatsControllerGetCicdJobsCountProps): Promise<IntegrationStatsControllerGetCicdJobsCountOkResponse>;
|
15
|
+
/**
|
16
|
+
* Get CICD job counts
|
17
|
+
*/
|
18
|
+
export declare function useIntegrationStatsControllerGetCicdJobsCountQuery(props: IntegrationStatsControllerGetCicdJobsCountProps, options?: Omit<UseQueryOptions<IntegrationStatsControllerGetCicdJobsCountOkResponse, IntegrationStatsControllerGetCicdJobsCountErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationStatsControllerGetCicdJobsCountOkResponse, IntegrationStatsControllerGetCicdJobsCountErrorResponse>;
|
@@ -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 integrationStatsControllerGetCicdJobsCount(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/integration-stats/cicd/jobs`, method: 'GET' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get CICD job counts
|
11
|
+
*/
|
12
|
+
export function useIntegrationStatsControllerGetCicdJobsCountQuery(props, options) {
|
13
|
+
return useQuery(['IntegrationStatsControllerGetCicdJobsCount', props.queryParams], ({ signal }) => integrationStatsControllerGetCicdJobsCount(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
@@ -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 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>;
|
@@ -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 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
|
+
}
|
@@ -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 IntegrationStatsControllerGetImProjectsCountQueryQueryParams {
|
6
|
+
integration_ids: string;
|
7
|
+
account: string;
|
8
|
+
}
|
9
|
+
export type IntegrationStatsControllerGetImProjectsCountOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
|
10
|
+
export type IntegrationStatsControllerGetImProjectsCountErrorResponse = IntegrationStatsDto[];
|
11
|
+
export interface IntegrationStatsControllerGetImProjectsCountProps extends Omit<FetcherOptions<IntegrationStatsControllerGetImProjectsCountQueryQueryParams, unknown>, 'url'> {
|
12
|
+
queryParams: IntegrationStatsControllerGetImProjectsCountQueryQueryParams;
|
13
|
+
}
|
14
|
+
export declare function integrationStatsControllerGetImProjectsCount(props: IntegrationStatsControllerGetImProjectsCountProps): Promise<IntegrationStatsControllerGetImProjectsCountOkResponse>;
|
15
|
+
/**
|
16
|
+
* Get IM project counts
|
17
|
+
*/
|
18
|
+
export declare function useIntegrationStatsControllerGetImProjectsCountQuery(props: IntegrationStatsControllerGetImProjectsCountProps, options?: Omit<UseQueryOptions<IntegrationStatsControllerGetImProjectsCountOkResponse, IntegrationStatsControllerGetImProjectsCountErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationStatsControllerGetImProjectsCountOkResponse, IntegrationStatsControllerGetImProjectsCountErrorResponse>;
|
@@ -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 integrationStatsControllerGetImProjectsCount(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/integration-stats/im/projects`, method: 'GET' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get IM project counts
|
11
|
+
*/
|
12
|
+
export function useIntegrationStatsControllerGetImProjectsCountQuery(props, options) {
|
13
|
+
return useQuery(['IntegrationStatsControllerGetImProjectsCount', props.queryParams], ({ signal }) => integrationStatsControllerGetImProjectsCount(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
@@ -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 IntegrationStatsControllerGetImTicketsCountQueryQueryParams {
|
6
|
+
integration_ids: string;
|
7
|
+
account: string;
|
8
|
+
}
|
9
|
+
export type IntegrationStatsControllerGetImTicketsCountOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
|
10
|
+
export type IntegrationStatsControllerGetImTicketsCountErrorResponse = IntegrationStatsDto[];
|
11
|
+
export interface IntegrationStatsControllerGetImTicketsCountProps extends Omit<FetcherOptions<IntegrationStatsControllerGetImTicketsCountQueryQueryParams, unknown>, 'url'> {
|
12
|
+
queryParams: IntegrationStatsControllerGetImTicketsCountQueryQueryParams;
|
13
|
+
}
|
14
|
+
export declare function integrationStatsControllerGetImTicketsCount(props: IntegrationStatsControllerGetImTicketsCountProps): Promise<IntegrationStatsControllerGetImTicketsCountOkResponse>;
|
15
|
+
/**
|
16
|
+
* Get IM ticket counts
|
17
|
+
*/
|
18
|
+
export declare function useIntegrationStatsControllerGetImTicketsCountQuery(props: IntegrationStatsControllerGetImTicketsCountProps, options?: Omit<UseQueryOptions<IntegrationStatsControllerGetImTicketsCountOkResponse, IntegrationStatsControllerGetImTicketsCountErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationStatsControllerGetImTicketsCountOkResponse, IntegrationStatsControllerGetImTicketsCountErrorResponse>;
|
@@ -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 integrationStatsControllerGetImTicketsCount(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/integration-stats/im/tickets`, method: 'GET' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get IM ticket counts
|
11
|
+
*/
|
12
|
+
export function useIntegrationStatsControllerGetImTicketsCountQuery(props, options) {
|
13
|
+
return useQuery(['IntegrationStatsControllerGetImTicketsCount', props.queryParams], ({ signal }) => integrationStatsControllerGetImTicketsCount(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
@@ -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 IntegrationStatsControllerGetScmCommitsCountQueryQueryParams {
|
6
|
+
integration_ids: string;
|
7
|
+
account: string;
|
8
|
+
}
|
9
|
+
export type IntegrationStatsControllerGetScmCommitsCountOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
|
10
|
+
export type IntegrationStatsControllerGetScmCommitsCountErrorResponse = IntegrationStatsDto[];
|
11
|
+
export interface IntegrationStatsControllerGetScmCommitsCountProps extends Omit<FetcherOptions<IntegrationStatsControllerGetScmCommitsCountQueryQueryParams, unknown>, 'url'> {
|
12
|
+
queryParams: IntegrationStatsControllerGetScmCommitsCountQueryQueryParams;
|
13
|
+
}
|
14
|
+
export declare function integrationStatsControllerGetScmCommitsCount(props: IntegrationStatsControllerGetScmCommitsCountProps): Promise<IntegrationStatsControllerGetScmCommitsCountOkResponse>;
|
15
|
+
/**
|
16
|
+
* Get SCM commit counts
|
17
|
+
*/
|
18
|
+
export declare function useIntegrationStatsControllerGetScmCommitsCountQuery(props: IntegrationStatsControllerGetScmCommitsCountProps, options?: Omit<UseQueryOptions<IntegrationStatsControllerGetScmCommitsCountOkResponse, IntegrationStatsControllerGetScmCommitsCountErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationStatsControllerGetScmCommitsCountOkResponse, IntegrationStatsControllerGetScmCommitsCountErrorResponse>;
|
@@ -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 integrationStatsControllerGetScmCommitsCount(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/integration-stats/scm/commits`, method: 'GET' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get SCM commit counts
|
11
|
+
*/
|
12
|
+
export function useIntegrationStatsControllerGetScmCommitsCountQuery(props, options) {
|
13
|
+
return useQuery(['IntegrationStatsControllerGetScmCommitsCount', props.queryParams], ({ signal }) => integrationStatsControllerGetScmCommitsCount(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
@@ -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 IntegrationStatsControllerGetScmPrsCountQueryQueryParams {
|
6
|
+
integration_ids: string;
|
7
|
+
account: string;
|
8
|
+
}
|
9
|
+
export type IntegrationStatsControllerGetScmPrsCountOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
|
10
|
+
export type IntegrationStatsControllerGetScmPrsCountErrorResponse = IntegrationStatsDto[];
|
11
|
+
export interface IntegrationStatsControllerGetScmPrsCountProps extends Omit<FetcherOptions<IntegrationStatsControllerGetScmPrsCountQueryQueryParams, unknown>, 'url'> {
|
12
|
+
queryParams: IntegrationStatsControllerGetScmPrsCountQueryQueryParams;
|
13
|
+
}
|
14
|
+
export declare function integrationStatsControllerGetScmPrsCount(props: IntegrationStatsControllerGetScmPrsCountProps): Promise<IntegrationStatsControllerGetScmPrsCountOkResponse>;
|
15
|
+
/**
|
16
|
+
* Get SCM pull request counts
|
17
|
+
*/
|
18
|
+
export declare function useIntegrationStatsControllerGetScmPrsCountQuery(props: IntegrationStatsControllerGetScmPrsCountProps, options?: Omit<UseQueryOptions<IntegrationStatsControllerGetScmPrsCountOkResponse, IntegrationStatsControllerGetScmPrsCountErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationStatsControllerGetScmPrsCountOkResponse, IntegrationStatsControllerGetScmPrsCountErrorResponse>;
|
@@ -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 integrationStatsControllerGetScmPrsCount(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/integration-stats/scm/prs`, method: 'GET' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get SCM pull request counts
|
11
|
+
*/
|
12
|
+
export function useIntegrationStatsControllerGetScmPrsCountQuery(props, options) {
|
13
|
+
return useQuery(['IntegrationStatsControllerGetScmPrsCount', props.queryParams], ({ signal }) => integrationStatsControllerGetScmPrsCount(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
@@ -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 IntegrationStatsControllerGetScmReposCountQueryQueryParams {
|
6
|
+
integration_ids: string;
|
7
|
+
account: string;
|
8
|
+
}
|
9
|
+
export type IntegrationStatsControllerGetScmReposCountOkResponse = ResponseWithPagination<IntegrationStatsDto[]>;
|
10
|
+
export type IntegrationStatsControllerGetScmReposCountErrorResponse = IntegrationStatsDto[];
|
11
|
+
export interface IntegrationStatsControllerGetScmReposCountProps extends Omit<FetcherOptions<IntegrationStatsControllerGetScmReposCountQueryQueryParams, unknown>, 'url'> {
|
12
|
+
queryParams: IntegrationStatsControllerGetScmReposCountQueryQueryParams;
|
13
|
+
}
|
14
|
+
export declare function integrationStatsControllerGetScmReposCount(props: IntegrationStatsControllerGetScmReposCountProps): Promise<IntegrationStatsControllerGetScmReposCountOkResponse>;
|
15
|
+
/**
|
16
|
+
* Get SCM repository counts
|
17
|
+
*/
|
18
|
+
export declare function useIntegrationStatsControllerGetScmReposCountQuery(props: IntegrationStatsControllerGetScmReposCountProps, options?: Omit<UseQueryOptions<IntegrationStatsControllerGetScmReposCountOkResponse, IntegrationStatsControllerGetScmReposCountErrorResponse>, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult<IntegrationStatsControllerGetScmReposCountOkResponse, IntegrationStatsControllerGetScmReposCountErrorResponse>;
|
@@ -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 integrationStatsControllerGetScmReposCount(props) {
|
7
|
+
return fetcher(Object.assign({ url: `/v2/integration-stats/scm/repos`, method: 'GET' }, props));
|
8
|
+
}
|
9
|
+
/**
|
10
|
+
* Get SCM repository counts
|
11
|
+
*/
|
12
|
+
export function useIntegrationStatsControllerGetScmReposCountQuery(props, options) {
|
13
|
+
return useQuery(['IntegrationStatsControllerGetScmReposCount', props.queryParams], ({ signal }) => integrationStatsControllerGetScmReposCount(Object.assign(Object.assign({}, props), { signal })), options);
|
14
|
+
}
|
@@ -131,10 +131,26 @@ export type { EfficiencyProfileControllerUpdateProfileErrorResponse, EfficiencyP
|
|
131
131
|
export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
132
132
|
export type { ExportControllerExportDataErrorResponse, ExportControllerExportDataMutationQueryParams, ExportControllerExportDataOkResponse, ExportControllerExportDataProps, ExportControllerExportDataRequestBody, } from './hooks/useExportControllerExportDataMutation';
|
133
133
|
export { exportControllerExportData, useExportControllerExportDataMutation, } from './hooks/useExportControllerExportDataMutation';
|
134
|
+
export type { ImFieldsControllerListImFieldsErrorResponse, ImFieldsControllerListImFieldsOkResponse, ImFieldsControllerListImFieldsProps, ImFieldsControllerListImFieldsQueryQueryParams, ImFieldsControllerListImFieldsRequestBody, } from './hooks/useImFieldsControllerListImFieldsQuery';
|
135
|
+
export { imFieldsControllerListImFields, useImFieldsControllerListImFieldsQuery, } from './hooks/useImFieldsControllerListImFieldsQuery';
|
134
136
|
export type { IntegrationControllerGetFilterValuesErrorResponse, IntegrationControllerGetFilterValuesOkResponse, IntegrationControllerGetFilterValuesProps, IntegrationControllerGetFilterValuesQueryQueryParams, IntegrationControllerGetFilterValuesRequestBody, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
|
135
137
|
export { integrationControllerGetFilterValues, useIntegrationControllerGetFilterValuesQuery, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
|
136
138
|
export type { IntegrationControllerListIntegrationsErrorResponse, IntegrationControllerListIntegrationsOkResponse, IntegrationControllerListIntegrationsProps, IntegrationControllerListIntegrationsQueryQueryParams, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
137
139
|
export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
140
|
+
export type { IntegrationStatsControllerGetCicdJobsCountErrorResponse, IntegrationStatsControllerGetCicdJobsCountOkResponse, IntegrationStatsControllerGetCicdJobsCountProps, IntegrationStatsControllerGetCicdJobsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
|
141
|
+
export { integrationStatsControllerGetCicdJobsCount, useIntegrationStatsControllerGetCicdJobsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
|
142
|
+
export type { IntegrationStatsControllerGetCicdPipelinesCountErrorResponse, IntegrationStatsControllerGetCicdPipelinesCountOkResponse, IntegrationStatsControllerGetCicdPipelinesCountProps, IntegrationStatsControllerGetCicdPipelinesCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
|
143
|
+
export { integrationStatsControllerGetCicdPipelinesCount, useIntegrationStatsControllerGetCicdPipelinesCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
|
144
|
+
export type { IntegrationStatsControllerGetImProjectsCountErrorResponse, IntegrationStatsControllerGetImProjectsCountOkResponse, IntegrationStatsControllerGetImProjectsCountProps, IntegrationStatsControllerGetImProjectsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
|
145
|
+
export { integrationStatsControllerGetImProjectsCount, useIntegrationStatsControllerGetImProjectsCountQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
|
146
|
+
export type { IntegrationStatsControllerGetImTicketsCountErrorResponse, IntegrationStatsControllerGetImTicketsCountOkResponse, IntegrationStatsControllerGetImTicketsCountProps, IntegrationStatsControllerGetImTicketsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetImTicketsCountQuery';
|
147
|
+
export { integrationStatsControllerGetImTicketsCount, useIntegrationStatsControllerGetImTicketsCountQuery, } from './hooks/useIntegrationStatsControllerGetImTicketsCountQuery';
|
148
|
+
export type { IntegrationStatsControllerGetScmCommitsCountErrorResponse, IntegrationStatsControllerGetScmCommitsCountOkResponse, IntegrationStatsControllerGetScmCommitsCountProps, IntegrationStatsControllerGetScmCommitsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetScmCommitsCountQuery';
|
149
|
+
export { integrationStatsControllerGetScmCommitsCount, useIntegrationStatsControllerGetScmCommitsCountQuery, } from './hooks/useIntegrationStatsControllerGetScmCommitsCountQuery';
|
150
|
+
export type { IntegrationStatsControllerGetScmPrsCountErrorResponse, IntegrationStatsControllerGetScmPrsCountOkResponse, IntegrationStatsControllerGetScmPrsCountProps, IntegrationStatsControllerGetScmPrsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetScmPrsCountQuery';
|
151
|
+
export { integrationStatsControllerGetScmPrsCount, useIntegrationStatsControllerGetScmPrsCountQuery, } from './hooks/useIntegrationStatsControllerGetScmPrsCountQuery';
|
152
|
+
export type { IntegrationStatsControllerGetScmReposCountErrorResponse, IntegrationStatsControllerGetScmReposCountOkResponse, IntegrationStatsControllerGetScmReposCountProps, IntegrationStatsControllerGetScmReposCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetScmReposCountQuery';
|
153
|
+
export { integrationStatsControllerGetScmReposCount, useIntegrationStatsControllerGetScmReposCountQuery, } from './hooks/useIntegrationStatsControllerGetScmReposCountQuery';
|
138
154
|
export type { IssuesControllerGetBuildInfoFromIssuesErrorResponse, IssuesControllerGetBuildInfoFromIssuesOkResponse, IssuesControllerGetBuildInfoFromIssuesProps, IssuesControllerGetBuildInfoFromIssuesQueryQueryParams, IssuesControllerGetBuildInfoFromIssuesRequestBody, } from './hooks/useIssuesControllerGetBuildInfoFromIssuesQuery';
|
139
155
|
export { issuesControllerGetBuildInfoFromIssues, useIssuesControllerGetBuildInfoFromIssuesQuery, } from './hooks/useIssuesControllerGetBuildInfoFromIssuesQuery';
|
140
156
|
export type { IssuesControllerGetCommitsInfoFromPrErrorResponse, IssuesControllerGetCommitsInfoFromPrOkResponse, IssuesControllerGetCommitsInfoFromPrProps, IssuesControllerGetCommitsInfoFromPrQueryQueryParams, IssuesControllerGetCommitsInfoFromPrRequestBody, } from './hooks/useIssuesControllerGetCommitsInfoFromPrQuery';
|
@@ -317,6 +333,9 @@ export type { FeatureDto } from './schemas/FeatureDto';
|
|
317
333
|
export type { FilterValuesRequestDto } from './schemas/FilterValuesRequestDto';
|
318
334
|
export type { GroupByField } from './schemas/GroupByField';
|
319
335
|
export type { GroupedTeamFiltersResponseDto } from './schemas/GroupedTeamFiltersResponseDto';
|
336
|
+
export type { ImFieldDto } from './schemas/ImFieldDto';
|
337
|
+
export type { ImFieldsRequestDto } from './schemas/ImFieldsRequestDto';
|
338
|
+
export type { ImFieldsResponseDto } from './schemas/ImFieldsResponseDto';
|
320
339
|
export type { IndividualDrilldownData } from './schemas/IndividualDrilldownData';
|
321
340
|
export type { IndividualDrilldownDataPoint } from './schemas/IndividualDrilldownDataPoint';
|
322
341
|
export type { IndividualDrilldownDataPointV3 } from './schemas/IndividualDrilldownDataPointV3';
|
@@ -325,6 +344,7 @@ export type { Integration } from './schemas/Integration';
|
|
325
344
|
export type { IntegrationIdsDto } from './schemas/IntegrationIdsDto';
|
326
345
|
export type { IntegrationObject } from './schemas/IntegrationObject';
|
327
346
|
export type { IntegrationResponseDto } from './schemas/IntegrationResponseDto';
|
347
|
+
export type { IntegrationStatsDto } from './schemas/IntegrationStatsDto';
|
328
348
|
export type { IntegrationSummary } from './schemas/IntegrationSummary';
|
329
349
|
export type { IntegrationUserInfo } from './schemas/IntegrationUserInfo';
|
330
350
|
export type { IssueRequest } from './schemas/IssueRequest';
|
@@ -387,6 +407,7 @@ export type { RefIdDto } from './schemas/RefIdDto';
|
|
387
407
|
export type { SectionDto } from './schemas/SectionDto';
|
388
408
|
export type { SortOption } from './schemas/SortOption';
|
389
409
|
export type { Stage } from './schemas/Stage';
|
410
|
+
export type { StatisticalTrendPercent } from './schemas/StatisticalTrendPercent';
|
390
411
|
export type { SummaryCard } from './schemas/SummaryCard';
|
391
412
|
export type { SummaryValue } from './schemas/SummaryValue';
|
392
413
|
export type { SummaryValueChange } from './schemas/SummaryValueChange';
|
@@ -64,8 +64,16 @@ export { efficiencyProfileControllerGetProfile, useEfficiencyProfileControllerGe
|
|
64
64
|
export { efficiencyProfileControllerListProfiles, useEfficiencyProfileControllerListProfilesQuery, } from './hooks/useEfficiencyProfileControllerListProfilesQuery';
|
65
65
|
export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControllerUpdateProfileMutation, } from './hooks/useEfficiencyProfileControllerUpdateProfileMutation';
|
66
66
|
export { exportControllerExportData, useExportControllerExportDataMutation, } from './hooks/useExportControllerExportDataMutation';
|
67
|
+
export { imFieldsControllerListImFields, useImFieldsControllerListImFieldsQuery, } from './hooks/useImFieldsControllerListImFieldsQuery';
|
67
68
|
export { integrationControllerGetFilterValues, useIntegrationControllerGetFilterValuesQuery, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
|
68
69
|
export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
|
70
|
+
export { integrationStatsControllerGetCicdJobsCount, useIntegrationStatsControllerGetCicdJobsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
|
71
|
+
export { integrationStatsControllerGetCicdPipelinesCount, useIntegrationStatsControllerGetCicdPipelinesCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
|
72
|
+
export { integrationStatsControllerGetImProjectsCount, useIntegrationStatsControllerGetImProjectsCountQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
|
73
|
+
export { integrationStatsControllerGetImTicketsCount, useIntegrationStatsControllerGetImTicketsCountQuery, } from './hooks/useIntegrationStatsControllerGetImTicketsCountQuery';
|
74
|
+
export { integrationStatsControllerGetScmCommitsCount, useIntegrationStatsControllerGetScmCommitsCountQuery, } from './hooks/useIntegrationStatsControllerGetScmCommitsCountQuery';
|
75
|
+
export { integrationStatsControllerGetScmPrsCount, useIntegrationStatsControllerGetScmPrsCountQuery, } from './hooks/useIntegrationStatsControllerGetScmPrsCountQuery';
|
76
|
+
export { integrationStatsControllerGetScmReposCount, useIntegrationStatsControllerGetScmReposCountQuery, } from './hooks/useIntegrationStatsControllerGetScmReposCountQuery';
|
69
77
|
export { issuesControllerGetBuildInfoFromIssues, useIssuesControllerGetBuildInfoFromIssuesQuery, } from './hooks/useIssuesControllerGetBuildInfoFromIssuesQuery';
|
70
78
|
export { issuesControllerGetCommitsInfoFromPr, useIssuesControllerGetCommitsInfoFromPrQuery, } from './hooks/useIssuesControllerGetCommitsInfoFromPrQuery';
|
71
79
|
export { issuesControllerGetDeployInfoFromIssues, useIssuesControllerGetDeployInfoFromIssuesQuery, } from './hooks/useIssuesControllerGetDeployInfoFromIssuesQuery';
|
@@ -2,7 +2,7 @@ export interface FilterValuesRequestDto {
|
|
2
2
|
/**
|
3
3
|
* Filter key to get values for
|
4
4
|
*/
|
5
|
-
filterKey: 'CODE_AREA' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | '
|
5
|
+
filterKey: 'CODE_AREA' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
|
6
6
|
/**
|
7
7
|
* Integration ID
|
8
8
|
*/
|
@@ -0,0 +1,38 @@
|
|
1
|
+
/**
|
2
|
+
* Issue Management Field information
|
3
|
+
*/
|
4
|
+
export interface ImFieldDto {
|
5
|
+
/**
|
6
|
+
* Created timestamp
|
7
|
+
* @format int64
|
8
|
+
*/
|
9
|
+
created_at?: number;
|
10
|
+
/**
|
11
|
+
* Whether field is custom
|
12
|
+
*/
|
13
|
+
custom?: boolean;
|
14
|
+
/**
|
15
|
+
* Field items type (for array fields)
|
16
|
+
*/
|
17
|
+
field_items?: string;
|
18
|
+
/**
|
19
|
+
* Field key
|
20
|
+
*/
|
21
|
+
field_key?: string;
|
22
|
+
/**
|
23
|
+
* Field type
|
24
|
+
*/
|
25
|
+
field_type?: string;
|
26
|
+
/**
|
27
|
+
* Field ID
|
28
|
+
*/
|
29
|
+
id?: string;
|
30
|
+
/**
|
31
|
+
* Integration ID
|
32
|
+
*/
|
33
|
+
integration_id?: string;
|
34
|
+
/**
|
35
|
+
* Field name
|
36
|
+
*/
|
37
|
+
name?: string;
|
38
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
/**
|
2
|
+
* Request for fetching IM fields data
|
3
|
+
*/
|
4
|
+
export interface ImFieldsRequestDto {
|
5
|
+
/**
|
6
|
+
* Filter criteria for IM fields
|
7
|
+
*/
|
8
|
+
filter?: {
|
9
|
+
[key: string]: {
|
10
|
+
[key: string]: any;
|
11
|
+
};
|
12
|
+
};
|
13
|
+
/**
|
14
|
+
* Page number (0-based)
|
15
|
+
* @format int32
|
16
|
+
*/
|
17
|
+
page?: number;
|
18
|
+
/**
|
19
|
+
* Page size
|
20
|
+
* @format int32
|
21
|
+
*/
|
22
|
+
page_size?: number;
|
23
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import type { PaginationMetadata } from '../schemas/PaginationMetadata';
|
2
|
+
import type { ImFieldDto } from '../schemas/ImFieldDto';
|
3
|
+
/**
|
4
|
+
* Response containing IM fields data with pagination
|
5
|
+
*/
|
6
|
+
export interface ImFieldsResponseDto {
|
7
|
+
/**
|
8
|
+
* Total count of records
|
9
|
+
* @format int64
|
10
|
+
*/
|
11
|
+
count?: number;
|
12
|
+
/**
|
13
|
+
* Pagination metadata
|
14
|
+
*/
|
15
|
+
get_metadata?: PaginationMetadata;
|
16
|
+
/**
|
17
|
+
* List of IM field records
|
18
|
+
*/
|
19
|
+
records?: ImFieldDto[];
|
20
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -5,7 +5,7 @@ export interface IntegrationResponseDto {
|
|
5
5
|
/**
|
6
6
|
* Application type
|
7
7
|
*/
|
8
|
-
applicationType?: 'ADO_BOARDS' | 'ADO_PIPELINES' | 'ADO_REPOS' | 'BITBUCKET' | 'BITBUCKET_SERVER' | 'CUSTOM' | 'GITHUB' | 'GITLAB' | 'HARNESSCODE' | 'HARNESSNG' | 'HARNESS_CD' | 'HARNESS_CI' | 'JENKINS' | 'JIRA';
|
8
|
+
applicationType?: 'ADO_BOARDS' | 'ADO_PIPELINES' | 'ADO_REPOS' | 'BITBUCKET' | 'BITBUCKET_SERVER' | 'CUSTOM' | 'GITHUB' | 'GITHUB_ACTIONS' | 'GITLAB' | 'HARNESSCODE' | 'HARNESSNG' | 'HARNESS_CD' | 'HARNESS_CI' | 'JENKINS' | 'JIRA';
|
9
9
|
/**
|
10
10
|
* Integration ID
|
11
11
|
* @format int32
|
@@ -1,18 +1,21 @@
|
|
1
1
|
export interface PaginationMetadata {
|
2
2
|
/**
|
3
|
-
*
|
3
|
+
* Whether there is a next page
|
4
4
|
*/
|
5
|
-
|
5
|
+
has_next?: boolean;
|
6
6
|
/**
|
7
|
+
* Current page number (0-based)
|
7
8
|
* @format int32
|
8
9
|
*/
|
9
|
-
|
10
|
+
page?: number;
|
10
11
|
/**
|
11
|
-
*
|
12
|
+
* Page size
|
13
|
+
* @format int32
|
12
14
|
*/
|
13
|
-
|
15
|
+
page_size?: number;
|
14
16
|
/**
|
15
|
-
*
|
17
|
+
* Total count of records
|
18
|
+
* @format int64
|
16
19
|
*/
|
17
|
-
|
20
|
+
total_count?: number;
|
18
21
|
}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import type { ProductivityDataPoint } from '../schemas/ProductivityDataPoint';
|
2
|
+
import type { StatisticalTrendPercent } from '../schemas/StatisticalTrendPercent';
|
2
3
|
export interface ProductivityFeatureResponseDto {
|
3
4
|
currentData?: ProductivityDataPoint;
|
4
5
|
/**
|
@@ -14,4 +15,9 @@ export interface ProductivityFeatureResponseDto {
|
|
14
15
|
* @format date-time
|
15
16
|
*/
|
16
17
|
startDate?: string;
|
18
|
+
statisticalTrendPercent?: StatisticalTrendPercent;
|
19
|
+
/**
|
20
|
+
* @format double
|
21
|
+
*/
|
22
|
+
trendPercent?: number;
|
17
23
|
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
export interface StatisticalTrendPercent {
|
2
|
+
/**
|
3
|
+
* @format double
|
4
|
+
*/
|
5
|
+
meanTrendPercent?: number;
|
6
|
+
/**
|
7
|
+
* @format double
|
8
|
+
*/
|
9
|
+
medianTrendPercent?: number;
|
10
|
+
/**
|
11
|
+
* @format double
|
12
|
+
*/
|
13
|
+
p90TrendPercent?: number;
|
14
|
+
/**
|
15
|
+
* @format double
|
16
|
+
*/
|
17
|
+
p95TrendPercent?: number;
|
18
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
export interface TeamFilter {
|
2
2
|
applicableMetrics?: Array<'BA' | 'CFR' | 'DF' | 'LTTC' | 'MTTR' | 'PRODUCTIVITY'>;
|
3
|
-
filterKey?: 'CODE_AREA' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | '
|
3
|
+
filterKey?: 'CODE_AREA' | 'DEPLOYMENT_TYPE' | 'ENV_ID' | 'INFRA_ID' | 'ISSUE_PRIORITY' | 'ISSUE_STATUS' | 'ISSUE_TYPE' | 'LABEL' | 'PIPELINE_NAME' | 'PIPELINE_STATUS' | 'PRIORITY' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
|
4
4
|
/**
|
5
5
|
* @format int32
|
6
6
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
3
|
-
"version": "0.21.
|
3
|
+
"version": "0.21.7",
|
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",
|