@fork-api/chat-sdk 0.1.184 → 0.1.185
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 +7 -7
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +7 -7
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -124,6 +124,9 @@ interface ForkActivity {
|
|
|
124
124
|
createdAt: string;
|
|
125
125
|
updatedAt: string;
|
|
126
126
|
completedAt?: string | null;
|
|
127
|
+
/** Newest initial/follow_up completion — the notification anchor;
|
|
128
|
+
* lifecycle plumbing never advances it. */
|
|
129
|
+
lastFeatureCompletedAt?: string | null;
|
|
127
130
|
unread?: boolean;
|
|
128
131
|
}
|
|
129
132
|
interface ForkActivitySummary {
|
package/dist/index.d.ts
CHANGED
|
@@ -124,6 +124,9 @@ interface ForkActivity {
|
|
|
124
124
|
createdAt: string;
|
|
125
125
|
updatedAt: string;
|
|
126
126
|
completedAt?: string | null;
|
|
127
|
+
/** Newest initial/follow_up completion — the notification anchor;
|
|
128
|
+
* lifecycle plumbing never advances it. */
|
|
129
|
+
lastFeatureCompletedAt?: string | null;
|
|
127
130
|
unread?: boolean;
|
|
128
131
|
}
|
|
129
132
|
interface ForkActivitySummary {
|