@signaliz/cli 1.0.43 → 1.0.44

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 CHANGED
@@ -67,6 +67,8 @@ generate-company-rows | signaliz company-signals --input - --jsonl --omit-raw
67
67
 
68
68
  JSONL writes one `{ "type": "result", ... }` line per input followed by one
69
69
  `{ "type": "summary", ... }` line. Input order and cardinality are preserved.
70
+ Failed result lines preserve `errorCode`, `retryEligible`, and
71
+ `retryAfterSeconds` when the API supplies recovery guidance.
70
72
 
71
73
  If a batch submission response is lost, rerun the same command with
72
74
  `--idempotency-key <key>` to recover the original job without duplicate work.
package/dist/bin.js CHANGED
@@ -517,6 +517,10 @@ main().catch((error) => {
517
517
  error_code: signalizError?.code || "CLI_ERROR",
518
518
  message,
519
519
  retry_eligible: signalizError?.isRetryable ?? false,
520
+ ...signalizError?.retryAfter !== void 0 ? {
521
+ retry_after: signalizError.retryAfter,
522
+ retry_after_seconds: signalizError.retryAfter
523
+ } : {},
520
524
  ...signalizError?.errorType ? { error_type: signalizError.errorType } : {},
521
525
  ...signalizError?.details ? { details: signalizError.details } : {}
522
526
  }, hasFlag("json") ? 2 : void 0)}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@signaliz/cli",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
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.43"
31
+ "@signaliz/sdk": "^1.0.46"
32
32
  },
33
33
  "devDependencies": {
34
34
  "tsup": "^8.0.0",