n8n-nodes-mautic-advanced 0.3.6 → 0.3.7

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 CHANGED
@@ -1,337 +1,335 @@
1
- # n8n Mautic Advanced Node
2
-
3
- [![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-Support-yellow.svg)](https://buymeacoffee.com/msoukhomlinov)
4
-
5
- Enhanced n8n node for Mautic with comprehensive API coverage including tags, campaigns, categories, and advanced contact management.
6
-
7
- ## 📋 Table of Contents
8
-
9
- - [What Makes This "Advanced"?](#what-makes-this-advanced)
10
- - [Features](#features)
11
- - [Supported Resources and Operations](#supported-resources-and-operations)
12
- - [Installation](#installation)
13
- - [Authentication](#authentication)
14
- - [Advanced Features](#advanced-features)
15
- - [Usage Examples](#usage-examples)
16
- - [Development](#development)
17
- - [Troubleshooting](#troubleshooting)
18
- - [Changelog](#changelog)
19
- - [Support](#support)
20
- - [License](#license)
21
-
22
- ## What Makes This "Advanced"?
23
-
24
- This enhanced version extends the standard n8n Mautic node with:
25
-
26
- - **🏷️ Complete Tag Management**: Full CRUD operations for tags (missing in the standard node)
27
- - **📊 Campaign Operations**: Create, clone, update, and manage campaigns
28
- - **📁 Category Management**: Handle categories with bundle and color support
29
- - **🔗 Advanced Relationship Management**: Sophisticated contact-to-campaign and contact-to-company associations
30
- - **📧 Enhanced Email Operations**: Segment-based email sending capabilities
31
- - **👥 Extended Contact Operations**: UTM tag management, activity tracking, device information, and notes
32
- - **🏢 Complete Company Management**: Full company lifecycle with custom fields and address support
33
- - **🔍 Advanced Filtering**: Where filters, DNC filtering, and field selection
34
- - **📅 Smart Date Handling**: Automatic date formatting for Mautic API compatibility
35
-
36
- ## Features
37
-
38
- ### 🚀 Core Features
39
- - **Comprehensive API Coverage**: All major Mautic API endpoints supported
40
- - **Advanced Filtering**: Where filters with nested conditions (andX/orX)
41
- - **DNC Management**: Filter contacts by Do Not Contact status
42
- - **Field Selection**: Choose which fields to return for Contact operations
43
- - **Pagination Support**: Automatic handling of large datasets
44
- - **Custom Fields**: Full support for custom field management
45
- - **Error Handling**: Robust error handling and validation
46
-
47
- ### 🔐 Authentication
48
- - **API Credentials**: Simple API key authentication
49
- - **OAuth2**: Full OAuth2 flow support for secure authentication
50
-
51
- ### 📊 Data Management
52
- - **RAW Data Options**: Control data output format
53
- - **System Fields**: Built-in support for system fields
54
- - **Date Formatting**: Automatic UTC date formatting
55
- - **Deduplication**: Prevents duplicate records in paginated results
56
-
57
- ## Supported Resources and Operations
58
-
59
- ### 🏢 Companies
60
- - **Create** a new company with full address and custom field support
61
- - **Get** a company by ID
62
- - **Get Many** companies with filtering and pagination
63
- - **Update** company details
64
- - **Delete** a company
65
-
66
- ### 👥 Contacts (Enhanced)
67
- - **Create** a new contact with extensive field options
68
- - **Get** a contact by ID with field selection
69
- - **Get Many** contacts with advanced filtering and DNC options
70
- - **Update** contact details
71
- - **Delete** a contact
72
- - **Delete Batch** multiple contacts in one operation
73
- - **Send Email** to a contact
74
- - **Edit Contact Points** (add/subtract points)
75
- - **Edit Do Not Contact List** (add/remove from DNC)
76
- - **Add/Remove UTM Tags** for tracking
77
- - **Get Notes** associated with a contact
78
- - **Get Activity** history for a contact
79
- - **Get Companies** associated with a contact
80
- - **Get Devices** used by a contact
81
-
82
- ### 🏷️ Tags
83
- - **Create** a new tag with description
84
- - **Get** a tag by ID
85
- - **Get Many** tags with search capabilities
86
- - **Update** tag name and description
87
- - **Delete** a tag
88
-
89
- ### 📊 Campaigns
90
- - **Create** a new campaign
91
- - **Get** a campaign by ID
92
- - **Get All** campaigns
93
- - **Update** campaign details
94
- - **Delete** a campaign
95
- - **Clone** an existing campaign
96
- - **Get Contacts** in a campaign
97
-
98
- ### 📁 Categories
99
- - **Create** a new category with bundle and color settings
100
- - **Get** a category by ID
101
- - **Get Many** categories
102
- - **Update** category details
103
- - **Delete** a category
104
-
105
- ### 📋 Segments
106
- - **Create** a new segment
107
- - **Get** a segment by ID
108
- - **Get Many** segments with filtering
109
- - **Update** segment details
110
- - **Delete** a segment
111
-
112
- ### 🔗 Relationship Management
113
- - **Campaign Contact**: Add/remove contacts to/from campaigns
114
- - **Company Contact**: Add/remove contacts to/from companies
115
- - **Contact Segment**: Add/remove contacts to/from segments
116
-
117
- ### 📧 Email Operations
118
- - **Segment Email**: Send emails to segments
119
-
120
- ## Installation
121
-
122
- ### Method 1: npm (Recommended)
123
- ```bash
124
- npm install n8n-nodes-mautic-advanced
125
- ```
126
-
127
- ### Method 2: Manual Installation
128
- 1. Clone this repository:
129
- ```bash
130
- git clone https://github.com/msoukhomlinov/n8n-nodes-mautic-advanced.git
131
- cd n8n-nodes-mautic-advanced
132
- ```
133
-
134
- 2. Install dependencies:
135
- ```bash
136
- npm install
137
- ```
138
-
139
- 3. Build the node:
140
- ```bash
141
- npm run build
142
- ```
143
-
144
- 4. Link to your n8n installation:
145
- ```bash
146
- npm link
147
- cd /path/to/your/n8n/installation
148
- npm link n8n-nodes-mautic-advanced
149
- ```
150
-
151
- ## Authentication
152
-
153
- ### API Credentials
154
- 1. Go to your Mautic instance
155
- 2. Navigate to **Settings** → **API Credentials**
156
- 3. Create a new API credential
157
- 4. Copy the **Public Key** and **Secret Key**
158
- 5. In n8n, add a new Mautic Advanced credential
159
- 6. Select **Credentials** authentication method
160
- 7. Enter your Mautic URL, Public Key, and Secret Key
161
-
162
- ### OAuth2
163
- 1. In n8n, add a new Mautic Advanced credential
164
- 2. Select **OAuth2** authentication method
165
- 3. Enter your Mautic URL
166
- 4. Follow the OAuth2 authorization flow
167
-
168
- ## Advanced Features
169
-
170
- ### Where Filters
171
- Advanced filtering for Contact > Get Many operations:
172
- - **Nested Conditions**: Support for andX/orX logical operators
173
- - **Multiple Expressions**: eq, neq, lt, lte, gt, gte, between, in, isNull, isNotNull
174
- - **Custom Fields**: Filter by any custom or system field
175
- - **Date Filtering**: Automatic date formatting for Mautic API
176
-
177
- ### DNC Filtering
178
- Filter contacts by Do Not Contact status:
179
- - **Email DNC Only**: Contacts with email DNC enabled
180
- - **SMS DNC Only**: Contacts with SMS DNC enabled
181
- - **Any DNC Only**: Contacts with any DNC enabled
182
-
183
- ### Field Selection
184
- Choose which fields to return for Contact operations:
185
- - **System Fields**: date_added, date_modified, id, owner_id
186
- - **Custom Fields**: Any custom field defined in Mautic
187
- - **All Fields**: Return complete contact data
188
-
189
- ### Date Formatting
190
- Automatic date formatting for known date fields:
191
- - **Format**: YYYY-MM-DD HH:mm:ss UTC
192
- - **Compatibility**: Ensures Mautic API compatibility
193
- - **Fields**: date_added, date_modified, lastActive, etc.
194
-
195
- ## Usage Examples
196
-
197
- ### Create a Contact with Tags
198
- ```javascript
199
- // Contact Create operation
200
- {
201
- "email": "john.doe@example.com",
202
- "firstName": "John",
203
- "lastName": "Doe",
204
- "additionalFields": {
205
- "tags": ["customer", "vip"],
206
- "company": "Example Corp",
207
- "phone": "+1234567890"
208
- }
209
- }
210
- ```
211
-
212
- ### Filter Contacts with Where Conditions
213
- ```javascript
214
- // Contact Get Many with Where filter
215
- {
216
- "where": {
217
- "conditions": [
218
- {
219
- "col": "email",
220
- "expr": "neq",
221
- "val": ""
222
- },
223
- {
224
- "col": "date_added",
225
- "expr": "gte",
226
- "val": "2024-01-01"
227
- }
228
- ]
229
- }
230
- }
231
- ```
232
-
233
- ### Send Email to Segment
234
- ```javascript
235
- // Segment Email operation
236
- {
237
- "segmentId": "123",
238
- "emailId": "456",
239
- "options": {
240
- "sendToNewOnly": true
241
- }
242
- }
243
- ```
244
-
245
- ## Development
246
-
247
- ### Prerequisites
248
- - Node.js 16+
249
- - npm or yarn
250
- - n8n development environment
251
-
252
- ### Commands
253
- ```bash
254
- # Install dependencies
255
- npm install
256
-
257
- # Build the node
258
- npm run build
259
-
260
- # Watch for changes (development)
261
- npm run dev
262
-
263
- # Check for linting errors
264
- npm run lint
265
-
266
- # Fix linting errors
267
- npm run lint:fix
268
-
269
- # Format code
270
- npm run format
271
- ```
272
-
273
- ### Project Structure
274
- ```
275
- ├── credentials/ # Authentication credentials
276
- ├── nodes/ # Node implementations
277
- │ └── MauticAdvanced/ # Main node files
278
- ├── dist/ # Compiled output
279
- ├── package.json # Project configuration
280
- └── README.md # This file
281
- ```
282
-
283
- ## Troubleshooting
284
-
285
- ### Common Issues
286
-
287
- #### "Could not get parameter 'options'" Error
288
- **Cause**: Missing Options parameter in node definition
289
- **Solution**: Update to latest version (0.3.2+) which includes all required Options parameters
290
-
291
- #### Authentication Errors
292
- **Cause**: Incorrect credentials or URL
293
- **Solution**:
294
- - Verify Mautic URL format (https://your-mautic.com)
295
- - Check API credentials are active
296
- - Ensure proper permissions for API access
297
-
298
- #### Date Filter Issues
299
- **Cause**: Incorrect date format
300
- **Solution**: Use YYYY-MM-DD format for date filters
301
-
302
- #### Pagination Problems
303
- **Cause**: Large datasets causing timeouts
304
- **Solution**: Use "Return All" option or set appropriate limits
305
-
306
- ### Getting Help
307
- 1. Check the [Changelog](CHANGELOG.md) for recent fixes
308
- 2. Search existing [Issues](https://github.com/msoukhomlinov/n8n-nodes-mautic-advanced/issues)
309
- 3. Create a new issue with detailed information
310
-
311
- ## Changelog
312
-
313
- See [CHANGELOG.md](CHANGELOG.md) for a complete list of changes and version history.
314
-
315
- ### Recent Highlights
316
- - **v0.3.2**: Fixed Contact Operations Options Error
317
- - **v0.3.1**: Date filter formatting improvements
318
- - **v0.3.0**: Advanced filtering, DNC filtering, field selection
319
- - **v0.2.5**: Segment support and data extraction fixes
320
-
321
- ## Support
322
-
323
- If you find this node helpful and want to support its ongoing development, you can buy me a coffee:
324
-
325
- [![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-Support-yellow.svg)](https://buymeacoffee.com/msoukhomlinov)
326
-
327
- Your support helps maintain this project and develop new features.
328
-
329
- ## License
330
-
331
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
332
-
333
- ## Credits
334
-
335
- - Built with [n8n](https://n8n.io/) workflow automation platform
336
- - Uses [change-case](https://github.com/blakeembrey/change-case) for string manipulation
337
- - Icons and design inspired by n8n community standards
1
+ # n8n Mautic Advanced Node
2
+
3
+ [![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-Support-yellow.svg)](https://buymeacoffee.com/msoukhomlinov)
4
+
5
+ Enhanced n8n node for Mautic with comprehensive API coverage including tags, campaigns, categories, notifications, and advanced contact management.
6
+
7
+ ## 📋 Table of Contents
8
+
9
+ - [What Makes This "Advanced"?](#what-makes-this-advanced)
10
+ - [Features](#features)
11
+ - [Supported Resources and Operations](#supported-resources-and-operations)
12
+ - [Installation](#installation)
13
+ - [Authentication](#authentication)
14
+ - [Advanced Features](#advanced-features)
15
+ - [Usage Examples](#usage-examples)
16
+ - [Development](#development)
17
+ - [Troubleshooting](#troubleshooting)
18
+ - [Changelog](#changelog)
19
+ - [Support](#support)
20
+ - [License](#license)
21
+
22
+ ## What Makes This "Advanced"?
23
+
24
+ This enhanced version extends the standard n8n Mautic node with:
25
+
26
+ - **🏷️ Complete Tag Management**: Full CRUD operations for tags (missing in the standard node)
27
+ - **📊 Campaign Operations**: Create, clone, update, and manage campaigns
28
+ - **📁 Category Management**: Handle categories with bundle and color support
29
+ - **🔔 Notification Management**: Full CRUD operations for notifications with scheduling and language support
30
+ - **🔗 Advanced Relationship Management**: Sophisticated contact-to-campaign and contact-to-company associations
31
+ - **📧 Enhanced Email Operations**: Segment-based email sending capabilities
32
+ - **👥 Extended Contact Operations**: UTM tag management, activity tracking, device information, and notes
33
+ - **🏢 Complete Company Management**: Full company lifecycle with custom fields and address support
34
+ - **🔍 Advanced Filtering**: Where filters, DNC filtering, and field selection
35
+ - **📅 Smart Date Handling**: Automatic date formatting for Mautic API compatibility
36
+
37
+ ## Features
38
+
39
+ ### 🚀 Core Features
40
+ - **Comprehensive API Coverage**: All major Mautic API endpoints supported
41
+ - **Advanced Filtering**: Where filters with nested conditions (andX/orX)
42
+ - **DNC Management**: Filter contacts by Do Not Contact status
43
+ - **Field Selection**: Choose which fields to return for Contact operations
44
+ - **Pagination Support**: Automatic handling of large datasets
45
+ - **Custom Fields**: Full support for custom field management
46
+ - **Error Handling**: Robust error handling and validation
47
+
48
+ ### 🔐 Authentication
49
+ - **API Credentials**: Simple API key authentication
50
+ - **OAuth2**: Full OAuth2 flow support for secure authentication
51
+
52
+ ### 📊 Data Management
53
+ - **RAW Data Options**: Control data output format
54
+ - **System Fields**: Built-in support for system fields
55
+ - **Date Formatting**: Automatic UTC date formatting
56
+ - **Deduplication**: Prevents duplicate records in paginated results
57
+
58
+ ## Supported Resources and Operations
59
+
60
+ ### 🏢 Companies
61
+ - **Create** a new company with full address and custom field support
62
+ - **Get** a company by ID
63
+ - **Get Many** companies with filtering and pagination
64
+ - **Update** company details
65
+ - **Delete** a company
66
+
67
+ ### 👥 Contacts (Enhanced)
68
+ - **Create** a new contact with extensive field options
69
+ - **Get** a contact by ID with field selection
70
+ - **Get Many** contacts with advanced filtering and DNC options
71
+ - **Update** contact details
72
+ - **Delete** a contact
73
+ - **Delete Batch** multiple contacts in one operation
74
+ - **Send Email** to a contact
75
+ - **Edit Contact Points** (add/subtract points)
76
+ - **Edit Do Not Contact List** (add/remove from DNC)
77
+ - **Add/Remove UTM Tags** for tracking
78
+ - **Get Notes** associated with a contact
79
+ - **Get Activity** history for a contact
80
+ - **Get Companies** associated with a contact
81
+ - **Get Devices** used by a contact
82
+
83
+ ### 🏷️ Tags
84
+ - **Create** a new tag with description
85
+ - **Get** a tag by ID
86
+ - **Get Many** tags with search capabilities
87
+ - **Update** tag name and description
88
+ - **Delete** a tag
89
+
90
+ ### 📊 Campaigns
91
+ - **Create** a new campaign
92
+ - **Get** a campaign by ID
93
+ - **Get All** campaigns
94
+ - **Update** campaign details
95
+ - **Delete** a campaign
96
+ - **Clone** an existing campaign
97
+ - **Get Contacts** in a campaign
98
+
99
+ ### 📁 Categories
100
+ - **Create** a new category with bundle and color settings
101
+ - **Get** a category by ID
102
+ - **Get Many** categories
103
+ - **Update** category details
104
+ - **Delete** a category
105
+
106
+ ### 🔔 Notifications
107
+ - **Create** a new notification with scheduling and language support
108
+ - **Get** a notification by ID
109
+ - **Get Many** notifications with filtering
110
+ - **Update** notification details
111
+ - **Delete** a notification
112
+
113
+ ### 📋 Segments
114
+ - **Create** a new segment
115
+ - **Get** a segment by ID
116
+ - **Get Many** segments with filtering
117
+ - **Update** segment details
118
+ - **Delete** a segment
119
+
120
+ ### 🔗 Relationship Management
121
+ - **Campaign Contact**: Add/remove contacts to/from campaigns
122
+ - **Company Contact**: Add/remove contacts to/from companies
123
+ - **Contact Segment**: Add/remove contacts to/from segments
124
+
125
+ ### 📧 Email Operations
126
+ - **Segment Email**: Send emails to segments
127
+
128
+ ## Installation
129
+
130
+ ### Method 1: npm (Recommended)
131
+ ```bash
132
+ npm install n8n-nodes-mautic-advanced
133
+ ```
134
+
135
+ ### Method 2: Manual Installation
136
+ 1. Clone this repository:
137
+ ```bash
138
+ git clone https://github.com/msoukhomlinov/n8n-nodes-mautic-advanced.git
139
+ cd n8n-nodes-mautic-advanced
140
+ ```
141
+
142
+ 2. Install dependencies:
143
+ ```bash
144
+ npm install
145
+ ```
146
+
147
+ 3. Build the node:
148
+ ```bash
149
+ npm run build
150
+ ```
151
+
152
+ 4. Link to your n8n installation:
153
+ ```bash
154
+ npm link
155
+ cd /path/to/your/n8n/installation
156
+ npm link n8n-nodes-mautic-advanced
157
+ ```
158
+
159
+ ## Authentication
160
+
161
+ ### API Credentials
162
+ 1. Go to your Mautic instance
163
+ 2. Navigate to **Settings** **API Credentials**
164
+ 3. Create a new API credential
165
+ 4. Copy the **Public Key** and **Secret Key**
166
+ 5. In n8n, add a new Mautic Advanced credential
167
+ 6. Select **Credentials** authentication method
168
+ 7. Enter your Mautic URL, Public Key, and Secret Key
169
+
170
+ ### OAuth2
171
+ 1. In n8n, add a new Mautic Advanced credential
172
+ 2. Select **OAuth2** authentication method
173
+ 3. Enter your Mautic URL
174
+ 4. Follow the OAuth2 authorization flow
175
+
176
+ ## Advanced Features
177
+
178
+ ### Where Filters
179
+ Advanced filtering for Contact > Get Many operations:
180
+ - **Nested Conditions**: Support for andX/orX logical operators
181
+ - **Multiple Expressions**: eq, neq, lt, lte, gt, gte, between, in, isNull, isNotNull
182
+ - **Custom Fields**: Filter by any custom or system field
183
+ - **Date Filtering**: Automatic date formatting for Mautic API
184
+
185
+ ### DNC Filtering
186
+ Filter contacts by Do Not Contact status:
187
+ - **Email DNC Only**: Contacts with email DNC enabled
188
+ - **SMS DNC Only**: Contacts with SMS DNC enabled
189
+ - **Any DNC Only**: Contacts with any DNC enabled
190
+
191
+ ### Field Selection
192
+ Choose which fields to return for Contact operations:
193
+ - **System Fields**: date_added, date_modified, id, owner_id
194
+ - **Custom Fields**: Any custom field defined in Mautic
195
+ - **All Fields**: Return complete contact data
196
+
197
+ ### Date Formatting
198
+ Automatic date formatting for known date fields:
199
+ - **Format**: YYYY-MM-DD HH:mm:ss UTC
200
+ - **Compatibility**: Ensures Mautic API compatibility
201
+ - **Fields**: date_added, date_modified, lastActive, etc.
202
+
203
+ ## Usage Examples
204
+
205
+ ### Create a Contact with Tags
206
+ ```javascript
207
+ // Contact Create operation
208
+ {
209
+ "email": "john.doe@example.com",
210
+ "firstName": "John",
211
+ "lastName": "Doe",
212
+ "additionalFields": {
213
+ "tags": ["customer", "vip"],
214
+ "company": "Example Corp",
215
+ "phone": "+1234567890"
216
+ }
217
+ }
218
+ ```
219
+
220
+ ### Filter Contacts with Where Conditions
221
+ ```javascript
222
+ // Contact Get Many with Where filter
223
+ {
224
+ "where": {
225
+ "conditions": [
226
+ {
227
+ "col": "email",
228
+ "expr": "neq",
229
+ "val": ""
230
+ },
231
+ {
232
+ "col": "date_added",
233
+ "expr": "gte",
234
+ "val": "2024-01-01"
235
+ }
236
+ ]
237
+ }
238
+ }
239
+ ```
240
+
241
+ ### Send Email to Segment
242
+ ```javascript
243
+ // Segment Email operation
244
+ {
245
+ "segmentId": "123",
246
+ "emailId": "456",
247
+ "options": {
248
+ "sendToNewOnly": true
249
+ }
250
+ }
251
+ ```
252
+
253
+ ## Development
254
+
255
+ ### Prerequisites
256
+ - Node.js 16+
257
+ - npm or yarn
258
+ - n8n development environment
259
+
260
+ ### Commands
261
+ ```bash
262
+ # Install dependencies
263
+ npm install
264
+
265
+ # Build the node
266
+ npm run build
267
+
268
+ # Watch for changes (development)
269
+ npm run dev
270
+
271
+ # Check for linting errors
272
+ npm run lint
273
+
274
+ # Fix linting errors
275
+ npm run lint:fix
276
+
277
+ # Format code
278
+ npm run format
279
+ ```
280
+
281
+ ### Project Structure
282
+ ```
283
+ ├── credentials/ # Authentication credentials
284
+ ├── nodes/ # Node implementations
285
+ │ └── MauticAdvanced/ # Main node files
286
+ ├── dist/ # Compiled output
287
+ ├── package.json # Project configuration
288
+ └── README.md # This file
289
+ ```
290
+
291
+ ## Troubleshooting
292
+
293
+ ### Common Issues
294
+
295
+ #### "Could not get parameter 'options'" Error
296
+ **Cause**: Missing Options parameter in node definition
297
+ **Solution**: Update to latest version (0.3.2+) which includes all required Options parameters
298
+
299
+ #### Authentication Errors
300
+ **Cause**: Incorrect credentials or URL
301
+ **Solution**:
302
+ - Verify Mautic URL format (https://your-mautic.com)
303
+ - Check API credentials are active
304
+ - Ensure proper permissions for API access
305
+
306
+ #### Date Filter Issues
307
+ **Cause**: Incorrect date format
308
+ **Solution**: Use YYYY-MM-DD format for date filters
309
+
310
+ #### Pagination Problems
311
+ **Cause**: Large datasets causing timeouts
312
+ **Solution**: Use "Return All" option or set appropriate limits
313
+
314
+ ### Getting Help
315
+ 1. Check the [Changelog](CHANGELOG.md) for recent fixes
316
+ 2. Search existing [Issues](https://github.com/msoukhomlinov/n8n-nodes-mautic-advanced/issues)
317
+ 3. Create a new issue with detailed information
318
+
319
+ ## Support
320
+
321
+ If you find this node helpful and want to support its ongoing development, you can buy me a coffee:
322
+
323
+ [![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-Support-yellow.svg)](https://buymeacoffee.com/msoukhomlinov)
324
+
325
+ Your support helps maintain this project and develop new features.
326
+
327
+ ## License
328
+
329
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
330
+
331
+ ## Credits
332
+
333
+ - Built with [n8n](https://n8n.io/) workflow automation platform
334
+ - Uses [change-case](https://github.com/blakeembrey/change-case) for string manipulation
335
+ - Icons and design inspired by n8n community standards