@theia/plugin 1.25.0-next.44 → 1.25.0-next.47

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 (2) hide show
  1. package/package.json +2 -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.25.0-next.44+7f5047fcb21",
3
+ "version": "1.25.0-next.47+2ccf321f1f2",
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": "7f5047fcb21c1415d4ecf9b5ba34f802615e1c05"
35
+ "gitHead": "2ccf321f1f2da048c2c3eae7be157556d0ee9490"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -10941,6 +10941,11 @@ export module '@theia/plugin' {
10941
10941
  * Once disposed, this comment thread will be removed from visible editors and Comment Panel when appropriate.
10942
10942
  */
10943
10943
  dispose(): void;
10944
+
10945
+ /**
10946
+ * Whether the thread supports reply. Defaults to true.
10947
+ */
10948
+ canReply: boolean;
10944
10949
  }
10945
10950
 
10946
10951
  /**