@placeos/ts-client 4.4.1 → 4.4.3

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/api.d.ts CHANGED
@@ -11,7 +11,7 @@ export type { PlaceAuthSourceQueryOptions } from './auth-sources/interfaces';
11
11
  export { AuthType, PlaceMQTTBroker } from './broker/broker';
12
12
  export { addBroker, queryBrokers, removeBroker, showBroker, updateBroker, } from './broker/functions';
13
13
  export { PlaceCluster } from './clusters/cluster';
14
- export { queryClusters, queryProcesses, terminateProcess, } from './clusters/functions';
14
+ export { queryClusters, queryProcesses, showCluster, terminateProcess, } from './clusters/functions';
15
15
  export type { PlaceClusterQueryOptions } from './clusters/interfaces';
16
16
  export { PlaceProcess } from './clusters/process';
17
17
  export { PlaceDomain } from './domains/domain';
@@ -6,6 +6,12 @@ import { PlaceClusterQueryOptions } from './interfaces';
6
6
  * @param query_params Query parameters to add the to request URL
7
7
  */
8
8
  export declare function queryClusters(query_params?: PlaceClusterQueryOptions): import('..').QueryResponse<PlaceCluster>;
9
+ /**
10
+ * Get the details for a specified cluster
11
+ * @param id ID of the cluster to query
12
+ * @param query_params Query parameters to add the to request URL
13
+ */
14
+ export declare function showCluster(id: string, query_params?: PlaceClusterQueryOptions): import('rxjs').Observable<PlaceCluster>;
9
15
  /**
10
16
  * Query the available process for a cluster
11
17
  * @param id ID of the cluster to query