@flowcore/sdk 1.11.6 → 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,19 @@
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
+
10
+ ## [1.11.7](https://github.com/flowcore-io/flowcore-sdk/compare/v1.11.6...v1.11.7) (2025-02-13)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * next cursor in timebuckets is a number ([4cfb89f](https://github.com/flowcore-io/flowcore-sdk/commit/4cfb89f58bf69898df3e7dd9bbe2c28ff93078de))
16
+
3
17
  ## [1.11.6](https://github.com/flowcore-io/flowcore-sdk/compare/v1.11.5...v1.11.6) (2025-02-13)
4
18
 
5
19
 
@@ -12,7 +12,7 @@ export interface EventsFetchTimeBucketsByNamesInput {
12
12
  /** the event type names */
13
13
  eventTypes: string[];
14
14
  /** the paging cursor */
15
- cursor?: string;
15
+ cursor?: number;
16
16
  /** the page size (default is 10.000) */
17
17
  pageSize?: number;
18
18
  /** start from this time bucket */
@@ -27,7 +27,7 @@ export interface EventsFetchTimeBucketsByNamesOutput {
27
27
  /** the time buckets */
28
28
  timeBuckets: string[];
29
29
  /** the next page cursor */
30
- nextCursor?: string;
30
+ nextCursor?: number;
31
31
  }
32
32
  /**
33
33
  * Fetch time buckets for an event type
@@ -6,7 +6,7 @@ import { Command } from "../../common/command.js";
6
6
  */
7
7
  const responseSchema = Type.Object({
8
8
  timeBuckets: Type.Array(Type.String()),
9
- nextCursor: Type.Optional(Type.String()),
9
+ nextCursor: Type.Optional(Type.Number()),
10
10
  });
11
11
  /**
12
12
  * Fetch time buckets for an event type
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowcore/sdk",
3
- "version": "1.11.6",
3
+ "version": "1.11.8",
4
4
  "description": "Flowcore SDK",
5
5
  "homepage": "https://github.com/flowcore-io/flowcore-sdk#readme",
6
6
  "repository": {
@@ -12,7 +12,7 @@ export interface EventsFetchTimeBucketsByNamesInput {
12
12
  /** the event type names */
13
13
  eventTypes: string[];
14
14
  /** the paging cursor */
15
- cursor?: string;
15
+ cursor?: number;
16
16
  /** the page size (default is 10.000) */
17
17
  pageSize?: number;
18
18
  /** start from this time bucket */
@@ -27,7 +27,7 @@ export interface EventsFetchTimeBucketsByNamesOutput {
27
27
  /** the time buckets */
28
28
  timeBuckets: string[];
29
29
  /** the next page cursor */
30
- nextCursor?: string;
30
+ nextCursor?: number;
31
31
  }
32
32
  /**
33
33
  * Fetch time buckets for an event type
@@ -9,7 +9,7 @@ const command_js_1 = require("../../common/command.js");
9
9
  */
10
10
  const responseSchema = typebox_1.Type.Object({
11
11
  timeBuckets: typebox_1.Type.Array(typebox_1.Type.String()),
12
- nextCursor: typebox_1.Type.Optional(typebox_1.Type.String()),
12
+ nextCursor: typebox_1.Type.Optional(typebox_1.Type.Number()),
13
13
  });
14
14
  /**
15
15
  * Fetch time buckets for an event type