n8n-nodes-ume-v4 4.5.1 → 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
|
}
|
@@ -1473,6 +1473,16 @@
|
|
1473
1473
|
"description": "Link gốc của bài viết Instagram (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
1474
1474
|
"placeholder": "https://www.instagram.com/p/ABC123/"
|
1475
1475
|
},
|
1476
|
+
{
|
1477
|
+
"displayName": "Danh sách bình luận",
|
1478
|
+
"name": "comments",
|
1479
|
+
"type": "string",
|
1480
|
+
"required": true,
|
1481
|
+
"defaultMode": "expression",
|
1482
|
+
"default": "Bình luận 1\nBình luận 2\nBình luận 3",
|
1483
|
+
"placeholder": "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.",
|
1484
|
+
"description": "Mỗi bình luận trên một dòng. Hệ thống sẽ tự động xử lý trước khi gửi đi."
|
1485
|
+
},
|
1476
1486
|
{
|
1477
1487
|
"name": "count",
|
1478
1488
|
"displayName": "Số lượng",
|
@@ -1485,6 +1495,31 @@
|
|
1485
1495
|
"maxValue": 250
|
1486
1496
|
}
|
1487
1497
|
},
|
1498
|
+
{
|
1499
|
+
"name": "speed",
|
1500
|
+
"displayName": "Tốc độ",
|
1501
|
+
"type": "options",
|
1502
|
+
"required": false,
|
1503
|
+
"default": "0",
|
1504
|
+
"description": "Chọn tốc độ xử lý đơn hàng",
|
1505
|
+
"options": [
|
1506
|
+
{
|
1507
|
+
"name": "Nhanh",
|
1508
|
+
"value": "0",
|
1509
|
+
"description": "Xử lý nhanh nhất"
|
1510
|
+
},
|
1511
|
+
{
|
1512
|
+
"name": "Trung bình",
|
1513
|
+
"value": "15",
|
1514
|
+
"description": "Xử lý ở tốc độ trung bình"
|
1515
|
+
},
|
1516
|
+
{
|
1517
|
+
"name": "Chậm",
|
1518
|
+
"value": "50",
|
1519
|
+
"description": "Xử lý chậm để tự nhiên hơn"
|
1520
|
+
}
|
1521
|
+
]
|
1522
|
+
},
|
1488
1523
|
{
|
1489
1524
|
"name": "server",
|
1490
1525
|
"displayName": "Chọn Server",
|
@@ -1526,41 +1561,6 @@
|
|
1526
1561
|
"required": false,
|
1527
1562
|
"default": "Tự động tạo từ n8n UME Social Seeding",
|
1528
1563
|
"description": " (Nếu để trống sẽ tự động tạo từ n8n)"
|
1529
|
-
},
|
1530
|
-
{
|
1531
|
-
"displayName": "Danh sách bình luận",
|
1532
|
-
"name": "list_comment",
|
1533
|
-
"type": "string",
|
1534
|
-
"required": true,
|
1535
|
-
"default": "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.",
|
1536
|
-
"placeholder": "Web em chưa đăng ký, đọc xong toát mồ hôi hột\nBị phạt 10-40 triệu là bay luôn cái web bán bún\nNay ra luật mới mà DPS bắt trend nhanh thật",
|
1537
|
-
"description": "Mỗi bình luận trên một dòng. Hệ thống sẽ tự động xử lý trước khi gửi đi.",
|
1538
|
-
"defaultMode": "expression"
|
1539
|
-
},
|
1540
|
-
{
|
1541
|
-
"name": "speed",
|
1542
|
-
"displayName": "Tốc độ",
|
1543
|
-
"type": "options",
|
1544
|
-
"required": false,
|
1545
|
-
"default": "15",
|
1546
|
-
"description": "Chọn tốc độ xử lý đơn hàng",
|
1547
|
-
"options": [
|
1548
|
-
{
|
1549
|
-
"name": "Nhanh",
|
1550
|
-
"value": "0",
|
1551
|
-
"description": "Xử lý nhanh nhất"
|
1552
|
-
},
|
1553
|
-
{
|
1554
|
-
"name": "Trung bình",
|
1555
|
-
"value": "15",
|
1556
|
-
"description": "Xử lý ở tốc độ trung bình"
|
1557
|
-
},
|
1558
|
-
{
|
1559
|
-
"name": "Chậm",
|
1560
|
-
"value": "50",
|
1561
|
-
"description": "Xử lý chậm để tự nhiên hơn"
|
1562
|
-
}
|
1563
|
-
]
|
1564
1564
|
}
|
1565
1565
|
],
|
1566
1566
|
"warnings": [
|
@@ -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": {
|