@aws-sdk/client-amplify 3.476.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.
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListApps = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyClient_1 = require("../AmplifyClient");
5
6
  const ListAppsCommand_1 = require("../commands/ListAppsCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListAppsCommand_1.ListAppsCommand(input), ...args);
8
- };
9
- async function* paginateListApps(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 AmplifyClient_1.AmplifyClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Amplify | AmplifyClient");
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.paginateListApps = paginateListApps;
7
+ exports.paginateListApps = (0, core_1.createPaginator)(AmplifyClient_1.AmplifyClient, ListAppsCommand_1.ListAppsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListBranches = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyClient_1 = require("../AmplifyClient");
5
6
  const ListBranchesCommand_1 = require("../commands/ListBranchesCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListBranchesCommand_1.ListBranchesCommand(input), ...args);
8
- };
9
- async function* paginateListBranches(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 AmplifyClient_1.AmplifyClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Amplify | AmplifyClient");
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.paginateListBranches = paginateListBranches;
7
+ exports.paginateListBranches = (0, core_1.createPaginator)(AmplifyClient_1.AmplifyClient, ListBranchesCommand_1.ListBranchesCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListDomainAssociations = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyClient_1 = require("../AmplifyClient");
5
6
  const ListDomainAssociationsCommand_1 = require("../commands/ListDomainAssociationsCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListDomainAssociationsCommand_1.ListDomainAssociationsCommand(input), ...args);
8
- };
9
- async function* paginateListDomainAssociations(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 AmplifyClient_1.AmplifyClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Amplify | AmplifyClient");
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.paginateListDomainAssociations = paginateListDomainAssociations;
7
+ exports.paginateListDomainAssociations = (0, core_1.createPaginator)(AmplifyClient_1.AmplifyClient, ListDomainAssociationsCommand_1.ListDomainAssociationsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListJobs = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const AmplifyClient_1 = require("../AmplifyClient");
5
6
  const ListJobsCommand_1 = require("../commands/ListJobsCommand");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListJobsCommand_1.ListJobsCommand(input), ...args);
8
- };
9
- async function* paginateListJobs(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 AmplifyClient_1.AmplifyClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Amplify | AmplifyClient");
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.paginateListJobs = paginateListJobs;
7
+ exports.paginateListJobs = (0, core_1.createPaginator)(AmplifyClient_1.AmplifyClient, ListJobsCommand_1.ListJobsCommand, "nextToken", "nextToken", "maxResults");