We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39f1713 commit 1f7ccf0Copy full SHA for 1f7ccf0
lib/lib-storage/src/types.ts
@@ -1,4 +1,11 @@
1
-import { PutObjectCommandInput, S3Client, Tag } from "@aws-sdk/client-s3";
+import {
2
+ CompleteMultipartUploadCommandInput,
3
+ CreateMultipartUploadCommandInput,
4
+ PutObjectCommandInput,
5
+ S3Client,
6
+ Tag,
7
+ UploadPartCommandInput,
8
+} from "@aws-sdk/client-s3";
9
import type { AbortController } from "@smithy/types";
10
11
export interface Progress {
@@ -52,7 +59,8 @@ export interface Options extends Partial<Configuration> {
52
59
/**
53
60
* This is the data that is uploaded.
54
61
*/
55
- params: PutObjectCommandInput;
62
+ params: PutObjectCommandInput &
63
+ Partial<CreateMultipartUploadCommandInput & UploadPartCommandInput & CompleteMultipartUploadCommandInput>;
56
64
57
65
58
66
* A service client.
0 commit comments