misoai-web 1.5.9 → 1.6.0
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 +56 -7
- package/dist/es/agent.js.map +1 -1
- package/dist/es/bridge-mode-browser.js +3 -3
- package/dist/es/bridge-mode.js +58 -9
- package/dist/es/bridge-mode.js.map +1 -1
- package/dist/es/chrome-extension.js +57 -8
- package/dist/es/chrome-extension.js.map +1 -1
- package/dist/es/index.js +56 -7
- package/dist/es/index.js.map +1 -1
- package/dist/es/midscene-playground.js +56 -7
- package/dist/es/midscene-playground.js.map +1 -1
- package/dist/es/playground.js +56 -7
- package/dist/es/playground.js.map +1 -1
- package/dist/es/playwright.js +56 -7
- package/dist/es/playwright.js.map +1 -1
- package/dist/es/puppeteer-agent-launcher.js +56 -7
- package/dist/es/puppeteer-agent-launcher.js.map +1 -1
- package/dist/es/puppeteer.js +56 -7
- package/dist/es/puppeteer.js.map +1 -1
- package/dist/lib/agent.js +56 -7
- package/dist/lib/agent.js.map +1 -1
- package/dist/lib/bridge-mode-browser.js +3 -3
- package/dist/lib/bridge-mode.js +58 -9
- package/dist/lib/bridge-mode.js.map +1 -1
- package/dist/lib/chrome-extension.js +57 -8
- package/dist/lib/chrome-extension.js.map +1 -1
- package/dist/lib/index.js +56 -7
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/midscene-playground.js +56 -7
- package/dist/lib/midscene-playground.js.map +1 -1
- package/dist/lib/playground.js +56 -7
- package/dist/lib/playground.js.map +1 -1
- package/dist/lib/playwright.js +56 -7
- package/dist/lib/playwright.js.map +1 -1
- package/dist/lib/puppeteer-agent-launcher.js +56 -7
- package/dist/lib/puppeteer-agent-launcher.js.map +1 -1
- package/dist/lib/puppeteer.js +56 -7
- package/dist/lib/puppeteer.js.map +1 -1
- package/dist/types/agent.d.ts +8 -1
- package/package.json +1 -1
package/dist/types/agent.d.ts
CHANGED
@@ -111,7 +111,7 @@ declare class PageTaskExecutor {
|
|
111
111
|
/**
|
112
112
|
* Persistent executor'ı getirir veya oluşturur
|
113
113
|
*/
|
114
|
-
|
114
|
+
getPersistentExecutor(): Executor;
|
115
115
|
/**
|
116
116
|
* Sayfa bağlamını günceller
|
117
117
|
*/
|
@@ -176,6 +176,10 @@ declare class PageTaskExecutor {
|
|
176
176
|
private appendConversationHistory;
|
177
177
|
private appendErrorPlan;
|
178
178
|
waitFor(assertion: string, opt: PlanningActionParamWaitFor): Promise<ExecutionResult<void>>;
|
179
|
+
/**
|
180
|
+
* Hafızaya yeni bir öğe ekler
|
181
|
+
*/
|
182
|
+
addToMemory(memoryItem: MemoryItem): void;
|
179
183
|
}
|
180
184
|
|
181
185
|
/**
|
@@ -273,6 +277,9 @@ interface PageAgentOpt {
|
|
273
277
|
aiActionContext?: string;
|
274
278
|
waitForNavigationTimeout?: number;
|
275
279
|
waitForNetworkIdleTimeout?: number;
|
280
|
+
memoryConfig?: Partial<MemoryConfig>;
|
281
|
+
sessionId?: string;
|
282
|
+
workflowId?: string;
|
276
283
|
}
|
277
284
|
declare class PageAgent<PageType extends WebPage = WebPage> {
|
278
285
|
page: PageType;
|