@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 +1 -1
- package/src/projects.d.ts +5 -0
package/package.json
CHANGED
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
|
/**
|