New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@aws-sdk/client-s3

Package Overview
Dependencies
Maintainers
5
Versions
496
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/client-s3 - npm Package Compare versions

Comparing version 3.743.0 to 3.744.0

26

dist-types/commands/CreateBucketCommand.d.ts

@@ -235,7 +235,10 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To create a bucket
* @example To create a bucket in a specific region
* ```javascript
* // The following example creates a bucket.
* // The following example creates a bucket. The request specifies an AWS region where to create the bucket.
* const input = {
* "Bucket": "examplebucket"
* "Bucket": "examplebucket",
* "CreateBucketConfiguration": {
* "LocationConstraint": "eu-west-1"
* }
* };

@@ -246,16 +249,13 @@ * const command = new CreateBucketCommand(input);

* {
* "Location": "/examplebucket"
* "Location": "http://examplebucket.<Region>.s3.amazonaws.com/"
* }
* *\/
* // example id: to-create-a-bucket--1472851826060
* // example id: to-create-a-bucket-in-a-specific-region-1483399072992
* ```
*
* @example To create a bucket in a specific region
* @example To create a bucket
* ```javascript
* // The following example creates a bucket. The request specifies an AWS region where to create the bucket.
* // The following example creates a bucket.
* const input = {
* "Bucket": "examplebucket",
* "CreateBucketConfiguration": {
* "LocationConstraint": "eu-west-1"
* }
* "Bucket": "examplebucket"
* };

@@ -266,6 +266,6 @@ * const command = new CreateBucketCommand(input);

* {
* "Location": "http://examplebucket.<Region>.s3.amazonaws.com/"
* "Location": "/examplebucket"
* }
* *\/
* // example id: to-create-a-bucket-in-a-specific-region-1483399072992
* // example id: to-create-a-bucket--1472851826060
* ```

@@ -272,0 +272,0 @@ *

@@ -168,24 +168,24 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To delete an object (from a non-versioned bucket)
* @example To delete an object
* ```javascript
* // The following example deletes an object from a non-versioned bucket.
* // The following example deletes an object from an S3 bucket.
* const input = {
* "Bucket": "ExampleBucket",
* "Key": "HappyFace.jpg"
* "Bucket": "examplebucket",
* "Key": "objectkey.jpg"
* };
* const command = new DeleteObjectCommand(input);
* await client.send(command);
* // example id: to-delete-an-object-from-a-non-versioned-bucket-1481588533089
* // example id: to-delete-an-object-1472850136595
* ```
*
* @example To delete an object
* @example To delete an object (from a non-versioned bucket)
* ```javascript
* // The following example deletes an object from an S3 bucket.
* // The following example deletes an object from a non-versioned bucket.
* const input = {
* "Bucket": "examplebucket",
* "Key": "objectkey.jpg"
* "Bucket": "ExampleBucket",
* "Key": "HappyFace.jpg"
* };
* const command = new DeleteObjectCommand(input);
* await client.send(command);
* // example id: to-delete-an-object-1472850136595
* // example id: to-delete-an-object-from-a-non-versioned-bucket-1481588533089
* ```

@@ -192,0 +192,0 @@ *

@@ -227,5 +227,5 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To delete multiple objects from a versioned bucket
* @example To delete multiple object versions from a versioned bucket
* ```javascript
* // The following example deletes objects from a bucket. The bucket is versioned, and the request does not specify the object version to delete. In this case, all versions remain in the bucket and S3 adds a delete marker.
* // The following example deletes objects from a bucket. The request specifies object versions. S3 deletes specific object versions and returns the key and versions of deleted objects in the response.
* const input = {

@@ -236,6 +236,8 @@ * "Bucket": "examplebucket",

* {
* "Key": "objectkey1"
* "Key": "HappyFace.jpg",
* "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
* },
* {
* "Key": "objectkey2"
* "Key": "HappyFace.jpg",
* "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
* }

@@ -252,10 +254,8 @@ * ],

* {
* "DeleteMarker": "true",
* "DeleteMarkerVersionId": "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F",
* "Key": "objectkey1"
* "Key": "HappyFace.jpg",
* "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
* },
* {
* "DeleteMarker": "true",
* "DeleteMarkerVersionId": "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt",
* "Key": "objectkey2"
* "Key": "HappyFace.jpg",
* "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
* }

@@ -265,8 +265,8 @@ * ]

* *\/
* // example id: to-delete-multiple-objects-from-a-versioned-bucket-1483146248805
* // example id: to-delete-multiple-object-versions-from-a-versioned-bucket-1483147087737
* ```
*
* @example To delete multiple object versions from a versioned bucket
* @example To delete multiple objects from a versioned bucket
* ```javascript
* // The following example deletes objects from a bucket. The request specifies object versions. S3 deletes specific object versions and returns the key and versions of deleted objects in the response.
* // The following example deletes objects from a bucket. The bucket is versioned, and the request does not specify the object version to delete. In this case, all versions remain in the bucket and S3 adds a delete marker.
* const input = {

@@ -277,8 +277,6 @@ * "Bucket": "examplebucket",

* {
* "Key": "HappyFace.jpg",
* "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
* "Key": "objectkey1"
* },
* {
* "Key": "HappyFace.jpg",
* "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
* "Key": "objectkey2"
* }

@@ -295,8 +293,10 @@ * ],

* {
* "Key": "HappyFace.jpg",
* "VersionId": "yoz3HB.ZhCS_tKVEmIOr7qYyyAaZSKVd"
* "DeleteMarker": "true",
* "DeleteMarkerVersionId": "A._w1z6EFiCF5uhtQMDal9JDkID9tQ7F",
* "Key": "objectkey1"
* },
* {
* "Key": "HappyFace.jpg",
* "VersionId": "2LWg7lQLnY41.maGB5Z6SWW.dcq0vx7b"
* "DeleteMarker": "true",
* "DeleteMarkerVersionId": "iOd_ORxhkKe_e8G8_oSGxt2PjsCZKlkt",
* "Key": "objectkey2"
* }

@@ -306,3 +306,3 @@ * ]

* *\/
* // example id: to-delete-multiple-object-versions-from-a-versioned-bucket-1483147087737
* // example id: to-delete-multiple-objects-from-a-versioned-bucket-1483146248805
* ```

@@ -309,0 +309,0 @@ *

@@ -83,8 +83,9 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To remove tag set from an object
* @example To remove tag set from an object version
* ```javascript
* // The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the operation removes tag set from the latest object version.
* // The following example removes tag set associated with the specified object version. The request specifies both the object key and object version.
* const input = {
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg"
* "Key": "HappyFace.jpg",
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* };

@@ -95,15 +96,14 @@ * const command = new DeleteObjectTaggingCommand(input);

* {
* "VersionId": "null"
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* }
* *\/
* // example id: to-remove-tag-set-from-an-object-1483145342862
* // example id: to-remove-tag-set-from-an-object-version-1483145285913
* ```
*
* @example To remove tag set from an object version
* @example To remove tag set from an object
* ```javascript
* // The following example removes tag set associated with the specified object version. The request specifies both the object key and object version.
* // The following example removes tag set associated with the specified object. If the bucket is versioning enabled, the operation removes tag set from the latest object version.
* const input = {
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg",
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* "Key": "HappyFace.jpg"
* };

@@ -114,6 +114,6 @@ * const command = new DeleteObjectTaggingCommand(input);

* {
* "VersionId": "ydlaNkwWm0SfKJR.T1b1fIdPRbldTYRI"
* "VersionId": "null"
* }
* *\/
* // example id: to-remove-tag-set-from-an-object-version-1483145285913
* // example id: to-remove-tag-set-from-an-object-1483145342862
* ```

@@ -120,0 +120,0 @@ *

@@ -232,10 +232,7 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example List next set of multipart uploads when previous result is truncated
* @example To list in-progress multipart uploads on a bucket
* ```javascript
* // The following example specifies the upload-id-marker and key-marker from previous truncated response to retrieve next setup of multipart uploads.
* // The following example lists in-progress multipart uploads on a specific bucket.
* const input = {
* "Bucket": "examplebucket",
* "KeyMarker": "nextkeyfrompreviousresponse",
* "MaxUploads": "2",
* "UploadIdMarker": "valuefrompreviousresponse"
* "Bucket": "examplebucket"
* };

@@ -246,9 +243,2 @@ * const command = new ListMultipartUploadsCommand(input);

* {
* "Bucket": "acl1",
* "IsTruncated": true,
* "KeyMarker": "",
* "MaxUploads": "2",
* "NextKeyMarker": "someobjectkey",
* "NextUploadIdMarker": "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
* "UploadIdMarker": "",
* "Uploads": [

@@ -258,3 +248,3 @@ * {

* "Initiator": {
* "DisplayName": "ownder-display-name",
* "DisplayName": "display-name",
* "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"

@@ -264,7 +254,7 @@ * },

* "Owner": {
* "DisplayName": "mohanataws",
* "ID": "852b113e7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
* "DisplayName": "display-name",
* "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
* },
* "StorageClass": "STANDARD",
* "UploadId": "gZ30jIqlUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--"
* "UploadId": "examplelUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--"
* },

@@ -274,3 +264,3 @@ * {

* "Initiator": {
* "DisplayName": "ownder-display-name",
* "DisplayName": "display-name",
* "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"

@@ -280,7 +270,7 @@ * },

* "Owner": {
* "DisplayName": "ownder-display-name",
* "DisplayName": "display-name",
* "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
* },
* "StorageClass": "STANDARD",
* "UploadId": "b7tZSqIlo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--"
* "UploadId": "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--"
* }

@@ -290,10 +280,13 @@ * ]

* *\/
* // example id: list-next-set-of-multipart-uploads-when-previous-result-is-truncated-1482428106748
* // example id: to-list-in-progress-multipart-uploads-on-a-bucket-1481852775260
* ```
*
* @example To list in-progress multipart uploads on a bucket
* @example List next set of multipart uploads when previous result is truncated
* ```javascript
* // The following example lists in-progress multipart uploads on a specific bucket.
* // The following example specifies the upload-id-marker and key-marker from previous truncated response to retrieve next setup of multipart uploads.
* const input = {
* "Bucket": "examplebucket"
* "Bucket": "examplebucket",
* "KeyMarker": "nextkeyfrompreviousresponse",
* "MaxUploads": "2",
* "UploadIdMarker": "valuefrompreviousresponse"
* };

@@ -304,2 +297,9 @@ * const command = new ListMultipartUploadsCommand(input);

* {
* "Bucket": "acl1",
* "IsTruncated": true,
* "KeyMarker": "",
* "MaxUploads": "2",
* "NextKeyMarker": "someobjectkey",
* "NextUploadIdMarker": "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--",
* "UploadIdMarker": "",
* "Uploads": [

@@ -309,3 +309,3 @@ * {

* "Initiator": {
* "DisplayName": "display-name",
* "DisplayName": "ownder-display-name",
* "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"

@@ -315,7 +315,7 @@ * },

* "Owner": {
* "DisplayName": "display-name",
* "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
* "DisplayName": "mohanataws",
* "ID": "852b113e7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
* },
* "StorageClass": "STANDARD",
* "UploadId": "examplelUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--"
* "UploadId": "gZ30jIqlUa.CInXklLQtSMJITdUnoZ1Y5GACB5UckOtspm5zbDMCkPF_qkfZzMiFZ6dksmcnqxJyIBvQMG9X9Q--"
* },

@@ -325,3 +325,3 @@ * {

* "Initiator": {
* "DisplayName": "display-name",
* "DisplayName": "ownder-display-name",
* "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"

@@ -331,7 +331,7 @@ * },

* "Owner": {
* "DisplayName": "display-name",
* "DisplayName": "ownder-display-name",
* "ID": "examplee7a2f25102679df27bb0ae12b3f85be6f290b936c4393484be31bebcc"
* },
* "StorageClass": "STANDARD",
* "UploadId": "examplelo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--"
* "UploadId": "b7tZSqIlo91lv1iwvWpvCiJWugw2xXLPAD7Z8cJyX9.WiIRgNrdG6Ldsn.9FtS63TCl1Uf5faTB.1U5Ckcbmdw--"
* }

@@ -341,3 +341,3 @@ * ]

* *\/
* // example id: to-list-in-progress-multipart-uploads-on-a-bucket-1481852775260
* // example id: list-next-set-of-multipart-uploads-when-previous-result-is-truncated-1482428106748
* ```

@@ -344,0 +344,0 @@ *

@@ -304,9 +304,11 @@ import { Command as $Command } from "@smithy/smithy-client";

* @public
* @example To create an object.
* @example To upload an object and specify server-side encryption and object tags
* ```javascript
* // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
* // The following example uploads an object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
* const input = {
* "Body": "filetoupload",
* "Bucket": "examplebucket",
* "Key": "objectkey"
* "Key": "exampleobject",
* "ServerSideEncryption": "AES256",
* "Tagging": "key1=value1&key2=value2"
* };

@@ -318,16 +320,20 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ"
* "ServerSideEncryption": "AES256",
* "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
* }
* *\/
* // example id: to-create-an-object-1483147613675
* // example id: to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831
* ```
*
* @example To upload an object and specify optional tags
* @example To upload object and specify user-defined metadata
* ```javascript
* // The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object.
* // The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response.
* const input = {
* "Body": "c:\\HappyFace.jpg",
* "Body": "filetoupload",
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg",
* "Tagging": "key1=value1&key2=value2"
* "Key": "exampleobject",
* "Metadata": {
* "metadata1": "value1",
* "metadata2": "value2"
* }
* };

@@ -339,19 +345,15 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
* "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0"
* }
* *\/
* // example id: to-upload-an-object-and-specify-optional-tags-1481762310955
* // example id: to-upload-object-and-specify-user-defined-metadata-1483396974757
* ```
*
* @example To upload object and specify user-defined metadata
* @example To create an object.
* ```javascript
* // The following example creates an object. The request also specifies optional metadata. If the bucket is versioning enabled, S3 returns version ID in response.
* // The following example creates an object. If the bucket is versioning enabled, S3 returns version ID in response.
* const input = {
* "Body": "filetoupload",
* "Bucket": "examplebucket",
* "Key": "exampleobject",
* "Metadata": {
* "metadata1": "value1",
* "metadata2": "value2"
* }
* "Key": "objectkey"
* };

@@ -363,15 +365,16 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "VersionId": "pSKidl4pHBiNwukdbcPXAIs.sshFFOc0"
* "VersionId": "Bvq0EDKxOcXLJXNo_Lkz37eM3R4pfzyQ"
* }
* *\/
* // example id: to-upload-object-and-specify-user-defined-metadata-1483396974757
* // example id: to-create-an-object-1483147613675
* ```
*
* @example To upload an object
* @example To upload an object and specify optional tags
* ```javascript
* // The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object.
* // The following example uploads an object. The request specifies optional object tags. The bucket is versioned, therefore S3 returns version ID of the newly created object.
* const input = {
* "Body": "HappyFace.jpg",
* "Body": "c:\\HappyFace.jpg",
* "Bucket": "examplebucket",
* "Key": "HappyFace.jpg"
* "Key": "HappyFace.jpg",
* "Tagging": "key1=value1&key2=value2"
* };

@@ -383,17 +386,16 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
* "VersionId": "psM2sYY4.o1501dSx8wMvnkOzSBB.V4a"
* }
* *\/
* // example id: to-upload-an-object-1481760101010
* // example id: to-upload-an-object-and-specify-optional-tags-1481762310955
* ```
*
* @example To upload an object and specify server-side encryption and object tags
* @example To upload an object and specify canned ACL.
* ```javascript
* // The following example uploads an object. The request specifies the optional server-side encryption option. The request also specifies optional object tags. If the bucket is versioning enabled, S3 returns version ID in response.
* // The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
* const input = {
* "ACL": "authenticated-read",
* "Body": "filetoupload",
* "Bucket": "examplebucket",
* "Key": "exampleobject",
* "ServerSideEncryption": "AES256",
* "Tagging": "key1=value1&key2=value2"
* "Key": "exampleobject"
* };

@@ -405,7 +407,6 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "ServerSideEncryption": "AES256",
* "VersionId": "Ri.vC6qVlA4dEnjgRV4ZHsHoFIjqEMNt"
* "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
* }
* *\/
* // example id: to-upload-an-object-and-specify-server-side-encryption-and-object-tags-1483398331831
* // example id: to-upload-an-object-and-specify-canned-acl-1483397779571
* ```

@@ -435,10 +436,9 @@ *

*
* @example To upload an object and specify canned ACL.
* @example To upload an object
* ```javascript
* // The following example uploads and object. The request specifies optional canned ACL (access control list) to all READ access to authenticated users. If the bucket is versioning enabled, S3 returns version ID in response.
* // The following example uploads an object to a versioning-enabled bucket. The source file is specified using Windows file syntax. S3 returns VersionId of the newly created object.
* const input = {
* "ACL": "authenticated-read",
* "Body": "filetoupload",
* "Body": "HappyFace.jpg",
* "Bucket": "examplebucket",
* "Key": "exampleobject"
* "Key": "HappyFace.jpg"
* };

@@ -450,6 +450,6 @@ * const command = new PutObjectCommand(input);

* "ETag": "\"6805f2cfc46c0f04559748bb039d69ae\"",
* "VersionId": "Kirh.unyZwjQ69YxcQLA8z4F5j3kJJKr"
* "VersionId": "tpf3zF08nBplQK1XLOefGskR7mGDwcDk"
* }
* *\/
* // example id: to-upload-an-object-and-specify-canned-acl-1483397779571
* // example id: to-upload-an-object-1481760101010
* ```

@@ -456,0 +456,0 @@ *

{
"name": "@aws-sdk/client-s3",
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
"version": "3.743.0",
"version": "3.744.0",
"scripts": {

@@ -30,7 +30,7 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",

"@aws-crypto/sha256-js": "5.2.0",
"@aws-sdk/core": "3.734.0",
"@aws-sdk/credential-provider-node": "3.743.0",
"@aws-sdk/core": "3.744.0",
"@aws-sdk/credential-provider-node": "3.744.0",
"@aws-sdk/middleware-bucket-endpoint": "3.734.0",
"@aws-sdk/middleware-expect-continue": "3.734.0",
"@aws-sdk/middleware-flexible-checksums": "3.735.0",
"@aws-sdk/middleware-flexible-checksums": "3.744.0",
"@aws-sdk/middleware-host-header": "3.734.0",

@@ -40,14 +40,14 @@ "@aws-sdk/middleware-location-constraint": "3.734.0",

"@aws-sdk/middleware-recursion-detection": "3.734.0",
"@aws-sdk/middleware-sdk-s3": "3.740.0",
"@aws-sdk/middleware-sdk-s3": "3.744.0",
"@aws-sdk/middleware-ssec": "3.734.0",
"@aws-sdk/middleware-user-agent": "3.743.0",
"@aws-sdk/middleware-user-agent": "3.744.0",
"@aws-sdk/region-config-resolver": "3.734.0",
"@aws-sdk/signature-v4-multi-region": "3.740.0",
"@aws-sdk/signature-v4-multi-region": "3.744.0",
"@aws-sdk/types": "3.734.0",
"@aws-sdk/util-endpoints": "3.743.0",
"@aws-sdk/util-user-agent-browser": "3.734.0",
"@aws-sdk/util-user-agent-node": "3.743.0",
"@aws-sdk/util-user-agent-node": "3.744.0",
"@aws-sdk/xml-builder": "3.734.0",
"@smithy/config-resolver": "^4.0.1",
"@smithy/core": "^3.1.1",
"@smithy/core": "^3.1.2",
"@smithy/eventstream-serde-browser": "^4.0.1",

@@ -63,5 +63,5 @@ "@smithy/eventstream-serde-config-resolver": "^4.0.1",

"@smithy/middleware-content-length": "^4.0.1",
"@smithy/middleware-endpoint": "^4.0.2",
"@smithy/middleware-retry": "^4.0.3",
"@smithy/middleware-serde": "^4.0.1",
"@smithy/middleware-endpoint": "^4.0.3",
"@smithy/middleware-retry": "^4.0.4",
"@smithy/middleware-serde": "^4.0.2",
"@smithy/middleware-stack": "^4.0.1",

@@ -71,3 +71,3 @@ "@smithy/node-config-provider": "^4.0.1",

"@smithy/protocol-http": "^5.0.1",
"@smithy/smithy-client": "^4.1.2",
"@smithy/smithy-client": "^4.1.3",
"@smithy/types": "^4.1.0",

@@ -78,4 +78,4 @@ "@smithy/url-parser": "^4.0.1",

"@smithy/util-body-length-node": "^4.0.0",
"@smithy/util-defaults-mode-browser": "^4.0.3",
"@smithy/util-defaults-mode-node": "^4.0.3",
"@smithy/util-defaults-mode-browser": "^4.0.4",
"@smithy/util-defaults-mode-node": "^4.0.4",
"@smithy/util-endpoints": "^3.0.1",

@@ -90,3 +90,3 @@ "@smithy/util-middleware": "^4.0.1",

"devDependencies": {
"@aws-sdk/signature-v4-crt": "3.743.0",
"@aws-sdk/signature-v4-crt": "3.744.0",
"@tsconfig/node18": "18.2.4",

@@ -93,0 +93,0 @@ "@types/node": "^18.19.69",

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc