@midscene/ios 1.7.6-beta-20260427023820.0 → 1.7.6
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/es/cli.mjs +3 -5
- package/dist/es/index.mjs +2 -4
- package/dist/es/mcp-server.mjs +3 -5
- package/dist/lib/cli.js +3 -5
- package/dist/lib/index.js +2 -4
- package/dist/lib/mcp-server.js +3 -5
- package/package.json +5 -5
- package/static/index.html +1 -1
- package/static/static/js/{index.649128a6.js → index.8f7b788e.js} +16 -8
- package/static/static/js/index.8f7b788e.js.map +1 -0
- package/static/static/js/index.649128a6.js.map +0 -1
- /package/static/static/js/{index.649128a6.js.LICENSE.txt → index.8f7b788e.js.LICENSE.txt} +0 -0
package/dist/es/cli.mjs
CHANGED
|
@@ -1367,12 +1367,10 @@ class IOSMidsceneTools extends BaseMidsceneTools {
|
|
|
1367
1367
|
}
|
|
1368
1368
|
if (this.agent) return this.agent;
|
|
1369
1369
|
debug('Creating iOS agent with WebDriverAgent options:', opts || {});
|
|
1370
|
-
const
|
|
1370
|
+
const reportOptions = this.readCliReportAgentOptions();
|
|
1371
1371
|
this.agent = await agentFromWebDriverAgent({
|
|
1372
1372
|
autoDismissKeyboard: false,
|
|
1373
|
-
...
|
|
1374
|
-
reportFileName
|
|
1375
|
-
} : {},
|
|
1373
|
+
...reportOptions ?? {},
|
|
1376
1374
|
...opts ?? {}
|
|
1377
1375
|
});
|
|
1378
1376
|
this.lastOptsSignature = nextSignature;
|
|
@@ -1434,7 +1432,7 @@ class IOSMidsceneTools extends BaseMidsceneTools {
|
|
|
1434
1432
|
const tools = new IOSMidsceneTools();
|
|
1435
1433
|
runToolsCLI(tools, 'midscene-ios', {
|
|
1436
1434
|
stripPrefix: 'ios_',
|
|
1437
|
-
version: "1.7.6
|
|
1435
|
+
version: "1.7.6",
|
|
1438
1436
|
extraCommands: createReportCliCommands()
|
|
1439
1437
|
}).catch((e)=>{
|
|
1440
1438
|
process.exit(reportCLIError(e));
|
package/dist/es/index.mjs
CHANGED
|
@@ -1373,12 +1373,10 @@ class IOSMidsceneTools extends BaseMidsceneTools {
|
|
|
1373
1373
|
}
|
|
1374
1374
|
if (this.agent) return this.agent;
|
|
1375
1375
|
debug('Creating iOS agent with WebDriverAgent options:', opts || {});
|
|
1376
|
-
const
|
|
1376
|
+
const reportOptions = this.readCliReportAgentOptions();
|
|
1377
1377
|
this.agent = await agentFromWebDriverAgent({
|
|
1378
1378
|
autoDismissKeyboard: false,
|
|
1379
|
-
...
|
|
1380
|
-
reportFileName
|
|
1381
|
-
} : {},
|
|
1379
|
+
...reportOptions ?? {},
|
|
1382
1380
|
...opts ?? {}
|
|
1383
1381
|
});
|
|
1384
1382
|
this.lastOptsSignature = nextSignature;
|
package/dist/es/mcp-server.mjs
CHANGED
|
@@ -1367,12 +1367,10 @@ class IOSMidsceneTools extends BaseMidsceneTools {
|
|
|
1367
1367
|
}
|
|
1368
1368
|
if (this.agent) return this.agent;
|
|
1369
1369
|
debug('Creating iOS agent with WebDriverAgent options:', opts || {});
|
|
1370
|
-
const
|
|
1370
|
+
const reportOptions = this.readCliReportAgentOptions();
|
|
1371
1371
|
this.agent = await agentFromWebDriverAgent({
|
|
1372
1372
|
autoDismissKeyboard: false,
|
|
1373
|
-
...
|
|
1374
|
-
reportFileName
|
|
1375
|
-
} : {},
|
|
1373
|
+
...reportOptions ?? {},
|
|
1376
1374
|
...opts ?? {}
|
|
1377
1375
|
});
|
|
1378
1376
|
this.lastOptsSignature = nextSignature;
|
|
@@ -1438,7 +1436,7 @@ class IOSMCPServer extends BaseMCPServer {
|
|
|
1438
1436
|
constructor(toolsManager){
|
|
1439
1437
|
super({
|
|
1440
1438
|
name: '@midscene/ios-mcp',
|
|
1441
|
-
version: "1.7.6
|
|
1439
|
+
version: "1.7.6",
|
|
1442
1440
|
description: 'Control the iOS device using natural language commands'
|
|
1443
1441
|
}, toolsManager);
|
|
1444
1442
|
}
|
package/dist/lib/cli.js
CHANGED
|
@@ -1391,12 +1391,10 @@ class IOSMidsceneTools extends base_tools_namespaceObject.BaseMidsceneTools {
|
|
|
1391
1391
|
}
|
|
1392
1392
|
if (this.agent) return this.agent;
|
|
1393
1393
|
debug('Creating iOS agent with WebDriverAgent options:', opts || {});
|
|
1394
|
-
const
|
|
1394
|
+
const reportOptions = this.readCliReportAgentOptions();
|
|
1395
1395
|
this.agent = await agentFromWebDriverAgent({
|
|
1396
1396
|
autoDismissKeyboard: false,
|
|
1397
|
-
...
|
|
1398
|
-
reportFileName
|
|
1399
|
-
} : {},
|
|
1397
|
+
...reportOptions ?? {},
|
|
1400
1398
|
...opts ?? {}
|
|
1401
1399
|
});
|
|
1402
1400
|
this.lastOptsSignature = nextSignature;
|
|
@@ -1458,7 +1456,7 @@ class IOSMidsceneTools extends base_tools_namespaceObject.BaseMidsceneTools {
|
|
|
1458
1456
|
const tools = new IOSMidsceneTools();
|
|
1459
1457
|
(0, cli_namespaceObject.runToolsCLI)(tools, 'midscene-ios', {
|
|
1460
1458
|
stripPrefix: 'ios_',
|
|
1461
|
-
version: "1.7.6
|
|
1459
|
+
version: "1.7.6",
|
|
1462
1460
|
extraCommands: (0, core_namespaceObject.createReportCliCommands)()
|
|
1463
1461
|
}).catch((e)=>{
|
|
1464
1462
|
process.exit((0, cli_namespaceObject.reportCLIError)(e));
|
package/dist/lib/index.js
CHANGED
|
@@ -1411,12 +1411,10 @@ class IOSMidsceneTools extends base_tools_namespaceObject.BaseMidsceneTools {
|
|
|
1411
1411
|
}
|
|
1412
1412
|
if (this.agent) return this.agent;
|
|
1413
1413
|
debug('Creating iOS agent with WebDriverAgent options:', opts || {});
|
|
1414
|
-
const
|
|
1414
|
+
const reportOptions = this.readCliReportAgentOptions();
|
|
1415
1415
|
this.agent = await agentFromWebDriverAgent({
|
|
1416
1416
|
autoDismissKeyboard: false,
|
|
1417
|
-
...
|
|
1418
|
-
reportFileName
|
|
1419
|
-
} : {},
|
|
1417
|
+
...reportOptions ?? {},
|
|
1420
1418
|
...opts ?? {}
|
|
1421
1419
|
});
|
|
1422
1420
|
this.lastOptsSignature = nextSignature;
|
package/dist/lib/mcp-server.js
CHANGED
|
@@ -1407,12 +1407,10 @@ class IOSMidsceneTools extends base_tools_namespaceObject.BaseMidsceneTools {
|
|
|
1407
1407
|
}
|
|
1408
1408
|
if (this.agent) return this.agent;
|
|
1409
1409
|
debug('Creating iOS agent with WebDriverAgent options:', opts || {});
|
|
1410
|
-
const
|
|
1410
|
+
const reportOptions = this.readCliReportAgentOptions();
|
|
1411
1411
|
this.agent = await agentFromWebDriverAgent({
|
|
1412
1412
|
autoDismissKeyboard: false,
|
|
1413
|
-
...
|
|
1414
|
-
reportFileName
|
|
1415
|
-
} : {},
|
|
1413
|
+
...reportOptions ?? {},
|
|
1416
1414
|
...opts ?? {}
|
|
1417
1415
|
});
|
|
1418
1416
|
this.lastOptsSignature = nextSignature;
|
|
@@ -1478,7 +1476,7 @@ class IOSMCPServer extends mcp_namespaceObject.BaseMCPServer {
|
|
|
1478
1476
|
constructor(toolsManager){
|
|
1479
1477
|
super({
|
|
1480
1478
|
name: '@midscene/ios-mcp',
|
|
1481
|
-
version: "1.7.6
|
|
1479
|
+
version: "1.7.6",
|
|
1482
1480
|
description: 'Control the iOS device using natural language commands'
|
|
1483
1481
|
}, toolsManager);
|
|
1484
1482
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midscene/ios",
|
|
3
|
-
"version": "1.7.6
|
|
3
|
+
"version": "1.7.6",
|
|
4
4
|
"description": "iOS automation library for Midscene",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"iOS UI automation",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@inquirer/prompts": "^7.8.6",
|
|
45
45
|
"open": "10.1.0",
|
|
46
|
-
"@midscene/
|
|
47
|
-
"@midscene/
|
|
48
|
-
"@midscene/
|
|
49
|
-
"@midscene/
|
|
46
|
+
"@midscene/core": "1.7.6",
|
|
47
|
+
"@midscene/webdriver": "1.7.6",
|
|
48
|
+
"@midscene/shared": "1.7.6",
|
|
49
|
+
"@midscene/playground": "1.7.6"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@rslib/core": "^0.18.3",
|
package/static/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html><head><link rel="icon" href="/favicon.ico"><title>Midscene Playground</title><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><script defer src="/static/js/lib-react.7b1abe58.js"></script><script defer src="/static/js/883.516361ae.js"></script><script defer src="/static/js/index.
|
|
1
|
+
<!doctype html><html><head><link rel="icon" href="/favicon.ico"><title>Midscene Playground</title><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><script defer src="/static/js/lib-react.7b1abe58.js"></script><script defer src="/static/js/883.516361ae.js"></script><script defer src="/static/js/index.8f7b788e.js"></script><link href="/static/css/index.dc500f18.css" rel="stylesheet"></head><body><div id="root"></div></body></html>
|