openings 0.1.7 → 0.1.8
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/.codex-plugin/plugin.json +1 -1
- package/data/companies.json +5472 -0
- package/package.json +1 -1
- package/src/enrichment-registry.ts +2 -1
- package/src/version.ts +1 -1
package/package.json
CHANGED
|
@@ -93,7 +93,8 @@ export function transientAttempt(attemptedAt: Date, consecutiveFailures: number,
|
|
|
93
93
|
function mergeLead(left: EnrichmentLead, right: EnrichmentLead): EnrichmentLead {
|
|
94
94
|
return canonicalLead({
|
|
95
95
|
...left,
|
|
96
|
-
|
|
96
|
+
// Keep the first-seen URL: it agrees with the token, while a later sighting may differ only in slug case.
|
|
97
|
+
sourceUrl: left.sourceUrl,
|
|
97
98
|
discoveredFrom: unique([...left.discoveredFrom, ...right.discoveredFrom]),
|
|
98
99
|
companyMatches: unique([...left.companyMatches, ...right.companyMatches]),
|
|
99
100
|
identityEvidence: unique([...left.identityEvidence, ...right.identityEvidence]),
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "0.1.
|
|
1
|
+
export const VERSION = "0.1.8";
|