@mastra/dynamodb 0.10.4 → 0.10.5-alpha.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/dynamodb",
3
- "version": "0.10.4",
3
+ "version": "0.10.5-alpha.0",
4
4
  "description": "DynamoDB storage adapter for Mastra",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,26 +23,26 @@
23
23
  "src"
24
24
  ],
25
25
  "dependencies": {
26
- "@aws-sdk/client-dynamodb": "^3.823.0",
27
- "@aws-sdk/lib-dynamodb": "^3.823.0",
28
- "electrodb": "^3.4.1"
26
+ "@aws-sdk/client-dynamodb": "^3.826.0",
27
+ "@aws-sdk/lib-dynamodb": "^3.826.0",
28
+ "electrodb": "^3.4.3"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "@mastra/core": ">=0.10.4-0 <0.11.0"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@microsoft/api-extractor": "^7.52.8",
35
- "@types/node": "^20.17.57",
35
+ "@types/node": "^20.19.0",
36
36
  "@vitest/coverage-v8": "3.2.2",
37
37
  "@vitest/ui": "3.2.2",
38
38
  "axios": "^1.9.0",
39
39
  "eslint": "^9.28.0",
40
40
  "tsup": "^8.5.0",
41
- "typescript": "^5.8.2",
42
- "vitest": "^3.2.2",
43
- "@internal/lint": "0.0.11",
44
- "@mastra/core": "0.10.4",
45
- "@internal/storage-test-utils": "0.0.7"
41
+ "typescript": "^5.8.3",
42
+ "vitest": "^3.2.3",
43
+ "@mastra/core": "0.10.6-alpha.0",
44
+ "@internal/lint": "0.0.12",
45
+ "@internal/storage-test-utils": "0.0.8"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting",
@@ -325,6 +325,7 @@ describe('DynamoDBStore Integration Tests', () => {
325
325
  suspendedPaths: { test: [1] },
326
326
  runId: 'test-run-large', // Use unique runId
327
327
  timestamp: now,
328
+ status: 'success',
328
329
  };
329
330
 
330
331
  await expect(
@@ -547,6 +548,7 @@ describe('DynamoDBStore Integration Tests', () => {
547
548
  suspendedPaths: { test: [1] },
548
549
  runId: 'mixed-run',
549
550
  timestamp: Date.now(),
551
+ status: 'success',
550
552
  };
551
553
  await store.persistWorkflowSnapshot({ workflowName, runId: 'mixed-run', snapshot: workflowSnapshot });
552
554
 
@@ -861,6 +863,7 @@ describe('DynamoDBStore Integration Tests', () => {
861
863
  suspendedPaths: {},
862
864
  runId: runId,
863
865
  timestamp: createdAt.getTime(),
866
+ status: 'success',
864
867
  ...(resourceId && { resourceId: resourceId }), // Conditionally add resourceId to snapshot
865
868
  };
866
869
  return {