ilml-plugin-linkedin 1.6.0 → 1.9.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 +21 -0
- package/dist/applyQueue.mjs +18 -18
- package/dist/daily.mjs +16 -16
- package/dist/enrichProfiles.mjs +264 -0
- package/dist/funnelRunner.mjs +47 -47
- package/dist/messageBot.mjs +31 -31
- package/dist/migrationCli.mjs +17 -17
- package/dist/profileHistory.mjs +9 -0
- package/dist/run.mjs +57 -58
- package/dist/scout.mjs +42 -42
- package/dist/syncAll.mjs +114 -114
- package/dist/verifyAbout.mjs +214 -0
- package/dist/viewers.mjs +70 -70
- package/dist/visit.mjs +115 -115
- package/ilml-plugin.json +3 -1
- package/package.json +5 -1
package/ilml-plugin.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "linkedin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "LinkedIn job automation: apply, scout, sync, funnel, messages",
|
|
5
5
|
"commands": {
|
|
6
6
|
"apply": { "run": "node dist/run.mjs" },
|
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
"apply-queue": { "run": "node dist/applyQueue.mjs" },
|
|
18
18
|
"warm-scan": { "run": "node dist/warmScan.mjs" },
|
|
19
19
|
"daily": { "run": "node dist/daily.mjs" },
|
|
20
|
+
"profile-history": { "run": "node dist/profileHistory.mjs" },
|
|
21
|
+
"verify-about": { "run": "node dist/verifyAbout.mjs" },
|
|
20
22
|
"login": { "run": "node dist/src/saveLoginState.mjs" },
|
|
21
23
|
"migrate-status": { "run": "node dist/migrationCli.mjs status" },
|
|
22
24
|
"data-cleanup": { "run": "node dist/migrationCli.mjs data-cleanup" },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ilml-plugin-linkedin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"description": "ilml plugin: pull your LinkedIn graph (connections, threads, notes) into iLiveMyLife and run inbox sync, AI-drafted replies, Easy Apply, and recruiter outreach from the terminal.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -26,6 +26,10 @@
|
|
|
26
26
|
"scout:list": "node scout.mjs --list",
|
|
27
27
|
"visit": "node visit.mjs",
|
|
28
28
|
"visit:list": "node visit.mjs --list",
|
|
29
|
+
"enrich-profiles": "node enrichProfiles.mjs",
|
|
30
|
+
"enrich-profiles:list": "node enrichProfiles.mjs --list",
|
|
31
|
+
"verify-about": "node verifyAbout.mjs",
|
|
32
|
+
"profile-history": "node profileHistory.mjs",
|
|
29
33
|
"viewers": "node viewers.mjs --save",
|
|
30
34
|
"viewers:list": "node viewers.mjs --list",
|
|
31
35
|
"apply-queue": "node applyQueue.mjs",
|