@codingame/monaco-vscode-extension-gallery-service-override 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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-extension-gallery-service-override",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - extension-gallery service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-23aade48-f094-5c08-9555-97fc9cca96c9-common": "20.
|
|
19
|
-
"@codingame/monaco-vscode-249dc928-1da3-51c1-82d0-45e0ba9d08a1-common": "20.
|
|
20
|
-
"@codingame/monaco-vscode-2673c6e2-17c1-5710-b169-46f3d4a28696-common": "20.
|
|
21
|
-
"@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common": "20.
|
|
22
|
-
"@codingame/monaco-vscode-571c8352-7953-5038-9f09-e03bb6219a0e-common": "20.
|
|
23
|
-
"@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "20.
|
|
24
|
-
"@codingame/monaco-vscode-8c844347-a703-5de1-9eeb-5e0c7f503a58-common": "20.
|
|
25
|
-
"@codingame/monaco-vscode-9ed6fe06-a052-57c2-a234-5d9b94d2e7e0-common": "20.
|
|
26
|
-
"@codingame/monaco-vscode-a654b07e-8806-5425-b124-18f03ba8e11a-common": "20.
|
|
27
|
-
"@codingame/monaco-vscode-api": "20.
|
|
18
|
+
"@codingame/monaco-vscode-23aade48-f094-5c08-9555-97fc9cca96c9-common": "20.2.0",
|
|
19
|
+
"@codingame/monaco-vscode-249dc928-1da3-51c1-82d0-45e0ba9d08a1-common": "20.2.0",
|
|
20
|
+
"@codingame/monaco-vscode-2673c6e2-17c1-5710-b169-46f3d4a28696-common": "20.2.0",
|
|
21
|
+
"@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common": "20.2.0",
|
|
22
|
+
"@codingame/monaco-vscode-571c8352-7953-5038-9f09-e03bb6219a0e-common": "20.2.0",
|
|
23
|
+
"@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common": "20.2.0",
|
|
24
|
+
"@codingame/monaco-vscode-8c844347-a703-5de1-9eeb-5e0c7f503a58-common": "20.2.0",
|
|
25
|
+
"@codingame/monaco-vscode-9ed6fe06-a052-57c2-a234-5d9b94d2e7e0-common": "20.2.0",
|
|
26
|
+
"@codingame/monaco-vscode-a654b07e-8806-5425-b124-18f03ba8e11a-common": "20.2.0",
|
|
27
|
+
"@codingame/monaco-vscode-api": "20.2.0"
|
|
28
28
|
},
|
|
29
29
|
"main": "index.js",
|
|
30
30
|
"module": "index.js",
|
|
@@ -40,7 +40,13 @@ export declare abstract class AbstractNativeExtensionTipsService extends Extensi
|
|
|
40
40
|
getOtherExecutableBasedTips(): Promise<IExecutableBasedExtensionTip[]>;
|
|
41
41
|
private collectTips;
|
|
42
42
|
private groupImportantTipsByExe;
|
|
43
|
+
/**
|
|
44
|
+
* High importance tips are prompted once per restart session
|
|
45
|
+
*/
|
|
43
46
|
private promptHighImportanceExeBasedTip;
|
|
47
|
+
/**
|
|
48
|
+
* Medium importance tips are prompted once per 7 days
|
|
49
|
+
*/
|
|
44
50
|
private promptMediumImportanceExeBasedTip;
|
|
45
51
|
private promptExeRecommendations;
|
|
46
52
|
private getLastPromptedMediumExeTime;
|
|
@@ -39,7 +39,13 @@ export declare class WebExtensionsScannerService extends Disposable implements I
|
|
|
39
39
|
private _customBuiltinExtensionsInfoPromise;
|
|
40
40
|
private readCustomBuiltinExtensionsInfoFromEnv;
|
|
41
41
|
private checkAdditionalBuiltinExtensions;
|
|
42
|
+
/**
|
|
43
|
+
* All system extensions bundled with the product
|
|
44
|
+
*/
|
|
42
45
|
private readSystemExtensions;
|
|
46
|
+
/**
|
|
47
|
+
* All extensions defined via `additionalBuiltinExtensions` API
|
|
48
|
+
*/
|
|
43
49
|
private readCustomBuiltinExtensions;
|
|
44
50
|
private getCustomBuiltinExtensionsFromLocations;
|
|
45
51
|
private getCustomBuiltinExtensionsFromGallery;
|