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.
Files changed (53) hide show
  1. package/dist/es/agent.js +4 -1
  2. package/dist/es/agent.js.map +1 -1
  3. package/dist/es/bridge-mode-browser.js +3 -3
  4. package/dist/es/bridge-mode.js +6 -3
  5. package/dist/es/bridge-mode.js.map +1 -1
  6. package/dist/es/chrome-extension.js +5 -2
  7. package/dist/es/chrome-extension.js.map +1 -1
  8. package/dist/es/index.js +320 -18
  9. package/dist/es/index.js.map +1 -1
  10. package/dist/es/midscene-playground.js +4 -1
  11. package/dist/es/midscene-playground.js.map +1 -1
  12. package/dist/es/playground.js +4 -1
  13. package/dist/es/playground.js.map +1 -1
  14. package/dist/es/playwright.js +320 -18
  15. package/dist/es/playwright.js.map +1 -1
  16. package/dist/es/puppeteer-agent-launcher.js +320 -18
  17. package/dist/es/puppeteer-agent-launcher.js.map +1 -1
  18. package/dist/es/puppeteer.js +320 -18
  19. package/dist/es/puppeteer.js.map +1 -1
  20. package/dist/lib/agent.js +4 -1
  21. package/dist/lib/agent.js.map +1 -1
  22. package/dist/lib/bridge-mode-browser.js +3 -3
  23. package/dist/lib/bridge-mode.js +6 -3
  24. package/dist/lib/bridge-mode.js.map +1 -1
  25. package/dist/lib/chrome-extension.js +5 -2
  26. package/dist/lib/chrome-extension.js.map +1 -1
  27. package/dist/lib/index.js +320 -18
  28. package/dist/lib/index.js.map +1 -1
  29. package/dist/lib/midscene-playground.js +4 -1
  30. package/dist/lib/midscene-playground.js.map +1 -1
  31. package/dist/lib/playground.js +4 -1
  32. package/dist/lib/playground.js.map +1 -1
  33. package/dist/lib/playwright.js +320 -18
  34. package/dist/lib/playwright.js.map +1 -1
  35. package/dist/lib/puppeteer-agent-launcher.js +320 -18
  36. package/dist/lib/puppeteer-agent-launcher.js.map +1 -1
  37. package/dist/lib/puppeteer.js +320 -18
  38. package/dist/lib/puppeteer.js.map +1 -1
  39. package/dist/types/agent.d.ts +1 -1
  40. package/dist/types/bridge-mode-browser.d.ts +2 -2
  41. package/dist/types/bridge-mode.d.ts +2 -2
  42. package/dist/types/{browser-9b472ffb.d.ts → browser-f205f69d.d.ts} +1 -1
  43. package/dist/types/chrome-extension.d.ts +2 -2
  44. package/dist/types/index.d.ts +1 -1
  45. package/dist/types/midscene-server.d.ts +1 -1
  46. package/dist/types/{page-ed0ecb44.d.ts → page-c5452809.d.ts} +45 -0
  47. package/dist/types/playground.d.ts +2 -2
  48. package/dist/types/playwright.d.ts +1 -1
  49. package/dist/types/puppeteer-agent-launcher.d.ts +1 -1
  50. package/dist/types/puppeteer.d.ts +2 -2
  51. package/dist/types/utils.d.ts +1 -1
  52. package/dist/types/yaml.d.ts +1 -1
  53. 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.1";
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.1";
3366
+ this.version = "1.6.2";
3364
3367
  this.activeTabId = null;
3365
3368
  this.tabIdOfDebuggerAttached = null;
3366
3369
  this.attachingDebugger = null;