appostle-installer 0.0.23 → 0.0.24

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/worker.js CHANGED
@@ -62080,6 +62080,14 @@ function mergeMutableConfigIntoPersistedConfig(params) {
62080
62080
  identity: {
62081
62081
  ...persisted.daemon?.identity,
62082
62082
  ...icon === void 0 ? {} : { icon }
62083
+ },
62084
+ chrome: {
62085
+ ...persisted.daemon?.chrome,
62086
+ ...mutable.chrome?.enabled !== void 0 ? { enabled: mutable.chrome.enabled } : {}
62087
+ },
62088
+ playwright: {
62089
+ ...persisted.daemon?.playwright,
62090
+ ...mutable.playwright?.enabled !== void 0 ? { enabled: mutable.playwright.enabled } : {}
62083
62091
  }
62084
62092
  }
62085
62093
  };
@@ -64385,6 +64393,12 @@ async function createAppostleDaemon(config, rootLogger) {
64385
64393
  daemonConfigStore.onFieldChange("mcp.injectIntoAgents", (value) => {
64386
64394
  agentManager.setMcpBaseUrl(value ? mcpBaseUrl : null);
64387
64395
  });
64396
+ daemonConfigStore.onFieldChange("chrome.enabled", (value) => {
64397
+ agentManager.chromeEnabled = value ?? true;
64398
+ });
64399
+ daemonConfigStore.onFieldChange("playwright.enabled", (value) => {
64400
+ agentManager.playwrightEnabled = value ?? true;
64401
+ });
64388
64402
  const relayEnabled = config.relayEnabled ?? true;
64389
64403
  const relayEndpoint = config.relayEndpoint ?? "pair.appostle.app:443";
64390
64404
  const relayPublicEndpoint = config.relayPublicEndpoint ?? relayEndpoint;