usebeeline 0.0.112 → 0.0.113

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.
@@ -26386,7 +26386,7 @@ async function collectConnectWizard(prompts = clackPrompts, loadModels = loadCon
26386
26386
  placeholder: "Type to filter available models\u2026",
26387
26387
  maxItems: 12
26388
26388
  });
26389
- return picked.trim();
26389
+ return (picked ?? "").trim();
26390
26390
  };
26391
26391
  const askEffort = async (catalog2, forHarness, model2, forProvider, forKey) => {
26392
26392
  if (!catalog2.effort)
@@ -26413,7 +26413,7 @@ async function collectConnectWizard(prompts = clackPrompts, loadModels = loadCon
26413
26413
  })),
26414
26414
  ...axis.options.some((choice) => choice.id === axis.currentValue) ? { initialValue: axis.currentValue } : {}
26415
26415
  });
26416
- return picked.trim();
26416
+ return (picked ?? "").trim();
26417
26417
  };
26418
26418
  const probe = async (candidate) => {
26419
26419
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "usebeeline",
3
- "version": "0.0.112",
3
+ "version": "0.0.113",
4
4
  "description": "Connect an AI coding agent to Beeline with one command.",
5
5
  "homepage": "https://usebeeline.app",
6
6
  "bugs": {