@flowcore/sdk 1.11.6 → 1.11.7

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.7](https://github.com/flowcore-io/flowcore-sdk/compare/v1.11.6...v1.11.7) (2025-02-13)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * next cursor in timebuckets is a number ([4cfb89f](https://github.com/flowcore-io/flowcore-sdk/commit/4cfb89f58bf69898df3e7dd9bbe2c28ff93078de))
9
+
3
10
  ## [1.11.6](https://github.com/flowcore-io/flowcore-sdk/compare/v1.11.5...v1.11.6) (2025-02-13)
4
11
 
5
12
 
@@ -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.7",
4
4
  "description": "Flowcore SDK",
5
5
  "homepage": "https://github.com/flowcore-io/flowcore-sdk#readme",
6
6
  "repository": {
@@ -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