@wox-launcher/wox-plugin 0.0.91 → 0.0.92

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 +1 -1
  2. package/types/index.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wox-launcher/wox-plugin",
3
- "version": "0.0.91",
3
+ "version": "0.0.92",
4
4
  "description": "All nodejs plugin for Wox should use types in this package",
5
5
  "repository": {
6
6
  "type": "git",
package/types/index.d.ts CHANGED
@@ -258,7 +258,7 @@ export interface ChangeQueryParam {
258
258
  QuerySelection?: Selection
259
259
  }
260
260
 
261
- export interface RefreshQueryOption {
261
+ export interface RefreshQueryParam {
262
262
  /**
263
263
  * Controls whether to maintain the previously selected item index after refresh.
264
264
  * When true, the user's current selection index in the results list is preserved.
@@ -493,9 +493,9 @@ export interface PublicAPI {
493
493
  * ```
494
494
  *
495
495
  * @param ctx Context
496
- * @param option RefreshQueryOption to control refresh behavior
496
+ * @param param RefreshQueryParam to control refresh behavior
497
497
  */
498
- RefreshQuery: (ctx: Context, option: RefreshQueryOption) => Promise<void>
498
+ RefreshQuery: (ctx: Context, param: RefreshQueryParam) => Promise<void>
499
499
  }
500
500
 
501
501
  export type WoxImageType = "absolute" | "relative" | "base64" | "svg" | "url" | "emoji" | "lottie"