assistsx-js 0.0.2018 → 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 +2 -2
- package/package.json +1 -1
- package/src/AssistsX.ts +2 -2
package/dist/AssistsX.js
CHANGED
|
@@ -568,13 +568,13 @@ 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
|
}
|
|
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
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
|
}
|
|
@@ -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
|
}
|