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
@@ -1299,6 +1299,7 @@ var PageTaskExecutor = class {
|
|
1299
1299
|
actions: [],
|
1300
1300
|
more_actions_needed_by_instruction: false,
|
1301
1301
|
log: "",
|
1302
|
+
summary: "Loaded YAML workflow configuration",
|
1302
1303
|
yamlString
|
1303
1304
|
},
|
1304
1305
|
cache: {
|
@@ -1400,6 +1401,7 @@ var PageTaskExecutor = class {
|
|
1400
1401
|
actions: finalActions,
|
1401
1402
|
more_actions_needed_by_instruction,
|
1402
1403
|
log: log2,
|
1404
|
+
summary: planResult.summary || "Generated action plan from user instruction",
|
1403
1405
|
yamlFlow: planResult.yamlFlow
|
1404
1406
|
},
|
1405
1407
|
cache: {
|
@@ -1455,6 +1457,7 @@ var PageTaskExecutor = class {
|
|
1455
1457
|
actionType: actions[0].type,
|
1456
1458
|
more_actions_needed_by_instruction: true,
|
1457
1459
|
log: "",
|
1460
|
+
summary: action_summary || "Generated VLM action plan",
|
1458
1461
|
yamlFlow: planResult.yamlFlow
|
1459
1462
|
},
|
1460
1463
|
cache: {
|
@@ -2049,7 +2052,7 @@ import { ifInBrowser as ifInBrowser2 } from "misoai-shared/utils";
|
|
2049
2052
|
import semver from "semver";
|
2050
2053
|
|
2051
2054
|
// package.json
|
2052
|
-
var version = "1.6.
|
2055
|
+
var version = "1.6.2";
|
2053
2056
|
|
2054
2057
|
// src/common/task-cache.ts
|
2055
2058
|
var debug3 = getDebug3("cache");
|
@@ -3344,7 +3347,7 @@ function sleep2(ms) {
|
|
3344
3347
|
var ChromeExtensionProxyPage = class {
|
3345
3348
|
constructor(forceSameTabNavigation) {
|
3346
3349
|
this.pageType = "chrome-extension-proxy";
|
3347
|
-
this.version = "1.6.
|
3350
|
+
this.version = "1.6.2";
|
3348
3351
|
this.activeTabId = null;
|
3349
3352
|
this.tabIdOfDebuggerAttached = null;
|
3350
3353
|
this.attachingDebugger = null;
|