@builder.io/ai-utils 0.15.0 → 0.16.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/projects.d.ts CHANGED
@@ -347,6 +347,10 @@ interface BranchSharedData {
347
347
  vscodeTunnelUrl?: string | null;
348
348
  vscodeTunnelName?: string | null;
349
349
  vscodeTunnelExpiresAt?: string | null;
350
+ /** Timestamp when an AI agent started activity on this branch, null when inactive (in milliseconds since epoch) */
351
+ lastAgentActivityAt?: number | null;
352
+ /** Timestamp of last activity on this branch - includes both agent and user activity (in milliseconds since epoch) */
353
+ lastActivityAt?: number;
350
354
  }
351
355
  /**
352
356
  * fields that are required in the new branch format, but optional in the legacy branch format.
@@ -359,6 +363,7 @@ interface RequiredBranchSharedData {
359
363
  sessionId: string;
360
364
  createdAt: number;
361
365
  updatedAt: string;
366
+ lastUpdatedAt: number;
362
367
  commitMode: CommitMode;
363
368
  }
364
369
  /**