@flowcore/sdk 1.35.0 → 1.35.1
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.35.1](https://github.com/flowcore-io/flowcore-sdk/compare/v1.35.0...v1.35.1) (2025-04-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **event-type:** :bug: ensure pageSize does not exceed 100 ([90f868a](https://github.com/flowcore-io/flowcore-sdk/commit/90f868a761371bafcad1a6b20c931f1d2f89eb53))
|
|
9
|
+
|
|
3
10
|
## [1.35.0](https://github.com/flowcore-io/flowcore-sdk/compare/v1.34.0...v1.35.0) (2025-04-24)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -22,7 +22,7 @@ export class EventTypeInfoCommand extends CustomCommand {
|
|
|
22
22
|
tenant: this.input.tenant,
|
|
23
23
|
eventTypeId: this.input.eventTypeId,
|
|
24
24
|
order: "desc",
|
|
25
|
-
pageSize: lastEventsLimit,
|
|
25
|
+
pageSize: Math.max(lastEventsLimit, 100),
|
|
26
26
|
});
|
|
27
27
|
const [firstTimeBucketResponse, lastTimeBucketResponse] = await Promise.all([
|
|
28
28
|
client.execute(firstTimeBucketCommand),
|
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ class EventTypeInfoCommand extends command_custom_js_1.CustomCommand {
|
|
|
25
25
|
tenant: this.input.tenant,
|
|
26
26
|
eventTypeId: this.input.eventTypeId,
|
|
27
27
|
order: "desc",
|
|
28
|
-
pageSize: lastEventsLimit,
|
|
28
|
+
pageSize: Math.max(lastEventsLimit, 100),
|
|
29
29
|
});
|
|
30
30
|
const [firstTimeBucketResponse, lastTimeBucketResponse] = await Promise.all([
|
|
31
31
|
client.execute(firstTimeBucketCommand),
|