@gravity-platform/aws-dynamodb 1.1.3 → 1.1.5

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.
Files changed (1) hide show
  1. package/package.json +42 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-platform/aws-dynamodb",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "AWS DynamoDB integration for Gravity workflow system - includes put, fetch, and service operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -32,7 +32,6 @@
32
32
  "dependencies": {
33
33
  "@aws-sdk/client-dynamodb": "^3.886.0",
34
34
  "@aws-sdk/lib-dynamodb": "^3.886.0",
35
- "@gravity-platform/plugin-base": "*",
36
35
  "zod": "^4.4.3"
37
36
  },
38
37
  "devDependencies": {
@@ -44,11 +43,49 @@
44
43
  "typescript": "^5.0.0"
45
44
  },
46
45
  "gravity": {
46
+ "displayName": "AWS DynamoDB",
47
+ "category": "storage",
47
48
  "logoUrl": "https://res.cloudinary.com/sonik/image/upload/v1751473913/gravity/icons/DynamoDB.png",
48
49
  "nodes": [
49
- "DynamoDB",
50
- "DynamoDB Fetch",
51
- "DynamoDB Service"
50
+ {
51
+ "name": "DynamoDB",
52
+ "type": "PromiseNode",
53
+ "description": "Put items into DynamoDB tables with automatic marshalling",
54
+ "category": "Storage",
55
+ "mcp": false
56
+ },
57
+ {
58
+ "name": "DynamoDB Fetch",
59
+ "type": "PromiseNode",
60
+ "description": "Query and scan DynamoDB tables with filter expressions",
61
+ "category": "Storage",
62
+ "mcp": false
63
+ },
64
+ {
65
+ "name": "DynamoDB Service",
66
+ "type": "PromiseNode",
67
+ "description": "MCP-exposed DynamoDB operations for agent tool calls",
68
+ "category": "Storage",
69
+ "mcp": true
70
+ }
71
+ ],
72
+ "features": [
73
+ "Put & batch write",
74
+ "Query with key conditions",
75
+ "Scan with filters",
76
+ "MCP service interface",
77
+ "Auto marshalling/unmarshalling"
78
+ ],
79
+ "credentials": [
80
+ {
81
+ "name": "AWS Credentials",
82
+ "type": "awsCredentials",
83
+ "required": true,
84
+ "description": "AWS access key + secret with DynamoDB permissions"
85
+ }
52
86
  ]
87
+ },
88
+ "peerDependencies": {
89
+ "@gravity-platform/plugin-base": ">=1.0.0"
53
90
  }
54
91
  }