n8n-nodes-innotes 2.0.12 → 2.0.14
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 +12 -9
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,14 +9,14 @@ The LinkedIn scraper node is a separate package,
|
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Published to NPM as `n8n-nodes-innotes`; `package.json` carries the
|
|
13
|
+
`n8n-community-node-package` keyword.
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
Build from source (`engines`: Node `>=18.10`, yarn `>=1.22.0`):
|
|
15
16
|
|
|
16
17
|
```bash
|
|
17
18
|
yarn install
|
|
18
19
|
yarn build
|
|
19
|
-
cp -r dist/* ~/.n8n/custom/ # then restart n8n
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
## Credentials
|
|
@@ -50,11 +50,12 @@ with a Bearer token.
|
|
|
50
50
|
Required fields: Contact create needs **Name** and **LinkedIn Key**; Job create
|
|
51
51
|
needs **Job Name** and **Company Name**.
|
|
52
52
|
|
|
53
|
-
**The Note resource is broken.**
|
|
54
|
-
**Note Text
|
|
55
|
-
`
|
|
56
|
-
|
|
57
|
-
|
|
53
|
+
**The Note resource is broken.** `NoteDescription.ts` declares **External ID**
|
|
54
|
+
(`ext_id`) and **Note Text** (`text`) as its required fields, but the executor
|
|
55
|
+
reads `content` and `contactId` on create and `noteId` on get with no fallback —
|
|
56
|
+
none of which the note resource declares, so a UI-filled node throws on the
|
|
57
|
+
missing parameter — and *Get* calls `/api/note/{noteId}` rather than looking up
|
|
58
|
+
by external ID.
|
|
58
59
|
|
|
59
60
|
Job **Search** takes a search method: `general`, `ext_id`, `title`, `company`,
|
|
60
61
|
`location`, `description`. **Batch Exists** takes a comma-separated list of
|
|
@@ -78,7 +79,9 @@ and **Timeout Between Batches** in ms (default 1000), to stay under rate limits.
|
|
|
78
79
|
|
|
79
80
|
## Errors
|
|
80
81
|
|
|
81
|
-
|
|
82
|
+
Contact *Create* and the Job *Create / Get / Get All / Update / Delete*
|
|
83
|
+
operations re-raise a failure as `NodeApiError` naming the operation and the
|
|
84
|
+
request parameters.
|
|
82
85
|
Contact creation reports only the **count** of `contact_details` entries, never
|
|
83
86
|
the values — n8n persists execution data, and those are a third party's phone
|
|
84
87
|
numbers and email addresses.
|
package/dist/package.json
CHANGED