@cumulus/aws-client 11.1.7 → 11.1.8
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.d.ts +1 -1
- package/S3.js +1 -1
- package/SQS.js +1 -1
- package/package.json +6 -6
package/S3.d.ts
CHANGED
|
@@ -418,7 +418,7 @@ export declare const multipartCopyObject: (params: {
|
|
|
418
418
|
destinationBucket: string;
|
|
419
419
|
destinationKey: string;
|
|
420
420
|
sourceObject?: HeadObjectOutput;
|
|
421
|
-
ACL?: ObjectCannedACL;
|
|
421
|
+
ACL?: ObjectCannedACL | string;
|
|
422
422
|
copyTags?: boolean;
|
|
423
423
|
chunkSize?: number;
|
|
424
424
|
}) => Promise<{
|
package/S3.js
CHANGED
package/SQS.js
CHANGED
|
@@ -158,7 +158,7 @@ const receiveSQSMessages = async (queueUrl, options) => {
|
|
|
158
158
|
return ((_a = messages.Messages) !== null && _a !== void 0 ? _a : []);
|
|
159
159
|
};
|
|
160
160
|
exports.receiveSQSMessages = receiveSQSMessages;
|
|
161
|
-
const parseSQSMessageBody = (message) => JSON.parse((0, get_1.default)(message, 'Body', (0, get_1.default)(message, 'body'
|
|
161
|
+
const parseSQSMessageBody = (message) => { var _a; return JSON.parse((_a = (0, get_1.default)(message, 'Body', (0, get_1.default)(message, 'body'))) !== null && _a !== void 0 ? _a : '{}'); };
|
|
162
162
|
exports.parseSQSMessageBody = parseSQSMessageBody;
|
|
163
163
|
/**
|
|
164
164
|
* Delete a given SQS message from a given queue.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cumulus/aws-client",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.8",
|
|
4
4
|
"description": "Utilities for working with AWS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"GIBS",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"NASA"
|
|
9
9
|
],
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": ">=
|
|
11
|
+
"node": ">=14.19.1"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"*.js",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"@aws-sdk/s3-request-presigner": "^3.53.0",
|
|
52
52
|
"@aws-sdk/signature-v4-crt": "^3.53.0",
|
|
53
53
|
"@aws-sdk/types": "^3.53.0",
|
|
54
|
-
"@cumulus/checksum": "11.1.
|
|
55
|
-
"@cumulus/errors": "11.1.
|
|
56
|
-
"@cumulus/logger": "11.1.
|
|
54
|
+
"@cumulus/checksum": "11.1.8",
|
|
55
|
+
"@cumulus/errors": "11.1.8",
|
|
56
|
+
"@cumulus/logger": "11.1.8",
|
|
57
57
|
"aws-sdk": "^2.585.0",
|
|
58
58
|
"jsonpath-plus": "^1.1.0",
|
|
59
59
|
"lodash": "~4.17.21",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@types/uuid": "^8.0.0"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "b5fc71399924b942406a7aaf8934c8feffc18989"
|
|
72
72
|
}
|