@cumulus/aws-client 16.0.3-alpha.0 → 16.1.0
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/S3.js +1 -4
- package/package.json +7 -6
- package/nyc.config.js +0 -10
package/S3.js
CHANGED
|
@@ -206,10 +206,7 @@ exports.waitForObjectToExist = waitForObjectToExist;
|
|
|
206
206
|
* promise of the object being put
|
|
207
207
|
* @returns {Promise}
|
|
208
208
|
**/
|
|
209
|
-
const s3PutObject = (params) => (0, services_1.s3)().putObject(
|
|
210
|
-
ACL: 'private',
|
|
211
|
-
...params,
|
|
212
|
-
});
|
|
209
|
+
const s3PutObject = (params) => (0, services_1.s3)().putObject(params);
|
|
213
210
|
exports.s3PutObject = s3PutObject;
|
|
214
211
|
/**
|
|
215
212
|
* Upload a file to S3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cumulus/aws-client",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.1.0",
|
|
4
4
|
"description": "Utilities for working with AWS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"GIBS",
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"prepare": "npm run tsc",
|
|
33
33
|
"tsc": "../../node_modules/.bin/tsc",
|
|
34
34
|
"tsc:listEmittedFiles": "../../node_modules/.bin/tsc --listEmittedFiles",
|
|
35
|
-
"watch-test": "../../node_modules/.bin/tsc-watch --onsuccess 'npm test'"
|
|
35
|
+
"watch-test": "../../node_modules/.bin/tsc-watch --onsuccess 'npm test'",
|
|
36
|
+
"coverage": "python ../../scripts/coverage_handler/coverage.py"
|
|
36
37
|
},
|
|
37
38
|
"ava": {
|
|
38
39
|
"files": [
|
|
@@ -52,9 +53,9 @@
|
|
|
52
53
|
"@aws-sdk/s3-request-presigner": "^3.58.0",
|
|
53
54
|
"@aws-sdk/signature-v4-crt": "^3.58.0",
|
|
54
55
|
"@aws-sdk/types": "^3.58.0",
|
|
55
|
-
"@cumulus/checksum": "16.
|
|
56
|
-
"@cumulus/errors": "16.
|
|
57
|
-
"@cumulus/logger": "16.
|
|
56
|
+
"@cumulus/checksum": "16.1.0",
|
|
57
|
+
"@cumulus/errors": "16.1.0",
|
|
58
|
+
"@cumulus/logger": "16.1.0",
|
|
58
59
|
"aws-sdk": "^2.585.0",
|
|
59
60
|
"jsonpath-plus": "^1.1.0",
|
|
60
61
|
"lodash": "~4.17.21",
|
|
@@ -69,5 +70,5 @@
|
|
|
69
70
|
"devDependencies": {
|
|
70
71
|
"@types/uuid": "^8.0.0"
|
|
71
72
|
},
|
|
72
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "324e02b1396cd5510c9a9c54d01afd5d1c13064e"
|
|
73
74
|
}
|