eip-cloud-services 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/s3.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eip-cloud-services",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Houses a collection of helpers for connecting with Cloud services.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -23,4 +23,4 @@
23
23
  "mysql": "^2.18.1",
24
24
  "redis": "^4.6.7"
25
25
  }
26
- }
26
+ }
package/src/s3.js CHANGED
@@ -326,6 +326,8 @@ exports.move = async ( sourceKey, destinationKey, sourceBucket = config?.s3?.Buc
326
326
  }
327
327
  };
328
328
 
329
+ exports.getClient = S3;
330
+
329
331
  const streamToBuffer = ( stream ) =>
330
332
  new Promise ( ( resolve, reject ) => {
331
333
  const chunks = [];