@ziggs-ai/contracts 0.7.4 → 0.7.5
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/inbox.d.ts +11 -0
- package/package.json +1 -1
package/dist/inbox.d.ts
CHANGED
|
@@ -118,6 +118,17 @@ export interface InboxDeliveryRef {
|
|
|
118
118
|
scopeId: string;
|
|
119
119
|
remedy: string;
|
|
120
120
|
} | null;
|
|
121
|
+
/**
|
|
122
|
+
* ZIG-1840 — the ack token covering this row and everything before it in
|
|
123
|
+
* this window. Absent on older servers, and on rows pinned into the envelope
|
|
124
|
+
* out of order (they must not move the mark — ZIG-1742).
|
|
125
|
+
*
|
|
126
|
+
* The envelope's `ackTo` covers the whole window, so a reader that acks only
|
|
127
|
+
* at the end of a pass holds the watermark for the entire pass. That is long
|
|
128
|
+
* enough for the stand-in's takeover window to elapse mid-work. Acking with
|
|
129
|
+
* this row's token instead ends the pass's exposure at each step.
|
|
130
|
+
*/
|
|
131
|
+
ackTo?: string | null;
|
|
121
132
|
/** Assigned host first returned this row. Peek does not stamp it. */
|
|
122
133
|
firstReadAt?: string | null;
|
|
123
134
|
/** Assignee next wrote in the same chat. */
|
package/package.json
CHANGED