@codemation/node-example 0.0.43 → 0.0.44

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @codemation/node-example
2
2
 
3
+ ## 0.0.44
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`675260a`](https://github.com/MadeRelevant/codemation/commit/675260aa7a30c55a34b5a6107ad2222937f4a769), [`13f9f11`](https://github.com/MadeRelevant/codemation/commit/13f9f11454855f44cd0849ea7e8f0c60f4a28964), [`675260a`](https://github.com/MadeRelevant/codemation/commit/675260aa7a30c55a34b5a6107ad2222937f4a769), [`675260a`](https://github.com/MadeRelevant/codemation/commit/675260aa7a30c55a34b5a6107ad2222937f4a769), [`0881b46`](https://github.com/MadeRelevant/codemation/commit/0881b4676d2db29f36415d9b47709128d4c15e0e)]:
8
+ - @codemation/core@0.14.0
9
+
3
10
  ## 0.0.43
4
11
 
5
12
  ### Patch Changes
package/dist/index.d.cts CHANGED
@@ -284,6 +284,13 @@ interface NodeConfigBase {
284
284
  readonly name?: string;
285
285
  readonly id?: NodeId;
286
286
  readonly icon?: string;
287
+ /**
288
+ * Plain-language, non-technical explanation of what this node does, surfaced in the workflow
289
+ * inspector / node properties sidebar. A first-class config option every authorable node accepts
290
+ * directly (alongside `id`), so it flows into the persisted config the mappers read. Distinct from
291
+ * {@link inspectorSummary} (config-derived label/value rows).
292
+ */
293
+ readonly description?: string;
287
294
  readonly execution?: Readonly<{
288
295
  hint?: "local" | "worker";
289
296
  queue?: string;
package/dist/index.d.ts CHANGED
@@ -284,6 +284,13 @@ interface NodeConfigBase {
284
284
  readonly name?: string;
285
285
  readonly id?: NodeId;
286
286
  readonly icon?: string;
287
+ /**
288
+ * Plain-language, non-technical explanation of what this node does, surfaced in the workflow
289
+ * inspector / node properties sidebar. A first-class config option every authorable node accepts
290
+ * directly (alongside `id`), so it flows into the persisted config the mappers read. Distinct from
291
+ * {@link inspectorSummary} (config-derived label/value rows).
292
+ */
293
+ readonly description?: string;
287
294
  readonly execution?: Readonly<{
288
295
  hint?: "local" | "worker";
289
296
  queue?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemation/node-example",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -28,7 +28,7 @@
28
28
  }
29
29
  },
30
30
  "dependencies": {
31
- "@codemation/core": "0.13.2"
31
+ "@codemation/core": "0.14.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/node": "^25.3.5",