appium-mac2-driver 3.2.15 → 3.2.16
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 +6 -0
- package/build/lib/commands/app-management.d.ts.map +1 -1
- package/build/lib/commands/app-management.js.map +1 -1
- package/build/lib/commands/applescript.d.ts.map +1 -1
- package/build/lib/commands/applescript.js.map +1 -1
- package/build/lib/commands/bidi/models.d.ts.map +1 -1
- package/build/lib/commands/bidi/models.js.map +1 -1
- package/build/lib/commands/clipboard.d.ts.map +1 -1
- package/build/lib/commands/clipboard.js +2 -2
- package/build/lib/commands/clipboard.js.map +1 -1
- package/build/lib/commands/execute.d.ts.map +1 -1
- package/build/lib/commands/execute.js +3 -1
- package/build/lib/commands/execute.js.map +1 -1
- package/build/lib/commands/find.d.ts.map +1 -1
- package/build/lib/commands/find.js.map +1 -1
- package/build/lib/commands/gestures.d.ts.map +1 -1
- package/build/lib/commands/gestures.js.map +1 -1
- package/build/lib/commands/helpers.d.ts.map +1 -1
- package/build/lib/commands/helpers.js.map +1 -1
- package/build/lib/commands/native-record-screen.d.ts.map +1 -1
- package/build/lib/commands/native-record-screen.js +7 -7
- package/build/lib/commands/native-record-screen.js.map +1 -1
- package/build/lib/commands/navigation.d.ts.map +1 -1
- package/build/lib/commands/navigation.js.map +1 -1
- package/build/lib/commands/record-screen.d.ts.map +1 -1
- package/build/lib/commands/record-screen.js +2 -3
- package/build/lib/commands/record-screen.js.map +1 -1
- package/build/lib/commands/screenshots.d.ts.map +1 -1
- package/build/lib/commands/screenshots.js.map +1 -1
- package/build/lib/commands/source.d.ts.map +1 -1
- package/build/lib/commands/source.js.map +1 -1
- package/build/lib/doctor/optional-checks.d.ts.map +1 -1
- package/build/lib/doctor/optional-checks.js.map +1 -1
- package/build/lib/doctor/required-checks.d.ts.map +1 -1
- package/build/lib/doctor/required-checks.js.map +1 -1
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/driver.js +1 -1
- package/build/lib/driver.js.map +1 -1
- package/build/lib/execute-method-map.d.ts.map +1 -1
- package/build/lib/execute-method-map.js +31 -140
- package/build/lib/execute-method-map.js.map +1 -1
- package/build/lib/logger.js.map +1 -1
- package/build/lib/types.d.ts.map +1 -1
- package/build/lib/utils.d.ts.map +1 -1
- package/build/lib/utils.js +2 -1
- package/build/lib/utils.js.map +1 -1
- package/build/lib/wda-mac.d.ts.map +1 -1
- package/build/lib/wda-mac.js +24 -25
- package/build/lib/wda-mac.js.map +1 -1
- package/lib/commands/app-management.ts +9 -10
- package/lib/commands/applescript.ts +5 -6
- package/lib/commands/bidi/models.ts +2 -2
- package/lib/commands/clipboard.ts +9 -8
- package/lib/commands/execute.ts +6 -5
- package/lib/commands/find.ts +3 -4
- package/lib/commands/gestures.ts +25 -26
- package/lib/commands/helpers.ts +8 -6
- package/lib/commands/native-record-screen.ts +61 -52
- package/lib/commands/navigation.ts +3 -4
- package/lib/commands/record-screen.ts +35 -32
- package/lib/commands/screenshots.ts +4 -5
- package/lib/commands/source.ts +6 -7
- package/lib/constraints.ts +0 -1
- package/lib/doctor/optional-checks.ts +3 -3
- package/lib/doctor/required-checks.ts +12 -9
- package/lib/doctor/utils.ts +0 -1
- package/lib/driver.ts +20 -18
- package/lib/execute-method-map.ts +32 -141
- package/lib/logger.ts +1 -2
- package/lib/method-map.ts +0 -1
- package/lib/types.ts +1 -1
- package/lib/utils.ts +7 -6
- package/lib/wda-mac.ts +113 -86
- package/npm-shrinkwrap.json +169 -58
- package/package.json +4 -1
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-mac2-driver",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.16",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-mac2-driver",
|
|
9
|
-
"version": "3.2.
|
|
9
|
+
"version": "3.2.16",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@appium/strongbox": "^1.0.0-rc.1",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
"chai-as-promised": "^8.0.0",
|
|
36
36
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
37
37
|
"mocha": "^11.7.5",
|
|
38
|
+
"prettier": "^3.0.3",
|
|
38
39
|
"semantic-release": "^25.0.2",
|
|
39
40
|
"sinon": "^21.0.0",
|
|
40
41
|
"ts-node": "^10.9.1",
|
|
@@ -82,6 +83,16 @@
|
|
|
82
83
|
"spdy": "4.0.2"
|
|
83
84
|
}
|
|
84
85
|
},
|
|
86
|
+
"node_modules/@appium/base-driver/node_modules/asyncbox": {
|
|
87
|
+
"version": "6.0.1",
|
|
88
|
+
"resolved": "https://registry.npmjs.org/asyncbox/-/asyncbox-6.0.1.tgz",
|
|
89
|
+
"integrity": "sha512-vmeYcLDV9uxj1/0h36Kdj/3H/Bk5ugtwi3nSS8Sir9D7Ia2wDJWbh52LjMDaSI3s3iScmNL42kqDf7I4p8JXjg==",
|
|
90
|
+
"license": "Apache-2.0",
|
|
91
|
+
"engines": {
|
|
92
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
93
|
+
"npm": ">=10"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
85
96
|
"node_modules/@appium/base-driver/node_modules/axios": {
|
|
86
97
|
"version": "1.13.3",
|
|
87
98
|
"resolved": "https://registry.npmjs.org/axios/-/axios-1.13.3.tgz",
|
|
@@ -134,6 +145,20 @@
|
|
|
134
145
|
"npm": ">=10"
|
|
135
146
|
}
|
|
136
147
|
},
|
|
148
|
+
"node_modules/@appium/docutils/node_modules/teen_process": {
|
|
149
|
+
"version": "4.0.8",
|
|
150
|
+
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-4.0.8.tgz",
|
|
151
|
+
"integrity": "sha512-0DTX2KfgVOr6+8TVmheEdiJHZ/bPOPeJuX0yvv5VOX3x+OFteNkmWkI+hX6zTkzxjddrktsrXkacfS2Gom1YyA==",
|
|
152
|
+
"license": "Apache-2.0",
|
|
153
|
+
"dependencies": {
|
|
154
|
+
"lodash": "^4.17.21",
|
|
155
|
+
"shell-quote": "^1.8.1"
|
|
156
|
+
},
|
|
157
|
+
"engines": {
|
|
158
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
159
|
+
"npm": ">=10"
|
|
160
|
+
}
|
|
161
|
+
},
|
|
137
162
|
"node_modules/@appium/logger": {
|
|
138
163
|
"version": "2.0.4",
|
|
139
164
|
"resolved": "https://registry.npmjs.org/@appium/logger/-/logger-2.0.4.tgz",
|
|
@@ -237,6 +262,20 @@
|
|
|
237
262
|
"proxy-from-env": "^1.1.0"
|
|
238
263
|
}
|
|
239
264
|
},
|
|
265
|
+
"node_modules/@appium/support/node_modules/teen_process": {
|
|
266
|
+
"version": "4.0.8",
|
|
267
|
+
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-4.0.8.tgz",
|
|
268
|
+
"integrity": "sha512-0DTX2KfgVOr6+8TVmheEdiJHZ/bPOPeJuX0yvv5VOX3x+OFteNkmWkI+hX6zTkzxjddrktsrXkacfS2Gom1YyA==",
|
|
269
|
+
"license": "Apache-2.0",
|
|
270
|
+
"dependencies": {
|
|
271
|
+
"lodash": "^4.17.21",
|
|
272
|
+
"shell-quote": "^1.8.1"
|
|
273
|
+
},
|
|
274
|
+
"engines": {
|
|
275
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
276
|
+
"npm": ">=10"
|
|
277
|
+
}
|
|
278
|
+
},
|
|
240
279
|
"node_modules/@appium/tsconfig": {
|
|
241
280
|
"version": "1.1.1",
|
|
242
281
|
"resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-1.1.1.tgz",
|
|
@@ -267,9 +306,9 @@
|
|
|
267
306
|
}
|
|
268
307
|
},
|
|
269
308
|
"node_modules/@babel/code-frame": {
|
|
270
|
-
"version": "7.
|
|
271
|
-
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.
|
|
272
|
-
"integrity": "sha512-
|
|
309
|
+
"version": "7.29.0",
|
|
310
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
|
|
311
|
+
"integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
|
|
273
312
|
"license": "MIT",
|
|
274
313
|
"dependencies": {
|
|
275
314
|
"@babel/helper-validator-identifier": "^7.28.5",
|
|
@@ -367,27 +406,6 @@
|
|
|
367
406
|
"url": "https://opencollective.com/libvips"
|
|
368
407
|
}
|
|
369
408
|
},
|
|
370
|
-
"node_modules/@isaacs/balanced-match": {
|
|
371
|
-
"version": "4.0.1",
|
|
372
|
-
"resolved": "https://registry.npmjs.org/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz",
|
|
373
|
-
"integrity": "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==",
|
|
374
|
-
"license": "MIT",
|
|
375
|
-
"engines": {
|
|
376
|
-
"node": "20 || >=22"
|
|
377
|
-
}
|
|
378
|
-
},
|
|
379
|
-
"node_modules/@isaacs/brace-expansion": {
|
|
380
|
-
"version": "5.0.0",
|
|
381
|
-
"resolved": "https://registry.npmjs.org/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz",
|
|
382
|
-
"integrity": "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==",
|
|
383
|
-
"license": "MIT",
|
|
384
|
-
"dependencies": {
|
|
385
|
-
"@isaacs/balanced-match": "^4.0.1"
|
|
386
|
-
},
|
|
387
|
-
"engines": {
|
|
388
|
-
"node": "20 || >=22"
|
|
389
|
-
}
|
|
390
|
-
},
|
|
391
409
|
"node_modules/@isaacs/cliui": {
|
|
392
410
|
"version": "8.0.2",
|
|
393
411
|
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
|
|
@@ -652,9 +670,9 @@
|
|
|
652
670
|
}
|
|
653
671
|
},
|
|
654
672
|
"node_modules/appium-xcode": {
|
|
655
|
-
"version": "6.1.
|
|
656
|
-
"resolved": "https://registry.npmjs.org/appium-xcode/-/appium-xcode-6.1.
|
|
657
|
-
"integrity": "sha512-
|
|
673
|
+
"version": "6.1.9",
|
|
674
|
+
"resolved": "https://registry.npmjs.org/appium-xcode/-/appium-xcode-6.1.9.tgz",
|
|
675
|
+
"integrity": "sha512-m7bQPXMUitycAvPNmNQ/UdoZJhtcH2zCjxXcvQYi4uZTHqexcjy76MpMrVFsESJ7Qd8+0U2vmnMNpfB/M/BupQ==",
|
|
658
676
|
"license": "Apache-2.0",
|
|
659
677
|
"dependencies": {
|
|
660
678
|
"@appium/support": "^7.0.0-rc.1",
|
|
@@ -681,6 +699,20 @@
|
|
|
681
699
|
"proxy-from-env": "^1.1.0"
|
|
682
700
|
}
|
|
683
701
|
},
|
|
702
|
+
"node_modules/appium/node_modules/teen_process": {
|
|
703
|
+
"version": "4.0.8",
|
|
704
|
+
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-4.0.8.tgz",
|
|
705
|
+
"integrity": "sha512-0DTX2KfgVOr6+8TVmheEdiJHZ/bPOPeJuX0yvv5VOX3x+OFteNkmWkI+hX6zTkzxjddrktsrXkacfS2Gom1YyA==",
|
|
706
|
+
"license": "Apache-2.0",
|
|
707
|
+
"dependencies": {
|
|
708
|
+
"lodash": "^4.17.21",
|
|
709
|
+
"shell-quote": "^1.8.1"
|
|
710
|
+
},
|
|
711
|
+
"engines": {
|
|
712
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
713
|
+
"npm": ">=10"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
684
716
|
"node_modules/archiver": {
|
|
685
717
|
"version": "7.0.1",
|
|
686
718
|
"resolved": "https://registry.npmjs.org/archiver/-/archiver-7.0.1.tgz",
|
|
@@ -730,6 +762,7 @@
|
|
|
730
762
|
"version": "10.5.0",
|
|
731
763
|
"resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz",
|
|
732
764
|
"integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
|
|
765
|
+
"deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
|
|
733
766
|
"license": "ISC",
|
|
734
767
|
"dependencies": {
|
|
735
768
|
"foreground-child": "^3.1.0",
|
|
@@ -802,10 +835,13 @@
|
|
|
802
835
|
"license": "MIT"
|
|
803
836
|
},
|
|
804
837
|
"node_modules/asyncbox": {
|
|
805
|
-
"version": "6.0
|
|
806
|
-
"resolved": "https://registry.npmjs.org/asyncbox/-/asyncbox-6.0.
|
|
807
|
-
"integrity": "sha512-
|
|
838
|
+
"version": "6.1.0",
|
|
839
|
+
"resolved": "https://registry.npmjs.org/asyncbox/-/asyncbox-6.1.0.tgz",
|
|
840
|
+
"integrity": "sha512-KZwKNVnDdDe0ubN+fFMuHhSljZNHnbjdJABImoqFzQP61oIg6sMlhXIqOIu3WRd7YwW89q+eVj2Ty/Ax5dbh2Q==",
|
|
808
841
|
"license": "Apache-2.0",
|
|
842
|
+
"dependencies": {
|
|
843
|
+
"p-limit": "^7.2.0"
|
|
844
|
+
},
|
|
809
845
|
"engines": {
|
|
810
846
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0",
|
|
811
847
|
"npm": ">=10"
|
|
@@ -818,20 +854,20 @@
|
|
|
818
854
|
"license": "MIT"
|
|
819
855
|
},
|
|
820
856
|
"node_modules/axios": {
|
|
821
|
-
"version": "1.13.
|
|
822
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.13.
|
|
823
|
-
"integrity": "sha512-
|
|
857
|
+
"version": "1.13.5",
|
|
858
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.13.5.tgz",
|
|
859
|
+
"integrity": "sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==",
|
|
824
860
|
"license": "MIT",
|
|
825
861
|
"dependencies": {
|
|
826
|
-
"follow-redirects": "^1.15.
|
|
827
|
-
"form-data": "^4.0.
|
|
862
|
+
"follow-redirects": "^1.15.11",
|
|
863
|
+
"form-data": "^4.0.5",
|
|
828
864
|
"proxy-from-env": "^1.1.0"
|
|
829
865
|
}
|
|
830
866
|
},
|
|
831
867
|
"node_modules/b4a": {
|
|
832
|
-
"version": "1.7.
|
|
833
|
-
"resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.
|
|
834
|
-
"integrity": "sha512-
|
|
868
|
+
"version": "1.7.4",
|
|
869
|
+
"resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.4.tgz",
|
|
870
|
+
"integrity": "sha512-u20zJLDaSWpxaZ+zaAkEIB2dZZ1o+DF4T/MRbmsvGp9nletHOyiai19OzX1fF8xUBYsO1bPXxODvcd0978pnug==",
|
|
835
871
|
"license": "Apache-2.0",
|
|
836
872
|
"peerDependencies": {
|
|
837
873
|
"react-native-b4a": "*"
|
|
@@ -2014,13 +2050,61 @@
|
|
|
2014
2050
|
"url": "https://github.com/sponsors/isaacs"
|
|
2015
2051
|
}
|
|
2016
2052
|
},
|
|
2053
|
+
"node_modules/glob/node_modules/@isaacs/cliui": {
|
|
2054
|
+
"version": "9.0.0",
|
|
2055
|
+
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-9.0.0.tgz",
|
|
2056
|
+
"integrity": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==",
|
|
2057
|
+
"license": "BlueOak-1.0.0",
|
|
2058
|
+
"engines": {
|
|
2059
|
+
"node": ">=18"
|
|
2060
|
+
}
|
|
2061
|
+
},
|
|
2062
|
+
"node_modules/glob/node_modules/balanced-match": {
|
|
2063
|
+
"version": "4.0.2",
|
|
2064
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.2.tgz",
|
|
2065
|
+
"integrity": "sha512-x0K50QvKQ97fdEz2kPehIerj+YTeptKF9hyYkKf6egnwmMWAkADiO0QCzSp0R5xN8FTZgYaBfSaue46Ej62nMg==",
|
|
2066
|
+
"license": "MIT",
|
|
2067
|
+
"dependencies": {
|
|
2068
|
+
"jackspeak": "^4.2.3"
|
|
2069
|
+
},
|
|
2070
|
+
"engines": {
|
|
2071
|
+
"node": "20 || >=22"
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
"node_modules/glob/node_modules/brace-expansion": {
|
|
2075
|
+
"version": "5.0.2",
|
|
2076
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.2.tgz",
|
|
2077
|
+
"integrity": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==",
|
|
2078
|
+
"license": "MIT",
|
|
2079
|
+
"dependencies": {
|
|
2080
|
+
"balanced-match": "^4.0.2"
|
|
2081
|
+
},
|
|
2082
|
+
"engines": {
|
|
2083
|
+
"node": "20 || >=22"
|
|
2084
|
+
}
|
|
2085
|
+
},
|
|
2086
|
+
"node_modules/glob/node_modules/jackspeak": {
|
|
2087
|
+
"version": "4.2.3",
|
|
2088
|
+
"resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.2.3.tgz",
|
|
2089
|
+
"integrity": "sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==",
|
|
2090
|
+
"license": "BlueOak-1.0.0",
|
|
2091
|
+
"dependencies": {
|
|
2092
|
+
"@isaacs/cliui": "^9.0.0"
|
|
2093
|
+
},
|
|
2094
|
+
"engines": {
|
|
2095
|
+
"node": "20 || >=22"
|
|
2096
|
+
},
|
|
2097
|
+
"funding": {
|
|
2098
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2099
|
+
}
|
|
2100
|
+
},
|
|
2017
2101
|
"node_modules/glob/node_modules/minimatch": {
|
|
2018
|
-
"version": "10.
|
|
2019
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.
|
|
2020
|
-
"integrity": "sha512-
|
|
2102
|
+
"version": "10.2.0",
|
|
2103
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.0.tgz",
|
|
2104
|
+
"integrity": "sha512-ugkC31VaVg9cF0DFVoADH12k6061zNZkZON+aX8AWsR9GhPcErkcMBceb6znR8wLERM2AkkOxy2nWRLpT9Jq5w==",
|
|
2021
2105
|
"license": "BlueOak-1.0.0",
|
|
2022
2106
|
"dependencies": {
|
|
2023
|
-
"
|
|
2107
|
+
"brace-expansion": "^5.0.2"
|
|
2024
2108
|
},
|
|
2025
2109
|
"engines": {
|
|
2026
2110
|
"node": "20 || >=22"
|
|
@@ -2325,12 +2409,12 @@
|
|
|
2325
2409
|
"license": "MIT"
|
|
2326
2410
|
},
|
|
2327
2411
|
"node_modules/isexe": {
|
|
2328
|
-
"version": "3.1.
|
|
2329
|
-
"resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.
|
|
2330
|
-
"integrity": "sha512-
|
|
2331
|
-
"license": "
|
|
2412
|
+
"version": "3.1.5",
|
|
2413
|
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.5.tgz",
|
|
2414
|
+
"integrity": "sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==",
|
|
2415
|
+
"license": "BlueOak-1.0.0",
|
|
2332
2416
|
"engines": {
|
|
2333
|
-
"node": ">=
|
|
2417
|
+
"node": ">=18"
|
|
2334
2418
|
}
|
|
2335
2419
|
},
|
|
2336
2420
|
"node_modules/jackspeak": {
|
|
@@ -2870,6 +2954,21 @@
|
|
|
2870
2954
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
2871
2955
|
}
|
|
2872
2956
|
},
|
|
2957
|
+
"node_modules/p-limit": {
|
|
2958
|
+
"version": "7.3.0",
|
|
2959
|
+
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-7.3.0.tgz",
|
|
2960
|
+
"integrity": "sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==",
|
|
2961
|
+
"license": "MIT",
|
|
2962
|
+
"dependencies": {
|
|
2963
|
+
"yocto-queue": "^1.2.1"
|
|
2964
|
+
},
|
|
2965
|
+
"engines": {
|
|
2966
|
+
"node": ">=20"
|
|
2967
|
+
},
|
|
2968
|
+
"funding": {
|
|
2969
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2970
|
+
}
|
|
2971
|
+
},
|
|
2873
2972
|
"node_modules/package-changed": {
|
|
2874
2973
|
"version": "3.0.0",
|
|
2875
2974
|
"resolved": "https://registry.npmjs.org/package-changed/-/package-changed-3.0.0.tgz",
|
|
@@ -3077,9 +3176,9 @@
|
|
|
3077
3176
|
"license": "MIT"
|
|
3078
3177
|
},
|
|
3079
3178
|
"node_modules/qs": {
|
|
3080
|
-
"version": "6.
|
|
3081
|
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.
|
|
3082
|
-
"integrity": "sha512-
|
|
3179
|
+
"version": "6.15.0",
|
|
3180
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.15.0.tgz",
|
|
3181
|
+
"integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==",
|
|
3083
3182
|
"license": "BSD-3-Clause",
|
|
3084
3183
|
"dependencies": {
|
|
3085
3184
|
"side-channel": "^1.1.0"
|
|
@@ -3832,9 +3931,9 @@
|
|
|
3832
3931
|
}
|
|
3833
3932
|
},
|
|
3834
3933
|
"node_modules/teen_process": {
|
|
3835
|
-
"version": "4.0.
|
|
3836
|
-
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-4.0.
|
|
3837
|
-
"integrity": "sha512-
|
|
3934
|
+
"version": "4.0.10",
|
|
3935
|
+
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-4.0.10.tgz",
|
|
3936
|
+
"integrity": "sha512-xEQ0UCeUoprhDDADFKaxv9nzE+PlDTw/mgG0aX7ccxg+EGx8bCEiX25qQ0JPSjSS66sQyXEPFQR3nV5ZxiOcmw==",
|
|
3838
3937
|
"license": "Apache-2.0",
|
|
3839
3938
|
"dependencies": {
|
|
3840
3939
|
"lodash": "^4.17.21",
|
|
@@ -3846,9 +3945,9 @@
|
|
|
3846
3945
|
}
|
|
3847
3946
|
},
|
|
3848
3947
|
"node_modules/text-decoder": {
|
|
3849
|
-
"version": "1.2.
|
|
3850
|
-
"resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.
|
|
3851
|
-
"integrity": "sha512-
|
|
3948
|
+
"version": "1.2.6",
|
|
3949
|
+
"resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.6.tgz",
|
|
3950
|
+
"integrity": "sha512-27FeW5GQFDfw0FpwMQhMagB7BztOOlmjcSRi97t2oplhKVTZtp0DZbSegSaXS5IIC6mxMvBG4AR1Sgc6BX3CQg==",
|
|
3852
3951
|
"license": "Apache-2.0",
|
|
3853
3952
|
"dependencies": {
|
|
3854
3953
|
"b4a": "^1.6.4"
|
|
@@ -4332,6 +4431,18 @@
|
|
|
4332
4431
|
"node": "*"
|
|
4333
4432
|
}
|
|
4334
4433
|
},
|
|
4434
|
+
"node_modules/yocto-queue": {
|
|
4435
|
+
"version": "1.2.2",
|
|
4436
|
+
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz",
|
|
4437
|
+
"integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==",
|
|
4438
|
+
"license": "MIT",
|
|
4439
|
+
"engines": {
|
|
4440
|
+
"node": ">=12.20"
|
|
4441
|
+
},
|
|
4442
|
+
"funding": {
|
|
4443
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
4444
|
+
}
|
|
4445
|
+
},
|
|
4335
4446
|
"node_modules/yoctocolors": {
|
|
4336
4447
|
"version": "2.1.2",
|
|
4337
4448
|
"resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.2.tgz",
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"mac",
|
|
7
7
|
"XCTest"
|
|
8
8
|
],
|
|
9
|
-
"version": "3.2.
|
|
9
|
+
"version": "3.2.16",
|
|
10
10
|
"author": "Appium Contributors",
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"repository": {
|
|
@@ -63,6 +63,8 @@
|
|
|
63
63
|
"dev": "npm run build -- --watch",
|
|
64
64
|
"lint": "eslint .",
|
|
65
65
|
"lint:fix": "npm run lint -- --fix",
|
|
66
|
+
"format": "prettier -w ./lib ./test",
|
|
67
|
+
"format:check": "prettier --check ./lib ./test",
|
|
66
68
|
"prepare": "npm run rebuild",
|
|
67
69
|
"test": "mocha --exit --timeout 1m \"./test/unit/**/*-specs.ts\"",
|
|
68
70
|
"e2e-test": "mocha --exit --timeout 10m \"./test/functional/**/*-specs.ts\""
|
|
@@ -86,6 +88,7 @@
|
|
|
86
88
|
"chai-as-promised": "^8.0.0",
|
|
87
89
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
88
90
|
"mocha": "^11.7.5",
|
|
91
|
+
"prettier": "^3.0.3",
|
|
89
92
|
"semantic-release": "^25.0.2",
|
|
90
93
|
"sinon": "^21.0.0",
|
|
91
94
|
"ts-node": "^10.9.1",
|