@hahnpro/hpc-api 3.4.0 → 3.4.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.
@@ -16,7 +16,7 @@ export declare class FlowDeploymentService extends BaseService {
16
16
  getDeploymentMetrics(id: string, range?: string, interval?: string): Promise<FlowDeploymentMetrics>;
17
17
  getDeploymentLogs(id: string): Promise<FlowLog[]>;
18
18
  resolveReferences(id: string, recursive?: boolean, types?: string[]): Promise<ResourceReference[]>;
19
- updateStatus(id: string, desiredStatus: 'running' | 'stopped' | 'deleted'): Promise<FlowDeployment>;
19
+ updateStatus(id: string, desiredStatus: 'running' | 'stopped' | 'deleted' | 'paused'): Promise<FlowDeployment>;
20
20
  deleteOne(id: string): Promise<FlowDeployment>;
21
21
  waitForRunningStatus(id: string): Promise<void>;
22
22
  addOne(dto: {
@@ -15,7 +15,7 @@ export declare class FlowDeploymentMockService extends BaseService implements Fl
15
15
  subscribeToStatus(id: string, listener: (event: MessageEvent<any>) => void, errorListener?: (event: MessageEvent<any>) => void): Promise<string>;
16
16
  subscribeToLogs(id: string, listener: (event: MessageEvent<any>) => void, errorListener?: (event: MessageEvent) => void): Promise<string>;
17
17
  waitForRunningStatus(id: string): Promise<void>;
18
- updateStatus(id: string, desiredStatus: 'running' | 'stopped' | 'deleted'): Promise<FlowDeployment>;
18
+ updateStatus(id: string, desiredStatus: 'running' | 'stopped' | 'deleted' | 'paused'): Promise<FlowDeployment>;
19
19
  resolveReferences(id: string, recursive?: boolean, types?: string[]): Promise<ResourceReference[]>;
20
20
  getDeploymentStatistics(id: string): Promise<FlowDeploymentStatistic>;
21
21
  getDeploymentMetrics(id: string, range?: string, interval?: string): Promise<FlowDeploymentMetrics>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hahnpro/hpc-api",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "Module for easy access to the HahnPRO API",
5
5
  "license": "MIT",
6
6
  "author": {