misoai-web 1.6.1 → 1.6.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/dist/es/agent.js +4 -1
- package/dist/es/agent.js.map +1 -1
- package/dist/es/bridge-mode-browser.js +3 -3
- package/dist/es/bridge-mode.js +6 -3
- package/dist/es/bridge-mode.js.map +1 -1
- package/dist/es/chrome-extension.js +5 -2
- package/dist/es/chrome-extension.js.map +1 -1
- package/dist/es/index.js +320 -18
- package/dist/es/index.js.map +1 -1
- package/dist/es/midscene-playground.js +4 -1
- package/dist/es/midscene-playground.js.map +1 -1
- package/dist/es/playground.js +4 -1
- package/dist/es/playground.js.map +1 -1
- package/dist/es/playwright.js +320 -18
- package/dist/es/playwright.js.map +1 -1
- package/dist/es/puppeteer-agent-launcher.js +320 -18
- package/dist/es/puppeteer-agent-launcher.js.map +1 -1
- package/dist/es/puppeteer.js +320 -18
- package/dist/es/puppeteer.js.map +1 -1
- package/dist/lib/agent.js +4 -1
- package/dist/lib/agent.js.map +1 -1
- package/dist/lib/bridge-mode-browser.js +3 -3
- package/dist/lib/bridge-mode.js +6 -3
- package/dist/lib/bridge-mode.js.map +1 -1
- package/dist/lib/chrome-extension.js +5 -2
- package/dist/lib/chrome-extension.js.map +1 -1
- package/dist/lib/index.js +320 -18
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/midscene-playground.js +4 -1
- package/dist/lib/midscene-playground.js.map +1 -1
- package/dist/lib/playground.js +4 -1
- package/dist/lib/playground.js.map +1 -1
- package/dist/lib/playwright.js +320 -18
- package/dist/lib/playwright.js.map +1 -1
- package/dist/lib/puppeteer-agent-launcher.js +320 -18
- package/dist/lib/puppeteer-agent-launcher.js.map +1 -1
- package/dist/lib/puppeteer.js +320 -18
- package/dist/lib/puppeteer.js.map +1 -1
- package/dist/types/agent.d.ts +1 -1
- package/dist/types/bridge-mode-browser.d.ts +2 -2
- package/dist/types/bridge-mode.d.ts +2 -2
- package/dist/types/{browser-9b472ffb.d.ts → browser-f205f69d.d.ts} +1 -1
- package/dist/types/chrome-extension.d.ts +2 -2
- package/dist/types/index.d.ts +1 -1
- package/dist/types/midscene-server.d.ts +1 -1
- package/dist/types/{page-ed0ecb44.d.ts → page-c5452809.d.ts} +45 -0
- package/dist/types/playground.d.ts +2 -2
- package/dist/types/playwright.d.ts +1 -1
- package/dist/types/puppeteer-agent-launcher.d.ts +1 -1
- package/dist/types/puppeteer.d.ts +2 -2
- package/dist/types/utils.d.ts +1 -1
- package/dist/types/yaml.d.ts +1 -1
- package/package.json +2 -2
@@ -1317,6 +1317,7 @@ var PageTaskExecutor = class {
|
|
1317
1317
|
actions: [],
|
1318
1318
|
more_actions_needed_by_instruction: false,
|
1319
1319
|
log: "",
|
1320
|
+
summary: "Loaded YAML workflow configuration",
|
1320
1321
|
yamlString
|
1321
1322
|
},
|
1322
1323
|
cache: {
|
@@ -1418,6 +1419,7 @@ var PageTaskExecutor = class {
|
|
1418
1419
|
actions: finalActions,
|
1419
1420
|
more_actions_needed_by_instruction,
|
1420
1421
|
log: log2,
|
1422
|
+
summary: planResult.summary || "Generated action plan from user instruction",
|
1421
1423
|
yamlFlow: planResult.yamlFlow
|
1422
1424
|
},
|
1423
1425
|
cache: {
|
@@ -1473,6 +1475,7 @@ var PageTaskExecutor = class {
|
|
1473
1475
|
actionType: actions[0].type,
|
1474
1476
|
more_actions_needed_by_instruction: true,
|
1475
1477
|
log: "",
|
1478
|
+
summary: action_summary || "Generated VLM action plan",
|
1476
1479
|
yamlFlow: planResult.yamlFlow
|
1477
1480
|
},
|
1478
1481
|
cache: {
|
@@ -2067,7 +2070,7 @@ var import_utils9 = require("misoai-shared/utils");
|
|
2067
2070
|
var import_semver = __toESM(require("semver"));
|
2068
2071
|
|
2069
2072
|
// package.json
|
2070
|
-
var version = "1.6.
|
2073
|
+
var version = "1.6.2";
|
2071
2074
|
|
2072
2075
|
// src/common/task-cache.ts
|
2073
2076
|
var debug3 = (0, import_logger3.getDebug)("cache");
|
@@ -3360,7 +3363,7 @@ function sleep2(ms) {
|
|
3360
3363
|
var ChromeExtensionProxyPage = class {
|
3361
3364
|
constructor(forceSameTabNavigation) {
|
3362
3365
|
this.pageType = "chrome-extension-proxy";
|
3363
|
-
this.version = "1.6.
|
3366
|
+
this.version = "1.6.2";
|
3364
3367
|
this.activeTabId = null;
|
3365
3368
|
this.tabIdOfDebuggerAttached = null;
|
3366
3369
|
this.attachingDebugger = null;
|