@mastra/cloudflare 0.10.3-alpha.3 → 0.10.4

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.cjs CHANGED
@@ -963,7 +963,10 @@ var CloudflareStore = class extends storage.MastraStorage {
963
963
  serializedStepGraph: data.serializedStepGraph,
964
964
  suspendedPaths: data.suspendedPaths || {},
965
965
  activePaths: data.activePaths || [],
966
- timestamp: data.timestamp || Date.now()
966
+ timestamp: data.timestamp || Date.now(),
967
+ status: data.status,
968
+ result: data.result,
969
+ error: data.error
967
970
  };
968
971
  }
969
972
  async persistWorkflowSnapshot(params) {
package/dist/index.js CHANGED
@@ -957,7 +957,10 @@ var CloudflareStore = class extends MastraStorage {
957
957
  serializedStepGraph: data.serializedStepGraph,
958
958
  suspendedPaths: data.suspendedPaths || {},
959
959
  activePaths: data.activePaths || [],
960
- timestamp: data.timestamp || Date.now()
960
+ timestamp: data.timestamp || Date.now(),
961
+ status: data.status,
962
+ result: data.result,
963
+ error: data.error
961
964
  };
962
965
  }
963
966
  async persistWorkflowSnapshot(params) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/cloudflare",
3
- "version": "0.10.3-alpha.3",
3
+ "version": "0.10.4",
4
4
  "description": "Cloudflare provider for Mastra - includes db storage capabilities",
5
5
  "type": "module",
6
6
  "files": [
@@ -35,9 +35,9 @@
35
35
  "tsup": "^8.5.0",
36
36
  "typescript": "^5.8.2",
37
37
  "vitest": "^3.2.2",
38
- "@internal/storage-test-utils": "0.0.6",
39
- "@internal/lint": "0.0.10",
40
- "@mastra/core": "0.10.4-alpha.3"
38
+ "@internal/lint": "0.0.12",
39
+ "@mastra/core": "0.10.5",
40
+ "@internal/storage-test-utils": "0.0.8"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@mastra/core": ">=0.10.4-0 <0.11.0"