appium-espresso-driver 3.4.0 → 3.5.1

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,15 @@
1
+ ## [3.5.1](https://github.com/appium/appium-espresso-driver/compare/v3.5.0...v3.5.1) (2024-11-11)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * bump adb to include supporting activities with unicode chars ([#1032](https://github.com/appium/appium-espresso-driver/issues/1032)) ([c59abb7](https://github.com/appium/appium-espresso-driver/commit/c59abb75e2a629c040b96c385e74b55fd4e3d401))
6
+
7
+ ## [3.5.0](https://github.com/appium/appium-espresso-driver/compare/v3.4.0...v3.5.0) (2024-09-23)
8
+
9
+ ### Features
10
+
11
+ * Document mobile geolocation APIs ([#1029](https://github.com/appium/appium-espresso-driver/issues/1029)) ([a288990](https://github.com/appium/appium-espresso-driver/commit/a288990f5d90720969d2be25c782e883b7a071c7))
12
+
1
13
  ## [3.4.0](https://github.com/appium/appium-espresso-driver/compare/v3.3.1...v3.4.0) (2024-09-17)
2
14
 
3
15
  ### Features
package/README.md CHANGED
@@ -817,6 +817,37 @@ Name | Type | Required | Description | Example
817
817
  --- | --- | --- | --- | ---
818
818
  timeoutMs | number | no | The maximum number of milliseconds to block until GPS cache is refreshed. If the API call does not receive a confirmation about successful cache refresh within this timeout then an error is thrown. Providing zero or a negative value to it skips waiting completely and does not check for any errors. 20000 ms by default. | 60000
819
819
 
820
+ ### mobile: setGeolocation
821
+
822
+ Sets emulated geolocation coordinates on the device under test.
823
+
824
+ #### Arguments
825
+
826
+ Name | Type | Required | Description | Example
827
+ --- | --- | --- | --- | ---
828
+ latitude | number | yes | [Latitude](https://en.wikipedia.org/wiki/Latitude) value | 32.456
829
+ longitude | number | yes | [longitude](https://en.wikipedia.org/wiki/Longitude) value | 32.456
830
+ altitude | number | no | [Altitude](https://en.wikipedia.org/wiki/Altitude) value. Zero by default | 5.678
831
+
832
+ ### mobile: getGeolocation
833
+
834
+ Retrieves current geolocation coordinates from the device under test. If coordinates are mocked/emulated
835
+ then these coordinates would be returned.
836
+
837
+ #### Returned Result
838
+
839
+ A map with the following entries:
840
+
841
+ Name | Type | Description | Example
842
+ --- | --- | --- | ---
843
+ latitude | number | [Latitude](https://en.wikipedia.org/wiki/Latitude) value | 32.456
844
+ longitude | number | [longitude](https://en.wikipedia.org/wiki/Longitude) value | 32.456
845
+ altitude | number | [Altitude](https://en.wikipedia.org/wiki/Altitude) value | 5.678
846
+
847
+ ### mobile: resetGeolocation
848
+
849
+ Resets mocked geolocation provider to the default/system one. Only works for real devices.
850
+
820
851
  ### mobile: pullFile
821
852
 
822
853
  Pulls a remote file from the device.
@@ -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 = "3.4.0"
5
+ private const val VERSION = "3.5.1"
6
6
 
7
7
  fun getEspressoServerVersion() = VERSION
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "appium-espresso-driver",
3
- "version": "3.4.0",
3
+ "version": "3.5.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "appium-espresso-driver",
9
- "version": "3.4.0",
9
+ "version": "3.5.1",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
- "appium-adb": "^12.4.0",
13
- "appium-android-driver": "^9.11.0",
12
+ "appium-adb": "^12.5.2",
13
+ "appium-android-driver": "^9.12.3",
14
14
  "asyncbox": "^3.0.0",
15
15
  "axios": "^1.7.2",
16
16
  "bluebird": "^3.5.0",
@@ -60,18 +60,18 @@
60
60
  }
61
61
  },
62
62
  "node_modules/@appium/base-driver": {
63
- "version": "9.11.4",
64
- "resolved": "https://registry.npmjs.org/@appium/base-driver/-/base-driver-9.11.4.tgz",
65
- "integrity": "sha512-mUqlA9pCr9AHdCjoABcCEeq2IKUVyYrXyQ6vFF5lZZHyZ4AtTzodUQZNi+3tS3FDuEVy9wRT1Q1RB+xgBZ0Iog==",
63
+ "version": "9.12.1",
64
+ "resolved": "https://registry.npmjs.org/@appium/base-driver/-/base-driver-9.12.1.tgz",
65
+ "integrity": "sha512-lUOI/r0jrT1EVR16D31OH2m2FgEQAfYzJTsuDCohqI9caA8vHd4ChkWELnhMG/PdfhigxUoIpyvTlImG4XtbVQ==",
66
66
  "license": "Apache-2.0",
67
67
  "dependencies": {
68
- "@appium/support": "^5.1.4",
69
- "@appium/types": "^0.21.3",
68
+ "@appium/support": "^5.1.6",
69
+ "@appium/types": "^0.22.0",
70
70
  "@colors/colors": "1.6.0",
71
71
  "@types/async-lock": "1.4.2",
72
72
  "@types/bluebird": "3.5.42",
73
- "@types/express": "4.17.21",
74
- "@types/lodash": "4.17.7",
73
+ "@types/express": "5.0.0",
74
+ "@types/lodash": "4.17.12",
75
75
  "@types/method-override": "0.0.35",
76
76
  "@types/serve-favicon": "2.5.7",
77
77
  "async-lock": "1.4.1",
@@ -79,13 +79,13 @@
79
79
  "axios": "1.7.7",
80
80
  "bluebird": "3.7.2",
81
81
  "body-parser": "1.20.3",
82
- "express": "4.21.0",
82
+ "express": "4.21.1",
83
83
  "http-status-codes": "2.3.0",
84
84
  "lodash": "4.17.21",
85
85
  "lru-cache": "10.4.3",
86
86
  "method-override": "3.0.0",
87
87
  "morgan": "1.10.0",
88
- "path-to-regexp": "8.1.0",
88
+ "path-to-regexp": "8.2.0",
89
89
  "serve-favicon": "2.5.0",
90
90
  "source-map-support": "0.5.21",
91
91
  "type-fest": "4.26.1",
@@ -99,6 +99,12 @@
99
99
  "spdy": "4.0.2"
100
100
  }
101
101
  },
102
+ "node_modules/@appium/base-driver/node_modules/@types/lodash": {
103
+ "version": "4.17.12",
104
+ "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.12.tgz",
105
+ "integrity": "sha512-sviUmCE8AYdaF/KIHLDJBQgeYzPBI0vf/17NaYehBJfYD1j6/L95Slh07NlyK2iNyBNaEkb3En2jRt+a8y3xZQ==",
106
+ "license": "MIT"
107
+ },
102
108
  "node_modules/@appium/logger": {
103
109
  "version": "1.6.1",
104
110
  "resolved": "https://registry.npmjs.org/@appium/logger/-/logger-1.6.1.tgz",
@@ -116,9 +122,9 @@
116
122
  }
117
123
  },
118
124
  "node_modules/@appium/schema": {
119
- "version": "0.6.1",
120
- "resolved": "https://registry.npmjs.org/@appium/schema/-/schema-0.6.1.tgz",
121
- "integrity": "sha512-tk4ytYaQQ94h5pqz97V2yKqZAmGnBd4ld50ZEw4Tt8QL2VBXOuTuizKDH+AMpyyL6hn/+dMFtcSVjy19iKrsUg==",
125
+ "version": "0.7.0",
126
+ "resolved": "https://registry.npmjs.org/@appium/schema/-/schema-0.7.0.tgz",
127
+ "integrity": "sha512-UhozvcSj8aSeZ0oo8JtT8EoowLpjn7V7xahsIN5bRGeir6+XzqRpjxytKASvnKPoPK0Df7oqCdzJOI0iLa62ZA==",
122
128
  "license": "Apache-2.0",
123
129
  "dependencies": {
124
130
  "@types/json-schema": "7.0.15",
@@ -131,16 +137,16 @@
131
137
  }
132
138
  },
133
139
  "node_modules/@appium/support": {
134
- "version": "5.1.4",
135
- "resolved": "https://registry.npmjs.org/@appium/support/-/support-5.1.4.tgz",
136
- "integrity": "sha512-0jNhtOfSD3gYkSxcSOP3SuTZVUFouq1fTa4ajb91/pNPkvv32IAXdNI8Lg0hz4fjMohw6R/5c2Y6NYjqWQJRwQ==",
140
+ "version": "5.1.6",
141
+ "resolved": "https://registry.npmjs.org/@appium/support/-/support-5.1.6.tgz",
142
+ "integrity": "sha512-BtWnVkIGUOHLDWkuBKSm15C5t2g5qv2+NOguAJ6ujPwDn2VLL86usk82DZF3IJ3Yujn0IrLGUrDLvtlG/uqXUg==",
137
143
  "license": "Apache-2.0",
138
144
  "dependencies": {
139
145
  "@appium/logger": "^1.6.1",
140
146
  "@appium/tsconfig": "^0.3.3",
141
- "@appium/types": "^0.21.3",
147
+ "@appium/types": "^0.22.0",
142
148
  "@colors/colors": "1.6.0",
143
- "@types/archiver": "6.0.2",
149
+ "@types/archiver": "6.0.3",
144
150
  "@types/base64-stream": "1.0.5",
145
151
  "@types/find-root": "1.1.4",
146
152
  "@types/jsftp": "2.1.5",
@@ -161,7 +167,7 @@
161
167
  "bluebird": "3.7.2",
162
168
  "bplist-creator": "0.1.1",
163
169
  "bplist-parser": "0.3.2",
164
- "form-data": "4.0.0",
170
+ "form-data": "4.0.1",
165
171
  "get-stream": "6.0.1",
166
172
  "glob": "10.4.5",
167
173
  "jsftp": "2.1.3",
@@ -211,15 +217,15 @@
211
217
  }
212
218
  },
213
219
  "node_modules/@appium/types": {
214
- "version": "0.21.3",
215
- "resolved": "https://registry.npmjs.org/@appium/types/-/types-0.21.3.tgz",
216
- "integrity": "sha512-jjAv7uWnS9AzV5u2/m63whNQsPvjuyJGXsl/NPy4CQ7z6/wt+BG7GwXP64hmRpwNvA29va7T0DIPQ0kpAa9Dzw==",
220
+ "version": "0.22.0",
221
+ "resolved": "https://registry.npmjs.org/@appium/types/-/types-0.22.0.tgz",
222
+ "integrity": "sha512-2EWAN9Mnjh0ob0n/gTQSpqcflFivBPF/Bh4MLL2Fz09GoiiPCDeILKzdutGo6ZQH9PMEjDd7W//o8b3GwzNfhg==",
217
223
  "license": "Apache-2.0",
218
224
  "dependencies": {
219
225
  "@appium/logger": "^1.6.1",
220
- "@appium/schema": "^0.6.1",
226
+ "@appium/schema": "^0.7.0",
221
227
  "@appium/tsconfig": "^0.3.3",
222
- "@types/express": "4.17.21",
228
+ "@types/express": "5.0.0",
223
229
  "@types/ws": "8.5.12",
224
230
  "type-fest": "4.26.1"
225
231
  },
@@ -229,12 +235,13 @@
229
235
  }
230
236
  },
231
237
  "node_modules/@babel/code-frame": {
232
- "version": "7.24.7",
233
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz",
234
- "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==",
238
+ "version": "7.26.2",
239
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
240
+ "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
235
241
  "license": "MIT",
236
242
  "dependencies": {
237
- "@babel/highlight": "^7.24.7",
243
+ "@babel/helper-validator-identifier": "^7.25.9",
244
+ "js-tokens": "^4.0.0",
238
245
  "picocolors": "^1.0.0"
239
246
  },
240
247
  "engines": {
@@ -242,100 +249,14 @@
242
249
  }
243
250
  },
244
251
  "node_modules/@babel/helper-validator-identifier": {
245
- "version": "7.24.7",
246
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz",
247
- "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==",
248
- "license": "MIT",
249
- "engines": {
250
- "node": ">=6.9.0"
251
- }
252
- },
253
- "node_modules/@babel/highlight": {
254
- "version": "7.24.7",
255
- "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz",
256
- "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==",
252
+ "version": "7.25.9",
253
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
254
+ "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
257
255
  "license": "MIT",
258
- "dependencies": {
259
- "@babel/helper-validator-identifier": "^7.24.7",
260
- "chalk": "^2.4.2",
261
- "js-tokens": "^4.0.0",
262
- "picocolors": "^1.0.0"
263
- },
264
256
  "engines": {
265
257
  "node": ">=6.9.0"
266
258
  }
267
259
  },
268
- "node_modules/@babel/highlight/node_modules/ansi-styles": {
269
- "version": "3.2.1",
270
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
271
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
272
- "license": "MIT",
273
- "dependencies": {
274
- "color-convert": "^1.9.0"
275
- },
276
- "engines": {
277
- "node": ">=4"
278
- }
279
- },
280
- "node_modules/@babel/highlight/node_modules/chalk": {
281
- "version": "2.4.2",
282
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
283
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
284
- "license": "MIT",
285
- "dependencies": {
286
- "ansi-styles": "^3.2.1",
287
- "escape-string-regexp": "^1.0.5",
288
- "supports-color": "^5.3.0"
289
- },
290
- "engines": {
291
- "node": ">=4"
292
- }
293
- },
294
- "node_modules/@babel/highlight/node_modules/color-convert": {
295
- "version": "1.9.3",
296
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
297
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
298
- "license": "MIT",
299
- "dependencies": {
300
- "color-name": "1.1.3"
301
- }
302
- },
303
- "node_modules/@babel/highlight/node_modules/color-name": {
304
- "version": "1.1.3",
305
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
306
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
307
- "license": "MIT"
308
- },
309
- "node_modules/@babel/highlight/node_modules/escape-string-regexp": {
310
- "version": "1.0.5",
311
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
312
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
313
- "license": "MIT",
314
- "engines": {
315
- "node": ">=0.8.0"
316
- }
317
- },
318
- "node_modules/@babel/highlight/node_modules/has-flag": {
319
- "version": "3.0.0",
320
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
321
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
322
- "license": "MIT",
323
- "engines": {
324
- "node": ">=4"
325
- }
326
- },
327
- "node_modules/@babel/highlight/node_modules/supports-color": {
328
- "version": "5.5.0",
329
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
330
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
331
- "license": "MIT",
332
- "dependencies": {
333
- "has-flag": "^3.0.0"
334
- },
335
- "engines": {
336
- "node": ">=4"
337
- }
338
- },
339
260
  "node_modules/@colors/colors": {
340
261
  "version": "1.6.0",
341
262
  "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
@@ -400,18 +321,6 @@
400
321
  "node": ">=12"
401
322
  }
402
323
  },
403
- "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
404
- "version": "6.1.0",
405
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
406
- "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
407
- "license": "MIT",
408
- "engines": {
409
- "node": ">=12"
410
- },
411
- "funding": {
412
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
413
- }
414
- },
415
324
  "node_modules/@isaacs/cliui/node_modules/ansi-styles": {
416
325
  "version": "6.2.1",
417
326
  "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
@@ -473,9 +382,9 @@
473
382
  "license": "MIT"
474
383
  },
475
384
  "node_modules/@types/archiver": {
476
- "version": "6.0.2",
477
- "resolved": "https://registry.npmjs.org/@types/archiver/-/archiver-6.0.2.tgz",
478
- "integrity": "sha512-KmROQqbQzKGuaAbmK+ZcytkJ51+YqDa7NmbXjmtC5YBLSyQYo21YaUnQ3HbaPFKL1ooo6RQ6OPYPIDyxfpDDXw==",
385
+ "version": "6.0.3",
386
+ "resolved": "https://registry.npmjs.org/@types/archiver/-/archiver-6.0.3.tgz",
387
+ "integrity": "sha512-a6wUll6k3zX6qs5KlxIggs1P1JcYJaTCx2gnlr+f0S1yd2DoaEwoIK10HmBaLnZwWneBz+JBm0dwcZu0zECBcQ==",
479
388
  "license": "MIT",
480
389
  "dependencies": {
481
390
  "@types/readdir-glob": "*"
@@ -522,21 +431,21 @@
522
431
  }
523
432
  },
524
433
  "node_modules/@types/express": {
525
- "version": "4.17.21",
526
- "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz",
527
- "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==",
434
+ "version": "5.0.0",
435
+ "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.0.tgz",
436
+ "integrity": "sha512-DvZriSMehGHL1ZNLzi6MidnsDhUZM/x2pRdDIKdwbUNqqwHxMlRdkxtn6/EPKyqKpHqTl/4nRZsRNLpZxZRpPQ==",
528
437
  "license": "MIT",
529
438
  "dependencies": {
530
439
  "@types/body-parser": "*",
531
- "@types/express-serve-static-core": "^4.17.33",
440
+ "@types/express-serve-static-core": "^5.0.0",
532
441
  "@types/qs": "*",
533
442
  "@types/serve-static": "*"
534
443
  }
535
444
  },
536
445
  "node_modules/@types/express-serve-static-core": {
537
- "version": "4.19.5",
538
- "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz",
539
- "integrity": "sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==",
446
+ "version": "5.0.1",
447
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.1.tgz",
448
+ "integrity": "sha512-CRICJIl0N5cXDONAdlTv5ShATZ4HEwk6kDDIW2/w9qOWKg+NU/5F8wYRWCrONad0/UKkloNSmmyN/wX4rtpbVA==",
540
449
  "license": "MIT",
541
450
  "dependencies": {
542
451
  "@types/node": "*",
@@ -587,12 +496,6 @@
587
496
  "integrity": "sha512-Q8oFIHJHr+htLrTXN2FuZfg+WXVHQRwU/hC2GpUu+Q8e3FUM9EDkS2pE3R2AO1ZGu56f479ybdMCNF1DAu8cAQ==",
588
497
  "license": "MIT"
589
498
  },
590
- "node_modules/@types/lodash": {
591
- "version": "4.17.7",
592
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.7.tgz",
593
- "integrity": "sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==",
594
- "license": "MIT"
595
- },
596
499
  "node_modules/@types/method-override": {
597
500
  "version": "0.0.35",
598
501
  "resolved": "https://registry.npmjs.org/@types/method-override/-/method-override-0.0.35.tgz",
@@ -624,9 +527,9 @@
624
527
  }
625
528
  },
626
529
  "node_modules/@types/node": {
627
- "version": "20.16.5",
628
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.16.5.tgz",
629
- "integrity": "sha512-VwYCweNo3ERajwy0IUlqqcyZ8/A7Zwa9ZP3MnENWcB11AejO+tLy3pu850goUW2FC/IJMdZUfKpX/yxL1gymCA==",
530
+ "version": "20.17.6",
531
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.6.tgz",
532
+ "integrity": "sha512-VEI7OdvK2wP7XHnsuXbAJnEpEkF6NjSN45QJlL4VGqZSXsnicpesdTWsg9RISeSdYd3yeRj/y3k5KGjUXYnFwQ==",
630
533
  "license": "MIT",
631
534
  "dependencies": {
632
535
  "undici-types": "~6.19.2"
@@ -645,9 +548,9 @@
645
548
  "license": "MIT"
646
549
  },
647
550
  "node_modules/@types/qs": {
648
- "version": "6.9.16",
649
- "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.16.tgz",
650
- "integrity": "sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==",
551
+ "version": "6.9.17",
552
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.17.tgz",
553
+ "integrity": "sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==",
651
554
  "license": "MIT"
652
555
  },
653
556
  "node_modules/@types/range-parser": {
@@ -744,12 +647,12 @@
744
647
  }
745
648
  },
746
649
  "node_modules/@xmldom/xmldom": {
747
- "version": "0.9.2",
748
- "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.2.tgz",
749
- "integrity": "sha512-afP3lpLtalPxgNGU4bxlsru4wSDsZwdSFKnHs6PR0q3KIEWWcAlBqAdx4aWlVtP1gV1FBWlJ3d0MgaRRdj/ucA==",
650
+ "version": "0.9.5",
651
+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.5.tgz",
652
+ "integrity": "sha512-6g1EwSs8cr8JhP1iBxzyVAWM6BIDvx9Y3FZRIQiMDzgG43Pxi8YkWOZ0nQj2NHgNzgXDZbJewFx/n+YAvMZrfg==",
750
653
  "license": "MIT",
751
654
  "engines": {
752
- "node": ">=14.0.0"
655
+ "node": ">=14.6"
753
656
  }
754
657
  },
755
658
  "node_modules/abort-controller": {
@@ -778,12 +681,15 @@
778
681
  }
779
682
  },
780
683
  "node_modules/ansi-regex": {
781
- "version": "5.0.1",
782
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
783
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
684
+ "version": "6.1.0",
685
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
686
+ "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
784
687
  "license": "MIT",
785
688
  "engines": {
786
- "node": ">=8"
689
+ "node": ">=12"
690
+ },
691
+ "funding": {
692
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
787
693
  }
788
694
  },
789
695
  "node_modules/ansi-styles": {
@@ -802,9 +708,9 @@
802
708
  }
803
709
  },
804
710
  "node_modules/appium-adb": {
805
- "version": "12.6.0",
806
- "resolved": "https://registry.npmjs.org/appium-adb/-/appium-adb-12.6.0.tgz",
807
- "integrity": "sha512-QLgzpIILx17qdOGKcTfJJBVkGNxTbVbq9VnyXAzhPdRI9SLfCIu6PMXtv2Capp5mW1/WqWgCcQXuhybyMLQC8A==",
711
+ "version": "12.7.0",
712
+ "resolved": "https://registry.npmjs.org/appium-adb/-/appium-adb-12.7.0.tgz",
713
+ "integrity": "sha512-+IhWiYJ8CujfLFY4O985yJVFkJbiMa7mJX0vbIB7lZToUKHj7YzW5v4MYfFObgiRjhppkcP/o4w6spmFexlmEg==",
808
714
  "license": "Apache-2.0",
809
715
  "dependencies": {
810
716
  "@appium/support": "^5.0.3",
@@ -824,14 +730,14 @@
824
730
  }
825
731
  },
826
732
  "node_modules/appium-android-driver": {
827
- "version": "9.11.0",
828
- "resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-9.11.0.tgz",
829
- "integrity": "sha512-2ELrU5lzW2Kd1+qkDd3ULxGHYBDDVTZZdJszchhg/kjG1gUBJOXGwTN06t/NEehu57G6r9KgaZw0F5lCjqIePg==",
733
+ "version": "9.12.3",
734
+ "resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-9.12.3.tgz",
735
+ "integrity": "sha512-tGYP41rjqRn/qh0YXbX1NQK7XslnEV8ZnvfUZrS+bgZwHO64KX6qPZWAfnXC4C11n7eyy5XrL0HU9PLe2jfwSA==",
830
736
  "license": "Apache-2.0",
831
737
  "dependencies": {
832
738
  "@appium/support": "^5.0.3",
833
739
  "@colors/colors": "^1.6.0",
834
- "appium-adb": "^12.5.2",
740
+ "appium-adb": "^12.7.0",
835
741
  "appium-chromedriver": "^6.0.1",
836
742
  "asyncbox": "^3.0.0",
837
743
  "axios": "^1.x",
@@ -857,9 +763,9 @@
857
763
  }
858
764
  },
859
765
  "node_modules/appium-android-driver/node_modules/appium-chromedriver": {
860
- "version": "6.0.1",
861
- "resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-6.0.1.tgz",
862
- "integrity": "sha512-oMvuvmrNgWd6RasqMmkZDibeFyBDPwbIzKXtjzoNtQ7ccTnN5N7dPXlNQjG/p6xvkTtSu2dn0hJETdN9pAurZA==",
766
+ "version": "6.1.4",
767
+ "resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-6.1.4.tgz",
768
+ "integrity": "sha512-6s289vPkP7kfftMG/o/bCK08lLEwqxErfBQYM5lY1x7H0Asy7xusXBpOuIuZZbqolVRUFu+EBTTJWDuXiNXgqg==",
863
769
  "license": "Apache-2.0",
864
770
  "dependencies": {
865
771
  "@appium/base-driver": "^9.1.0",
@@ -981,9 +887,9 @@
981
887
  }
982
888
  },
983
889
  "node_modules/b4a": {
984
- "version": "1.6.6",
985
- "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz",
986
- "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==",
890
+ "version": "1.6.7",
891
+ "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz",
892
+ "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==",
987
893
  "license": "Apache-2.0"
988
894
  },
989
895
  "node_modules/balanced-match": {
@@ -993,9 +899,9 @@
993
899
  "license": "MIT"
994
900
  },
995
901
  "node_modules/bare-events": {
996
- "version": "2.4.2",
997
- "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.4.2.tgz",
998
- "integrity": "sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==",
902
+ "version": "2.5.0",
903
+ "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.0.tgz",
904
+ "integrity": "sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==",
999
905
  "license": "Apache-2.0",
1000
906
  "optional": true
1001
907
  },
@@ -1371,9 +1277,9 @@
1371
1277
  }
1372
1278
  },
1373
1279
  "node_modules/cookie": {
1374
- "version": "0.6.0",
1375
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
1376
- "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
1280
+ "version": "0.7.1",
1281
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
1282
+ "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
1377
1283
  "license": "MIT",
1378
1284
  "engines": {
1379
1285
  "node": ">= 0.6"
@@ -1424,9 +1330,9 @@
1424
1330
  "license": "MIT"
1425
1331
  },
1426
1332
  "node_modules/cross-spawn": {
1427
- "version": "7.0.3",
1428
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
1429
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
1333
+ "version": "7.0.5",
1334
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz",
1335
+ "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==",
1430
1336
  "license": "MIT",
1431
1337
  "dependencies": {
1432
1338
  "path-key": "^3.1.0",
@@ -1645,9 +1551,9 @@
1645
1551
  }
1646
1552
  },
1647
1553
  "node_modules/express": {
1648
- "version": "4.21.0",
1649
- "resolved": "https://registry.npmjs.org/express/-/express-4.21.0.tgz",
1650
- "integrity": "sha512-VqcNGcj/Id5ZT1LZ/cfihi3ttTn+NJmkli2eZADigjq29qTlWi/hAQ43t/VLPq8+UX06FCEx3ByOYet6ZFblng==",
1554
+ "version": "4.21.1",
1555
+ "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz",
1556
+ "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==",
1651
1557
  "license": "MIT",
1652
1558
  "dependencies": {
1653
1559
  "accepts": "~1.3.8",
@@ -1655,7 +1561,7 @@
1655
1561
  "body-parser": "1.20.3",
1656
1562
  "content-disposition": "0.5.4",
1657
1563
  "content-type": "~1.0.4",
1658
- "cookie": "0.6.0",
1564
+ "cookie": "0.7.1",
1659
1565
  "cookie-signature": "1.0.6",
1660
1566
  "debug": "2.6.9",
1661
1567
  "depd": "2.0.0",
@@ -1811,9 +1717,9 @@
1811
1717
  }
1812
1718
  },
1813
1719
  "node_modules/form-data": {
1814
- "version": "4.0.0",
1815
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz",
1816
- "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==",
1720
+ "version": "4.0.1",
1721
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz",
1722
+ "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==",
1817
1723
  "license": "MIT",
1818
1724
  "dependencies": {
1819
1725
  "asynckit": "^0.4.0",
@@ -2176,9 +2082,9 @@
2176
2082
  }
2177
2083
  },
2178
2084
  "node_modules/io.appium.settings": {
2179
- "version": "5.12.13",
2180
- "resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-5.12.13.tgz",
2181
- "integrity": "sha512-y0m5E4mWvnVPMTgPHwJfRDiYNTQr8F8Tv+f+FaEImQ8X+/jl+1irRHS/nn+62euiKCY1cL/1LiVIYku2os4V5w==",
2085
+ "version": "5.12.17",
2086
+ "resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-5.12.17.tgz",
2087
+ "integrity": "sha512-yUmAO4x7AkYmHuEorSe7sGc7Q6JR7/JblHHbwkHRug66jWK7ihk+5esOy6XFyIefdVUp+zGXcYDYx40cqlUW8Q==",
2182
2088
  "license": "Apache-2.0",
2183
2089
  "dependencies": {
2184
2090
  "@appium/logger": "^1.3.0",
@@ -2619,9 +2525,9 @@
2619
2525
  }
2620
2526
  },
2621
2527
  "node_modules/moment-timezone": {
2622
- "version": "0.5.45",
2623
- "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.45.tgz",
2624
- "integrity": "sha512-HIWmqA86KcmCAhnMAN0wuDOARV/525R2+lOLotuGFzn4HO+FH+/645z2wx0Dt3iDv6/p61SIvKnDstISainhLQ==",
2528
+ "version": "0.5.46",
2529
+ "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.46.tgz",
2530
+ "integrity": "sha512-ZXm9b36esbe7OmdABqIWJuBBiLLwAjrN7CE+7sYdCCx82Nabt1wHDj8TVseS59QIlfFPbOoiBPm6ca9BioG4hw==",
2625
2531
  "license": "MIT",
2626
2532
  "dependencies": {
2627
2533
  "moment": "^2.29.4"
@@ -2794,9 +2700,9 @@
2794
2700
  }
2795
2701
  },
2796
2702
  "node_modules/object-inspect": {
2797
- "version": "1.13.2",
2798
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz",
2799
- "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==",
2703
+ "version": "1.13.3",
2704
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
2705
+ "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
2800
2706
  "license": "MIT",
2801
2707
  "engines": {
2802
2708
  "node": ">= 0.4"
@@ -2895,9 +2801,9 @@
2895
2801
  }
2896
2802
  },
2897
2803
  "node_modules/package-json-from-dist": {
2898
- "version": "1.0.0",
2899
- "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz",
2900
- "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==",
2804
+ "version": "1.0.1",
2805
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
2806
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
2901
2807
  "license": "BlueOak-1.0.0"
2902
2808
  },
2903
2809
  "node_modules/parse-json": {
@@ -2985,9 +2891,9 @@
2985
2891
  }
2986
2892
  },
2987
2893
  "node_modules/path-to-regexp": {
2988
- "version": "8.1.0",
2989
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.1.0.tgz",
2990
- "integrity": "sha512-Bqn3vc8CMHty6zuD+tG23s6v2kwxslHEhTj4eYaVKGIEB+YX/2wd0/rgXLFD9G9id9KCtbVy/3ZgmvZjpa0UdQ==",
2894
+ "version": "8.2.0",
2895
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.2.0.tgz",
2896
+ "integrity": "sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==",
2991
2897
  "license": "MIT",
2992
2898
  "engines": {
2993
2899
  "node": ">=16"
@@ -3000,9 +2906,9 @@
3000
2906
  "license": "MIT"
3001
2907
  },
3002
2908
  "node_modules/picocolors": {
3003
- "version": "1.1.0",
3004
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz",
3005
- "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==",
2909
+ "version": "1.1.1",
2910
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2911
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3006
2912
  "license": "ISC"
3007
2913
  },
3008
2914
  "node_modules/pkg-dir": {
@@ -3756,18 +3662,6 @@
3756
3662
  "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
3757
3663
  "license": "MIT"
3758
3664
  },
3759
- "node_modules/string-width/node_modules/ansi-regex": {
3760
- "version": "6.1.0",
3761
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
3762
- "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
3763
- "license": "MIT",
3764
- "engines": {
3765
- "node": ">=12"
3766
- },
3767
- "funding": {
3768
- "url": "https://github.com/chalk/ansi-regex?sponsor=1"
3769
- }
3770
- },
3771
3665
  "node_modules/string-width/node_modules/strip-ansi": {
3772
3666
  "version": "7.1.0",
3773
3667
  "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
@@ -3808,6 +3702,24 @@
3808
3702
  "node": ">=8"
3809
3703
  }
3810
3704
  },
3705
+ "node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
3706
+ "version": "5.0.1",
3707
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
3708
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
3709
+ "license": "MIT",
3710
+ "engines": {
3711
+ "node": ">=8"
3712
+ }
3713
+ },
3714
+ "node_modules/strip-ansi/node_modules/ansi-regex": {
3715
+ "version": "5.0.1",
3716
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
3717
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
3718
+ "license": "MIT",
3719
+ "engines": {
3720
+ "node": ">=8"
3721
+ }
3722
+ },
3811
3723
  "node_modules/supports-color": {
3812
3724
  "version": "8.1.1",
3813
3725
  "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
@@ -3863,13 +3775,10 @@
3863
3775
  }
3864
3776
  },
3865
3777
  "node_modules/text-decoder": {
3866
- "version": "1.2.0",
3867
- "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.0.tgz",
3868
- "integrity": "sha512-n1yg1mOj9DNpk3NeZOx7T6jchTbyJS3i3cucbNN6FcdPriMZx7NsgrGpWWdWZZGxD7ES1XB+3uoqHMgOKaN+fg==",
3869
- "license": "Apache-2.0",
3870
- "dependencies": {
3871
- "b4a": "^1.6.4"
3872
- }
3778
+ "version": "1.2.1",
3779
+ "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.1.tgz",
3780
+ "integrity": "sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==",
3781
+ "license": "Apache-2.0"
3873
3782
  },
3874
3783
  "node_modules/through": {
3875
3784
  "version": "2.3.8",
@@ -3896,9 +3805,9 @@
3896
3805
  }
3897
3806
  },
3898
3807
  "node_modules/tslib": {
3899
- "version": "2.7.0",
3900
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz",
3901
- "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==",
3808
+ "version": "2.8.1",
3809
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
3810
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
3902
3811
  "extraneous": true,
3903
3812
  "license": "0BSD"
3904
3813
  },
@@ -3928,9 +3837,9 @@
3928
3837
  }
3929
3838
  },
3930
3839
  "node_modules/typescript": {
3931
- "version": "5.6.2",
3932
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.2.tgz",
3933
- "integrity": "sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==",
3840
+ "version": "5.6.3",
3841
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz",
3842
+ "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==",
3934
3843
  "dev": true,
3935
3844
  "license": "Apache-2.0",
3936
3845
  "bin": {
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "automated testing",
8
8
  "android"
9
9
  ],
10
- "version": "3.4.0",
10
+ "version": "3.5.1",
11
11
  "author": "Appium Contributors",
12
12
  "license": "Apache-2.0",
13
13
  "repository": {
@@ -74,8 +74,8 @@
74
74
  "npm-shrinkwrap.json"
75
75
  ],
76
76
  "dependencies": {
77
- "appium-adb": "^12.4.0",
78
- "appium-android-driver": "^9.11.0",
77
+ "appium-adb": "^12.5.2",
78
+ "appium-android-driver": "^9.12.3",
79
79
  "asyncbox": "^3.0.0",
80
80
  "axios": "^1.7.2",
81
81
  "bluebird": "^3.5.0",