[Manager] Wrap manager requests with log wrapper (#3081)

This commit is contained in:
Christian Byrne
2025-03-16 08:37:17 -07:00
committed by GitHub
parent f583015a14
commit 2a860d72b2
3 changed files with 61 additions and 24 deletions

View File

@@ -16,6 +16,11 @@ export interface SearchOption<T> {
label: string
}
export type TaskLog = {
taskName: string
logs: string[]
}
enum ManagerPackState {
/** Pack is installed and enabled */
INSTALLED = 'installed',