@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 +1 -1
- package/dist/clusters/functions.d.ts +6 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +729 -725
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/api.ts +1 -0
- package/src/clusters/functions.ts +12 -0
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
|