@donggui/core 1.5.9 → 1.5.10
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/lib/types.js +3 -3
- package/dist/types/agent/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/lib/types.js
CHANGED
|
@@ -73,10 +73,10 @@ var __webpack_exports__ = {};
|
|
|
73
73
|
var __rspack_reexport = {};
|
|
74
74
|
for(const __rspack_import_key in _yaml__rspack_import_4)if ([
|
|
75
75
|
"UIContext",
|
|
76
|
-
"
|
|
76
|
+
"ServiceError",
|
|
77
77
|
"default",
|
|
78
|
-
"
|
|
79
|
-
"
|
|
78
|
+
"GroupedActionDump",
|
|
79
|
+
"ExecutionDump"
|
|
80
80
|
].indexOf(__rspack_import_key) < 0) __rspack_reexport[__rspack_import_key] = ()=>_yaml__rspack_import_4[__rspack_import_key];
|
|
81
81
|
__webpack_require__.d(__webpack_exports__, __rspack_reexport);
|
|
82
82
|
function _define_property(obj, key, value) {
|
|
@@ -2,9 +2,8 @@ export { Agent, createAgent } from './agent';
|
|
|
2
2
|
export { commonContextParser } from './utils';
|
|
3
3
|
export { getReportFileName, printReportMsg, } from './utils';
|
|
4
4
|
export { extractInsightParam, locateParamStr, paramStr, taskTitleStr, typeStr, } from './ui-utils';
|
|
5
|
-
export { type LocateCache, type PlanningCache, TaskCache } from './task-cache';
|
|
5
|
+
export { type LocateCache, type PlanningCache, TaskCache, type CacheFileContent, } from './task-cache';
|
|
6
6
|
export { cacheFileExt } from './task-cache';
|
|
7
|
-
export type { CacheFileContent } from './task-cache';
|
|
8
7
|
export type { CacheAdapter } from './cache-adapter';
|
|
9
8
|
export { TaskExecutor } from './tasks';
|
|
10
9
|
export { getCurrentExecutionFile } from './utils';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@donggui/core",
|
|
3
3
|
"description": "DongGUI Core - Automate browser actions, extract data, and perform assertions using AI.",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.10",
|
|
5
5
|
"repository": "https://github.com/web-infra-dev/midscene",
|
|
6
6
|
"homepage": "https://midscenejs.com/",
|
|
7
7
|
"main": "./dist/lib/index.js",
|