@harnessio/react-idp-service-client 0.58.0 → 0.59.0
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/idp-service/src/services/hooks/useCdEntitiesFetchQuery.d.ts +0 -3
- package/dist/idp-service/src/services/hooks/useGetChecksQuery.d.ts +0 -3
- package/dist/idp-service/src/services/hooks/useGetHarnessEntitiesQuery.d.ts +0 -3
- package/dist/idp-service/src/services/hooks/useGetIntegrationsQuery.d.ts +0 -3
- package/dist/idp-service/src/services/hooks/useGetPluginRequestV2Query.d.ts +0 -3
- package/dist/idp-service/src/services/hooks/useGetWorkflowsForAccountQuery.d.ts +0 -3
- package/dist/idp-service/src/services/schemas/EntityResponse.d.ts +3 -0
- package/package.json +1 -1
|
@@ -5,9 +5,6 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
5
5
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
6
6
|
export interface CdEntitiesFetchQueryQueryParams {
|
|
7
7
|
page?: number;
|
|
8
|
-
/**
|
|
9
|
-
* @default 10
|
|
10
|
-
*/
|
|
11
8
|
limit?: number;
|
|
12
9
|
search_term?: string;
|
|
13
10
|
}
|
|
@@ -4,9 +4,6 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
5
|
export interface GetHarnessEntitiesQueryQueryParams {
|
|
6
6
|
page?: number;
|
|
7
|
-
/**
|
|
8
|
-
* @default 10
|
|
9
|
-
*/
|
|
10
7
|
limit?: number;
|
|
11
8
|
sort?: string;
|
|
12
9
|
order?: string;
|
|
@@ -4,9 +4,6 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
5
|
export interface GetPluginRequestV2QueryQueryParams {
|
|
6
6
|
page?: number;
|
|
7
|
-
/**
|
|
8
|
-
* @default 10
|
|
9
|
-
*/
|
|
10
7
|
limit?: number;
|
|
11
8
|
}
|
|
12
9
|
export interface GetPluginRequestV2QueryHeaderParams {
|
|
@@ -4,9 +4,6 @@ import type { ResponseWithPagination } from '../helpers';
|
|
|
4
4
|
import { FetcherOptions } from '../../../../fetcher/index.js';
|
|
5
5
|
export interface GetWorkflowsForAccountQueryQueryParams {
|
|
6
6
|
page?: number;
|
|
7
|
-
/**
|
|
8
|
-
* @default 10
|
|
9
|
-
*/
|
|
10
7
|
limit?: number;
|
|
11
8
|
}
|
|
12
9
|
export interface GetWorkflowsForAccountQueryHeaderParams {
|