@theia/plugin 1.21.0-next.32 → 1.22.0-next.3

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 +3 -3
  2. package/src/theia.d.ts +1 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theia/plugin",
3
- "version": "1.21.0-next.32+6175dfa0a4b",
3
+ "version": "1.22.0-next.3+a59118db63d",
4
4
  "description": "Theia - Plugin API",
5
5
  "types": "./src/theia.d.ts",
6
6
  "publishConfig": {
@@ -27,10 +27,10 @@
27
27
  "watch": "theiaext watch"
28
28
  },
29
29
  "devDependencies": {
30
- "@theia/ext-scripts": "1.20.0"
30
+ "@theia/ext-scripts": "1.21.0"
31
31
  },
32
32
  "nyc": {
33
33
  "extends": "../../configs/nyc.json"
34
34
  },
35
- "gitHead": "6175dfa0a4bcf58b51105e026381ca83f1cdc000"
35
+ "gitHead": "a59118db63d9de9765b4e5ce6264f9eb1bd6904e"
36
36
  }
package/src/theia.d.ts CHANGED
@@ -202,7 +202,7 @@ export module '@theia/plugin' {
202
202
  /**
203
203
  * The identifier of the actual command handler.
204
204
  */
205
- command?: string;
205
+ command: string;
206
206
  /**
207
207
  * Title of the command invocation, like "Add local variable 'foo'".
208
208
  */
@@ -216,15 +216,6 @@ export module '@theia/plugin' {
216
216
  * invoked with.
217
217
  */
218
218
  arguments?: any[];
219
-
220
- /**
221
- * @deprecated use command instead
222
- */
223
- id?: string;
224
- /**
225
- * @deprecated use title instead
226
- */
227
- label?: string;
228
219
  }
229
220
 
230
221
  /**