diff --git a/lib/lib-storage/src/types.ts b/lib/lib-storage/src/types.ts index 6f8a794ea158c..61c87af0dc9c3 100644 --- a/lib/lib-storage/src/types.ts +++ b/lib/lib-storage/src/types.ts @@ -1,4 +1,11 @@ -import { PutObjectCommandInput, S3Client, Tag } from "@aws-sdk/client-s3"; +import { + CompleteMultipartUploadCommandInput, + CreateMultipartUploadCommandInput, + PutObjectCommandInput, + S3Client, + Tag, + UploadPartCommandInput, +} from "@aws-sdk/client-s3"; import type { AbortController } from "@smithy/types"; export interface Progress { @@ -52,7 +59,8 @@ export interface Options extends Partial { /** * This is the data that is uploaded. */ - params: PutObjectCommandInput; + params: PutObjectCommandInput & + Partial; /** * A service client.