Merge pull request #2218 from HenkDz/feat/external-adapter-phase1

feat(adapters): external adapter plugin system with dynamic UI parser
This commit is contained in:
Dotta 2026-04-04 17:45:19 -05:00 committed by GitHub
commit 35f2fc7230
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
87 changed files with 5819 additions and 605 deletions

View file

@ -144,4 +144,7 @@ export const queryKeys = {
dashboard: (pluginId: string) => ["plugins", pluginId, "dashboard"] as const,
logs: (pluginId: string) => ["plugins", pluginId, "logs"] as const,
},
adapters: {
all: ["adapters"] as const,
},
};