@signaliz/cli 1.0.19 → 1.0.21
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 +7 -0
- package/dist/bin.js +3 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -59,6 +59,13 @@ Use Campaign Builder when you need a list now. Use the GTM Kernel when the campa
|
|
|
59
59
|
npm install -g @signaliz/cli
|
|
60
60
|
```
|
|
61
61
|
|
|
62
|
+
## Production REST Endpoints
|
|
63
|
+
|
|
64
|
+
- Find Email: `https://api.signaliz.com/functions/v1/find-verified-email-v2`
|
|
65
|
+
- Email Verification: `https://api.signaliz.com/functions/v1/email-verification-2`
|
|
66
|
+
- Company Signal Enrichment: `https://api.signaliz.com/functions/v1/company-signal-enrichment-v2`
|
|
67
|
+
- Signal to Copy: `https://api.signaliz.com/functions/v1/api/v1/signal-to-copy`
|
|
68
|
+
|
|
62
69
|
## Quick Start
|
|
63
70
|
|
|
64
71
|
The golden path, in order. Each step shows the canonical command surface; compatibility aliases still work, but the README keeps one path visible.
|
package/dist/bin.js
CHANGED
|
@@ -3092,7 +3092,9 @@ async function signals(sub, rest) {
|
|
|
3092
3092
|
lookbackDays: numberFlag("lookback-days"),
|
|
3093
3093
|
online: !hasFlag("offline"),
|
|
3094
3094
|
enableDeepSearch: !hasFlag("shallow") && !hasFlag("offline"),
|
|
3095
|
-
skipCache: hasFlag("skip-cache") || hasFlag("fresh-only")
|
|
3095
|
+
skipCache: hasFlag("skip-cache") || hasFlag("fresh-only"),
|
|
3096
|
+
maxWaitMs: numberFlag("max-wait-ms"),
|
|
3097
|
+
pollIntervalMs: numberFlag("poll-interval-ms")
|
|
3096
3098
|
});
|
|
3097
3099
|
return output(result2, () => {
|
|
3098
3100
|
console.log("Company signal enrichment complete");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signaliz/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
4
4
|
"description": "Signaliz CLI — GTM Kernel, Nango routes, MCP, and enrichment operations.",
|
|
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.21"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"tsup": "^8.0.0",
|