mock-aws-s3-v3 5.0.2 → 5.0.3

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -14,7 +14,7 @@ import { GetObjectCommand } from '@aws-sdk/client-s3';
14
14
 
15
15
  const client = createS3Client('./local-folder'); // of type S3Client
16
16
 
17
- client.send(new PutObjectCommand({
17
+ await client.send(new PutObjectCommand({
18
18
  Bucket: 'test-bucket',
19
19
  Key: 'test-key',
20
20
  Body: 'hello',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mock-aws-s3-v3",
3
- "version": "5.0.2",
4
- "description": "Local in-memory Mock for AWS S3 for unit and local testing for AWS JavaScript SDK v3+.",
3
+ "version": "5.0.3",
4
+ "description": "Local file-based mock for AWS S3 for unit and local testing for AWS JavaScript SDK v3+.",
5
5
  "keywords": [
6
6
  "node",
7
7
  "javascript",