@ziggs-ai/contracts 0.7.2 → 0.7.3

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.
Files changed (2) hide show
  1. package/dist/inbox.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/inbox.d.ts CHANGED
@@ -101,6 +101,10 @@ export interface InboxDeliveryRef {
101
101
  to: string;
102
102
  cause: string;
103
103
  }>;
104
+ /** Assigned host first returned this row. Peek does not stamp it. */
105
+ firstReadAt?: string | null;
106
+ /** Assignee next wrote in the same chat. */
107
+ firstReplyAt?: string | null;
104
108
  }
105
109
  /**
106
110
  * One thing on the person, from whichever writer owns it.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ziggs-ai/contracts",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "Wire contracts for the Ziggs API — response shapes, error body, and socket events, shared by every client.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",