@harnessio/react-sei-panorama-service-client 0.21.4 → 0.21.6

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 (28) hide show
  1. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobsCountQuery.d.ts +18 -0
  2. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdJobsCountQuery.js +14 -0
  3. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery.d.ts +18 -0
  4. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery.js +14 -0
  5. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetImProjectsCountQuery.d.ts +18 -0
  6. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetImProjectsCountQuery.js +14 -0
  7. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetImTicketsCountQuery.d.ts +18 -0
  8. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetImTicketsCountQuery.js +14 -0
  9. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmCommitsCountQuery.d.ts +18 -0
  10. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmCommitsCountQuery.js +14 -0
  11. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmPrsCountQuery.d.ts +18 -0
  12. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmPrsCountQuery.js +14 -0
  13. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmReposCountQuery.d.ts +18 -0
  14. package/dist/sei-panorama-service/src/services/hooks/useIntegrationStatsControllerGetScmReposCountQuery.js +14 -0
  15. package/dist/sei-panorama-service/src/services/hooks/useLicenseControllerDownloadLicensesQuery.d.ts +1 -1
  16. package/dist/sei-panorama-service/src/services/index.d.ts +15 -0
  17. package/dist/sei-panorama-service/src/services/index.js +7 -0
  18. package/dist/sei-panorama-service/src/services/schemas/BaBreakdownDto.d.ts +2 -0
  19. package/dist/sei-panorama-service/src/services/schemas/BaDrilldownResponseDto.d.ts +2 -0
  20. package/dist/sei-panorama-service/src/services/schemas/BaFeatureResponseDto.d.ts +2 -0
  21. package/dist/sei-panorama-service/src/services/schemas/BaFeatureSummaryCardDto.d.ts +2 -0
  22. package/dist/sei-panorama-service/src/services/schemas/FilterValuesRequestDto.d.ts +1 -1
  23. package/dist/sei-panorama-service/src/services/schemas/IntegrationStatsDto.d.ts +7 -0
  24. package/dist/sei-panorama-service/src/services/schemas/IntegrationStatsDto.js +4 -0
  25. package/dist/sei-panorama-service/src/services/schemas/LicenseSearchParams.d.ts +2 -8
  26. package/dist/sei-panorama-service/src/services/schemas/ListResponseDtoDeveloperLicenseDto.d.ts +3 -9
  27. package/dist/sei-panorama-service/src/services/schemas/TeamFilter.d.ts +1 -1
  28. package/package.json +1 -1
@@ -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
+ }
@@ -8,7 +8,7 @@ export interface LicenseControllerDownloadLicensesQueryHeaderParams {
8
8
  */
9
9
  Accept?: string;
10
10
  }
11
- export type LicenseControllerDownloadLicensesOkResponse = ResponseWithPagination<DeveloperLicenseDto[]>;
11
+ export type LicenseControllerDownloadLicensesOkResponse = ResponseWithPagination<DeveloperLicenseDto>;
12
12
  export type LicenseControllerDownloadLicensesErrorResponse = unknown;
13
13
  export interface LicenseControllerDownloadLicensesProps extends Omit<FetcherOptions<unknown, unknown, LicenseControllerDownloadLicensesQueryHeaderParams>, 'url'> {
14
14
  }
@@ -135,6 +135,20 @@ export type { IntegrationControllerGetFilterValuesErrorResponse, IntegrationCont
135
135
  export { integrationControllerGetFilterValues, useIntegrationControllerGetFilterValuesQuery, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
136
136
  export type { IntegrationControllerListIntegrationsErrorResponse, IntegrationControllerListIntegrationsOkResponse, IntegrationControllerListIntegrationsProps, IntegrationControllerListIntegrationsQueryQueryParams, } from './hooks/useIntegrationControllerListIntegrationsQuery';
137
137
  export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
138
+ export type { IntegrationStatsControllerGetCicdJobsCountErrorResponse, IntegrationStatsControllerGetCicdJobsCountOkResponse, IntegrationStatsControllerGetCicdJobsCountProps, IntegrationStatsControllerGetCicdJobsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
139
+ export { integrationStatsControllerGetCicdJobsCount, useIntegrationStatsControllerGetCicdJobsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
140
+ export type { IntegrationStatsControllerGetCicdPipelinesCountErrorResponse, IntegrationStatsControllerGetCicdPipelinesCountOkResponse, IntegrationStatsControllerGetCicdPipelinesCountProps, IntegrationStatsControllerGetCicdPipelinesCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
141
+ export { integrationStatsControllerGetCicdPipelinesCount, useIntegrationStatsControllerGetCicdPipelinesCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
142
+ export type { IntegrationStatsControllerGetImProjectsCountErrorResponse, IntegrationStatsControllerGetImProjectsCountOkResponse, IntegrationStatsControllerGetImProjectsCountProps, IntegrationStatsControllerGetImProjectsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
143
+ export { integrationStatsControllerGetImProjectsCount, useIntegrationStatsControllerGetImProjectsCountQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
144
+ export type { IntegrationStatsControllerGetImTicketsCountErrorResponse, IntegrationStatsControllerGetImTicketsCountOkResponse, IntegrationStatsControllerGetImTicketsCountProps, IntegrationStatsControllerGetImTicketsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetImTicketsCountQuery';
145
+ export { integrationStatsControllerGetImTicketsCount, useIntegrationStatsControllerGetImTicketsCountQuery, } from './hooks/useIntegrationStatsControllerGetImTicketsCountQuery';
146
+ export type { IntegrationStatsControllerGetScmCommitsCountErrorResponse, IntegrationStatsControllerGetScmCommitsCountOkResponse, IntegrationStatsControllerGetScmCommitsCountProps, IntegrationStatsControllerGetScmCommitsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetScmCommitsCountQuery';
147
+ export { integrationStatsControllerGetScmCommitsCount, useIntegrationStatsControllerGetScmCommitsCountQuery, } from './hooks/useIntegrationStatsControllerGetScmCommitsCountQuery';
148
+ export type { IntegrationStatsControllerGetScmPrsCountErrorResponse, IntegrationStatsControllerGetScmPrsCountOkResponse, IntegrationStatsControllerGetScmPrsCountProps, IntegrationStatsControllerGetScmPrsCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetScmPrsCountQuery';
149
+ export { integrationStatsControllerGetScmPrsCount, useIntegrationStatsControllerGetScmPrsCountQuery, } from './hooks/useIntegrationStatsControllerGetScmPrsCountQuery';
150
+ export type { IntegrationStatsControllerGetScmReposCountErrorResponse, IntegrationStatsControllerGetScmReposCountOkResponse, IntegrationStatsControllerGetScmReposCountProps, IntegrationStatsControllerGetScmReposCountQueryQueryParams, } from './hooks/useIntegrationStatsControllerGetScmReposCountQuery';
151
+ export { integrationStatsControllerGetScmReposCount, useIntegrationStatsControllerGetScmReposCountQuery, } from './hooks/useIntegrationStatsControllerGetScmReposCountQuery';
138
152
  export type { IssuesControllerGetBuildInfoFromIssuesErrorResponse, IssuesControllerGetBuildInfoFromIssuesOkResponse, IssuesControllerGetBuildInfoFromIssuesProps, IssuesControllerGetBuildInfoFromIssuesQueryQueryParams, IssuesControllerGetBuildInfoFromIssuesRequestBody, } from './hooks/useIssuesControllerGetBuildInfoFromIssuesQuery';
139
153
  export { issuesControllerGetBuildInfoFromIssues, useIssuesControllerGetBuildInfoFromIssuesQuery, } from './hooks/useIssuesControllerGetBuildInfoFromIssuesQuery';
140
154
  export type { IssuesControllerGetCommitsInfoFromPrErrorResponse, IssuesControllerGetCommitsInfoFromPrOkResponse, IssuesControllerGetCommitsInfoFromPrProps, IssuesControllerGetCommitsInfoFromPrQueryQueryParams, IssuesControllerGetCommitsInfoFromPrRequestBody, } from './hooks/useIssuesControllerGetCommitsInfoFromPrQuery';
@@ -325,6 +339,7 @@ export type { Integration } from './schemas/Integration';
325
339
  export type { IntegrationIdsDto } from './schemas/IntegrationIdsDto';
326
340
  export type { IntegrationObject } from './schemas/IntegrationObject';
327
341
  export type { IntegrationResponseDto } from './schemas/IntegrationResponseDto';
342
+ export type { IntegrationStatsDto } from './schemas/IntegrationStatsDto';
328
343
  export type { IntegrationSummary } from './schemas/IntegrationSummary';
329
344
  export type { IntegrationUserInfo } from './schemas/IntegrationUserInfo';
330
345
  export type { IssueRequest } from './schemas/IssueRequest';
@@ -66,6 +66,13 @@ export { efficiencyProfileControllerUpdateProfile, useEfficiencyProfileControlle
66
66
  export { exportControllerExportData, useExportControllerExportDataMutation, } from './hooks/useExportControllerExportDataMutation';
67
67
  export { integrationControllerGetFilterValues, useIntegrationControllerGetFilterValuesQuery, } from './hooks/useIntegrationControllerGetFilterValuesQuery';
68
68
  export { integrationControllerListIntegrations, useIntegrationControllerListIntegrationsQuery, } from './hooks/useIntegrationControllerListIntegrationsQuery';
69
+ export { integrationStatsControllerGetCicdJobsCount, useIntegrationStatsControllerGetCicdJobsCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdJobsCountQuery';
70
+ export { integrationStatsControllerGetCicdPipelinesCount, useIntegrationStatsControllerGetCicdPipelinesCountQuery, } from './hooks/useIntegrationStatsControllerGetCicdPipelinesCountQuery';
71
+ export { integrationStatsControllerGetImProjectsCount, useIntegrationStatsControllerGetImProjectsCountQuery, } from './hooks/useIntegrationStatsControllerGetImProjectsCountQuery';
72
+ export { integrationStatsControllerGetImTicketsCount, useIntegrationStatsControllerGetImTicketsCountQuery, } from './hooks/useIntegrationStatsControllerGetImTicketsCountQuery';
73
+ export { integrationStatsControllerGetScmCommitsCount, useIntegrationStatsControllerGetScmCommitsCountQuery, } from './hooks/useIntegrationStatsControllerGetScmCommitsCountQuery';
74
+ export { integrationStatsControllerGetScmPrsCount, useIntegrationStatsControllerGetScmPrsCountQuery, } from './hooks/useIntegrationStatsControllerGetScmPrsCountQuery';
75
+ export { integrationStatsControllerGetScmReposCount, useIntegrationStatsControllerGetScmReposCountQuery, } from './hooks/useIntegrationStatsControllerGetScmReposCountQuery';
69
76
  export { issuesControllerGetBuildInfoFromIssues, useIssuesControllerGetBuildInfoFromIssuesQuery, } from './hooks/useIssuesControllerGetBuildInfoFromIssuesQuery';
70
77
  export { issuesControllerGetCommitsInfoFromPr, useIssuesControllerGetCommitsInfoFromPrQuery, } from './hooks/useIssuesControllerGetCommitsInfoFromPrQuery';
71
78
  export { issuesControllerGetDeployInfoFromIssues, useIssuesControllerGetDeployInfoFromIssuesQuery, } from './hooks/useIssuesControllerGetDeployInfoFromIssuesQuery';
@@ -1,5 +1,7 @@
1
+ import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
1
2
  import type { BreakdownRecord } from '../schemas/BreakdownRecord';
2
3
  export interface BaBreakdownDto {
4
+ baProfileModel?: BaProfileResponseDto;
3
5
  breakdowns?: BreakdownRecord[];
4
6
  /**
5
7
  * @format date-time
@@ -1,6 +1,8 @@
1
+ import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
1
2
  import type { BaDrilldownItemDto } from '../schemas/BaDrilldownItemDto';
2
3
  import type { PaginationInfo } from '../schemas/PaginationInfo';
3
4
  export interface BaDrilldownResponseDto {
5
+ baProfileModel?: BaProfileResponseDto;
4
6
  data?: BaDrilldownItemDto[];
5
7
  headers?: string[];
6
8
  pagination?: PaginationInfo;
@@ -1,7 +1,9 @@
1
+ import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
1
2
  import type { BaCategoryMetric } from '../schemas/BaCategoryMetric';
2
3
  import type { BaDataPoint } from '../schemas/BaDataPoint';
3
4
  import type { Metric } from '../schemas/Metric';
4
5
  export interface BaFeatureResponseDto {
6
+ baProfileModel?: BaProfileResponseDto;
5
7
  categories?: BaCategoryMetric[];
6
8
  dataPoints?: BaDataPoint[];
7
9
  /**
@@ -1,5 +1,7 @@
1
+ import type { BaProfileResponseDto } from '../schemas/BaProfileResponseDto';
1
2
  import type { BaDataPoint } from '../schemas/BaDataPoint';
2
3
  export interface BaFeatureSummaryCardDto {
4
+ baProfileModel?: BaProfileResponseDto;
3
5
  current?: BaDataPoint;
4
6
  /**
5
7
  * @format date-time
@@ -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' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SCM_LABEL' | 'SCM_PROJECT' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
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' | 'SCM_LABEL' | 'SCM_PROJECT' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
6
6
  /**
7
7
  * Integration ID
8
8
  */
@@ -0,0 +1,7 @@
1
+ export interface IntegrationStatsDto {
2
+ /**
3
+ * @format int64
4
+ */
5
+ count?: number;
6
+ integration_id?: string;
7
+ }
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // This code is autogenerated using @harnessio/oats-cli.
3
+ // Please do not modify this code directly.
4
+ export {};
@@ -1,12 +1,6 @@
1
1
  export interface LicenseSearchParams {
2
- /**
3
- * @format date-time
4
- */
5
- createdAt?: string;
6
2
  emailFilter?: string;
7
3
  nameFilter?: string;
8
- /**
9
- * @format date-time
10
- */
11
- updatedAt?: string;
4
+ sortBy?: 'created_at' | 'email' | 'name' | 'updated_at';
5
+ sortOrder?: 'asc' | 'desc';
12
6
  }
@@ -1,9 +1,5 @@
1
- import type { DeveloperFieldDto } from '../schemas/DeveloperFieldDto';
1
+ import type { DeveloperLicenseDto } from '../schemas/DeveloperLicenseDto';
2
2
  export interface ListResponseDtoDeveloperLicenseDto {
3
- /**
4
- * Information about the fields detected in the file
5
- */
6
- fields?: DeveloperFieldDto[];
7
3
  /**
8
4
  * @format int32
9
5
  */
@@ -12,11 +8,9 @@ export interface ListResponseDtoDeveloperLicenseDto {
12
8
  * @format int32
13
9
  */
14
10
  pageSize?: number;
15
- records?: Array<{
16
- [key: string]: string;
17
- }>;
11
+ records?: DeveloperLicenseDto[];
18
12
  /**
19
13
  * @format int32
20
14
  */
21
- totalRecords?: number;
15
+ totalCount?: number;
22
16
  }
@@ -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' | 'PROJECT' | 'REPO' | 'ROLLBACK' | 'SCM_LABEL' | 'SCM_PROJECT' | 'SERVICE_NAME' | 'SOURCE_BRANCH' | 'SPRINT_NAME' | 'STAGE_NAME' | 'STATUS' | 'TAGS' | 'TARGET_BRANCH' | 'TEAM';
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' | 'SCM_LABEL' | 'SCM_PROJECT' | '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.4",
3
+ "version": "0.21.6",
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",