@codemation/eventbus-redis 0.0.29 → 0.0.30

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/eventbus-redis
2
2
 
3
+ ## 0.0.30
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`a250ab8`](https://github.com/MadeRelevant/codemation/commit/a250ab8b973429cdfe708526a205e2565b004868), [`782e934`](https://github.com/MadeRelevant/codemation/commit/782e93469ea6eee701d976b8f1dc18649d045c79), [`052aba1`](https://github.com/MadeRelevant/codemation/commit/052aba17c9a4faf557bdfaa1a9644a1987ecc25e), [`1a356af`](https://github.com/MadeRelevant/codemation/commit/1a356afae50bd3f982e92c3e9f931e3adbcd131f)]:
8
+ - @codemation/core@0.8.0
9
+
3
10
  ## 0.0.29
4
11
 
5
12
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -79,6 +79,7 @@ interface NodeExecutionError {
79
79
  message: string;
80
80
  name?: string;
81
81
  stack?: string;
82
+ details?: JsonValue;
82
83
  }
83
84
  interface NodeExecutionSnapshot {
84
85
  runId: RunId;
@@ -291,6 +292,9 @@ type WorkflowStoragePolicyMode = "ALL" | "SUCCESS" | "ERROR" | "NEVER";
291
292
  interface PersistedRunPolicySnapshot {
292
293
  readonly retentionSeconds?: number;
293
294
  readonly binaryRetentionSeconds?: number;
295
+ readonly telemetrySpanRetentionSeconds?: number;
296
+ readonly telemetryArtifactRetentionSeconds?: number;
297
+ readonly telemetryMetricRetentionSeconds?: number;
294
298
  readonly storagePolicy: WorkflowStoragePolicyMode;
295
299
  }
296
300
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemation/eventbus-redis",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "ioredis": "^5.7.0",
32
- "@codemation/core": "0.7.0"
32
+ "@codemation/core": "0.8.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "^25.3.5",