@theia/plugin 1.68.0-next.34 → 1.68.0-next.48
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 +2 -2
- package/src/theia.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/plugin",
|
|
3
|
-
"version": "1.68.0-next.
|
|
3
|
+
"version": "1.68.0-next.48+c13611b3f",
|
|
4
4
|
"description": "Theia - Plugin API",
|
|
5
5
|
"types": "./src/theia.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"nyc": {
|
|
33
33
|
"extends": "../../configs/nyc.json"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "c13611b3f07bfc3d2c7525d8488283ff3e575422"
|
|
36
36
|
}
|
package/src/theia.d.ts
CHANGED
|
@@ -8258,6 +8258,11 @@ export module '@theia/plugin' {
|
|
|
8258
8258
|
*/
|
|
8259
8259
|
export const onDidGrantWorkspaceTrust: Event<void>;
|
|
8260
8260
|
|
|
8261
|
+
/**
|
|
8262
|
+
* Event that fires when the workspace trust state changes.
|
|
8263
|
+
*/
|
|
8264
|
+
export const onDidChangeWorkspaceTrust: Event<boolean>;
|
|
8265
|
+
|
|
8261
8266
|
/**
|
|
8262
8267
|
* Decodes the content from a `Uint8Array` to a `string`. You MUST
|
|
8263
8268
|
* provide the entire content at once to ensure that the encoding
|