@signaliz/cli 1.0.47 → 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/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/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",
|