@theia/plugin 1.24.0-next.52 → 1.24.0-next.56

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 +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.24.0-next.52+b1bd7bd528c",
3
+ "version": "1.24.0-next.56+42c93b0ecb1",
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": "b1bd7bd528c257652f29451d168b750840c22e45"
35
+ "gitHead": "42c93b0ecb14abb3635af9e19ecb66d34c66b8b0"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -8070,6 +8070,14 @@ export module '@theia/plugin' {
8070
8070
  */
8071
8071
  static readonly SourceOrganizeImports: CodeActionKind;
8072
8072
 
8073
+ /**
8074
+ * Base kind for auto-fix source actions: `source.fixAll`.
8075
+ *
8076
+ * Fix all actions automatically fix errors that have a clear fix that do not require user input.
8077
+ * They should not suppress errors or perform unsafe fixes such as generating new types or classes.
8078
+ */
8079
+ static readonly SourceFixAll: CodeActionKind;
8080
+
8073
8081
  private constructor(value: string);
8074
8082
 
8075
8083
  /**