@aws-sdk/types 3.55.0 → 3.78.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.78.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.77.0...v3.78.0) (2022-04-26)
7
+
8
+
9
+ ### Features
10
+
11
+ * **types:** add pagination stopOnSameToken option ([#3524](https://github.com/aws/aws-sdk-js-v3/issues/3524)) ([9bf73e8](https://github.com/aws/aws-sdk-js-v3/commit/9bf73e81b8d9be9f12c72cbefbe26c502d1873c6))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.55.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.1...v3.55.0) (2022-03-21)
7
18
 
8
19
 
@@ -11,4 +11,12 @@ export interface PaginationConfiguration {
11
11
  client: Client<any, any, any>;
12
12
  pageSize?: number;
13
13
  startingToken?: any;
14
+ /**
15
+ * For some APIs, such as CloudWatchLogs events, the next page token will always
16
+ * be present.
17
+ *
18
+ * When true, this config field will have the paginator stop when the token doesn't change
19
+ * instead of when it is not present.
20
+ */
21
+ stopOnSameToken?: boolean;
14
22
  }
@@ -6,4 +6,6 @@ export interface PaginationConfiguration {
6
6
  client: Client<any, any, any>;
7
7
  pageSize?: number;
8
8
  startingToken?: any;
9
+
10
+ stopOnSameToken?: boolean;
9
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/types",
3
- "version": "3.55.0",
3
+ "version": "3.78.0",
4
4
  "main": "./dist-cjs/index.js",
5
5
  "module": "./dist-es/index.js",
6
6
  "types": "./dist-types/index.d.ts",