ilml-plugin-linkedin 1.15.0 → 1.16.0
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/CHANGELOG.md +4 -0
- package/dist/connect.mjs +46 -46
- package/dist/daily.mjs +13 -13
- package/dist/enrichProfile.mjs +3 -3
- package/dist/funnelRunner.mjs +6 -6
- package/dist/migrationCli.mjs +4 -4
- package/dist/profileHistory.mjs +4 -4
- package/dist/run.mjs +51 -51
- package/dist/syncAll.mjs +2 -2
- package/dist/syncConnections.mjs +71 -0
- package/dist/verifyAbout.mjs +12 -12
- package/dist/version.mjs +1 -1
- package/dist/visit.mjs +4 -4
- package/dist/warmScan.mjs +3 -3
- package/ilml-plugin.json +15 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.16.0
|
|
4
|
+
- **New `ilml linkedin sync-connections` — find out who accepted your connection requests.** It scans your LinkedIn connections list and updates your local contacts: people who accepted flip to "connected" (with the accept date), and brand-new connections are imported. This is the piece that makes acceptance analytics (`quota`) and de-duplication actually accurate — run it after a batch of requests. (`sync`/`sync-all` handle your inbox; this handles your connections list.)
|
|
5
|
+
- **Won't silently create a duplicate contact when someone accepts.** A LinkedIn profile can have two different URLs for the same person (a permanent id-based one and their custom name one), which could make `sync-connections` file an accepted person as a second, separate contact. Now `connect run` remembers both URLs the moment it visits a profile, so acceptance is matched back to the original contact. As a fallback, if a brand-new connection shares a name with someone you still have a pending request to, it's flagged as a possible duplicate for you to review — never silently merged (two people can share a name). No schema change.
|
|
6
|
+
|
|
3
7
|
## 1.15.0
|
|
4
8
|
- **Connection dates are now split into "requested" vs "accepted".** The plugin records when you *sent* a connection request separately from when it was *accepted* — before, one field held whichever happened last, so a still-pending person could look like they'd already connected. A one-time migration cleans up your existing contacts on first run (an automatic backup is saved before it touches anything).
|
|
5
9
|
|