chore: Update sqllab types (#11887)

This commit is contained in:
Hugh A. Miles II 2020-12-02 10:11:26 -08:00 committed by GitHub
parent 1842c56209
commit 0c10f9ee3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,8 +41,10 @@ export type Query = {
columns: Column[]; columns: Column[];
data: Record<string, unknown>[]; data: Record<string, unknown>[];
expanded_columns: Column[]; expanded_columns: Column[];
selected_columns: Column[];
}; };
resultsKey: string | null; resultsKey: string | null;
schema: string;
sql: string; sql: string;
sqlEditorId: string; sqlEditorId: string;
state: state:
@ -53,7 +55,9 @@ export type Query = {
| 'scheduled' | 'scheduled'
| 'success' | 'success'
| 'timed_out'; | 'timed_out';
tab: string | null;
tempSchema: string | null; tempSchema: string | null;
tempTable: string; tempTable: string;
trackingUrl: string | null; trackingUrl: string | null;
templateParams: any;
}; };