@gravity-platform/cloudinary 1.1.3 → 1.1.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.
Files changed (1) hide show
  1. package/package.json +39 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-platform/cloudinary",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Cloudinary media management for Gravity workflow system - includes file listing and content retrieval",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -42,11 +42,46 @@
42
42
  "typescript": "^5.0.0"
43
43
  },
44
44
  "gravity": {
45
+ "displayName": "Cloudinary",
46
+ "category": "media",
45
47
  "logoUrl": "https://res.cloudinary.com/sonik/image/upload/v1754502687/gravity/icons/cloudinary_logo.png",
46
48
  "nodes": [
47
- "Cloudinary File Content",
48
- "Cloudinary Files",
49
- "Cloudinary Upload"
49
+ {
50
+ "name": "Cloudinary File Content",
51
+ "type": "PromiseNode",
52
+ "description": "Retrieve file content and metadata from Cloudinary assets",
53
+ "category": "Storage",
54
+ "mcp": false
55
+ },
56
+ {
57
+ "name": "Cloudinary Files",
58
+ "type": "PromiseNode",
59
+ "description": "List and search assets in Cloudinary folders with filtering",
60
+ "category": "Storage",
61
+ "mcp": false
62
+ },
63
+ {
64
+ "name": "Cloudinary Upload",
65
+ "type": "PromiseNode",
66
+ "description": "Upload images, videos, and files to Cloudinary with transformations",
67
+ "category": "Storage",
68
+ "mcp": false
69
+ }
70
+ ],
71
+ "features": [
72
+ "Asset listing & search",
73
+ "File upload with transforms",
74
+ "Content retrieval",
75
+ "Image/video management",
76
+ "Folder organization"
77
+ ],
78
+ "credentials": [
79
+ {
80
+ "name": "Cloudinary Credentials",
81
+ "type": "cloudinaryCredentials",
82
+ "required": true,
83
+ "description": "Cloud name, API key, and API secret from cloudinary.com/console"
84
+ }
50
85
  ]
51
86
  }
52
87
  }