diff --git a/superset-frontend/src/SqlLab/types.ts b/superset-frontend/src/SqlLab/types.ts index 0fe83a7f5e..4189a29757 100644 --- a/superset-frontend/src/SqlLab/types.ts +++ b/superset-frontend/src/SqlLab/types.ts @@ -41,8 +41,10 @@ export type Query = { columns: Column[]; data: Record[]; expanded_columns: Column[]; + selected_columns: Column[]; }; resultsKey: string | null; + schema: string; sql: string; sqlEditorId: string; state: @@ -53,7 +55,9 @@ export type Query = { | 'scheduled' | 'success' | 'timed_out'; + tab: string | null; tempSchema: string | null; tempTable: string; trackingUrl: string | null; + templateParams: any; };