@harnessio/react-idp-service-client 0.103.1 → 0.105.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.
@@ -4,7 +4,7 @@
4
4
  import { useQuery } from '@tanstack/react-query';
5
5
  import { fetcher } from '../../../../custom-idp-fetcher/index.js';
6
6
  export function traverseEntityGraph(props) {
7
- return fetcher(Object.assign({ url: `/v1/graph/traverse`, method: 'GET' }, props));
7
+ return fetcher(Object.assign({ url: `/v1/graph/entity`, method: 'GET' }, props));
8
8
  }
9
9
  /**
10
10
  * Traverse the catalog entity graph starting from a given entity, following relationships up to a specified depth. Returns a graph structure with nodes and edges.
@@ -6,6 +6,10 @@ export interface KindCreateRequest {
6
6
  * Description of the kind.
7
7
  */
8
8
  description: string;
9
+ /**
10
+ * Support grouping for this kind.
11
+ */
12
+ grouping_kind?: boolean;
9
13
  /**
10
14
  * Icon of the kind.
11
15
  */
@@ -4,6 +4,7 @@
4
4
  export interface KindResponseBody {
5
5
  custom?: boolean;
6
6
  description?: string;
7
+ grouping_kind?: boolean;
7
8
  icon?: string;
8
9
  identifier: string;
9
10
  name: string;
@@ -2,6 +2,10 @@
2
2
  * Proxy Host Detail
3
3
  */
4
4
  export interface ProxyHostDetail {
5
+ /**
6
+ * Host-relative path (e.g. /health) used only for the delegate connectivity (capability) check for proxy tasks to this host. When set, the capability check probes this cheap, stable endpoint instead of the real operation URL, so the connectivity whitelist can cache it. When empty, the check falls back to the task URL.
7
+ */
8
+ healthCheckPath?: string;
5
9
  host: string;
6
10
  identifier?: string;
7
11
  pluginId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harnessio/react-idp-service-client",
3
- "version": "0.103.1",
3
+ "version": "0.105.0",
4
4
  "description": "Harness React idp service client - IDP APIs integrated with react hooks",
5
5
  "author": "Harness Inc",
6
6
  "license": "MIT",