@adhdev/daemon-standalone 1.0.39 → 1.0.40-rc.1

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
@@ -31423,9 +31423,9 @@ var require_streamx = __commonJS({
31423
31423
  }
31424
31424
  });
31425
31425
 
31426
- // ../daemon-core/node_modules/b4a/index.js
31426
+ // ../../node_modules/tar-stream/node_modules/b4a/index.js
31427
31427
  var require_b4a2 = __commonJS({
31428
- "../daemon-core/node_modules/b4a/index.js"(exports2, module2) {
31428
+ "../../node_modules/tar-stream/node_modules/b4a/index.js"(exports2, module2) {
31429
31429
  "use strict";
31430
31430
  function isBuffer(value) {
31431
31431
  return Buffer.isBuffer(value) || value instanceof Uint8Array;
@@ -31581,9 +31581,9 @@ var require_b4a2 = __commonJS({
31581
31581
  }
31582
31582
  });
31583
31583
 
31584
- // ../daemon-core/node_modules/tar-stream/headers.js
31584
+ // ../../node_modules/tar-stream/headers.js
31585
31585
  var require_headers = __commonJS({
31586
- "../daemon-core/node_modules/tar-stream/headers.js"(exports2) {
31586
+ "../../node_modules/tar-stream/headers.js"(exports2) {
31587
31587
  "use strict";
31588
31588
  var b4a = require_b4a2();
31589
31589
  var ZEROS = "0000000000000000000";
@@ -31844,9 +31844,9 @@ var require_headers = __commonJS({
31844
31844
  }
31845
31845
  });
31846
31846
 
31847
- // ../daemon-core/node_modules/tar-stream/extract.js
31847
+ // ../../node_modules/tar-stream/extract.js
31848
31848
  var require_extract = __commonJS({
31849
- "../daemon-core/node_modules/tar-stream/extract.js"(exports2, module2) {
31849
+ "../../node_modules/tar-stream/extract.js"(exports2, module2) {
31850
31850
  "use strict";
31851
31851
  var { Writable, Readable, getStreamError } = require_streamx();
31852
31852
  var FIFO = require_fast_fifo();
@@ -32189,9 +32189,9 @@ var require_extract = __commonJS({
32189
32189
  }
32190
32190
  });
32191
32191
 
32192
- // ../daemon-core/node_modules/tar-stream/constants.js
32192
+ // ../../node_modules/tar-stream/constants.js
32193
32193
  var require_constants = __commonJS({
32194
- "../daemon-core/node_modules/tar-stream/constants.js"(exports2, module2) {
32194
+ "../../node_modules/tar-stream/constants.js"(exports2, module2) {
32195
32195
  "use strict";
32196
32196
  var constants = {
32197
32197
  // just for envs without fs
@@ -32210,9 +32210,9 @@ var require_constants = __commonJS({
32210
32210
  }
32211
32211
  });
32212
32212
 
32213
- // ../daemon-core/node_modules/tar-stream/pack.js
32213
+ // ../../node_modules/tar-stream/pack.js
32214
32214
  var require_pack = __commonJS({
32215
- "../daemon-core/node_modules/tar-stream/pack.js"(exports2, module2) {
32215
+ "../../node_modules/tar-stream/pack.js"(exports2, module2) {
32216
32216
  "use strict";
32217
32217
  var { Readable, Writable, getStreamError } = require_streamx();
32218
32218
  var b4a = require_b4a2();
@@ -32445,9 +32445,9 @@ var require_pack = __commonJS({
32445
32445
  }
32446
32446
  });
32447
32447
 
32448
- // ../daemon-core/node_modules/tar-stream/index.js
32448
+ // ../../node_modules/tar-stream/index.js
32449
32449
  var require_tar_stream = __commonJS({
32450
- "../daemon-core/node_modules/tar-stream/index.js"(exports2) {
32450
+ "../../node_modules/tar-stream/index.js"(exports2) {
32451
32451
  "use strict";
32452
32452
  exports2.extract = require_extract();
32453
32453
  exports2.pack = require_pack();
@@ -32690,9 +32690,9 @@ var require_pump = __commonJS({
32690
32690
  }
32691
32691
  });
32692
32692
 
32693
- // ../daemon-core/node_modules/tar-fs/index.js
32693
+ // ../../node_modules/tar-fs/index.js
32694
32694
  var require_tar_fs = __commonJS({
32695
- "../daemon-core/node_modules/tar-fs/index.js"(exports2) {
32695
+ "../../node_modules/tar-fs/index.js"(exports2) {
32696
32696
  "use strict";
32697
32697
  var tar = require_tar_stream();
32698
32698
  var pump = require_pump();
@@ -36266,11 +36266,22 @@ var require_dist3 = __commonJS({
36266
36266
  type: "object",
36267
36267
  additionalProperties: false,
36268
36268
  required: ["text"],
36269
+ // Every property normalizeOperatingNote() reads must appear here:
36270
+ // additionalProperties stays false (typo defence), so a field the
36271
+ // loader accepts but the schema omits makes a VALID config fail
36272
+ // validation. operating-notes-schema-loader-parity.test.ts pins the
36273
+ // two sets together. `noteId` is deliberately absent — it is threaded
36274
+ // from the ledger entry at launch and never declared in a repo file,
36275
+ // so the loader does not read it.
36269
36276
  properties: {
36270
36277
  text: { type: "string", minLength: 1 },
36271
36278
  category: { enum: ["provider_quirk", "pattern_to_avoid", "recovery_lesson"] },
36272
36279
  createdAt: { type: "string" },
36273
- sourceCoordinator: { type: "string" }
36280
+ sourceCoordinator: { type: "string" },
36281
+ pinned: { type: "boolean" },
36282
+ expiresAt: { type: "string" },
36283
+ supersedes: { type: "string" },
36284
+ subjectKey: { type: "string" }
36274
36285
  }
36275
36286
  }
36276
36287
  },
@@ -36528,10 +36539,10 @@ var require_dist3 = __commonJS({
36528
36539
  }
36529
36540
  function getDaemonBuildInfo() {
36530
36541
  if (cached2) return cached2;
36531
- const commit = readInjected(true ? "0e4e467b525e0c6d5df45dfd98a142d0cc6ea6d4" : void 0) ?? "unknown";
36532
- const commitShort = readInjected(true ? "0e4e467" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
36533
- const version2 = readInjected(true ? "1.0.39" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
36534
- const builtAt = readInjected(true ? "2026-08-08T05:44:22.295Z" : void 0);
36542
+ const commit = readInjected(true ? "3ac178c61e7ae403ba195b41bed9032cbf510ae6" : void 0) ?? "unknown";
36543
+ const commitShort = readInjected(true ? "3ac178c6" : void 0) ?? (commit !== "unknown" ? commit.slice(0, 7) : "unknown");
36544
+ const version2 = readInjected(true ? "1.0.40-rc.1" : void 0) ?? readInjected(typeof process !== "undefined" ? process.env?.ADHDEV_PKG_VERSION : void 0) ?? "unknown";
36545
+ const builtAt = readInjected(true ? "2026-08-08T08:20:29.989Z" : void 0);
36535
36546
  cached2 = builtAt ? { commit, commitShort, version: version2, builtAt } : { commit, commitShort, version: version2 };
36536
36547
  return cached2;
36537
36548
  }
@@ -37789,7 +37800,7 @@ var require_dist3 = __commonJS({
37789
37800
  }
37790
37801
  });
37791
37802
  function resolveBuildTrack(env2 = process.env) {
37792
- const injected = true ? "" : void 0;
37803
+ const injected = true ? "preview" : void 0;
37793
37804
  const stamped = typeof injected === "string" ? injected.trim() : "";
37794
37805
  const raw = (stamped || (env2[BUILD_CHANNEL_ENV_VAR] ?? "").trim()).toLowerCase();
37795
37806
  return raw === "preview" || raw === "next" ? "preview" : "stable";