@aws-sdk/client-kinesis 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.paginateListStreamConsumers = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListStreamConsumersCommand_1 = require("../commands/ListStreamConsumersCommand");
5
6
  const KinesisClient_1 = require("../KinesisClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListStreamConsumersCommand_1.ListStreamConsumersCommand(input), ...args);
8
- };
9
- async function* paginateListStreamConsumers(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 KinesisClient_1.KinesisClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Kinesis | KinesisClient");
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.paginateListStreamConsumers = paginateListStreamConsumers;
7
+ exports.paginateListStreamConsumers = (0, core_1.createPaginator)(KinesisClient_1.KinesisClient, ListStreamConsumersCommand_1.ListStreamConsumersCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,29 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.paginateListStreams = void 0;
4
+ const core_1 = require("@smithy/core");
4
5
  const ListStreamsCommand_1 = require("../commands/ListStreamsCommand");
5
6
  const KinesisClient_1 = require("../KinesisClient");
6
- const makePagedClientRequest = async (client, input, ...args) => {
7
- return await client.send(new ListStreamsCommand_1.ListStreamsCommand(input), ...args);
8
- };
9
- async function* paginateListStreams(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["Limit"] = config.pageSize;
16
- if (config.client instanceof KinesisClient_1.KinesisClient) {
17
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
18
- }
19
- else {
20
- throw new Error("Invalid client, expected Kinesis | KinesisClient");
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.paginateListStreams = paginateListStreams;
7
+ exports.paginateListStreams = (0, core_1.createPaginator)(KinesisClient_1.KinesisClient, ListStreamsCommand_1.ListStreamsCommand, "NextToken", "NextToken", "Limit");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListStreamConsumersCommand, } from "../commands/ListStreamConsumersCommand";
2
3
  import { KinesisClient } from "../KinesisClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListStreamConsumersCommand(input), ...args);
5
- };
6
- export async function* paginateListStreamConsumers(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 KinesisClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Kinesis | KinesisClient");
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 paginateListStreamConsumers = createPaginator(KinesisClient, ListStreamConsumersCommand, "NextToken", "NextToken", "MaxResults");
@@ -1,25 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
1
2
  import { ListStreamsCommand } from "../commands/ListStreamsCommand";
2
3
  import { KinesisClient } from "../KinesisClient";
3
- const makePagedClientRequest = async (client, input, ...args) => {
4
- return await client.send(new ListStreamsCommand(input), ...args);
5
- };
6
- export async function* paginateListStreams(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["Limit"] = config.pageSize;
13
- if (config.client instanceof KinesisClient) {
14
- page = await makePagedClientRequest(config.client, input, ...additionalArguments);
15
- }
16
- else {
17
- throw new Error("Invalid client, expected Kinesis | KinesisClient");
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 paginateListStreams = createPaginator(KinesisClient, ListStreamsCommand, "NextToken", "NextToken", "Limit");
@@ -4,4 +4,4 @@ import { KinesisPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListStreamConsumers(config: KinesisPaginationConfiguration, input: ListStreamConsumersCommandInput, ...additionalArguments: any): Paginator<ListStreamConsumersCommandOutput>;
7
+ export declare const paginateListStreamConsumers: (config: KinesisPaginationConfiguration, input: ListStreamConsumersCommandInput, ...rest: any[]) => Paginator<ListStreamConsumersCommandOutput>;
@@ -4,4 +4,4 @@ import { KinesisPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
7
- export declare function paginateListStreams(config: KinesisPaginationConfiguration, input: ListStreamsCommandInput, ...additionalArguments: any): Paginator<ListStreamsCommandOutput>;
7
+ export declare const paginateListStreams: (config: KinesisPaginationConfiguration, input: ListStreamsCommandInput, ...rest: any[]) => Paginator<ListStreamsCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListStreamConsumersCommandOutput,
5
5
  } from "../commands/ListStreamConsumersCommand";
6
6
  import { KinesisPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListStreamConsumers(
7
+ export declare const paginateListStreamConsumers: (
8
8
  config: KinesisPaginationConfiguration,
9
9
  input: ListStreamConsumersCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListStreamConsumersCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListStreamConsumersCommandOutput>;
@@ -4,8 +4,8 @@ import {
4
4
  ListStreamsCommandOutput,
5
5
  } from "../commands/ListStreamsCommand";
6
6
  import { KinesisPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListStreams(
7
+ export declare const paginateListStreams: (
8
8
  config: KinesisPaginationConfiguration,
9
9
  input: ListStreamsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListStreamsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListStreamsCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis",
3
3
  "description": "AWS SDK for JavaScript Kinesis Client for Node.js, Browser and React Native",
4
- "version": "3.476.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",
@@ -21,20 +21,21 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.476.0",
25
- "@aws-sdk/core": "3.476.0",
26
- "@aws-sdk/credential-provider-node": "3.476.0",
24
+ "@aws-sdk/client-sts": "3.478.0",
25
+ "@aws-sdk/core": "3.477.0",
26
+ "@aws-sdk/credential-provider-node": "3.478.0",
27
27
  "@aws-sdk/middleware-host-header": "3.468.0",
28
28
  "@aws-sdk/middleware-logger": "3.468.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.468.0",
30
30
  "@aws-sdk/middleware-signing": "3.468.0",
31
- "@aws-sdk/middleware-user-agent": "3.470.0",
31
+ "@aws-sdk/middleware-user-agent": "3.478.0",
32
32
  "@aws-sdk/region-config-resolver": "3.470.0",
33
33
  "@aws-sdk/types": "3.468.0",
34
- "@aws-sdk/util-endpoints": "3.470.0",
34
+ "@aws-sdk/util-endpoints": "3.478.0",
35
35
  "@aws-sdk/util-user-agent-browser": "3.468.0",
36
36
  "@aws-sdk/util-user-agent-node": "3.470.0",
37
37
  "@smithy/config-resolver": "^2.0.21",
38
+ "@smithy/core": "^1.2.0",
38
39
  "@smithy/eventstream-serde-browser": "^2.0.15",
39
40
  "@smithy/eventstream-serde-config-resolver": "^2.0.15",
40
41
  "@smithy/eventstream-serde-node": "^2.0.15",