@ziggs-ai/contracts 0.7.1 → 0.7.2
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 +10 -0
- package/package.json +1 -1
package/dist/inbox.d.ts
CHANGED
|
@@ -91,6 +91,16 @@ export interface InboxDeliveryRef {
|
|
|
91
91
|
connectionId?: string | null;
|
|
92
92
|
/** Grant minted for the requesting agent on fulfill. */
|
|
93
93
|
grantId?: string | null;
|
|
94
|
+
/**
|
|
95
|
+
* Each time the wake owner moved. Absent on rows that never hopped.
|
|
96
|
+
* `from` is null when the first stamp was the person (needs-you, no agent).
|
|
97
|
+
*/
|
|
98
|
+
hopHistory?: Array<{
|
|
99
|
+
at: string;
|
|
100
|
+
from: string | null;
|
|
101
|
+
to: string;
|
|
102
|
+
cause: string;
|
|
103
|
+
}>;
|
|
94
104
|
}
|
|
95
105
|
/**
|
|
96
106
|
* One thing on the person, from whichever writer owns it.
|
package/package.json
CHANGED