agent-web-os 0.1.12 → 0.1.13
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/index.cjs +1 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -251,7 +251,7 @@ declare function createBrowserBashSession(options?: BrowserBashSessionOptions):
|
|
|
251
251
|
/** Execute a bash command and return a ToolResult */
|
|
252
252
|
declare function executeBrowserBash(session: BrowserBashSession, command: string, options?: ExecuteBrowserBashOptions): Promise<ToolResult>;
|
|
253
253
|
|
|
254
|
-
declare const AGENT_WEB_OS_VERSION = "0.1.
|
|
254
|
+
declare const AGENT_WEB_OS_VERSION = "0.1.13";
|
|
255
255
|
|
|
256
256
|
type ServerBridge = {
|
|
257
257
|
initServiceWorker(): Promise<void>;
|
package/dist/index.d.ts
CHANGED
|
@@ -251,7 +251,7 @@ declare function createBrowserBashSession(options?: BrowserBashSessionOptions):
|
|
|
251
251
|
/** Execute a bash command and return a ToolResult */
|
|
252
252
|
declare function executeBrowserBash(session: BrowserBashSession, command: string, options?: ExecuteBrowserBashOptions): Promise<ToolResult>;
|
|
253
253
|
|
|
254
|
-
declare const AGENT_WEB_OS_VERSION = "0.1.
|
|
254
|
+
declare const AGENT_WEB_OS_VERSION = "0.1.13";
|
|
255
255
|
|
|
256
256
|
type ServerBridge = {
|
|
257
257
|
initServiceWorker(): Promise<void>;
|
package/dist/index.js
CHANGED
|
@@ -55509,11 +55509,6 @@ exports.LRUCache = LRUCache;
|
|
|
55509
55509
|
}
|
|
55510
55510
|
};
|
|
55511
55511
|
walkNodeModules(nodeModulesDir);
|
|
55512
|
-
if (patchCount === 0) {
|
|
55513
|
-
console.warn(`[agent-web-os] lru-cache patch: no lru-cache found in ${nodeModulesDir}`);
|
|
55514
|
-
} else {
|
|
55515
|
-
console.log(`[agent-web-os] lru-cache patch: patched ${patchCount} installation(s) in ${nodeModulesDir}`);
|
|
55516
|
-
}
|
|
55517
55512
|
}
|
|
55518
55513
|
async registerGlobalBinCommands(packageName) {
|
|
55519
55514
|
if (!this.binCommandRegistrar) return;
|
|
@@ -56635,8 +56630,7 @@ async function executeBrowserBash(session, command, options2 = {}) {
|
|
|
56635
56630
|
}
|
|
56636
56631
|
|
|
56637
56632
|
// src/index.ts
|
|
56638
|
-
var AGENT_WEB_OS_VERSION = "0.1.
|
|
56639
|
-
console.log(`[agent-web-os] v${AGENT_WEB_OS_VERSION}`);
|
|
56633
|
+
var AGENT_WEB_OS_VERSION = "0.1.13";
|
|
56640
56634
|
var getServerBridge2 = getServerBridge;
|
|
56641
56635
|
var resetServerBridge2 = resetServerBridge;
|
|
56642
56636
|
export {
|