@pi-r/oci 0.5.1 → 0.5.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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2023 An Pham
1
+ Copyright 2023 Wit Studio
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
4
 
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
- ### @pi-r/oci
1
+ # @pi-r/oci
2
2
 
3
- ### LICENSE
3
+ PEP 402 - Forever Vivy
4
+
5
+ ## LICENSE
4
6
 
5
7
  MIT
package/client/index.js CHANGED
@@ -31,9 +31,6 @@ function createDatabaseClient(credential) {
31
31
  credential.user || (credential.user = credential.username);
32
32
  delete credential.username;
33
33
  }
34
- if ('configDir' in credential || 'driverName' in credential || 'errorUrl' in credential || 'libDir' in credential) {
35
- oracledb.initOracleClient({ configDir: credential.configDir, driverName: credential.driverName, errorUrl: credential.errorUrl, libDir: credential.libDir });
36
- }
37
34
  return oracledb.getConnection(credential);
38
35
  }
39
36
  exports.createDatabaseClient = createDatabaseClient;
@@ -79,7 +76,7 @@ async function executeBatchQuery(credential, batch, sessionKey) {
79
76
  const { service, table, id, query, ignoreCache } = item;
80
77
  if (!table) {
81
78
  closeClient();
82
- throw (0, util_1.formatError)(item, "Missing database table" /* ERR_DB.TABLE */);
79
+ throw (0, util_1.formatError)(item, "Missing database table");
83
80
  }
84
81
  const renewCache = ignoreCache === 0;
85
82
  const getCache = (value) => {
@@ -103,7 +100,7 @@ async function executeBatchQuery(credential, batch, sessionKey) {
103
100
  const db = await (client || (client = await createClient())).getSodaDatabase().openCollection(table);
104
101
  if (!db) {
105
102
  closeClient();
106
- throw (0, util_1.formatError)(item, "Missing database table" /* ERR_DB.TABLE */);
103
+ throw (0, util_1.formatError)(item, "Missing database table");
107
104
  }
108
105
  const row = db.find().key(id);
109
106
  let document = await row.getOne();
@@ -151,7 +148,7 @@ async function executeBatchQuery(credential, batch, sessionKey) {
151
148
  const db = await (client || (client = await createClient())).getSodaDatabase().openCollection(table);
152
149
  if (!db) {
153
150
  closeClient();
154
- throw (0, util_1.formatError)(item, "Missing database table" /* ERR_DB.TABLE */);
151
+ throw (0, util_1.formatError)(item, "Missing database table");
155
152
  }
156
153
  let operation = db.find().filter(query);
157
154
  if (maxRows) {
@@ -165,12 +162,12 @@ async function executeBatchQuery(credential, batch, sessionKey) {
165
162
  result[i] = rows;
166
163
  continue;
167
164
  }
168
- ({ rows } = await (client || (client = await createClient())).execute(query, params || [], { ...options, outFormat: 4002 /* OUT_FORMAT.OBJECT */, maxRows, resultSet: false, autoCommit: true }));
165
+ ({ rows } = await (client || (client = await createClient())).execute(query, params || [], { ...options, outFormat: 4002, maxRows, resultSet: false, autoCommit: true }));
169
166
  }
170
167
  }
171
168
  else {
172
169
  closeClient();
173
- throw (0, util_1.formatError)(item, "Missing database query" /* ERR_DB.QUERY */);
170
+ throw (0, util_1.formatError)(item, "Missing database query");
174
171
  }
175
172
  }
176
173
  result[i] = this.setQueryResult(service, credential, queryString, rows, cacheValue);
package/download/index.js CHANGED
@@ -1,9 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const client_1 = require("../client");
3
+ const client_1 = require("@pi-r/oci");
4
4
  function download(credential, service = 'oci') {
5
5
  (0, client_1.setStorageCredential)(credential);
6
- return require('../../aws/download').call(this, credential, service);
6
+ return require("@pi-r/aws/download").call(this, credential, service);
7
7
  }
8
+ exports.default = download;
8
9
 
9
- module.exports = download;
10
+ if (exports.default) {
11
+ module.exports = exports.default;
12
+ module.exports.default = exports.default;
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-r/oci",
3
- "version": "0.5.1",
3
+ "version": "0.5.3",
4
4
  "description": "Oracle (OCI) cloud functions for E-mc.",
5
5
  "main": "client/index.js",
6
6
  "publishConfig": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "https://github.com/anpham6/pi-r.git",
11
+ "url": "git+https://github.com/anpham6/pi-r.git",
12
12
  "directory": "src/cloud/oci"
13
13
  },
14
14
  "keywords": [
@@ -20,11 +20,11 @@
20
20
  "license": "MIT",
21
21
  "homepage": "https://github.com/anpham6/pi-r#readme",
22
22
  "dependencies": {
23
- "@e-mc/cloud": "^0.7.0",
24
- "@e-mc/module": "^0.7.0",
25
- "@e-mc/types": "^0.7.0",
26
- "@pi-r/aws": "^0.5.0",
27
- "aws-sdk": "^2.1514.0",
28
- "oracledb": "^6.2.0"
23
+ "@e-mc/cloud": "^0.7.2",
24
+ "@e-mc/module": "^0.7.2",
25
+ "@e-mc/types": "^0.7.2",
26
+ "@pi-r/aws": "^0.5.2",
27
+ "aws-sdk": "^2.1570.0",
28
+ "oracledb": "^6.3.0"
29
29
  }
30
30
  }
package/upload/index.js CHANGED
@@ -1,9 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const client_1 = require("../client");
3
+ const client_1 = require("@pi-r/oci");
4
4
  function upload(credential, service = 'oci') {
5
5
  (0, client_1.setStorageCredential)(credential);
6
- return require('../../aws/upload').call(this, credential, service);
6
+ return require("@pi-r/aws/upload").call(this, credential, service);
7
7
  }
8
+ exports.default = upload;
8
9
 
9
- module.exports = upload;
10
+ if (exports.default) {
11
+ module.exports = exports.default;
12
+ module.exports.default = exports.default;
13
+ }