@harnessio/react-idp-service-client 0.95.0 → 0.95.1

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.
@@ -12,6 +12,7 @@ export interface DiscoverEntitiesQueryQueryParams {
12
12
  limit?: number;
13
13
  sort?: string;
14
14
  search_term?: string;
15
+ kinds?: string;
15
16
  }
16
17
  export interface DiscoverEntitiesQueryHeaderParams {
17
18
  'Harness-Account'?: string;
@@ -12,6 +12,7 @@ export interface GetImportedEntitiesQueryQueryParams {
12
12
  limit?: number;
13
13
  sort?: string;
14
14
  search_term?: string;
15
+ kinds?: string;
15
16
  }
16
17
  export interface GetImportedEntitiesQueryHeaderParams {
17
18
  'Harness-Account'?: string;
@@ -439,6 +439,7 @@ export type { DataSourceDataPointsMapResponse } from './schemas/DataSourceDataPo
439
439
  export type { DataSourcesResponse } from './schemas/DataSourcesResponse';
440
440
  export type { DefaultSaveResponse } from './schemas/DefaultSaveResponse';
441
441
  export type { DiscoverEntitiesResponse } from './schemas/DiscoverEntitiesResponse';
442
+ export type { DiscoverEntitiesResponseBody } from './schemas/DiscoverEntitiesResponseBody';
442
443
  export type { EntitiesByRefsRequest } from './schemas/EntitiesByRefsRequest';
443
444
  export type { EntitiesForImport } from './schemas/EntitiesForImport';
444
445
  export type { EntitiesGroups } from './schemas/EntitiesGroups';
@@ -1,2 +1,2 @@
1
- import type { DiscoverEntitiesResponse } from '../schemas/DiscoverEntitiesResponse';
2
- export type DiscoverEntitiesResponseListResponse = DiscoverEntitiesResponse[];
1
+ import type { DiscoverEntitiesResponseBody } from '../schemas/DiscoverEntitiesResponseBody';
2
+ export type DiscoverEntitiesResponseListResponse = DiscoverEntitiesResponseBody;
@@ -5,6 +5,10 @@ export interface DiscoverEntitiesResponse {
5
5
  entity_ref?: string;
6
6
  name?: string;
7
7
  }>;
8
+ merge_suggestions?: Array<{
9
+ entity_ref?: string;
10
+ name?: string;
11
+ }>;
8
12
  register?: {
9
13
  name?: string;
10
14
  };
@@ -0,0 +1,8 @@
1
+ import type { DiscoverEntitiesResponse } from '../schemas/DiscoverEntitiesResponse';
2
+ export interface DiscoverEntitiesResponseBody {
3
+ entities?: DiscoverEntitiesResponse[];
4
+ merge_suggestions?: Array<{
5
+ entity_ref?: string;
6
+ name?: string;
7
+ }>;
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-idp-service-client",
3
- "version": "0.95.0",
3
+ "version": "0.95.1",
4
4
  "description": "Harness React idp service client - IDP APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",