@signaliz/cli 1.0.27 → 1.0.29
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 +2 -0
- package/dist/bin.js +3 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -45,6 +45,8 @@ signaliz signal-to-copy --input copy-requests.jsonl --concurrency 5 --json
|
|
|
45
45
|
|
|
46
46
|
Batch input is capped at 5,000 records, concurrency is bounded to `1-50`, input
|
|
47
47
|
order is preserved, and a failed item does not abort successful items.
|
|
48
|
+
Signal to Copy is transported in 25-row chunks and single-flights duplicate
|
|
49
|
+
copy requests and shared company research.
|
|
48
50
|
|
|
49
51
|
Connection commands are limited to access infrastructure:
|
|
50
52
|
|
package/dist/bin.js
CHANGED
|
@@ -247,6 +247,9 @@ async function findEmail() {
|
|
|
247
247
|
`);
|
|
248
248
|
process.stdout.write(`Provider: ${result.providerUsed}
|
|
249
249
|
`);
|
|
250
|
+
if (result.needsReverification) {
|
|
251
|
+
process.stdout.write("Send safety: stale verification; rerun with --skip-cache before sending\n");
|
|
252
|
+
}
|
|
250
253
|
});
|
|
251
254
|
}
|
|
252
255
|
async function verifyEmail(args) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signaliz/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.29",
|
|
4
4
|
"description": "Signaliz CLI for Find Email, Verify Email, Company Signal Enrichment, and Signal to Copy AI.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"signaliz": "dist/bin.js"
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"node": ">=18"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@signaliz/sdk": "^1.0.
|
|
31
|
+
"@signaliz/sdk": "^1.0.29"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"tsup": "^8.0.0",
|