(sessionId?: SessionId)
| 60 | * This should be called on /clear to ensure a fresh plan file is used. |
| 61 | */ |
| 62 | export function clearPlanSlug(sessionId?: SessionId): void { |
| 63 | const id = sessionId ?? getSessionId() |
| 64 | getPlanSlugCache().delete(id) |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Clear ALL plan slug entries (all sessions). |
nothing calls this directly
no test coverage detected