@almadar/std 16.28.0 → 16.28.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/registry.js CHANGED
@@ -480,6 +480,18 @@ var CORE_OPERATORS = {
480
480
  example: '["notify", "in_app", "Task created successfully"]',
481
481
  effect: { kind: "notify" }
482
482
  },
483
+ log: {
484
+ module: "core",
485
+ category: "effect",
486
+ minArity: 1,
487
+ maxArity: 1,
488
+ description: "Emit a structured info log line (compiled + runtime)",
489
+ hasSideEffects: true,
490
+ returnType: "void",
491
+ params: [{ name: "message", type: STRING, description: "Log message" }],
492
+ example: '["log", "Context below compact threshold"]',
493
+ effect: { kind: "log" }
494
+ },
483
495
  spawn: {
484
496
  module: "core",
485
497
  category: "effect",