@lvce-editor/rpc-registry 2.60.0 → 2.61.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.
package/dist/index.d.ts CHANGED
@@ -555,7 +555,7 @@ declare const openNativeFolder: (uri: string) => Promise<void>;
555
555
  declare const uninstallExtension: (id: string) => Promise<void>;
556
556
  declare const installExtension: (id: string) => Promise<void>;
557
557
  declare const openExtensionSearch: () => Promise<void>;
558
- declare const setExtensionsSearchValue: (value: string) => Promise<void>;
558
+ declare const setExtensionsSearchValue: (searchValue: string) => Promise<void>;
559
559
  declare const openExternal: (uri: string) => Promise<void>;
560
560
  declare const openUrl: (uri: string) => Promise<void>;
561
561
  declare const DebugWorker = 55;
package/dist/index.js CHANGED
@@ -765,7 +765,7 @@ const openExtensionSearch = async () => {
765
765
  // @ts-ignore
766
766
  return invoke$3('SideBar.openViewlet', 'Extensions');
767
767
  };
768
- const setExtensionsSearchValue = async value => {
768
+ const setExtensionsSearchValue = async searchValue => {
769
769
  // @ts-ignore
770
770
  return invoke$3('Extensions.handleInput', searchValue);
771
771
  };
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@lvce-editor/rpc-registry",
3
- "version": "2.60.0",
3
+ "version": "2.61.0",
4
4
  "description": "Rpc Registry",
5
5
  "license": "MIT",
6
6
  "author": "Lvce Editor",
7
7
  "type": "module",
8
8
  "main": "dist/index.js",
9
9
  "dependencies": {
10
- "@lvce-editor/rpc": "^4.1.0"
10
+ "@lvce-editor/rpc": "^4.11.0"
11
11
  },
12
12
  "types": "dist/index.d.ts"
13
13
  }