Description
Checkboxes for prior research
- I've gone through Developer Guide and API reference
- I've checked AWS Forums and StackOverflow.
- I've searched for previous similar issues and didn't find any solution.
Describe the bug
Here are 2 examples of some issues I am experiencing with types with 3.363.0
I scanned through https://github.com/aws/aws-sdk-js-v3/blob/main/CHANGELOG.md and can't find anything that makes these seem like intentional changes, sorry if this is all a bit vague but maybe someone with more information can ask more pointed questions/add something that helps.
3.362.0 is all good, 3.363.0 has all sorts of issues. The only change that seems relevant to me is #4873
Issues I see with @aws-sdk/s3-request-presigner:
Argument of type 'S3' is not assignable to parameter of type 'Client<any, ServiceInputTypes, MetadataBearer, any>'.
The types of 'middlewareStack.add' are incompatible between these types.
Type '{ (middleware: InitializeMiddleware<ServiceInputTypes, ServiceOutputTypes>, options?: (InitializeHandlerOptions & AbsoluteLocation) | undefined): void; (middleware: SerializeMiddleware<...>, options: SerializeHandlerOptions & AbsoluteLocation): void; (middleware: BuildMiddleware<...>, options: BuildHandlerOptions & ...' is not assignable to type '{ (middleware: InitializeMiddleware<ServiceInputTypes, MetadataBearer>, options?: (InitializeHandlerOptions & AbsoluteLocation) | undefined): void; (middleware: SerializeMiddleware<...>, options: SerializeHandlerOptions & AbsoluteLocation): void; (middleware: BuildMiddleware<...>, options: BuildHandlerOptions & Abso...'.
Types of parameters 'middleware' and 'middleware' are incompatible.
Types of parameters 'next' and 'next' are incompatible.
Type 'InitializeHandler<ServiceInputTypes, ServiceOutputTypes>' is not assignable to type 'InitializeHandler<ServiceInputTypes, MetadataBearer>'.
Type 'ServiceOutputTypes' is not assignable to type 'MetadataBearer'.ts(2345)
Issues I see with @aws-sdk/client-s3:
Property 'Body' does not exist on type 'GetObjectCommandOutput'.ts(2339)
SDK version number
@aws-sdk/s3-request-presigner@3.363.0
Which JavaScript Runtime is this issue in?
Node.js
Details of the browser/Node.js/ReactNative version
node v18.16.0
Reproduction Steps
Code snippets in screenshots are one example
Observed Behavior
Lots of typescript errors and weirdness with 3.363.0
Expected Behavior
Types work correctly like in 3.362.0
Possible Solution
No response
Additional Information/Context
No response