@theia/plugin 1.36.0-next.27 → 1.36.0-next.28

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 +21 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.36.0-next.27+ff944decc",
3
+ "version": "1.36.0-next.28+16be9acdf",
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": "ff944decc5e65237739648af47940927f7599a4a"
35
+ "gitHead": "16be9acdf4a3dfc7e85f5105ad1e8000d855373a"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -11585,6 +11585,27 @@ export module '@theia/plugin' {
11585
11585
  * If compact is true, debug sessions with a single child are hidden in the CALL STACK view to make the tree more compact.
11586
11586
  */
11587
11587
  compact?: boolean;
11588
+
11589
+ /**
11590
+ * When true, a save will not be triggered for open editors when starting a debug session,
11591
+ * regardless of the value of the `debug.saveBeforeStart` setting.
11592
+ */
11593
+ suppressSaveBeforeStart?: boolean;
11594
+
11595
+ /**
11596
+ * When true, the debug toolbar will not be shown for this session.
11597
+ */
11598
+ suppressDebugToolbar?: boolean;
11599
+
11600
+ /**
11601
+ * When true, the window statusbar color will not be changed for this session.
11602
+ */
11603
+ suppressDebugStatusbar?: boolean;
11604
+
11605
+ /**
11606
+ * When true, the debug viewlet will not be automatically revealed for this session.
11607
+ */
11608
+ suppressDebugView?: boolean;
11588
11609
  }
11589
11610
 
11590
11611
  /**