@ziggs-ai/contracts 0.7.2 → 0.7.4
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 +21 -0
- package/package.json +1 -1
package/dist/inbox.d.ts
CHANGED
|
@@ -101,6 +101,27 @@ export interface InboxDeliveryRef {
|
|
|
101
101
|
to: string;
|
|
102
102
|
cause: string;
|
|
103
103
|
}>;
|
|
104
|
+
/**
|
|
105
|
+
* ZIG-1820 — present when the reader holds nothing that opens this row's
|
|
106
|
+
* container. The pointer is in their mail, the content is not.
|
|
107
|
+
*
|
|
108
|
+
* A row lands in a mailbox by participation; the read behind it is gated by
|
|
109
|
+
* a grant. The two can disagree — a grant expires, a room is left, admission
|
|
110
|
+
* never minted one — and before this the protocol stamped the row as the
|
|
111
|
+
* reader's work and pre-filled a read that refused. A row carrying this is
|
|
112
|
+
* reported with `assigneeId: null` and `needsHuman: true`: it is not the
|
|
113
|
+
* agent's to handle, it does not block their ack, and it is not planned as a
|
|
114
|
+
* read. `remedy` says in one line what would put it in reach.
|
|
115
|
+
*/
|
|
116
|
+
outOfReach?: {
|
|
117
|
+
scopeKind: 'chat' | 'agreement' | 'task';
|
|
118
|
+
scopeId: string;
|
|
119
|
+
remedy: string;
|
|
120
|
+
} | null;
|
|
121
|
+
/** Assigned host first returned this row. Peek does not stamp it. */
|
|
122
|
+
firstReadAt?: string | null;
|
|
123
|
+
/** Assignee next wrote in the same chat. */
|
|
124
|
+
firstReplyAt?: string | null;
|
|
104
125
|
}
|
|
105
126
|
/**
|
|
106
127
|
* One thing on the person, from whichever writer owns it.
|
package/package.json
CHANGED