@corsair-dev/zoominfo 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 +47 -0
- package/package.json +9 -3
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# @corsair-dev/zoominfo
|
|
2
|
+
|
|
3
|
+
ZoomInfo plugin for Corsair.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add @corsair-dev/zoominfo
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Endpoints
|
|
12
|
+
|
|
13
|
+
| Operation | Operation ID | Risk | Description |
|
|
14
|
+
|-----------|--------------|------|-------------|
|
|
15
|
+
| `zoominfo.enrichCompany` | `zoominfo.api.zoominfo.enrichCompany` | `read` | Enrich up to 25 companies from partial identifiers |
|
|
16
|
+
| `zoominfo.enrichContact` | `zoominfo.api.zoominfo.enrichContact` | `read` | Enrich up to 25 contacts from partial identifiers |
|
|
17
|
+
| `zoominfo.enrichIntent` | `zoominfo.api.zoominfo.enrichIntent` | `read` | Fetch intent signals for one company |
|
|
18
|
+
| `zoominfo.enrichLocation` | `zoominfo.api.zoominfo.enrichLocation` | `read` | Fetch every known office location for one company |
|
|
19
|
+
| `zoominfo.enrichNews` | `zoominfo.api.zoominfo.enrichNews` | `read` | Fetch news articles for one company |
|
|
20
|
+
| `zoominfo.enrichScoop` | `zoominfo.api.zoominfo.enrichScoop` | `read` | Fetch Scoops for one company |
|
|
21
|
+
| `zoominfo.enrichTechnology` | `zoominfo.api.zoominfo.enrichTechnology` | `read` | Fetch the technologies detected in one company's stack |
|
|
22
|
+
| `zoominfo.getCompanySearchInputFields` | `zoominfo.api.zoominfo.getCompanySearchInputFields` | `read` | List the company search filters this account may use |
|
|
23
|
+
| `zoominfo.getContactSearchInputFields` | `zoominfo.api.zoominfo.getContactSearchInputFields` | `read` | List the contact search filters this account may use |
|
|
24
|
+
| `zoominfo.getIntentSearchInputFields` | `zoominfo.api.zoominfo.getIntentSearchInputFields` | `read` | List the intent search filters this account may use |
|
|
25
|
+
| `zoominfo.getNewsSearchInputFields` | `zoominfo.api.zoominfo.getNewsSearchInputFields` | `read` | List the news search filters this account may use |
|
|
26
|
+
| `zoominfo.getScoopSearchInputFields` | `zoominfo.api.zoominfo.getScoopSearchInputFields` | `read` | List the scoop search filters this account may use |
|
|
27
|
+
| `zoominfo.searchCompanies` | `zoominfo.api.zoominfo.searchCompanies` | `read` | Search companies by firmographics, location and technology |
|
|
28
|
+
| `zoominfo.searchContacts` | `zoominfo.api.zoominfo.searchContacts` | `read` | Search contacts by name, title, seniority and company |
|
|
29
|
+
| `zoominfo.searchIntent` | `zoominfo.api.zoominfo.searchIntent` | `read` | Search companies showing buying intent on given topics |
|
|
30
|
+
| `zoominfo.searchNews` | `zoominfo.api.zoominfo.searchNews` | `read` | Search news articles by category and publish date |
|
|
31
|
+
| `zoominfo.searchScoops` | `zoominfo.api.zoominfo.searchScoops` | `read` | Search Scoops, ZoomInfo research notes about companies |
|
|
32
|
+
|
|
33
|
+
## Auth
|
|
34
|
+
|
|
35
|
+
Auth: OAuth 2.0. Corsair prompts your tenant for credentials on first use.
|
|
36
|
+
|
|
37
|
+
## Webhooks
|
|
38
|
+
|
|
39
|
+
Handles 2 webhook events. See the reference for payloads and `webhookHooks`.
|
|
40
|
+
|
|
41
|
+
## Reference
|
|
42
|
+
|
|
43
|
+
Full docs, types, and examples: https://docs.corsair.dev/plugins/zoominfo
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@corsair-dev/zoominfo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "ZoomInfo plugin for Corsair",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"tsup": "^8.0.1",
|
|
25
25
|
"typescript": "^5.9.3",
|
|
26
26
|
"zod": "^4.1.13",
|
|
27
|
-
"corsair": "0.1.
|
|
27
|
+
"corsair": "0.1.130"
|
|
28
28
|
},
|
|
29
29
|
"keywords": [
|
|
30
30
|
"corsair",
|
|
@@ -33,11 +33,17 @@
|
|
|
33
33
|
"sales-intelligence",
|
|
34
34
|
"b2b-data"
|
|
35
35
|
],
|
|
36
|
-
"author": "",
|
|
36
|
+
"author": "Corsair (https://corsair.dev)",
|
|
37
37
|
"license": "Apache-2.0",
|
|
38
38
|
"files": [
|
|
39
39
|
"dist"
|
|
40
40
|
],
|
|
41
|
+
"repository": {
|
|
42
|
+
"type": "git",
|
|
43
|
+
"url": "git+https://github.com/corsairdev/corsair.git",
|
|
44
|
+
"directory": "packages/zoominfo"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://docs.corsair.dev/plugins/zoominfo",
|
|
41
47
|
"scripts": {
|
|
42
48
|
"build": "rm -rf dist && tsc --build --force && tsup",
|
|
43
49
|
"typecheck": "tsc --noEmit",
|