@gravity-platform/ingest 1.1.4 → 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 (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +131 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @gravity-platform/ingest
2
2
 
3
+ ## 1.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Add rich marketplace metadata to all packages: displayName, category, features list, node descriptions with type/MCP info, and credential requirements for the unified Package Marketplace UI
8
+
3
9
  ## 1.1.4
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-platform/ingest",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Data ingestion nodes for Gravity workflow system",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -51,23 +51,138 @@
51
51
  "typescript": "^5.0.0"
52
52
  },
53
53
  "gravity": {
54
+ "displayName": "Ingest",
55
+ "category": "ingest",
54
56
  "logoUrl": "https://res.cloudinary.com/sonik/image/upload/v1775374180/gravity/icons/apollo.jpg",
55
57
  "nodes": [
56
- "Abyssale",
57
- "Apify Results",
58
- "Apify Starter",
59
- "Apollo Company",
60
- "Apollo Company Enrich",
61
- "Apollo People",
62
- "Apollo People Enrich",
63
- "Document",
64
- "Document Parser",
65
- "ElevenLabs TTS",
66
- "Google Sheet",
67
- "Hyperbrowser",
68
- "Plaid Transactions",
69
- "Search Web",
70
- "Spatial Ingest"
58
+ {
59
+ "name": "Abyssale",
60
+ "type": "PromiseNode",
61
+ "description": "Generate dynamic images and banners via Abyssale templates",
62
+ "category": "Output",
63
+ "mcp": false
64
+ },
65
+ {
66
+ "name": "Apify Results",
67
+ "type": "CallbackNode",
68
+ "description": "Stream results from Apify actor runs with pagination",
69
+ "category": "Ingest",
70
+ "mcp": false
71
+ },
72
+ {
73
+ "name": "Apify Starter",
74
+ "type": "PromiseNode",
75
+ "description": "Launch Apify web scraping actors with custom configuration",
76
+ "category": "Ingest",
77
+ "mcp": false
78
+ },
79
+ {
80
+ "name": "Apollo Company",
81
+ "type": "PromiseNode",
82
+ "description": "Search companies in Apollo.io by domain, industry, or keywords",
83
+ "category": "Ingest",
84
+ "mcp": false
85
+ },
86
+ {
87
+ "name": "Apollo Company Enrich",
88
+ "type": "PromiseNode",
89
+ "description": "Enrich company data with full Apollo.io profiles",
90
+ "category": "Ingest",
91
+ "mcp": false
92
+ },
93
+ {
94
+ "name": "Apollo People",
95
+ "type": "PromiseNode",
96
+ "description": "Search contacts in Apollo.io by title, company, or filters",
97
+ "category": "Ingest",
98
+ "mcp": false
99
+ },
100
+ {
101
+ "name": "Apollo People Enrich",
102
+ "type": "PromiseNode",
103
+ "description": "Enrich contact data with emails and full Apollo.io profiles",
104
+ "category": "Ingest",
105
+ "mcp": false
106
+ },
107
+ {
108
+ "name": "Document",
109
+ "type": "PromiseNode",
110
+ "description": "Load documents from URLs or file paths for processing",
111
+ "category": "Ingest",
112
+ "mcp": false
113
+ },
114
+ {
115
+ "name": "Document Parser",
116
+ "type": "PromiseNode",
117
+ "description": "Extract text from PDF, DOCX, and other document formats",
118
+ "category": "Ingest",
119
+ "mcp": false
120
+ },
121
+ {
122
+ "name": "ElevenLabs TTS",
123
+ "type": "PromiseNode",
124
+ "description": "Convert text to speech with ElevenLabs voice cloning",
125
+ "category": "AI",
126
+ "mcp": false
127
+ },
128
+ {
129
+ "name": "Google Sheet",
130
+ "type": "PromiseNode",
131
+ "description": "Read and write data to Google Sheets spreadsheets",
132
+ "category": "Ingest",
133
+ "mcp": false
134
+ },
135
+ {
136
+ "name": "Hyperbrowser",
137
+ "type": "PromiseNode",
138
+ "description": "Scrape web pages with headless browser and JavaScript rendering",
139
+ "category": "Ingest",
140
+ "mcp": false
141
+ },
142
+ {
143
+ "name": "Plaid Transactions",
144
+ "type": "PromiseNode",
145
+ "description": "Fetch financial transactions via Plaid banking API",
146
+ "category": "Ingest",
147
+ "mcp": false
148
+ },
149
+ {
150
+ "name": "Search Web",
151
+ "type": "PromiseNode",
152
+ "description": "Search the web and return structured results",
153
+ "category": "Ingest",
154
+ "mcp": false
155
+ },
156
+ {
157
+ "name": "Spatial Ingest",
158
+ "type": "PromiseNode",
159
+ "description": "Ingest content into the Spatial 3D search index with embeddings",
160
+ "category": "Ingest",
161
+ "mcp": false
162
+ }
163
+ ],
164
+ "features": [
165
+ "Web scraping (Apify/Hyperbrowser)",
166
+ "Document parsing (PDF/DOCX)",
167
+ "Apollo.io people & company search",
168
+ "Google Sheets integration",
169
+ "Financial data (Plaid)",
170
+ "Text-to-speech (ElevenLabs)",
171
+ "Spatial index ingestion"
172
+ ],
173
+ "credentials": [
174
+ {
175
+ "name": "Apify Token",
176
+ "type": "apifyToken",
177
+ "required": false,
178
+ "description": "API token from console.apify.com"
179
+ },
180
+ {
181
+ "name": "Apollo API Key",
182
+ "type": "apolloApiKey",
183
+ "required": false,
184
+ "description": "API key from app.apollo.io"
185
+ }
71
186
  ]
72
187
  }
73
188
  }