@corsair-dev/aeroleads 0.1.0 → 0.1.1
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 +31 -0
- package/package.json +9 -3
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# @corsair-dev/aeroleads
|
|
2
|
+
|
|
3
|
+
Aeroleads plugin for Corsair.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add @corsair-dev/aeroleads
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Endpoints
|
|
12
|
+
|
|
13
|
+
| Operation | Operation ID | Risk | Description |
|
|
14
|
+
|-----------|--------------|------|-------------|
|
|
15
|
+
| `linkedinDetails.get` | `aeroleads.api.linkedinDetails.get` | `read` | Retrieve detailed information about a prospect using their LinkedIn profile URL, including emails, phone numbers, job details, and company data |
|
|
16
|
+
|
|
17
|
+
## Auth
|
|
18
|
+
|
|
19
|
+
Auth: API key. Corsair prompts your tenant for credentials on first use.
|
|
20
|
+
|
|
21
|
+
## Webhooks
|
|
22
|
+
|
|
23
|
+
No webhooks.
|
|
24
|
+
|
|
25
|
+
## Reference
|
|
26
|
+
|
|
27
|
+
Full docs, types, and examples: https://docs.corsair.dev/plugins/aeroleads
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@corsair-dev/aeroleads",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Aeroleads plugin for Corsair",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,18 +25,24 @@
|
|
|
25
25
|
"tsup": "^8.0.1",
|
|
26
26
|
"typescript": "^5.9.3",
|
|
27
27
|
"zod": "^4.1.13",
|
|
28
|
-
"corsair": "0.1.
|
|
28
|
+
"corsair": "0.1.129"
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
31
|
"corsair",
|
|
32
32
|
"aeroleads",
|
|
33
33
|
"plugin"
|
|
34
34
|
],
|
|
35
|
-
"author": "",
|
|
35
|
+
"author": "Corsair (https://corsair.dev)",
|
|
36
36
|
"license": "Apache-2.0",
|
|
37
37
|
"files": [
|
|
38
38
|
"dist"
|
|
39
39
|
],
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/corsairdev/corsair.git",
|
|
43
|
+
"directory": "packages/aeroleads"
|
|
44
|
+
},
|
|
45
|
+
"homepage": "https://docs.corsair.dev/plugins/aeroleads",
|
|
40
46
|
"scripts": {
|
|
41
47
|
"build": "rm -rf dist && tsc --build --force && tsup",
|
|
42
48
|
"typecheck": "tsc --noEmit",
|