Merge from vscode merge-base (#22780)

* Revert "Revert "Merge from vscode merge-base (#22769)" (#22779)"

This reverts commit 47a1745180.

* Fix notebook download task

* Remove done call from extensions-ci
This commit is contained in:
Karl Burtram
2023-04-19 21:48:46 -07:00
committed by GitHub
parent decbe8dded
commit e7d3d047ec
2389 changed files with 92155 additions and 42602 deletions

5
src/sql/azdata.d.ts vendored
View File

@@ -4761,6 +4761,7 @@ declare module 'azdata' {
* @deprecated please use the method createModelViewDialog(title: string, dialogName?: string, width?: DialogWidth) instead.
* Create a dialog with the given title
* @param title The title of the dialog, displayed at the top
* @param dialogName Name of the dialog.
* @param isWide Indicates whether the dialog is wide or normal
*/
export function createModelViewDialog(title: string, dialogName?: string, isWide?: boolean): Dialog;
@@ -5391,6 +5392,7 @@ declare module 'azdata' {
*/
export function getQueryDocument(fileUri: string): Thenable<QueryDocument>;
/* eslint-disable */
/**
* Opens an untitled text document. The editor will prompt the user for a file
* path when the document is to be saved. The `options` parameter allows to
@@ -5401,6 +5403,7 @@ declare module 'azdata' {
* @return A promise that resolves to a {@link QueryDocument}.
*/
export function openQueryDocument(options?: { content?: string; }, providerId?: string): Thenable<QueryDocument>;
/* eslint-enable */
}
/**
@@ -5655,6 +5658,7 @@ declare module 'azdata' {
*/
export const onDidChangeActiveNotebookEditor: vscode.Event<NotebookEditor>;
/* eslint-disable */
/**
* Show the given document in a notebook editor. A {@link vscode.ViewColumn} can be provided
* to control where the editor is being shown. Might change the {@link nb.activeNotebookEditor}.
@@ -5674,6 +5678,7 @@ declare module 'azdata' {
* @return A promise that resolves to a {@link NotebookEditor}.
*/
export function showNotebookDocument(uri: vscode.Uri, showOptions?: NotebookShowOptions): Thenable<NotebookEditor>;
/* eslint-enable */
export interface NotebookDocument {
/**