@aws-sdk/client-transfer 3.477.0 → 3.478.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.
Files changed (45) hide show
  1. package/dist-cjs/pagination/ListAccessesPaginator.js +2 -24
  2. package/dist-cjs/pagination/ListAgreementsPaginator.js +2 -24
  3. package/dist-cjs/pagination/ListCertificatesPaginator.js +2 -24
  4. package/dist-cjs/pagination/ListConnectorsPaginator.js +2 -24
  5. package/dist-cjs/pagination/ListExecutionsPaginator.js +2 -24
  6. package/dist-cjs/pagination/ListProfilesPaginator.js +2 -24
  7. package/dist-cjs/pagination/ListSecurityPoliciesPaginator.js +2 -24
  8. package/dist-cjs/pagination/ListServersPaginator.js +2 -24
  9. package/dist-cjs/pagination/ListTagsForResourcePaginator.js +2 -24
  10. package/dist-cjs/pagination/ListUsersPaginator.js +2 -24
  11. package/dist-cjs/pagination/ListWorkflowsPaginator.js +2 -24
  12. package/dist-es/pagination/ListAccessesPaginator.js +2 -23
  13. package/dist-es/pagination/ListAgreementsPaginator.js +2 -23
  14. package/dist-es/pagination/ListCertificatesPaginator.js +2 -23
  15. package/dist-es/pagination/ListConnectorsPaginator.js +2 -23
  16. package/dist-es/pagination/ListExecutionsPaginator.js +2 -23
  17. package/dist-es/pagination/ListProfilesPaginator.js +2 -23
  18. package/dist-es/pagination/ListSecurityPoliciesPaginator.js +2 -23
  19. package/dist-es/pagination/ListServersPaginator.js +2 -23
  20. package/dist-es/pagination/ListTagsForResourcePaginator.js +2 -23
  21. package/dist-es/pagination/ListUsersPaginator.js +2 -23
  22. package/dist-es/pagination/ListWorkflowsPaginator.js +2 -23
  23. package/dist-types/pagination/ListAccessesPaginator.d.ts +1 -1
  24. package/dist-types/pagination/ListAgreementsPaginator.d.ts +1 -1
  25. package/dist-types/pagination/ListCertificatesPaginator.d.ts +1 -1
  26. package/dist-types/pagination/ListConnectorsPaginator.d.ts +1 -1
  27. package/dist-types/pagination/ListExecutionsPaginator.d.ts +1 -1
  28. package/dist-types/pagination/ListProfilesPaginator.d.ts +1 -1
  29. package/dist-types/pagination/ListSecurityPoliciesPaginator.d.ts +1 -1
  30. package/dist-types/pagination/ListServersPaginator.d.ts +1 -1
  31. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +1 -1
  32. package/dist-types/pagination/ListUsersPaginator.d.ts +1 -1
  33. package/dist-types/pagination/ListWorkflowsPaginator.d.ts +1 -1
  34. package/dist-types/ts3.4/pagination/ListAccessesPaginator.d.ts +3 -3
  35. package/dist-types/ts3.4/pagination/ListAgreementsPaginator.d.ts +3 -3
  36. package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +3 -3
  37. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +3 -3
  38. package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +3 -3
  39. package/dist-types/ts3.4/pagination/ListProfilesPaginator.d.ts +3 -3
  40. package/dist-types/ts3.4/pagination/ListSecurityPoliciesPaginator.d.ts +3 -3
  41. package/dist-types/ts3.4/pagination/ListServersPaginator.d.ts +3 -3
  42. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +3 -3
  43. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +3 -3
  44. package/dist-types/ts3.4/pagination/ListWorkflowsPaginator.d.ts +3 -3
  45. package/package.json +6 -5
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListAccesses = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListAccessesCommand_1 = require("../commands/ListAccessesCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListAccessesCommand_1.ListAccessesCommand(input), ...args);
8
- };
9
- async function* paginateListAccesses(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListAccesses = paginateListAccesses;
7
+ exports.paginateListAccesses = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListAccessesCommand_1.ListAccessesCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListAgreements = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListAgreementsCommand_1 = require("../commands/ListAgreementsCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListAgreementsCommand_1.ListAgreementsCommand(input), ...args);
8
- };
9
- async function* paginateListAgreements(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListAgreements = paginateListAgreements;
7
+ exports.paginateListAgreements = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListAgreementsCommand_1.ListAgreementsCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListCertificates = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListCertificatesCommand_1 = require("../commands/ListCertificatesCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListCertificatesCommand_1.ListCertificatesCommand(input), ...args);
8
- };
9
- async function* paginateListCertificates(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListCertificates = paginateListCertificates;
7
+ exports.paginateListCertificates = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListCertificatesCommand_1.ListCertificatesCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListConnectors = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListConnectorsCommand_1 = require("../commands/ListConnectorsCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListConnectorsCommand_1.ListConnectorsCommand(input), ...args);
8
- };
9
- async function* paginateListConnectors(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListConnectors = paginateListConnectors;
7
+ exports.paginateListConnectors = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListConnectorsCommand_1.ListConnectorsCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListExecutions = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListExecutionsCommand_1 = require("../commands/ListExecutionsCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListExecutionsCommand_1.ListExecutionsCommand(input), ...args);
8
- };
9
- async function* paginateListExecutions(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListExecutions = paginateListExecutions;
7
+ exports.paginateListExecutions = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListExecutionsCommand_1.ListExecutionsCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListProfiles = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListProfilesCommand_1 = require("../commands/ListProfilesCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListProfilesCommand_1.ListProfilesCommand(input), ...args);
8
- };
9
- async function* paginateListProfiles(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListProfiles = paginateListProfiles;
7
+ exports.paginateListProfiles = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListProfilesCommand_1.ListProfilesCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListSecurityPolicies = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListSecurityPoliciesCommand_1 = require("../commands/ListSecurityPoliciesCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListSecurityPoliciesCommand_1.ListSecurityPoliciesCommand(input), ...args);
8
- };
9
- async function* paginateListSecurityPolicies(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListSecurityPolicies = paginateListSecurityPolicies;
7
+ exports.paginateListSecurityPolicies = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListSecurityPoliciesCommand_1.ListSecurityPoliciesCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListServers = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListServersCommand_1 = require("../commands/ListServersCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListServersCommand_1.ListServersCommand(input), ...args);
8
- };
9
- async function* paginateListServers(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListServers = paginateListServers;
7
+ exports.paginateListServers = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListServersCommand_1.ListServersCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListTagsForResource = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListTagsForResourceCommand_1 = require("../commands/ListTagsForResourceCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListTagsForResourceCommand_1.ListTagsForResourceCommand(input), ...args);
8
- };
9
- async function* paginateListTagsForResource(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListTagsForResource = paginateListTagsForResource;
7
+ exports.paginateListTagsForResource = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListTagsForResourceCommand_1.ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListUsers = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListUsersCommand_1 = require("../commands/ListUsersCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListUsersCommand_1.ListUsersCommand(input), ...args);
8
- };
9
- async function* paginateListUsers(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListUsers = paginateListUsers;
7
+ exports.paginateListUsers = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListUsersCommand_1.ListUsersCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListWorkflows = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListWorkflowsCommand_1 = require("../commands/ListWorkflowsCommand");
5
6
  const TransferClient_1 = require("../TransferClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListWorkflowsCommand_1.ListWorkflowsCommand(input), ...args);
8
- };
9
- async function* paginateListWorkflows(config, input, ...additionalArguments) {
10
- let token = config.startingToken || undefined;
11
- let hasNext = true;
12
- let page;
13
- while (hasNext) {
14
- input.NextToken = token;
15
- input["MaxResults"] = config.pageSize;
16
- if (config.client instanceof TransferClient_1.TransferClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Transfer | TransferClient");
21
- }
22
- yield page;
23
- const prevToken = token;
24
- token = page.NextToken;
25
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
26
- }
27
- return undefined;
28
- }
29
- exports.paginateListWorkflows = paginateListWorkflows;
7
+ exports.paginateListWorkflows = (0, core_1.createPaginator)(TransferClient_1.TransferClient, ListWorkflowsCommand_1.ListWorkflowsCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListAccessesCommand, } from "../commands/ListAccessesCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListAccessesCommand(input), ...args);
5
- };
6
- export async function* paginateListAccesses(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListAccesses = createPaginator(TransferClient, ListAccessesCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListAgreementsCommand, } from "../commands/ListAgreementsCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListAgreementsCommand(input), ...args);
5
- };
6
- export async function* paginateListAgreements(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListAgreements = createPaginator(TransferClient, ListAgreementsCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListCertificatesCommand, } from "../commands/ListCertificatesCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListCertificatesCommand(input), ...args);
5
- };
6
- export async function* paginateListCertificates(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListCertificates = createPaginator(TransferClient, ListCertificatesCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListConnectorsCommand, } from "../commands/ListConnectorsCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListConnectorsCommand(input), ...args);
5
- };
6
- export async function* paginateListConnectors(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListConnectors = createPaginator(TransferClient, ListConnectorsCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListExecutionsCommand, } from "../commands/ListExecutionsCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListExecutionsCommand(input), ...args);
5
- };
6
- export async function* paginateListExecutions(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListExecutions = createPaginator(TransferClient, ListExecutionsCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListProfilesCommand, } from "../commands/ListProfilesCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListProfilesCommand(input), ...args);
5
- };
6
- export async function* paginateListProfiles(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListProfiles = createPaginator(TransferClient, ListProfilesCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListSecurityPoliciesCommand, } from "../commands/ListSecurityPoliciesCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListSecurityPoliciesCommand(input), ...args);
5
- };
6
- export async function* paginateListSecurityPolicies(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListSecurityPolicies = createPaginator(TransferClient, ListSecurityPoliciesCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListServersCommand } from "../commands/ListServersCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListServersCommand(input), ...args);
5
- };
6
- export async function* paginateListServers(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListServers = createPaginator(TransferClient, ListServersCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListTagsForResourceCommand, } from "../commands/ListTagsForResourceCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListTagsForResourceCommand(input), ...args);
5
- };
6
- export async function* paginateListTagsForResource(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListTagsForResource = createPaginator(TransferClient, ListTagsForResourceCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListUsersCommand } from "../commands/ListUsersCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListUsersCommand(input), ...args);
5
- };
6
- export async function* paginateListUsers(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListUsers = createPaginator(TransferClient, ListUsersCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListWorkflowsCommand, } from "../commands/ListWorkflowsCommand";
2
3
  import { TransferClient } from "../TransferClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListWorkflowsCommand(input), ...args);
5
- };
6
- export async function* paginateListWorkflows(config, input, ...additionalArguments) {
7
- let token = config.startingToken || undefined;
8
- let hasNext = true;
9
- let page;
10
- while (hasNext) {
11
- input.NextToken = token;
12
- input["MaxResults"] = config.pageSize;
13
- if (config.client instanceof TransferClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Transfer | TransferClient");
18
- }
19
- yield page;
20
- const prevToken = token;
21
- token = page.NextToken;
22
- hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
23
- }
24
- return undefined;
25
- }
4
+ export const paginateListWorkflows = createPaginator(TransferClient, ListWorkflowsCommand, "NextToken", "NextToken", "MaxResults");
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListAccesses(config: TransferPaginationConfiguration, input: ListAccessesCommandInput, ...additionalArguments: any): Paginator<ListAccessesCommandOutput>;
7
+ export declare const paginateListAccesses: (config: TransferPaginationConfiguration, input: ListAccessesCommandInput, ...rest: any[]) => Paginator<ListAccessesCommandOutput>;
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListAgreements(config: TransferPaginationConfiguration, input: ListAgreementsCommandInput, ...additionalArguments: any): Paginator<ListAgreementsCommandOutput>;
7
+ export declare const paginateListAgreements: (config: TransferPaginationConfiguration, input: ListAgreementsCommandInput, ...rest: any[]) => Paginator<ListAgreementsCommandOutput>;
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListCertificates(config: TransferPaginationConfiguration, input: ListCertificatesCommandInput, ...additionalArguments: any): Paginator<ListCertificatesCommandOutput>;
7
+ export declare const paginateListCertificates: (config: TransferPaginationConfiguration, input: ListCertificatesCommandInput, ...rest: any[]) => Paginator<ListCertificatesCommandOutput>;
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListConnectors(config: TransferPaginationConfiguration, input: ListConnectorsCommandInput, ...additionalArguments: any): Paginator<ListConnectorsCommandOutput>;
7
+ export declare const paginateListConnectors: (config: TransferPaginationConfiguration, input: ListConnectorsCommandInput, ...rest: any[]) => Paginator<ListConnectorsCommandOutput>;
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListExecutions(config: TransferPaginationConfiguration, input: ListExecutionsCommandInput, ...additionalArguments: any): Paginator<ListExecutionsCommandOutput>;
7
+ export declare const paginateListExecutions: (config: TransferPaginationConfiguration, input: ListExecutionsCommandInput, ...rest: any[]) => Paginator<ListExecutionsCommandOutput>;
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListProfiles(config: TransferPaginationConfiguration, input: ListProfilesCommandInput, ...additionalArguments: any): Paginator<ListProfilesCommandOutput>;
7
+ export declare const paginateListProfiles: (config: TransferPaginationConfiguration, input: ListProfilesCommandInput, ...rest: any[]) => Paginator<ListProfilesCommandOutput>;
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListSecurityPolicies(config: TransferPaginationConfiguration, input: ListSecurityPoliciesCommandInput, ...additionalArguments: any): Paginator<ListSecurityPoliciesCommandOutput>;
7
+ export declare const paginateListSecurityPolicies: (config: TransferPaginationConfiguration, input: ListSecurityPoliciesCommandInput, ...rest: any[]) => Paginator<ListSecurityPoliciesCommandOutput>;
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListServers(config: TransferPaginationConfiguration, input: ListServersCommandInput, ...additionalArguments: any): Paginator<ListServersCommandOutput>;
7
+ export declare const paginateListServers: (config: TransferPaginationConfiguration, input: ListServersCommandInput, ...rest: any[]) => Paginator<ListServersCommandOutput>;
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListTagsForResource(config: TransferPaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
7
+ export declare const paginateListTagsForResource: (config: TransferPaginationConfiguration, input: ListTagsForResourceCommandInput, ...rest: any[]) => Paginator<ListTagsForResourceCommandOutput>;
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListUsers(config: TransferPaginationConfiguration, input: ListUsersCommandInput, ...additionalArguments: any): Paginator<ListUsersCommandOutput>;
7
+ export declare const paginateListUsers: (config: TransferPaginationConfiguration, input: ListUsersCommandInput, ...rest: any[]) => Paginator<ListUsersCommandOutput>;
@@ -4,4 +4,4 @@ import { TransferPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListWorkflows(config: TransferPaginationConfiguration, input: ListWorkflowsCommandInput, ...additionalArguments: any): Paginator<ListWorkflowsCommandOutput>;
7
+ export declare const paginateListWorkflows: (config: TransferPaginationConfiguration, input: ListWorkflowsCommandInput, ...rest: any[]) => Paginator<ListWorkflowsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListAccessesCommandOutput,
5
5
  } from "../commands/ListAccessesCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListAccesses(
7
+ export declare const paginateListAccesses: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListAccessesCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListAccessesCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListAccessesCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListAgreementsCommandOutput,
5
5
  } from "../commands/ListAgreementsCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListAgreements(
7
+ export declare const paginateListAgreements: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListAgreementsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListAgreementsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListAgreementsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListCertificatesCommandOutput,
5
5
  } from "../commands/ListCertificatesCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListCertificates(
7
+ export declare const paginateListCertificates: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListCertificatesCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListCertificatesCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListCertificatesCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListConnectorsCommandOutput,
5
5
  } from "../commands/ListConnectorsCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListConnectors(
7
+ export declare const paginateListConnectors: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListConnectorsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListConnectorsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListConnectorsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListExecutionsCommandOutput,
5
5
  } from "../commands/ListExecutionsCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListExecutions(
7
+ export declare const paginateListExecutions: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListExecutionsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListExecutionsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListExecutionsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListProfilesCommandOutput,
5
5
  } from "../commands/ListProfilesCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListProfiles(
7
+ export declare const paginateListProfiles: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListProfilesCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListProfilesCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListProfilesCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListSecurityPoliciesCommandOutput,
5
5
  } from "../commands/ListSecurityPoliciesCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListSecurityPolicies(
7
+ export declare const paginateListSecurityPolicies: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListSecurityPoliciesCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListSecurityPoliciesCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListSecurityPoliciesCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListServersCommandOutput,
5
5
  } from "../commands/ListServersCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListServers(
7
+ export declare const paginateListServers: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListServersCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListServersCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListServersCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListTagsForResourceCommandOutput,
5
5
  } from "../commands/ListTagsForResourceCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListTagsForResource(
7
+ export declare const paginateListTagsForResource: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListTagsForResourceCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListTagsForResourceCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListTagsForResourceCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListUsersCommandOutput,
5
5
  } from "../commands/ListUsersCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListUsers(
7
+ export declare const paginateListUsers: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListUsersCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListUsersCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListUsersCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListWorkflowsCommandOutput,
5
5
  } from "../commands/ListWorkflowsCommand";
6
6
  import { TransferPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListWorkflows(
7
+ export declare const paginateListWorkflows: (
8
8
  config: TransferPaginationConfiguration,
9
9
  input: ListWorkflowsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListWorkflowsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListWorkflowsCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transfer",
3
3
  "description": "AWS SDK for JavaScript Transfer Client for Node.js, Browser and React Native",
4
- "version": "3.477.0",
4
+ "version": "3.478.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",
@@ -20,20 +20,21 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.477.0",
23
+ "@aws-sdk/client-sts": "3.478.0",
24
24
  "@aws-sdk/core": "3.477.0",
25
- "@aws-sdk/credential-provider-node": "3.477.0",
25
+ "@aws-sdk/credential-provider-node": "3.478.0",
26
26
  "@aws-sdk/middleware-host-header": "3.468.0",
27
27
  "@aws-sdk/middleware-logger": "3.468.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.468.0",
29
29
  "@aws-sdk/middleware-signing": "3.468.0",
30
- "@aws-sdk/middleware-user-agent": "3.470.0",
30
+ "@aws-sdk/middleware-user-agent": "3.478.0",
31
31
  "@aws-sdk/region-config-resolver": "3.470.0",
32
32
  "@aws-sdk/types": "3.468.0",
33
- "@aws-sdk/util-endpoints": "3.470.0",
33
+ "@aws-sdk/util-endpoints": "3.478.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.468.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.470.0",
36
36
  "@smithy/config-resolver": "^2.0.21",
37
+ "@smithy/core": "^1.2.0",
37
38
  "@smithy/fetch-http-handler": "^2.3.1",
38
39
  "@smithy/hash-node": "^2.0.17",
39
40
  "@smithy/invalid-dependency": "^2.0.15",