@fleettools/events 0.1.1 → 0.2.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/dist/index.js CHANGED
@@ -1,4 +1,3 @@
1
- // @bun
2
1
  var __defProp = Object.defineProperty;
3
2
  var __export = (target, all) => {
4
3
  for (var name in all)
@@ -4357,7 +4356,7 @@ var FleetEventSchema = exports_external.discriminatedUnion("type", [
4357
4356
  CursorMovedSchema
4358
4357
  ]);
4359
4358
  // ../core/dist/index.js
4360
- import { randomUUID } from "crypto";
4359
+ import { randomUUID } from "node:crypto";
4361
4360
  function generateUUID() {
4362
4361
  return randomUUID();
4363
4362
  }
@@ -4736,7 +4735,7 @@ async function replayEvents(db, events, projectKey) {
4736
4735
  for (const event of eventsToReplay) {
4737
4736
  await handleEvent(db, event, event.project_key);
4738
4737
  }
4739
- console.log("\u2705 Event replay completed");
4738
+ console.log(" Event replay completed");
4740
4739
  }
4741
4740
  async function replayEventsFromSequence(db, projectKey, fromSequence) {
4742
4741
  const eventStore = EventStore.fromDb(db);