@wox-launcher/wox-plugin 0.0.106 → 0.0.107

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 +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wox-launcher/wox-plugin",
3
- "version": "0.0.106",
3
+ "version": "0.0.107",
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
@@ -114,7 +114,7 @@ export interface ResultTail {
114
114
  /** Tail id, should be unique. It's optional, if you don't set it, Wox will assign a random id for you */
115
115
  Id?: string
116
116
  /** Additional data associate with this tail, can be retrieved later */
117
- ContextData?: string
117
+ ContextData?: MapString
118
118
  }
119
119
 
120
120
  /**
@@ -185,7 +185,7 @@ export interface ExecuteResultAction {
185
185
  /**
186
186
  * Additional data associate with this action, can be retrieved later
187
187
  */
188
- ContextData?: string
188
+ ContextData?: MapString
189
189
  }
190
190
 
191
191
  export interface FormResultAction {
@@ -217,7 +217,7 @@ export interface FormResultAction {
217
217
  /**
218
218
  * Additional data associate with this action, can be retrieved later
219
219
  */
220
- ContextData?: string
220
+ ContextData?: MapString
221
221
  }
222
222
 
223
223
  export interface ActionContext {
@@ -236,7 +236,7 @@ export interface ActionContext {
236
236
  /**
237
237
  * Additional data associated with this action
238
238
  */
239
- ContextData: string
239
+ ContextData: MapString
240
240
  }
241
241
 
242
242
  export interface FormActionContext extends ActionContext {
@@ -248,7 +248,7 @@ export interface MRUData {
248
248
  Title: string
249
249
  SubTitle: string
250
250
  Icon: WoxImage
251
- ContextData: string
251
+ ContextData: MapString
252
252
  }
253
253
 
254
254
  export interface PluginInitParams {