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.
- package/dist/index.cjs +788 -659
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +788 -659
- package/dist/index.js.map +1 -1
- package/dist/{null-BCxlHRJ0.d.cts → null-CwXmiVLe.d.cts} +6 -0
- package/dist/{null-BCxlHRJ0.d.ts → null-CwXmiVLe.d.ts} +6 -0
- package/dist/testing.cjs +685 -556
- package/dist/testing.cjs.map +1 -1
- package/dist/testing.d.cts +2 -2
- package/dist/testing.d.ts +2 -2
- package/dist/testing.js +685 -556
- package/dist/testing.js.map +1 -1
- package/package.json +2 -2
|
@@ -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;
|