@pi-r/oci 0.11.0 → 0.11.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.
Files changed (2) hide show
  1. package/client/index.js +1 -1
  2. package/package.json +7 -7
package/client/index.js CHANGED
@@ -70,7 +70,7 @@ async function copyObject(credential, BucketSource, KeySource, Bucket, Key, opti
70
70
  return aws.copyObject.call(this, credential, BucketSource, KeySource, Bucket, Key, options, "oci");
71
71
  }
72
72
  async function executeQuery(credential, data, sessionKey) {
73
- return (await executeBatchQuery.call(this, credential, [data], sessionKey))[0] || [];
73
+ return (await executeBatchQuery.call(this, credential, [data], sessionKey)).at(0) || [];
74
74
  }
75
75
  async function executeBatchQuery(credential, batch, sessionKey) {
76
76
  const length = batch.length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-r/oci",
3
- "version": "0.11.0",
3
+ "version": "0.11.2",
4
4
  "description": "Oracle (OCI) cloud functions for E-mc.",
5
5
  "main": "client/index.js",
6
6
  "publishConfig": {
@@ -19,12 +19,12 @@
19
19
  "license": "MIT",
20
20
  "homepage": "https://github.com/anpham6/pi-r#readme",
21
21
  "dependencies": {
22
- "@e-mc/cloud": "^0.13.0",
23
- "@e-mc/module": "^0.13.0",
24
- "@e-mc/types": "^0.13.0",
25
- "@pi-r/aws": "^0.11.0",
26
- "@pi-r/oracle": "^0.11.0",
27
- "aws-sdk": "^2.1692.0",
22
+ "@e-mc/cloud": "^0.13.9",
23
+ "@e-mc/module": "^0.13.9",
24
+ "@e-mc/types": "^0.13.9",
25
+ "@pi-r/aws": "^0.11.2",
26
+ "@pi-r/oracle": "^0.11.2",
27
+ "aws-sdk": "^2.1693.0",
28
28
  "oracledb": "^6.10.0"
29
29
  }
30
30
  }