@codemation/eventbus-redis 0.0.29 → 0.0.31
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 +14 -0
- package/dist/index.d.ts +4 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @codemation/eventbus-redis
|
|
2
2
|
|
|
3
|
+
## 0.0.31
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`7eaa288`](https://github.com/MadeRelevant/codemation/commit/7eaa288737f2d126218dac84fa4fde2a4113b7f3)]:
|
|
8
|
+
- @codemation/core@0.8.1
|
|
9
|
+
|
|
10
|
+
## 0.0.30
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 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)]:
|
|
15
|
+
- @codemation/core@0.8.0
|
|
16
|
+
|
|
3
17
|
## 0.0.29
|
|
4
18
|
|
|
5
19
|
### 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.
|
|
3
|
+
"version": "0.0.31",
|
|
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.
|
|
32
|
+
"@codemation/core": "0.8.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "^25.3.5",
|