@opensumi/ide-extension 3.8.1-next-1741080291.0 → 3.8.1-next-1741091353.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/worker-host.js +10 -1
- package/package.json +35 -35
package/lib/worker-host.js
CHANGED
|
@@ -59018,7 +59018,6 @@ var AINativeSettingSectionsId;
|
|
|
59018
59018
|
* Language model API keys
|
|
59019
59019
|
*/
|
|
59020
59020
|
AINativeSettingSectionsId["LLMModelSelection"] = "ai.native.llm.model.selection";
|
|
59021
|
-
AINativeSettingSectionsId["ModelID"] = "ai.native.llm.model.id";
|
|
59022
59021
|
AINativeSettingSectionsId["DeepseekApiKey"] = "ai.native.deepseek.apiKey";
|
|
59023
59022
|
AINativeSettingSectionsId["AnthropicApiKey"] = "ai.native.anthropic.apiKey";
|
|
59024
59023
|
AINativeSettingSectionsId["OpenaiApiKey"] = "ai.native.openai.apiKey";
|
|
@@ -75867,6 +75866,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
75867
75866
|
exports.isSafari = exports.isChrome = exports.userAgent = exports.OperatingSystem = exports.globals = exports.translationsConfigFile = exports.locale = exports.Language = exports.language = exports.isWebKit = exports.platform = exports.isWeb = exports.isNative = exports.isLinux = exports.isOSX = exports.isMacintosh = exports.isWindows = exports.LANGUAGE_DEFAULT = void 0;
|
|
75868
75867
|
exports.PlatformToString = PlatformToString;
|
|
75869
75868
|
exports.isRootUser = isRootUser;
|
|
75869
|
+
exports.getOperatingSystemName = getOperatingSystemName;
|
|
75870
75870
|
exports.setImmediate = setImmediate;
|
|
75871
75871
|
const types_1 = __webpack_require__(/*! ./types */ "../utils/lib/types.js");
|
|
75872
75872
|
exports.LANGUAGE_DEFAULT = 'en';
|
|
@@ -75952,6 +75952,15 @@ exports.isWebKit = _isWebKit;
|
|
|
75952
75952
|
function isRootUser() {
|
|
75953
75953
|
return _isNative && !_isWindows && process.getuid() === 0;
|
|
75954
75954
|
}
|
|
75955
|
+
function getOperatingSystemName() {
|
|
75956
|
+
if (exports.isWindows) {
|
|
75957
|
+
return 'Windows';
|
|
75958
|
+
}
|
|
75959
|
+
if (exports.isMacintosh) {
|
|
75960
|
+
return 'Macintosh';
|
|
75961
|
+
}
|
|
75962
|
+
return 'Linux';
|
|
75963
|
+
}
|
|
75955
75964
|
/**
|
|
75956
75965
|
* The language used for the user interface. The format of
|
|
75957
75966
|
* the string is all lower case (e.g. zh-tw for Traditional
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opensumi/ide-extension",
|
|
3
|
-
"version": "3.8.1-next-
|
|
3
|
+
"version": "3.8.1-next-1741091353.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"lib",
|
|
6
6
|
"hosted"
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@opensumi/events": "^1.0.0",
|
|
26
|
-
"@opensumi/ide-connection": "3.8.1-next-
|
|
27
|
-
"@opensumi/ide-core-browser": "3.8.1-next-
|
|
28
|
-
"@opensumi/ide-core-node": "3.8.1-next-
|
|
29
|
-
"@opensumi/ide-debug": "3.8.1-next-
|
|
30
|
-
"@opensumi/ide-file-search": "3.8.1-next-
|
|
31
|
-
"@opensumi/ide-file-service": "3.8.1-next-
|
|
32
|
-
"@opensumi/ide-logs": "3.8.1-next-
|
|
33
|
-
"@opensumi/ide-markdown": "3.8.1-next-
|
|
34
|
-
"@opensumi/ide-task": "3.8.1-next-
|
|
35
|
-
"@opensumi/ide-terminal-next": "3.8.1-next-
|
|
36
|
-
"@opensumi/ide-utils": "3.8.1-next-
|
|
37
|
-
"@opensumi/ide-webview": "3.8.1-next-
|
|
26
|
+
"@opensumi/ide-connection": "3.8.1-next-1741091353.0",
|
|
27
|
+
"@opensumi/ide-core-browser": "3.8.1-next-1741091353.0",
|
|
28
|
+
"@opensumi/ide-core-node": "3.8.1-next-1741091353.0",
|
|
29
|
+
"@opensumi/ide-debug": "3.8.1-next-1741091353.0",
|
|
30
|
+
"@opensumi/ide-file-search": "3.8.1-next-1741091353.0",
|
|
31
|
+
"@opensumi/ide-file-service": "3.8.1-next-1741091353.0",
|
|
32
|
+
"@opensumi/ide-logs": "3.8.1-next-1741091353.0",
|
|
33
|
+
"@opensumi/ide-markdown": "3.8.1-next-1741091353.0",
|
|
34
|
+
"@opensumi/ide-task": "3.8.1-next-1741091353.0",
|
|
35
|
+
"@opensumi/ide-terminal-next": "3.8.1-next-1741091353.0",
|
|
36
|
+
"@opensumi/ide-utils": "3.8.1-next-1741091353.0",
|
|
37
|
+
"@opensumi/ide-webview": "3.8.1-next-1741091353.0",
|
|
38
38
|
"address": "^1.1.2",
|
|
39
39
|
"glob-to-regexp": "0.4.1",
|
|
40
40
|
"is-running": "^2.1.0",
|
|
@@ -45,28 +45,28 @@
|
|
|
45
45
|
"v8-inspect-profiler": "^0.1.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@opensumi/ide-ai-native": "3.8.1-next-
|
|
49
|
-
"@opensumi/ide-comments": "3.8.1-next-
|
|
50
|
-
"@opensumi/ide-components": "3.8.1-next-
|
|
48
|
+
"@opensumi/ide-ai-native": "3.8.1-next-1741091353.0",
|
|
49
|
+
"@opensumi/ide-comments": "3.8.1-next-1741091353.0",
|
|
50
|
+
"@opensumi/ide-components": "3.8.1-next-1741091353.0",
|
|
51
51
|
"@opensumi/ide-core-browser": "workspace:*",
|
|
52
|
-
"@opensumi/ide-core-common": "3.8.1-next-
|
|
53
|
-
"@opensumi/ide-decoration": "3.8.1-next-
|
|
54
|
-
"@opensumi/ide-dev-tool": "3.8.1-next-
|
|
55
|
-
"@opensumi/ide-editor": "3.8.1-next-
|
|
56
|
-
"@opensumi/ide-extension-storage": "3.8.1-next-
|
|
57
|
-
"@opensumi/ide-file-tree-next": "3.8.1-next-
|
|
58
|
-
"@opensumi/ide-i18n": "3.8.1-next-
|
|
59
|
-
"@opensumi/ide-main-layout": "3.8.1-next-
|
|
60
|
-
"@opensumi/ide-monaco": "3.8.1-next-
|
|
61
|
-
"@opensumi/ide-output": "3.8.1-next-
|
|
62
|
-
"@opensumi/ide-overlay": "3.8.1-next-
|
|
63
|
-
"@opensumi/ide-quick-open": "3.8.1-next-
|
|
64
|
-
"@opensumi/ide-scm": "3.8.1-next-
|
|
65
|
-
"@opensumi/ide-testing": "3.8.1-next-
|
|
66
|
-
"@opensumi/ide-theme": "3.8.1-next-
|
|
67
|
-
"@opensumi/ide-toolbar": "3.8.1-next-
|
|
68
|
-
"@opensumi/ide-workspace": "3.8.1-next-
|
|
69
|
-
"@opensumi/ide-workspace-edit": "3.8.1-next-
|
|
52
|
+
"@opensumi/ide-core-common": "3.8.1-next-1741091353.0",
|
|
53
|
+
"@opensumi/ide-decoration": "3.8.1-next-1741091353.0",
|
|
54
|
+
"@opensumi/ide-dev-tool": "3.8.1-next-1741091353.0",
|
|
55
|
+
"@opensumi/ide-editor": "3.8.1-next-1741091353.0",
|
|
56
|
+
"@opensumi/ide-extension-storage": "3.8.1-next-1741091353.0",
|
|
57
|
+
"@opensumi/ide-file-tree-next": "3.8.1-next-1741091353.0",
|
|
58
|
+
"@opensumi/ide-i18n": "3.8.1-next-1741091353.0",
|
|
59
|
+
"@opensumi/ide-main-layout": "3.8.1-next-1741091353.0",
|
|
60
|
+
"@opensumi/ide-monaco": "3.8.1-next-1741091353.0",
|
|
61
|
+
"@opensumi/ide-output": "3.8.1-next-1741091353.0",
|
|
62
|
+
"@opensumi/ide-overlay": "3.8.1-next-1741091353.0",
|
|
63
|
+
"@opensumi/ide-quick-open": "3.8.1-next-1741091353.0",
|
|
64
|
+
"@opensumi/ide-scm": "3.8.1-next-1741091353.0",
|
|
65
|
+
"@opensumi/ide-testing": "3.8.1-next-1741091353.0",
|
|
66
|
+
"@opensumi/ide-theme": "3.8.1-next-1741091353.0",
|
|
67
|
+
"@opensumi/ide-toolbar": "3.8.1-next-1741091353.0",
|
|
68
|
+
"@opensumi/ide-workspace": "3.8.1-next-1741091353.0",
|
|
69
|
+
"@opensumi/ide-workspace-edit": "3.8.1-next-1741091353.0"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "4134fdda0b299adad482b64b0dbabad013e36dc3"
|
|
72
72
|
}
|