donobu 5.25.3 → 5.25.5

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.
@@ -62,6 +62,7 @@ export { type TargetRuntimeParams, type TargetRuntimePlugin, TargetRuntimePlugin
62
62
  export * from './tools/ReplayableInteraction';
63
63
  export * from './tools/Tool';
64
64
  export * from './utils/createTool';
65
+ export * from './utils/FlowLogBuffer';
65
66
  export * from './utils/JsonSchemaUtils';
66
67
  export * from './utils/JsonUtils';
67
68
  export * from './utils/Logger';
package/dist/esm/main.js CHANGED
@@ -92,6 +92,7 @@ Object.defineProperty(exports, "TargetRuntimePluginRegistry", { enumerable: true
92
92
  __exportStar(require("./tools/ReplayableInteraction"), exports);
93
93
  __exportStar(require("./tools/Tool"), exports);
94
94
  __exportStar(require("./utils/createTool"), exports);
95
+ __exportStar(require("./utils/FlowLogBuffer"), exports);
95
96
  __exportStar(require("./utils/JsonSchemaUtils"), exports);
96
97
  __exportStar(require("./utils/JsonUtils"), exports);
97
98
  __exportStar(require("./utils/Logger"), exports);
package/dist/main.d.ts CHANGED
@@ -62,6 +62,7 @@ export { type TargetRuntimeParams, type TargetRuntimePlugin, TargetRuntimePlugin
62
62
  export * from './tools/ReplayableInteraction';
63
63
  export * from './tools/Tool';
64
64
  export * from './utils/createTool';
65
+ export * from './utils/FlowLogBuffer';
65
66
  export * from './utils/JsonSchemaUtils';
66
67
  export * from './utils/JsonUtils';
67
68
  export * from './utils/Logger';
package/dist/main.js CHANGED
@@ -92,6 +92,7 @@ Object.defineProperty(exports, "TargetRuntimePluginRegistry", { enumerable: true
92
92
  __exportStar(require("./tools/ReplayableInteraction"), exports);
93
93
  __exportStar(require("./tools/Tool"), exports);
94
94
  __exportStar(require("./utils/createTool"), exports);
95
+ __exportStar(require("./utils/FlowLogBuffer"), exports);
95
96
  __exportStar(require("./utils/JsonSchemaUtils"), exports);
96
97
  __exportStar(require("./utils/JsonUtils"), exports);
97
98
  __exportStar(require("./utils/Logger"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "donobu",
3
- "version": "5.25.3",
3
+ "version": "5.25.5",
4
4
  "description": "Create browser automations with an LLM agent and replay them as Playwright scripts.",
5
5
  "main": "dist/main.js",
6
6
  "module": "dist/esm/main.js",