@docyrus/docyrus 0.0.60 → 0.0.62

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/main.js CHANGED
@@ -139349,7 +139349,7 @@ function buildInputSchema(args2, env2, options2) {
139349
139349
  // package.json
139350
139350
  var package_default = {
139351
139351
  name: "@docyrus/docyrus",
139352
- version: "0.0.60",
139352
+ version: "0.0.62",
139353
139353
  private: false,
139354
139354
  description: "Docyrus API CLI",
139355
139355
  main: "./main.js",
@@ -139867,7 +139867,8 @@ function createServerCli(dependencies) {
139867
139867
  apiKey: external_exports.string().optional().describe("Temporary provider API key override for this run"),
139868
139868
  auth: external_exports.string().optional().describe("Require this bearer token for all HTTP requests"),
139869
139869
  verbose: external_exports.boolean().optional().describe("Enable verbose pi startup output"),
139870
- sandbox: external_exports.boolean().optional().describe("Enable sandbox browser mode (remote Cloudflare Browser Rendering)")
139870
+ sandbox: external_exports.boolean().optional().describe("Enable sandbox browser mode (remote Cloudflare Browser Rendering)"),
139871
+ desktop: external_exports.boolean().optional().describe("Enable desktop browser automation tools (docyrus_browser_*)")
139871
139872
  }),
139872
139873
  run: async (context) => {
139873
139874
  await dependencies.launchPiAgentServer({
@@ -139880,7 +139881,8 @@ function createServerCli(dependencies) {
139880
139881
  apiKey: context.options.apiKey,
139881
139882
  auth: context.options.auth,
139882
139883
  verbose: context.options.verbose || hasRawVerboseFlag2() ? true : void 0,
139883
- sandbox: context.options.sandbox
139884
+ sandbox: context.options.sandbox,
139885
+ desktop: context.options.desktop
139884
139886
  });
139885
139887
  }
139886
139888
  });
@@ -154689,7 +154691,8 @@ function createPiAgentServerLauncher(options2) {
154689
154691
  DOCYRUS_CLI_ENTRY: cliEntryPath,
154690
154692
  DOCYRUS_CLI_SCOPE: options2.settingsPaths.scope,
154691
154693
  OFFICECLI_SKIP_UPDATE: "1",
154692
- ...request.sandbox ? { DOCYRUS_BROWSER_SANDBOX: "1" } : {}
154694
+ ...request.sandbox ? { DOCYRUS_BROWSER_SANDBOX: "1" } : {},
154695
+ ...request.desktop ? { DOCYRUS_DESKTOP_TOOLS: "1" } : {}
154693
154696
  }
154694
154697
  });
154695
154698
  await new Promise((resolve2, reject) => {