@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.
@@ -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
  }
@@ -5,9 +5,6 @@ import { FetcherOptions } from '../../../../fetcher/index.js';
5
5
  export interface GetChecksQueryQueryParams {
6
6
  custom?: boolean;
7
7
  page?: number;
8
- /**
9
- * @default 10
10
- */
11
8
  limit?: number;
12
9
  sort?: string;
13
10
  search_term?: string;
@@ -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;
@@ -7,9 +7,6 @@ export interface GetIntegrationsQueryPathParams {
7
7
  }
8
8
  export interface GetIntegrationsQueryQueryParams {
9
9
  page?: number;
10
- /**
11
- * @default 10
12
- */
13
10
  limit?: number;
14
11
  sort?: string;
15
12
  search_term?: 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 {
@@ -7,6 +7,9 @@ export interface EntityResponse {
7
7
  identifier: string;
8
8
  kind: 'api' | 'component' | 'group' | 'resource' | 'user' | 'workflow';
9
9
  lifecycle?: string;
10
+ metadata?: {
11
+ [key: string]: any;
12
+ };
10
13
  name?: string;
11
14
  orgIdentifier?: string;
12
15
  owner?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-idp-service-client",
3
- "version": "0.58.0",
3
+ "version": "0.59.0",
4
4
  "description": "Harness React idp service client - IDP APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",