Merge branch 'ads-master-vscode-2020-05-31T19-47-47'

This commit is contained in:
Anthony Dresser
2020-06-03 14:05:57 -07:00
918 changed files with 28258 additions and 15562 deletions

View File

@@ -15,7 +15,6 @@ import { CellType, NotebookChangeType } from 'sql/workbench/services/notebook/co
import { INotebookManager, ILanguageMagic } from 'sql/workbench/services/notebook/browser/notebookService';
import { IConnectionProfile } from 'sql/platform/connection/common/interfaces';
import { IConnectionManagementService } from 'sql/platform/connection/common/connectionManagement';
import { ISingleNotebookEditOperation } from 'sql/workbench/api/common/sqlExtHostTypes';
import { IStandardKernelWithProvider } from 'sql/workbench/services/notebook/browser/models/notebookUtils';
import { ConnectionProfile } from 'sql/platform/connection/common/connectionProfile';
import { ICapabilitiesService } from 'sql/platform/capabilities/common/capabilitiesService';
@@ -23,6 +22,17 @@ import { NotebookModel } from 'sql/workbench/services/notebook/browser/models/no
import { IModelContentChangedEvent } from 'vs/editor/common/model/textModelEvents';
import type { FutureInternal } from 'sql/workbench/services/notebook/browser/interfaces';
export interface ICellRange {
readonly start: number;
readonly end: number;
}
export interface ISingleNotebookEditOperation {
range: ICellRange;
cell: Partial<nb.ICellContents>;
forceMoveMarkers: boolean;
}
export interface IClientSessionOptions {
notebookUri: URI;
notebookManager: INotebookManager;