nolimit-x 1.0.89 → 1.0.90
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/package.json +1 -1
- package/src/advanced-name-extractor.js +1 -1
- package/src/sender.js +1 -4
package/package.json
CHANGED
|
@@ -694,7 +694,7 @@ class AdvancedNameExtractor {
|
|
|
694
694
|
const localPart = email.split('@')[0];
|
|
695
695
|
// 1. Try advanced split/pattern recognition
|
|
696
696
|
const splitResult = this.advancedBestSplitName(localPart);
|
|
697
|
-
if (splitResult && splitResult.confidence >=
|
|
697
|
+
if (splitResult && splitResult.confidence >= 70) {
|
|
698
698
|
return {
|
|
699
699
|
name: splitResult.name,
|
|
700
700
|
confidence: splitResult.confidence * 100,
|
package/src/sender.js
CHANGED
|
@@ -1058,7 +1058,7 @@ function sendSMSViaRust(phoneNumber, message, sender, config) {
|
|
|
1058
1058
|
|
|
1059
1059
|
// Always send as an array, even for a single job
|
|
1060
1060
|
const payload = JSON.stringify([jobData]);
|
|
1061
|
-
|
|
1061
|
+
|
|
1062
1062
|
child.stdin.write(payload);
|
|
1063
1063
|
child.stdin.end();
|
|
1064
1064
|
});
|
|
@@ -1475,10 +1475,8 @@ class EnhancedSenderRanker {
|
|
|
1475
1475
|
}
|
|
1476
1476
|
}
|
|
1477
1477
|
|
|
1478
|
-
console.warn(`[ENHANCED-SENDER-RANKER] Could not find senders file at any of: ${possiblePaths.join(', ')}`);
|
|
1479
1478
|
return [];
|
|
1480
1479
|
} catch (error) {
|
|
1481
|
-
console.error(`[ENHANCED-SENDER-RANKER] Error loading senders: ${error.message}`);
|
|
1482
1480
|
return [];
|
|
1483
1481
|
}
|
|
1484
1482
|
}
|
|
@@ -1530,7 +1528,6 @@ class EnhancedSenderRanker {
|
|
|
1530
1528
|
// Select best sender with enhanced scoring
|
|
1531
1529
|
selectBestSender(recipientDomain) {
|
|
1532
1530
|
if (this.senders.length === 0) {
|
|
1533
|
-
console.warn('[ENHANCED-SENDER-RANKER] No senders available');
|
|
1534
1531
|
return null;
|
|
1535
1532
|
}
|
|
1536
1533
|
|