@codingame/monaco-vscode-api 18.0.0 → 18.0.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.
package/missing-services.js
CHANGED
|
@@ -1498,6 +1498,7 @@ let PreferencesService = class PreferencesService {
|
|
|
1498
1498
|
this.getSetting = () => undefined;
|
|
1499
1499
|
this.userSettingsResource = this.profileService.currentProfile.settingsResource;
|
|
1500
1500
|
this.workspaceSettingsResource = null;
|
|
1501
|
+
this.openPreferences = async () => undefined;
|
|
1501
1502
|
}
|
|
1502
1503
|
getFolderSettingsResource() {
|
|
1503
1504
|
unsupported();
|
|
@@ -1547,9 +1548,6 @@ let PreferencesService = class PreferencesService {
|
|
|
1547
1548
|
openLanguageSpecificSettings() {
|
|
1548
1549
|
unsupported();
|
|
1549
1550
|
}
|
|
1550
|
-
openPreferences() {
|
|
1551
|
-
unsupported();
|
|
1552
|
-
}
|
|
1553
1551
|
};
|
|
1554
1552
|
__decorate([
|
|
1555
1553
|
Unsupported
|
|
@@ -1599,9 +1597,6 @@ __decorate([
|
|
|
1599
1597
|
__decorate([
|
|
1600
1598
|
Unsupported
|
|
1601
1599
|
], PreferencesService.prototype, "openLanguageSpecificSettings", null);
|
|
1602
|
-
__decorate([
|
|
1603
|
-
Unsupported
|
|
1604
|
-
], PreferencesService.prototype, "openPreferences", null);
|
|
1605
1600
|
PreferencesService = __decorate([
|
|
1606
1601
|
__param(0, IUserDataProfileService)
|
|
1607
1602
|
], PreferencesService);
|
|
@@ -4063,6 +4058,7 @@ registerSingleton(IStatusbarService, StatusbarService, InstantiationType.Eager);
|
|
|
4063
4058
|
class ExtensionGalleryService {
|
|
4064
4059
|
constructor() {
|
|
4065
4060
|
this.isEnabled = () => false;
|
|
4061
|
+
this.getAllVersions = async () => [];
|
|
4066
4062
|
}
|
|
4067
4063
|
query() {
|
|
4068
4064
|
unsupported();
|
|
@@ -4103,9 +4099,6 @@ class ExtensionGalleryService {
|
|
|
4103
4099
|
getExtensionsControlManifest() {
|
|
4104
4100
|
unsupported();
|
|
4105
4101
|
}
|
|
4106
|
-
getAllVersions() {
|
|
4107
|
-
unsupported();
|
|
4108
|
-
}
|
|
4109
4102
|
}
|
|
4110
4103
|
__decorate([
|
|
4111
4104
|
Unsupported
|
|
@@ -4146,9 +4139,6 @@ __decorate([
|
|
|
4146
4139
|
__decorate([
|
|
4147
4140
|
Unsupported
|
|
4148
4141
|
], ExtensionGalleryService.prototype, "getExtensionsControlManifest", null);
|
|
4149
|
-
__decorate([
|
|
4150
|
-
Unsupported
|
|
4151
|
-
], ExtensionGalleryService.prototype, "getAllVersions", null);
|
|
4152
4142
|
registerSingleton(IExtensionGalleryService, ExtensionGalleryService, InstantiationType.Eager);
|
|
4153
4143
|
class TerminalService {
|
|
4154
4144
|
constructor() {
|
|
@@ -6909,6 +6899,9 @@ class AuthenticationService {
|
|
|
6909
6899
|
this.declaredProviders = [];
|
|
6910
6900
|
this.isAuthenticationProviderRegistered = () => false;
|
|
6911
6901
|
this.getProviderIds = () => [];
|
|
6902
|
+
this.getOrActivateProviderIdForServer = async () => undefined;
|
|
6903
|
+
this.registerAuthenticationProviderHostDelegate = () => Disposable.None;
|
|
6904
|
+
this.createDynamicAuthenticationProvider = async () => undefined;
|
|
6912
6905
|
}
|
|
6913
6906
|
registerDeclaredAuthenticationProvider() {
|
|
6914
6907
|
unsupported();
|
|
@@ -6934,15 +6927,6 @@ class AuthenticationService {
|
|
|
6934
6927
|
removeSession() {
|
|
6935
6928
|
unsupported();
|
|
6936
6929
|
}
|
|
6937
|
-
getOrActivateProviderIdForServer() {
|
|
6938
|
-
unsupported();
|
|
6939
|
-
}
|
|
6940
|
-
registerAuthenticationProviderHostDelegate() {
|
|
6941
|
-
unsupported();
|
|
6942
|
-
}
|
|
6943
|
-
createDynamicAuthenticationProvider() {
|
|
6944
|
-
unsupported();
|
|
6945
|
-
}
|
|
6946
6930
|
}
|
|
6947
6931
|
__decorate([
|
|
6948
6932
|
Unsupported
|
|
@@ -6968,15 +6952,6 @@ __decorate([
|
|
|
6968
6952
|
__decorate([
|
|
6969
6953
|
Unsupported
|
|
6970
6954
|
], AuthenticationService.prototype, "removeSession", null);
|
|
6971
|
-
__decorate([
|
|
6972
|
-
Unsupported
|
|
6973
|
-
], AuthenticationService.prototype, "getOrActivateProviderIdForServer", null);
|
|
6974
|
-
__decorate([
|
|
6975
|
-
Unsupported
|
|
6976
|
-
], AuthenticationService.prototype, "registerAuthenticationProviderHostDelegate", null);
|
|
6977
|
-
__decorate([
|
|
6978
|
-
Unsupported
|
|
6979
|
-
], AuthenticationService.prototype, "createDynamicAuthenticationProvider", null);
|
|
6980
6955
|
registerSingleton(IAuthenticationService, AuthenticationService, InstantiationType.Delayed);
|
|
6981
6956
|
class AuthenticationAccessService {
|
|
6982
6957
|
constructor() {
|
|
@@ -7795,6 +7770,7 @@ class AiSettingsSearchService {
|
|
|
7795
7770
|
this.isEnabled = () => false;
|
|
7796
7771
|
this.getEmbeddingsResults = async () => [];
|
|
7797
7772
|
this.getLLMRankedResults = async () => [];
|
|
7773
|
+
this.onProviderRegistered = Event.None;
|
|
7798
7774
|
}
|
|
7799
7775
|
startSearch() {
|
|
7800
7776
|
unsupported();
|
|
@@ -7805,9 +7781,6 @@ class AiSettingsSearchService {
|
|
|
7805
7781
|
handleSearchResult() {
|
|
7806
7782
|
unsupported();
|
|
7807
7783
|
}
|
|
7808
|
-
onProviderRegistered() {
|
|
7809
|
-
unsupported();
|
|
7810
|
-
}
|
|
7811
7784
|
}
|
|
7812
7785
|
__decorate([
|
|
7813
7786
|
Unsupported
|
|
@@ -9110,6 +9083,7 @@ class LanguageModelToolsService {
|
|
|
9110
9083
|
this.getToolByName = () => undefined;
|
|
9111
9084
|
this.onDidChangeTools = Event.None;
|
|
9112
9085
|
this.getTools = () => [];
|
|
9086
|
+
this.getToolSetByName = () => undefined;
|
|
9113
9087
|
}
|
|
9114
9088
|
registerToolData() {
|
|
9115
9089
|
unsupported();
|
|
@@ -9132,9 +9106,6 @@ class LanguageModelToolsService {
|
|
|
9132
9106
|
toEnablementMap() {
|
|
9133
9107
|
unsupported();
|
|
9134
9108
|
}
|
|
9135
|
-
getToolSetByName() {
|
|
9136
|
-
unsupported();
|
|
9137
|
-
}
|
|
9138
9109
|
createToolSet() {
|
|
9139
9110
|
unsupported();
|
|
9140
9111
|
}
|
|
@@ -9163,9 +9134,6 @@ __decorate([
|
|
|
9163
9134
|
__decorate([
|
|
9164
9135
|
Unsupported
|
|
9165
9136
|
], LanguageModelToolsService.prototype, "toEnablementMap", null);
|
|
9166
|
-
__decorate([
|
|
9167
|
-
Unsupported
|
|
9168
|
-
], LanguageModelToolsService.prototype, "getToolSetByName", null);
|
|
9169
9137
|
__decorate([
|
|
9170
9138
|
Unsupported
|
|
9171
9139
|
], LanguageModelToolsService.prototype, "createToolSet", null);
|
|
@@ -9758,14 +9726,9 @@ registerSingleton(IMcpSamplingService, McpSamplingService, InstantiationType.Eag
|
|
|
9758
9726
|
class ChatContextPickService {
|
|
9759
9727
|
constructor() {
|
|
9760
9728
|
this.items = [];
|
|
9761
|
-
|
|
9762
|
-
registerChatContextItem() {
|
|
9763
|
-
unsupported();
|
|
9729
|
+
this.registerChatContextItem = () => Disposable.None;
|
|
9764
9730
|
}
|
|
9765
9731
|
}
|
|
9766
|
-
__decorate([
|
|
9767
|
-
Unsupported
|
|
9768
|
-
], ChatContextPickService.prototype, "registerChatContextItem", null);
|
|
9769
9732
|
registerSingleton(IChatContextPickService, ChatContextPickService, InstantiationType.Eager);
|
|
9770
9733
|
class BrowserElementsService {
|
|
9771
9734
|
constructor() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-api",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-base-service-override": "18.0.
|
|
19
|
-
"@codingame/monaco-vscode-environment-service-override": "18.0.
|
|
20
|
-
"@codingame/monaco-vscode-extensions-service-override": "18.0.
|
|
21
|
-
"@codingame/monaco-vscode-files-service-override": "18.0.
|
|
22
|
-
"@codingame/monaco-vscode-host-service-override": "18.0.
|
|
23
|
-
"@codingame/monaco-vscode-layout-service-override": "18.0.
|
|
24
|
-
"@codingame/monaco-vscode-quickaccess-service-override": "18.0.
|
|
18
|
+
"@codingame/monaco-vscode-base-service-override": "18.0.1",
|
|
19
|
+
"@codingame/monaco-vscode-environment-service-override": "18.0.1",
|
|
20
|
+
"@codingame/monaco-vscode-extensions-service-override": "18.0.1",
|
|
21
|
+
"@codingame/monaco-vscode-files-service-override": "18.0.1",
|
|
22
|
+
"@codingame/monaco-vscode-host-service-override": "18.0.1",
|
|
23
|
+
"@codingame/monaco-vscode-layout-service-override": "18.0.1",
|
|
24
|
+
"@codingame/monaco-vscode-quickaccess-service-override": "18.0.1",
|
|
25
25
|
"@vscode/iconv-lite-umd": "0.7.0",
|
|
26
26
|
"dompurify": "3.2.6",
|
|
27
27
|
"jschardet": "3.1.4",
|
package/services.js
CHANGED
|
@@ -182,10 +182,10 @@ export { IKeybindingService } from './vscode/src/vs/platform/keybinding/common/k
|
|
|
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
184
|
|
|
185
|
-
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.101.1-
|
|
186
|
-
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.101.1-
|
|
185
|
+
if (window.monacoVscodeApiBuildId != null && window.monacoVscodeApiBuildId !== "1.101.1-221a0994-91d6-4c3a-a81b-f1cdb6f08744") {
|
|
186
|
+
throw new Error(`Another version of monaco-vscode-api has already been loaded. Trying to load ${"1.101.1-221a0994-91d6-4c3a-a81b-f1cdb6f08744"}, ${window.monacoVscodeApiBuildId} is already loaded`);
|
|
187
187
|
}
|
|
188
|
-
window.monacoVscodeApiBuildId = "1.101.1-
|
|
188
|
+
window.monacoVscodeApiBuildId = "1.101.1-221a0994-91d6-4c3a-a81b-f1cdb6f08744";
|
|
189
189
|
async function initialize(overrides, container = document.body, configuration = {}, env) {
|
|
190
190
|
checkServicesNotInitialized();
|
|
191
191
|
injectCss(container);
|