@aws-sdk/client-s3 3.958.0 → 3.962.0
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.
package/dist-cjs/index.js
CHANGED
|
@@ -5670,7 +5670,7 @@ const paginateListParts = core.createPaginator(S3Client, ListPartsCommand, "Part
|
|
|
5670
5670
|
const checkState$3 = async (client, input) => {
|
|
5671
5671
|
let reason;
|
|
5672
5672
|
try {
|
|
5673
|
-
|
|
5673
|
+
let result = await client.send(new HeadBucketCommand(input));
|
|
5674
5674
|
reason = result;
|
|
5675
5675
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
5676
5676
|
}
|
|
@@ -5695,7 +5695,7 @@ const waitUntilBucketExists = async (params, input) => {
|
|
|
5695
5695
|
const checkState$2 = async (client, input) => {
|
|
5696
5696
|
let reason;
|
|
5697
5697
|
try {
|
|
5698
|
-
|
|
5698
|
+
let result = await client.send(new HeadBucketCommand(input));
|
|
5699
5699
|
reason = result;
|
|
5700
5700
|
}
|
|
5701
5701
|
catch (exception) {
|
|
@@ -5719,7 +5719,7 @@ const waitUntilBucketNotExists = async (params, input) => {
|
|
|
5719
5719
|
const checkState$1 = async (client, input) => {
|
|
5720
5720
|
let reason;
|
|
5721
5721
|
try {
|
|
5722
|
-
|
|
5722
|
+
let result = await client.send(new HeadObjectCommand(input));
|
|
5723
5723
|
reason = result;
|
|
5724
5724
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
5725
5725
|
}
|
|
@@ -5744,7 +5744,7 @@ const waitUntilObjectExists = async (params, input) => {
|
|
|
5744
5744
|
const checkState = async (client, input) => {
|
|
5745
5745
|
let reason;
|
|
5746
5746
|
try {
|
|
5747
|
-
|
|
5747
|
+
let result = await client.send(new HeadObjectCommand(input));
|
|
5748
5748
|
reason = result;
|
|
5749
5749
|
}
|
|
5750
5750
|
catch (exception) {
|
|
@@ -3,7 +3,7 @@ import { HeadBucketCommand } from "../commands/HeadBucketCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new HeadBucketCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
return { state: WaiterState.SUCCESS, reason };
|
|
9
9
|
}
|
|
@@ -3,7 +3,7 @@ import { HeadBucketCommand } from "../commands/HeadBucketCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new HeadBucketCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
}
|
|
9
9
|
catch (exception) {
|
|
@@ -3,7 +3,7 @@ import { HeadObjectCommand } from "../commands/HeadObjectCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new HeadObjectCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
return { state: WaiterState.SUCCESS, reason };
|
|
9
9
|
}
|
|
@@ -3,7 +3,7 @@ import { HeadObjectCommand } from "../commands/HeadObjectCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new HeadObjectCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
}
|
|
9
9
|
catch (exception) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.962.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
32
32
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
33
33
|
"@aws-sdk/core": "3.957.0",
|
|
34
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
34
|
+
"@aws-sdk/credential-provider-node": "3.962.0",
|
|
35
35
|
"@aws-sdk/middleware-bucket-endpoint": "3.957.0",
|
|
36
36
|
"@aws-sdk/middleware-expect-continue": "3.957.0",
|
|
37
37
|
"@aws-sdk/middleware-flexible-checksums": "3.957.0",
|