@lvce-editor/rpc-registry 6.3.0 → 6.4.0

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.
@@ -11,13 +11,13 @@ export const enable = (id) => {
11
11
  return invoke(`Extensions.enable`, id);
12
12
  };
13
13
  export const enable2 = (id, platform) => {
14
- return invoke(`Extensions.enable`, id, platform);
14
+ return invoke(`Extensions.enable2`, id, platform);
15
15
  };
16
16
  export const disable = (id) => {
17
17
  return invoke(`Extensions.disable`, id);
18
18
  };
19
19
  export const disable2 = (id, platform) => {
20
- return invoke(`Extensions.disable`, id, platform);
20
+ return invoke(`Extensions.disable2`, id, platform);
21
21
  };
22
22
  export const getExtension = (id) => {
23
23
  return invoke(`Extensions.getExtension`, id);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/rpc-registry",
3
- "version": "6.3.0",
3
+ "version": "6.4.0",
4
4
  "description": "Rpc Registry",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,7 +13,7 @@
13
13
  "main": "dist/index.js",
14
14
  "dependencies": {
15
15
  "@lvce-editor/assert": "^1.5.1",
16
- "@lvce-editor/constants": "^2.3.0",
16
+ "@lvce-editor/constants": "^2.4.0",
17
17
  "@lvce-editor/rpc": "^4.20.0"
18
18
  },
19
19
  "types": "dist/index.d.ts"