adhdev 0.9.82-rc.12 → 0.9.82-rc.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.js CHANGED
@@ -47141,14 +47141,8 @@ var init_router = __esm({
47141
47141
  case "get_mesh": {
47142
47142
  const meshId = typeof args?.meshId === "string" ? args.meshId.trim() : "";
47143
47143
  if (!meshId) return { success: false, error: "meshId required" };
47144
- try {
47145
- const { getMesh: getMesh3 } = await Promise.resolve().then(() => (init_mesh_config(), mesh_config_exports));
47146
- const mesh = getMesh3(meshId);
47147
- if (mesh) return { success: true, mesh };
47148
- } catch {
47149
- }
47150
- const cached2 = this.inlineMeshCache.get(meshId);
47151
- if (cached2) return { success: true, mesh: cached2 };
47144
+ const meshRecord = await this.getMeshForCommand(meshId, args?.inlineMesh, { preferInline: true });
47145
+ if (meshRecord?.mesh) return { success: true, mesh: meshRecord.mesh };
47152
47146
  return { success: false, error: "Mesh not found" };
47153
47147
  }
47154
47148
  case "create_mesh": {
@@ -66926,7 +66920,7 @@ var init_adhdev_daemon = __esm({
66926
66920
  init_version();
66927
66921
  init_src();
66928
66922
  init_runtime_defaults();
66929
- pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.12" });
66923
+ pkgVersion = resolvePackageVersion({ injectedVersion: "0.9.82-rc.13" });
66930
66924
  AdhdevDaemon = class _AdhdevDaemon {
66931
66925
  localHttpServer = null;
66932
66926
  localWss = null;
@@ -68460,7 +68454,7 @@ var require_yoctocolors_cjs = __commonJS({
68460
68454
  }
68461
68455
  });
68462
68456
 
68463
- // ../../node_modules/@inquirer/figures/dist/esm/index.js
68457
+ // ../../node_modules/@inquirer/figures/dist/esm/index.mjs
68464
68458
  function isUnicodeSupported() {
68465
68459
  if (import_node_process3.default.platform !== "win32") {
68466
68460
  return import_node_process3.default.env["TERM"] !== "linux";
@@ -68472,7 +68466,7 @@ function isUnicodeSupported() {
68472
68466
  }
68473
68467
  var import_node_process3, common2, specialMainSymbols, specialFallbackSymbols, mainSymbols, fallbackSymbols, shouldUseMain, figures, esm_default, replacements;
68474
68468
  var init_esm3 = __esm({
68475
- "../../node_modules/@inquirer/figures/dist/esm/index.js"() {
68469
+ "../../node_modules/@inquirer/figures/dist/esm/index.mjs"() {
68476
68470
  "use strict";
68477
68471
  import_node_process3 = __toESM(require("process"), 1);
68478
68472
  common2 = {
@@ -68743,10 +68737,7 @@ var init_esm3 = __esm({
68743
68737
  oneNinth: "1/9",
68744
68738
  oneTenth: "1/10"
68745
68739
  };
68746
- mainSymbols = {
68747
- ...common2,
68748
- ...specialMainSymbols
68749
- };
68740
+ mainSymbols = { ...common2, ...specialMainSymbols };
68750
68741
  fallbackSymbols = {
68751
68742
  ...common2,
68752
68743
  ...specialFallbackSymbols