mailery 0.8.0 → 0.8.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.
@@ -848,6 +848,12 @@ interface FlowRunDoc {
848
848
  properties: Record<string, unknown>;
849
849
  occurredAt: Date;
850
850
  } | null;
851
+ /**
852
+ * Dedupe key of the triggering event. Unique per flow (partial index) so the
853
+ * trigger scan's overlap window can re-read an event without creating a
854
+ * second run. Null for non-event entries (manual/API).
855
+ */
856
+ triggerDedupeKey?: string | null;
851
857
  enteredAt: Date;
852
858
  status: FlowRunStatus;
853
859
  currentStepIndex: number;
@@ -848,6 +848,12 @@ interface FlowRunDoc {
848
848
  properties: Record<string, unknown>;
849
849
  occurredAt: Date;
850
850
  } | null;
851
+ /**
852
+ * Dedupe key of the triggering event. Unique per flow (partial index) so the
853
+ * trigger scan's overlap window can re-read an event without creating a
854
+ * second run. Null for non-event entries (manual/API).
855
+ */
856
+ triggerDedupeKey?: string | null;
851
857
  enteredAt: Date;
852
858
  status: FlowRunStatus;
853
859
  currentStepIndex: number;