assistsx-js 0.0.2017 → 0.0.2018

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/AssistsX.js CHANGED
@@ -568,7 +568,7 @@ export class AssistsX {
568
568
  }
569
569
  static async setAccessibilityEventFilters(value) {
570
570
  const response = this.call(CallMethod.setAccessibilityEventFilters, {
571
- args: { value },
571
+ args: value,
572
572
  });
573
573
  return response.getDataOrDefault({});
574
574
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assistsx-js",
3
- "version": "0.0.2017",
3
+ "version": "0.0.2018",
4
4
  "description": "assistsx-js自动化开发SDK",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
package/src/AssistsX.ts CHANGED
@@ -803,7 +803,7 @@ export class AssistsX {
803
803
  value: AccessibilityEventFilter[]
804
804
  ): Promise<any> {
805
805
  const response = this.call(CallMethod.setAccessibilityEventFilters, {
806
- args: { value },
806
+ args: value,
807
807
  });
808
808
  return response.getDataOrDefault({});
809
809
  }