@florydev/linkedin-api-voyager 1.3.5 → 1.3.6
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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@ Biblioteca TypeScript para interagir com endpoints internos do LinkedIn (Voyager
|
|
|
5
5
|
## Instalação
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install linkedin-api-voyager
|
|
8
|
+
npm install @florydev/linkedin-api-voyager
|
|
9
9
|
# ou
|
|
10
|
-
yarn add linkedin-api-voyager
|
|
10
|
+
yarn add @florydev/linkedin-api-voyager
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Configuração (Obrigatório)
|
|
@@ -21,7 +21,7 @@ Se você estiver usando em uma aplicação web (React, Vue, etc.), você deve cr
|
|
|
21
21
|
No ponto de entrada da sua aplicação backend (ex: `index.ts`, `server.ts`):
|
|
22
22
|
|
|
23
23
|
```ts
|
|
24
|
-
import { Client } from "linkedin-api-voyager";
|
|
24
|
+
import { Client } from "@florydev/linkedin-api-voyager";
|
|
25
25
|
|
|
26
26
|
// Configure suas credenciais uma única vez
|
|
27
27
|
Client({
|
|
@@ -54,7 +54,7 @@ import {
|
|
|
54
54
|
getCompany,
|
|
55
55
|
searchPeople,
|
|
56
56
|
getCommentsByPostUrl,
|
|
57
|
-
} from "linkedin-api-voyager";
|
|
57
|
+
} from "@florydev/linkedin-api-voyager";
|
|
58
58
|
|
|
59
59
|
// Exemplo: Buscar perfil
|
|
60
60
|
const profile = await getUserMiniProfile("florymignon");
|
package/package.json
CHANGED