appium-espresso-driver 4.1.1 → 4.1.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [4.1.2](https://github.com/appium/appium-espresso-driver/compare/v4.1.1...v4.1.2) (2025-03-14)
2
+
3
+ ### Bug Fixes
4
+
5
+ * the return value of getConnectivity to follow the description ([4283998](https://github.com/appium/appium-espresso-driver/commit/42839985a12d3e22241d98a444987eb358addc4a))
6
+
1
7
  ## [4.1.1](https://github.com/appium/appium-espresso-driver/compare/v4.1.0...v4.1.1) (2025-03-10)
2
8
 
3
9
  ### Miscellaneous Chores
@@ -30,5 +30,5 @@ export class suspendChromedriverProxy {
30
30
  * @param {boolean} forceJavascriptEnabled
31
31
  * @param {import('@appium/types').StringRecord[]} methodChain
32
32
  */
33
- export function mobileWebAtoms(this: import("../driver").EspressoDriver, webviewEl: string, forceJavascriptEnabled: boolean, methodChain: import("@appium/types").StringRecord[]): Promise<unknown>;
33
+ export function mobileWebAtoms(this: import("../driver").EspressoDriver, webviewEl: string, forceJavascriptEnabled: boolean, methodChain: import("@appium/types").StringRecord[]): Promise<any>;
34
34
  //# sourceMappingURL=context.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../lib/commands/context.js"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,oFAFa,IAAI,CAOhB;;IAJC,kBAA6B;IAC7B,iBAAgE;IAChE,kBAAkE;IAClE,wBAA0B;;AAG5B;;;;;;;;;;;;;;;;;;GAkBG;AACH,oFAJW,MAAM,0BACN,OAAO,eACP,OAAO,eAAe,EAAE,YAAY,EAAE,oBAYhD"}
1
+ {"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../../lib/commands/context.js"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,oFAFa,IAAI,CAOhB;;IAJC,kBAA6B;IAC7B,iBAAgE;IAChE,kBAAkE;IAClE,wBAA0B;;AAG5B;;;;;;;;;;;;;;;;;;GAkBG;AACH,oFAJW,MAAM,0BACN,OAAO,eACP,OAAO,eAAe,EAAE,YAAY,EAAE,gBAYhD"}
@@ -7,7 +7,7 @@
7
7
  * @param {number} durationMillis
8
8
  * @param {number} repeatCount
9
9
  */
10
- export function mobileFlashElement(this: import("../driver").EspressoDriver, elementId: string, durationMillis: number, repeatCount: number): Promise<unknown>;
10
+ export function mobileFlashElement(this: import("../driver").EspressoDriver, elementId: string, durationMillis: number, repeatCount: number): Promise<any>;
11
11
  /**
12
12
  * @this {import('../driver').EspressoDriver}
13
13
  * @see https://github.com/appium/appium-espresso-driver?tab=readme-ov-file#mobile-dismissautofill
@@ -24,21 +24,21 @@ export function mobileDismissAutofill(this: import("../driver").EspressoDriver,
24
24
  * @param {string} [endCoordinates]
25
25
  * @param {string} [precisionDescriber]
26
26
  */
27
- export function mobileSwipe(this: import("../driver").EspressoDriver, elementId: string, direction?: string, swiper?: string, startCoordinates?: string, endCoordinates?: string, precisionDescriber?: string): Promise<unknown>;
27
+ export function mobileSwipe(this: import("../driver").EspressoDriver, elementId: string, direction?: string, swiper?: string, startCoordinates?: string, endCoordinates?: string, precisionDescriber?: string): Promise<any>;
28
28
  /**
29
29
  * @this {import('../driver').EspressoDriver}
30
30
  * @see https://github.com/appium/appium-espresso-driver?tab=readme-ov-file#mobile-opendrawer
31
31
  * @param {string} elementId
32
32
  * @param {number} [gravity]
33
33
  */
34
- export function mobileOpenDrawer(this: import("../driver").EspressoDriver, elementId: string, gravity?: number): Promise<unknown>;
34
+ export function mobileOpenDrawer(this: import("../driver").EspressoDriver, elementId: string, gravity?: number): Promise<any>;
35
35
  /**
36
36
  * @this {import('../driver').EspressoDriver}
37
37
  * @see https://github.com/appium/appium-espresso-driver?tab=readme-ov-file#mobile-closedrawer
38
38
  * @param {string} elementId
39
39
  * @param {number} [gravity]
40
40
  */
41
- export function mobileCloseDrawer(this: import("../driver").EspressoDriver, elementId: string, gravity?: number): Promise<unknown>;
41
+ export function mobileCloseDrawer(this: import("../driver").EspressoDriver, elementId: string, gravity?: number): Promise<any>;
42
42
  /**
43
43
  * @this {import('../driver').EspressoDriver}
44
44
  * @see https://github.com/appium/appium-espresso-driver?tab=readme-ov-file#mobile-setdate
@@ -47,7 +47,7 @@ export function mobileCloseDrawer(this: import("../driver").EspressoDriver, elem
47
47
  * @param {number} monthOfYear
48
48
  * @param {number} dayOfMonth
49
49
  */
50
- export function mobileSetDate(this: import("../driver").EspressoDriver, elementId: string, year: number, monthOfYear: number, dayOfMonth: number): Promise<unknown>;
50
+ export function mobileSetDate(this: import("../driver").EspressoDriver, elementId: string, year: number, monthOfYear: number, dayOfMonth: number): Promise<any>;
51
51
  /**
52
52
  * @this {import('../driver').EspressoDriver}
53
53
  * @see https://github.com/appium/appium-espresso-driver?tab=readme-ov-file#mobile-settime
@@ -55,14 +55,14 @@ export function mobileSetDate(this: import("../driver").EspressoDriver, elementI
55
55
  * @param {number} hours
56
56
  * @param {number} minutes
57
57
  */
58
- export function mobileSetTime(this: import("../driver").EspressoDriver, elementId: string, hours: number, minutes: number): Promise<unknown>;
58
+ export function mobileSetTime(this: import("../driver").EspressoDriver, elementId: string, hours: number, minutes: number): Promise<any>;
59
59
  /**
60
60
  * @this {import('../driver').EspressoDriver}
61
61
  * @see https://github.com/appium/appium-espresso-driver?tab=readme-ov-file#mobile-navigateto
62
62
  * @param {string} elementId
63
63
  * @param {number | string} menuItemId
64
64
  */
65
- export function mobileNavigateTo(this: import("../driver").EspressoDriver, elementId: string, menuItemId: number | string): Promise<unknown>;
65
+ export function mobileNavigateTo(this: import("../driver").EspressoDriver, elementId: string, menuItemId: number | string): Promise<any>;
66
66
  /**
67
67
  * Perform a 'GeneralClickAction' (https://developer.android.com/reference/androidx/test/espresso/action/GeneralClickAction)
68
68
  *
@@ -75,7 +75,7 @@ export function mobileNavigateTo(this: import("../driver").EspressoDriver, eleme
75
75
  * @param {number} [inputDevice]
76
76
  * @param {number} [buttonState]
77
77
  */
78
- export function mobileClickAction(this: import("../driver").EspressoDriver, elementId: string, tapper?: string, coordinatesProvider?: string, precisionDescriber?: string, inputDevice?: number, buttonState?: number): Promise<unknown>;
78
+ export function mobileClickAction(this: import("../driver").EspressoDriver, elementId: string, tapper?: string, coordinatesProvider?: string, precisionDescriber?: string, inputDevice?: number, buttonState?: number): Promise<any>;
79
79
  /**
80
80
  * @this {import('../driver').EspressoDriver}
81
81
  * @see https://github.com/appium/appium-espresso-driver?tab=readme-ov-file#mobile-scrolltopage
@@ -84,7 +84,7 @@ export function mobileClickAction(this: import("../driver").EspressoDriver, elem
84
84
  * @param {number} [scrollToPage]
85
85
  * @param {boolean} [smoothScroll=false]
86
86
  */
87
- export function mobileScrollToPage(this: import("../driver").EspressoDriver, elementId: string, scrollTo?: string, scrollToPage?: number, smoothScroll?: boolean): Promise<unknown>;
87
+ export function mobileScrollToPage(this: import("../driver").EspressoDriver, elementId: string, scrollTo?: string, scrollToPage?: number, smoothScroll?: boolean): Promise<any>;
88
88
  /**
89
89
  * @this {import('../driver').EspressoDriver}
90
90
  * @param {string|number} action
@@ -1 +1 @@
1
- {"version":3,"file":"element.d.ts","sourceRoot":"","sources":["../../../lib/commands/element.js"],"names":[],"mappings":"AAIA;;;;;;;;GAQG;AACH,wFAJW,MAAM,kBACN,MAAM,eACN,MAAM,oBAchB;AAED;;;;GAIG;AACH,2FAFW,MAAM,iBAQhB;AAED;;;;;;;;;GASG;AACH,iFAPW,MAAM,cACN,MAAM,WACN,MAAM,qBACN,MAAM,mBACN,MAAM,uBACN,MAAM,oBAsBhB;AAGD;;;;;GAKG;AACH,sFAHW,MAAM,YACN,MAAM,oBAQhB;AAED;;;;;GAKG;AACH,uFAHW,MAAM,YACN,MAAM,oBAQhB;AAED;;;;;;;GAOG;AACH,mFALW,MAAM,QACN,MAAM,eACN,MAAM,cACN,MAAM,oBAgBhB;AAED;;;;;;GAMG;AACH,mFAJW,MAAM,SACN,MAAM,WACN,MAAM,oBAchB;AAED;;;;;GAKG;AACH,sFAHW,MAAM,cACN,MAAM,GAAG,MAAM,oBAczB;AAED;;;;;;;;;;;GAWG;AACH,uFAPW,MAAM,WACN,MAAM,wBACN,MAAM,uBACN,MAAM,gBACN,MAAM,gBACN,MAAM,oBAgBhB;AAED;;;;;;;GAOG;AACH,wFALW,MAAM,aACN,MAAM,iBACN,MAAM,iBACN,OAAO,oBA+BjB;AAED;;;;GAIG;AACH,4FAHW,MAAM,GAAC,MAAM,GACX,OAAO,CAAC,IAAI,CAAC,CAIzB"}
1
+ {"version":3,"file":"element.d.ts","sourceRoot":"","sources":["../../../lib/commands/element.js"],"names":[],"mappings":"AAIA;;;;;;;;GAQG;AACH,wFAJW,MAAM,kBACN,MAAM,eACN,MAAM,gBAchB;AAED;;;;GAIG;AACH,2FAFW,MAAM,iBAQhB;AAED;;;;;;;;;GASG;AACH,iFAPW,MAAM,cACN,MAAM,WACN,MAAM,qBACN,MAAM,mBACN,MAAM,uBACN,MAAM,gBAsBhB;AAGD;;;;;GAKG;AACH,sFAHW,MAAM,YACN,MAAM,gBAQhB;AAED;;;;;GAKG;AACH,uFAHW,MAAM,YACN,MAAM,gBAQhB;AAED;;;;;;;GAOG;AACH,mFALW,MAAM,QACN,MAAM,eACN,MAAM,cACN,MAAM,gBAgBhB;AAED;;;;;;GAMG;AACH,mFAJW,MAAM,SACN,MAAM,WACN,MAAM,gBAchB;AAED;;;;;GAKG;AACH,sFAHW,MAAM,cACN,MAAM,GAAG,MAAM,gBAczB;AAED;;;;;;;;;;;GAWG;AACH,uFAPW,MAAM,WACN,MAAM,wBACN,MAAM,uBACN,MAAM,gBACN,MAAM,gBACN,MAAM,gBAgBhB;AAED;;;;;;;GAOG;AACH,wFALW,MAAM,aACN,MAAM,iBACN,MAAM,iBACN,OAAO,gBA+BjB;AAED;;;;GAIG;AACH,4FAHW,MAAM,GAAC,MAAM,GACX,OAAO,CAAC,IAAI,CAAC,CAIzB"}
@@ -17,7 +17,7 @@
17
17
  * @throws {Error} If there was a failure while parsing options or registering
18
18
  * the actual instances
19
19
  */
20
- export function mobileRegisterIdlingResources(this: import("../driver").EspressoDriver, classNames: string): Promise<unknown>;
20
+ export function mobileRegisterIdlingResources(this: import("../driver").EspressoDriver, classNames: string): Promise<any>;
21
21
  /**
22
22
  * Unregisters one or more idling resources
23
23
  *
@@ -33,7 +33,7 @@ export function mobileRegisterIdlingResources(this: import("../driver").Espresso
33
33
  * @throws {Error} If there was a failure while parsing options or unregistering
34
34
  * the actual instances
35
35
  */
36
- export function mobileUnregisterIdlingResources(this: import("../driver").EspressoDriver, classNames: string): Promise<unknown>;
36
+ export function mobileUnregisterIdlingResources(this: import("../driver").EspressoDriver, classNames: string): Promise<any>;
37
37
  /**
38
38
  * Returns a list of currently registered idling resources
39
39
  * or an empty list if no resources have been registered yet.
@@ -46,6 +46,6 @@ export function mobileListIdlingResources(this: import("../driver").EspressoDriv
46
46
  * Wait for UI thread to be idle.
47
47
  * @this {import('../driver').EspressoDriver}
48
48
  */
49
- export function mobileWaitForUIThread(this: import("../driver").EspressoDriver): Promise<unknown>;
49
+ export function mobileWaitForUIThread(this: import("../driver").EspressoDriver): Promise<any>;
50
50
  export type IdlingResourcesOptions = any;
51
51
  //# sourceMappingURL=idling-resources.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"idling-resources.d.ts","sourceRoot":"","sources":["../../../lib/commands/idling-resources.js"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;;;;;;;;;;;;;GAeG;AACH,oGAXW,MAAM,oBAehB;AAED;;;;;;;;;;;;;;GAcG;AACH,sGAXW,MAAM,oBAehB;AAED;;;;;;GAMG;AACH,qFAFa,OAAO,CAAC,MAAM,EAAE,CAAC,CAM7B;AAED;;;GAGG;AACH,kGAEC"}
1
+ {"version":3,"file":"idling-resources.d.ts","sourceRoot":"","sources":["../../../lib/commands/idling-resources.js"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;;;;;;;;;;;;;GAeG;AACH,oGAXW,MAAM,gBAehB;AAED;;;;;;;;;;;;;;GAcG;AACH,sGAXW,MAAM,gBAehB;AAED;;;;;;GAMG;AACH,qFAFa,OAAO,CAAC,MAAM,EAAE,CAAC,CAM7B;AAED;;;GAGG;AACH,8FAEC"}
@@ -22,7 +22,7 @@ export function mobileGetDeviceInfo(this: import("../driver").EspressoDriver): P
22
22
  * @param {string} text
23
23
  * @param {boolean} [isRegexp]
24
24
  */
25
- export function mobileIsToastVisible(this: import("../driver").EspressoDriver, text: string, isRegexp?: boolean): Promise<unknown>;
25
+ export function mobileIsToastVisible(this: import("../driver").EspressoDriver, text: string, isRegexp?: boolean): Promise<any>;
26
26
  /**
27
27
  * @this {import('../driver').EspressoDriver}
28
28
  * @returns {Promise<number>}
@@ -91,7 +91,7 @@ export function mobileBackdoor(this: import("../driver").EspressoDriver, target:
91
91
  * @param {string} action
92
92
  * @param {number} [index]
93
93
  */
94
- export function mobileUiautomator(this: import("../driver").EspressoDriver, strategy: string, locator: string, action: string, index?: number): Promise<unknown>;
94
+ export function mobileUiautomator(this: import("../driver").EspressoDriver, strategy: string, locator: string, action: string, index?: number): Promise<any>;
95
95
  /**
96
96
  * Execute UiAutomator2 command to return the UI dump when AUT is in background.
97
97
  * @this {import('../driver').EspressoDriver}
@@ -1 +1 @@
1
- {"version":3,"file":"misc.d.ts","sourceRoot":"","sources":["../../../lib/commands/misc.js"],"names":[],"mappings":"AAGA;;;;;;;;;;;GAWG;AACH,kFARW,MAAM,cAEN,MAAM,UAEN,MAAM,gBAEN,OAAO,iBAWjB;AAED;;;GAGG;AACH,+EAFa,OAAO,CAAC,OAAO,UAAU,EAAE,UAAU,CAAC,CAIlD;AAED;;;;;GAKG;AACH,qFAHW,MAAM,aACN,OAAO,oBAUjB;AAED;;;GAGG;AACH,6EAFa,OAAO,CAAC,MAAM,CAAC,CAM3B;AACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,iFANW,MAAM,WACN,OAAO,eAAe,EAAE,YAAY,EAAE,cACtC,MAAM,GACL,OAAO,CAAC,GAAG,CAAC,CAcvB;AAED;;;;;;;;;;;;;;;GAeG;AACH,sFALW,MAAM,WACN,MAAM,UACN,MAAM,UACN,MAAM,oBAWhB;AAED;;;;;GAKG;AACH,uFAFa,OAAO,CAAC,MAAM,CAAC,CAM3B;AAED;;;;GAIG;AAEH;;;;;GAKG;AACH,mFAHW,eAAe,iBAUzB;AAED;;GAEG;AACH;;GAMC;;;;;;YA5Ba,MAAO,GAAC,MAAM,GAAC,OAAO"}
1
+ {"version":3,"file":"misc.d.ts","sourceRoot":"","sources":["../../../lib/commands/misc.js"],"names":[],"mappings":"AAGA;;;;;;;;;;;GAWG;AACH,kFARW,MAAM,cAEN,MAAM,UAEN,MAAM,gBAEN,OAAO,iBAWjB;AAED;;;GAGG;AACH,+EAFa,OAAO,CAAC,OAAO,UAAU,EAAE,UAAU,CAAC,CAIlD;AAED;;;;;GAKG;AACH,qFAHW,MAAM,aACN,OAAO,gBAUjB;AAED;;;GAGG;AACH,6EAFa,OAAO,CAAC,MAAM,CAAC,CAM3B;AACD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,iFANW,MAAM,WACN,OAAO,eAAe,EAAE,YAAY,EAAE,cACtC,MAAM,GACL,OAAO,CAAC,GAAG,CAAC,CAcvB;AAED;;;;;;;;;;;;;;;GAeG;AACH,sFALW,MAAM,WACN,MAAM,UACN,MAAM,UACN,MAAM,gBAWhB;AAED;;;;;GAKG;AACH,uFAFa,OAAO,CAAC,MAAM,CAAC,CAM3B;AAED;;;;GAIG;AAEH;;;;;GAKG;AACH,mFAHW,eAAe,iBAUzB;AAED;;GAEG;AACH;;GAMC;;;;;;YA5Ba,MAAO,GAAC,MAAM,GAAC,OAAO"}
@@ -65,7 +65,7 @@ declare class EspressoProxy extends JWProxy {
65
65
  crashed: boolean;
66
66
  exited: boolean;
67
67
  };
68
- proxyCommand(url: any, method: any, body?: null): Promise<any>;
68
+ proxyCommand(url: any, method: any, body?: null): Promise<[import("@appium/types").ProxyResponse<any>, any]>;
69
69
  }
70
70
  import { JWProxy } from 'appium/driver';
71
71
  //# sourceMappingURL=espresso-runner.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"espresso-runner.d.ts","sourceRoot":"","sources":["../../lib/espresso-runner.js"],"names":[],"mappings":";AA4CA;IAoBE;;;;OAIG;IACH,iBAHW,OAAO,eAAe,EAAE,YAAY,SACpC,OAAO,eAAe,EAAE,YAAY,EAoD9C;IAzED,qBAAqB;IACrB,MADW,MAAM,CACZ;IAEL,qBAAqB;IACrB,YADW,MAAM,CACN;IAEX,qBAAqB;IACrB,YADW,MAAM,CACN;IAEX,uCAAuC;IACvC,KADW,OAAO,YAAY,EAAE,GAAG,CAC/B;IAEJ,qBAAqB;IACrB,QADW,MAAM,CACV;IAEP,qBAAqB;IACrB,sBADU,OAAO,CACI;IAcnB,0CAAc;IAUd,uBAA2C;IAC3C,iBAA8D;IAC9D,kBAA2D;IAW3D,sBAA6D;IAC7D,mBAAuC;IACvC,yBAAmD;IAEnD,yBAAwF;IACxF,2BAAuD;IAEvD,yCAAmF;IAIjF;;;;;;aAKE;IAMN,wCASC;IAED;;;OAGG;IACH,+BA6BC;IAED,gCAyBC;IAED,mCAsCC;IAED,yCA0BC;IAED;;;;OAIG;IACH,mCAJW,MAAM,gBACN,OAAO,eAAe,EAAE,YAAY,GAClC,OAAO,CAAC,OAAO,CAAC,CA+C5B;IAED,uCAoGC;IAzEC,2DAAiD;IA2EnD,wCAGC;IAED,+BAcC;CACF;AAtaD,uCAQE;AATF,2BAAqB,+BAA+B,CAAC;AAarD;IAEE;;OAEG;IACH,sBAFU;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC,CAExB;IAErB,+DAQC;CACF;wBA1C+B,eAAe"}
1
+ {"version":3,"file":"espresso-runner.d.ts","sourceRoot":"","sources":["../../lib/espresso-runner.js"],"names":[],"mappings":";AA4CA;IAoBE;;;;OAIG;IACH,iBAHW,OAAO,eAAe,EAAE,YAAY,SACpC,OAAO,eAAe,EAAE,YAAY,EAoD9C;IAzED,qBAAqB;IACrB,MADW,MAAM,CACZ;IAEL,qBAAqB;IACrB,YADW,MAAM,CACN;IAEX,qBAAqB;IACrB,YADW,MAAM,CACN;IAEX,uCAAuC;IACvC,KADW,OAAO,YAAY,EAAE,GAAG,CAC/B;IAEJ,qBAAqB;IACrB,QADW,MAAM,CACV;IAEP,qBAAqB;IACrB,sBADU,OAAO,CACI;IAcnB,0CAAc;IAUd,uBAA2C;IAC3C,iBAA8D;IAC9D,kBAA2D;IAW3D,sBAA6D;IAC7D,mBAAuC;IACvC,yBAAmD;IAEnD,yBAAwF;IACxF,2BAAuD;IAEvD,yCAAmF;IAIjF;;;;;;aAKE;IAMN,wCASC;IAED;;;OAGG;IACH,+BA6BC;IAED,gCAyBC;IAED,mCAsCC;IAED,yCA0BC;IAED;;;;OAIG;IACH,mCAJW,MAAM,gBACN,OAAO,eAAe,EAAE,YAAY,GAClC,OAAO,CAAC,OAAO,CAAC,CA+C5B;IAED,uCAoGC;IAzEC,2DAAiD;IA2EnD,wCAGC;IAED,+BAcC;CACF;AAtaD,uCAQE;AATF,2BAAqB,+BAA+B,CAAC;AAarD;IAEE;;OAEG;IACH,sBAFU;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,OAAO,CAAA;KAAC,CAExB;IAErB,6GAQC;CACF;wBA1C+B,eAAe"}
@@ -2,6 +2,6 @@ package io.appium.espressoserver.lib.helpers
2
2
 
3
3
  // This value is updated automatically by the NPM versioning script
4
4
  // It should be in sync with the NPM module version from package.json
5
- private const val VERSION = "4.1.1"
5
+ private const val VERSION = "4.1.2"
6
6
 
7
7
  fun getEspressoServerVersion() = VERSION
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "appium-espresso-driver",
3
- "version": "4.1.1",
3
+ "version": "4.1.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appium-espresso-driver",
9
- "version": "4.1.1",
9
+ "version": "4.1.2",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "appium-adb": "^12.12.0",
13
- "appium-android-driver": "^10.2.1",
13
+ "appium-android-driver": "^10.2.2",
14
14
  "asyncbox": "^3.0.0",
15
15
  "axios": "^1.7.2",
16
16
  "bluebird": "^3.5.0",
@@ -59,17 +59,17 @@
59
59
  }
60
60
  },
61
61
  "node_modules/@appium/base-driver": {
62
- "version": "9.16.2",
63
- "resolved": "https://registry.npmjs.org/@appium/base-driver/-/base-driver-9.16.2.tgz",
64
- "integrity": "sha512-vuQf9XQKGAMl5d5pM63FOrnRJUSVjw6J5kPXApfnkTJovwyV9SViYptnCB/TcahjX2bHQ+fUka82MWzHKPzpHg==",
62
+ "version": "9.16.3",
63
+ "resolved": "https://registry.npmjs.org/@appium/base-driver/-/base-driver-9.16.3.tgz",
64
+ "integrity": "sha512-+KviEBWMlHoBh/Ezs4bF1uRFw3gBHivljy8yp2dKHvFt4ZZlJo6wxmfmU5fknob0TuRkViwcD2auL64AQLsGAw==",
65
65
  "license": "Apache-2.0",
66
66
  "dependencies": {
67
- "@appium/support": "^6.0.6",
68
- "@appium/types": "^0.25.1",
67
+ "@appium/support": "^6.0.7",
68
+ "@appium/types": "^0.25.2",
69
69
  "@colors/colors": "1.6.0",
70
70
  "async-lock": "1.4.1",
71
71
  "asyncbox": "3.0.0",
72
- "axios": "1.7.9",
72
+ "axios": "1.8.2",
73
73
  "bluebird": "3.7.2",
74
74
  "body-parser": "1.20.3",
75
75
  "express": "4.21.2",
@@ -82,7 +82,7 @@
82
82
  "path-to-regexp": "8.2.0",
83
83
  "serve-favicon": "2.5.0",
84
84
  "source-map-support": "0.5.21",
85
- "type-fest": "4.35.0",
85
+ "type-fest": "4.37.0",
86
86
  "validate.js": "0.13.1"
87
87
  },
88
88
  "engines": {
@@ -94,9 +94,9 @@
94
94
  }
95
95
  },
96
96
  "node_modules/@appium/base-driver/node_modules/axios": {
97
- "version": "1.7.9",
98
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz",
99
- "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",
97
+ "version": "1.8.2",
98
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.2.tgz",
99
+ "integrity": "sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==",
100
100
  "license": "MIT",
101
101
  "dependencies": {
102
102
  "follow-redirects": "^1.15.6",
@@ -135,17 +135,17 @@
135
135
  }
136
136
  },
137
137
  "node_modules/@appium/support": {
138
- "version": "6.0.6",
139
- "resolved": "https://registry.npmjs.org/@appium/support/-/support-6.0.6.tgz",
140
- "integrity": "sha512-qgj1uxHF7Suqi8wdWFBrG12dhLMAthpX973L7JHutM2jneynoIUaKtSXdd6zg0ZG/9clfY0C/06pIQTQljj+Lg==",
138
+ "version": "6.0.7",
139
+ "resolved": "https://registry.npmjs.org/@appium/support/-/support-6.0.7.tgz",
140
+ "integrity": "sha512-3LYvWhquHzlxq2ojvuAmta2tPk68B6oKZ9lMv2lyI6q7mR7FE8hl96Wy+qk9JjGfqJHYRNrrf9rTWr0E//UtQg==",
141
141
  "license": "Apache-2.0",
142
142
  "dependencies": {
143
143
  "@appium/logger": "^1.6.1",
144
- "@appium/tsconfig": "^0.3.4",
145
- "@appium/types": "^0.25.1",
144
+ "@appium/tsconfig": "^0.3.5",
145
+ "@appium/types": "^0.25.2",
146
146
  "@colors/colors": "1.6.0",
147
147
  "archiver": "7.0.1",
148
- "axios": "1.7.9",
148
+ "axios": "1.8.2",
149
149
  "base64-stream": "1.0.0",
150
150
  "bluebird": "3.7.2",
151
151
  "bplist-creator": "0.1.1",
@@ -171,8 +171,8 @@
171
171
  "shell-quote": "1.8.2",
172
172
  "source-map-support": "0.5.21",
173
173
  "supports-color": "8.1.1",
174
- "teen_process": "2.2.3",
175
- "type-fest": "4.35.0",
174
+ "teen_process": "2.3.1",
175
+ "type-fest": "4.37.0",
176
176
  "uuid": "11.1.0",
177
177
  "which": "4.0.0",
178
178
  "yauzl": "3.2.0"
@@ -186,9 +186,9 @@
186
186
  }
187
187
  },
188
188
  "node_modules/@appium/support/node_modules/axios": {
189
- "version": "1.7.9",
190
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz",
191
- "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",
189
+ "version": "1.8.2",
190
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.2.tgz",
191
+ "integrity": "sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==",
192
192
  "license": "MIT",
193
193
  "dependencies": {
194
194
  "follow-redirects": "^1.15.6",
@@ -196,29 +196,13 @@
196
196
  "proxy-from-env": "^1.1.0"
197
197
  }
198
198
  },
199
- "node_modules/@appium/support/node_modules/teen_process": {
200
- "version": "2.2.3",
201
- "resolved": "https://registry.npmjs.org/teen_process/-/teen_process-2.2.3.tgz",
202
- "integrity": "sha512-8L540OalWH83qc6LHV5VMr0DjdP7KWUHQwTOImtWaG2ElW8BvLTh6M9871oGmmpOMb2BpOJQn2+09ZHWYsdTUA==",
203
- "license": "Apache-2.0",
204
- "dependencies": {
205
- "bluebird": "^3.7.2",
206
- "lodash": "^4.17.21",
207
- "shell-quote": "^1.8.1",
208
- "source-map-support": "^0.x"
209
- },
210
- "engines": {
211
- "node": "^16.13.0 || >=18.0.0",
212
- "npm": ">=8"
213
- }
214
- },
215
199
  "node_modules/@appium/tsconfig": {
216
- "version": "0.3.4",
217
- "resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-0.3.4.tgz",
218
- "integrity": "sha512-tX719/ekarAWmJb+AaG6//8+3qQITshTgTZor0EbdEwA2KG3bGPwMIoCp10np6/qFr+sMZC0CbuKJruHSCDhhw==",
200
+ "version": "0.3.5",
201
+ "resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-0.3.5.tgz",
202
+ "integrity": "sha512-T8G5oe3is0Gn56PkeYjXracc0CS26L/obVuX7PHwEDcn1UKiJXFa2MYY73dRAWKJumAIIsJjssNUu6VttdWZWw==",
219
203
  "license": "Apache-2.0",
220
204
  "dependencies": {
221
- "@tsconfig/node14": "14.1.2"
205
+ "@tsconfig/node14": "14.1.3"
222
206
  },
223
207
  "engines": {
224
208
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0",
@@ -226,15 +210,15 @@
226
210
  }
227
211
  },
228
212
  "node_modules/@appium/types": {
229
- "version": "0.25.1",
230
- "resolved": "https://registry.npmjs.org/@appium/types/-/types-0.25.1.tgz",
231
- "integrity": "sha512-2Lu5qwFNQa+iPw98XdB5/7tXKO7dugZHXfAsF050wgJkJJ4kDemVFJ4yr1YqM7DYmgqZnt+k0EfzshLODCHXTA==",
213
+ "version": "0.25.2",
214
+ "resolved": "https://registry.npmjs.org/@appium/types/-/types-0.25.2.tgz",
215
+ "integrity": "sha512-BQ/AaHJzFzJPjZp4GElq3CMT83LdaJwO4i+azdLNO3jZKyMoX4hF/LoiiS/cOyYOXpirxHjSHmHuNOeusiVNVQ==",
232
216
  "license": "Apache-2.0",
233
217
  "dependencies": {
234
218
  "@appium/logger": "^1.6.1",
235
219
  "@appium/schema": "^0.8.1",
236
- "@appium/tsconfig": "^0.3.4",
237
- "type-fest": "4.35.0"
220
+ "@appium/tsconfig": "^0.3.5",
221
+ "type-fest": "4.37.0"
238
222
  },
239
223
  "engines": {
240
224
  "node": "^14.17.0 || ^16.13.0 || >=18.0.0",
@@ -368,9 +352,9 @@
368
352
  }
369
353
  },
370
354
  "node_modules/@tsconfig/node14": {
371
- "version": "14.1.2",
372
- "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-14.1.2.tgz",
373
- "integrity": "sha512-1vncsbfCZ3TBLPxesRYz02Rn7SNJfbLoDVkcZ7F/ixOV6nwxwgdhD1mdPcc5YQ413qBJ8CvMxXMFfJ7oawjo7Q==",
355
+ "version": "14.1.3",
356
+ "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-14.1.3.tgz",
357
+ "integrity": "sha512-ZC9/Kq2c0+4l8sDx/z3YQyP7+OSMTQr/xxJaSFHLGhGL0t9bPjuX1Zwmg3C2VB5KWGgI8MXMRShXRJroy4utGA==",
374
358
  "license": "MIT"
375
359
  },
376
360
  "node_modules/@types/normalize-package-data": {
@@ -463,9 +447,9 @@
463
447
  }
464
448
  },
465
449
  "node_modules/appium-android-driver": {
466
- "version": "10.2.1",
467
- "resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-10.2.1.tgz",
468
- "integrity": "sha512-zRi8tSTvaqh8r14eD8doC/NlGQNdcwXEbMwWhInBGonhbn7HPBgtp9iSFXfStfB0PTJsJnyItuTJDC3iXwoDxw==",
450
+ "version": "10.2.2",
451
+ "resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-10.2.2.tgz",
452
+ "integrity": "sha512-NgjmxedfbUWlwO7AFK00vKedEOuXpfaxXO6KYDVhtL1gIkiLGhTWt3YByJGT6yEpdaKJ3/21ieQR2B/LkcKsZw==",
469
453
  "license": "Apache-2.0",
470
454
  "dependencies": {
471
455
  "@appium/support": "^6.0.0",
@@ -496,9 +480,9 @@
496
480
  }
497
481
  },
498
482
  "node_modules/appium-chromedriver": {
499
- "version": "7.0.8",
500
- "resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-7.0.8.tgz",
501
- "integrity": "sha512-X2MfK/xMVoUHFuQHSTuJaEF/ZGmP0tGc/5P6AzCYWdmOUmloxEXTeq+jkodh6/5MAanOcnnI3bhBpqGvwCjqjQ==",
483
+ "version": "7.0.9",
484
+ "resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-7.0.9.tgz",
485
+ "integrity": "sha512-7T0HTszqwz4jQbtZpZ669BQYgtLcEucyTIEmHnv72pvmshrwNr/KELouRkY7VcazzW88w+bpcYh3/3bzs9Si2w==",
502
486
  "license": "Apache-2.0",
503
487
  "dependencies": {
504
488
  "@appium/base-driver": "^9.1.0",
@@ -609,9 +593,9 @@
609
593
  "license": "MIT"
610
594
  },
611
595
  "node_modules/axios": {
612
- "version": "1.8.2",
613
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.2.tgz",
614
- "integrity": "sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==",
596
+ "version": "1.8.3",
597
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.3.tgz",
598
+ "integrity": "sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A==",
615
599
  "license": "MIT",
616
600
  "dependencies": {
617
601
  "follow-redirects": "^1.15.6",
@@ -3659,9 +3643,9 @@
3659
3643
  "license": "0BSD"
3660
3644
  },
3661
3645
  "node_modules/type-fest": {
3662
- "version": "4.35.0",
3663
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.35.0.tgz",
3664
- "integrity": "sha512-2/AwEFQDFEy30iOLjrvHDIH7e4HEWH+f1Yl1bI5XMqzuoCUqwYCdxachgsgv0og/JdVZUhbfjcJAoHj5L1753A==",
3646
+ "version": "4.37.0",
3647
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.37.0.tgz",
3648
+ "integrity": "sha512-S/5/0kFftkq27FPNye0XM1e2NsnoD/3FS+pBmbjmmtLT6I+i344KoOf7pvXreaFsDamWeaJX55nczA1m5PsBDg==",
3665
3649
  "license": "(MIT OR CC0-1.0)",
3666
3650
  "engines": {
3667
3651
  "node": ">=16"
@@ -3928,9 +3912,9 @@
3928
3912
  "license": "ISC"
3929
3913
  },
3930
3914
  "node_modules/ws": {
3931
- "version": "8.18.0",
3932
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz",
3933
- "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==",
3915
+ "version": "8.18.1",
3916
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz",
3917
+ "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==",
3934
3918
  "license": "MIT",
3935
3919
  "engines": {
3936
3920
  "node": ">=10.0.0"
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "automated testing",
8
8
  "android"
9
9
  ],
10
- "version": "4.1.1",
10
+ "version": "4.1.2",
11
11
  "author": "Appium Contributors",
12
12
  "license": "Apache-2.0",
13
13
  "repository": {
@@ -75,7 +75,7 @@
75
75
  ],
76
76
  "dependencies": {
77
77
  "appium-adb": "^12.12.0",
78
- "appium-android-driver": "^10.2.1",
78
+ "appium-android-driver": "^10.2.2",
79
79
  "asyncbox": "^3.0.0",
80
80
  "axios": "^1.7.2",
81
81
  "bluebird": "^3.5.0",