(workspaceId: string, timestamp?: number)
| 2408 | } |
| 2409 | |
| 2410 | private async updateRecencyTimestamp(workspaceId: string, timestamp?: number): Promise<void> { |
| 2411 | await this.emitWorkspaceActivityUpdate(workspaceId, "update workspace recency", () => |
| 2412 | this.extensionMetadata.updateRecency(workspaceId, timestamp ?? Date.now()) |
| 2413 | ); |
| 2414 | } |
| 2415 | |
| 2416 | public async updateAgentStatus( |
| 2417 | workspaceId: string, |
no test coverage detected