@signaliz/cli 1.0.46 → 1.0.48
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 +9 -7
- package/dist/bin.js +4 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ Failed result lines preserve `errorCode`, `retryEligible`, and
|
|
|
68
68
|
`retryAfterSeconds` when the API supplies recovery guidance.
|
|
69
69
|
|
|
70
70
|
If a single request or batch submission response is lost, rerun the same
|
|
71
|
-
command with `--idempotency-key <key>` to recover the original request or
|
|
71
|
+
command with `--idempotency-key <key>` to recover the original request or durable job
|
|
72
72
|
without duplicate work. Add `--dry-run` to any product command, including one
|
|
73
73
|
using `--input`, to receive a conservative credit ceiling without provider
|
|
74
74
|
calls, jobs, writes, or spend.
|
|
@@ -76,12 +76,14 @@ calls, jobs, writes, or spend.
|
|
|
76
76
|
Batch input is capped at 5,000 records, concurrency is bounded to `1-50`, input
|
|
77
77
|
order is preserved, and a failed item does not abort successful items.
|
|
78
78
|
Exact duplicate tasks are single-flighted across the full input before
|
|
79
|
-
transport.
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
79
|
+
transport. All four core products use one recoverable REST job for inputs larger
|
|
80
|
+
than 25; the CLI waits for completion and retrieves every result page before it
|
|
81
|
+
emits complete results or terminal per-row errors. Find Email, Verify Email, and
|
|
82
|
+
Signal to Copy use 500-row pages, while Company Signal Enrichment uses 25-row
|
|
83
|
+
pages. Durable Signal to Copy jobs use available company-signal data only. If a
|
|
84
|
+
copy row explicitly requests fresh or deep research, the CLI preserves that
|
|
85
|
+
behavior with synchronous chunks of at most 25. Signal to Copy also shares
|
|
86
|
+
company research across recipients.
|
|
85
87
|
|
|
86
88
|
Connection commands are limited to access infrastructure:
|
|
87
89
|
|
package/dist/bin.js
CHANGED
|
@@ -362,10 +362,12 @@ async function verifyEmail(args) {
|
|
|
362
362
|
`);
|
|
363
363
|
return;
|
|
364
364
|
}
|
|
365
|
-
process.stdout.write(`${result.email}: ${result.
|
|
365
|
+
process.stdout.write(`${result.email}: ${result.verifiedForSending ? "verified for sending" : "not verified for sending"}
|
|
366
366
|
`);
|
|
367
367
|
process.stdout.write(`Valid: ${result.isValid}
|
|
368
|
+
Deliverable: ${result.isDeliverable}
|
|
368
369
|
Catch-all: ${result.isCatchAll}
|
|
370
|
+
Verdict: ${result.verificationVerdict}
|
|
369
371
|
`);
|
|
370
372
|
});
|
|
371
373
|
}
|
|
@@ -588,7 +590,7 @@ main().catch((error) => {
|
|
|
588
590
|
process.stdout.write(`${stringifyMachineJson({
|
|
589
591
|
success: false,
|
|
590
592
|
error: "product_request_failed",
|
|
591
|
-
error_code: signalizError?.code || "CLI_ERROR",
|
|
593
|
+
error_code: signalizError?.code || (error instanceof RangeError ? "INPUT_001" : "CLI_ERROR"),
|
|
592
594
|
message,
|
|
593
595
|
retry_eligible: signalizError?.isRetryable ?? false,
|
|
594
596
|
...signalizError?.retryAfter !== void 0 ? {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signaliz/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.48",
|
|
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.50"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"tsup": "^8.0.0",
|