assistsx-js 0.0.2017 → 0.0.2019

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
@@ -574,7 +574,7 @@ export class AssistsX {
574
574
  }
575
575
  static async addAccessibilityEventFilter(value) {
576
576
  const response = this.call(CallMethod.addAccessibilityEventFilter, {
577
- args: value,
577
+ args: { value },
578
578
  });
579
579
  return response.getDataOrDefault({});
580
580
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assistsx-js",
3
- "version": "0.0.2017",
3
+ "version": "0.0.2019",
4
4
  "description": "assistsx-js自动化开发SDK",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
package/src/AssistsX.ts CHANGED
@@ -811,7 +811,7 @@ export class AssistsX {
811
811
  value: AccessibilityEventFilter
812
812
  ): Promise<any> {
813
813
  const response = this.call(CallMethod.addAccessibilityEventFilter, {
814
- args: value,
814
+ args: { value },
815
815
  });
816
816
  return response.getDataOrDefault({});
817
817
  }