@mastra/dynamodb 0.13.3-alpha.0 → 0.13.3
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/_tsup-dts-rollup.d.cts +1 -0
- package/dist/_tsup-dts-rollup.d.ts +1 -0
- package/dist/index.cjs +2 -1
- package/dist/index.js +2 -1
- package/package.json +6 -6
- package/src/storage/index.ts +1 -0
package/dist/index.cjs
CHANGED
|
@@ -2763,7 +2763,8 @@ var DynamoDBStore = class extends storage.MastraStorage {
|
|
|
2763
2763
|
selectByIncludeResourceScope: true,
|
|
2764
2764
|
resourceWorkingMemory: true,
|
|
2765
2765
|
hasColumn: false,
|
|
2766
|
-
createTable: false
|
|
2766
|
+
createTable: false,
|
|
2767
|
+
deleteMessages: false
|
|
2767
2768
|
};
|
|
2768
2769
|
}
|
|
2769
2770
|
/**
|
package/dist/index.js
CHANGED
|
@@ -2761,7 +2761,8 @@ var DynamoDBStore = class extends MastraStorage {
|
|
|
2761
2761
|
selectByIncludeResourceScope: true,
|
|
2762
2762
|
resourceWorkingMemory: true,
|
|
2763
2763
|
hasColumn: false,
|
|
2764
|
-
createTable: false
|
|
2764
|
+
createTable: false,
|
|
2765
|
+
deleteMessages: false
|
|
2765
2766
|
};
|
|
2766
2767
|
}
|
|
2767
2768
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/dynamodb",
|
|
3
|
-
"version": "0.13.3
|
|
3
|
+
"version": "0.13.3",
|
|
4
4
|
"description": "DynamoDB storage adapter for Mastra",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -28,21 +28,21 @@
|
|
|
28
28
|
"electrodb": "^3.4.3"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@mastra/core": ">=0.10.7-0 <0.
|
|
31
|
+
"@mastra/core": ">=0.10.7-0 <0.13.0-0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@microsoft/api-extractor": "^7.52.8",
|
|
35
35
|
"@types/node": "^20.19.0",
|
|
36
36
|
"@vitest/coverage-v8": "3.2.3",
|
|
37
37
|
"@vitest/ui": "3.2.3",
|
|
38
|
-
"axios": "^1.
|
|
38
|
+
"axios": "^1.11.0",
|
|
39
39
|
"eslint": "^9.30.1",
|
|
40
40
|
"tsup": "^8.5.0",
|
|
41
41
|
"typescript": "^5.8.3",
|
|
42
42
|
"vitest": "^3.2.4",
|
|
43
|
-
"@internal/
|
|
44
|
-
"@internal/
|
|
45
|
-
"@mastra/core": "0.12.0
|
|
43
|
+
"@internal/lint": "0.0.24",
|
|
44
|
+
"@internal/storage-test-utils": "0.0.20",
|
|
45
|
+
"@mastra/core": "0.12.0"
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"build": "tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting",
|