@flowcore/sdk 1.11.7 → 1.11.8
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
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.11.8](https://github.com/flowcore-io/flowcore-sdk/compare/v1.11.7...v1.11.8) (2025-02-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* tiebucket input cursor is number ([67515dd](https://github.com/flowcore-io/flowcore-sdk/commit/67515dd731343b81c76512172572f5362e56535c))
|
|
9
|
+
|
|
3
10
|
## [1.11.7](https://github.com/flowcore-io/flowcore-sdk/compare/v1.11.6...v1.11.7) (2025-02-13)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -12,7 +12,7 @@ export interface EventsFetchTimeBucketsByNamesInput {
|
|
|
12
12
|
/** the event type names */
|
|
13
13
|
eventTypes: string[];
|
|
14
14
|
/** the paging cursor */
|
|
15
|
-
cursor?:
|
|
15
|
+
cursor?: number;
|
|
16
16
|
/** the page size (default is 10.000) */
|
|
17
17
|
pageSize?: number;
|
|
18
18
|
/** start from this time bucket */
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ export interface EventsFetchTimeBucketsByNamesInput {
|
|
|
12
12
|
/** the event type names */
|
|
13
13
|
eventTypes: string[];
|
|
14
14
|
/** the paging cursor */
|
|
15
|
-
cursor?:
|
|
15
|
+
cursor?: number;
|
|
16
16
|
/** the page size (default is 10.000) */
|
|
17
17
|
pageSize?: number;
|
|
18
18
|
/** start from this time bucket */
|