@codingame/monaco-vscode-api 18.1.3 → 18.2.1

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 (33) hide show
  1. package/extensions.js +5 -1
  2. package/l10n.d.ts +4 -2
  3. package/l10n.js +8 -3
  4. package/package.json +8 -8
  5. package/services.d.ts +206 -0
  6. package/services.js +209 -5
  7. package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.js +1 -1
  8. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.js +1 -1
  9. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +1 -1
  10. package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +1 -1
  11. package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
  12. package/vscode/src/vs/platform/product/common/product.js +1 -1
  13. package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +1 -1
  14. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
  15. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
  16. package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
  17. package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
  18. package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
  19. package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
  20. package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
  21. package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
  22. package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +1 -1
  23. package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
  24. package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
  25. package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +84 -84
  26. package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
  27. package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
  28. package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
  29. package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
  30. package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
  31. package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
  32. package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
  33. package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +12 -12
package/services.js CHANGED
@@ -126,7 +126,7 @@ export { IFileService } from './vscode/src/vs/platform/files/common/files.servic
126
126
  export { IMarkerService } from './vscode/src/vs/platform/markers/common/markers.service.js';
127
127
  export { IOpenerService } from './vscode/src/vs/platform/opener/common/opener.service.js';
128
128
  export { IQuickInputService } from './vscode/src/vs/platform/quickinput/common/quickInput.service.js';
129
- export { ITelemetryService } from './vscode/src/vs/platform/telemetry/common/telemetry.service.js';
129
+ export { ICustomEndpointTelemetryService, ITelemetryService } from './vscode/src/vs/platform/telemetry/common/telemetry.service.js';
130
130
  export { IUriIdentityService } from './vscode/src/vs/platform/uriIdentity/common/uriIdentity.service.js';
131
131
  export { IBreadcrumbsService } from './vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.service.js';
132
132
  export { IEditorGroupsService } from './vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.js';
@@ -169,7 +169,7 @@ export { IFilesConfigurationService } from './vscode/src/vs/workbench/services/f
169
169
  export { ILabelService } from './vscode/src/vs/platform/label/common/label.service.js';
170
170
  export { IWorkbenchLayoutService } from './vscode/src/vs/workbench/services/layout/browser/layoutService.service.js';
171
171
  export { ILanguagePackService } from './vscode/src/vs/platform/languagePacks/common/languagePacks.service.js';
172
- export { ILocaleService } from './vscode/src/vs/workbench/services/localization/common/locale.service.js';
172
+ export { IActiveLanguagePackService, ILocaleService } from './vscode/src/vs/workbench/services/localization/common/locale.service.js';
173
173
  export { NeverShowAgainScope, NoOpNotification, NoOpProgress, NotificationPriority, NotificationsFilter } from './vscode/src/vs/platform/notification/common/notification.js';
174
174
  export { IActivityService } from './vscode/src/vs/workbench/services/activity/common/activity.service.js';
175
175
  export { IHoverService } from './vscode/src/vs/platform/hover/browser/hover.service.js';
@@ -181,11 +181,215 @@ export { IWorkspaceTrustEnablementService, IWorkspaceTrustManagementService, IWo
181
181
  export { IKeybindingService } from './vscode/src/vs/platform/keybinding/common/keybinding.service.js';
182
182
  export { ISecretStorageService } from './vscode/src/vs/platform/secrets/common/secrets.service.js';
183
183
  export { ConfigurationTarget } from './vscode/src/vs/platform/configuration/common/configuration.js';
184
+ export { IRemoteExplorerService } from './vscode/src/vs/workbench/services/remote/common/remoteExplorerService.service.js';
185
+ export { ITunnelService } from './vscode/src/vs/platform/tunnel/common/tunnel.service.js';
186
+ export { ITreeViewsDnDService } from './vscode/src/vs/editor/common/services/treeViewsDndService.service.js';
187
+ export { IAccessibleViewService } from './vscode/src/vs/platform/accessibility/browser/accessibleView.service.js';
188
+ export { IActionViewItemService } from './vscode/src/vs/platform/actions/browser/actionViewItemService.service.js';
189
+ export { IExtensionHostDebugService } from './vscode/src/vs/platform/debug/common/extensionHostDebug.service.js';
190
+ export { NullDiagnosticsService } from './vscode/src/vs/platform/diagnostics/common/diagnostics.js';
191
+ export { IDiagnosticsService } from './vscode/src/vs/platform/diagnostics/common/diagnostics.service.js';
192
+ export { IDownloadService } from './vscode/src/vs/platform/download/common/download.service.js';
193
+ export { IEncryptionService } from './vscode/src/vs/platform/encryption/common/encryptionService.service.js';
194
+ export { IEnvironmentService } from './vscode/src/vs/platform/environment/common/environment.service.js';
195
+ export { IAllowedExtensionsService, IExtensionGalleryService, IExtensionTipsService, IGlobalExtensionEnablementService } from './vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.js';
196
+ export { IExtensionStorageService } from './vscode/src/vs/platform/extensionManagement/common/extensionStorage.service.js';
197
+ export { IExtensionsProfileScannerService } from './vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.service.js';
198
+ export { IExtensionsScannerService } from './vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.service.js';
199
+ export { IExtensionRecommendationNotificationService } from './vscode/src/vs/platform/extensionRecommendations/common/extensionRecommendations.service.js';
200
+ export { IExtensionResourceLoaderService } from './vscode/src/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service.js';
201
+ export { IBuiltinExtensionsScannerService } from './vscode/src/vs/platform/extensions/common/extensions.service.js';
202
+ export { InstantiationType, registerSingleton } from './vscode/src/vs/platform/instantiation/common/extensions.js';
203
+ export { IKeyboardLayoutService } from './vscode/src/vs/platform/keyboardLayout/common/keyboardLayout.service.js';
204
+ export { NullPolicyService } from './vscode/src/vs/platform/policy/common/policy.js';
205
+ export { IPolicyService } from './vscode/src/vs/platform/policy/common/policy.service.js';
206
+ export { IRemoteExtensionsScannerService } from './vscode/src/vs/platform/remote/common/remoteExtensionsScanner.service.js';
207
+ export { IRequestService } from './vscode/src/vs/platform/request/common/request.service.js';
208
+ export { ISignService } from './vscode/src/vs/platform/sign/common/sign.service.js';
209
+ export { NullEndpointTelemetryService } from './vscode/src/vs/platform/telemetry/common/telemetryUtils.js';
210
+ export { TerminalLocation } from './vscode/src/vs/platform/terminal/common/terminal.js';
211
+ export { ITerminalLogService } from './vscode/src/vs/platform/terminal/common/terminal.service.js';
212
+ export { State } from './vscode/src/vs/platform/update/common/update.js';
213
+ export { IUpdateService } from './vscode/src/vs/platform/update/common/update.service.js';
214
+ export { UriIdentityService } from './vscode/src/vs/platform/uriIdentity/common/uriIdentityService.js';
215
+ export { IURLService } from './vscode/src/vs/platform/url/common/url.service.js';
216
+ export { toUserDataProfile } from './vscode/src/vs/platform/userDataProfile/common/userDataProfile.js';
217
+ export { IUserDataProfilesService } from './vscode/src/vs/platform/userDataProfile/common/userDataProfile.service.js';
218
+ export { IUserDataProfileStorageService } from './vscode/src/vs/platform/userDataProfile/common/userDataProfileStorageService.service.js';
219
+ export { IIgnoredExtensionsManagementService } from './vscode/src/vs/platform/userDataSync/common/ignoredExtensions.service.js';
220
+ export { IUserDataAutoSyncService, IUserDataSyncEnablementService, IUserDataSyncLocalStoreService, IUserDataSyncLogService, IUserDataSyncResourceProviderService, IUserDataSyncService, IUserDataSyncStoreManagementService, IUserDataSyncStoreService, IUserDataSyncUtilService } from './vscode/src/vs/platform/userDataSync/common/userDataSync.service.js';
221
+ export { IUserDataSyncAccountService } from './vscode/src/vs/platform/userDataSync/common/userDataSyncAccount.service.js';
222
+ export { IUserDataSyncMachinesService } from './vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.service.js';
223
+ export { ICanonicalUriService } from './vscode/src/vs/platform/workspace/common/canonicalUri.service.js';
224
+ export { IEditSessionIdentityService } from './vscode/src/vs/platform/workspace/common/editSessions.service.js';
225
+ export { WorkspaceTrustUriResponse } from './vscode/src/vs/platform/workspace/common/workspaceTrust.js';
226
+ export { IWorkspacesService } from './vscode/src/vs/platform/workspaces/common/workspaces.service.js';
227
+ export { IExtensionStatusBarItemService, StatusBarUpdateKind } from './vscode/src/vs/workbench/api/browser/statusBarService.js';
228
+ export { DEFAULT_EDITOR_PART_OPTIONS } from './vscode/src/vs/workbench/browser/parts/editor/editor.js';
229
+ export { IChatAccessibilityService, IChatCodeBlockContextProviderService, IChatWidgetService, IQuickChatService } from './vscode/src/vs/workbench/contrib/chat/browser/chat.service.js';
230
+ export { IChatAgentNameService, IChatAgentService } from './vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.js';
231
+ export { ICodeMapperService } from './vscode/src/vs/workbench/contrib/chat/common/chatCodeMapperService.service.js';
232
+ export { IChatEditingService } from './vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.js';
233
+ export { IChatService } from './vscode/src/vs/workbench/contrib/chat/common/chatService.service.js';
234
+ export { IChatSlashCommandService } from './vscode/src/vs/workbench/contrib/chat/common/chatSlashCommands.service.js';
235
+ export { IChatVariablesService } from './vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.js';
236
+ export { IChatWidgetHistoryService } from './vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.js';
237
+ export { ILanguageModelIgnoredFilesService } from './vscode/src/vs/workbench/contrib/chat/common/ignoredFiles.service.js';
238
+ export { ILanguageModelStatsService } from './vscode/src/vs/workbench/contrib/chat/common/languageModelStats.service.js';
239
+ export { ILanguageModelToolsService } from './vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.js';
240
+ export { ILanguageModelsService } from './vscode/src/vs/workbench/contrib/chat/common/languageModels.service.js';
241
+ export { ICommentService } from './vscode/src/vs/workbench/contrib/comments/browser/commentService.service.js';
242
+ export { ICustomEditorService } from './vscode/src/vs/workbench/contrib/customEditor/common/customEditor.service.js';
243
+ export { IDebugVisualizerService } from './vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.service.js';
244
+ export { IEditSessionsLogService, IEditSessionsStorageService } from './vscode/src/vs/workbench/contrib/editSessions/common/editSessions.service.js';
245
+ export { IExtensionsWorkbenchService } from './vscode/src/vs/workbench/contrib/extensions/common/extensions.service.js';
246
+ export { IExternalUriOpenerService } from './vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.service.js';
247
+ export { IInlineChatSessionService } from './vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.js';
248
+ export { IInteractiveDocumentService } from './vscode/src/vs/workbench/contrib/interactive/browser/interactiveDocumentService.service.js';
249
+ export { IInteractiveHistoryService } from './vscode/src/vs/workbench/contrib/interactive/browser/interactiveHistoryService.service.js';
250
+ export { ITroubleshootIssueService } from './vscode/src/vs/workbench/contrib/issue/browser/issueTroubleshoot.service.js';
251
+ export { IIssueFormService, IWorkbenchIssueService } from './vscode/src/vs/workbench/contrib/issue/common/issue.service.js';
252
+ export { IDefaultLogLevelsService } from './vscode/src/vs/workbench/contrib/logs/common/defaultLogLevels.service.js';
253
+ export { IMultiDiffSourceResolverService } from './vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.js';
254
+ export { INotebookOriginalCellModelFactory } from './vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.service.js';
255
+ export { INotebookOriginalModelReferenceFactory } from './vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.service.js';
256
+ export { INotebookEditorService } from './vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.js';
257
+ export { INotebookCellStatusBarService } from './vscode/src/vs/workbench/contrib/notebook/common/notebookCellStatusBarService.service.js';
258
+ export { INotebookEditorModelResolverService } from './vscode/src/vs/workbench/contrib/notebook/common/notebookEditorModelResolverService.service.js';
259
+ export { INotebookExecutionService } from './vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.service.js';
260
+ export { INotebookExecutionStateService } from './vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service.js';
261
+ export { INotebookKernelHistoryService, INotebookKernelService } from './vscode/src/vs/workbench/contrib/notebook/common/notebookKernelService.service.js';
262
+ export { INotebookKeymapService } from './vscode/src/vs/workbench/contrib/notebook/common/notebookKeymapService.service.js';
263
+ export { INotebookLoggingService } from './vscode/src/vs/workbench/contrib/notebook/common/notebookLoggingService.service.js';
264
+ export { INotebookRendererMessagingService } from './vscode/src/vs/workbench/contrib/notebook/common/notebookRendererMessagingService.service.js';
265
+ export { INotebookService } from './vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.js';
266
+ export { INotebookEditorWorkerService } from './vscode/src/vs/workbench/contrib/notebook/common/services/notebookWorkerService.service.js';
267
+ export { IQuickDiffModelService } from './vscode/src/vs/workbench/contrib/scm/browser/quickDiffModel.service.js';
268
+ export { IQuickDiffService } from './vscode/src/vs/workbench/contrib/scm/common/quickDiff.service.js';
269
+ export { ISCMService, ISCMViewService } from './vscode/src/vs/workbench/contrib/scm/common/scm.service.js';
270
+ export { IReplaceService } from './vscode/src/vs/workbench/contrib/search/browser/replace.service.js';
271
+ export { ISearchViewModelWorkbenchService } from './vscode/src/vs/workbench/contrib/search/browser/searchTreeModel/searchViewModelWorkbenchService.service.js';
272
+ export { INotebookSearchService } from './vscode/src/vs/workbench/contrib/search/common/notebookSearch.service.js';
273
+ export { ISearchHistoryService } from './vscode/src/vs/workbench/contrib/search/common/searchHistoryService.service.js';
274
+ export { IShareService } from './vscode/src/vs/workbench/contrib/share/common/share.service.js';
275
+ export { ISpeechService } from './vscode/src/vs/workbench/contrib/speech/common/speechService.service.js';
276
+ export { NoOpWorkspaceTagsService } from './vscode/src/vs/workbench/contrib/tags/browser/workspaceTagsService.js';
277
+ export { IWorkspaceTagsService } from './vscode/src/vs/workbench/contrib/tags/common/workspaceTags.service.js';
278
+ export { ITaskService } from './vscode/src/vs/workbench/contrib/tasks/common/taskService.service.js';
279
+ export { ITerminalConfigurationService, ITerminalEditorService, ITerminalGroupService, ITerminalInstanceService, ITerminalService } from './vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.js';
280
+ export { IEnvironmentVariableService } from './vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.service.js';
281
+ export { ITerminalProfileResolverService, ITerminalProfileService } from './vscode/src/vs/workbench/contrib/terminal/common/terminal.service.js';
282
+ export { ITerminalContributionService } from './vscode/src/vs/workbench/contrib/terminal/common/terminalExtensionPoints.service.js';
283
+ export { ITerminalLinkProviderService } from './vscode/src/vs/workbench/contrib/terminalContrib/links/browser/links.service.js';
284
+ export { ITerminalQuickFixService } from './vscode/src/vs/workbench/contrib/terminalContrib/quickFix/browser/quickFix.service.js';
285
+ export { ITerminalCompletionService } from './vscode/src/vs/workbench/contrib/terminalContrib/suggest/browser/terminalCompletionService.service.js';
286
+ export { ITestCoverageService } from './vscode/src/vs/workbench/contrib/testing/common/testCoverageService.service.js';
287
+ export { ITestExplorerFilterState } from './vscode/src/vs/workbench/contrib/testing/common/testExplorerFilterState.service.js';
288
+ export { ITestProfileService } from './vscode/src/vs/workbench/contrib/testing/common/testProfileService.service.js';
289
+ export { ITestResultService } from './vscode/src/vs/workbench/contrib/testing/common/testResultService.service.js';
290
+ export { ITestResultStorage } from './vscode/src/vs/workbench/contrib/testing/common/testResultStorage.service.js';
291
+ export { ITestService } from './vscode/src/vs/workbench/contrib/testing/common/testService.service.js';
292
+ export { ITestingContinuousRunService } from './vscode/src/vs/workbench/contrib/testing/common/testingContinuousRunService.service.js';
293
+ export { ITestingDecorationsService } from './vscode/src/vs/workbench/contrib/testing/common/testingDecorations.service.js';
294
+ export { ITestingPeekOpener } from './vscode/src/vs/workbench/contrib/testing/common/testingPeekOpener.service.js';
295
+ export { ITimelineService } from './vscode/src/vs/workbench/contrib/timeline/common/timeline.service.js';
296
+ export { ITrustedDomainService } from './vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.service.js';
297
+ export { IWebviewService } from './vscode/src/vs/workbench/contrib/webview/browser/webview.service.js';
298
+ export { IWebviewWorkbenchService } from './vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.js';
299
+ export { IWebviewViewService } from './vscode/src/vs/workbench/contrib/webviewView/browser/webviewViewService.service.js';
300
+ export { IWalkthroughsService } from './vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedService.service.js';
301
+ export { IAccessibleViewInformationService } from './vscode/src/vs/workbench/services/accessibility/common/accessibleViewInformationService.service.js';
302
+ export { IAiEmbeddingVectorService } from './vscode/src/vs/workbench/services/aiEmbeddingVector/common/aiEmbeddingVectorService.service.js';
303
+ export { IAiRelatedInformationService } from './vscode/src/vs/workbench/services/aiRelatedInformation/common/aiRelatedInformation.service.js';
304
+ export { IWorkbenchAssignmentService } from './vscode/src/vs/workbench/services/assignment/common/assignmentService.service.js';
305
+ export { IAuthenticationAccessService } from './vscode/src/vs/workbench/services/authentication/browser/authenticationAccessService.service.js';
306
+ export { IAuthenticationUsageService } from './vscode/src/vs/workbench/services/authentication/browser/authenticationUsageService.service.js';
307
+ export { IAuthenticationExtensionsService, IAuthenticationService } from './vscode/src/vs/workbench/services/authentication/common/authentication.service.js';
308
+ export { IAuxiliaryWindowService } from './vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.service.js';
309
+ export { IJSONEditingService } from './vscode/src/vs/workbench/services/configuration/common/jsonEditing.service.js';
310
+ export { IConfigurationResolverService } from './vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.service.js';
311
+ export { IDecorationsService } from './vscode/src/vs/workbench/services/decorations/common/decorations.service.js';
312
+ export { ICustomEditorLabelService } from './vscode/src/vs/workbench/services/editor/common/customEditorLabelService.service.js';
313
+ export { IEditorPaneService } from './vscode/src/vs/workbench/services/editor/common/editorPaneService.service.js';
314
+ export { IExtensionBisectService } from './vscode/src/vs/workbench/services/extensionManagement/browser/extensionBisect.service.js';
315
+ export { IExtensionFeaturesManagementService } from './vscode/src/vs/workbench/services/extensionManagement/common/extensionFeatures.service.js';
316
+ export { IExtensionManagementServerService, IWebExtensionsScannerService, IWorkbenchExtensionEnablementService, IWorkbenchExtensionManagementService } from './vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.service.js';
317
+ export { IExtensionIgnoredRecommendationsService, IExtensionRecommendationsService } from './vscode/src/vs/workbench/services/extensionRecommendations/common/extensionRecommendations.service.js';
318
+ export { IWorkspaceExtensionsConfigService } from './vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.service.js';
319
+ export { IExtensionUrlHandler } from './vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.service.js';
320
+ export { IExtensionManifestPropertiesService } from './vscode/src/vs/workbench/services/extensions/common/extensionManifestPropertiesService.service.js';
321
+ export { NullExtensionService } from './vscode/src/vs/workbench/services/extensions/common/extensions.js';
322
+ export { IExtensionService } from './vscode/src/vs/workbench/services/extensions/common/extensions.service.js';
323
+ export { IElevatedFileService } from './vscode/src/vs/workbench/services/files/common/elevatedFileService.service.js';
324
+ export { IIntegrityService } from './vscode/src/vs/workbench/services/integrity/common/integrity.service.js';
325
+ export { FallbackKeyboardMapper } from './vscode/src/vs/workbench/services/keybinding/common/fallbackKeyboardMapper.js';
326
+ export { ILanguageDetectionService } from './vscode/src/vs/workbench/services/languageDetection/common/languageDetectionWorkerService.service.js';
327
+ export { ILifecycleService } from './vscode/src/vs/workbench/services/lifecycle/common/lifecycle.service.js';
328
+ export { INotebookDocumentService } from './vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.service.js';
329
+ export { IOutlineService } from './vscode/src/vs/workbench/services/outline/browser/outline.service.js';
330
+ export { ISearchService } from './vscode/src/vs/workbench/services/search/common/search.service.js';
331
+ export { IEmbedderTerminalService } from './vscode/src/vs/workbench/services/terminal/common/embedderTerminalService.service.js';
332
+ export { ITextMateTokenizationService } from './vscode/src/vs/workbench/services/textMate/browser/textMateTokenizationFeature.service.js';
333
+ export { IHostColorSchemeService } from './vscode/src/vs/workbench/services/themes/common/hostColorSchemeService.service.js';
334
+ export { ITimerService } from './vscode/src/vs/workbench/services/timer/browser/timerService.service.js';
335
+ export { IUntitledTextEditorService } from './vscode/src/vs/workbench/services/untitled/common/untitledTextEditorService.service.js';
336
+ export { IUserActivityService } from './vscode/src/vs/workbench/services/userActivity/common/userActivityService.service.js';
337
+ export { IUserDataInitializationService } from './vscode/src/vs/workbench/services/userData/browser/userDataInit.service.js';
338
+ export { IRemoteUserDataProfilesService } from './vscode/src/vs/workbench/services/userDataProfile/common/remoteUserDataProfiles.service.js';
339
+ export { IUserDataProfileImportExportService, IUserDataProfileManagementService, IUserDataProfileService } from './vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.service.js';
340
+ export { UserDataProfileService } from './vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileService.js';
341
+ export { AccountStatus } from './vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js';
342
+ export { IUserDataSyncWorkbenchService } from './vscode/src/vs/workbench/services/userDataSync/common/userDataSync.service.js';
343
+ export { IWorkingCopyBackupService } from './vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.js';
344
+ export { IWorkingCopyEditorService } from './vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.js';
345
+ export { IWorkingCopyHistoryService } from './vscode/src/vs/workbench/services/workingCopy/common/workingCopyHistory.service.js';
346
+ export { IWorkingCopyService } from './vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.js';
347
+ export { IWorkspaceEditingService } from './vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.js';
348
+ export { IWorkspaceIdentityService } from './vscode/src/vs/workbench/services/workspaces/common/workspaceIdentityService.service.js';
349
+ export { IChatMarkdownAnchorService } from './vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.js';
350
+ export { getBuiltInExtensionTranslationsUris, getExtensionIdProvidingCurrentLocale } from './l10n.js';
351
+ export { unsupported } from './tools.js';
352
+ export { IChatEntitlementService } from './vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.js';
353
+ export { IPromptsService } from './vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/types.service.js';
354
+ export { ISuggestMemoryService } from './vscode/src/vs/editor/contrib/suggest/browser/suggestMemory.service.js';
355
+ export { LanguageConfigurationService } from './vscode/src/vs/editor/common/languages/languageConfigurationRegistry.js';
356
+ export { ISemanticTokensStylingService } from './vscode/src/vs/editor/common/services/semanticTokensStyling.service.js';
357
+ export { ILanguageFeatureDebounceService } from './vscode/src/vs/editor/common/services/languageFeatureDebounce.service.js';
358
+ export { IDiffProviderFactoryService } from './vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.service.js';
359
+ export { IOutlineModelService } from './vscode/src/vs/editor/contrib/documentSymbols/browser/outlineModel.service.js';
360
+ export { IMarkerNavigationService } from './vscode/src/vs/editor/contrib/gotoError/browser/markerNavigationService.service.js';
361
+ export { ICodeLensCache } from './vscode/src/vs/editor/contrib/codelens/browser/codeLensCache.service.js';
362
+ export { IInlayHintsCache } from './vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsController.service.js';
363
+ export { ISymbolNavigationService } from './vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.service.js';
364
+ export { IEditorCancellationTokens } from './vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.service.js';
365
+ export { IPeekViewService } from './vscode/src/vs/editor/contrib/peekView/browser/peekView.service.js';
366
+ export { IUndoRedoService } from './vscode/src/vs/platform/undoRedo/common/undoRedo.service.js';
367
+ export { IActionWidgetService } from './vscode/src/vs/platform/actionWidget/browser/actionWidget.service.js';
368
+ export { IMcpSamplingService, IMcpService, IMcpWorkbenchService } from './vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.js';
369
+ export { IMcpConfigPathsService } from './vscode/src/vs/workbench/contrib/mcp/common/mcpConfigPathsService.service.js';
370
+ export { IMcpRegistry } from './vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.js';
371
+ export { IExtensionGalleryManifestService } from './vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.service.js';
372
+ export { ISharedWebContentExtractorService, IWebContentExtractorService } from './vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.service.js';
373
+ export { IDefaultAccountService } from './vscode/src/vs/workbench/services/accounts/common/defaultAccount.service.js';
374
+ export { NullDefaultAccountService } from './vscode/src/vs/workbench/services/accounts/common/defaultAccount.js';
375
+ export { IChatTransferService } from './vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.js';
376
+ export { IChatStatusItemService } from './vscode/src/vs/workbench/contrib/chat/browser/chatStatusItemService.service.js';
377
+ export { IAiSettingsSearchService } from './vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.js';
378
+ export { IDynamicAuthenticationProviderStorageService } from './vscode/src/vs/workbench/services/authentication/common/dynamicAuthenticationProviderStorage.service.js';
379
+ export { IAuthenticationMcpService } from './vscode/src/vs/workbench/services/authentication/browser/authenticationMcpService.service.js';
380
+ export { IAuthenticationMcpAccessService } from './vscode/src/vs/workbench/services/authentication/browser/authenticationMcpAccessService.service.js';
381
+ export { IAuthenticationMcpUsageService } from './vscode/src/vs/workbench/services/authentication/browser/authenticationMcpUsageService.service.js';
382
+ export { IBrowserElementsService } from './vscode/src/vs/workbench/services/browserElements/browser/browserElementsService.service.js';
383
+ export { IGettingStartedExperimentService } from './vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExpService.service.js';
384
+ export { IChatContextPickService } from './vscode/src/vs/workbench/contrib/chat/browser/chatContextPickService.service.js';
385
+ export { IMcpGalleryService, IMcpManagementService } from './vscode/src/vs/platform/mcp/common/mcpManagement.service.js';
386
+ export { ITreeSitterThemeService } from './vscode/src/vs/editor/common/services/treeSitter/treeSitterThemeService.service.js';
387
+ export { ITreeSitterLibraryService } from './vscode/src/vs/editor/common/services/treeSitter/treeSitterLibraryService.service.js';
184
388
 
185
- if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.101.1-563de4bc-0aa2-4099-89b9-1549d6dc9e6c") {
186
- throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.101.1-563de4bc-0aa2-4099-89b9-1549d6dc9e6c"}, ${window.monacoVscodeApiBuildId} is already loaded`);
389
+ if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.101.1-09d15e84-e565-4b50-a0f6-293200c856bf") {
390
+ throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.101.1-09d15e84-e565-4b50-a0f6-293200c856bf"}, ${window.monacoVscodeApiBuildId} is already loaded`);
187
391
  }
188
- window.monacoVscodeApiBuildId = "1.101.1-563de4bc-0aa2-4099-89b9-1549d6dc9e6c";
392
+ window.monacoVscodeApiBuildId = "1.101.1-09d15e84-e565-4b50-a0f6-293200c856bf";
189
393
  async function initialize(overrides, container = document.body, configuration = {}, env) {
190
394
  checkServicesNotInitialized();
191
395
  injectCss(container);
@@ -23,7 +23,7 @@ class PagedScreenReaderStrategy {
23
23
  const selectionEndPageRange = PagedScreenReaderStrategy._getRangeForPage(selectionEndPage, linesPerPage);
24
24
  let pretextRange = selectionStartPageRange.intersectRanges(( new Range(1, 1, selection.startLineNumber, selection.startColumn)));
25
25
  if (trimLongText && model.getValueLengthInRange(pretextRange, EndOfLinePreference.LF) > LIMIT_CHARS) {
26
- const pretextStart = model.modifyPosition(pretextRange.getEndPosition(), -500);
26
+ const pretextStart = model.modifyPosition(pretextRange.getEndPosition(), -LIMIT_CHARS);
27
27
  pretextRange = Range.fromPositions(pretextStart, pretextRange.getEndPosition());
28
28
  }
29
29
  const pretext = model.getValueInRange(pretextRange, EndOfLinePreference.LF);
@@ -104,7 +104,7 @@ let InlineEditsCollapsedView = class InlineEditsCollapsedView extends Disposable
104
104
  if (!point) {
105
105
  return ( new PathBuilder()).build();
106
106
  }
107
- const baseTopLeft = point.deltaX(-6 / 2).deltaY(-1);
107
+ const baseTopLeft = point.deltaX(-width / 2).deltaY(-baseHeight);
108
108
  const baseTopRight = baseTopLeft.deltaX(width);
109
109
  const baseBottomLeft = baseTopLeft.deltaY(baseHeight);
110
110
  const baseBottomRight = baseTopRight.deltaY(baseHeight);
@@ -159,7 +159,7 @@ let InlineEditsCustomView = class InlineEditsCustomView extends Disposable {
159
159
  topOfLine = this._editorObs.editor.getTopForLineNumber(startLineNumber - 1);
160
160
  contentStartOffset = startContentLeftOffset;
161
161
  deltaX = paddingHorizontally + horizontalOffsetWhenAboveBelow;
162
- deltaY = -0 + verticalOffsetWhenAboveBelow;
162
+ deltaY = -paddingVertically + verticalOffsetWhenAboveBelow;
163
163
  break;
164
164
  }
165
165
  }
@@ -487,7 +487,7 @@ let InlineEditsSideBySideView = class InlineEditsSideBySideView extends Disposab
487
487
  if (!layoutInfo) {
488
488
  return;
489
489
  }
490
- const editorRect = layoutInfo.editRect.withMargin(-0, -0);
490
+ const editorRect = layoutInfo.editRect.withMargin(-VERTICAL_PADDING, -HORIZONTAL_PADDING);
491
491
  this.previewEditor.layout({ height: editorRect.height, width: layoutInfo.previewEditorWidth + 15 });
492
492
  this._editorContainer.element.style.top = `${editorRect.top}px`;
493
493
  this._editorContainer.element.style.left = `${editorRect.left}px`;
@@ -1,5 +1,5 @@
1
1
  import { IKeyboardEvent } from "../../keybinding/common/keybinding.js";
2
- import { IPickerQuickAccessItem } from "@codingame/monaco-vscode-dcfc2191-2da1-54c7-8fb7-e92c5d11ecef-common/vscode/vs/platform/quickinput/browser/pickerQuickAccess";
2
+ import { IPickerQuickAccessItem } from "@codingame/monaco-vscode-ed7f2efb-131f-5ae8-b8fe-f20867e14c58-common/vscode/vs/platform/quickinput/browser/pickerQuickAccess";
3
3
  import { Event } from "../../../base/common/event.js";
4
4
  import { IAction } from "../../../base/common/actions.js";
5
5
  import { IQuickPickItem } from "../../quickinput/common/quickInput.js";
@@ -6,7 +6,7 @@ var product = {
6
6
  quality: 'stable',
7
7
  version: '1.101.1',
8
8
  commit: '18e3a1ec544e6907be1e944a94c496e302073435',
9
- date: '2025-06-26T15:29:16.384Z',
9
+ date: '2025-07-07T14:03:56.434Z',
10
10
  ...(globalThis._VSCODE_PRODUCT_JSON ?? {})
11
11
  };
12
12
 
@@ -1,6 +1,6 @@
1
1
  import { Event } from "../../../base/common/event.js";
2
2
  import { IMatch } from "../../../base/common/filters.js";
3
- import { IItemAccessor } from "@codingame/monaco-vscode-dcfc2191-2da1-54c7-8fb7-e92c5d11ecef-common/vscode/vs/base/common/fuzzyScorer";
3
+ import { IItemAccessor } from "@codingame/monaco-vscode-ed7f2efb-131f-5ae8-b8fe-f20867e14c58-common/vscode/vs/base/common/fuzzyScorer";
4
4
  import { ResolvedKeybinding } from "../../../base/common/keybindings.js";
5
5
  import { IDisposable } from "../../../base/common/lifecycle.js";
6
6
  import Severity from "../../../base/common/severity.js";
@@ -27,7 +27,7 @@ class SnippetCompletion {
27
27
  constructor(snippet, range) {
28
28
  this.snippet = snippet;
29
29
  this.label = { label: snippet.prefix, description: snippet.name };
30
- this.detail = ( localize(9854, "{0} ({1})", snippet.description || snippet.name, snippet.source));
30
+ this.detail = ( localize(9870, "{0} ({1})", snippet.description || snippet.name, snippet.source));
31
31
  this.insertText = snippet.codeSnippet;
32
32
  this.extensionId = snippet.extensionId;
33
33
  this.range = range;
@@ -121,14 +121,14 @@ let SnippetCompletionProvider = class SnippetCompletionProvider {
121
121
  let to = i + 1;
122
122
  for (; to < suggestions.length && item.label === suggestions[to].label; to++) {
123
123
  suggestions[to].label.label = ( localize(
124
- 9855,
124
+ 9871,
125
125
  "{0}, {1}",
126
126
  suggestions[to].label.label,
127
127
  suggestions[to].snippet.name
128
128
  ));
129
129
  }
130
130
  if (to > i + 1) {
131
- suggestions[i].label.label = ( localize(9855, "{0}, {1}", suggestions[i].label.label, suggestions[i].snippet.name));
131
+ suggestions[i].label.label = ( localize(9871, "{0}, {1}", suggestions[i].label.label, suggestions[i].snippet.name));
132
132
  i = to;
133
133
  }
134
134
  }
@@ -207,14 +207,14 @@ class SnippetFile {
207
207
  source = this._extension.displayName || this._extension.name;
208
208
  }
209
209
  else if (this.source === SnippetSource.Workspace) {
210
- source = ( localize(9871, "Workspace Snippet"));
210
+ source = ( localize(9887, "Workspace Snippet"));
211
211
  }
212
212
  else {
213
213
  if (this.isGlobalSnippets) {
214
- source = ( localize(9872, "Global User Snippet"));
214
+ source = ( localize(9888, "Global User Snippet"));
215
215
  }
216
216
  else {
217
- source = ( localize(9873, "User Snippet"));
217
+ source = ( localize(9889, "User Snippet"));
218
218
  }
219
219
  }
220
220
  for (const _prefix of Iterable.wrap(prefix)) {
@@ -34,7 +34,7 @@ var snippetExt;
34
34
  function toValidSnippet(extension, snippet, languageService) {
35
35
  if (isFalsyOrWhitespace(snippet.path)) {
36
36
  extension.collector.error(( localize(
37
- 9874,
37
+ 9890,
38
38
  "Expected string in `contributes.{0}.path`. Provided value: {1}",
39
39
  extension.description.name,
40
40
  String(snippet.path)
@@ -43,7 +43,7 @@ var snippetExt;
43
43
  }
44
44
  if (isFalsyOrWhitespace(snippet.language) && !snippet.path.endsWith('.code-snippets')) {
45
45
  extension.collector.error(( localize(
46
- 9875,
46
+ 9891,
47
47
  "When omitting the language, the value of `contributes.{0}.path` must be a `.code-snippets`-file. Provided value: {1}",
48
48
  extension.description.name,
49
49
  String(snippet.path)
@@ -52,7 +52,7 @@ var snippetExt;
52
52
  }
53
53
  if (!isFalsyOrWhitespace(snippet.language) && !languageService.isRegisteredLanguageId(snippet.language)) {
54
54
  extension.collector.error(( localize(
55
- 9876,
55
+ 9892,
56
56
  "Unknown language in `contributes.{0}.language`. Provided value: {1}",
57
57
  extension.description.name,
58
58
  String(snippet.language)
@@ -63,7 +63,7 @@ var snippetExt;
63
63
  const snippetLocation = joinPath(extensionLocation, snippet.path);
64
64
  if (!isEqualOrParent(snippetLocation, extensionLocation)) {
65
65
  extension.collector.error(( localize(
66
- 9877,
66
+ 9893,
67
67
  "Expected `contributes.{0}.path` ({1}) to be included inside extension's folder ({2}). This might make the extension non-portable.",
68
68
  extension.description.name,
69
69
  snippetLocation.path,
@@ -78,7 +78,7 @@ var snippetExt;
78
78
  }
79
79
  snippetExt.toValidSnippet = toValidSnippet;
80
80
  snippetExt.snippetsContribution = {
81
- description: ( localize(9878, 'Contributes snippets.')),
81
+ description: ( localize(9894, 'Contributes snippets.')),
82
82
  type: 'array',
83
83
  defaultSnippets: [{ body: [{ language: '', path: '' }] }],
84
84
  items: {
@@ -86,12 +86,12 @@ var snippetExt;
86
86
  defaultSnippets: [{ body: { language: '${1:id}', path: './snippets/${2:id}.json.' } }],
87
87
  properties: {
88
88
  language: {
89
- description: ( localize(9879, 'Language identifier for which this snippet is contributed to.')),
89
+ description: ( localize(9895, 'Language identifier for which this snippet is contributed to.')),
90
90
  type: 'string'
91
91
  },
92
92
  path: {
93
93
  description: ( localize(
94
- 9880,
94
+ 9896,
95
95
  'Path of the snippets file. The path is relative to the extension folder and typically starts with \'./snippets/\'.'
96
96
  )),
97
97
  type: 'string'
@@ -336,14 +336,14 @@ let SnippetsService = class SnippetsService {
336
336
  file.load().then(file => {
337
337
  if (( file.data.some(snippet => snippet.isBogous))) {
338
338
  extension.collector.warn(( localize(
339
- 9881,
339
+ 9897,
340
340
  "One or more snippets from the extension '{0}' very likely confuse snippet-variables and snippet-placeholders (see https://code.visualstudio.com/docs/editor/userdefinedsnippets#_snippet-syntax for more details)",
341
341
  extension.description.name
342
342
  )));
343
343
  }
344
344
  }, err => {
345
345
  extension.collector.warn(( localize(
346
- 9882,
346
+ 9898,
347
347
  "The snippet file \"{0}\" could not be read.",
348
348
  (file.location.toString())
349
349
  )));
@@ -3,16 +3,16 @@ import { localize } from '../../../../nls.js';
3
3
  import { RawContextKey } from '../../../../platform/contextkey/common/contextkey.js';
4
4
  import { language } from '../../../../base/common/platform.js';
5
5
 
6
- const HasSpeechProvider = ( new RawContextKey('hasSpeechProvider', false, { type: 'boolean', description: ( localize(9886, "A speech provider is registered to the speech service.")) }));
6
+ const HasSpeechProvider = ( new RawContextKey('hasSpeechProvider', false, { type: 'boolean', description: ( localize(9902, "A speech provider is registered to the speech service.")) }));
7
7
  const SpeechToTextInProgress = ( new RawContextKey(
8
8
  'speechToTextInProgress',
9
9
  false,
10
- { type: 'boolean', description: ( localize(9887, "A speech-to-text session is in progress.")) }
10
+ { type: 'boolean', description: ( localize(9903, "A speech-to-text session is in progress.")) }
11
11
  ));
12
12
  const TextToSpeechInProgress = ( new RawContextKey(
13
13
  'textToSpeechInProgress',
14
14
  false,
15
- { type: 'boolean', description: ( localize(9888, "A text-to-speech session is in progress.")) }
15
+ { type: 'boolean', description: ( localize(9904, "A text-to-speech session is in progress.")) }
16
16
  ));
17
17
  var SpeechToTextStatus;
18
18
  (function (SpeechToTextStatus) {
@@ -44,82 +44,82 @@ var AccessibilityVoiceSettingId;
44
44
  const SPEECH_LANGUAGE_CONFIG = AccessibilityVoiceSettingId.SpeechLanguage;
45
45
  const SPEECH_LANGUAGES = {
46
46
  ['da-DK']: {
47
- name: ( localize(9889, "Danish (Denmark)"))
47
+ name: ( localize(9905, "Danish (Denmark)"))
48
48
  },
49
49
  ['de-DE']: {
50
- name: ( localize(9890, "German (Germany)"))
50
+ name: ( localize(9906, "German (Germany)"))
51
51
  },
52
52
  ['en-AU']: {
53
- name: ( localize(9891, "English (Australia)"))
53
+ name: ( localize(9907, "English (Australia)"))
54
54
  },
55
55
  ['en-CA']: {
56
- name: ( localize(9892, "English (Canada)"))
56
+ name: ( localize(9908, "English (Canada)"))
57
57
  },
58
58
  ['en-GB']: {
59
- name: ( localize(9893, "English (United Kingdom)"))
59
+ name: ( localize(9909, "English (United Kingdom)"))
60
60
  },
61
61
  ['en-IE']: {
62
- name: ( localize(9894, "English (Ireland)"))
62
+ name: ( localize(9910, "English (Ireland)"))
63
63
  },
64
64
  ['en-IN']: {
65
- name: ( localize(9895, "English (India)"))
65
+ name: ( localize(9911, "English (India)"))
66
66
  },
67
67
  ['en-NZ']: {
68
- name: ( localize(9896, "English (New Zealand)"))
68
+ name: ( localize(9912, "English (New Zealand)"))
69
69
  },
70
70
  ['en-US']: {
71
- name: ( localize(9897, "English (United States)"))
71
+ name: ( localize(9913, "English (United States)"))
72
72
  },
73
73
  ['es-ES']: {
74
- name: ( localize(9898, "Spanish (Spain)"))
74
+ name: ( localize(9914, "Spanish (Spain)"))
75
75
  },
76
76
  ['es-MX']: {
77
- name: ( localize(9899, "Spanish (Mexico)"))
77
+ name: ( localize(9915, "Spanish (Mexico)"))
78
78
  },
79
79
  ['fr-CA']: {
80
- name: ( localize(9900, "French (Canada)"))
80
+ name: ( localize(9916, "French (Canada)"))
81
81
  },
82
82
  ['fr-FR']: {
83
- name: ( localize(9901, "French (France)"))
83
+ name: ( localize(9917, "French (France)"))
84
84
  },
85
85
  ['hi-IN']: {
86
- name: ( localize(9902, "Hindi (India)"))
86
+ name: ( localize(9918, "Hindi (India)"))
87
87
  },
88
88
  ['it-IT']: {
89
- name: ( localize(9903, "Italian (Italy)"))
89
+ name: ( localize(9919, "Italian (Italy)"))
90
90
  },
91
91
  ['ja-JP']: {
92
- name: ( localize(9904, "Japanese (Japan)"))
92
+ name: ( localize(9920, "Japanese (Japan)"))
93
93
  },
94
94
  ['ko-KR']: {
95
- name: ( localize(9905, "Korean (South Korea)"))
95
+ name: ( localize(9921, "Korean (South Korea)"))
96
96
  },
97
97
  ['nl-NL']: {
98
- name: ( localize(9906, "Dutch (Netherlands)"))
98
+ name: ( localize(9922, "Dutch (Netherlands)"))
99
99
  },
100
100
  ['pt-PT']: {
101
- name: ( localize(9907, "Portuguese (Portugal)"))
101
+ name: ( localize(9923, "Portuguese (Portugal)"))
102
102
  },
103
103
  ['pt-BR']: {
104
- name: ( localize(9908, "Portuguese (Brazil)"))
104
+ name: ( localize(9924, "Portuguese (Brazil)"))
105
105
  },
106
106
  ['ru-RU']: {
107
- name: ( localize(9909, "Russian (Russia)"))
107
+ name: ( localize(9925, "Russian (Russia)"))
108
108
  },
109
109
  ['sv-SE']: {
110
- name: ( localize(9910, "Swedish (Sweden)"))
110
+ name: ( localize(9926, "Swedish (Sweden)"))
111
111
  },
112
112
  ['tr-TR']: {
113
- name: ( localize(9911, "Turkish (Türkiye)"))
113
+ name: ( localize(9927, "Turkish (Türkiye)"))
114
114
  },
115
115
  ['zh-CN']: {
116
- name: ( localize(9912, "Chinese (Simplified, China)"))
116
+ name: ( localize(9928, "Chinese (Simplified, China)"))
117
117
  },
118
118
  ['zh-HK']: {
119
- name: ( localize(9913, "Chinese (Traditional, Hong Kong)"))
119
+ name: ( localize(9929, "Chinese (Traditional, Hong Kong)"))
120
120
  },
121
121
  ['zh-TW']: {
122
- name: ( localize(9914, "Chinese (Traditional, Taiwan)"))
122
+ name: ( localize(9930, "Chinese (Traditional, Taiwan)"))
123
123
  }
124
124
  };
125
125
  function speechLanguageConfigToLanguage(config, lang = language) {