@signaliz/sdk 1.0.68 → 1.0.69
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 +1 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,16 +67,13 @@ const resumedVerification = await signaliz.verifyEmail('jane@example.com', {
|
|
|
67
67
|
console.log(resumedVerification.creditsUsed, resumedVerification.billingReplayed);
|
|
68
68
|
|
|
69
69
|
const signals = await signaliz.enrichCompanySignals({
|
|
70
|
-
|
|
71
|
-
researchPrompt: 'expansion priorities',
|
|
70
|
+
domain: 'example.com',
|
|
72
71
|
});
|
|
73
72
|
// Signal rows expose only the customer-facing signal fields.
|
|
74
73
|
console.log(
|
|
75
74
|
signals.signals[0].signal_type,
|
|
76
75
|
signals.signals[0].source,
|
|
77
76
|
signals.signals[0].date,
|
|
78
|
-
signals.signals[0].company_name,
|
|
79
|
-
signals.signals[0].domain,
|
|
80
77
|
);
|
|
81
78
|
|
|
82
79
|
// Query-first discovery returns distinct companies with dated source evidence.
|
package/package.json
CHANGED