@codingame/monaco-vscode-api 19.1.3 → 20.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/missing-services.js +141 -54
- package/package.json +8 -8
- package/services.d.ts +5 -5
- package/services.js +3 -3
- package/vscode/src/vs/base/browser/dom.d.ts +7 -5
- package/vscode/src/vs/base/browser/dom.js +21 -132
- package/vscode/src/vs/base/browser/domSanitize.d.ts +28 -0
- package/vscode/src/vs/base/browser/domSanitize.js +175 -0
- package/vscode/src/vs/base/browser/formattedTextRenderer.d.ts +2 -5
- package/vscode/src/vs/base/browser/formattedTextRenderer.js +13 -20
- package/vscode/src/vs/base/browser/markdownRenderer.d.ts +23 -13
- package/vscode/src/vs/base/browser/markdownRenderer.js +155 -126
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.d.ts +2 -0
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.js +9 -11
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +2 -0
- package/vscode/src/vs/base/browser/ui/button/button.js +24 -15
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/highlightedlabel/highlightedLabel.js +5 -10
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +9 -0
- package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.js +3 -21
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +7 -7
- package/vscode/src/vs/base/browser/ui/list/listPaging.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +2 -0
- package/vscode/src/vs/base/browser/ui/list/listWidget.js +3 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/abstractScrollbar.js +9 -5
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.js +48 -1
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElementOptions.d.ts +2 -0
- package/vscode/src/vs/base/browser/ui/toggle/toggle.css +0 -3
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +22 -12
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +93 -33
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +3 -0
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.d.ts +3 -1
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +19 -17
- package/vscode/src/vs/base/browser/webWorkerFactory.d.ts +1 -1
- package/vscode/src/vs/base/browser/webWorkerFactory.js +3 -2
- package/vscode/src/vs/base/common/arrays.js +4 -1
- package/vscode/src/vs/base/common/arraysFind.d.ts +1 -0
- package/vscode/src/vs/base/common/async.d.ts +26 -0
- package/vscode/src/vs/base/common/async.js +103 -1
- package/vscode/src/vs/base/common/codicons.d.ts +1 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +1 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +1 -0
- package/vscode/src/vs/base/common/lifecycle.js +4 -0
- package/vscode/src/vs/base/common/marshallingIds.d.ts +3 -1
- package/vscode/src/vs/base/common/marshallingIds.js +2 -0
- package/vscode/src/vs/base/common/network.d.ts +2 -1
- package/vscode/src/vs/base/common/network.js +2 -1
- package/vscode/src/vs/base/common/oauth.d.ts +2 -8
- package/vscode/src/vs/base/common/oauth.js +6 -27
- package/vscode/src/vs/base/common/observableInternal/changeTracker.d.ts +10 -0
- package/vscode/src/vs/base/common/observableInternal/changeTracker.js +33 -1
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.js +22 -1
- package/vscode/src/vs/base/common/observableInternal/map.d.ts +24 -0
- package/vscode/src/vs/base/common/observableInternal/map.js +63 -0
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.d.ts +1 -0
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.js +8 -0
- package/vscode/src/vs/base/common/platform.js +1 -1
- package/vscode/src/vs/base/common/product.d.ts +19 -7
- package/vscode/src/vs/base/common/strings.d.ts +1 -0
- package/vscode/src/vs/base/common/strings.js +16 -1
- package/vscode/src/vs/editor/browser/config/editorConfiguration.js +4 -4
- package/vscode/src/vs/editor/browser/config/migrateOptions.js +1 -0
- package/vscode/src/vs/editor/browser/controller/dragScrolling.d.ts +48 -0
- package/vscode/src/vs/editor/browser/controller/dragScrolling.js +182 -0
- package/vscode/src/vs/editor/browser/controller/editContext/clipboardUtils.d.ts +1 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +3 -5
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +30 -73
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderContentRich.d.ts +35 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderContentRich.js +329 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderContentSimple.d.ts +31 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderContentSimple.js +176 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.d.ts +12 -12
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +50 -88
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderUtils.d.ts +11 -0
- package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.d.ts +9 -12
- package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.js +22 -11
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +5 -21
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.js +23 -2
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextState.d.ts +2 -2
- package/vscode/src/vs/editor/browser/controller/mouseHandler.d.ts +1 -0
- package/vscode/src/vs/editor/browser/controller/mouseHandler.js +31 -114
- package/vscode/src/vs/editor/browser/controller/mouseTarget.d.ts +1 -0
- package/vscode/src/vs/editor/browser/controller/mouseTarget.js +26 -7
- package/vscode/src/vs/editor/browser/coreCommands.d.ts +3 -3
- package/vscode/src/vs/editor/browser/editorBrowser.d.ts +1 -1
- package/vscode/src/vs/editor/browser/editorExtensions.d.ts +2 -2
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.js +1 -1
- package/vscode/src/vs/editor/browser/gpu/taskQueue.d.ts +5 -2
- package/vscode/src/vs/editor/browser/gpu/taskQueue.js +11 -4
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +1 -1
- package/vscode/src/vs/editor/browser/services/bulkEditService.d.ts +2 -2
- package/vscode/src/vs/editor/browser/services/editorWorkerService.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.js +33 -1
- package/vscode/src/vs/editor/browser/services/hoverService/updatableHoverWidget.d.ts +1 -0
- package/vscode/src/vs/editor/browser/services/hoverService/updatableHoverWidget.js +6 -0
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.d.ts +4 -1
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +13 -2
- package/vscode/src/vs/editor/browser/view/domLineBreaksComputer.d.ts +1 -1
- package/vscode/src/vs/editor/browser/view/domLineBreaksComputer.js +1 -1
- package/vscode/src/vs/editor/browser/view/renderingContext.d.ts +2 -1
- package/vscode/src/vs/editor/browser/view/viewUserInputEvents.d.ts +1 -1
- package/vscode/src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.js +4 -3
- package/vscode/src/vs/editor/browser/viewParts/editorScrollbar/editorScrollbar.js +2 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +8 -2
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.d.ts +3 -2
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.js +44 -13
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.js +7 -2
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.js +9 -4
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.js +43 -35
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLineOptions.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLineOptions.js +2 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.css +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +21 -4
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +3 -3
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +3 -3
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +4 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.d.ts +3 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.js +9 -3
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.js +4 -4
- package/vscode/src/vs/editor/common/commands/surroundSelectionCommand.js +1 -1
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +21 -6
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +178 -162
- package/vscode/src/vs/editor/common/config/editorOptions.js +592 -495
- package/vscode/src/vs/editor/common/coordinatesConverter.d.ts +30 -0
- package/vscode/src/vs/editor/common/coordinatesConverter.js +56 -0
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/core/edits/edit.d.ts +3 -3
- package/vscode/src/vs/editor/common/core/edits/lineEdit.d.ts +2 -2
- package/vscode/src/vs/editor/common/core/edits/lineEdit.js +14 -14
- package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +11 -4
- package/vscode/src/vs/editor/common/core/edits/stringEdit.js +36 -12
- package/vscode/src/vs/editor/common/core/edits/textEdit.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/edits/textEdit.js +20 -0
- package/vscode/src/vs/editor/common/core/text/abstractText.d.ts +2 -0
- package/vscode/src/vs/editor/common/core/text/abstractText.js +3 -0
- package/vscode/src/vs/editor/common/core/text/positionToOffsetImpl.d.ts +1 -1
- package/vscode/src/vs/editor/common/core/text/positionToOffsetImpl.js +2 -2
- package/vscode/src/vs/editor/common/cursor/cursor.d.ts +4 -4
- package/vscode/src/vs/editor/common/cursor/cursor.js +9 -9
- package/vscode/src/vs/editor/common/cursor/cursorContext.d.ts +1 -1
- package/vscode/src/vs/editor/common/cursor/cursorDeleteOperations.d.ts +2 -1
- package/vscode/src/vs/editor/common/cursor/cursorDeleteOperations.js +28 -13
- package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.js +15 -6
- package/vscode/src/vs/editor/common/cursorCommon.d.ts +1 -0
- package/vscode/src/vs/editor/common/cursorCommon.js +2 -0
- package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
- package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.js +3 -3
- package/vscode/src/vs/editor/common/languages/linkComputer.js +1 -4
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +19 -0
- package/vscode/src/vs/editor/common/languages.js +83 -57
- package/vscode/src/vs/editor/common/model/editStack.d.ts +2 -2
- package/vscode/src/vs/editor/common/model/editStack.js +3 -3
- package/vscode/src/vs/editor/common/model/textModel.d.ts +7 -6
- package/vscode/src/vs/editor/common/model/textModel.js +5 -4
- package/vscode/src/vs/editor/common/model.d.ts +6 -1
- package/vscode/src/vs/editor/common/model.js +6 -1
- package/vscode/src/vs/editor/common/modelLineProjectionData.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/editorWebWorker.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/model.service.d.ts +2 -2
- package/vscode/src/vs/editor/common/services/modelService.d.ts +2 -2
- package/vscode/src/vs/editor/common/services/modelService.js +2 -2
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +172 -160
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +174 -161
- package/vscode/src/vs/editor/common/standaloneStrings.js +47 -47
- package/vscode/src/vs/editor/common/textModelEditSource.d.ts +151 -0
- package/vscode/src/vs/editor/common/{textModelEditReason.js → textModelEditSource.js} +44 -23
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +2 -2
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.js +1 -1
- package/vscode/src/vs/editor/common/viewLayout/lineDecorations.d.ts +1 -1
- package/vscode/src/vs/editor/common/viewLayout/lineDecorations.js +1 -1
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.d.ts +8 -5
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +29 -29
- package/vscode/src/vs/editor/common/viewLayout/viewLinesViewportData.d.ts +2 -1
- package/vscode/src/vs/editor/common/viewModel/inlineDecorations.d.ts +21 -0
- package/vscode/src/vs/editor/common/viewModel/inlineDecorations.js +30 -0
- package/vscode/src/vs/editor/common/viewModel/modelLineProjection.js +2 -1
- package/vscode/src/vs/editor/common/viewModel/monospaceLineBreaksComputer.d.ts +1 -1
- package/vscode/src/vs/editor/common/viewModel/monospaceLineBreaksComputer.js +11 -3
- package/vscode/src/vs/editor/common/viewModel/screenReaderSimpleModel.d.ts +10 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelDecoration.d.ts +11 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelDecoration.js +49 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.d.ts +7 -11
- package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.js +5 -43
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +7 -4
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +32 -9
- package/vscode/src/vs/editor/common/viewModel/viewModelLines.d.ts +4 -2
- package/vscode/src/vs/editor/common/viewModel/viewModelLines.js +5 -55
- package/vscode/src/vs/editor/common/viewModel.d.ts +8 -34
- package/vscode/src/vs/editor/common/viewModel.js +3 -35
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +44 -17
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +8 -7
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.js +5 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerSaturationBox.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerSaturationBox.js +0 -3
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +4 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -19
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +54 -29
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +16 -16
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +26 -26
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.js +31 -3
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidget.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidget.js +6 -3
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidgetWrapper.js +7 -2
- package/vscode/src/vs/editor/contrib/hover/browser/getHover.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/hover/browser/getHover.js +6 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
- package/vscode/src/vs/editor/contrib/hover/browser/hoverTypes.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +18 -19
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +17 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.d.ts +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +12 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +22 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +5 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +107 -83
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +31 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +4 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +27 -16
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +6 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +11 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.d.ts +32 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.js +145 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +2 -21
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +14 -9
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +3 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +42 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.d.ts +5 -0
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +105 -33
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +34 -28
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +13 -13
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.js +2 -2
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +5 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +13 -13
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.d.ts +6 -6
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +30 -30
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +9 -6
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +3 -3
- package/vscode/src/vs/editor/editor.worker.start.d.ts +1 -1
- package/vscode/src/vs/editor/editor.worker.start.js +26 -18
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.d.ts +2 -1
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.js +3 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +1 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +3 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +45 -8
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +20 -1
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/vscode/src/vs/platform/actions/browser/actionViewItemService.service.d.ts +5 -5
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +1 -0
- package/vscode/src/vs/platform/actions/browser/toolbar.js +6 -3
- package/vscode/src/vs/platform/actions/common/actions.d.ts +4 -3
- package/vscode/src/vs/platform/actions/common/actions.js +4 -3
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/clipboard/browser/clipboardService.d.ts +1 -1
- package/vscode/src/vs/platform/clipboard/browser/clipboardService.js +12 -2
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +5 -1
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +20 -10
- package/vscode/src/vs/platform/configuration/common/configurations.js +2 -2
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/diagnostics/common/diagnostics.d.ts +1 -1
- package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +1 -1
- package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +1 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.js +2 -1
- package/vscode/src/vs/platform/environment/common/argv.d.ts +2 -0
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.d.ts +62 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.js +55 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.service.d.ts +3 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +2 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +19 -19
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +21 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +21 -0
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.js +6 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/imageResize/common/imageResizeService.service.d.ts +5 -0
- package/vscode/src/vs/platform/imageResize/common/imageResizeService.service.js +6 -0
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.js +6 -6
- package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/mcp/common/mcpManagement.service.d.ts +8 -0
- package/vscode/src/vs/platform/mcp/common/mcpManagement.service.js +2 -1
- package/vscode/src/vs/platform/notification/common/notification.js +3 -3
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.d.ts +1 -0
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +20 -9
- package/vscode/src/vs/platform/opener/browser/link.js +1 -4
- package/vscode/src/vs/platform/policy/common/policy.d.ts +2 -2
- package/vscode/src/vs/platform/policy/common/policy.service.d.ts +1 -1
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +81 -14
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +10 -7
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +19 -14
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +5 -5
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +2 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +38 -11
- package/vscode/src/vs/platform/quickinput/browser/{quickInputTree.d.ts → quickInputList.d.ts} +1 -1
- package/vscode/src/vs/platform/quickinput/browser/{quickInputTree.js → quickInputList.js} +9 -9
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.d.ts +2 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +3 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.d.ts +6 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.js +13 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTree.d.ts +9 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTree.js +35 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.d.ts +13 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +33 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +42 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +296 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeFilter.d.ts +10 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeFilter.js +39 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.d.ts +33 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +148 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +53 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +189 -0
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +46 -2
- package/vscode/src/vs/platform/quickinput/common/quickInput.js +1 -0
- package/vscode/src/vs/platform/quickinput/common/quickInput.service.d.ts +2 -1
- package/vscode/src/vs/platform/request/common/request.js +18 -18
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
- package/vscode/src/vs/platform/terminal/common/environmentVariableShared.d.ts +1 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +6 -5
- package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +2 -4
- package/vscode/src/vs/platform/terminal/common/terminalProcess.d.ts +1 -1
- package/vscode/src/vs/platform/theme/browser/defaultStyles.d.ts +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +47 -47
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +12 -2
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +14 -6
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +2 -1
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +64 -9
- package/vscode/src/vs/workbench/api/common/extHost.common.services.js +2 -0
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +102 -41
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +6 -0
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.d.ts +4 -2
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +98 -27
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +22 -4
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +24 -5
- package/vscode/src/vs/workbench/api/common/extHostChatOutputRenderer.d.ts +14 -0
- package/vscode/src/vs/workbench/api/common/extHostChatOutputRenderer.js +32 -0
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +35 -0
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +222 -0
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDataChannels.d.ts +15 -0
- package/vscode/src/vs/workbench/api/common/extHostDataChannels.js +44 -0
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +32 -34
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +12 -15
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +127 -120
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +40 -25
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -2
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +28 -10
- package/vscode/src/vs/workbench/api/common/extHostSecretState.d.ts +1 -0
- package/vscode/src/vs/workbench/api/common/extHostSecretState.js +3 -0
- package/vscode/src/vs/workbench/api/common/extHostSecrets.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostSecrets.js +6 -0
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTask.d.ts +3 -0
- package/vscode/src/vs/workbench/api/common/extHostTask.js +12 -1
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.d.ts +8 -8
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +203 -198
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +19 -8
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +211 -33
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +77 -13
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +69 -11
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +31 -31
- package/vscode/src/vs/workbench/browser/actions/textInputActions.d.ts +4 -2
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +24 -10
- package/vscode/src/vs/workbench/browser/contextkeys.js +10 -5
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.service.d.ts +1 -1
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.js +87 -78
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.d.ts +32 -0
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +180 -0
- package/vscode/src/vs/workbench/common/editor/diffEditorModel.d.ts +12 -0
- package/vscode/src/vs/workbench/common/editor/diffEditorModel.js +26 -0
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor/editorModel.d.ts +10 -0
- package/vscode/src/vs/workbench/common/editor/editorModel.js +27 -0
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.d.ts +51 -0
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +303 -0
- package/vscode/src/vs/workbench/common/editor/textDiffEditorModel.d.ts +18 -0
- package/vscode/src/vs/workbench/common/editor/textDiffEditorModel.js +45 -0
- package/vscode/src/vs/workbench/common/editor/textEditorModel.d.ts +47 -0
- package/vscode/src/vs/workbench/common/editor/textEditorModel.js +181 -0
- package/vscode/src/vs/workbench/common/editor.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.d.ts +2 -2
- package/vscode/src/vs/workbench/common/theme.js +161 -161
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +164 -156
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +4 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentResolveService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContextPickService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOutputItemRenderer.service.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOutputItemRenderer.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +5 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +59 -48
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +81 -11
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.js +7 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +6 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +48 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +22 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +4 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +32 -11
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +8 -5
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +47 -17
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +147 -65
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +9 -7
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.js +203 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.js +4 -0
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +4 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +5 -5
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.d.ts +7 -2
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +5 -4
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +33 -9
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +28 -10
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +11 -3
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +9 -7
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/quickFix/browser/quickFix.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/browser/terminalCompletionService.service.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.d.ts +2 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +8 -10
- package/vscode/src/vs/workbench/services/activity/common/activity.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/assignment/common/assignmentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/assignment/common/assignmentService.service.js +1 -1
- package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.service.d.ts +5 -2
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/coreExperimentation/common/coreExperimentationService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/dataChannel/common/dataChannel.d.ts +7 -0
- package/vscode/src/vs/workbench/services/dataChannel/common/dataChannel.service.d.ts +8 -0
- package/vscode/src/vs/workbench/services/dataChannel/common/dataChannel.service.js +6 -0
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +10 -13
- package/vscode/src/vs/workbench/services/extensions/common/extensions.js +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensions.service.d.ts +2 -5
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +100 -84
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.d.ts +61 -0
- package/vscode/src/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.js +7 -0
- package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.service.d.ts +11 -8
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.service.js +3 -2
- package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.d.ts +1 -0
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +1 -1
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +1 -2
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +1 -1
- package/vscode-dts/vscode.d.ts +5 -5
- package/vscode-dts/vscode.proposed.chatOutputRenderer.d.ts +86 -0
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +142 -5
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +25 -19
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +2 -103
- package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +129 -0
- package/vscode-dts/vscode.proposed.d.ts +7 -0
- package/vscode-dts/vscode.proposed.dataChannels.d.ts +19 -0
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +2 -0
- package/vscode-dts/vscode.proposed.languageModelToolResultAudience.d.ts +25 -0
- package/vscode-dts/vscode.proposed.scmProviderOptions.d.ts +39 -0
- package/vscode-dts/vscode.proposed.secretStorageKeys.d.ts +16 -0
- package/vscode-dts/vscode.proposed.taskExecutionTerminal.d.ts +15 -0
- package/workbench.d.ts +1 -1
- package/workers/editor.worker.js +17 -16
- package/vscode/src/vs/base/common/policy.d.ts +0 -8
- package/vscode/src/vs/editor/common/textModelEditReason.d.ts +0 -98
- package/vscode/src/vs/platform/assignment/common/assignment.d.ts +0 -33
|
@@ -40,7 +40,7 @@ import { IRemoteConnectionData, TunnelDescription } from "../../../platform/remo
|
|
|
40
40
|
import { AuthInfo, Credentials } from "../../../platform/request/common/request.js";
|
|
41
41
|
import { ClassifiedEvent, IGDPRProperty, OmitMetadata, StrictPropertyCheck } from "../../../platform/telemetry/common/gdprTypings.js";
|
|
42
42
|
import { TelemetryLevel } from "../../../platform/telemetry/common/telemetry.js";
|
|
43
|
-
import { ISerializableEnvironmentDescriptionMap, ISerializableEnvironmentVariableCollection } from "@codingame/monaco-vscode-
|
|
43
|
+
import { ISerializableEnvironmentDescriptionMap, ISerializableEnvironmentVariableCollection } from "@codingame/monaco-vscode-07eaa805-9dea-5ec6-a422-a4f04872424d-common/vscode/vs/platform/terminal/common/environmentVariable";
|
|
44
44
|
import { ICreateContributedTerminalProfileOptions, IProcessProperty, IProcessReadyWindowsPty, IShellLaunchConfigDto, ITerminalEnvironment, ITerminalLaunchError, ITerminalProfile, TerminalExitReason, TerminalLocation, TerminalShellType } from "../../../platform/terminal/common/terminal.js";
|
|
45
45
|
import { ProvidedPortAttributes, TunnelCreationOptions, TunnelOptions, TunnelPrivacyId, TunnelProviderFeatures } from "../../../platform/tunnel/common/tunnel.js";
|
|
46
46
|
import { EditSessionIdentityMatch } from "../../../platform/workspace/common/editSessions.js";
|
|
@@ -48,21 +48,22 @@ import { WorkspaceTrustRequestOptions } from "../../../platform/workspace/common
|
|
|
48
48
|
import { SaveReason } from "../../common/editor.js";
|
|
49
49
|
import { IRevealOptions, ITreeItem, IViewBadge } from "../../common/views.js";
|
|
50
50
|
import { CallHierarchyItem } from "@codingame/monaco-vscode-7f39b6f1-3542-5430-8760-0f404d7a7cee-common/vscode/vs/workbench/contrib/callHierarchy/common/callHierarchy";
|
|
51
|
-
import { IChatAgentMetadata, IChatAgentRequest, IChatAgentResult } from "@codingame/monaco-vscode-
|
|
51
|
+
import { IChatAgentMetadata, IChatAgentRequest, IChatAgentResult } from "@codingame/monaco-vscode-b994942c-360d-5b68-8a33-77d4bde6b714-common/vscode/vs/workbench/contrib/chat/common/chatAgents";
|
|
52
52
|
import { ICodeMapperRequest, ICodeMapperResult } from "@codingame/monaco-vscode-chat-service-override/vscode/vs/workbench/contrib/chat/common/chatCodeMapperService";
|
|
53
53
|
import { IChatRelatedFile, IChatRelatedFileProviderMetadata as IChatRelatedFilesProviderMetadata, IChatRequestDraft } from "../../contrib/chat/common/chatEditingService.js";
|
|
54
|
-
import { IChatProgressHistoryResponseContent } from "@codingame/monaco-vscode-
|
|
55
|
-
import { IChatContentInlineReference, IChatFollowup, IChatNotebookEdit, IChatProgress,
|
|
54
|
+
import { IChatProgressHistoryResponseContent } from "@codingame/monaco-vscode-c2deffc4-ad68-5e63-8f95-9b89e0fc6898-common/vscode/vs/workbench/contrib/chat/common/chatModel";
|
|
55
|
+
import { IChatContentInlineReference, IChatFollowup, IChatNotebookEdit, IChatProgress, IChatTask, IChatTaskDto, IChatUserActionEvent, IChatVoteAction, ChatResponseClearToPreviousToolInvocationReason } from "../../contrib/chat/common/chatService.js";
|
|
56
|
+
import { IChatSessionItem } from "../../contrib/chat/common/chatSessionsService.js";
|
|
56
57
|
import { IChatRequestVariableValue } from "../../contrib/chat/common/chatVariables.js";
|
|
57
58
|
import { ChatAgentLocation } from "../../contrib/chat/common/constants.js";
|
|
58
|
-
import { IChatMessage, IChatResponseFragment,
|
|
59
|
-
import { IPreparedToolInvocation, IToolInvocation, IToolInvocationPreparationContext, IToolProgressStep, IToolResult } from "../../contrib/chat/common/languageModelToolsService.js";
|
|
59
|
+
import { IChatMessage, IChatResponseFragment, ILanguageModelChatMetadataAndIdentifier, ILanguageModelChatSelector } from "../../contrib/chat/common/languageModels.js";
|
|
60
|
+
import { IPreparedToolInvocation, IToolInvocation, IToolInvocationPreparationContext, IToolProgressStep, IToolResult, ToolDataSource } from "../../contrib/chat/common/languageModelToolsService.js";
|
|
60
61
|
import { DebugConfigurationProviderTriggerKind, IAdapterDescriptor, IConfig, IDebugSessionReplMode, IDebugTestRunReference, IDebugVisualization, IDebugVisualizationContext, IDebugVisualizationTreeItem, MainThreadDebugVisualization } from "../../contrib/debug/common/debug.js";
|
|
61
62
|
import { McpCollectionDefinition, McpConnectionState, McpServerDefinition, McpServerLaunch } from "../../contrib/mcp/common/mcpTypes.js";
|
|
62
63
|
import * as notebookCommon from "../../contrib/notebook/common/notebookCommon.js";
|
|
63
64
|
import { CellExecutionUpdateType } from "../../contrib/notebook/common/notebookExecutionService.js";
|
|
64
65
|
import { ICellExecutionComplete, ICellExecutionStateUpdate } from "@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService";
|
|
65
|
-
import { ICellRange } from "@codingame/monaco-vscode-
|
|
66
|
+
import { ICellRange } from "@codingame/monaco-vscode-670aae94-7f88-54d7-90ea-6fcbef423557-common/vscode/vs/workbench/contrib/notebook/common/notebookRange";
|
|
66
67
|
import { ISCMHistoryOptions } from "../../contrib/scm/common/history.js";
|
|
67
68
|
import { InputValidationType } from "@codingame/monaco-vscode-ff9fa663-eae3-5274-8573-c2b918871e4b-common/vscode/vs/workbench/contrib/scm/common/scm";
|
|
68
69
|
import { IWorkspaceSymbol, NotebookPriorityInfo } from "@codingame/monaco-vscode-6f931a91-88ea-5232-897f-a17ec3929ba5-common/vscode/vs/workbench/contrib/search/common/search";
|
|
@@ -74,7 +75,7 @@ import { TypeHierarchyItem } from "@codingame/monaco-vscode-7f39b6f1-3542-5430-8
|
|
|
74
75
|
import { RelatedInformationResult, RelatedInformationType } from "@codingame/monaco-vscode-quickaccess-service-override/vscode/vs/workbench/services/aiRelatedInformation/common/aiRelatedInformation";
|
|
75
76
|
import { AiSettingsSearchProviderOptions, AiSettingsSearchResult } from "../../services/aiSettingsSearch/common/aiSettingsSearch.js";
|
|
76
77
|
import { AuthenticationSession, AuthenticationSessionAccount, AuthenticationSessionsChangeEvent, IAuthenticationCreateSessionOptions, IAuthenticationGetSessionsOptions } from "../../services/authentication/common/authentication.js";
|
|
77
|
-
import { EditorGroupColumn } from "@codingame/monaco-vscode-
|
|
78
|
+
import { EditorGroupColumn } from "@codingame/monaco-vscode-a17e9d37-b6c1-5556-8402-5db73960fae3-common/vscode/vs/workbench/services/editor/common/editorGroupColumn";
|
|
78
79
|
import { IExtensionDescriptionDelta, IStaticWorkspaceData } from "../../services/extensions/common/extensionHostProtocol.js";
|
|
79
80
|
import { IResolveAuthorityResult } from "../../services/extensions/common/extensionHostProxy.js";
|
|
80
81
|
import { ActivationKind, ExtensionActivationReason, MissingExtensionDependency } from "../../services/extensions/common/extensions.js";
|
|
@@ -180,21 +181,27 @@ export interface MainThreadAuthenticationShape extends IDisposable {
|
|
|
180
181
|
$waitForUriHandler(expectedUri: UriComponents): Promise<UriComponents>;
|
|
181
182
|
$showContinueNotification(message: string): Promise<boolean>;
|
|
182
183
|
$showDeviceCodeModal(userCode: string, verificationUri: string): Promise<boolean>;
|
|
183
|
-
$
|
|
184
|
+
$promptForClientRegistration(authorizationServerUrl: string): Promise<{
|
|
185
|
+
clientId: string;
|
|
186
|
+
clientSecret?: string;
|
|
187
|
+
} | undefined>;
|
|
188
|
+
$registerDynamicAuthenticationProvider(id: string, label: string, authorizationServer: UriComponents, clientId: string, clientSecret?: string): Promise<void>;
|
|
184
189
|
$setSessionsForDynamicAuthProvider(authProviderId: string, clientId: string, sessions: (IAuthorizationTokenResponse & {
|
|
185
190
|
created_at: number;
|
|
186
191
|
})[]): Promise<void>;
|
|
187
|
-
$sendDidChangeDynamicProviderInfo({ providerId, clientId, authorizationServer, label }: {
|
|
192
|
+
$sendDidChangeDynamicProviderInfo({ providerId, clientId, authorizationServer, label, clientSecret }: {
|
|
188
193
|
providerId: string;
|
|
189
194
|
clientId?: string;
|
|
190
195
|
authorizationServer?: UriComponents;
|
|
191
196
|
label?: string;
|
|
197
|
+
clientSecret?: string;
|
|
192
198
|
}): Promise<void>;
|
|
193
199
|
}
|
|
194
200
|
export interface MainThreadSecretStateShape extends IDisposable {
|
|
195
201
|
$getPassword(extensionId: string, key: string): Promise<string | undefined>;
|
|
196
202
|
$setPassword(extensionId: string, key: string, value: string): Promise<void>;
|
|
197
203
|
$deletePassword(extensionId: string, key: string): Promise<void>;
|
|
204
|
+
$getKeys(extensionId: string): Promise<string[]>;
|
|
198
205
|
}
|
|
199
206
|
export interface MainThreadConfigurationShape extends IDisposable {
|
|
200
207
|
$updateConfigurationOption(target: ConfigurationTarget | null, key: string, value: unknown, overrides: IConfigurationOverrides | undefined, scopeToLanguage: boolean | undefined): Promise<void>;
|
|
@@ -1096,31 +1103,33 @@ export interface ExtHostSpeechShape {
|
|
|
1096
1103
|
$cancelKeywordRecognitionSession(session: number): Promise<void>;
|
|
1097
1104
|
}
|
|
1098
1105
|
export interface MainThreadLanguageModelsShape extends IDisposable {
|
|
1099
|
-
$registerLanguageModelProvider(
|
|
1100
|
-
$
|
|
1101
|
-
$
|
|
1106
|
+
$registerLanguageModelProvider(vendor: string): void;
|
|
1107
|
+
$onLMProviderChange(vendor: string): void;
|
|
1108
|
+
$unregisterProvider(vendor: string): void;
|
|
1109
|
+
$tryStartChatRequest(extension: ExtensionIdentifier, modelIdentifier: string, requestId: number, messages: SerializableObjectWithBuffers<IChatMessage[]>, options: {}, token: CancellationToken): Promise<void>;
|
|
1102
1110
|
$reportResponsePart(requestId: number, chunk: IChatResponseFragment | IChatResponseFragment[]): Promise<void>;
|
|
1103
1111
|
$reportResponseDone(requestId: number, error: SerializedError | undefined): Promise<void>;
|
|
1104
1112
|
$selectChatModels(selector: ILanguageModelChatSelector): Promise<string[]>;
|
|
1105
|
-
$
|
|
1106
|
-
$countTokens(provider: string, value: string | IChatMessage, token: CancellationToken): Promise<number>;
|
|
1113
|
+
$countTokens(modelId: string, value: string | IChatMessage, token: CancellationToken): Promise<number>;
|
|
1107
1114
|
$fileIsIgnored(uri: UriComponents, token: CancellationToken): Promise<boolean>;
|
|
1108
1115
|
$registerFileIgnoreProvider(handle: number): void;
|
|
1109
1116
|
$unregisterFileIgnoreProvider(handle: number): void;
|
|
1110
1117
|
}
|
|
1111
1118
|
export interface ExtHostLanguageModelsShape {
|
|
1112
|
-
$
|
|
1119
|
+
$prepareLanguageModelProvider(vendor: string, options: {
|
|
1120
|
+
silent: boolean;
|
|
1121
|
+
}, token: CancellationToken): Promise<ILanguageModelChatMetadataAndIdentifier[]>;
|
|
1113
1122
|
$updateModelAccesslist(data: {
|
|
1114
1123
|
from: ExtensionIdentifier;
|
|
1115
1124
|
to: ExtensionIdentifier;
|
|
1116
1125
|
enabled: boolean;
|
|
1117
1126
|
}[]): void;
|
|
1118
|
-
$startChatRequest(
|
|
1127
|
+
$startChatRequest(modelId: string, requestId: number, from: ExtensionIdentifier, messages: SerializableObjectWithBuffers<IChatMessage[]>, options: {
|
|
1119
1128
|
[name: string]: any;
|
|
1120
1129
|
}, token: CancellationToken): Promise<void>;
|
|
1121
1130
|
$acceptResponsePart(requestId: number, chunk: IChatResponseFragment | IChatResponseFragment[]): Promise<void>;
|
|
1122
1131
|
$acceptResponseDone(requestId: number, error: SerializedError | undefined): Promise<void>;
|
|
1123
|
-
$provideTokenLength(
|
|
1132
|
+
$provideTokenLength(modelId: string, value: string | IChatMessage, token: CancellationToken): Promise<number>;
|
|
1124
1133
|
$isFileIgnored(handle: number, uri: UriComponents, token: CancellationToken): Promise<boolean>;
|
|
1125
1134
|
}
|
|
1126
1135
|
export interface MainThreadEmbeddingsShape extends IDisposable {
|
|
@@ -1145,7 +1154,14 @@ export interface IDynamicChatAgentProps {
|
|
|
1145
1154
|
description?: string;
|
|
1146
1155
|
fullName?: string;
|
|
1147
1156
|
}
|
|
1148
|
-
export interface
|
|
1157
|
+
export interface IChatAgentProgressShape {
|
|
1158
|
+
$handleProgressChunk(requestId: string, chunks: (IChatProgressDto | [
|
|
1159
|
+
IChatProgressDto,
|
|
1160
|
+
number
|
|
1161
|
+
])[]): Promise<void>;
|
|
1162
|
+
$handleAnchorResolve(requestId: string, handle: string, anchor: Dto<IChatContentInlineReference>): void;
|
|
1163
|
+
}
|
|
1164
|
+
export interface MainThreadChatAgentsShape2 extends IChatAgentProgressShape, IDisposable {
|
|
1149
1165
|
$registerAgent(handle: number, extension: ExtensionIdentifier, id: string, metadata: IExtensionChatAgentMetadata, dynamicProps: IDynamicChatAgentProps | undefined): void;
|
|
1150
1166
|
$registerChatParticipantDetectionProvider(handle: number): void;
|
|
1151
1167
|
$unregisterChatParticipantDetectionProvider(handle: number): void;
|
|
@@ -1155,11 +1171,6 @@ export interface MainThreadChatAgentsShape2 extends IDisposable {
|
|
|
1155
1171
|
$unregisterAgentCompletionsProvider(handle: number, id: string): void;
|
|
1156
1172
|
$updateAgent(handle: number, metadataUpdate: IExtensionChatAgentMetadata): void;
|
|
1157
1173
|
$unregisterAgent(handle: number): void;
|
|
1158
|
-
$handleProgressChunk(requestId: string, chunks: (IChatProgressDto | [
|
|
1159
|
-
IChatProgressDto,
|
|
1160
|
-
number
|
|
1161
|
-
])[]): Promise<void>;
|
|
1162
|
-
$handleAnchorResolve(requestId: string, handle: string, anchor: Dto<IChatContentInlineReference>): void;
|
|
1163
1174
|
$transferActiveChatSession(toWorkspace: UriComponents): void;
|
|
1164
1175
|
}
|
|
1165
1176
|
export interface ICodeMapperTextEdit {
|
|
@@ -1214,6 +1225,7 @@ export interface ExtHostChatAgentsShape2 {
|
|
|
1214
1225
|
location: ChatAgentLocation;
|
|
1215
1226
|
}, token: CancellationToken): Promise<IChatParticipantDetectionResult | null | undefined>;
|
|
1216
1227
|
$provideRelatedFiles(handle: number, request: Dto<IChatRequestDraft>, token: CancellationToken): Promise<Dto<IChatRelatedFile>[] | undefined>;
|
|
1228
|
+
$setRequestTools(requestId: string, tools: Pick<IChatAgentRequest, "userSelectedTools">): void;
|
|
1217
1229
|
}
|
|
1218
1230
|
export interface IChatParticipantMetadata {
|
|
1219
1231
|
participant: string;
|
|
@@ -1235,6 +1247,7 @@ export interface IToolDataDto {
|
|
|
1235
1247
|
displayName: string;
|
|
1236
1248
|
userDescription?: string;
|
|
1237
1249
|
modelDescription: string;
|
|
1250
|
+
source: Dto<ToolDataSource>;
|
|
1238
1251
|
inputSchema?: IJSONSchema;
|
|
1239
1252
|
}
|
|
1240
1253
|
export interface MainThreadLanguageModelToolsShape extends IDisposable {
|
|
@@ -1257,19 +1270,6 @@ export interface MainThreadUrlsShape extends IDisposable {
|
|
|
1257
1270
|
$unregisterUriHandler(handle: number): Promise<void>;
|
|
1258
1271
|
$createAppUri(uri: UriComponents): Promise<UriComponents>;
|
|
1259
1272
|
}
|
|
1260
|
-
export interface IChatDto {
|
|
1261
|
-
}
|
|
1262
|
-
export interface IChatRequestDto {
|
|
1263
|
-
message: string;
|
|
1264
|
-
variables?: Record<string, IChatRequestVariableValue[]>;
|
|
1265
|
-
}
|
|
1266
|
-
export interface IChatResponseDto {
|
|
1267
|
-
errorDetails?: IChatResponseErrorDetails;
|
|
1268
|
-
timings: {
|
|
1269
|
-
firstProgress: number;
|
|
1270
|
-
totalElapsed: number;
|
|
1271
|
-
};
|
|
1272
|
-
}
|
|
1273
1273
|
export interface IChatResponseProgressFileTreeData {
|
|
1274
1274
|
label: string;
|
|
1275
1275
|
uri: URI;
|
|
@@ -1280,7 +1280,7 @@ export type IDocumentContextDto = {
|
|
|
1280
1280
|
version: number;
|
|
1281
1281
|
ranges: IRange[];
|
|
1282
1282
|
};
|
|
1283
|
-
export type IChatProgressDto = Dto<Exclude<IChatProgress, IChatTask | IChatNotebookEdit>> | IChatTaskDto | IChatNotebookEditDto;
|
|
1283
|
+
export type IChatProgressDto = Dto<Exclude<IChatProgress, IChatTask | IChatNotebookEdit>> | IChatTaskDto | IChatNotebookEditDto | IChatResponseClearToPreviousToolInvocationDto;
|
|
1284
1284
|
export interface ExtHostUrlsShape {
|
|
1285
1285
|
$handleExternalUri(handle: number, uri: UriComponents): Promise<void>;
|
|
1286
1286
|
}
|
|
@@ -1295,6 +1295,13 @@ export interface ExtHostUriOpenersShape {
|
|
|
1295
1295
|
sourceUri: UriComponents;
|
|
1296
1296
|
}, token: CancellationToken): Promise<void>;
|
|
1297
1297
|
}
|
|
1298
|
+
export interface MainThreadChatOutputRendererShape extends IDisposable {
|
|
1299
|
+
$registerChatOutputRenderer(viewType: string, extensionId: ExtensionIdentifier, extensionLocation: UriComponents): void;
|
|
1300
|
+
$unregisterChatOutputRenderer(viewType: string): void;
|
|
1301
|
+
}
|
|
1302
|
+
export interface ExtHostChatOutputRendererShape {
|
|
1303
|
+
$renderChatOutput(viewType: string, mime: string, valueData: VSBuffer, webviewHandle: string, token: CancellationToken): Promise<void>;
|
|
1304
|
+
}
|
|
1298
1305
|
export interface MainThreadProfileContentHandlersShape {
|
|
1299
1306
|
$registerProfileContentHandler(id: string, name: string, description: string | undefined, extensionId: string): Promise<void>;
|
|
1300
1307
|
$unregisterProfileContentHandler(id: string): Promise<void>;
|
|
@@ -1425,6 +1432,7 @@ export interface SCMProviderFeatures {
|
|
|
1425
1432
|
acceptInputCommand?: languages.Command;
|
|
1426
1433
|
actionButton?: SCMActionButtonDto | null;
|
|
1427
1434
|
statusBarCommands?: ICommandDto[];
|
|
1435
|
+
contextValue?: string;
|
|
1428
1436
|
}
|
|
1429
1437
|
export interface SCMActionButtonDto {
|
|
1430
1438
|
command: ICommandDto & {
|
|
@@ -1504,7 +1512,10 @@ export interface SCMHistoryItemChangeDto {
|
|
|
1504
1512
|
readonly modifiedUri: UriComponents | undefined;
|
|
1505
1513
|
}
|
|
1506
1514
|
export interface MainThreadSCMShape extends IDisposable {
|
|
1507
|
-
$registerSourceControl(handle: number, id: string, label: string, rootUri: UriComponents | undefined,
|
|
1515
|
+
$registerSourceControl(handle: number, parentHandle: number | undefined, id: string, label: string, rootUri: UriComponents | undefined, iconPath: UriComponents | {
|
|
1516
|
+
light: UriComponents;
|
|
1517
|
+
dark: UriComponents;
|
|
1518
|
+
} | ThemeIcon | undefined, inputBoxDocumentUri: UriComponents): Promise<void>;
|
|
1508
1519
|
$updateSourceControl(handle: number, features: SCMProviderFeatures): Promise<void>;
|
|
1509
1520
|
$unregisterSourceControl(handle: number): Promise<void>;
|
|
1510
1521
|
$registerGroups(sourceControlHandle: number, groups: [
|
|
@@ -1794,7 +1805,7 @@ export interface ExtHostAuthenticationShape {
|
|
|
1794
1805
|
$removeSession(id: string, sessionId: string): Promise<void>;
|
|
1795
1806
|
$onDidChangeAuthenticationSessions(id: string, label: string, extensionIdFilter?: string[]): Promise<void>;
|
|
1796
1807
|
$onDidUnregisterAuthenticationProvider(id: string): Promise<void>;
|
|
1797
|
-
$registerDynamicAuthProvider(authorizationServer: UriComponents, serverMetadata: IAuthorizationServerMetadata, resource?: IAuthorizationProtectedResourceMetadata, clientId?: string, initialTokens?: (IAuthorizationTokenResponse & {
|
|
1808
|
+
$registerDynamicAuthProvider(authorizationServer: UriComponents, serverMetadata: IAuthorizationServerMetadata, resource?: IAuthorizationProtectedResourceMetadata, clientId?: string, clientSecret?: string, initialTokens?: (IAuthorizationTokenResponse & {
|
|
1798
1809
|
created_at: number;
|
|
1799
1810
|
})[]): Promise<string>;
|
|
1800
1811
|
$onDidChangeDynamicAuthProviderTokens(authProviderId: string, clientId: string, tokens?: (IAuthorizationTokenResponse & {
|
|
@@ -1983,11 +1994,15 @@ export interface IWorkspaceEditEntryMetadataDto {
|
|
|
1983
1994
|
};
|
|
1984
1995
|
}
|
|
1985
1996
|
export interface IChatNotebookEditDto {
|
|
1986
|
-
uri:
|
|
1997
|
+
uri: UriComponents;
|
|
1987
1998
|
edits: ICellEditOperationDto[];
|
|
1988
1999
|
kind: "notebookEdit";
|
|
1989
2000
|
done?: boolean;
|
|
1990
2001
|
}
|
|
2002
|
+
export interface IChatResponseClearToPreviousToolInvocationDto {
|
|
2003
|
+
kind: "clearToPreviousToolInvocation";
|
|
2004
|
+
reason: ChatResponseClearToPreviousToolInvocationReason;
|
|
2005
|
+
}
|
|
1991
2006
|
export type ICellEditOperationDto = notebookCommon.ICellMetadataEdit | notebookCommon.IDocumentMetadataEdit | {
|
|
1992
2007
|
editType: notebookCommon.CellEditType.Replace;
|
|
1993
2008
|
index: number;
|
|
@@ -2748,6 +2763,11 @@ export interface MainThreadMcpShape {
|
|
|
2748
2763
|
$deleteMcpCollection(collectionId: string): void;
|
|
2749
2764
|
$getTokenFromServerMetadata(id: number, authorizationServer: UriComponents, serverMetadata: IAuthorizationServerMetadata, resourceMetadata: IAuthorizationProtectedResourceMetadata | undefined): Promise<string | undefined>;
|
|
2750
2765
|
}
|
|
2766
|
+
export interface MainThreadDataChannelsShape extends IDisposable {
|
|
2767
|
+
}
|
|
2768
|
+
export interface ExtHostDataChannelsShape {
|
|
2769
|
+
$onDidReceiveData(channelId: string, data: unknown): void;
|
|
2770
|
+
}
|
|
2751
2771
|
export interface ExtHostLocalizationShape {
|
|
2752
2772
|
getMessage(extensionId: string, details: IStringDetails): string;
|
|
2753
2773
|
getBundle(extensionId: string): {
|
|
@@ -2801,6 +2821,41 @@ export interface MainThreadChatStatusShape {
|
|
|
2801
2821
|
$setEntry(id: string, entry: ChatStatusItemDto): void;
|
|
2802
2822
|
$disposeEntry(id: string): void;
|
|
2803
2823
|
}
|
|
2824
|
+
export interface IChatRequestTurnDto {
|
|
2825
|
+
}
|
|
2826
|
+
export interface ChatSessionDto {
|
|
2827
|
+
id: string;
|
|
2828
|
+
history: Array<{
|
|
2829
|
+
type: "request";
|
|
2830
|
+
prompt: string;
|
|
2831
|
+
} | {
|
|
2832
|
+
type: "response";
|
|
2833
|
+
parts: IChatProgressDto[];
|
|
2834
|
+
}>;
|
|
2835
|
+
hasActiveResponseCallback: boolean;
|
|
2836
|
+
hasRequestHandler: boolean;
|
|
2837
|
+
}
|
|
2838
|
+
export interface MainThreadChatSessionsShape extends IDisposable {
|
|
2839
|
+
$registerChatSessionItemProvider(handle: number, chatSessionType: string): void;
|
|
2840
|
+
$unregisterChatSessionItemProvider(handle: number): void;
|
|
2841
|
+
$onDidChangeChatSessionItems(chatSessionType: string): void;
|
|
2842
|
+
$registerChatSessionContentProvider(handle: number, chatSessionType: string): void;
|
|
2843
|
+
$unregisterChatSessionContentProvider(handle: number): void;
|
|
2844
|
+
$handleProgressChunk(handle: number, sessionId: string, requestId: string, chunks: (IChatProgressDto | [
|
|
2845
|
+
IChatProgressDto,
|
|
2846
|
+
number
|
|
2847
|
+
])[]): Promise<void>;
|
|
2848
|
+
$handleAnchorResolve(handle: number, sessionId: string, requestId: string, requestHandle: string, anchor: Dto<IChatContentInlineReference>): void;
|
|
2849
|
+
$handleProgressComplete(handle: number, sessionId: string, requestId: string): void;
|
|
2850
|
+
$showChatSession(chatSessionType: string, sessionId: string, position: EditorGroupColumn | undefined): Promise<void>;
|
|
2851
|
+
}
|
|
2852
|
+
export interface ExtHostChatSessionsShape {
|
|
2853
|
+
$provideChatSessionItems(providerHandle: number, token: CancellationToken): Promise<Dto<IChatSessionItem>[]>;
|
|
2854
|
+
$provideChatSessionContent(providerHandle: number, sessionId: string, token: CancellationToken): Promise<ChatSessionDto>;
|
|
2855
|
+
$interruptChatSessionActiveResponse(providerHandle: number, sessionId: string, requestId: string): Promise<void>;
|
|
2856
|
+
$disposeChatSessionContent(providerHandle: number, sessionId: string): Promise<void>;
|
|
2857
|
+
$invokeChatSessionRequestHandler(providerHandle: number, id: string, request: IChatAgentRequest, history: any[], token: CancellationToken): Promise<IChatAgentResult>;
|
|
2858
|
+
}
|
|
2804
2859
|
export declare const MainContext: {
|
|
2805
2860
|
MainThreadAuthentication: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<MainThreadAuthenticationShape>;
|
|
2806
2861
|
MainThreadBulkEdits: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<MainThreadBulkEditsShape>;
|
|
@@ -2875,6 +2930,9 @@ export declare const MainContext: {
|
|
|
2875
2930
|
MainThreadAiEmbeddingVector: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<MainThreadAiEmbeddingVectorShape>;
|
|
2876
2931
|
MainThreadChatStatus: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<MainThreadChatStatusShape>;
|
|
2877
2932
|
MainThreadAiSettingsSearch: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<MainThreadAiSettingsSearchShape>;
|
|
2933
|
+
MainThreadDataChannels: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<MainThreadDataChannelsShape>;
|
|
2934
|
+
MainThreadChatSessions: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<MainThreadChatSessionsShape>;
|
|
2935
|
+
MainThreadChatOutputRenderer: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<MainThreadChatOutputRendererShape>;
|
|
2878
2936
|
};
|
|
2879
2937
|
export declare const ExtHostContext: {
|
|
2880
2938
|
ExtHostCodeMapper: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostCodeMapperShape>;
|
|
@@ -2919,6 +2977,7 @@ export declare const ExtHostContext: {
|
|
|
2919
2977
|
ExtHostStorage: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostStorageShape>;
|
|
2920
2978
|
ExtHostUrls: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostUrlsShape>;
|
|
2921
2979
|
ExtHostUriOpeners: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostUriOpenersShape>;
|
|
2980
|
+
ExtHostChatOutputRenderer: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostChatOutputRendererShape>;
|
|
2922
2981
|
ExtHostProfileContentHandlers: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostProfileContentHandlersShape>;
|
|
2923
2982
|
ExtHostOutputService: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostOutputServiceShape>;
|
|
2924
2983
|
ExtHostLabelService: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostLabelServiceShape>;
|
|
@@ -2946,5 +3005,7 @@ export declare const ExtHostContext: {
|
|
|
2946
3005
|
ExtHostTelemetry: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostTelemetryShape>;
|
|
2947
3006
|
ExtHostLocalization: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostLocalizationShape>;
|
|
2948
3007
|
ExtHostMcp: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostMcpShape>;
|
|
3008
|
+
ExtHostDataChannels: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostDataChannelsShape>;
|
|
3009
|
+
ExtHostChatSessions: import("../../services/extensions/common/proxyIdentifier.js").ProxyIdentifier<ExtHostChatSessionsShape>;
|
|
2949
3010
|
};
|
|
2950
3011
|
export {};
|
|
@@ -174,6 +174,9 @@ const MainContext = {
|
|
|
174
174
|
MainThreadAiEmbeddingVector: ( createProxyIdentifier('MainThreadAiEmbeddingVector')),
|
|
175
175
|
MainThreadChatStatus: ( createProxyIdentifier('MainThreadChatStatus')),
|
|
176
176
|
MainThreadAiSettingsSearch: ( createProxyIdentifier('MainThreadAiSettingsSearch')),
|
|
177
|
+
MainThreadDataChannels: ( createProxyIdentifier('MainThreadDataChannels')),
|
|
178
|
+
MainThreadChatSessions: ( createProxyIdentifier('MainThreadChatSessions')),
|
|
179
|
+
MainThreadChatOutputRenderer: ( createProxyIdentifier('MainThreadChatOutputRenderer')),
|
|
177
180
|
};
|
|
178
181
|
const ExtHostContext = {
|
|
179
182
|
ExtHostCodeMapper: ( createProxyIdentifier('ExtHostCodeMapper')),
|
|
@@ -218,6 +221,7 @@ const ExtHostContext = {
|
|
|
218
221
|
ExtHostStorage: ( createProxyIdentifier('ExtHostStorage')),
|
|
219
222
|
ExtHostUrls: ( createProxyIdentifier('ExtHostUrls')),
|
|
220
223
|
ExtHostUriOpeners: ( createProxyIdentifier('ExtHostUriOpeners')),
|
|
224
|
+
ExtHostChatOutputRenderer: ( createProxyIdentifier('ExtHostChatOutputRenderer')),
|
|
221
225
|
ExtHostProfileContentHandlers: ( createProxyIdentifier('ExtHostProfileContentHandlers')),
|
|
222
226
|
ExtHostOutputService: ( createProxyIdentifier('ExtHostOutputService')),
|
|
223
227
|
ExtHostLabelService: ( createProxyIdentifier('ExtHostLabelService')),
|
|
@@ -245,6 +249,8 @@ const ExtHostContext = {
|
|
|
245
249
|
ExtHostTelemetry: ( createProxyIdentifier('ExtHostTelemetry')),
|
|
246
250
|
ExtHostLocalization: ( createProxyIdentifier('ExtHostLocalization')),
|
|
247
251
|
ExtHostMcp: ( createProxyIdentifier('ExtHostMcp')),
|
|
252
|
+
ExtHostDataChannels: ( createProxyIdentifier('ExtHostDataChannels')),
|
|
253
|
+
ExtHostChatSessions: ( createProxyIdentifier('ExtHostChatSessions')),
|
|
248
254
|
};
|
|
249
255
|
|
|
250
256
|
export { CandidatePortSource, CellOutputKind, ExtHostContext, ExtHostTestingResource, ISuggestDataDtoField, ISuggestResultDtoField, MainContext, NotebookEditorRevealType, TabInputKind, TabModelOperationKind, TextEditorRevealType, WebviewEditorCapabilities, WebviewMessageArrayBufferViewType };
|
|
@@ -53,7 +53,7 @@ export declare class ExtHostAuthentication implements ExtHostAuthenticationShape
|
|
|
53
53
|
$getSessions(providerId: string, scopes: ReadonlyArray<string> | undefined, options: vscode.AuthenticationProviderSessionOptions): Promise<ReadonlyArray<vscode.AuthenticationSession>>;
|
|
54
54
|
$onDidChangeAuthenticationSessions(id: string, label: string, extensionIdFilter?: string[]): Promise<void>;
|
|
55
55
|
$onDidUnregisterAuthenticationProvider(id: string): Promise<void>;
|
|
56
|
-
$registerDynamicAuthProvider(authorizationServerComponents: UriComponents, serverMetadata: IAuthorizationServerMetadata, resourceMetadata: IAuthorizationProtectedResourceMetadata | undefined, clientId: string | undefined, initialTokens: IAuthorizationToken[] | undefined): Promise<string>;
|
|
56
|
+
$registerDynamicAuthProvider(authorizationServerComponents: UriComponents, serverMetadata: IAuthorizationServerMetadata, resourceMetadata: IAuthorizationProtectedResourceMetadata | undefined, clientId: string | undefined, clientSecret: string | undefined, initialTokens: IAuthorizationToken[] | undefined): Promise<string>;
|
|
57
57
|
$onDidChangeDynamicAuthProviderTokens(authProviderId: string, clientId: string, tokens: IAuthorizationToken[]): Promise<void>;
|
|
58
58
|
}
|
|
59
59
|
export declare class DynamicAuthProvider implements vscode.AuthenticationProvider {
|
|
@@ -66,6 +66,7 @@ export declare class DynamicAuthProvider implements vscode.AuthenticationProvide
|
|
|
66
66
|
protected readonly _serverMetadata: IAuthorizationServerMetadata;
|
|
67
67
|
protected readonly _resourceMetadata: IAuthorizationProtectedResourceMetadata | undefined;
|
|
68
68
|
protected _clientId: string;
|
|
69
|
+
protected _clientSecret: string | undefined;
|
|
69
70
|
readonly id: string;
|
|
70
71
|
readonly label: string;
|
|
71
72
|
private _onDidChangeSessions;
|
|
@@ -81,12 +82,13 @@ export declare class DynamicAuthProvider implements vscode.AuthenticationProvide
|
|
|
81
82
|
}>;
|
|
82
83
|
protected readonly _logger: ILogger;
|
|
83
84
|
private readonly _disposable;
|
|
84
|
-
constructor(_extHostWindow: IExtHostWindow, _extHostUrls: IExtHostUrlsService, _initData: IExtHostInitDataService, _extHostProgress: IExtHostProgress, loggerService: ILoggerService, _proxy: MainThreadAuthenticationShape, authorizationServer: URI, _serverMetadata: IAuthorizationServerMetadata, _resourceMetadata: IAuthorizationProtectedResourceMetadata | undefined, _clientId: string, onDidDynamicAuthProviderTokensChange: Emitter<{
|
|
85
|
+
constructor(_extHostWindow: IExtHostWindow, _extHostUrls: IExtHostUrlsService, _initData: IExtHostInitDataService, _extHostProgress: IExtHostProgress, loggerService: ILoggerService, _proxy: MainThreadAuthenticationShape, authorizationServer: URI, _serverMetadata: IAuthorizationServerMetadata, _resourceMetadata: IAuthorizationProtectedResourceMetadata | undefined, _clientId: string, _clientSecret: string | undefined, onDidDynamicAuthProviderTokensChange: Emitter<{
|
|
85
86
|
authProviderId: string;
|
|
86
87
|
clientId: string;
|
|
87
88
|
tokens: IAuthorizationToken[];
|
|
88
89
|
}>, initialTokens: IAuthorizationToken[]);
|
|
89
90
|
get clientId(): string;
|
|
91
|
+
get clientSecret(): string | undefined;
|
|
90
92
|
getSessions(scopes: readonly string[] | undefined, _options: vscode.AuthenticationProviderSessionOptions): Promise<vscode.AuthenticationSession[]>;
|
|
91
93
|
createSession(scopes: string[], _options: vscode.AuthenticationProviderSessionOptions): Promise<vscode.AuthenticationSession>;
|
|
92
94
|
removeSession(sessionId: string): Promise<void>;
|
|
@@ -129,28 +129,49 @@ let ExtHostAuthentication = class ExtHostAuthentication {
|
|
|
129
129
|
}
|
|
130
130
|
});
|
|
131
131
|
}
|
|
132
|
-
async $registerDynamicAuthProvider(authorizationServerComponents, serverMetadata, resourceMetadata, clientId, initialTokens) {
|
|
132
|
+
async $registerDynamicAuthProvider(authorizationServerComponents, serverMetadata, resourceMetadata, clientId, clientSecret, initialTokens) {
|
|
133
133
|
if (!clientId) {
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
134
|
+
const authorizationServer = URI.revive(authorizationServerComponents);
|
|
135
|
+
if (serverMetadata.registration_endpoint) {
|
|
136
|
+
try {
|
|
137
|
+
const registration = await fetchDynamicRegistration(serverMetadata, this._initData.environment.appName, resourceMetadata?.scopes_supported);
|
|
138
|
+
clientId = registration.client_id;
|
|
139
|
+
clientSecret = registration.client_secret;
|
|
140
|
+
}
|
|
141
|
+
catch (err) {
|
|
142
|
+
this._logService.warn(`Dynamic registration failed for ${( authorizationServer.toString())}: ${err.message}. Prompting user for client ID and client secret...`);
|
|
143
|
+
}
|
|
137
144
|
}
|
|
138
|
-
|
|
139
|
-
|
|
145
|
+
if (!clientId) {
|
|
146
|
+
this._logService.info(`Prompting user for client registration details for ${( authorizationServer.toString())}`);
|
|
147
|
+
const clientDetails = await this._proxy.$promptForClientRegistration(( authorizationServer.toString()));
|
|
148
|
+
if (!clientDetails) {
|
|
149
|
+
throw ( new Error('User did not provide client details'));
|
|
150
|
+
}
|
|
151
|
+
clientId = clientDetails.clientId;
|
|
152
|
+
clientSecret = clientDetails.clientSecret;
|
|
153
|
+
this._logService.info(`User provided client registration for ${( authorizationServer.toString())}`);
|
|
154
|
+
if (clientSecret) {
|
|
155
|
+
this._logService.trace(`User provided client secret for ${( authorizationServer.toString())}`);
|
|
156
|
+
}
|
|
157
|
+
else {
|
|
158
|
+
this._logService.trace(`User did not provide client secret for ${( authorizationServer.toString())}`);
|
|
159
|
+
}
|
|
140
160
|
}
|
|
141
161
|
}
|
|
142
|
-
const provider = new this._dynamicAuthProviderCtor(this._extHostWindow, this._extHostUrls, this._initData, this._extHostProgress, this._extHostLoggerService, this._proxy, URI.revive(authorizationServerComponents), serverMetadata, resourceMetadata, clientId, this._onDidDynamicAuthProviderTokensChange, initialTokens || []);
|
|
162
|
+
const provider = new this._dynamicAuthProviderCtor(this._extHostWindow, this._extHostUrls, this._initData, this._extHostProgress, this._extHostLoggerService, this._proxy, URI.revive(authorizationServerComponents), serverMetadata, resourceMetadata, clientId, clientSecret, this._onDidDynamicAuthProviderTokensChange, initialTokens || []);
|
|
143
163
|
await this._providerOperations.queue(provider.id, async () => {
|
|
144
164
|
this._authenticationProviders.set(provider.id, {
|
|
145
165
|
label: provider.label,
|
|
146
166
|
provider,
|
|
147
167
|
disposable: Disposable.from(provider, provider.onDidChangeSessions(e => this._proxy.$sendDidChangeSessions(provider.id, e)), provider.onDidChangeClientId(() => this._proxy.$sendDidChangeDynamicProviderInfo({
|
|
148
168
|
providerId: provider.id,
|
|
149
|
-
clientId: provider.clientId
|
|
169
|
+
clientId: provider.clientId,
|
|
170
|
+
clientSecret: provider.clientSecret
|
|
150
171
|
}))),
|
|
151
172
|
options: { supportsMultipleAccounts: false }
|
|
152
173
|
});
|
|
153
|
-
await this._proxy.$registerDynamicAuthenticationProvider(provider.id, provider.label, provider.authorizationServer, provider.clientId);
|
|
174
|
+
await this._proxy.$registerDynamicAuthenticationProvider(provider.id, provider.label, provider.authorizationServer, provider.clientId, provider.clientSecret);
|
|
154
175
|
});
|
|
155
176
|
return provider.id;
|
|
156
177
|
}
|
|
@@ -182,7 +203,7 @@ class TaskSingler {
|
|
|
182
203
|
}
|
|
183
204
|
}
|
|
184
205
|
let DynamicAuthProvider = class DynamicAuthProvider {
|
|
185
|
-
constructor(_extHostWindow, _extHostUrls, _initData, _extHostProgress, loggerService, _proxy, authorizationServer, _serverMetadata, _resourceMetadata, _clientId, onDidDynamicAuthProviderTokensChange, initialTokens) {
|
|
206
|
+
constructor(_extHostWindow, _extHostUrls, _initData, _extHostProgress, loggerService, _proxy, authorizationServer, _serverMetadata, _resourceMetadata, _clientId, _clientSecret, onDidDynamicAuthProviderTokensChange, initialTokens) {
|
|
186
207
|
this._extHostWindow = _extHostWindow;
|
|
187
208
|
this._extHostUrls = _extHostUrls;
|
|
188
209
|
this._initData = _initData;
|
|
@@ -192,6 +213,7 @@ let DynamicAuthProvider = class DynamicAuthProvider {
|
|
|
192
213
|
this._serverMetadata = _serverMetadata;
|
|
193
214
|
this._resourceMetadata = _resourceMetadata;
|
|
194
215
|
this._clientId = _clientId;
|
|
216
|
+
this._clientSecret = _clientSecret;
|
|
195
217
|
this._onDidChangeSessions = ( new Emitter());
|
|
196
218
|
this.onDidChangeSessions = this._onDidChangeSessions.event;
|
|
197
219
|
this._onDidChangeClientId = ( new Emitter());
|
|
@@ -212,14 +234,20 @@ let DynamicAuthProvider = class DynamicAuthProvider {
|
|
|
212
234
|
set: (tokens) => _proxy.$setSessionsForDynamicAuthProvider(this.id, this.clientId, tokens),
|
|
213
235
|
}, initialTokens, this._logger)));
|
|
214
236
|
this._disposable.add(this._tokenStore.onDidChangeSessions(e => this._onDidChangeSessions.fire(e)));
|
|
215
|
-
this._createFlows = [
|
|
216
|
-
|
|
237
|
+
this._createFlows = [];
|
|
238
|
+
if (_serverMetadata.authorization_endpoint) {
|
|
239
|
+
this._createFlows.push({
|
|
240
|
+
label: ( localize(2617, "URL Handler")),
|
|
217
241
|
handler: (scopes, progress, token) => this._createWithUrlHandler(scopes, progress, token)
|
|
218
|
-
}
|
|
242
|
+
});
|
|
243
|
+
}
|
|
219
244
|
}
|
|
220
245
|
get clientId() {
|
|
221
246
|
return this._clientId;
|
|
222
247
|
}
|
|
248
|
+
get clientSecret() {
|
|
249
|
+
return this._clientSecret;
|
|
250
|
+
}
|
|
223
251
|
async getSessions(scopes, _options) {
|
|
224
252
|
this._logger.info(`Getting sessions for scopes: ${scopes?.join(' ') ?? 'all'}`);
|
|
225
253
|
if (!scopes) {
|
|
@@ -277,7 +305,7 @@ let DynamicAuthProvider = class DynamicAuthProvider {
|
|
|
277
305
|
try {
|
|
278
306
|
token = await this._extHostProgress.withProgressFromSource({ label: this.label, id: this.id }, {
|
|
279
307
|
location: ProgressLocation.Notification,
|
|
280
|
-
title: ( localize(
|
|
308
|
+
title: ( localize(2618, "Authenticating to '{0}'", this.label)),
|
|
281
309
|
cancellable: true
|
|
282
310
|
}, (progress, token) => handler(scopes, progress, token));
|
|
283
311
|
if (token) {
|
|
@@ -291,13 +319,13 @@ let DynamicAuthProvider = class DynamicAuthProvider {
|
|
|
291
319
|
}
|
|
292
320
|
const message = isCancellationError(err)
|
|
293
321
|
? ( localize(
|
|
294
|
-
|
|
322
|
+
2619,
|
|
295
323
|
"Having trouble authenticating to '{0}'? Would you like to try a different way? ({1})",
|
|
296
324
|
this.label,
|
|
297
325
|
nextMode
|
|
298
326
|
))
|
|
299
327
|
: ( localize(
|
|
300
|
-
|
|
328
|
+
2620,
|
|
301
329
|
"You have not yet finished authenticating to '{0}'. Would you like to try a different way? ({1})",
|
|
302
330
|
this.label,
|
|
303
331
|
nextMode
|
|
@@ -340,6 +368,12 @@ let DynamicAuthProvider = class DynamicAuthProvider {
|
|
|
340
368
|
this._disposable.dispose();
|
|
341
369
|
}
|
|
342
370
|
async _createWithUrlHandler(scopes, progress, token) {
|
|
371
|
+
if (!this._serverMetadata.authorization_endpoint) {
|
|
372
|
+
throw ( new Error('Authorization Endpoint required'));
|
|
373
|
+
}
|
|
374
|
+
if (!this._serverMetadata.token_endpoint) {
|
|
375
|
+
throw ( new Error('Token endpoint not available in server metadata'));
|
|
376
|
+
}
|
|
343
377
|
const codeVerifier = this.generateRandomString(64);
|
|
344
378
|
const codeChallenge = await this.generateCodeChallenge(codeVerifier);
|
|
345
379
|
const nonce = this.generateRandomString(32);
|
|
@@ -376,7 +410,7 @@ let DynamicAuthProvider = class DynamicAuthProvider {
|
|
|
376
410
|
throw ( new CancellationError());
|
|
377
411
|
}
|
|
378
412
|
progress.report({
|
|
379
|
-
message: ( localize(
|
|
413
|
+
message: ( localize(2621, "Complete the authentication in the browser window that has opened.")),
|
|
380
414
|
});
|
|
381
415
|
let code;
|
|
382
416
|
try {
|
|
@@ -430,14 +464,27 @@ let DynamicAuthProvider = class DynamicAuthProvider {
|
|
|
430
464
|
tokenRequest.append('code', code);
|
|
431
465
|
tokenRequest.append('redirect_uri', redirectUri);
|
|
432
466
|
tokenRequest.append('code_verifier', codeVerifier);
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
467
|
+
if (this._clientSecret) {
|
|
468
|
+
tokenRequest.append('client_secret', this._clientSecret);
|
|
469
|
+
}
|
|
470
|
+
this._logger.info('Exchanging authorization code for token...');
|
|
471
|
+
this._logger.trace(`Url: ${this._serverMetadata.token_endpoint}`);
|
|
472
|
+
this._logger.trace(`Token request body: ${( tokenRequest.toString())}`);
|
|
473
|
+
let response;
|
|
474
|
+
try {
|
|
475
|
+
response = await fetch(this._serverMetadata.token_endpoint, {
|
|
476
|
+
method: 'POST',
|
|
477
|
+
headers: {
|
|
478
|
+
'Content-Type': 'application/x-www-form-urlencoded',
|
|
479
|
+
'Accept': 'application/json'
|
|
480
|
+
},
|
|
481
|
+
body: ( tokenRequest.toString())
|
|
482
|
+
});
|
|
483
|
+
}
|
|
484
|
+
catch (err) {
|
|
485
|
+
this._logger.error(`Failed to exchange authorization code for token: ${err}`);
|
|
486
|
+
throw ( new Error(`Failed to exchange authorization code for token: ${err}`));
|
|
487
|
+
}
|
|
441
488
|
if (!response.ok) {
|
|
442
489
|
const text = await response.text();
|
|
443
490
|
throw ( new Error(
|
|
@@ -446,6 +493,7 @@ let DynamicAuthProvider = class DynamicAuthProvider {
|
|
|
446
493
|
}
|
|
447
494
|
const result = await response.json();
|
|
448
495
|
if (isAuthorizationTokenResponse(result)) {
|
|
496
|
+
this._logger.info(`Successfully exchanged authorization code for token.`);
|
|
449
497
|
return result;
|
|
450
498
|
}
|
|
451
499
|
else if (isAuthorizationErrorResponse(result) && result.error === AuthorizationErrorType.InvalidClient) {
|
|
@@ -463,6 +511,9 @@ let DynamicAuthProvider = class DynamicAuthProvider {
|
|
|
463
511
|
tokenRequest.append('client_id', this._clientId);
|
|
464
512
|
tokenRequest.append('grant_type', 'refresh_token');
|
|
465
513
|
tokenRequest.append('refresh_token', refreshToken);
|
|
514
|
+
if (this._clientSecret) {
|
|
515
|
+
tokenRequest.append('client_secret', this._clientSecret);
|
|
516
|
+
}
|
|
466
517
|
const response = await fetch(this._serverMetadata.token_endpoint, {
|
|
467
518
|
method: 'POST',
|
|
468
519
|
headers: {
|
|
@@ -489,11 +540,31 @@ let DynamicAuthProvider = class DynamicAuthProvider {
|
|
|
489
540
|
try {
|
|
490
541
|
const registration = await fetchDynamicRegistration(this._serverMetadata, this._initData.environment.appName, this._resourceMetadata?.scopes_supported);
|
|
491
542
|
this._clientId = registration.client_id;
|
|
543
|
+
this._clientSecret = registration.client_secret;
|
|
492
544
|
this._onDidChangeClientId.fire();
|
|
493
545
|
}
|
|
494
546
|
catch (err) {
|
|
495
|
-
this._logger.
|
|
496
|
-
|
|
547
|
+
this._logger.info(`Dynamic registration failed for ${( this.authorizationServer.toString())}: ${err}. Prompting user for client ID and client secret.`);
|
|
548
|
+
try {
|
|
549
|
+
const clientDetails = await this._proxy.$promptForClientRegistration(( this.authorizationServer.toString()));
|
|
550
|
+
if (!clientDetails) {
|
|
551
|
+
throw ( new Error('User did not provide client details'));
|
|
552
|
+
}
|
|
553
|
+
this._clientId = clientDetails.clientId;
|
|
554
|
+
this._clientSecret = clientDetails.clientSecret;
|
|
555
|
+
this._logger.info(`User provided client ID for ${( this.authorizationServer.toString())}`);
|
|
556
|
+
if (clientDetails.clientSecret) {
|
|
557
|
+
this._logger.info(`User provided client secret for ${( this.authorizationServer.toString())}`);
|
|
558
|
+
}
|
|
559
|
+
else {
|
|
560
|
+
this._logger.info(`User did not provide client secret for ${( this.authorizationServer.toString())} (optional)`);
|
|
561
|
+
}
|
|
562
|
+
this._onDidChangeClientId.fire();
|
|
563
|
+
}
|
|
564
|
+
catch (promptErr) {
|
|
565
|
+
this._logger.error(`Failed to fetch new client ID and user did not provide one: ${err}`);
|
|
566
|
+
throw ( new Error(`Failed to fetch new client ID and user did not provide one: ${err}`));
|
|
567
|
+
}
|
|
497
568
|
}
|
|
498
569
|
}
|
|
499
570
|
};
|