@flowcore/data-pump 0.12.2 → 0.12.3

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
+ ## [0.12.3](https://github.com/flowcore-io/data-pump/compare/v0.12.2...v0.12.3) (2025-05-01)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * fix for fetch events ([b3444db](https://github.com/flowcore-io/data-pump/commit/b3444db7d95bf61114c2c593825322e5e7925b07))
9
+
3
10
  ## [0.12.2](https://github.com/flowcore-io/data-pump/compare/v0.12.1...v0.12.2) (2025-04-30)
4
11
 
5
12
 
@@ -256,7 +256,7 @@ export class FlowcoreDataSource {
256
256
  tenant: this.options.dataSource.tenant,
257
257
  eventTypeId: eventTypeIds,
258
258
  timeBucket: from.timeBucket,
259
- // afterEventId: from.eventId,
259
+ afterEventId: !cursor ? from.eventId : undefined,
260
260
  pageSize: amount,
261
261
  toEventId,
262
262
  cursor,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowcore/data-pump",
3
- "version": "0.12.2",
3
+ "version": "0.12.3",
4
4
  "description": "Flowcore Data Pump",
5
5
  "homepage": "https://github.com/flowcore-io/flowcore-data-pump#readme",
6
6
  "repository": {
@@ -259,7 +259,7 @@ class FlowcoreDataSource {
259
259
  tenant: this.options.dataSource.tenant,
260
260
  eventTypeId: eventTypeIds,
261
261
  timeBucket: from.timeBucket,
262
- // afterEventId: from.eventId,
262
+ afterEventId: !cursor ? from.eventId : undefined,
263
263
  pageSize: amount,
264
264
  toEventId,
265
265
  cursor,