@cumulus/aws-client 13.3.1 → 13.4.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.d.ts +2 -2
- package/S3.js +1 -1
- package/package.json +5 -5
package/S3.d.ts
CHANGED
|
@@ -135,7 +135,7 @@ export declare const promiseS3Upload: (params: Omit<UploadOptions, 'client'>) =>
|
|
|
135
135
|
* @param {Object} uploadParams
|
|
136
136
|
* @returns {Promise}
|
|
137
137
|
*/
|
|
138
|
-
export declare const streamS3Upload: (uploadStream: Readable, uploadParams: UploadOptions) => Promise<import("@aws-sdk/client-s3").
|
|
138
|
+
export declare const streamS3Upload: (uploadStream: Readable, uploadParams: UploadOptions) => Promise<import("@aws-sdk/client-s3").AbortMultipartUploadCommandOutput | import("@aws-sdk/client-s3").CompleteMultipartUploadCommandOutput>;
|
|
139
139
|
/**
|
|
140
140
|
* Get a readable stream for an S3 object
|
|
141
141
|
*
|
|
@@ -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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cumulus/aws-client",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.4.0",
|
|
4
4
|
"description": "Utilities for working with AWS",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"GIBS",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"@aws-sdk/s3-request-presigner": "^3.58.0",
|
|
53
53
|
"@aws-sdk/signature-v4-crt": "^3.58.0",
|
|
54
54
|
"@aws-sdk/types": "^3.58.0",
|
|
55
|
-
"@cumulus/checksum": "13.
|
|
56
|
-
"@cumulus/errors": "13.
|
|
57
|
-
"@cumulus/logger": "13.
|
|
55
|
+
"@cumulus/checksum": "13.4.0",
|
|
56
|
+
"@cumulus/errors": "13.4.0",
|
|
57
|
+
"@cumulus/logger": "13.4.0",
|
|
58
58
|
"aws-sdk": "^2.585.0",
|
|
59
59
|
"jsonpath-plus": "^1.1.0",
|
|
60
60
|
"lodash": "~4.17.21",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@types/uuid": "^8.0.0"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "cd4377ccf97a1daba19775fb95f9f7fa0f2a29f3"
|
|
73
73
|
}
|