Merge from master

This commit is contained in:
Raj Musuku
2019-02-21 17:56:04 -08:00
parent 5a146e34fa
commit 666ae11639
11482 changed files with 119352 additions and 255574 deletions

21
src/sql/sqlops.d.ts vendored
View File

@@ -234,20 +234,20 @@ declare module 'sqlops' {
}
/**
* Options for the actions that could happen after connecting is complete
*/
* Options for the actions that could happen after connecting is complete
*/
export interface IConnectionCompletionOptions {
/**
* Save the connection to MRU and settings (only save to setting if profile.saveProfile is set to true)
* Default is true.
*/
*/
saveConnection: boolean;
/**
* If true, open the dashboard after connection is complete.
* If undefined / false, dashboard won't be opened after connection completes.
* Default is false.
*/
*/
showDashboard?: boolean;
/**
@@ -1032,6 +1032,14 @@ declare module 'sqlops' {
* will be used instead.
*/
iconType?: string | SqlThemeIcon;
/**
* Informs who provides the children to a node, used by data explorer tree view api
*/
childProvider?: string;
/**
* Holds the connection profile for nodes, used by data explorer tree view api
*/
payload?: any;
}
/**
@@ -2367,6 +2375,11 @@ declare module 'sqlops' {
serverInfo: ServerInfo;
}
export class TreeItem extends vscode.TreeItem {
payload?: IConnectionProfile;
childProvider?: string;
}
export namespace tasks {
export interface ITaskHandler {