n8n-nodes-ume-v4 4.5.2 → 4.5.3

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.
@@ -149,9 +149,16 @@ class UmeSocialSeeding {
149
149
  // Set default note if empty
150
150
  formBody[parameter.name] = value.trim() || "Auto-generated by n8n UME Social Seeding";
151
151
  }
152
+ else if (parameter.name === 'comments') {
153
+ // Process comment list - convert multiline to API format
154
+ const processedComments = (0, UmeSocialSeedingHelpers_1.processCommentList)(value.trim() || '');
155
+ if (processedComments) {
156
+ formBody[parameter.name] = processedComments;
157
+ }
158
+ }
152
159
  else if (parameter.name === 'list_comment') {
153
160
  // Process comment list - convert multiline to API format
154
- const processedComments = (0, UmeSocialSeedingHelpers_1.processCommentList)(value.trim());
161
+ const processedComments = (0, UmeSocialSeedingHelpers_1.processCommentList)(value.trim() || '');
155
162
  if (processedComments) {
156
163
  formBody[parameter.name] = processedComments;
157
164
  }
@@ -1500,7 +1500,7 @@
1500
1500
  "displayName": "Tốc độ",
1501
1501
  "type": "options",
1502
1502
  "required": false,
1503
- "default": "15",
1503
+ "default": "0",
1504
1504
  "description": "Chọn tốc độ xử lý đơn hàng",
1505
1505
  "options": [
1506
1506
  {
@@ -1605,10 +1605,10 @@
1605
1605
  "max": 2730
1606
1606
  },
1607
1607
  "defaultValues": {
1608
- "list_comment": "Instagram em chưa đăng ký, không biết có cần không.\nChắc là an toàn rồi, không lo gì nữa.\nCảm ơn DPS đã có luật rõ ràng hơn.",
1608
+ "comments": "Bình luận 1\nBình luận 2\nBình luận 3",
1609
1609
  "speed": "0",
1610
- "server": "server_1",
1611
- "uid": "",
1610
+ "server": "server_3",
1611
+ "link": "",
1612
1612
  "note": "Tự động tạo từ n8n UME Social Seeding"
1613
1613
  },
1614
1614
  "selectedServer": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-ume-v4",
3
- "version": "4.5.2",
3
+ "version": "4.5.3",
4
4
  "description": "UME Social Seeding Services for n8n - Version 4 with updated features",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",