appium-mac2-driver 3.3.2 → 3.3.4
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 +12 -0
- package/build/lib/commands/bidi/models.d.ts +6 -0
- package/build/lib/commands/bidi/models.d.ts.map +1 -1
- package/build/lib/commands/bidi/models.js +6 -0
- package/build/lib/commands/bidi/models.js.map +1 -1
- package/build/lib/commands/bidi/types.d.ts +2 -2
- package/build/lib/commands/bidi/types.d.ts.map +1 -1
- package/build/lib/commands/helpers.d.ts +9 -0
- package/build/lib/commands/helpers.d.ts.map +1 -1
- package/build/lib/commands/helpers.js +9 -0
- package/build/lib/commands/helpers.js.map +1 -1
- package/build/lib/commands/native-record-screen.d.ts +11 -11
- package/build/lib/commands/native-record-screen.d.ts.map +1 -1
- package/build/lib/commands/native-record-screen.js +0 -2
- package/build/lib/commands/native-record-screen.js.map +1 -1
- package/build/lib/commands/record-screen.d.ts.map +1 -1
- package/build/lib/commands/record-screen.js +11 -11
- package/build/lib/commands/record-screen.js.map +1 -1
- package/build/lib/doctor/optional-checks.d.ts +1 -1
- package/build/lib/doctor/optional-checks.d.ts.map +1 -1
- package/build/lib/doctor/optional-checks.js +1 -1
- package/build/lib/doctor/optional-checks.js.map +1 -1
- package/build/lib/doctor/required-checks.d.ts +1 -1
- package/build/lib/doctor/required-checks.d.ts.map +1 -1
- package/build/lib/doctor/required-checks.js +1 -1
- package/build/lib/doctor/required-checks.js.map +1 -1
- package/build/lib/driver.d.ts +18 -18
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/driver.js +46 -46
- package/build/lib/driver.js.map +1 -1
- package/build/lib/utils.d.ts +15 -0
- package/build/lib/utils.d.ts.map +1 -1
- package/build/lib/utils.js +15 -0
- package/build/lib/utils.js.map +1 -1
- package/build/lib/wda-mac.d.ts.map +1 -1
- package/build/lib/wda-mac.js +11 -11
- package/build/lib/wda-mac.js.map +1 -1
- package/lib/commands/bidi/models.ts +6 -0
- package/lib/commands/bidi/types.ts +2 -2
- package/lib/commands/helpers.ts +9 -0
- package/lib/commands/native-record-screen.ts +13 -17
- package/lib/commands/record-screen.ts +13 -13
- package/lib/doctor/optional-checks.ts +2 -1
- package/lib/doctor/required-checks.ts +2 -1
- package/lib/driver.ts +74 -73
- package/lib/utils.ts +15 -0
- package/lib/wda-mac.ts +18 -18
- package/npm-shrinkwrap.json +13 -3
- package/package.json +2 -2
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-mac2-driver",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-mac2-driver",
|
|
9
|
-
"version": "3.3.
|
|
9
|
+
"version": "3.3.4",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@appium/strongbox": "^1.0.0-rc.1",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"mocha": "^11.7.5",
|
|
36
36
|
"prettier": "^3.0.3",
|
|
37
37
|
"semantic-release": "^25.0.2",
|
|
38
|
-
"sinon": "^
|
|
38
|
+
"sinon": "^22.0.0",
|
|
39
39
|
"ts-node": "^10.9.1",
|
|
40
40
|
"typescript": "^6.0.2",
|
|
41
41
|
"webdriverio": "^9.0.0"
|
|
@@ -1055,6 +1055,16 @@
|
|
|
1055
1055
|
"node": ">=8"
|
|
1056
1056
|
}
|
|
1057
1057
|
},
|
|
1058
|
+
"node_modules/diff": {
|
|
1059
|
+
"version": "9.0.0",
|
|
1060
|
+
"resolved": "https://registry.npmjs.org/diff/-/diff-9.0.0.tgz",
|
|
1061
|
+
"integrity": "sha512-svtcdpS8CgJyqAjEQIXdb3OjhFVVYjzGAPO8WGCmRbrml64SPw/jJD4GoE98aR7r25A0XcgrK3F02yw9R/vhQw==",
|
|
1062
|
+
"extraneous": true,
|
|
1063
|
+
"license": "BSD-3-Clause",
|
|
1064
|
+
"engines": {
|
|
1065
|
+
"node": ">=0.3.1"
|
|
1066
|
+
}
|
|
1067
|
+
},
|
|
1058
1068
|
"node_modules/dunder-proto": {
|
|
1059
1069
|
"version": "1.0.1",
|
|
1060
1070
|
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"mac",
|
|
7
7
|
"XCTest"
|
|
8
8
|
],
|
|
9
|
-
"version": "3.3.
|
|
9
|
+
"version": "3.3.4",
|
|
10
10
|
"author": "Appium Contributors",
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"repository": {
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"mocha": "^11.7.5",
|
|
89
89
|
"prettier": "^3.0.3",
|
|
90
90
|
"semantic-release": "^25.0.2",
|
|
91
|
-
"sinon": "^
|
|
91
|
+
"sinon": "^22.0.0",
|
|
92
92
|
"ts-node": "^10.9.1",
|
|
93
93
|
"typescript": "^6.0.2",
|
|
94
94
|
"webdriverio": "^9.0.0"
|