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": "
|
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
|
-
"
|
1608
|
+
"comments": "Bình luận 1\nBình luận 2\nBình luận 3",
|
1609
1609
|
"speed": "0",
|
1610
|
-
"server": "
|
1611
|
-
"
|
1610
|
+
"server": "server_3",
|
1611
|
+
"link": "",
|
1612
1612
|
"note": "Tự động tạo từ n8n UME Social Seeding"
|
1613
1613
|
},
|
1614
1614
|
"selectedServer": {
|