@aws-sdk/client-s3-control 3.281.0 → 3.287.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/pagination/ListAccessPointsForObjectLambdaPaginator.js +1 -8
- package/dist-cjs/pagination/ListAccessPointsPaginator.js +1 -8
- package/dist-cjs/pagination/ListJobsPaginator.js +1 -8
- package/dist-cjs/pagination/ListMultiRegionAccessPointsPaginator.js +1 -8
- package/dist-cjs/pagination/ListRegionalBucketsPaginator.js +1 -8
- package/dist-cjs/pagination/ListStorageLensConfigurationsPaginator.js +1 -8
- package/dist-es/pagination/ListAccessPointsForObjectLambdaPaginator.js +1 -8
- package/dist-es/pagination/ListAccessPointsPaginator.js +1 -8
- package/dist-es/pagination/ListJobsPaginator.js +1 -8
- package/dist-es/pagination/ListMultiRegionAccessPointsPaginator.js +1 -8
- package/dist-es/pagination/ListRegionalBucketsPaginator.js +1 -8
- package/dist-es/pagination/ListStorageLensConfigurationsPaginator.js +1 -8
- package/dist-types/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/package.json +21 -21
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAccessPointsForObjectLambda = void 0;
|
|
4
4
|
const ListAccessPointsForObjectLambdaCommand_1 = require("../commands/ListAccessPointsForObjectLambdaCommand");
|
|
5
|
-
const S3Control_1 = require("../S3Control");
|
|
6
5
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListAccessPointsForObjectLambdaCommand_1.ListAccessPointsForObjectLambdaCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listAccessPointsForObjectLambda(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListAccessPointsForObjectLambda(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListAccessPointsForObjectLambda(config, input, ...additi
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
16
|
+
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAccessPoints = void 0;
|
|
4
4
|
const ListAccessPointsCommand_1 = require("../commands/ListAccessPointsCommand");
|
|
5
|
-
const S3Control_1 = require("../S3Control");
|
|
6
5
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListAccessPointsCommand_1.ListAccessPointsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listAccessPoints(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListAccessPoints(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListAccessPoints(config, input, ...additionalArguments)
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
16
|
+
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListJobs = void 0;
|
|
4
4
|
const ListJobsCommand_1 = require("../commands/ListJobsCommand");
|
|
5
|
-
const S3Control_1 = require("../S3Control");
|
|
6
5
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListJobsCommand_1.ListJobsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listJobs(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListJobs(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListJobs(config, input, ...additionalArguments) {
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
16
|
+
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListMultiRegionAccessPoints = void 0;
|
|
4
4
|
const ListMultiRegionAccessPointsCommand_1 = require("../commands/ListMultiRegionAccessPointsCommand");
|
|
5
|
-
const S3Control_1 = require("../S3Control");
|
|
6
5
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListMultiRegionAccessPointsCommand_1.ListMultiRegionAccessPointsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listMultiRegionAccessPoints(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListMultiRegionAccessPoints(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListMultiRegionAccessPoints(config, input, ...additional
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
16
|
+
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,14 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListRegionalBuckets = void 0;
|
|
4
4
|
const ListRegionalBucketsCommand_1 = require("../commands/ListRegionalBucketsCommand");
|
|
5
|
-
const S3Control_1 = require("../S3Control");
|
|
6
5
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListRegionalBucketsCommand_1.ListRegionalBucketsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listRegionalBuckets(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListRegionalBuckets(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
@@ -17,10 +13,7 @@ async function* paginateListRegionalBuckets(config, input, ...additionalArgument
|
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
15
|
input["MaxResults"] = config.pageSize;
|
|
20
|
-
if (config.client instanceof
|
|
21
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
22
|
-
}
|
|
23
|
-
else if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
16
|
+
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
24
17
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
25
18
|
}
|
|
26
19
|
else {
|
|
@@ -2,24 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListStorageLensConfigurations = void 0;
|
|
4
4
|
const ListStorageLensConfigurationsCommand_1 = require("../commands/ListStorageLensConfigurationsCommand");
|
|
5
|
-
const S3Control_1 = require("../S3Control");
|
|
6
5
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
7
6
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
8
7
|
return await client.send(new ListStorageLensConfigurationsCommand_1.ListStorageLensConfigurationsCommand(input), ...args);
|
|
9
8
|
};
|
|
10
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
11
|
-
return await client.listStorageLensConfigurations(input, ...args);
|
|
12
|
-
};
|
|
13
9
|
async function* paginateListStorageLensConfigurations(config, input, ...additionalArguments) {
|
|
14
10
|
let token = config.startingToken || undefined;
|
|
15
11
|
let hasNext = true;
|
|
16
12
|
let page;
|
|
17
13
|
while (hasNext) {
|
|
18
14
|
input.NextToken = token;
|
|
19
|
-
if (config.client instanceof
|
|
20
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
21
|
-
}
|
|
22
|
-
else if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
15
|
+
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
23
16
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
24
17
|
}
|
|
25
18
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListAccessPointsForObjectLambdaCommand, } from "../commands/ListAccessPointsForObjectLambdaCommand";
|
|
2
|
-
import { S3Control } from "../S3Control";
|
|
3
2
|
import { S3ControlClient } from "../S3ControlClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListAccessPointsForObjectLambdaCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listAccessPointsForObjectLambda(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListAccessPointsForObjectLambda(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListAccessPointsForObjectLambda(config, input, ..
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.NextToken = token;
|
|
16
12
|
input["MaxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof S3ControlClient) {
|
|
13
|
+
if (config.client instanceof S3ControlClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListAccessPointsCommand, } from "../commands/ListAccessPointsCommand";
|
|
2
|
-
import { S3Control } from "../S3Control";
|
|
3
2
|
import { S3ControlClient } from "../S3ControlClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListAccessPointsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listAccessPoints(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListAccessPoints(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListAccessPoints(config, input, ...additionalArgu
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.NextToken = token;
|
|
16
12
|
input["MaxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof S3ControlClient) {
|
|
13
|
+
if (config.client instanceof S3ControlClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListJobsCommand } from "../commands/ListJobsCommand";
|
|
2
|
-
import { S3Control } from "../S3Control";
|
|
3
2
|
import { S3ControlClient } from "../S3ControlClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListJobsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listJobs(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListJobs(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListJobs(config, input, ...additionalArguments) {
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.NextToken = token;
|
|
16
12
|
input["MaxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof S3ControlClient) {
|
|
13
|
+
if (config.client instanceof S3ControlClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListMultiRegionAccessPointsCommand, } from "../commands/ListMultiRegionAccessPointsCommand";
|
|
2
|
-
import { S3Control } from "../S3Control";
|
|
3
2
|
import { S3ControlClient } from "../S3ControlClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListMultiRegionAccessPointsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listMultiRegionAccessPoints(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListMultiRegionAccessPoints(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListMultiRegionAccessPoints(config, input, ...add
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.NextToken = token;
|
|
16
12
|
input["MaxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof S3ControlClient) {
|
|
13
|
+
if (config.client instanceof S3ControlClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
import { ListRegionalBucketsCommand, } from "../commands/ListRegionalBucketsCommand";
|
|
2
|
-
import { S3Control } from "../S3Control";
|
|
3
2
|
import { S3ControlClient } from "../S3ControlClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListRegionalBucketsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listRegionalBuckets(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListRegionalBuckets(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
@@ -14,10 +10,7 @@ export async function* paginateListRegionalBuckets(config, input, ...additionalA
|
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.NextToken = token;
|
|
16
12
|
input["MaxResults"] = config.pageSize;
|
|
17
|
-
if (config.client instanceof
|
|
18
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
19
|
-
}
|
|
20
|
-
else if (config.client instanceof S3ControlClient) {
|
|
13
|
+
if (config.client instanceof S3ControlClient) {
|
|
21
14
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
22
15
|
}
|
|
23
16
|
else {
|
|
@@ -1,22 +1,15 @@
|
|
|
1
1
|
import { ListStorageLensConfigurationsCommand, } from "../commands/ListStorageLensConfigurationsCommand";
|
|
2
|
-
import { S3Control } from "../S3Control";
|
|
3
2
|
import { S3ControlClient } from "../S3ControlClient";
|
|
4
3
|
const makePagedClientRequest = async (client, input, ...args) => {
|
|
5
4
|
return await client.send(new ListStorageLensConfigurationsCommand(input), ...args);
|
|
6
5
|
};
|
|
7
|
-
const makePagedRequest = async (client, input, ...args) => {
|
|
8
|
-
return await client.listStorageLensConfigurations(input, ...args);
|
|
9
|
-
};
|
|
10
6
|
export async function* paginateListStorageLensConfigurations(config, input, ...additionalArguments) {
|
|
11
7
|
let token = config.startingToken || undefined;
|
|
12
8
|
let hasNext = true;
|
|
13
9
|
let page;
|
|
14
10
|
while (hasNext) {
|
|
15
11
|
input.NextToken = token;
|
|
16
|
-
if (config.client instanceof
|
|
17
|
-
page = await makePagedRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else if (config.client instanceof S3ControlClient) {
|
|
12
|
+
if (config.client instanceof S3ControlClient) {
|
|
20
13
|
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
21
14
|
}
|
|
22
15
|
else {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { S3Control } from "../S3Control";
|
|
3
2
|
import { S3ControlClient } from "../S3ControlClient";
|
|
4
3
|
export interface S3ControlPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
-
client:
|
|
4
|
+
client: S3ControlClient;
|
|
6
5
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { S3Control } from "../S3Control";
|
|
3
2
|
import { S3ControlClient } from "../S3ControlClient";
|
|
4
3
|
export interface S3ControlPaginationConfiguration
|
|
5
4
|
extends PaginationConfiguration {
|
|
6
|
-
client:
|
|
5
|
+
client: S3ControlClient;
|
|
7
6
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.287.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -22,30 +22,30 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
25
|
-
"@aws-sdk/client-sts": "3.
|
|
26
|
-
"@aws-sdk/config-resolver": "3.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
28
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
+
"@aws-sdk/client-sts": "3.287.0",
|
|
26
|
+
"@aws-sdk/config-resolver": "3.287.0",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.287.0",
|
|
28
|
+
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
29
29
|
"@aws-sdk/hash-blob-browser": "3.272.0",
|
|
30
30
|
"@aws-sdk/hash-node": "3.272.0",
|
|
31
31
|
"@aws-sdk/hash-stream-node": "3.272.0",
|
|
32
32
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
33
33
|
"@aws-sdk/md5-js": "3.272.0",
|
|
34
|
-
"@aws-sdk/middleware-apply-body-checksum": "3.
|
|
35
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
36
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
37
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
38
|
-
"@aws-sdk/middleware-logger": "3.
|
|
39
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
40
|
-
"@aws-sdk/middleware-retry": "3.
|
|
41
|
-
"@aws-sdk/middleware-sdk-s3-control": "3.
|
|
34
|
+
"@aws-sdk/middleware-apply-body-checksum": "3.282.0",
|
|
35
|
+
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
36
|
+
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
37
|
+
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
38
|
+
"@aws-sdk/middleware-logger": "3.287.0",
|
|
39
|
+
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
40
|
+
"@aws-sdk/middleware-retry": "3.287.0",
|
|
41
|
+
"@aws-sdk/middleware-sdk-s3-control": "3.287.0",
|
|
42
42
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
43
|
-
"@aws-sdk/middleware-signing": "3.
|
|
43
|
+
"@aws-sdk/middleware-signing": "3.282.0",
|
|
44
44
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
45
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
46
|
-
"@aws-sdk/node-config-provider": "3.
|
|
47
|
-
"@aws-sdk/node-http-handler": "3.
|
|
48
|
-
"@aws-sdk/protocol-http": "3.
|
|
45
|
+
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
46
|
+
"@aws-sdk/node-config-provider": "3.287.0",
|
|
47
|
+
"@aws-sdk/node-http-handler": "3.282.0",
|
|
48
|
+
"@aws-sdk/protocol-http": "3.282.0",
|
|
49
49
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
50
50
|
"@aws-sdk/types": "3.272.0",
|
|
51
51
|
"@aws-sdk/url-parser": "3.272.0",
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
54
54
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
55
55
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
56
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
56
|
+
"@aws-sdk/util-defaults-mode-node": "3.287.0",
|
|
57
57
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
58
58
|
"@aws-sdk/util-retry": "3.272.0",
|
|
59
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
60
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
59
|
+
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
60
|
+
"@aws-sdk/util-user-agent-node": "3.287.0",
|
|
61
61
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
62
62
|
"@aws-sdk/xml-builder": "3.201.0",
|
|
63
63
|
"fast-xml-parser": "4.1.2",
|