@hahnpro/hpc-api 3.6.0 → 3.6.2

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.
@@ -31,7 +31,7 @@ class FlowService extends BaseService {
31
31
  return this.httpClient.get(`${this.basePath}/diagram/${diagramId}`);
32
32
  }
33
33
  getDiagramRevisions(id) {
34
- return this.httpClient.get(`${this.basePath}/${id}/revisions`);
34
+ return this.httpClient.get(`${this.basePath}/${id}/diagram/revisions`);
35
35
  }
36
36
  async isDeploymentOnLatestDiagramVersion(depl) {
37
37
  const flowId = typeof depl.flow === 'string' ? depl.flow : depl.flow.id;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hahnpro/hpc-api",
3
- "version": "3.6.0",
3
+ "version": "3.6.2",
4
4
  "description": "Module for easy access to the HahnPRO API",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -24,17 +24,17 @@
24
24
  "access": "public"
25
25
  },
26
26
  "dependencies": {
27
- "axios": "~0.27.2",
27
+ "axios": "~1.1.3",
28
28
  "eventsource": "^2.0.2",
29
29
  "form-data": "^4.0.0",
30
- "jose": "^4.9.1",
30
+ "jose": "^4.11.0",
31
31
  "jwt-decode": "^3.1.2",
32
32
  "p-queue": "^6.6.2",
33
- "ts-mixer": "^6.0.1",
34
- "uuid": "^8.3.2"
33
+ "ts-mixer": "^6.0.2",
34
+ "uuid": "^9.0.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@types/eventsource": "^1.1.9",
37
+ "@types/eventsource": "^1.1.10",
38
38
  "axios-mock-adapter": "^1.21.2"
39
39
  },
40
40
  "engines": {