@florydev/linkedin-api-voyager 1.3.5 → 1.3.7
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 +18 -4
- package/package.json +25 -1
package/README.md
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
# LinkedIn API Voyager
|
|
2
2
|
|
|
3
|
+
> ⚠️ **MUDANÇA DE PACOTE:** Esta biblioteca foi renomeada e movida de `linkedin-api-voyager` para `@florydev/linkedin-api-voyager`.
|
|
4
|
+
> Por favor, atualize suas dependências. A versão antiga não receberá novas atualizações.
|
|
5
|
+
|
|
6
|
+
[](https://www.npmjs.com/package/@florydev/linkedin-api-voyager)
|
|
7
|
+
[](https://opensource.org/licenses/MIT)
|
|
8
|
+
|
|
3
9
|
Biblioteca TypeScript para interagir com endpoints internos do LinkedIn (Voyager). Esta não é uma API oficial.
|
|
4
10
|
|
|
5
11
|
## Instalação
|
|
6
12
|
|
|
7
13
|
```bash
|
|
8
|
-
npm install linkedin-api-voyager
|
|
14
|
+
npm install @florydev/linkedin-api-voyager
|
|
9
15
|
# ou
|
|
10
|
-
yarn add linkedin-api-voyager
|
|
16
|
+
yarn add @florydev/linkedin-api-voyager
|
|
11
17
|
```
|
|
12
18
|
|
|
13
19
|
## Configuração (Obrigatório)
|
|
@@ -21,7 +27,7 @@ Se você estiver usando em uma aplicação web (React, Vue, etc.), você deve cr
|
|
|
21
27
|
No ponto de entrada da sua aplicação backend (ex: `index.ts`, `server.ts`):
|
|
22
28
|
|
|
23
29
|
```ts
|
|
24
|
-
import { Client } from "linkedin-api-voyager";
|
|
30
|
+
import { Client } from "@florydev/linkedin-api-voyager";
|
|
25
31
|
|
|
26
32
|
// Configure suas credenciais uma única vez
|
|
27
33
|
Client({
|
|
@@ -54,7 +60,7 @@ import {
|
|
|
54
60
|
getCompany,
|
|
55
61
|
searchPeople,
|
|
56
62
|
getCommentsByPostUrl,
|
|
57
|
-
} from "linkedin-api-voyager";
|
|
63
|
+
} from "@florydev/linkedin-api-voyager";
|
|
58
64
|
|
|
59
65
|
// Exemplo: Buscar perfil
|
|
60
66
|
const profile = await getUserMiniProfile("florymignon");
|
|
@@ -92,6 +98,14 @@ A biblioteca exporta funções dos seguintes módulos:
|
|
|
92
98
|
- `search`: Busca de pessoas e empresas.
|
|
93
99
|
- `utils`: Utilitários gerais.
|
|
94
100
|
|
|
101
|
+
## Autor
|
|
102
|
+
|
|
103
|
+
**Flory Muenge Tshiteya**
|
|
104
|
+
|
|
105
|
+
- Github: [@Floryvibla](https://github.com/Floryvibla)
|
|
106
|
+
- LinkedIn: [Flory Muenge Tshiteya](https://www.linkedin.com/in/florymignon/)
|
|
107
|
+
- 🐦 X (Twitter): [@DevFlory](https://x.com/DevFlory)
|
|
108
|
+
|
|
95
109
|
````
|
|
96
110
|
|
|
97
111
|
### `src/user.ts`
|
package/package.json
CHANGED
|
@@ -1,10 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@florydev/linkedin-api-voyager",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.7",
|
|
4
4
|
"description": "Uma biblioteca TypeScript para interagir com a API interna do LinkedIn (Voyager)",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
7
7
|
"license": "MIT",
|
|
8
|
+
"author": {
|
|
9
|
+
"name": "Flory Muenge Tshiteya",
|
|
10
|
+
"url": "https://github.com/Floryvibla"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/Floryvibla/linkedin-api-voyager#readme",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/Floryvibla/linkedin-api-voyager.git"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/Floryvibla/linkedin-api-voyager/issues"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [
|
|
21
|
+
"linkedin",
|
|
22
|
+
"api",
|
|
23
|
+
"voyager",
|
|
24
|
+
"typescript",
|
|
25
|
+
"scraper",
|
|
26
|
+
"crawler",
|
|
27
|
+
"nodejs",
|
|
28
|
+
"profile",
|
|
29
|
+
"company",
|
|
30
|
+
"search"
|
|
31
|
+
],
|
|
8
32
|
"files": [
|
|
9
33
|
"lib/**/*"
|
|
10
34
|
],
|