@things-factory/integration-base 6.2.113 → 6.2.114

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/integration-base",
3
- "version": "6.2.113",
3
+ "version": "6.2.114",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -26,12 +26,12 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "@apollo/client": "^3.6.9",
29
- "@things-factory/api": "^6.2.112",
30
- "@things-factory/auth-base": "^6.2.112",
29
+ "@things-factory/api": "^6.2.114",
30
+ "@things-factory/auth-base": "^6.2.114",
31
31
  "@things-factory/env": "^6.2.103",
32
- "@things-factory/oauth2-client": "^6.2.112",
33
- "@things-factory/scheduler-client": "^6.2.112",
34
- "@things-factory/shell": "^6.2.103",
32
+ "@things-factory/oauth2-client": "^6.2.114",
33
+ "@things-factory/scheduler-client": "^6.2.114",
34
+ "@things-factory/shell": "^6.2.114",
35
35
  "@things-factory/utils": "^6.2.103",
36
36
  "async-mqtt": "^2.5.0",
37
37
  "chance": "^1.1.11",
@@ -47,5 +47,5 @@
47
47
  "devDependencies": {
48
48
  "@types/cron": "^2.0.1"
49
49
  },
50
- "gitHead": "b47f16297bafe06ec2ac6b91150be4c0d618b1cb"
50
+ "gitHead": "6b471894613abd775ce70b23790f89a2505c825a"
51
51
  }
@@ -50,7 +50,7 @@ export class OracleConnector implements Connector {
50
50
  outFormat: Client.OBJECT
51
51
  })
52
52
  ).rows
53
- connection.close()
53
+ await connection.close()
54
54
  return result
55
55
 
56
56
  },
@@ -63,7 +63,7 @@ export class OracleConnector implements Connector {
63
63
  const result = await connection.execute(procedure, params, {
64
64
  outFormat: Client.OBJECT
65
65
  })
66
- connection.close()
66
+ await connection.close()
67
67
  return result
68
68
  },
69
69
  close: async () => {