From d0561e16e0ae6fba8a4e87898b33b7b4eafbf83c Mon Sep 17 00:00:00 2001 From: Enzo Martellucci Date: Mon, 25 May 2026 15:04:36 +0200 Subject: [PATCH] feat(extensions): add superset.chatbot contribution point (SIP P1.1) - Add `app` scope and `AppLocation` type to `ViewContributions` manifest schema - Add host-internal `getViewProvider` and `getRegisteredViewIds` accessors to the views registry - Add `getActiveChatbot` resolver with first-to-register fallback policy - Mount `ChatbotMount` in the app shell (fixed bottom-right, persists across routes --- .../packages/superset-core/src/contributions/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/superset-frontend/packages/superset-core/src/contributions/index.ts b/superset-frontend/packages/superset-core/src/contributions/index.ts index 42dddd90647..f25939b1ac1 100644 --- a/superset-frontend/packages/superset-core/src/contributions/index.ts +++ b/superset-frontend/packages/superset-core/src/contributions/index.ts @@ -23,6 +23,7 @@ import { Menu } from '../menus'; export type { ChatbotView }; + export type SqlLabLocation = | 'leftSidebar' | 'rightSidebar'