n8n-nodes-databar 0.1.0 → 0.1.2
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/README.md +163 -312
- package/package.json +10 -2
package/README.md
CHANGED
|
@@ -2,419 +2,270 @@
|
|
|
2
2
|
|
|
3
3
|
This is an n8n community node that lets you use [Databar.ai](https://databar.ai) in your n8n workflows.
|
|
4
4
|
|
|
5
|
-
Databar.ai provides powerful data enrichment capabilities and
|
|
5
|
+
Databar.ai provides powerful data enrichment capabilities for your automation workflows - enrich contacts, companies, and more with data from multiple providers.
|
|
6
6
|
|
|
7
7
|
[n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
|
|
8
8
|
|
|
9
|
+
[Installation](#installation) · [Configuration](#configuration) · [Operations](#operations) · [Examples](#usage-examples) · [Support](#support)
|
|
10
|
+
|
|
9
11
|
## ✨ Features
|
|
10
12
|
|
|
11
|
-
- **🔍
|
|
12
|
-
- **📝
|
|
13
|
-
- **⏱️ Automatic Async Handling**: Built-in polling for async
|
|
14
|
-
-
|
|
15
|
-
- **🎯 Type-Safe**: Full TypeScript implementation with proper
|
|
13
|
+
- **🔍 Smart Enrichment Selection**: Browse and search all available enrichments with descriptions, data sources, and pricing displayed in-app
|
|
14
|
+
- **📝 Flexible Parameter Input**: Choose between guided individual fields or raw JSON - adapts automatically to your enrichment's requirements
|
|
15
|
+
- **⏱️ Automatic Async Handling**: Built-in polling for async operations - no manual status checking needed
|
|
16
|
+
- **🌊 Waterfall Support**: Chain multiple data providers with automatic fallback
|
|
17
|
+
- **🎯 Type-Safe**: Full TypeScript implementation with proper validation
|
|
16
18
|
|
|
17
19
|
## Installation
|
|
18
20
|
|
|
19
|
-
###
|
|
20
|
-
|
|
21
|
-
#### Quick Install
|
|
22
|
-
```bash
|
|
23
|
-
# Clone the repository
|
|
24
|
-
cd /path/to/n8n-nodes-databar
|
|
21
|
+
### Community Nodes (Recommended)
|
|
25
22
|
|
|
26
|
-
|
|
27
|
-
npm install
|
|
28
|
-
npm run build
|
|
23
|
+
Follow this guide in your n8n instance:
|
|
29
24
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
25
|
+
**For n8n Cloud:**
|
|
26
|
+
1. Go to **Settings → Community Nodes**
|
|
27
|
+
2. Select **Install**
|
|
28
|
+
3. Enter `n8n-nodes-databar`
|
|
29
|
+
4. Agree to the risks of using community nodes
|
|
30
|
+
5. Select **Install**
|
|
36
31
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
32
|
+
**For Self-Hosted n8n:**
|
|
33
|
+
1. Go to **Settings → Community Nodes**
|
|
34
|
+
2. Select **Install**
|
|
35
|
+
3. Enter `n8n-nodes-databar`
|
|
36
|
+
4. Select **Install**
|
|
37
|
+
5. Restart your n8n instance
|
|
41
38
|
|
|
42
|
-
|
|
39
|
+
After installation, the Databar node will appear in your node panel.
|
|
43
40
|
|
|
44
|
-
###
|
|
41
|
+
### npm Installation
|
|
45
42
|
|
|
46
|
-
|
|
43
|
+
Alternatively, install via npm:
|
|
47
44
|
|
|
48
45
|
```bash
|
|
49
|
-
npm
|
|
46
|
+
npm install n8n-nodes-databar
|
|
50
47
|
```
|
|
51
48
|
|
|
52
|
-
Then
|
|
53
|
-
1. Go to **Settings > Community Nodes**
|
|
54
|
-
2. Click **Install a community node**
|
|
55
|
-
3. Enter `n8n-nodes-databar`
|
|
56
|
-
4. Click **Install**
|
|
49
|
+
Then restart your n8n instance.
|
|
57
50
|
|
|
58
51
|
## Prerequisites
|
|
59
52
|
|
|
60
53
|
You need a Databar.ai account and API key:
|
|
61
54
|
|
|
62
|
-
1.
|
|
63
|
-
2. Navigate to **Integrations**
|
|
55
|
+
1. Sign up at [Databar.ai](https://databar.ai)
|
|
56
|
+
2. Navigate to **Integrations** in your workspace
|
|
64
57
|
3. Copy your API key
|
|
65
58
|
|
|
66
|
-
**Note:** REST API access may require scheduling a call with Databar.
|
|
67
|
-
|
|
68
59
|
## Configuration
|
|
69
60
|
|
|
70
|
-
###
|
|
61
|
+
### Setting up Credentials
|
|
71
62
|
|
|
72
|
-
1.
|
|
73
|
-
2.
|
|
74
|
-
3.
|
|
75
|
-
4.
|
|
76
|
-
|
|
63
|
+
1. In n8n, go to **Credentials → New**
|
|
64
|
+
2. Search for **Databar API**
|
|
65
|
+
3. Enter your API Key
|
|
66
|
+
4. Click **Save**
|
|
67
|
+
|
|
68
|
+
The credentials will be tested automatically to ensure they work.
|
|
77
69
|
|
|
78
70
|
## Operations
|
|
79
71
|
|
|
80
72
|
### User
|
|
81
|
-
- **Get
|
|
73
|
+
- **Get Account Info**: Retrieve your account information, balance, and plan details
|
|
82
74
|
|
|
83
75
|
### Enrichment
|
|
84
|
-
- **List**: Browse all available enrichments with optional search filtering
|
|
85
|
-
- **Get**: Get detailed information about a specific enrichment including parameters and pricing
|
|
86
76
|
- **Run**: Execute a single enrichment task
|
|
87
|
-
-
|
|
88
|
-
-
|
|
89
|
-
-
|
|
90
|
-
-
|
|
91
|
-
|
|
92
|
-
### Table
|
|
93
|
-
- **Create**: Create a new table in your workspace
|
|
94
|
-
- **List**: Get all tables in your workspace
|
|
95
|
-
- **Get Rows**: Retrieve rows from a table with pagination support
|
|
96
|
-
- **Get Columns**: Get column definitions for a table
|
|
97
|
-
- **Get Enrichments**: List enrichments associated with a table
|
|
98
|
-
- **Add Enrichment**: Add an enrichment to a table with custom parameter mapping
|
|
99
|
-
- **Run Enrichment**: Execute a table enrichment
|
|
77
|
+
- Browse enrichments from a searchable dropdown
|
|
78
|
+
- See descriptions, data sources, and credit costs
|
|
79
|
+
- Choose guided fields or JSON input
|
|
80
|
+
- Automatic polling for results
|
|
81
|
+
- **Bulk Run**: Execute enrichment on multiple records simultaneously
|
|
100
82
|
|
|
101
83
|
### Waterfall
|
|
102
|
-
- **List**: Browse all available waterfalls
|
|
103
|
-
- **Get**: Get
|
|
104
|
-
- **Run**: Execute a waterfall
|
|
105
|
-
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
- **Get Status**: Check status and retrieve data from async enrichment or waterfall tasks
|
|
84
|
+
- **List**: Browse all available waterfalls
|
|
85
|
+
- **Get**: Get details about a specific waterfall
|
|
86
|
+
- **Run**: Execute a waterfall with multiple data providers
|
|
87
|
+
- Select which providers to use
|
|
88
|
+
- Automatic fallback between providers
|
|
89
|
+
- Configurable polling and timeouts
|
|
109
90
|
|
|
110
91
|
## Key Features Explained
|
|
111
92
|
|
|
112
|
-
###
|
|
93
|
+
### Dynamic Enrichment Selection
|
|
113
94
|
|
|
114
|
-
Instead of needing to know enrichment IDs,
|
|
115
|
-
- Browse all enrichments in a searchable dropdown
|
|
116
|
-
- See enrichment name, description, data source, and credit cost
|
|
117
|
-
- Select from the list or enter an ID manually
|
|
95
|
+
Instead of needing to know enrichment IDs, browse all available enrichments in a searchable dropdown with full details:
|
|
118
96
|
|
|
119
|
-
Example dropdown entry:
|
|
120
97
|
```
|
|
98
|
+
Email Validator
|
|
99
|
+
↳ Verify if an email address is valid and deliverable | ZeroBounce · 0.01 Credits
|
|
100
|
+
|
|
121
101
|
Get people data from email
|
|
122
|
-
↳ Returns a person's name, location, social media... | Clearbit
|
|
102
|
+
↳ Returns a person's name, location, social media... | Clearbit · 0.10 Credits
|
|
123
103
|
```
|
|
124
104
|
|
|
125
|
-
###
|
|
105
|
+
### Smart Parameter Input
|
|
126
106
|
|
|
127
|
-
**
|
|
107
|
+
**Guided Fields Mode (Recommended)**
|
|
128
108
|
|
|
129
|
-
#### **Option 1: Guided Fields (Recommended)**
|
|
130
109
|
The node automatically generates individual input fields for each parameter:
|
|
131
|
-
-
|
|
132
|
-
-
|
|
133
|
-
-
|
|
134
|
-
- Type
|
|
135
|
-
- Perfect for manual data entry and simple workflows
|
|
136
|
-
|
|
137
|
-
#### **Option 2: Raw JSON**
|
|
138
|
-
Traditional JSON object input for power users:
|
|
139
|
-
- Enter parameters as a JSON object
|
|
140
|
-
- Best for complex objects and dynamic expressions
|
|
141
|
-
- Full control over input format
|
|
110
|
+
- Labeled fields with proper types (text, number, boolean)
|
|
111
|
+
- Required vs optional indicators
|
|
112
|
+
- Built-in descriptions
|
|
113
|
+
- Type validation
|
|
142
114
|
|
|
143
|
-
**
|
|
144
|
-
```
|
|
145
|
-
1. Select enrichment "Get people data from email"
|
|
146
|
-
2. Parameter Input Mode: Guided Fields (default)
|
|
147
|
-
3. The node automatically shows:
|
|
148
|
-
|
|
149
|
-
Email: [______________] (Required)
|
|
150
|
-
↳ Email address to enrich (text)
|
|
151
|
-
|
|
152
|
-
First Name: [______________] (Optional)
|
|
153
|
-
↳ Person's first name (text)
|
|
154
|
-
|
|
155
|
-
4. Fill in the fields directly
|
|
156
|
-
5. Execute!
|
|
157
|
-
```
|
|
115
|
+
**Raw JSON Mode**
|
|
158
116
|
|
|
159
|
-
|
|
117
|
+
For power users and dynamic workflows:
|
|
118
|
+
- Enter parameters as JSON object
|
|
119
|
+
- Use n8n expressions
|
|
120
|
+
- Full control over input format
|
|
121
|
+
|
|
122
|
+
**Example:**
|
|
160
123
|
```
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
124
|
+
Guided Fields:
|
|
125
|
+
Email: john@example.com ✓ (Required)
|
|
126
|
+
First Name: John (Optional)
|
|
127
|
+
|
|
128
|
+
Raw JSON:
|
|
129
|
+
{
|
|
130
|
+
"email": "john@example.com",
|
|
131
|
+
"first_name": "John"
|
|
132
|
+
}
|
|
169
133
|
```
|
|
170
134
|
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
### 3. Automatic Async Task Polling
|
|
174
|
-
|
|
175
|
-
Databar's enrichment and waterfall operations are asynchronous. This node handles the complexity for you:
|
|
135
|
+
### Automatic Async Handling
|
|
176
136
|
|
|
177
|
-
|
|
178
|
-
- Node submits the task
|
|
179
|
-
- Automatically polls task status every 5 seconds (configurable)
|
|
180
|
-
- Returns completed results directly
|
|
181
|
-
- Throws clear errors if task fails
|
|
137
|
+
Enrichment and waterfall operations are asynchronous. This node handles it automatically:
|
|
182
138
|
|
|
183
|
-
**
|
|
184
|
-
-
|
|
185
|
-
-
|
|
139
|
+
**With "Wait for Completion" enabled (default):**
|
|
140
|
+
- Submits the task
|
|
141
|
+
- Polls every 3 seconds
|
|
142
|
+
- Returns completed results
|
|
143
|
+
- Clear error messages on failure
|
|
186
144
|
|
|
187
|
-
**
|
|
188
|
-
-
|
|
189
|
-
-
|
|
145
|
+
**With "Wait for Completion" disabled:**
|
|
146
|
+
- Returns `task_id` immediately
|
|
147
|
+
- Check status later with another node
|
|
190
148
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
149
|
+
**Configuration:**
|
|
150
|
+
- **Poll Interval**: Seconds between checks (default: 3)
|
|
151
|
+
- **Timeout**: Maximum wait time (default: 300 seconds)
|
|
194
152
|
|
|
195
153
|
## Usage Examples
|
|
196
154
|
|
|
197
|
-
### Example 1: Email Enrichment
|
|
198
|
-
|
|
199
|
-
```
|
|
200
|
-
1. Add Databar node
|
|
201
|
-
2. Resource: Enrichment
|
|
202
|
-
3. Operation: Run
|
|
203
|
-
4. Enrichment Selection: From List
|
|
204
|
-
5. Search and select "Get people data from email"
|
|
205
|
-
6. Parameter Input Mode: Guided Fields (default)
|
|
206
|
-
7. Individual fields auto-appear:
|
|
207
|
-
- Email: john@example.com
|
|
208
|
-
8. Wait for Completion: ✓ True
|
|
209
|
-
9. Execute → Returns enriched data directly!
|
|
210
|
-
```
|
|
155
|
+
### Example 1: Email Enrichment
|
|
211
156
|
|
|
212
|
-
**Alternative with Raw JSON:**
|
|
213
157
|
```
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
158
|
+
1. Add Databar node to workflow
|
|
159
|
+
2. Select Resource: Enrichment
|
|
160
|
+
3. Select Operation: Run
|
|
161
|
+
4. Select enrichment from dropdown (e.g., "Get people data from email")
|
|
162
|
+
5. Enter email address in the Email field
|
|
163
|
+
6. Execute → Returns enriched contact data
|
|
219
164
|
```
|
|
220
165
|
|
|
221
|
-
### Example 2:
|
|
166
|
+
### Example 2: Waterfall with Multiple Providers
|
|
222
167
|
|
|
223
168
|
```
|
|
224
169
|
1. Add Databar node
|
|
225
170
|
2. Resource: Waterfall
|
|
226
|
-
3. Operation:
|
|
227
|
-
4.
|
|
228
|
-
5.
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
{"first_name": "Jane", "last_name": "Smith", "company": "test.org"}
|
|
232
|
-
]
|
|
233
|
-
6. Enrichment IDs: 833,966
|
|
234
|
-
7. Wait for Completion: ✓ True
|
|
235
|
-
8. Execute → Returns all results when complete
|
|
171
|
+
3. Operation: Run
|
|
172
|
+
4. Select your waterfall from dropdown
|
|
173
|
+
5. Enter parameters (e.g., company domain)
|
|
174
|
+
6. Select data providers to use
|
|
175
|
+
7. Execute → Returns data from first successful provider
|
|
236
176
|
```
|
|
237
177
|
|
|
238
|
-
### Example 3:
|
|
178
|
+
### Example 3: Bulk Contact Enrichment
|
|
239
179
|
|
|
240
180
|
```
|
|
241
181
|
1. Add Databar node
|
|
242
182
|
2. Resource: Enrichment
|
|
243
|
-
3. Operation:
|
|
244
|
-
4.
|
|
245
|
-
5.
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
1. Run an enrichment with "Wait for Completion" disabled
|
|
252
|
-
2. Note the task_id from response
|
|
253
|
-
3. Add another Databar node
|
|
254
|
-
4. Resource: Task
|
|
255
|
-
5. Operation: Get Status
|
|
256
|
-
6. Task ID: <paste task_id>
|
|
257
|
-
7. Execute → Check if completed and get results
|
|
258
|
-
```
|
|
259
|
-
|
|
260
|
-
## Architecture
|
|
261
|
-
|
|
262
|
-
### Project Structure
|
|
263
|
-
|
|
264
|
-
```
|
|
265
|
-
n8n-nodes-databar/
|
|
266
|
-
├── credentials/
|
|
267
|
-
│ └── DatabarApi.credentials.ts # API key credential definition
|
|
268
|
-
├── nodes/
|
|
269
|
-
│ └── Databar/
|
|
270
|
-
│ ├── Databar.node.ts # Main node implementation
|
|
271
|
-
│ └── databar.svg # Node icon
|
|
272
|
-
├── dist/ # Compiled JavaScript (generated)
|
|
273
|
-
├── package.json # Node package configuration
|
|
274
|
-
├── tsconfig.json # TypeScript configuration
|
|
275
|
-
├── gulpfile.js # Icon build script
|
|
276
|
-
├── openapi.json # API specification (reference)
|
|
277
|
-
├── LICENSE # MIT license
|
|
278
|
-
└── README.md # This file
|
|
183
|
+
3. Operation: Bulk Run
|
|
184
|
+
4. Select enrichment
|
|
185
|
+
5. Enter array of records:
|
|
186
|
+
[
|
|
187
|
+
{"email": "john@example.com"},
|
|
188
|
+
{"email": "jane@company.com"}
|
|
189
|
+
]
|
|
190
|
+
6. Execute → Returns all enriched records
|
|
279
191
|
```
|
|
280
192
|
|
|
281
|
-
###
|
|
282
|
-
|
|
283
|
-
**Authentication:**
|
|
284
|
-
- Uses `x-apikey` header for all requests
|
|
285
|
-
- Credentials stored securely in n8n's credential system
|
|
286
|
-
|
|
287
|
-
**URL Handling:**
|
|
288
|
-
- All API calls use absolute URLs: `https://api.databar.ai/v1/...`
|
|
289
|
-
- This ensures proper request routing in n8n's HTTP client
|
|
290
|
-
|
|
291
|
-
**Async Polling:**
|
|
292
|
-
- Implemented as standalone `pollTaskStatus()` helper function
|
|
293
|
-
- Polls `/v1/tasks/{task_id}` endpoint until status is `completed` or `failed`
|
|
294
|
-
- Configurable interval and timeout
|
|
295
|
-
- Proper error handling with clear error messages
|
|
296
|
-
|
|
297
|
-
**Dynamic Options:**
|
|
298
|
-
- `loadOptionsMethod` functions fetch enrichments, waterfalls, and tables from API
|
|
299
|
-
- Options are searchable client-side with `searchable: true`
|
|
300
|
-
- Falls back to manual ID entry if needed
|
|
301
|
-
|
|
302
|
-
**Resource Mapper (Guided Fields):**
|
|
303
|
-
- `resourceMapperMethod` dynamically generates input fields based on enrichment parameters
|
|
304
|
-
- Fetches parameter definitions from `/v1/enrichments/{id}` endpoint
|
|
305
|
-
- Maps Databar types (text, number, boolean) to n8n field types
|
|
306
|
-
- Displays required/optional status and descriptions
|
|
307
|
-
- Returns structured data in `paramsFields.value` object
|
|
193
|
+
### Example 4: Integration with Other Nodes
|
|
308
194
|
|
|
309
|
-
**Type Safety:**
|
|
310
|
-
- Full TypeScript with `IExecuteFunctions`, `ILoadOptionsFunctions` contexts
|
|
311
|
-
- Explicit type conversions and validations for all parameters
|
|
312
|
-
- Proper error handling with `NodeOperationError`
|
|
313
|
-
|
|
314
|
-
## Development
|
|
315
|
-
|
|
316
|
-
### Building
|
|
317
|
-
|
|
318
|
-
```bash
|
|
319
|
-
npm install
|
|
320
|
-
npm run build
|
|
321
195
|
```
|
|
196
|
+
Webhook → Databar (Enrich) → Filter → Send Email
|
|
322
197
|
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
# Restart n8n
|
|
330
|
-
pkill -f "n8n" && n8n start
|
|
198
|
+
Example workflow:
|
|
199
|
+
1. Webhook receives new lead
|
|
200
|
+
2. Databar enriches with company data
|
|
201
|
+
3. Filter checks if company size > 100
|
|
202
|
+
4. Send personalized email to qualified leads
|
|
331
203
|
```
|
|
332
204
|
|
|
333
|
-
### Code Structure
|
|
334
|
-
|
|
335
|
-
The main node (`Databar.node.ts`) is organized as:
|
|
336
|
-
|
|
337
|
-
1. **Imports & Helper Functions**: Standalone functions like `pollTaskStatus()`
|
|
338
|
-
2. **Class Definition**: `Databar` class implementing `INodeType`
|
|
339
|
-
3. **Description**: Node metadata, properties, and UI configuration
|
|
340
|
-
4. **Methods**:
|
|
341
|
-
- `loadOptions`: Dynamic option loaders for dropdowns
|
|
342
|
-
- `resourceMapping`: Dynamic field generators for guided input (resourceMapper)
|
|
343
|
-
- `getEnrichmentParams`: Helper to fetch enrichment details
|
|
344
|
-
5. **Execute Function**: Main execution logic with resource/operation routing
|
|
345
|
-
|
|
346
205
|
## Troubleshooting
|
|
347
206
|
|
|
348
|
-
### Node Not Appearing
|
|
207
|
+
### Node Not Appearing
|
|
349
208
|
|
|
350
|
-
If the node doesn't appear after installation:
|
|
209
|
+
If the Databar node doesn't appear after installation:
|
|
210
|
+
1. Restart your n8n instance
|
|
211
|
+
2. Clear your browser cache
|
|
212
|
+
3. Check n8n logs for any installation errors
|
|
351
213
|
|
|
352
|
-
|
|
353
|
-
```bash
|
|
354
|
-
ls -la ~/.n8n/custom/nodes/Databar/
|
|
355
|
-
```
|
|
214
|
+
### Authentication Errors
|
|
356
215
|
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
216
|
+
If you see authentication errors:
|
|
217
|
+
- Verify your API key is correct in credentials
|
|
218
|
+
- Check that your Databar account is active
|
|
219
|
+
- Ensure you have sufficient credits
|
|
361
220
|
|
|
362
|
-
|
|
363
|
-
```bash
|
|
364
|
-
sqlite3 ~/.n8n/database.sqlite
|
|
365
|
-
|
|
366
|
-
INSERT INTO installed_packages VALUES ('n8n-nodes-databar','0.1.0',NOW(),NOW());
|
|
367
|
-
INSERT INTO installed_nodes VALUES ('n8n.nodes.Databar','databar','0.1.0','n8n-nodes-databar',NOW(),NOW());
|
|
368
|
-
INSERT INTO installed_nodes VALUES ('credentials.DatabarApi','databarApi','0.1.0','n8n-nodes-databar',NOW(),NOW());
|
|
369
|
-
```
|
|
221
|
+
### Enrichment Dropdown Empty
|
|
370
222
|
|
|
371
|
-
|
|
223
|
+
If enrichments don't load in the dropdown:
|
|
224
|
+
- Check your internet connection
|
|
225
|
+
- Verify API key has proper permissions
|
|
226
|
+
- Use "By ID" mode as a fallback to enter enrichment ID manually
|
|
372
227
|
|
|
373
|
-
###
|
|
228
|
+
### Task Timeout
|
|
374
229
|
|
|
375
|
-
|
|
376
|
-
-
|
|
377
|
-
-
|
|
378
|
-
-
|
|
230
|
+
If enrichment tasks timeout:
|
|
231
|
+
- Increase timeout in Additional Options
|
|
232
|
+
- Check if the enrichment requires more time
|
|
233
|
+
- Consider disabling "Wait for Completion" and checking status separately
|
|
379
234
|
|
|
380
|
-
|
|
235
|
+
## Resources
|
|
381
236
|
|
|
382
|
-
|
|
383
|
-
-
|
|
384
|
-
-
|
|
237
|
+
- [Databar.ai](https://databar.ai) - Main website
|
|
238
|
+
- [Databar API Documentation](https://databar.ai/docs/api) - API reference
|
|
239
|
+
- [n8n Documentation](https://docs.n8n.io/) - n8n platform docs
|
|
240
|
+
- [GitHub Repository](https://github.com/databar-ai/n8n-nodes-databar) - Source code
|
|
385
241
|
|
|
386
|
-
|
|
242
|
+
## Support
|
|
387
243
|
|
|
388
|
-
|
|
389
|
-
-
|
|
390
|
-
-
|
|
391
|
-
- Fall back to "By ID" mode to manually enter enrichment ID
|
|
244
|
+
**For Databar API issues:**
|
|
245
|
+
- Email: info@databar.ai
|
|
246
|
+
- Visit: [Databar.ai](https://databar.ai)
|
|
392
247
|
|
|
393
|
-
|
|
248
|
+
**For node issues:**
|
|
249
|
+
- GitHub Issues: [n8n-nodes-databar/issues](https://github.com/databar-ai/n8n-nodes-databar/issues)
|
|
394
250
|
|
|
395
|
-
|
|
396
|
-
- [Databar.ai API Documentation](https://databar.ai/docs/api)
|
|
397
|
-
- [n8n Documentation](https://docs.n8n.io/)
|
|
398
|
-
- [n8n Community Nodes](https://docs.n8n.io/integrations/community-nodes/)
|
|
399
|
-
- [GitHub Repository](https://github.com/databar-ai/n8n-nodes-databar)
|
|
251
|
+
## Version History
|
|
400
252
|
|
|
401
|
-
|
|
253
|
+
### 0.1.1
|
|
254
|
+
- Improved documentation for end users
|
|
255
|
+
- Removed internal development scaffolding
|
|
256
|
+
- Cleaner installation and setup instructions
|
|
257
|
+
- Added CONTRIBUTING.md for developers
|
|
402
258
|
|
|
403
|
-
|
|
404
|
-
-
|
|
405
|
-
-
|
|
259
|
+
### 0.1.0
|
|
260
|
+
- Initial release
|
|
261
|
+
- Dynamic enrichment and waterfall selection
|
|
262
|
+
- Guided fields and JSON input modes
|
|
263
|
+
- Automatic async task polling
|
|
264
|
+
- Full Databar.ai API coverage
|
|
406
265
|
|
|
407
|
-
##
|
|
266
|
+
## Contributing
|
|
408
267
|
|
|
409
|
-
|
|
410
|
-
- ✅ Initial release with full API coverage
|
|
411
|
-
- ✅ Dynamic enrichment/waterfall/table dropdowns with search
|
|
412
|
-
- ✅ **Guided Fields Mode**: Automatic parameter field generation with resourceMapper
|
|
413
|
-
- ✅ **Dual Input Modes**: Choose between guided fields or raw JSON for parameters
|
|
414
|
-
- ✅ Automatic async task polling with configurable options
|
|
415
|
-
- ✅ Support for all Databar.ai REST API endpoints
|
|
416
|
-
- ✅ Type-safe implementation with proper error handling
|
|
417
|
-
- ✅ Complete documentation and troubleshooting guides
|
|
268
|
+
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
418
269
|
|
|
419
270
|
## License
|
|
420
271
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-databar",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "n8n node for Databar.ai API - data enrichment and table management",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"n8n-community-node-package",
|
|
7
7
|
"n8n",
|
|
8
8
|
"databar",
|
|
9
9
|
"enrichment",
|
|
10
|
-
"data"
|
|
10
|
+
"data",
|
|
11
|
+
"api",
|
|
12
|
+
"integration",
|
|
13
|
+
"automation",
|
|
14
|
+
"workflow",
|
|
15
|
+
"contact-enrichment",
|
|
16
|
+
"company-data",
|
|
17
|
+
"lead-enrichment",
|
|
18
|
+
"data-provider"
|
|
11
19
|
],
|
|
12
20
|
"license": "MIT",
|
|
13
21
|
"homepage": "https://databar.ai",
|