@codingame/monaco-vscode-api 20.1.0 → 20.2.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.
Files changed (763) hide show
  1. package/package.json +8 -8
  2. package/services.js +3 -3
  3. package/vscode/src/vs/base/browser/browser.d.ts +2 -0
  4. package/vscode/src/vs/base/browser/canIUse.d.ts +3 -0
  5. package/vscode/src/vs/base/browser/contextmenu.d.ts +14 -0
  6. package/vscode/src/vs/base/browser/cssValue.d.ts +8 -0
  7. package/vscode/src/vs/base/browser/dnd.d.ts +21 -0
  8. package/vscode/src/vs/base/browser/dom.d.ts +178 -0
  9. package/vscode/src/vs/base/browser/domSanitize.d.ts +26 -0
  10. package/vscode/src/vs/base/browser/domStylesheets.d.ts +3 -0
  11. package/vscode/src/vs/base/browser/dompurify/dompurify.d.ts +19 -0
  12. package/vscode/src/vs/base/browser/fonts.d.ts +8 -0
  13. package/vscode/src/vs/base/browser/iframe.d.ts +10 -0
  14. package/vscode/src/vs/base/browser/keyboardEvent.d.ts +3 -0
  15. package/vscode/src/vs/base/browser/markdownRenderer.d.ts +18 -0
  16. package/vscode/src/vs/base/browser/performance.d.ts +22 -0
  17. package/vscode/src/vs/base/browser/pixelRatio.d.ts +7 -0
  18. package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css +29 -2
  19. package/vscode/src/vs/base/browser/ui/actionbar/actionbar.d.ts +5 -0
  20. package/vscode/src/vs/base/browser/ui/aria/aria.css +6 -1
  21. package/vscode/src/vs/base/browser/ui/aria/aria.d.ts +6 -0
  22. package/vscode/src/vs/base/browser/ui/button/button.css +36 -1
  23. package/vscode/src/vs/base/browser/ui/button/button.d.ts +9 -0
  24. package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css +11 -0
  25. package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.css +8 -0
  26. package/vscode/src/vs/base/browser/ui/contextview/contextview.css +6 -0
  27. package/vscode/src/vs/base/browser/ui/contextview/contextview.d.ts +14 -0
  28. package/vscode/src/vs/base/browser/ui/countBadge/countBadge.css +6 -0
  29. package/vscode/src/vs/base/browser/ui/dnd/dnd.css +12 -0
  30. package/vscode/src/vs/base/browser/ui/dropdown/dropdown.css +11 -0
  31. package/vscode/src/vs/base/browser/ui/findinput/findInput.css +20 -0
  32. package/vscode/src/vs/base/browser/ui/highlightedlabel/highlightedLabel.d.ts +27 -0
  33. package/vscode/src/vs/base/browser/ui/hover/hover.d.ts +258 -0
  34. package/vscode/src/vs/base/browser/ui/hover/hoverDelegate.d.ts +37 -0
  35. package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.d.ts +10 -0
  36. package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +54 -0
  37. package/vscode/src/vs/base/browser/ui/iconLabel/iconlabel.css +34 -6
  38. package/vscode/src/vs/base/browser/ui/inputbox/inputBox.css +27 -2
  39. package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.css +10 -0
  40. package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.d.ts +3 -0
  41. package/vscode/src/vs/base/browser/ui/list/list.css +21 -0
  42. package/vscode/src/vs/base/browser/ui/list/list.d.ts +9 -0
  43. package/vscode/src/vs/base/browser/ui/list/listView.d.ts +17 -3
  44. package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +26 -0
  45. package/vscode/src/vs/base/browser/ui/list/rangeMap.d.ts +29 -0
  46. package/vscode/src/vs/base/browser/ui/list/rowCache.d.ts +12 -0
  47. package/vscode/src/vs/base/browser/ui/mouseCursor/mouseCursor.css +5 -0
  48. package/vscode/src/vs/base/browser/ui/progressbar/progressbar.css +29 -1
  49. package/vscode/src/vs/base/browser/ui/progressbar/progressbar.d.ts +33 -0
  50. package/vscode/src/vs/base/browser/ui/sash/sash.css +31 -0
  51. package/vscode/src/vs/base/browser/ui/sash/sash.d.ts +125 -0
  52. package/vscode/src/vs/base/browser/ui/scrollbar/abstractScrollbar.d.ts +6 -0
  53. package/vscode/src/vs/base/browser/ui/scrollbar/media/scrollbars.css +16 -0
  54. package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.d.ts +22 -0
  55. package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElementOptions.d.ts +98 -0
  56. package/vscode/src/vs/base/browser/ui/scrollbar/scrollbarArrow.d.ts +3 -0
  57. package/vscode/src/vs/base/browser/ui/scrollbar/scrollbarState.d.ts +43 -0
  58. package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css +11 -0
  59. package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.css +29 -1
  60. package/vscode/src/vs/base/browser/ui/severityIcon/media/severityIcon.css +7 -0
  61. package/vscode/src/vs/base/browser/ui/splitview/splitview.css +16 -0
  62. package/vscode/src/vs/base/browser/ui/splitview/splitview.d.ts +289 -0
  63. package/vscode/src/vs/base/browser/ui/table/table.css +12 -0
  64. package/vscode/src/vs/base/browser/ui/toggle/toggle.css +14 -0
  65. package/vscode/src/vs/base/browser/ui/toolbar/toolbar.css +6 -0
  66. package/vscode/src/vs/base/browser/ui/toolbar/toolbar.d.ts +12 -0
  67. package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +12 -0
  68. package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.d.ts +19 -0
  69. package/vscode/src/vs/base/browser/ui/tree/indexTreeModel.d.ts +18 -0
  70. package/vscode/src/vs/base/browser/ui/tree/media/tree.css +38 -3
  71. package/vscode/src/vs/base/browser/ui/tree/objectTree.d.ts +12 -0
  72. package/vscode/src/vs/base/browser/ui/tree/tree.d.ts +43 -0
  73. package/vscode/src/vs/base/common/actions.d.ts +3 -0
  74. package/vscode/src/vs/base/common/arrays.d.ts +193 -1
  75. package/vscode/src/vs/base/common/arraysFind.d.ts +46 -0
  76. package/vscode/src/vs/base/common/assert.d.ts +28 -0
  77. package/vscode/src/vs/base/common/async.d.ts +361 -0
  78. package/vscode/src/vs/base/common/buffer.d.ts +31 -0
  79. package/vscode/src/vs/base/common/cache.d.ts +11 -0
  80. package/vscode/src/vs/base/common/cancellation.d.ts +11 -0
  81. package/vscode/src/vs/base/common/charCode.d.ts +319 -186
  82. package/vscode/src/vs/base/common/codicons.d.ts +14 -0
  83. package/vscode/src/vs/base/common/codiconsUtil.d.ts +3 -0
  84. package/vscode/src/vs/base/common/collections.d.ts +19 -0
  85. package/vscode/src/vs/base/common/color.d.ts +115 -0
  86. package/vscode/src/vs/base/common/comparers.d.ts +10 -0
  87. package/vscode/src/vs/base/common/dataTransfer.d.ts +38 -0
  88. package/vscode/src/vs/base/common/date.d.ts +15 -0
  89. package/vscode/src/vs/base/common/diff/diff.d.ts +90 -0
  90. package/vscode/src/vs/base/common/diff/diffChange.d.ts +29 -0
  91. package/vscode/src/vs/base/common/equals.d.ts +26 -0
  92. package/vscode/src/vs/base/common/errorMessage.d.ts +6 -0
  93. package/vscode/src/vs/base/common/errors.d.ts +26 -0
  94. package/vscode/src/vs/base/common/event.d.ts +356 -0
  95. package/vscode/src/vs/base/common/extpath.d.ts +34 -0
  96. package/vscode/src/vs/base/common/filters.d.ts +22 -0
  97. package/vscode/src/vs/base/common/functional.d.ts +3 -0
  98. package/vscode/src/vs/base/common/glob.d.ts +39 -0
  99. package/vscode/src/vs/base/common/hash.d.ts +12 -0
  100. package/vscode/src/vs/base/common/history.d.ts +7 -0
  101. package/vscode/src/vs/base/common/hotReload.d.ts +6 -0
  102. package/vscode/src/vs/base/common/htmlContent.d.ts +3 -0
  103. package/vscode/src/vs/base/common/iconLabels.d.ts +9 -0
  104. package/vscode/src/vs/base/common/ime.d.ts +6 -0
  105. package/vscode/src/vs/base/common/iterator.d.ts +7 -0
  106. package/vscode/src/vs/base/common/json.d.ts +98 -0
  107. package/vscode/src/vs/base/common/jsonSchema.d.ts +5 -0
  108. package/vscode/src/vs/base/common/keyCodes.d.ts +95 -18
  109. package/vscode/src/vs/base/common/keybindingLabels.d.ts +13 -0
  110. package/vscode/src/vs/base/common/keybindings.d.ts +54 -0
  111. package/vscode/src/vs/base/common/labels.d.ts +41 -0
  112. package/vscode/src/vs/base/common/lazy.d.ts +12 -0
  113. package/vscode/src/vs/base/common/lifecycle.d.ts +126 -0
  114. package/vscode/src/vs/base/common/map.d.ts +33 -0
  115. package/vscode/src/vs/base/common/marked/marked.d.ts +137 -0
  116. package/vscode/src/vs/base/common/naturalLanguage/korean.d.ts +8 -0
  117. package/vscode/src/vs/base/common/network.d.ts +85 -0
  118. package/vscode/src/vs/base/common/numbers.d.ts +45 -0
  119. package/vscode/src/vs/base/common/oauth.d.ts +369 -0
  120. package/vscode/src/vs/base/common/objects.d.ts +19 -0
  121. package/vscode/src/vs/base/common/observableInternal/base.d.ts +128 -0
  122. package/vscode/src/vs/base/common/observableInternal/changeTracker.d.ts +11 -0
  123. package/vscode/src/vs/base/common/observableInternal/debugName.d.ts +16 -0
  124. package/vscode/src/vs/base/common/observableInternal/experimental/reducer.d.ts +21 -0
  125. package/vscode/src/vs/base/common/observableInternal/experimental/utils.d.ts +11 -0
  126. package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.d.ts +15 -0
  127. package/vscode/src/vs/base/common/observableInternal/observables/constObservable.d.ts +3 -0
  128. package/vscode/src/vs/base/common/observableInternal/observables/derived.d.ts +25 -0
  129. package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.d.ts +15 -0
  130. package/vscode/src/vs/base/common/observableInternal/observables/lazyObservableValue.d.ts +3 -0
  131. package/vscode/src/vs/base/common/observableInternal/observables/observableSignal.d.ts +5 -0
  132. package/vscode/src/vs/base/common/observableInternal/observables/observableValue.d.ts +10 -0
  133. package/vscode/src/vs/base/common/observableInternal/reactions/autorun.d.ts +27 -0
  134. package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +7 -0
  135. package/vscode/src/vs/base/common/observableInternal/transaction.d.ts +9 -0
  136. package/vscode/src/vs/base/common/observableInternal/utils/promise.d.ts +47 -1
  137. package/vscode/src/vs/base/common/observableInternal/utils/utils.d.ts +15 -0
  138. package/vscode/src/vs/base/common/observableInternal/utils/utilsCancellation.d.ts +3 -0
  139. package/vscode/src/vs/base/common/performance.d.ts +3 -0
  140. package/vscode/src/vs/base/common/platform.d.ts +37 -0
  141. package/vscode/src/vs/base/common/prefixTree.d.ts +23 -0
  142. package/vscode/src/vs/base/common/process.d.ts +23 -0
  143. package/vscode/src/vs/base/common/range.d.ts +4 -0
  144. package/vscode/src/vs/base/common/resources.d.ts +115 -0
  145. package/vscode/src/vs/base/common/scrollable.d.ts +17 -0
  146. package/vscode/src/vs/base/common/severity.d.ts +4 -0
  147. package/vscode/src/vs/base/common/skipList.d.ts +4 -0
  148. package/vscode/src/vs/base/common/sseParser.d.ts +51 -0
  149. package/vscode/src/vs/base/common/stream.d.ts +148 -0
  150. package/vscode/src/vs/base/common/strings.d.ts +134 -0
  151. package/vscode/src/vs/base/common/symbols.d.ts +3 -0
  152. package/vscode/src/vs/base/common/ternarySearchTree.d.ts +6 -0
  153. package/vscode/src/vs/base/common/types.d.ts +135 -0
  154. package/vscode/src/vs/base/common/uint.d.ts +24 -3
  155. package/vscode/src/vs/base/common/uri.d.ts +131 -0
  156. package/vscode/src/vs/base/common/worker/webWorker.d.ts +6 -0
  157. package/vscode/src/vs/base/parts/sandbox/common/electronTypes.d.ts +179 -0
  158. package/vscode/src/vs/base/parts/sandbox/common/sandboxTypes.d.ts +39 -0
  159. package/vscode/src/vs/base/parts/storage/common/storage.d.ts +11 -0
  160. package/vscode/src/vs/editor/browser/config/editorConfiguration.d.ts +20 -0
  161. package/vscode/src/vs/editor/browser/config/fontMeasurements.d.ts +15 -0
  162. package/vscode/src/vs/editor/browser/config/migrateOptions.d.ts +3 -0
  163. package/vscode/src/vs/editor/browser/config/tabFocus.d.ts +6 -0
  164. package/vscode/src/vs/editor/browser/controller/dragScrolling.d.ts +9 -0
  165. package/vscode/src/vs/editor/browser/controller/editContext/clipboardUtils.d.ts +5 -0
  166. package/vscode/src/vs/editor/browser/controller/editContext/native/editContextFactory.d.ts +3 -0
  167. package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css +11 -0
  168. package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderUtils.d.ts +18 -0
  169. package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.d.ts +5 -0
  170. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.css +19 -0
  171. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.d.ts +7 -0
  172. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.d.ts +8 -0
  173. package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextState.d.ts +13 -1
  174. package/vscode/src/vs/editor/browser/controller/mouseHandler.d.ts +9 -0
  175. package/vscode/src/vs/editor/browser/controller/mouseTarget.d.ts +6 -0
  176. package/vscode/src/vs/editor/browser/controller/pointerHandler.d.ts +3 -0
  177. package/vscode/src/vs/editor/browser/coreCommands.d.ts +24 -0
  178. package/vscode/src/vs/editor/browser/editorBrowser.d.ts +439 -0
  179. package/vscode/src/vs/editor/browser/editorDom.d.ts +39 -0
  180. package/vscode/src/vs/editor/browser/editorExtensions.d.ts +51 -0
  181. package/vscode/src/vs/editor/browser/gpu/atlas/atlas.d.ts +65 -0
  182. package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.d.ts +23 -1
  183. package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasPage.d.ts +4 -0
  184. package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasShelfAllocator.d.ts +5 -0
  185. package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasSlabAllocator.d.ts +10 -0
  186. package/vscode/src/vs/editor/browser/gpu/bufferDirtyTracker.d.ts +20 -0
  187. package/vscode/src/vs/editor/browser/gpu/contentSegmenter.d.ts +6 -0
  188. package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.d.ts +3 -0
  189. package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.d.ts +12 -0
  190. package/vscode/src/vs/editor/browser/gpu/css/media/decorationCssRuleExtractor.css +5 -0
  191. package/vscode/src/vs/editor/browser/gpu/gpu.d.ts +3 -0
  192. package/vscode/src/vs/editor/browser/gpu/objectCollectionBuffer.d.ts +33 -0
  193. package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.d.ts +4 -0
  194. package/vscode/src/vs/editor/browser/gpu/raster/raster.d.ts +47 -0
  195. package/vscode/src/vs/editor/browser/gpu/renderStrategy/fullFileRenderStrategy.d.ts +20 -0
  196. package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.d.ts +10 -0
  197. package/vscode/src/vs/editor/browser/gpu/taskQueue.d.ts +33 -0
  198. package/vscode/src/vs/editor/browser/gpu/viewGpuContext.d.ts +22 -0
  199. package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +6 -0
  200. package/vscode/src/vs/editor/browser/services/codeEditorService.service.d.ts +3 -0
  201. package/vscode/src/vs/editor/browser/services/hoverService/hover.css +32 -0
  202. package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.d.ts +4 -0
  203. package/vscode/src/vs/editor/browser/services/inlineCompletionsService.service.d.ts +16 -0
  204. package/vscode/src/vs/editor/browser/view/renderingContext.d.ts +17 -1
  205. package/vscode/src/vs/editor/browser/view/viewController.d.ts +3 -0
  206. package/vscode/src/vs/editor/browser/view/viewLayer.d.ts +19 -0
  207. package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.css +6 -0
  208. package/vscode/src/vs/editor/browser/viewParts/contentWidgets/contentWidgets.d.ts +5 -0
  209. package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.css +7 -0
  210. package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.d.ts +9 -0
  211. package/vscode/src/vs/editor/browser/viewParts/decorations/decorations.css +9 -0
  212. package/vscode/src/vs/editor/browser/viewParts/editorScrollbar/editorScrollbar.d.ts +4 -0
  213. package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css +16 -0
  214. package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.d.ts +20 -0
  215. package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.css +6 -0
  216. package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.d.ts +3 -0
  217. package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.css +5 -0
  218. package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.d.ts +4 -0
  219. package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.css +9 -0
  220. package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.d.ts +3 -0
  221. package/vscode/src/vs/editor/browser/viewParts/linesDecorations/linesDecorations.css +9 -0
  222. package/vscode/src/vs/editor/browser/viewParts/margin/margin.css +5 -0
  223. package/vscode/src/vs/editor/browser/viewParts/margin/margin.d.ts +5 -0
  224. package/vscode/src/vs/editor/browser/viewParts/marginDecorations/marginDecorations.css +9 -0
  225. package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +10 -0
  226. package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.d.ts +31 -0
  227. package/vscode/src/vs/editor/browser/viewParts/minimap/minimapCharRendererFactory.d.ts +16 -0
  228. package/vscode/src/vs/editor/browser/viewParts/minimap/minimapCharSheet.d.ts +3 -3
  229. package/vscode/src/vs/editor/browser/viewParts/minimap/minimapPreBaked.d.ts +5 -0
  230. package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css +4 -0
  231. package/vscode/src/vs/editor/browser/viewParts/overviewRuler/overviewRuler.d.ts +4 -0
  232. package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.css +5 -0
  233. package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.d.ts +4 -0
  234. package/vscode/src/vs/editor/browser/viewParts/rulersGpu/rulersGpu.d.ts +4 -0
  235. package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.css +5 -0
  236. package/vscode/src/vs/editor/browser/viewParts/selections/selections.css +14 -0
  237. package/vscode/src/vs/editor/browser/viewParts/selections/selections.d.ts +3 -0
  238. package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursor.d.ts +4 -0
  239. package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.css +19 -0
  240. package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.d.ts +4 -0
  241. package/vscode/src/vs/editor/browser/viewParts/viewLines/rangeUtil.d.ts +5 -0
  242. package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.css +34 -0
  243. package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.d.ts +19 -0
  244. package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.d.ts +3 -0
  245. package/vscode/src/vs/editor/browser/viewParts/viewZones/viewZones.d.ts +5 -0
  246. package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.css +5 -0
  247. package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.d.ts +4 -0
  248. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorContributions.d.ts +12 -0
  249. package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +32 -0
  250. package/vscode/src/vs/editor/browser/widget/codeEditor/editor.css +27 -0
  251. package/vscode/src/vs/editor/browser/widget/diffEditor/commands.d.ts +4 -0
  252. package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css +20 -0
  253. package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.d.ts +6 -0
  254. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorSash.d.ts +1 -0
  255. package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.d.ts +7 -0
  256. package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.d.ts +10 -0
  257. package/vscode/src/vs/editor/browser/widget/diffEditor/features/gutterFeature.d.ts +3 -0
  258. package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.d.ts +3 -0
  259. package/vscode/src/vs/editor/browser/widget/diffEditor/features/revertButtonsFeature.d.ts +6 -0
  260. package/vscode/src/vs/editor/browser/widget/diffEditor/style.css +92 -1
  261. package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +4 -0
  262. package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/renderedMarkdown.css +6 -0
  263. package/vscode/src/vs/editor/common/commands/surroundSelectionCommand.d.ts +3 -0
  264. package/vscode/src/vs/editor/common/commands/trimTrailingWhitespaceCommand.d.ts +3 -0
  265. package/vscode/src/vs/editor/common/config/editorConfiguration.d.ts +41 -0
  266. package/vscode/src/vs/editor/common/config/editorOptions.d.ts +862 -0
  267. package/vscode/src/vs/editor/common/config/fontInfo.d.ts +34 -0
  268. package/vscode/src/vs/editor/common/coordinatesConverter.d.ts +7 -0
  269. package/vscode/src/vs/editor/common/core/characterClassifier.d.ts +9 -0
  270. package/vscode/src/vs/editor/common/core/cursorColumns.d.ts +44 -0
  271. package/vscode/src/vs/editor/common/core/editOperation.d.ts +14 -0
  272. package/vscode/src/vs/editor/common/core/editorColorRegistry.d.ts +3 -0
  273. package/vscode/src/vs/editor/common/core/edits/edit.d.ts +55 -1
  274. package/vscode/src/vs/editor/common/core/edits/lengthEdit.d.ts +6 -0
  275. package/vscode/src/vs/editor/common/core/edits/lineEdit.d.ts +9 -1
  276. package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +37 -0
  277. package/vscode/src/vs/editor/common/core/edits/textEdit.d.ts +3 -0
  278. package/vscode/src/vs/editor/common/core/misc/rgba.d.ts +16 -0
  279. package/vscode/src/vs/editor/common/core/position.d.ts +67 -0
  280. package/vscode/src/vs/editor/common/core/range.d.ts +140 -0
  281. package/vscode/src/vs/editor/common/core/ranges/columnRange.d.ts +8 -1
  282. package/vscode/src/vs/editor/common/core/ranges/lineRange.d.ts +57 -1
  283. package/vscode/src/vs/editor/common/core/ranges/offsetRange.d.ts +30 -0
  284. package/vscode/src/vs/editor/common/core/ranges/rangeSingleLine.d.ts +7 -1
  285. package/vscode/src/vs/editor/common/core/selection.d.ts +83 -0
  286. package/vscode/src/vs/editor/common/core/stringBuilder.d.ts +6 -0
  287. package/vscode/src/vs/editor/common/core/text/positionToOffsetImpl.d.ts +1 -0
  288. package/vscode/src/vs/editor/common/core/text/textLength.d.ts +3 -0
  289. package/vscode/src/vs/editor/common/core/wordHelper.d.ts +12 -0
  290. package/vscode/src/vs/editor/common/cursor/cursorAtomicMoveOperations.d.ts +15 -0
  291. package/vscode/src/vs/editor/common/cursor/cursorCollection.d.ts +7 -0
  292. package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.d.ts +15 -0
  293. package/vscode/src/vs/editor/common/cursor/cursorMoveOperations.d.ts +7 -0
  294. package/vscode/src/vs/editor/common/cursor/cursorTypeEditOperations.d.ts +14 -0
  295. package/vscode/src/vs/editor/common/cursor/cursorTypeOperations.d.ts +3 -0
  296. package/vscode/src/vs/editor/common/cursor/oneCursor.d.ts +3 -0
  297. package/vscode/src/vs/editor/common/cursorCommon.d.ts +25 -0
  298. package/vscode/src/vs/editor/common/cursorEvents.d.ts +63 -0
  299. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm.d.ts +23 -1
  300. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing.d.ts +4 -0
  301. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm.d.ts +3 -0
  302. package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.d.ts +4 -0
  303. package/vscode/src/vs/editor/common/diff/legacyLinesDiffComputer.d.ts +16 -0
  304. package/vscode/src/vs/editor/common/diff/linesDiffComputer.d.ts +24 -1
  305. package/vscode/src/vs/editor/common/diff/rangeMapping.d.ts +41 -0
  306. package/vscode/src/vs/editor/common/editorCommon.d.ts +218 -0
  307. package/vscode/src/vs/editor/common/editorContextKeys.d.ts +14 -0
  308. package/vscode/src/vs/editor/common/editorFeatures.d.ts +7 -0
  309. package/vscode/src/vs/editor/common/encodedTokenAttributes.d.ts +38 -0
  310. package/vscode/src/vs/editor/common/inputMode.d.ts +3 -0
  311. package/vscode/src/vs/editor/common/languageSelector.d.ts +6 -0
  312. package/vscode/src/vs/editor/common/languages/autoIndent.d.ts +16 -0
  313. package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.d.ts +3 -0
  314. package/vscode/src/vs/editor/common/languages/language.d.ts +3 -0
  315. package/vscode/src/vs/editor/common/languages/language.service.d.ts +77 -0
  316. package/vscode/src/vs/editor/common/languages/languageConfiguration.d.ts +195 -0
  317. package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.d.ts +9 -0
  318. package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.service.d.ts +3 -0
  319. package/vscode/src/vs/editor/common/languages/linkComputer.d.ts +5 -0
  320. package/vscode/src/vs/editor/common/languages/supports/electricCharacter.d.ts +4 -0
  321. package/vscode/src/vs/editor/common/languages/supports/indentationLineProcessor.d.ts +27 -0
  322. package/vscode/src/vs/editor/common/languages/supports/languageBracketsConfiguration.d.ts +22 -1
  323. package/vscode/src/vs/editor/common/languages/supports/richEditBrackets.d.ts +80 -0
  324. package/vscode/src/vs/editor/common/languages/supports/tokenization.d.ts +12 -0
  325. package/vscode/src/vs/editor/common/languages.d.ts +955 -1
  326. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsImpl.d.ts +4 -0
  327. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/ast.d.ts +55 -0
  328. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/beforeEditPositionMapper.d.ts +10 -0
  329. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/bracketPairsTree.d.ts +3 -0
  330. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/brackets.d.ts +3 -0
  331. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/concat23Trees.d.ts +6 -0
  332. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/length.d.ts +16 -0
  333. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/nodeReader.d.ts +8 -0
  334. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/parser.d.ts +3 -0
  335. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/smallImmutableSet.d.ts +7 -0
  336. package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/tokenizer.d.ts +23 -1
  337. package/vscode/src/vs/editor/common/model/decorationProvider.d.ts +13 -0
  338. package/vscode/src/vs/editor/common/model/fixedArray.d.ts +4 -0
  339. package/vscode/src/vs/editor/common/model/indentationGuesser.d.ts +9 -0
  340. package/vscode/src/vs/editor/common/model/intervalTree.d.ts +13 -0
  341. package/vscode/src/vs/editor/common/model/mirrorTextModel.d.ts +18 -0
  342. package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeBase.d.ts +29 -0
  343. package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.d.ts +7 -0
  344. package/vscode/src/vs/editor/common/model/prefixSumComputer.d.ts +34 -0
  345. package/vscode/src/vs/editor/common/model/textModel.d.ts +17 -0
  346. package/vscode/src/vs/editor/common/model/textModelSearch.d.ts +4 -0
  347. package/vscode/src/vs/editor/common/model/textModelTokens.d.ts +19 -0
  348. package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.d.ts +8 -0
  349. package/vscode/src/vs/editor/common/model/tokens/tokenizationTextModelPart.d.ts +3 -0
  350. package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.d.ts +1 -0
  351. package/vscode/src/vs/editor/common/model/tokens/treeSitter/tokenStore.d.ts +22 -0
  352. package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTokenizationImpl.d.ts +10 -0
  353. package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTree.d.ts +4 -1
  354. package/vscode/src/vs/editor/common/model/utils.d.ts +5 -0
  355. package/vscode/src/vs/editor/common/model.d.ts +440 -0
  356. package/vscode/src/vs/editor/common/modelLineProjectionData.d.ts +52 -1
  357. package/vscode/src/vs/editor/common/services/editorWebWorker.d.ts +19 -0
  358. package/vscode/src/vs/editor/common/services/findSectionHeaders.d.ts +19 -0
  359. package/vscode/src/vs/editor/common/services/languagesAssociations.d.ts +23 -0
  360. package/vscode/src/vs/editor/common/services/modelService.d.ts +6 -0
  361. package/vscode/src/vs/editor/common/services/resolverService.service.d.ts +10 -0
  362. package/vscode/src/vs/editor/common/services/textModelSync/textModelSync.impl.d.ts +3 -0
  363. package/vscode/src/vs/editor/common/services/textResourceConfiguration.d.ts +11 -0
  364. package/vscode/src/vs/editor/common/services/textResourceConfiguration.service.d.ts +35 -0
  365. package/vscode/src/vs/editor/common/services/treeSitter/treeSitterLibraryService.service.d.ts +10 -0
  366. package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +377 -18
  367. package/vscode/src/vs/editor/common/textModelBracketPairs.d.ts +56 -3
  368. package/vscode/src/vs/editor/common/textModelEditSource.d.ts +4 -0
  369. package/vscode/src/vs/editor/common/textModelEvents.d.ts +210 -0
  370. package/vscode/src/vs/editor/common/textModelGuides.d.ts +28 -1
  371. package/vscode/src/vs/editor/common/tokenizationTextModelPart.d.ts +53 -0
  372. package/vscode/src/vs/editor/common/tokens/contiguousMultilineTokens.d.ts +24 -0
  373. package/vscode/src/vs/editor/common/tokens/contiguousTokensStore.d.ts +3 -0
  374. package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +20 -0
  375. package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.d.ts +9 -0
  376. package/vscode/src/vs/editor/common/tokens/sparseTokensStore.d.ts +3 -0
  377. package/vscode/src/vs/editor/common/tokens/tokenWithTextArray.d.ts +11 -0
  378. package/vscode/src/vs/editor/common/viewEvents.d.ts +85 -2
  379. package/vscode/src/vs/editor/common/viewLayout/lineDecorations.d.ts +3 -0
  380. package/vscode/src/vs/editor/common/viewLayout/lineHeights.d.ts +26 -0
  381. package/vscode/src/vs/editor/common/viewLayout/linePart.d.ts +8 -1
  382. package/vscode/src/vs/editor/common/viewLayout/linesLayout.d.ts +130 -0
  383. package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.d.ts +10 -0
  384. package/vscode/src/vs/editor/common/viewLayout/viewLinesViewportData.d.ts +21 -0
  385. package/vscode/src/vs/editor/common/viewModel/modelLineProjection.d.ts +3 -0
  386. package/vscode/src/vs/editor/common/viewModel/overviewZoneManager.d.ts +6 -0
  387. package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.d.ts +12 -0
  388. package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +15 -0
  389. package/vscode/src/vs/editor/common/viewModel/viewModelLines.d.ts +10 -0
  390. package/vscode/src/vs/editor/common/viewModel.d.ts +104 -1
  391. package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.css +5 -0
  392. package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.css +5 -0
  393. package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.d.ts +1 -1
  394. package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.css +16 -0
  395. package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.css +15 -1
  396. package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPicker.css +40 -0
  397. package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.d.ts +4 -0
  398. package/vscode/src/vs/editor/contrib/comment/browser/lineCommentCommand.d.ts +26 -0
  399. package/vscode/src/vs/editor/contrib/dnd/browser/dnd.css +9 -3
  400. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.d.ts +12 -0
  401. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.d.ts +5 -0
  402. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/edit.d.ts +4 -0
  403. package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.css +8 -0
  404. package/vscode/src/vs/editor/contrib/editorState/browser/editorState.d.ts +8 -0
  405. package/vscode/src/vs/editor/contrib/find/browser/findDecorations.d.ts +1 -0
  406. package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.css +5 -0
  407. package/vscode/src/vs/editor/contrib/find/browser/findWidget.css +62 -1
  408. package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +4 -0
  409. package/vscode/src/vs/editor/contrib/find/browser/replacePattern.d.ts +18 -0
  410. package/vscode/src/vs/editor/contrib/folding/browser/folding.css +10 -1
  411. package/vscode/src/vs/editor/contrib/folding/browser/folding.d.ts +6 -0
  412. package/vscode/src/vs/editor/contrib/folding/browser/foldingModel.d.ts +67 -0
  413. package/vscode/src/vs/editor/contrib/folding/browser/foldingRanges.d.ts +13 -0
  414. package/vscode/src/vs/editor/contrib/gotoError/browser/media/gotoErrorWidget.css +20 -0
  415. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/clickLinkGesture.d.ts +9 -0
  416. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.css +5 -0
  417. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.css +22 -0
  418. package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.d.ts +3 -0
  419. package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidgetWrapper.d.ts +3 -0
  420. package/vscode/src/vs/editor/contrib/hover/browser/hover.css +19 -0
  421. package/vscode/src/vs/editor/contrib/hover/browser/hoverOperation.d.ts +16 -0
  422. package/vscode/src/vs/editor/contrib/hover/browser/hoverTypes.d.ts +54 -0
  423. package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.css +6 -0
  424. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.d.ts +3 -0
  425. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.css +12 -0
  426. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.d.ts +12 -0
  427. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +11 -1
  428. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/graph.d.ts +3 -0
  429. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +3 -0
  430. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +12 -0
  431. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +13 -0
  432. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.d.ts +13 -0
  433. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +3 -0
  434. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.css +16 -0
  435. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +4 -1
  436. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +58 -7
  437. package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgress.d.ts +1 -0
  438. package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgressWidget.css +9 -0
  439. package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLineCommand.d.ts +4 -0
  440. package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.d.ts +3 -0
  441. package/vscode/src/vs/editor/contrib/linesOperations/browser/moveLinesCommand.d.ts +9 -0
  442. package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.css +7 -0
  443. package/vscode/src/vs/editor/contrib/links/browser/links.css +5 -0
  444. package/vscode/src/vs/editor/contrib/message/browser/messageController.css +18 -0
  445. package/vscode/src/vs/editor/contrib/middleScroll/browser/middleScroll.css +7 -0
  446. package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css +29 -0
  447. package/vscode/src/vs/editor/contrib/peekView/browser/media/peekViewWidget.css +18 -0
  448. package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.css +6 -0
  449. package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderTextContribution.d.ts +3 -0
  450. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.css +16 -2
  451. package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.d.ts +27 -0
  452. package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.d.ts +4 -0
  453. package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.css +6 -0
  454. package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.d.ts +4 -0
  455. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +15 -0
  456. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollElement.d.ts +22 -1
  457. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollModelProvider.d.ts +5 -0
  458. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.d.ts +42 -0
  459. package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +19 -0
  460. package/vscode/src/vs/editor/contrib/suggest/browser/completionModel.d.ts +3 -0
  461. package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css +118 -0
  462. package/vscode/src/vs/editor/contrib/suggest/browser/suggest.d.ts +7 -0
  463. package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.d.ts +4 -0
  464. package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.d.ts +8 -0
  465. package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.css +5 -0
  466. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.css +19 -0
  467. package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.css +5 -0
  468. package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.css +8 -0
  469. package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.css +6 -0
  470. package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.d.ts +1 -0
  471. package/vscode/src/vs/editor/editor.worker.start.d.ts +5 -0
  472. package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.css +6 -0
  473. package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInput.css +14 -0
  474. package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.d.ts +73 -0
  475. package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +10 -0
  476. package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterLibraryService.d.ts +10 -0
  477. package/vscode/src/vs/nls.d.ts +96 -0
  478. package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +31 -0
  479. package/vscode/src/vs/platform/accessibility/browser/accessibleView.service.d.ts +4 -0
  480. package/vscode/src/vs/platform/accessibility/browser/accessibleViewRegistry.d.ts +3 -0
  481. package/vscode/src/vs/platform/accessibility/common/accessibility.d.ts +3 -0
  482. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.d.ts +16 -0
  483. package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.service.d.ts +7 -0
  484. package/vscode/src/vs/platform/action/common/action.d.ts +32 -0
  485. package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +36 -0
  486. package/vscode/src/vs/platform/actions/browser/floatingMenu.d.ts +4 -0
  487. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.css +14 -0
  488. package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +3 -0
  489. package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +67 -0
  490. package/vscode/src/vs/platform/actions/common/actions.d.ts +40 -0
  491. package/vscode/src/vs/platform/actions/common/actions.service.d.ts +20 -0
  492. package/vscode/src/vs/platform/clipboard/common/clipboardService.service.d.ts +33 -0
  493. package/vscode/src/vs/platform/commands/common/commands.d.ts +7 -0
  494. package/vscode/src/vs/platform/configuration/common/configuration.d.ts +9 -0
  495. package/vscode/src/vs/platform/configuration/common/configuration.service.d.ts +26 -0
  496. package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +126 -0
  497. package/vscode/src/vs/platform/contextkey/common/contextkey.d.ts +30 -0
  498. package/vscode/src/vs/platform/contextkey/common/scanner.d.ts +21 -1
  499. package/vscode/src/vs/platform/contextview/browser/contextView.d.ts +18 -0
  500. package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +87 -0
  501. package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +22 -0
  502. package/vscode/src/vs/platform/editor/common/editor.d.ts +231 -0
  503. package/vscode/src/vs/platform/environment/common/argv.d.ts +3 -0
  504. package/vscode/src/vs/platform/environment/common/environment.d.ts +5 -0
  505. package/vscode/src/vs/platform/environment/common/environment.service.d.ts +16 -0
  506. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +25 -22
  507. package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +4 -0
  508. package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.d.ts +6 -0
  509. package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +7 -0
  510. package/vscode/src/vs/platform/extensionManagement/common/implicitActivationEvents.d.ts +8 -0
  511. package/vscode/src/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service.d.ts +15 -0
  512. package/vscode/src/vs/platform/extensions/common/extensions.d.ts +944 -0
  513. package/vscode/src/vs/platform/files/browser/webFileSystemAccess.d.ts +25 -0
  514. package/vscode/src/vs/platform/files/common/files.d.ts +408 -0
  515. package/vscode/src/vs/platform/files/common/files.service.d.ts +168 -0
  516. package/vscode/src/vs/platform/files/common/watcher.d.ts +83 -0
  517. package/vscode/src/vs/platform/imageResize/common/imageResizeService.service.d.ts +3 -0
  518. package/vscode/src/vs/platform/instantiation/common/extensions.d.ts +8 -0
  519. package/vscode/src/vs/platform/instantiation/common/graph.d.ts +4 -0
  520. package/vscode/src/vs/platform/instantiation/common/instantiation.d.ts +31 -0
  521. package/vscode/src/vs/platform/jsonschemas/common/jsonContributionRegistry.d.ts +18 -0
  522. package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.d.ts +7 -0
  523. package/vscode/src/vs/platform/keybinding/common/keybinding.service.d.ts +27 -0
  524. package/vscode/src/vs/platform/keybinding/common/keybindingResolver.d.ts +24 -1
  525. package/vscode/src/vs/platform/keybinding/common/keybindingsRegistry.d.ts +3 -0
  526. package/vscode/src/vs/platform/keybinding/common/usLayoutResolvedKeybinding.d.ts +6 -0
  527. package/vscode/src/vs/platform/label/common/label.service.d.ts +12 -0
  528. package/vscode/src/vs/platform/layout/browser/layoutService.d.ts +6 -0
  529. package/vscode/src/vs/platform/layout/browser/layoutService.service.d.ts +51 -0
  530. package/vscode/src/vs/platform/list/browser/listService.service.d.ts +3 -0
  531. package/vscode/src/vs/platform/log/common/log.d.ts +30 -0
  532. package/vscode/src/vs/platform/log/common/log.service.d.ts +52 -0
  533. package/vscode/src/vs/platform/markers/common/markerService.d.ts +3 -0
  534. package/vscode/src/vs/platform/markers/common/markers.d.ts +6 -0
  535. package/vscode/src/vs/platform/notification/common/notification.d.ts +185 -0
  536. package/vscode/src/vs/platform/notification/common/notification.service.d.ts +63 -0
  537. package/vscode/src/vs/platform/observable/common/platformObservableUtils.d.ts +2 -0
  538. package/vscode/src/vs/platform/observable/common/wrapInHotClass.d.ts +10 -0
  539. package/vscode/src/vs/platform/observable/common/wrapInReloadableClass.d.ts +10 -0
  540. package/vscode/src/vs/platform/opener/browser/link.css +7 -0
  541. package/vscode/src/vs/platform/opener/common/opener.d.ts +33 -0
  542. package/vscode/src/vs/platform/opener/common/opener.service.d.ts +27 -0
  543. package/vscode/src/vs/platform/product/common/product.d.ts +5 -0
  544. package/vscode/src/vs/platform/product/common/product.js +2 -2
  545. package/vscode/src/vs/platform/progress/common/progress.d.ts +15 -0
  546. package/vscode/src/vs/platform/progress/common/progress.service.d.ts +6 -0
  547. package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +115 -0
  548. package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +4 -0
  549. package/vscode/src/vs/platform/quickinput/browser/quickInputList.d.ts +14 -0
  550. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.d.ts +3 -0
  551. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.d.ts +3 -0
  552. package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +3 -0
  553. package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +4 -0
  554. package/vscode/src/vs/platform/quickinput/common/quickAccess.d.ts +121 -0
  555. package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +574 -0
  556. package/vscode/src/vs/platform/quickinput/common/quickInput.service.d.ts +63 -0
  557. package/vscode/src/vs/platform/registry/common/platform.d.ts +14 -0
  558. package/vscode/src/vs/platform/remote/common/remoteAuthorityResolver.service.d.ts +7 -0
  559. package/vscode/src/vs/platform/remote/common/remoteExtensionsScanner.service.d.ts +3 -0
  560. package/vscode/src/vs/platform/remote/common/remoteSocketFactoryService.service.d.ts +6 -0
  561. package/vscode/src/vs/platform/storage/common/storage.d.ts +45 -0
  562. package/vscode/src/vs/platform/storage/common/storage.service.d.ts +120 -0
  563. package/vscode/src/vs/platform/telemetry/common/telemetry.service.d.ts +13 -0
  564. package/vscode/src/vs/platform/telemetry/common/telemetryUtils.d.ts +40 -0
  565. package/vscode/src/vs/platform/terminal/common/terminal.d.ts +342 -1
  566. package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +28 -0
  567. package/vscode/src/vs/platform/terminal/common/terminalProcess.d.ts +4 -0
  568. package/vscode/src/vs/platform/theme/common/colorUtils.d.ts +37 -0
  569. package/vscode/src/vs/platform/theme/common/iconRegistry.d.ts +32 -0
  570. package/vscode/src/vs/platform/theme/common/theme.d.ts +3 -0
  571. package/vscode/src/vs/platform/theme/common/themeService.d.ts +30 -0
  572. package/vscode/src/vs/platform/tunnel/common/tunnel.d.ts +13 -1
  573. package/vscode/src/vs/platform/undoRedo/common/undoRedo.d.ts +32 -0
  574. package/vscode/src/vs/platform/undoRedo/common/undoRedo.service.d.ts +32 -0
  575. package/vscode/src/vs/platform/update/common/update.d.ts +17 -0
  576. package/vscode/src/vs/platform/uriIdentity/common/uriIdentity.service.d.ts +26 -0
  577. package/vscode/src/vs/platform/url/common/url.d.ts +6 -0
  578. package/vscode/src/vs/platform/url/common/url.service.d.ts +5 -0
  579. package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.d.ts +3 -0
  580. package/vscode/src/vs/platform/userDataProfile/common/userDataProfileStorageService.service.d.ts +16 -0
  581. package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +12 -12
  582. package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +4 -0
  583. package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.d.ts +5 -0
  584. package/vscode/src/vs/platform/window/common/window.d.ts +39 -0
  585. package/vscode/src/vs/platform/workspace/common/workspace.d.ts +71 -1
  586. package/vscode/src/vs/platform/workspace/common/workspace.service.d.ts +36 -0
  587. package/vscode/src/vs/workbench/api/common/extHost.api.impl.d.ts +3 -0
  588. package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +93 -3
  589. package/vscode/src/vs/workbench/api/common/extHostAuthentication.d.ts +9 -0
  590. package/vscode/src/vs/workbench/api/common/extHostConsoleForwarder.d.ts +9 -0
  591. package/vscode/src/vs/workbench/api/common/extHostExtensionActivator.d.ts +13 -0
  592. package/vscode/src/vs/workbench/api/common/extHostExtensionService.d.ts +7 -0
  593. package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +2 -0
  594. package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +1 -0
  595. package/vscode/src/vs/workbench/api/common/extHostNotebook.d.ts +11 -0
  596. package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +7 -0
  597. package/vscode/src/vs/workbench/api/common/extHostTestItem.d.ts +3 -0
  598. package/vscode/src/vs/workbench/api/common/extHostTesting.d.ts +96 -2
  599. package/vscode/src/vs/workbench/api/common/extHostTestingPrivateApi.d.ts +5 -0
  600. package/vscode/src/vs/workbench/api/common/extHostTunnelService.d.ts +8 -0
  601. package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +123 -0
  602. package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +3 -0
  603. package/vscode/src/vs/workbench/browser/actions/media/actions.css +12 -0
  604. package/vscode/src/vs/workbench/browser/parts/editor/editor.d.ts +69 -0
  605. package/vscode/src/vs/workbench/common/composite.d.ts +24 -0
  606. package/vscode/src/vs/workbench/common/contributions.d.ts +62 -0
  607. package/vscode/src/vs/workbench/common/editor/diffEditorInput.d.ts +4 -0
  608. package/vscode/src/vs/workbench/common/editor/diffEditorModel.d.ts +4 -0
  609. package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +181 -0
  610. package/vscode/src/vs/workbench/common/editor/editorModel.d.ts +17 -0
  611. package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.d.ts +3 -0
  612. package/vscode/src/vs/workbench/common/editor/textDiffEditorModel.d.ts +4 -0
  613. package/vscode/src/vs/workbench/common/editor/textEditorModel.d.ts +15 -0
  614. package/vscode/src/vs/workbench/common/editor.d.ts +617 -0
  615. package/vscode/src/vs/workbench/common/panecomposite.d.ts +3 -0
  616. package/vscode/src/vs/workbench/common/views.d.ts +74 -0
  617. package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +4 -0
  618. package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +3 -0
  619. package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +11 -0
  620. package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +3 -0
  621. package/vscode/src/vs/workbench/contrib/chat/browser/chatContextPickService.service.d.ts +5 -0
  622. package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +9 -0
  623. package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +3 -0
  624. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +58 -0
  625. package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +6 -0
  626. package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +19 -0
  627. package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +3 -0
  628. package/vscode/src/vs/workbench/contrib/chat/common/chatSlashCommands.service.d.ts +3 -0
  629. package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.d.ts +18 -0
  630. package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +3 -0
  631. package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +11 -0
  632. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +12 -0
  633. package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +5 -0
  634. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +34 -0
  635. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +64 -0
  636. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +78 -0
  637. package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +40 -0
  638. package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.d.ts +10 -0
  639. package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.css +9 -0
  640. package/vscode/src/vs/workbench/contrib/codeEditor/browser/editorLineNumberMenu.d.ts +6 -0
  641. package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.d.ts +3 -0
  642. package/vscode/src/vs/workbench/contrib/codeEditor/browser/menuPreventer.d.ts +3 -0
  643. package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.d.ts +3 -0
  644. package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.d.ts +9 -0
  645. package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.d.ts +33 -0
  646. package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.d.ts +26 -0
  647. package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +161 -0
  648. package/vscode/src/vs/workbench/contrib/debug/common/debug.service.d.ts +130 -0
  649. package/vscode/src/vs/workbench/contrib/debug/common/debugUtils.d.ts +11 -0
  650. package/vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.service.d.ts +18 -0
  651. package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.service.d.ts +7 -0
  652. package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +4 -0
  653. package/vscode/src/vs/workbench/contrib/logs/common/defaultLogLevels.service.d.ts +3 -0
  654. package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.d.ts +14 -0
  655. package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +9 -0
  656. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +124 -0
  657. package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +15 -0
  658. package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.d.ts +787 -0
  659. package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +71 -0
  660. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorModelResolverService.d.ts +19 -0
  661. package/vscode/src/vs/workbench/contrib/notebook/common/notebookKernelService.service.d.ts +13 -0
  662. package/vscode/src/vs/workbench/contrib/notebook/common/notebookRendererMessagingService.d.ts +7 -0
  663. package/vscode/src/vs/workbench/contrib/notebook/common/notebookRendererMessagingService.service.d.ts +12 -0
  664. package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +2 -0
  665. package/vscode/src/vs/workbench/contrib/scm/browser/quickDiffModel.service.d.ts +6 -0
  666. package/vscode/src/vs/workbench/contrib/scm/common/scm.service.d.ts +3 -0
  667. package/vscode/src/vs/workbench/contrib/search/browser/replace.service.d.ts +14 -0
  668. package/vscode/src/vs/workbench/contrib/speech/common/speechService.service.d.ts +14 -0
  669. package/vscode/src/vs/workbench/contrib/tags/common/workspaceTags.service.d.ts +4 -0
  670. package/vscode/src/vs/workbench/contrib/tasks/common/taskService.service.d.ts +8 -0
  671. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +224 -0
  672. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +508 -13
  673. package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +92 -0
  674. package/vscode/src/vs/workbench/contrib/terminal/browser/xterm-private.d.ts +4 -0
  675. package/vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.service.d.ts +21 -0
  676. package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +3 -0
  677. package/vscode/src/vs/workbench/contrib/testing/common/testCoverageService.service.d.ts +16 -0
  678. package/vscode/src/vs/workbench/contrib/testing/common/testExplorerFilterState.service.d.ts +31 -0
  679. package/vscode/src/vs/workbench/contrib/testing/common/testId.d.ts +79 -0
  680. package/vscode/src/vs/workbench/contrib/testing/common/testItemCollection.d.ts +49 -0
  681. package/vscode/src/vs/workbench/contrib/testing/common/testProfileService.service.d.ts +36 -0
  682. package/vscode/src/vs/workbench/contrib/testing/common/testResultService.service.d.ts +24 -0
  683. package/vscode/src/vs/workbench/contrib/testing/common/testResultStorage.service.d.ts +6 -0
  684. package/vscode/src/vs/workbench/contrib/testing/common/testService.service.d.ts +62 -0
  685. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.d.ts +150 -0
  686. package/vscode/src/vs/workbench/contrib/testing/common/testingContinuousRunService.service.d.ts +36 -0
  687. package/vscode/src/vs/workbench/contrib/testing/common/testingDecorations.service.d.ts +19 -0
  688. package/vscode/src/vs/workbench/contrib/testing/common/testingPeekOpener.d.ts +2 -0
  689. package/vscode/src/vs/workbench/contrib/testing/common/testingPeekOpener.service.d.ts +18 -0
  690. package/vscode/src/vs/workbench/contrib/timeline/common/timeline.d.ts +29 -0
  691. package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +18 -0
  692. package/vscode/src/vs/workbench/contrib/webview/common/webview.d.ts +19 -0
  693. package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +31 -0
  694. package/vscode/src/vs/workbench/contrib/webviewView/browser/webviewViewService.service.d.ts +10 -0
  695. package/vscode/src/vs/workbench/services/activity/common/activity.service.d.ts +21 -0
  696. package/vscode/src/vs/workbench/services/authentication/browser/authenticationAccessService.service.d.ts +8 -0
  697. package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpAccessService.service.d.ts +8 -0
  698. package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpService.service.d.ts +41 -0
  699. package/vscode/src/vs/workbench/services/authentication/browser/authenticationMcpUsageService.service.d.ts +24 -0
  700. package/vscode/src/vs/workbench/services/authentication/browser/authenticationUsageService.service.d.ts +24 -0
  701. package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +107 -0
  702. package/vscode/src/vs/workbench/services/authentication/common/authentication.service.d.ts +124 -0
  703. package/vscode/src/vs/workbench/services/authentication/common/authenticationQuery.d.ts +267 -0
  704. package/vscode/src/vs/workbench/services/authentication/common/authenticationQuery.service.d.ts +33 -0
  705. package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.d.ts +3 -0
  706. package/vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.service.d.ts +39 -0
  707. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.service.d.ts +20 -0
  708. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.d.ts +29 -0
  709. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +511 -0
  710. package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.d.ts +49 -0
  711. package/vscode/src/vs/workbench/services/editor/common/editorPaneService.service.d.ts +6 -0
  712. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.d.ts +12 -0
  713. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.service.d.ts +41 -0
  714. package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +45 -0
  715. package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +174 -0
  716. package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +4 -0
  717. package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.service.d.ts +44 -0
  718. package/vscode/src/vs/workbench/services/extensions/common/extensionHostProtocol.d.ts +3 -0
  719. package/vscode/src/vs/workbench/services/extensions/common/extensionHostProxy.d.ts +3 -0
  720. package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +64 -0
  721. package/vscode/src/vs/workbench/services/extensions/common/extensions.service.d.ts +94 -0
  722. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.d.ts +4 -0
  723. package/vscode/src/vs/workbench/services/extensions/common/proxyIdentifier.d.ts +18 -0
  724. package/vscode/src/vs/workbench/services/files/common/elevatedFileService.service.d.ts +7 -0
  725. package/vscode/src/vs/workbench/services/history/common/history.d.ts +28 -0
  726. package/vscode/src/vs/workbench/services/history/common/history.service.d.ts +51 -0
  727. package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +69 -0
  728. package/vscode/src/vs/workbench/services/keybinding/common/fallbackKeyboardMapper.d.ts +3 -0
  729. package/vscode/src/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service.d.ts +9 -0
  730. package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +119 -0
  731. package/vscode/src/vs/workbench/services/lifecycle/common/lifecycle.d.ts +116 -0
  732. package/vscode/src/vs/workbench/services/lifecycle/common/lifecycle.service.d.ts +54 -0
  733. package/vscode/src/vs/workbench/services/lifecycle/common/lifecycleService.d.ts +3 -0
  734. package/vscode/src/vs/workbench/services/output/common/output.d.ts +57 -0
  735. package/vscode/src/vs/workbench/services/output/common/output.service.d.ts +45 -0
  736. package/vscode/src/vs/workbench/services/panecomposite/browser/panecomposite.service.d.ts +30 -0
  737. package/vscode/src/vs/workbench/services/path/common/pathService.service.d.ts +42 -0
  738. package/vscode/src/vs/workbench/services/remote/common/remoteAgentService.service.d.ts +16 -0
  739. package/vscode/src/vs/workbench/services/search/common/folderQuerySearchTree.d.ts +4 -0
  740. package/vscode/src/vs/workbench/services/search/common/queryBuilder.d.ts +28 -0
  741. package/vscode/src/vs/workbench/services/search/common/search.d.ts +32 -0
  742. package/vscode/src/vs/workbench/services/search/common/search.service.d.ts +3 -0
  743. package/vscode/src/vs/workbench/services/search/common/searchExtConversionTypes.d.ts +273 -0
  744. package/vscode/src/vs/workbench/services/search/common/searchExtTypes.d.ts +327 -0
  745. package/vscode/src/vs/workbench/services/search/common/textSearchManager.d.ts +6 -0
  746. package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.d.ts +91 -0
  747. package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.service.d.ts +10 -0
  748. package/vscode/src/vs/workbench/services/terminal/common/embedderTerminalService.service.d.ts +3 -0
  749. package/vscode/src/vs/workbench/services/textfile/common/encoding.d.ts +9 -0
  750. package/vscode/src/vs/workbench/services/textfile/common/textEditorService.service.d.ts +17 -0
  751. package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +179 -0
  752. package/vscode/src/vs/workbench/services/textfile/common/textfiles.service.d.ts +74 -0
  753. package/vscode/src/vs/workbench/services/timer/browser/timerService.service.d.ts +31 -0
  754. package/vscode/src/vs/workbench/services/title/browser/titleService.service.d.ts +6 -0
  755. package/vscode/src/vs/workbench/services/untitled/common/untitledTextEditorService.service.d.ts +46 -0
  756. package/vscode/src/vs/workbench/services/userActivity/common/userActivityService.service.d.ts +14 -0
  757. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +11 -0
  758. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +32 -0
  759. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +9 -0
  760. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +84 -0
  761. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyHistory.service.d.ts +43 -0
  762. package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +63 -0
  763. package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +28 -0
@@ -20,6 +20,51 @@ export declare class SlidingWindowAverage {
20
20
  update(value: number): number;
21
21
  get value(): number;
22
22
  }
23
+ /** Returns whether the point is within the triangle formed by the following 6 x/y point pairs */
23
24
  export declare function isPointWithinTriangle(x: number, y: number, ax: number, ay: number, bx: number, by: number, cx: number, cy: number): boolean;
25
+ /**
26
+ * Function to get a (pseudo)random integer from a provided `max`...[`min`] range.
27
+ * Both `min` and `max` values are inclusive. The `min` value is optional (defaults to `0`).
28
+ *
29
+ * @throws in the next cases:
30
+ * - if provided `min` or `max` is not a number
31
+ * - if provided `min` or `max` is not finite
32
+ * - if provided `min` is larger than `max` value
33
+ *
34
+ * ## Examples
35
+ *
36
+ * Specifying a `max` value only uses `0` as the `min` value by default:
37
+ *
38
+ * ```typescript
39
+ * // get a random integer between 0 and 10
40
+ * const randomInt = randomInt(10);
41
+ *
42
+ * assert(
43
+ * randomInt >= 0,
44
+ * 'Should be greater than or equal to 0.',
45
+ * );
46
+ *
47
+ * assert(
48
+ * randomInt <= 10,
49
+ * 'Should be less than or equal to 10.',
50
+ * );
51
+ * ```
52
+ * * Specifying both `max` and `min` values:
53
+ *
54
+ * ```typescript
55
+ * // get a random integer between 5 and 8
56
+ * const randomInt = randomInt(8, 5);
57
+ *
58
+ * assert(
59
+ * randomInt >= 5,
60
+ * 'Should be greater than or equal to 5.',
61
+ * );
62
+ *
63
+ * assert(
64
+ * randomInt <= 8,
65
+ * 'Should be less than or equal to 8.',
66
+ * );
67
+ * ```
68
+ */
24
69
  export declare function randomInt(max: number, min?: number): number;
25
70
  export declare function randomChance(p: number): boolean;
@@ -2,6 +2,9 @@ export declare const AUTH_PROTECTED_RESOURCE_METADATA_DISCOVERY_PATH = "/.well-k
2
2
  export declare const AUTH_SERVER_METADATA_DISCOVERY_PATH = "/.well-known/oauth-authorization-server";
3
3
  export declare const OPENID_CONNECT_DISCOVERY_PATH = "/.well-known/openid-configuration";
4
4
  export declare const AUTH_SCOPE_SEPARATOR = " ";
5
+ /**
6
+ * Base OAuth 2.0 error codes as specified in RFC 6749.
7
+ */
5
8
  export declare enum AuthorizationErrorType {
6
9
  InvalidRequest = "invalid_request",
7
10
  InvalidClient = "invalid_client",
@@ -10,133 +13,483 @@ export declare enum AuthorizationErrorType {
10
13
  UnsupportedGrantType = "unsupported_grant_type",
11
14
  InvalidScope = "invalid_scope"
12
15
  }
16
+ /**
17
+ * Device authorization grant specific error codes as specified in RFC 8628 section 3.5.
18
+ */
13
19
  export declare enum AuthorizationDeviceCodeErrorType {
20
+ /**
21
+ * The authorization request is still pending as the end user hasn't completed the user interaction steps.
22
+ */
14
23
  AuthorizationPending = "authorization_pending",
24
+ /**
25
+ * A variant of "authorization_pending", polling should continue but interval must be increased by 5 seconds.
26
+ */
15
27
  SlowDown = "slow_down",
28
+ /**
29
+ * The authorization request was denied.
30
+ */
16
31
  AccessDenied = "access_denied",
32
+ /**
33
+ * The "device_code" has expired and the device authorization session has concluded.
34
+ */
17
35
  ExpiredToken = "expired_token"
18
36
  }
37
+ /**
38
+ * Dynamic client registration specific error codes as specified in RFC 7591.
39
+ */
19
40
  export declare enum AuthorizationRegistrationErrorType {
41
+ /**
42
+ * The value of one or more redirection URIs is invalid.
43
+ */
20
44
  InvalidRedirectUri = "invalid_redirect_uri",
45
+ /**
46
+ * The value of one of the client metadata fields is invalid and the server has rejected this request.
47
+ */
21
48
  InvalidClientMetadata = "invalid_client_metadata",
49
+ /**
50
+ * The software statement presented is invalid.
51
+ */
22
52
  InvalidSoftwareStatement = "invalid_software_statement",
53
+ /**
54
+ * The software statement presented is not approved for use by this authorization server.
55
+ */
23
56
  UnapprovedSoftwareStatement = "unapproved_software_statement"
24
57
  }
58
+ /**
59
+ * Metadata about a protected resource.
60
+ */
25
61
  export interface IAuthorizationProtectedResourceMetadata {
62
+ /**
63
+ * REQUIRED. The protected resource's resource identifier URL that uses https scheme and has no fragment components.
64
+ */
26
65
  resource: string;
66
+ /**
67
+ * OPTIONAL. Human-readable name of the protected resource intended for display to the end user.
68
+ */
27
69
  resource_name?: string;
70
+ /**
71
+ * OPTIONAL. JSON array containing a list of OAuth authorization server identifiers.
72
+ */
28
73
  authorization_servers?: string[];
74
+ /**
75
+ * OPTIONAL. URL of the protected resource's JWK Set document.
76
+ */
29
77
  jwks_uri?: string;
78
+ /**
79
+ * RECOMMENDED. JSON array containing a list of the OAuth 2.0 scope values used in authorization requests.
80
+ */
30
81
  scopes_supported?: string[];
82
+ /**
83
+ * OPTIONAL. JSON array containing a list of the OAuth 2.0 Bearer Token presentation methods supported.
84
+ */
31
85
  bearer_methods_supported?: string[];
86
+ /**
87
+ * OPTIONAL. JSON array containing a list of the JWS signing algorithms supported.
88
+ */
32
89
  resource_signing_alg_values_supported?: string[];
90
+ /**
91
+ * OPTIONAL. JSON array containing a list of the JWE encryption algorithms supported.
92
+ */
33
93
  resource_encryption_alg_values_supported?: string[];
94
+ /**
95
+ * OPTIONAL. JSON array containing a list of the JWE encryption algorithms supported.
96
+ */
34
97
  resource_encryption_enc_values_supported?: string[];
98
+ /**
99
+ * OPTIONAL. URL of a page containing human-readable documentation.
100
+ */
35
101
  resource_documentation?: string;
102
+ /**
103
+ * OPTIONAL. URL that provides the resource's requirements on how clients can use the data.
104
+ */
36
105
  resource_policy_uri?: string;
106
+ /**
107
+ * OPTIONAL. URL that provides the resource's terms of service.
108
+ */
37
109
  resource_tos_uri?: string;
38
110
  }
111
+ /**
112
+ * Metadata about an OAuth 2.0 Authorization Server.
113
+ */
39
114
  export interface IAuthorizationServerMetadata {
115
+ /**
116
+ * REQUIRED. The authorization server's issuer identifier URL that uses https scheme and has no query or fragment components.
117
+ */
40
118
  issuer: string;
119
+ /**
120
+ * URL of the authorization server's authorization endpoint.
121
+ * This is REQUIRED unless no grant types are supported that use the authorization endpoint.
122
+ */
41
123
  authorization_endpoint?: string;
124
+ /**
125
+ * URL of the authorization server's token endpoint.
126
+ * This is REQUIRED unless only the implicit grant type is supported.
127
+ */
42
128
  token_endpoint?: string;
129
+ /**
130
+ * OPTIONAL. URL of the authorization server's device code endpoint.
131
+ */
43
132
  device_authorization_endpoint?: string;
133
+ /**
134
+ * OPTIONAL. URL of the authorization server's JWK Set document containing signing keys.
135
+ */
44
136
  jwks_uri?: string;
137
+ /**
138
+ * OPTIONAL. URL of the authorization server's OAuth 2.0 Dynamic Client Registration endpoint.
139
+ */
45
140
  registration_endpoint?: string;
141
+ /**
142
+ * RECOMMENDED. JSON array containing a list of the OAuth 2.0 scope values supported.
143
+ */
46
144
  scopes_supported?: string[];
145
+ /**
146
+ * REQUIRED. JSON array containing a list of the OAuth 2.0 response_type values supported.
147
+ */
47
148
  response_types_supported: string[];
149
+ /**
150
+ * OPTIONAL. JSON array containing a list of the OAuth 2.0 response_mode values supported.
151
+ * Default is ["query", "fragment"].
152
+ */
48
153
  response_modes_supported?: string[];
154
+ /**
155
+ * OPTIONAL. JSON array containing a list of OAuth 2.0 grant type values supported.
156
+ * Default is ["authorization_code", "implicit"].
157
+ */
49
158
  grant_types_supported?: string[];
159
+ /**
160
+ * OPTIONAL. JSON array containing a list of client authentication methods supported by the token endpoint.
161
+ * Default is "client_secret_basic".
162
+ */
50
163
  token_endpoint_auth_methods_supported?: string[];
164
+ /**
165
+ * OPTIONAL. JSON array containing a list of JWS signing algorithms supported by the token endpoint.
166
+ */
51
167
  token_endpoint_auth_signing_alg_values_supported?: string[];
168
+ /**
169
+ * OPTIONAL. URL of a page containing human-readable documentation for developers.
170
+ */
52
171
  service_documentation?: string;
172
+ /**
173
+ * OPTIONAL. Languages and scripts supported for the user interface, as a JSON array of BCP 47 language tags.
174
+ */
53
175
  ui_locales_supported?: string[];
176
+ /**
177
+ * OPTIONAL. URL that the authorization server provides to read about the authorization server's requirements.
178
+ */
54
179
  op_policy_uri?: string;
180
+ /**
181
+ * OPTIONAL. URL that the authorization server provides to read about the authorization server's terms of service.
182
+ */
55
183
  op_tos_uri?: string;
184
+ /**
185
+ * OPTIONAL. URL of the authorization server's OAuth 2.0 revocation endpoint.
186
+ */
56
187
  revocation_endpoint?: string;
188
+ /**
189
+ * OPTIONAL. JSON array containing a list of client authentication methods supported by the revocation endpoint.
190
+ */
57
191
  revocation_endpoint_auth_methods_supported?: string[];
192
+ /**
193
+ * OPTIONAL. JSON array containing a list of JWS signing algorithms supported by the revocation endpoint.
194
+ */
58
195
  revocation_endpoint_auth_signing_alg_values_supported?: string[];
196
+ /**
197
+ * OPTIONAL. URL of the authorization server's OAuth 2.0 introspection endpoint.
198
+ */
59
199
  introspection_endpoint?: string;
200
+ /**
201
+ * OPTIONAL. JSON array containing a list of client authentication methods supported by the introspection endpoint.
202
+ */
60
203
  introspection_endpoint_auth_methods_supported?: string[];
204
+ /**
205
+ * OPTIONAL. JSON array containing a list of JWS signing algorithms supported by the introspection endpoint.
206
+ */
61
207
  introspection_endpoint_auth_signing_alg_values_supported?: string[];
208
+ /**
209
+ * OPTIONAL. JSON array containing a list of PKCE code challenge methods supported.
210
+ */
62
211
  code_challenge_methods_supported?: string[];
63
212
  }
213
+ /**
214
+ * Response from the dynamic client registration endpoint.
215
+ */
64
216
  export interface IAuthorizationDynamicClientRegistrationResponse {
217
+ /**
218
+ * REQUIRED. The client identifier issued by the authorization server.
219
+ */
65
220
  client_id: string;
221
+ /**
222
+ * OPTIONAL. The client secret issued by the authorization server.
223
+ * Not returned for public clients.
224
+ */
66
225
  client_secret?: string;
226
+ /**
227
+ * OPTIONAL. Time at which the client secret will expire in seconds since the Unix Epoch.
228
+ */
67
229
  client_secret_expires_at?: number;
230
+ /**
231
+ * OPTIONAL. Client name as provided during registration.
232
+ */
68
233
  client_name?: string;
234
+ /**
235
+ * OPTIONAL. Client URI as provided during registration.
236
+ */
69
237
  client_uri?: string;
238
+ /**
239
+ * OPTIONAL. Array of redirection URIs as provided during registration.
240
+ */
70
241
  redirect_uris?: string[];
242
+ /**
243
+ * OPTIONAL. Array of grant types allowed for the client.
244
+ */
71
245
  grant_types?: string[];
246
+ /**
247
+ * OPTIONAL. Array of response types allowed for the client.
248
+ */
72
249
  response_types?: string[];
250
+ /**
251
+ * OPTIONAL. Type of authentication method used by the client.
252
+ */
73
253
  token_endpoint_auth_method?: string;
74
254
  }
255
+ /**
256
+ * Response from the authorization endpoint.
257
+ * Typically returned as query parameters in a redirect.
258
+ */
75
259
  export interface IAuthorizationAuthorizeResponse {
260
+ /**
261
+ * REQUIRED. The authorization code generated by the authorization server.
262
+ */
76
263
  code: string;
264
+ /**
265
+ * REQUIRED. The state value that was sent in the authorization request.
266
+ * Used to prevent CSRF attacks.
267
+ */
77
268
  state: string;
78
269
  }
270
+ /**
271
+ * Error response from the authorization endpoint.
272
+ */
79
273
  export interface IAuthorizationAuthorizeErrorResponse {
274
+ /**
275
+ * REQUIRED. Error code as specified in OAuth 2.0.
276
+ */
80
277
  error: string;
278
+ /**
279
+ * OPTIONAL. Human-readable description of the error.
280
+ */
81
281
  error_description?: string;
282
+ /**
283
+ * OPTIONAL. URI to a human-readable web page with more information about the error.
284
+ */
82
285
  error_uri?: string;
286
+ /**
287
+ * REQUIRED. The state value that was sent in the authorization request.
288
+ */
83
289
  state: string;
84
290
  }
291
+ /**
292
+ * Response from the token endpoint.
293
+ */
85
294
  export interface IAuthorizationTokenResponse {
295
+ /**
296
+ * REQUIRED. The access token issued by the authorization server.
297
+ */
86
298
  access_token: string;
299
+ /**
300
+ * REQUIRED. The type of the token issued. Usually "Bearer".
301
+ */
87
302
  token_type: string;
303
+ /**
304
+ * RECOMMENDED. The lifetime in seconds of the access token.
305
+ */
88
306
  expires_in?: number;
307
+ /**
308
+ * OPTIONAL. The refresh token, which can be used to obtain new access tokens.
309
+ */
89
310
  refresh_token?: string;
311
+ /**
312
+ * OPTIONAL. The scope of the access token as a space-delimited list of strings.
313
+ */
90
314
  scope?: string;
315
+ /**
316
+ * OPTIONAL. ID Token value associated with the authenticated session for OpenID Connect flows.
317
+ */
91
318
  id_token?: string;
92
319
  }
320
+ /**
321
+ * Error response from the token endpoint.
322
+ */
93
323
  export interface IAuthorizationTokenErrorResponse {
324
+ /**
325
+ * REQUIRED. Error code as specified in OAuth 2.0.
326
+ */
94
327
  error: string;
328
+ /**
329
+ * OPTIONAL. Human-readable description of the error.
330
+ */
95
331
  error_description?: string;
332
+ /**
333
+ * OPTIONAL. URI to a human-readable web page with more information about the error.
334
+ */
96
335
  error_uri?: string;
97
336
  }
337
+ /**
338
+ * Response from the device authorization endpoint as per RFC 8628 section 3.2.
339
+ */
98
340
  export interface IAuthorizationDeviceResponse {
341
+ /**
342
+ * REQUIRED. The device verification code.
343
+ */
99
344
  device_code: string;
345
+ /**
346
+ * REQUIRED. The end-user verification code.
347
+ */
100
348
  user_code: string;
349
+ /**
350
+ * REQUIRED. The end-user verification URI on the authorization server.
351
+ */
101
352
  verification_uri: string;
353
+ /**
354
+ * OPTIONAL. A verification URI that includes the user_code, designed for non-textual transmission.
355
+ */
102
356
  verification_uri_complete?: string;
357
+ /**
358
+ * REQUIRED. The lifetime in seconds of the device_code and user_code.
359
+ */
103
360
  expires_in: number;
361
+ /**
362
+ * OPTIONAL. The minimum amount of time in seconds that the client should wait between polling requests.
363
+ * If no value is provided, clients must use 5 as the default.
364
+ */
104
365
  interval?: number;
105
366
  }
367
+ /**
368
+ * Error response from the token endpoint when using device authorization grant.
369
+ * As defined in RFC 8628 section 3.5.
370
+ */
106
371
  export interface IAuthorizationErrorResponse {
372
+ /**
373
+ * REQUIRED. Error code as specified in OAuth 2.0 or in RFC 8628 section 3.5.
374
+ */
107
375
  error: AuthorizationErrorType | string;
376
+ /**
377
+ * OPTIONAL. Human-readable description of the error.
378
+ */
108
379
  error_description?: string;
380
+ /**
381
+ * OPTIONAL. URI to a human-readable web page with more information about the error.
382
+ */
109
383
  error_uri?: string;
110
384
  }
385
+ /**
386
+ * Error response from the token endpoint when using device authorization grant.
387
+ * As defined in RFC 8628 section 3.5.
388
+ */
111
389
  export interface IAuthorizationDeviceTokenErrorResponse extends IAuthorizationErrorResponse {
390
+ /**
391
+ * REQUIRED. Error code as specified in OAuth 2.0 or in RFC 8628 section 3.5.
392
+ */
112
393
  error: AuthorizationErrorType | AuthorizationDeviceCodeErrorType | string;
113
394
  }
114
395
  export interface IAuthorizationRegistrationErrorResponse {
396
+ /**
397
+ * REQUIRED. Error code as specified in OAuth 2.0 or Dynamic Client Registration.
398
+ */
115
399
  error: AuthorizationRegistrationErrorType | string;
400
+ /**
401
+ * OPTIONAL. Human-readable description of the error.
402
+ */
116
403
  error_description?: string;
117
404
  }
118
405
  export interface IAuthorizationJWTClaims {
406
+ /**
407
+ * REQUIRED. JWT ID. Unique identifier for the token.
408
+ */
119
409
  jti: string;
410
+ /**
411
+ * REQUIRED. Subject. Principal about which the token asserts information.
412
+ */
120
413
  sub: string;
414
+ /**
415
+ * REQUIRED. Issuer. Entity that issued the token.
416
+ */
121
417
  iss: string;
418
+ /**
419
+ * OPTIONAL. Audience. Recipients that the token is intended for.
420
+ */
122
421
  aud?: string | string[];
422
+ /**
423
+ * OPTIONAL. Expiration time. Time after which the token is invalid (seconds since Unix epoch).
424
+ */
123
425
  exp?: number;
426
+ /**
427
+ * OPTIONAL. Not before time. Time before which the token is not valid (seconds since Unix epoch).
428
+ */
124
429
  nbf?: number;
430
+ /**
431
+ * OPTIONAL. Issued at time when the token was issued (seconds since Unix epoch).
432
+ */
125
433
  iat?: number;
434
+ /**
435
+ * OPTIONAL. Authorized party. The party to which the token was issued.
436
+ */
126
437
  azp?: string;
438
+ /**
439
+ * OPTIONAL. Scope values for which the token is valid.
440
+ */
127
441
  scope?: string;
442
+ /**
443
+ * OPTIONAL. Full name of the user.
444
+ */
128
445
  name?: string;
446
+ /**
447
+ * OPTIONAL. Given or first name of the user.
448
+ */
129
449
  given_name?: string;
450
+ /**
451
+ * OPTIONAL. Family name or last name of the user.
452
+ */
130
453
  family_name?: string;
454
+ /**
455
+ * OPTIONAL. Middle name of the user.
456
+ */
131
457
  middle_name?: string;
458
+ /**
459
+ * OPTIONAL. Preferred username or email the user wishes to be referred to.
460
+ */
132
461
  preferred_username?: string;
462
+ /**
463
+ * OPTIONAL. Email address of the user.
464
+ */
133
465
  email?: string;
466
+ /**
467
+ * OPTIONAL. True if the user's email has been verified.
468
+ */
134
469
  email_verified?: boolean;
470
+ /**
471
+ * OPTIONAL. User's profile picture URL.
472
+ */
135
473
  picture?: string;
474
+ /**
475
+ * OPTIONAL. Authentication time. Time when the user authentication occurred.
476
+ */
136
477
  auth_time?: number;
478
+ /**
479
+ * OPTIONAL. Authentication context class reference.
480
+ */
137
481
  acr?: string;
482
+ /**
483
+ * OPTIONAL. Authentication methods references.
484
+ */
138
485
  amr?: string[];
486
+ /**
487
+ * OPTIONAL. Session ID. String identifier for a session.
488
+ */
139
489
  sid?: string;
490
+ /**
491
+ * OPTIONAL. Address component.
492
+ */
140
493
  address?: {
141
494
  formatted?: string;
142
495
  street_address?: string;
@@ -145,8 +498,17 @@ export interface IAuthorizationJWTClaims {
145
498
  postal_code?: string;
146
499
  country?: string;
147
500
  };
501
+ /**
502
+ * OPTIONAL. Groups that the user belongs to.
503
+ */
148
504
  groups?: string[];
505
+ /**
506
+ * OPTIONAL. Roles assigned to the user.
507
+ */
149
508
  roles?: string[];
509
+ /**
510
+ * OPTIONAL. Handles optional claims that are not explicitly defined in the standard.
511
+ */
150
512
  [key: string]: unknown;
151
513
  }
152
514
  export declare function isAuthorizationProtectedResourceMetadata(obj: unknown): obj is IAuthorizationProtectedResourceMetadata;
@@ -158,6 +520,13 @@ export declare function isAuthorizationDeviceResponse(obj: unknown): obj is IAut
158
520
  export declare function isAuthorizationErrorResponse(obj: unknown): obj is IAuthorizationErrorResponse;
159
521
  export declare function isAuthorizationRegistrationErrorResponse(obj: unknown): obj is IAuthorizationRegistrationErrorResponse;
160
522
  export declare function getDefaultMetadataForUrl(authorizationServer: URL): IAuthorizationServerMetadata;
523
+ /**
524
+ * Default port for the authorization flow. We try to use this port so that
525
+ * the redirect URI does not change when running on localhost. This is useful
526
+ * for servers that only allow exact matches on the redirect URI. The spec
527
+ * says that the port should not matter, but some servers do not follow
528
+ * the spec and require an exact match.
529
+ */
161
530
  export declare const DEFAULT_AUTH_FLOW_PORT = 33418;
162
531
  export declare function fetchDynamicRegistration(serverMetadata: IAuthorizationServerMetadata, clientName: string, scopes?: string[]): Promise<IAuthorizationDynamicClientRegistrationResponse>;
163
532
  export declare function parseWWWAuthenticateHeader(wwwAuthenticateHeaderValue: string): {
@@ -1,12 +1,31 @@
1
1
  export declare function deepClone<T>(obj: T): T;
2
2
  export declare function deepFreeze<T>(obj: T): T;
3
3
  export declare function cloneAndChange(obj: any, changer: (orig: any) => any): any;
4
+ /**
5
+ * Copies all properties of source into destination. The optional parameter "overwrite" allows to control
6
+ * if existing properties on the destination should be overwritten or not. Defaults to true (overwrite).
7
+ */
4
8
  export declare function mixin(destination: any, source: any, overwrite?: boolean): any;
5
9
  export declare function equals(one: any, other: any): boolean;
10
+ /**
11
+ * Calls `JSON.Stringify` with a replacer to break apart any circular references.
12
+ * This prevents `JSON`.stringify` from throwing the exception
13
+ * "Uncaught TypeError: Converting circular structure to JSON"
14
+ */
6
15
  export declare function safeStringify(obj: any): string;
7
16
  type obj = {
8
17
  [key: string]: any;
9
18
  };
19
+ /**
20
+ * Returns an object that has keys for each value that is different in the base object. Keys
21
+ * that do not exist in the target but in the base object are not considered.
22
+ *
23
+ * Note: This is not a deep-diffing method, so the values are strictly taken into the resulting
24
+ * object if they differ.
25
+ *
26
+ * @param base the object to diff against
27
+ * @param obj the object to use for diffing
28
+ */
10
29
  export declare function distinct(base: obj, target: obj): obj;
11
30
  export declare function getCaseInsensitive(target: obj, key: string): unknown;
12
31
  export declare function filter(obj: obj, predicate: (key: string, value: any) => boolean): obj;