lhremote 0.18.0 → 0.20.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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -200,7 +200,7 @@ lhremote react-to-comment <postUrl> <commentUrn> [--type <like|celebrate|support
200
200
 
201
201
  ```sh
202
202
  lhremote build-url <sourceType> [--keywords <keywords>] [--current-company <id>]... [--past-company <id>]... [--geo <id>]... [--industry <id>]... [--school <id>]... [--network <code>]... [--profile-language <code>]... [--service-category <id>]... [--filter <spec>]... [--slug <slug>] [--id <id>] [--json]
203
- lhremote resolve-entity <entityType> <query> [--limit <n>] [--cdp-port <port>] [--json]
203
+ lhremote resolve-entity <entityType> <query> [--limit <n>] [--json]
204
204
  lhremote list-reference-data <dataType> [--json]
205
205
  ```
206
206
 
@@ -923,13 +923,12 @@ Build a LinkedIn URL for any supported source type. Supports SearchPage (basic s
923
923
 
924
924
  #### `resolve-linkedin-entity`
925
925
 
926
- Resolve human-readable names (company names, locations, schools) to LinkedIn entity IDs via typeahead endpoints. CLI command: `resolve-entity`.
926
+ Resolve human-readable names (company names, locations, schools) to LinkedIn entity IDs via LinkedIn's public typeahead endpoint. No authentication and no running LinkedHelper instance required. CLI command: `resolve-entity`.
927
927
 
928
928
  | Parameter | Type | Required | Default | Description |
929
929
  |-----------|------|----------|---------|-------------|
930
930
  | `query` | string | Yes | — | Search query (e.g., company name, city) |
931
931
  | `entityType` | string | Yes | — | `COMPANY`, `GEO`, or `SCHOOL` |
932
- | `cdpPort` | number | No | 9222 | CDP port |
933
932
 
934
933
  #### `list-linkedin-reference-data`
935
934
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lhremote",
3
- "version": "0.18.0",
3
+ "version": "0.20.0",
4
4
  "description": "LinkedHelper automation toolkit — CLI & MCP server",
5
5
  "type": "module",
6
6
  "engines": {
@@ -37,14 +37,14 @@
37
37
  "dist"
38
38
  ],
39
39
  "dependencies": {
40
- "@lhremote/cli": "^0.18.0",
41
- "@lhremote/mcp": "^0.18.0"
40
+ "@lhremote/cli": "^0.20.0",
41
+ "@lhremote/mcp": "^0.20.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/node": "^25",
45
45
  "eslint": "^9.39.2",
46
46
  "typescript": "^5.9.3",
47
- "vitest": "^4.0.18"
47
+ "vitest": "^4.1.5"
48
48
  },
49
49
  "scripts": {
50
50
  "build": "tsc",