@aws-sdk/client-signer 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.paginateListSigningJobs = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListSigningJobsCommand_1 = require("../commands/ListSigningJobsCommand");
5
6
  const SignerClient_1 = require("../SignerClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListSigningJobsCommand_1.ListSigningJobsCommand(input), ...args);
8
- };
9
- async function* paginateListSigningJobs(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 SignerClient_1.SignerClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Signer | SignerClient");
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.paginateListSigningJobs = paginateListSigningJobs;
7
+ exports.paginateListSigningJobs = (0, core_1.createPaginator)(SignerClient_1.SignerClient, ListSigningJobsCommand_1.ListSigningJobsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListSigningPlatforms = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListSigningPlatformsCommand_1 = require("../commands/ListSigningPlatformsCommand");
5
6
  const SignerClient_1 = require("../SignerClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListSigningPlatformsCommand_1.ListSigningPlatformsCommand(input), ...args);
8
- };
9
- async function* paginateListSigningPlatforms(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 SignerClient_1.SignerClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Signer | SignerClient");
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.paginateListSigningPlatforms = paginateListSigningPlatforms;
7
+ exports.paginateListSigningPlatforms = (0, core_1.createPaginator)(SignerClient_1.SignerClient, ListSigningPlatformsCommand_1.ListSigningPlatformsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListSigningProfiles = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListSigningProfilesCommand_1 = require("../commands/ListSigningProfilesCommand");
5
6
  const SignerClient_1 = require("../SignerClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListSigningProfilesCommand_1.ListSigningProfilesCommand(input), ...args);
8
- };
9
- async function* paginateListSigningProfiles(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 SignerClient_1.SignerClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Signer | SignerClient");
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.paginateListSigningProfiles = paginateListSigningProfiles;
7
+ exports.paginateListSigningProfiles = (0, core_1.createPaginator)(SignerClient_1.SignerClient, ListSigningProfilesCommand_1.ListSigningProfilesCommand, "nextToken", "nextToken", "maxResults");