n8n-nodes-fullenrich 0.1.0
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/LICENSE.md +19 -0
- package/README.md +97 -0
- package/dist/credentials/FullEnrichApi.credentials.d.ts +9 -0
- package/dist/credentials/FullEnrichApi.credentials.js +39 -0
- package/dist/credentials/FullEnrichApi.credentials.js.map +1 -0
- package/dist/nodes/FullEnrich/FullEnrich.description.d.ts +2 -0
- package/dist/nodes/FullEnrich/FullEnrich.description.js +132 -0
- package/dist/nodes/FullEnrich/FullEnrich.description.js.map +1 -0
- package/dist/nodes/FullEnrich/FullEnrich.node.d.ts +5 -0
- package/dist/nodes/FullEnrich/FullEnrich.node.js +85 -0
- package/dist/nodes/FullEnrich/FullEnrich.node.js.map +1 -0
- package/dist/nodes/FullEnrich/FullEnrich.node.json +21 -0
- package/dist/nodes/FullEnrichTrigger/FullEnrichTrigger.node.d.ts +5 -0
- package/dist/nodes/FullEnrichTrigger/FullEnrichTrigger.node.js +63 -0
- package/dist/nodes/FullEnrichTrigger/FullEnrichTrigger.node.js.map +1 -0
- package/dist/nodes/FullEnrichTrigger/FullEnrichTrigger.node.json +17 -0
- package/dist/nodes/fe-logo-dark.svg +4 -0
- package/dist/nodes/fe-logo-light.svg +26 -0
- package/dist/nodes/index.d.ts +3 -0
- package/dist/nodes/index.js +10 -0
- package/dist/nodes/index.js.map +1 -0
- package/dist/nodes/shared/constant.d.ts +1 -0
- package/dist/nodes/shared/constant.js +5 -0
- package/dist/nodes/shared/constant.js.map +1 -0
- package/dist/package.json +59 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/index.js +0 -0
- package/package.json +59 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Copyright 2022 n8n
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
5
|
+
the Software without restriction, including without limitation the rights to
|
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
8
|
+
so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
# n8n-nodes-fullenrich
|
|
2
|
+
|
|
3
|
+
This is an n8n community node that lets you use FullEnrich in your n8n workflows.
|
|
4
|
+
|
|
5
|
+
**FullEnrich** is a contact enrichment service that takes minimal input (such as first name, last name, company domain, or LinkedIn URL) and returns enriched contact data like emails, phone numbers, and company information.
|
|
6
|
+
This node enables you to **start asynchronous enrichment requests** and **receive enriched results via webhook**, all within n8n.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
[n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.
|
|
10
|
+
|
|
11
|
+
[Installation](#installation)
|
|
12
|
+
[Operations](#operations)
|
|
13
|
+
[Credentials](#credentials)
|
|
14
|
+
[Compatibility](#compatibility)
|
|
15
|
+
[Usage](#usage)
|
|
16
|
+
[Resources](#resources)
|
|
17
|
+
[Version history](#version-history)
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Installation
|
|
22
|
+
|
|
23
|
+
Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
|
|
24
|
+
|
|
25
|
+
Example:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm install n8n-nodes-fullenrich
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Then restart your n8n instance.
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Operations
|
|
36
|
+
|
|
37
|
+
This package provides two nodes:
|
|
38
|
+
|
|
39
|
+
### FullEnrich Node: Start Enrichment
|
|
40
|
+
- Accepts one or multiple contacts from previous nodes (e.g., Sheets, forms, or manual input).
|
|
41
|
+
- Supports additional custom fields per contact (e.g. `row_id`, `user_id`).
|
|
42
|
+
- Sends each contact to FullEnrich's API enrichment endpoint.
|
|
43
|
+
|
|
44
|
+
### FullEnrich Node: Get Enrichment Result (Webhook Trigger)
|
|
45
|
+
- Acts as a webhook endpoint.
|
|
46
|
+
- Listens for enrichment results returned via `webhook_url` from FullEnrich.
|
|
47
|
+
- Outputs enriched contact data in a format usable by other nodes like Google Sheets, Airtable, or CRMs.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## Credentials
|
|
52
|
+
|
|
53
|
+
The node requires API authentication:
|
|
54
|
+
|
|
55
|
+
- Go to **n8n > Credentials**.
|
|
56
|
+
- Create a new **HTTP Basic Auth** credential or custom one labeled `fullEnrichApi`.
|
|
57
|
+
- Provide your API key as required by your FullEnrich backend.
|
|
58
|
+
|
|
59
|
+
_You must assign this credential in the "Start Enrichment" node configuration._
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
## Compatibility
|
|
64
|
+
|
|
65
|
+
- Minimum **n8n version**: `1.22.0`
|
|
66
|
+
- Tested on: `1.22.0`, `1.25.1`, `1.28.0`
|
|
67
|
+
- Node requires a FullEnrich-compatible API (self-hosted or cloud-based).
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
## Usage
|
|
72
|
+
|
|
73
|
+
- The **Start Enrichment** node supports contacts from:
|
|
74
|
+
- Previous nodes (e.g., Google Sheets, Airtable, Manual trigger).
|
|
75
|
+
- Manual input from UI form (via structured fields).
|
|
76
|
+
- You can also pass a **custom field name** (e.g. `user_id`) to track each contact in your workflow — this value will be passed under the `custom` object.
|
|
77
|
+
- The **Get Result** node acts as a webhook and must be connected to the URL you provide to FullEnrich (auto-generated in most cases).
|
|
78
|
+
|
|
79
|
+
**Example Use Case:**
|
|
80
|
+
1. Load leads from a Google Sheet.
|
|
81
|
+
2. Send to **Start Enrichment**.
|
|
82
|
+
3. Receive enriched data via **FullEnrich Trigger**.
|
|
83
|
+
4. Update the same Google Sheet.
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## Resources
|
|
88
|
+
|
|
89
|
+
- [n8n community nodes documentation](https://docs.n8n.io/integrations/#community-nodes)
|
|
90
|
+
- [FullEnrich API documentation](https://docs.fullenrich.com/introduction)
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## Version history
|
|
95
|
+
|
|
96
|
+
### 0.1.0
|
|
97
|
+
- Initial release.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IAuthenticateGeneric, ICredentialType, INodeProperties, ICredentialTestRequest } from 'n8n-workflow';
|
|
2
|
+
export declare class FullEnrichApi implements ICredentialType {
|
|
3
|
+
name: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
documentationUrl: string;
|
|
6
|
+
properties: INodeProperties[];
|
|
7
|
+
authenticate: IAuthenticateGeneric;
|
|
8
|
+
test: ICredentialTestRequest;
|
|
9
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FullEnrichApi = void 0;
|
|
4
|
+
const constant_1 = require("../nodes/shared/constant");
|
|
5
|
+
class FullEnrichApi {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.name = 'fullEnrichApi';
|
|
8
|
+
this.displayName = 'FullEnrich API';
|
|
9
|
+
this.documentationUrl = 'https://docs.fullenrich.com/authentication';
|
|
10
|
+
this.properties = [
|
|
11
|
+
{
|
|
12
|
+
displayName: 'API Key',
|
|
13
|
+
name: 'apiKey',
|
|
14
|
+
type: 'string',
|
|
15
|
+
typeOptions: { password: true },
|
|
16
|
+
default: '',
|
|
17
|
+
},
|
|
18
|
+
];
|
|
19
|
+
this.authenticate = {
|
|
20
|
+
type: 'generic',
|
|
21
|
+
properties: {
|
|
22
|
+
headers: {
|
|
23
|
+
Authorization: '=Bearer {{$credentials.apiKey}}',
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
this.test = {
|
|
28
|
+
request: {
|
|
29
|
+
baseURL: constant_1.baseUrl,
|
|
30
|
+
url: '/account/keys/verify',
|
|
31
|
+
headers: {
|
|
32
|
+
Authorization: '=Bearer {{$credentials.apiKey}}',
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.FullEnrichApi = FullEnrichApi;
|
|
39
|
+
//# sourceMappingURL=FullEnrichApi.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FullEnrichApi.credentials.js","sourceRoot":"","sources":["../../credentials/FullEnrichApi.credentials.ts"],"names":[],"mappings":";;;AAMA,uDAAmD;AAEnD,MAAa,aAAa;IAA1B;QACC,SAAI,GAAG,eAAe,CAAC;QACvB,gBAAW,GAAG,gBAAgB,CAAC;QAC/B,qBAAgB,GAAG,4CAA4C,CAAC;QAChE,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,SAAS;gBACtB,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE;gBAC/B,OAAO,EAAE,EAAE;aACX;SACD,CAAC;QACF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,aAAa,EAAE,iCAAiC;iBAChD;aACD;SACD,CAAC;QACF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,kBAAO;gBAChB,GAAG,EAAE,sBAAsB;gBAC3B,OAAO,EAAE;oBACR,aAAa,EAAE,iCAAiC;iBAChD;aACD;SACD,CAAC;IACH,CAAC;CAAA;AA9BD,sCA8BC"}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.fullEnrichFields = void 0;
|
|
4
|
+
exports.fullEnrichFields = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Resource',
|
|
7
|
+
name: 'resource',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
options: [
|
|
11
|
+
{
|
|
12
|
+
name: 'Enrichment',
|
|
13
|
+
value: 'enrichment',
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
default: 'enrichment',
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
displayName: 'Operation',
|
|
20
|
+
name: 'operation',
|
|
21
|
+
type: 'options',
|
|
22
|
+
noDataExpression: true,
|
|
23
|
+
options: [
|
|
24
|
+
{
|
|
25
|
+
name: 'Start Enrichment',
|
|
26
|
+
value: 'startEnrichment',
|
|
27
|
+
description: 'Start an enrichment task',
|
|
28
|
+
action: 'Start enrichment',
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
default: 'startEnrichment',
|
|
32
|
+
displayOptions: {
|
|
33
|
+
show: {
|
|
34
|
+
resource: ['enrichment'],
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
displayName: 'Enrichment Name',
|
|
40
|
+
name: 'enrichmentName',
|
|
41
|
+
type: 'string',
|
|
42
|
+
required: true,
|
|
43
|
+
default: '',
|
|
44
|
+
description: 'A unique name for this enrichment task',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
displayName: 'Webhook URL',
|
|
48
|
+
name: 'webhookUrl',
|
|
49
|
+
type: 'string',
|
|
50
|
+
required: true,
|
|
51
|
+
default: '',
|
|
52
|
+
description: 'The webhook URL to receive results. Must be publicly accessible (e.g. n8n webhook trigger URL).',
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
displayName: 'Company Domain',
|
|
56
|
+
name: 'domain',
|
|
57
|
+
type: 'string',
|
|
58
|
+
required: true,
|
|
59
|
+
default: '',
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
displayName: 'Company Name',
|
|
63
|
+
name: 'companyName',
|
|
64
|
+
type: 'string',
|
|
65
|
+
required: true,
|
|
66
|
+
default: '',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
displayName: 'First Name',
|
|
70
|
+
name: 'firstName',
|
|
71
|
+
type: 'string',
|
|
72
|
+
required: true,
|
|
73
|
+
default: '',
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
displayName: 'Last Name',
|
|
77
|
+
name: 'lastName',
|
|
78
|
+
type: 'string',
|
|
79
|
+
required: true,
|
|
80
|
+
default: '',
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
displayName: 'LinkedIn URL',
|
|
84
|
+
name: 'linkedinUrl',
|
|
85
|
+
type: 'string',
|
|
86
|
+
required: true,
|
|
87
|
+
default: '',
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
displayName: 'Custom Fields',
|
|
91
|
+
name: 'customFields',
|
|
92
|
+
type: 'fixedCollection',
|
|
93
|
+
typeOptions: {
|
|
94
|
+
multipleValues: true,
|
|
95
|
+
},
|
|
96
|
+
default: {},
|
|
97
|
+
placeholder: 'Add Custom Field',
|
|
98
|
+
options: [
|
|
99
|
+
{
|
|
100
|
+
displayName: 'Custom Field',
|
|
101
|
+
name: 'customField',
|
|
102
|
+
values: [
|
|
103
|
+
{
|
|
104
|
+
displayName: 'Key',
|
|
105
|
+
name: 'key',
|
|
106
|
+
type: 'string',
|
|
107
|
+
default: '',
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
displayName: 'Value',
|
|
111
|
+
name: 'value',
|
|
112
|
+
type: 'string',
|
|
113
|
+
default: '',
|
|
114
|
+
},
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
],
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
displayName: 'Fields to Enrich',
|
|
121
|
+
name: 'enrichFields',
|
|
122
|
+
type: 'multiOptions',
|
|
123
|
+
required: true,
|
|
124
|
+
default: ['contact.emails', 'contact.phones'],
|
|
125
|
+
description: 'Which fields should be enriched',
|
|
126
|
+
options: [
|
|
127
|
+
{ name: 'Contact Emails', value: 'contact.emails' },
|
|
128
|
+
{ name: 'Contact Phones', value: 'contact.phones' },
|
|
129
|
+
],
|
|
130
|
+
},
|
|
131
|
+
];
|
|
132
|
+
//# sourceMappingURL=FullEnrich.description.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FullEnrich.description.js","sourceRoot":"","sources":["../../../nodes/FullEnrich/FullEnrich.description.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FullEnrich = void 0;
|
|
4
|
+
const FullEnrich_description_1 = require("./FullEnrich.description");
|
|
5
|
+
const constant_1 = require("../shared/constant");
|
|
6
|
+
class FullEnrich {
|
|
7
|
+
constructor() {
|
|
8
|
+
this.description = {
|
|
9
|
+
displayName: 'FullEnrich',
|
|
10
|
+
name: 'fullEnrich',
|
|
11
|
+
icon: {
|
|
12
|
+
light: 'file:../fe-logo-light.svg',
|
|
13
|
+
dark: 'file:../fe-logo-dark.svg',
|
|
14
|
+
},
|
|
15
|
+
group: ['action'],
|
|
16
|
+
version: 1,
|
|
17
|
+
description: 'Start a FullEnrich bulk enrichment request',
|
|
18
|
+
defaults: {
|
|
19
|
+
name: 'FullEnrich',
|
|
20
|
+
},
|
|
21
|
+
credentials: [
|
|
22
|
+
{
|
|
23
|
+
name: 'fullEnrichApi',
|
|
24
|
+
required: true,
|
|
25
|
+
},
|
|
26
|
+
],
|
|
27
|
+
inputs: ["main"],
|
|
28
|
+
outputs: ["main"],
|
|
29
|
+
properties: FullEnrich_description_1.fullEnrichFields,
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
async execute() {
|
|
33
|
+
var _a, _b;
|
|
34
|
+
const items = this.getInputData();
|
|
35
|
+
const returnData = [];
|
|
36
|
+
const enrichmentName = this.getNodeParameter('enrichmentName', 0);
|
|
37
|
+
const webhookUrl = this.getNodeParameter('webhookUrl', 0);
|
|
38
|
+
const enrichFieldsDefault = this.getNodeParameter('enrichFields', 0);
|
|
39
|
+
for (let i = 0; i < items.length; i++) {
|
|
40
|
+
const firstname = this.getNodeParameter('firstName', i);
|
|
41
|
+
const lastname = this.getNodeParameter('lastName', i);
|
|
42
|
+
const domain = this.getNodeParameter('domain', i);
|
|
43
|
+
const linkedinUrl = this.getNodeParameter('linkedinUrl', i);
|
|
44
|
+
const rawCustomFields = this.getNodeParameter('customFields', i);
|
|
45
|
+
const custom = {};
|
|
46
|
+
if ((_a = rawCustomFields === null || rawCustomFields === void 0 ? void 0 : rawCustomFields.customField) === null || _a === void 0 ? void 0 : _a.length) {
|
|
47
|
+
for (const { key, value } of rawCustomFields.customField) {
|
|
48
|
+
if (key && value !== undefined && value !== null) {
|
|
49
|
+
custom[key] = String(value);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
const contact = {
|
|
54
|
+
firstname,
|
|
55
|
+
lastname,
|
|
56
|
+
domain,
|
|
57
|
+
linkedin_url: linkedinUrl,
|
|
58
|
+
enrich_fields: enrichFieldsDefault,
|
|
59
|
+
};
|
|
60
|
+
if (Object.keys(custom).length > 0) {
|
|
61
|
+
contact.custom = custom;
|
|
62
|
+
}
|
|
63
|
+
const requestBody = {
|
|
64
|
+
name: enrichmentName,
|
|
65
|
+
webhook_url: webhookUrl,
|
|
66
|
+
datas: [contact],
|
|
67
|
+
};
|
|
68
|
+
try {
|
|
69
|
+
await ((_b = this.helpers.httpRequestWithAuthentication) === null || _b === void 0 ? void 0 : _b.call(this, 'fullEnrichApi', {
|
|
70
|
+
method: 'POST',
|
|
71
|
+
url: `${constant_1.baseUrl}/contact/enrich/bulk`,
|
|
72
|
+
body: requestBody,
|
|
73
|
+
json: true,
|
|
74
|
+
}));
|
|
75
|
+
returnData.push({ json: { success: true, sent: contact, webhook_url: webhookUrl } });
|
|
76
|
+
}
|
|
77
|
+
catch (error) {
|
|
78
|
+
returnData.push({ json: { success: false, error: error.message, contact } });
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
return [returnData];
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
exports.FullEnrich = FullEnrich;
|
|
85
|
+
//# sourceMappingURL=FullEnrich.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FullEnrich.node.js","sourceRoot":"","sources":["../../../nodes/FullEnrich/FullEnrich.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-base.StartEnrichment",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": [
|
|
6
|
+
"Contacts",
|
|
7
|
+
"Enrichment"
|
|
8
|
+
],
|
|
9
|
+
"resources": {
|
|
10
|
+
"credentialDocumentation": [
|
|
11
|
+
{
|
|
12
|
+
"url": "https://docs.fullenrich.com/authentication"
|
|
13
|
+
}
|
|
14
|
+
],
|
|
15
|
+
"primaryDocumentation": [
|
|
16
|
+
{
|
|
17
|
+
"url": "https://docs.fullenrich.com/startbulk"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { IWebhookFunctions, IWebhookResponseData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
2
|
+
export declare class FullEnrichTrigger implements INodeType {
|
|
3
|
+
description: INodeTypeDescription;
|
|
4
|
+
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
|
|
5
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FullEnrichTrigger = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
|
+
class FullEnrichTrigger {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.description = {
|
|
8
|
+
displayName: 'FullEnrich Trigger',
|
|
9
|
+
name: 'fullEnrichTrigger',
|
|
10
|
+
icon: {
|
|
11
|
+
light: 'file:../fe-logo-light.svg',
|
|
12
|
+
dark: 'file:../fe-logo-dark.svg',
|
|
13
|
+
},
|
|
14
|
+
group: ['trigger'],
|
|
15
|
+
version: 1,
|
|
16
|
+
description: 'Receives the enrichment result from FullEnrich',
|
|
17
|
+
defaults: {
|
|
18
|
+
name: 'FullEnrich Trigger',
|
|
19
|
+
},
|
|
20
|
+
inputs: [],
|
|
21
|
+
outputs: ["main"],
|
|
22
|
+
webhooks: [
|
|
23
|
+
{
|
|
24
|
+
name: 'default',
|
|
25
|
+
httpMethod: 'POST',
|
|
26
|
+
responseMode: 'onReceived',
|
|
27
|
+
path: 'enrich-callback',
|
|
28
|
+
},
|
|
29
|
+
],
|
|
30
|
+
properties: [
|
|
31
|
+
{
|
|
32
|
+
displayName: 'Events',
|
|
33
|
+
name: 'events',
|
|
34
|
+
type: 'multiOptions',
|
|
35
|
+
options: [
|
|
36
|
+
{
|
|
37
|
+
name: 'Enrichment Result',
|
|
38
|
+
value: 'enrichment_result',
|
|
39
|
+
description: 'Triggered when an enrichment result is received',
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
required: true,
|
|
43
|
+
default: [],
|
|
44
|
+
description: 'The events to listen to',
|
|
45
|
+
},
|
|
46
|
+
],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
async webhook() {
|
|
50
|
+
const body = this.getBodyData();
|
|
51
|
+
if (!body || !Array.isArray(body.datas)) {
|
|
52
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Invalid webhook payload');
|
|
53
|
+
}
|
|
54
|
+
const results = body.datas.map((dataItem) => ({
|
|
55
|
+
json: dataItem,
|
|
56
|
+
}));
|
|
57
|
+
return {
|
|
58
|
+
workflowData: [results],
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
exports.FullEnrichTrigger = FullEnrichTrigger;
|
|
63
|
+
//# sourceMappingURL=FullEnrichTrigger.node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FullEnrichTrigger.node.js","sourceRoot":"","sources":["../../../nodes/FullEnrichTrigger/FullEnrichTrigger.node.ts"],"names":[],"mappings":";;;AAAA,+CAOsB;AAEtB,MAAa,iBAAiB;IAA9B;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,oBAAoB;YACjC,IAAI,EAAE,mBAAmB;YACzB,IAAI,EAAE;gBACL,KAAK,EAAE,2BAA2B;gBAClC,IAAI,EAAE,0BAA0B;aAC9B;YACH,KAAK,EAAE,CAAC,SAAS,CAAC;YAClB,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,gDAAgD;YAC7D,QAAQ,EAAE;gBACT,IAAI,EAAE,oBAAoB;aAC1B;YACD,MAAM,EAAE,EAAE;YACV,OAAO,EAAE,QAAyB;YAClC,QAAQ,EAAE;gBACT;oBACC,IAAI,EAAE,SAAS;oBACf,UAAU,EAAE,MAAM;oBAClB,YAAY,EAAE,YAAY;oBAC1B,IAAI,EAAE,iBAAiB;iBACvB;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,QAAQ;oBACrB,IAAI,EAAE,QAAQ;oBACd,IAAI,EAAE,cAAc;oBACpB,OAAO,EAAE;wBACR;4BACC,IAAI,EAAE,mBAAmB;4BACzB,KAAK,EAAE,mBAAmB;4BAC1B,WAAW,EACV,iDAAiD;yBAClD;qBACD;oBACD,QAAQ,EAAE,IAAI;oBACd,OAAO,EAAE,EAAE;oBACX,WAAW,EAAE,yBAAyB;iBACtC;aACD;SACD,CAAC;IAkBH,CAAC;IAhBA,KAAK,CAAC,OAAO;QACZ,MAAM,IAAI,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC;QAGhC,IAAI,CAAC,IAAI,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC;YACzC,MAAM,IAAI,iCAAkB,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,yBAAyB,CAAC,CAAC;QACzE,CAAC;QAGD,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;YAC7C,IAAI,EAAE,QAAQ;SACd,CAAC,CAAC,CAAC;QACJ,OAAO;YACN,YAAY,EAAE,CAAC,OAAO,CAAC;SACvB,CAAC;IACH,CAAC;CACD;AA5DD,8CA4DC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-base.EnrichmentResultTrigger",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": [
|
|
6
|
+
"Contacts",
|
|
7
|
+
"Enrichment",
|
|
8
|
+
"Trigger"
|
|
9
|
+
],
|
|
10
|
+
"resources": {
|
|
11
|
+
"primaryDocumentation": [
|
|
12
|
+
{
|
|
13
|
+
"url": "https://docs.fullenrich.com/startbulk"
|
|
14
|
+
}
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="61" height="60" viewBox="0 0 61 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M30.8485 17.7416C30.7648 17.338 30.189 17.3363 30.1029 17.7394L29.5747 20.2143C29.3334 21.3445 28.4406 22.2215 27.3063 22.4425L25.0483 22.8825C24.6396 22.9621 24.6367 23.5458 25.0445 23.6296L27.3318 24.0994C28.4528 24.3296 29.3316 25.2011 29.5712 26.3202L30.0938 28.7614C30.1799 29.1634 30.7537 29.1629 30.839 28.7608L31.3562 26.323C31.594 25.2024 32.4726 24.3289 33.5945 24.0975L35.8916 23.6238C36.2996 23.5396 36.2958 22.9555 35.8868 22.8766L33.6346 22.4421C32.4919 22.2216 31.5938 21.3358 31.3575 20.1963L30.8485 17.7416Z" fill="white"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.6531 31.7497L12.6529 31.7496C12.7878 33.0931 13.0713 34.3928 13.4868 35.632L13.4869 35.632C14.0567 37.3317 14.8747 38.9176 15.8979 40.3465C16.4886 41.1714 17.1475 41.944 17.8667 42.6561C21.0997 45.8573 25.5472 47.8343 30.4564 47.8343C40.3389 47.8343 48.3501 39.823 48.3501 29.9406C48.3501 20.0582 40.3389 12.0469 30.4564 12.0469C20.574 12.0469 12.5627 20.0582 12.5627 29.9406C12.5627 30.5512 12.5933 31.1547 12.6531 31.7497ZM15.6115 33.5151C15.3364 32.3685 15.1907 31.1716 15.1907 29.9406C15.1907 21.5095 22.0254 14.6748 30.4564 14.6748C38.8875 14.6748 45.7222 21.5095 45.7222 29.9406C45.7222 31.1683 45.5773 32.3622 45.3036 33.5061C45.1913 33.5202 45.0754 33.5276 44.9547 33.528C43.7952 33.5314 43.0554 33.0809 42.0169 32.4168L41.9657 32.3841C40.9381 31.7266 39.6163 30.8809 37.6305 30.8929C35.6727 30.9047 34.3668 31.744 33.3544 32.3948L33.3011 32.429C32.2752 33.088 31.553 33.5279 30.4292 33.5279C29.2166 33.5279 28.4784 33.075 27.4811 32.4261L27.4066 32.3776C26.4086 31.7275 25.1274 30.8929 23.1645 30.8929C21.1923 30.8929 19.8827 31.732 18.8633 32.3852L18.8131 32.4174C17.7844 33.0762 17.05 33.5245 15.8958 33.528C15.7981 33.5282 15.7035 33.5239 15.6115 33.5151ZM20.1966 41.2446C22.9071 43.7062 26.5066 45.2063 30.4564 45.2063C34.388 45.2063 37.9724 43.7201 40.6786 41.2788C40.6369 41.2465 40.5959 41.2145 40.5554 41.183L40.4799 41.1242C39.4191 40.2989 38.72 39.7979 37.6465 39.8043C36.5857 39.8107 35.8908 40.3127 34.8435 41.1324C34.8183 41.1522 34.7928 41.1721 34.7671 41.1922C33.7811 41.9651 32.4441 43.0131 30.4292 43.0131C28.3139 43.0131 26.9673 41.9458 25.9666 41.1527L25.926 41.1205C24.885 40.2957 24.2241 39.8043 23.1645 39.8043C22.0967 39.8043 21.4032 40.3033 20.3522 41.1231L20.2777 41.1813C20.2509 41.2022 20.2239 41.2234 20.1966 41.2446ZM42.5042 39.317C43.2543 38.3544 43.8917 37.2997 44.3964 36.1726C42.7253 36.036 41.5618 35.2915 40.6378 34.7002L40.5803 34.6634C39.5435 34.0004 38.8045 33.5525 37.6465 33.5595C36.5008 33.5664 35.7661 34.0149 34.7423 34.6726L34.6859 34.7089C33.6759 35.3581 32.3745 36.1946 30.4292 36.1946C28.3832 36.1946 27.0715 35.3411 26.0467 34.6743L26.0268 34.6613C25.0105 34.0001 24.3099 33.5595 23.1645 33.5595C22.0117 33.5595 21.2782 34.0053 20.2512 34.663L20.1947 34.6992C19.2867 35.281 18.1471 36.0114 16.5133 36.1653C17.0117 37.2801 17.6399 38.3241 18.3787 39.2783C18.4861 39.1964 18.5969 39.1104 18.712 39.0206L18.7818 38.9661C19.7777 38.1883 21.1229 37.1377 23.1645 37.1377C25.1982 37.1377 26.5154 38.1836 27.4905 38.9578L27.4938 38.9604C27.5235 38.984 27.5529 39.0073 27.582 39.0304C28.6022 39.8387 29.3015 40.3465 30.4292 40.3465C31.4674 40.3465 32.1493 39.8549 33.1999 39.0326L33.2709 38.9769C34.2607 38.2013 35.6023 37.15 37.6305 37.1377C39.6853 37.1254 41.0426 38.1825 42.0465 38.9643L42.1172 39.0194C42.2515 39.1239 42.38 39.2232 42.5042 39.317Z" fill="white"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="60.000000pt" height="60.000000pt" viewBox="0 0 60.000000 60.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
|
|
8
|
+
<g transform="translate(0.000000,60.000000) scale(0.100000,-0.100000)"
|
|
9
|
+
fill="#000000" stroke="none">
|
|
10
|
+
<path d="M226 591 c-3 -4 -19 -11 -34 -14 -42 -8 -135 -97 -156 -149 -10 -24
|
|
11
|
+
-22 -50 -27 -60 -16 -32 -3 -131 25 -188 47 -94 97 -136 195 -166 60 -18 105
|
|
12
|
+
-17 161 2 122 43 210 161 210 285 0 33 -4 67 -9 77 -4 9 -17 35 -27 57 -45 95
|
|
13
|
+
-160 165 -270 165 -34 0 -65 -4 -68 -9z m190 -67 c65 -34 77 -46 108 -105 19
|
|
14
|
+
-38 26 -66 26 -109 0 -33 -4 -61 -10 -65 -5 -3 -26 4 -47 15 -43 23 -100 26
|
|
15
|
+
-128 6 -35 -23 -76 -25 -114 -5 -46 24 -101 24 -148 -1 -20 -10 -41 -17 -46
|
|
16
|
+
-13 -16 9 -1 125 21 168 23 46 61 84 112 113 54 32 162 30 226 -4z m-184 -304
|
|
17
|
+
c54 -26 93 -25 144 2 l41 22 57 -25 c30 -13 56 -27 56 -31 0 -4 -7 -14 -16
|
|
18
|
+
-22 -14 -15 -18 -15 -43 0 -34 20 -87 13 -124 -16 -33 -26 -59 -25 -103 5 -42
|
|
19
|
+
29 -73 31 -114 10 -27 -14 -30 -14 -44 6 -14 20 -12 23 27 44 53 29 68 30 119
|
|
20
|
+
5z m8 -114 c32 -28 70 -28 117 -1 54 30 106 34 101 8 -2 -10 -23 -28 -48 -41
|
|
21
|
+
-38 -20 -56 -23 -115 -19 -69 4 -155 36 -155 57 0 31 62 28 100 -4z"/>
|
|
22
|
+
<path d="M287 468 c-10 -23 -24 -37 -41 -42 -33 -8 -33 -22 -1 -30 14 -4 32
|
|
23
|
+
-20 41 -37 l16 -31 19 32 c11 18 29 34 40 37 26 7 24 18 -6 31 -15 7 -32 26
|
|
24
|
+
-39 44 l-14 32 -15 -36z"/>
|
|
25
|
+
</g>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.nodes = void 0;
|
|
4
|
+
const FullEnrich_node_1 = require("./FullEnrich/FullEnrich.node");
|
|
5
|
+
const FullEnrichTrigger_node_1 = require("./FullEnrichTrigger/FullEnrichTrigger.node");
|
|
6
|
+
exports.nodes = [
|
|
7
|
+
FullEnrich_node_1.FullEnrich,
|
|
8
|
+
FullEnrichTrigger_node_1.FullEnrichTrigger,
|
|
9
|
+
];
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../nodes/index.ts"],"names":[],"mappings":";;;AAAA,kEAA0D;AAC1D,uFAA+E;AAElE,QAAA,KAAK,GAAG;IACnB,4BAAU;IACV,0CAAiB;CAClB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const baseUrl = "https://app.fullenrich.com/api/v1";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constant.js","sourceRoot":"","sources":["../../../nodes/shared/constant.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,mCAAmC,CAAA"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-fullenrich",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "n8n node to call fullEnrich API.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"fullenrich",
|
|
7
|
+
"enrichment",
|
|
8
|
+
"n8n-community-node-package",
|
|
9
|
+
"n8n-nodes-fullenrich",
|
|
10
|
+
"fullenrich-api"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"homepage": "https://n8n.io",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Guillaume Beaumont",
|
|
16
|
+
"email": "guillaume@fullenrich.com"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/fullenrich/n8n-nodes-fullenrich.git"
|
|
21
|
+
},
|
|
22
|
+
"main": "index.js",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "npx rimraf dist && tsc && gulp build:icons",
|
|
25
|
+
"dev": "tsc --watch",
|
|
26
|
+
"format": "prettier nodes credentials --write",
|
|
27
|
+
"lint": "eslint nodes credentials package.json",
|
|
28
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
29
|
+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"n8n": {
|
|
35
|
+
"n8nNodesApiVersion": 1,
|
|
36
|
+
"credentials": [
|
|
37
|
+
"dist/credentials/FullEnrichApi.credentials.js"
|
|
38
|
+
],
|
|
39
|
+
"nodes": [
|
|
40
|
+
"dist/nodes/FullEnrich/FullEnrich.node.js",
|
|
41
|
+
"dist/nodes/FullEnrichTrigger/FullEnrichTrigger.node.js"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@eslint/js": "^9.28.0",
|
|
46
|
+
"@typescript-eslint/parser": "~8.32.0",
|
|
47
|
+
"eslint": "^8.57.1",
|
|
48
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.3",
|
|
49
|
+
"eslint-plugin-react": "^7.37.5",
|
|
50
|
+
"globals": "^16.2.0",
|
|
51
|
+
"gulp": "^5.0.0",
|
|
52
|
+
"prettier": "^3.5.3",
|
|
53
|
+
"typescript": "^5.8.2",
|
|
54
|
+
"typescript-eslint": "^8.33.0"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"n8n-workflow": "*"
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/axios/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/n8n-workflow/dist/constants.d.ts","../node_modules/n8n-workflow/dist/deferredpromise.d.ts","../node_modules/n8n-workflow/dist/errors/error.types.d.ts","../node_modules/n8n-workflow/dist/errors/base/base.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/operational.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/unexpected.error.d.ts","../node_modules/n8n-workflow/dist/errors/base/user.error.d.ts","../node_modules/n8n-workflow/dist/errors/application.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/execution-base.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression.error.d.ts","../node_modules/n8n-workflow/dist/errors/execution-cancelled.error.d.ts","../node_modules/n8n-workflow/dist/errors/abstract/node.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-api.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/node-ssl.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-activation.error.d.ts","../node_modules/n8n-workflow/dist/errors/webhook-taken.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-deactivation.error.d.ts","../node_modules/n8n-workflow/dist/errors/workflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/cli-subworkflow-operation.error.d.ts","../node_modules/n8n-workflow/dist/errors/trigger-close.error.d.ts","../node_modules/n8n-workflow/dist/errors/expression-extension.error.d.ts","../node_modules/n8n-workflow/dist/errors/db-connection-timeout-error.d.ts","../node_modules/n8n-workflow/dist/errors/ensure-error.d.ts","../node_modules/n8n-workflow/dist/errors/index.d.ts","../node_modules/n8n-workflow/dist/executionstatus.d.ts","../node_modules/n8n-workflow/dist/result.d.ts","../node_modules/n8n-workflow/dist/expression.d.ts","../node_modules/n8n-workflow/dist/workflow.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxyenvprovider.d.ts","../node_modules/n8n-workflow/dist/interfaces.d.ts","../node_modules/n8n-workflow/dist/loggerproxy.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/recast/node_modules/ast-types/main.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/options.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/parser.d.ts","../node_modules/@n8n/tournament/node_modules/recast/lib/printer.d.ts","../node_modules/@n8n/tournament/node_modules/recast/main.d.ts","../node_modules/@n8n/tournament/dist/expressionsplitter.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/namedtypes.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/kinds.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/builders.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/types.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/scope.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/node-path.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/path-visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/gen/visitor.d.ts","../node_modules/@n8n/tournament/node_modules/ast-types/lib/main.d.ts","../node_modules/@n8n/tournament/dist/ast.d.ts","../node_modules/@n8n/tournament/dist/expressionbuilder.d.ts","../node_modules/@n8n/tournament/dist/evaluator.d.ts","../node_modules/@n8n/tournament/dist/analysis.d.ts","../node_modules/@n8n/tournament/dist/index.d.ts","../node_modules/n8n-workflow/dist/expressionevaluatorproxy.d.ts","../node_modules/n8n-workflow/dist/nodehelpers.d.ts","../node_modules/n8n-workflow/dist/observableobject.d.ts","../node_modules/n8n-workflow/dist/telemetryhelpers.d.ts","../node_modules/n8n-workflow/dist/cron.d.ts","../node_modules/n8n-workflow/dist/globalstate.d.ts","../node_modules/n8n-workflow/dist/messageeventbus.d.ts","../node_modules/zod/lib/helpers/typealiases.d.ts","../node_modules/zod/lib/helpers/util.d.ts","../node_modules/zod/lib/zoderror.d.ts","../node_modules/zod/lib/locales/en.d.ts","../node_modules/zod/lib/errors.d.ts","../node_modules/zod/lib/helpers/parseutil.d.ts","../node_modules/zod/lib/helpers/enumutil.d.ts","../node_modules/zod/lib/helpers/errorutil.d.ts","../node_modules/zod/lib/helpers/partialutil.d.ts","../node_modules/zod/lib/standard-schema.d.ts","../node_modules/zod/lib/types.d.ts","../node_modules/zod/lib/external.d.ts","../node_modules/zod/lib/index.d.ts","../node_modules/zod/index.d.ts","../node_modules/n8n-workflow/dist/fromaiparseutils.d.ts","../node_modules/n8n-workflow/dist/metadatautils.d.ts","../node_modules/n8n-workflow/dist/workflowdataproxy.d.ts","../node_modules/n8n-workflow/dist/versionednodetype.d.ts","../node_modules/n8n-workflow/dist/typevalidation.d.ts","../node_modules/n8n-workflow/dist/utils.d.ts","../node_modules/n8n-workflow/dist/type-guards.d.ts","../node_modules/n8n-workflow/dist/extensions/extensions.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionextension.d.ts","../node_modules/n8n-workflow/dist/extensions/index.d.ts","../node_modules/n8n-workflow/dist/extensions/expressionparser.d.ts","../node_modules/n8n-workflow/dist/nativemethods/index.d.ts","../node_modules/n8n-workflow/dist/nodeparameters/filterparameter.d.ts","../node_modules/n8n-workflow/dist/index.d.ts","../nodes/shared/constant.ts","../credentials/fullenrichapi.credentials.ts","../nodes/fullenrich/fullenrich.description.ts","../nodes/fullenrich/fullenrich.node.ts","../nodes/fullenrichtrigger/fullenrichtrigger.node.ts","../nodes/index.ts","../nodes/fullenrich/fullenrich.node.json","../nodes/fullenrichtrigger/fullenrichtrigger.node.json","../package.json","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileIdsList":[[148,149],[110],[97,108],[113],[97,98,109],[109,110,111,112],[99,100],[99],[100,102],[99,105,106],[99,101,102,103,105,106,107],[102,103,104],[102,105,107],[102],[102,105],[99,101],[83],[94],[93,94,95,96],[84,85],[84],[83,85,87],[84,90,91],[83,87,88,89],[83,87,90,92],[83,87],[83,90],[83,84,86],[83,84,86,87,88,90,91,92],[159,198],[159,183,198],[198],[159],[159,184,198],[159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197],[184,198],[81],[52,57,81],[58,81],[52],[53],[69],[57],[58],[59],[52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74],[52,61,81],[61,62,81],[68],[65],[57,58,81],[79,81],[81,113],[142],[142,143],[134],[50,51,75,76,77,78,79,80,81,82,114,115,116,117,118,119,120,135,136,137,138,139,140,141,144,145,146,147],[48,49,50,51,59,62,63,65,68,75,76,77,79,80],[148],[57,81],[78,81],[79,80,81],[133],[123,124],[121,122,123,125,126,131],[122,123],[132],[123],[121,122,123,126,127,128,129,130],[121,122,133],[148,149,151],[152,153]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc602ef9638db2163c461ec64133fe76f890f6e03b69b1c96f5c5e59592025e8","impliedFormat":99},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"8093df4b6de7728cd3327b33ce2846cb808e3b738b55f380578ab47fb1a0a82f","impliedFormat":1},{"version":"a0981ee0c7ac06bdb575558bd09bac190e1c0c7888ddcb63d8bf648f23a30e8c","impliedFormat":1},{"version":"b047c5f4612ebd6f142d2eda135939c6808ac082b2251a36e9e002b96f04ca18","impliedFormat":1},{"version":"816c068d57010d183fa4dce821e6552a912cb654cf9f0e840f49f0a0fb3d2157","impliedFormat":1},{"version":"5ca59af607163e4c0b2350019394132c6fd5d643ecc13d5d2692084c23eb74fc","impliedFormat":1},{"version":"ebc356c4f81035935ebddc0e1c7818038b78043d349d58e1042aa1c0579b5600","impliedFormat":1},{"version":"fc73b467be17d21f268b1dae8e63c269e8eba711d6d3faf3c5e525383ac5b461","impliedFormat":1},{"version":"4ba081d644e7e33dc2fa68f4bf7b963cbf9838092a10f0f7d5dcc98095012bfb","impliedFormat":1},{"version":"7c1d9666b46748a09c7c290f2cad37d32d0a395c4fc49357f0f7b32cd2dc7d97","impliedFormat":1},{"version":"054eafa956d5592e6a91c2553e5657ee3032ed50121a65da1079c96d82631459","impliedFormat":1},{"version":"01d56fcd8d2968c9545f42ab80c1e6a43be249dadeb2d38262b888370ebbdf32","impliedFormat":1},{"version":"cf53b1ef37bdf9eacfe04a5c0977793a87fbdd8d6893aa513075fa656c2f7638","impliedFormat":1},{"version":"bfccff2a7a1a17431408d48ec6ef5f54c42d1a1650b97e291c63de8b07333ccb","impliedFormat":1},{"version":"ab8790af6d4be130bd0faaba17d6a1d6394b21a643af03be4827fd7f8664caac","impliedFormat":1},{"version":"37020cf15e16fa6e1c6e2485cd51d6cbe74adee3b860ab49fb7528ca7e8e518e","impliedFormat":1},{"version":"2f83df884805baffce941efa67d2e459f09d82ae5f03b35771eea7bb9875346b","impliedFormat":1},{"version":"1950d2a49c05c7aa6decfe409b552c4ea5fb156894cf0541b34999819bd778ea","impliedFormat":1},{"version":"32fe829960ff7120843f6dd20197e863aee3e81ecded415641a7500654d1bda7","impliedFormat":1},{"version":"0b8d5b22b236fff7e23f3a5d1ddeb80bee6630bd35b1bf1c3efae226f08a1c3d","impliedFormat":1},{"version":"393b1ed0dca4f0aac333e65f2e40dfedfa8b37ac60571e02b152d32d8c84d340","impliedFormat":1},{"version":"f46d50c283425bcc59d68ccf067b3672fb727f802652dc7d60d2e470fb956370","impliedFormat":1},{"version":"38e7ca4f87ae169831eee751ad1b043b672bc9f328c0d44ec5a1bed98756a0b4","impliedFormat":1},{"version":"0b4b6ca509cdb152e18ceeed526d17bb416e7e518508d859a0174977195f9a35","impliedFormat":1},{"version":"124e0f6c51420174212b8d23f9a53d5d781d4777995164f1fb64957eac658ce7","impliedFormat":1},{"version":"c7da212302d6bfa21317461599d24e8077b34664b4ed409c4c02a3d5fe31efaf","impliedFormat":1},{"version":"bf070df468371021e0dd0ad9ab7918b3f94254044136bf711c7e0e855f75309e","impliedFormat":1},{"version":"3226c2a2af36d14aa551babd4154ad18042c0deb1509a61058c6b066cfddc30a","impliedFormat":1},{"version":"191d027b3924d5046fbf118bae0987969b9e03eba478ad34d2572244720ddb3c","impliedFormat":1},{"version":"14f2edd0618d9adaf83d22b55155ec41faddac678b4d158c8380e4325c8b36b6","impliedFormat":1},{"version":"72c9243dfd255afefe50d511f215053083a79db363d12e7e394ba78462be9e1b","impliedFormat":1},{"version":"2fbcb6bb6ffd69437452ca3029458f3c81a92b72aa71922df931cc4d373fffc1","impliedFormat":1},{"version":"8515d09f98ff2e7251cc970e74af5a0790caa52abc02d412ae87cbc6e47239ca","impliedFormat":1},{"version":"6d5438d567004aa049a2cdcad7aa2c3d671c9e74a0209297935b12bc16c3cf38","impliedFormat":1},{"version":"e78705f977ecfcc36de9ab57841ad7a617ef649b07a995577fd857f1d175f730","impliedFormat":1},{"version":"5083850590c7890ffb680f0c9838f48b07eb8b2f7dbe02874858fcac0691705d","impliedFormat":1},{"version":"02a4a2284d423d8ccc3a77aa9257c34fdac28cddfb46f73178e60f6a1b1b31e9","impliedFormat":1},{"version":"3ee8e014aab37dbd755401967fbb9602221550038f6b8da6cedd5291a918ae0a","impliedFormat":1},{"version":"826f3c6a6d737e0d330522094a21cde94a202c5373448240ba483709cb829aec","impliedFormat":1},{"version":"7e4a23f6f3763da4a06900935d22acfd463c375cada5ab325e3980bd6c95d5b3","impliedFormat":1},{"version":"f3e045e81b47113fa02aaf9637b9ef84347610aaceda60a0d8316aabc3f03638","impliedFormat":1},{"version":"1bfe6db4f3dffacd1da82748cb8f0acec04e8a4d7bd36c09573d5d80a7dec28b","impliedFormat":1},{"version":"6a8d6deca8ec4250630fea4e5f23bd9bf0face98739ccd22e08a17173117155b","impliedFormat":1},{"version":"226dbfe4506447111bd898161d47850f8c57f04cbb6a3a6d487b7939dbf89b1b","impliedFormat":1},{"version":"13f846a45f738733c8a63a06eaa9f580e9c07eb7aed5d8a2c674114846a42175","impliedFormat":1},{"version":"9d14fcf0b69094271127c7b6acb36987be5d1bffa4eb948359549f040fb50349","impliedFormat":1},{"version":"e3a5287471fb08f053c06fd998632792aa5f022e45278f1e6dd55fb2fa9e7362","impliedFormat":1},{"version":"28a6c8eeb48e165920067b9193555649fc43c2a28c450f23f622e5eb043d9463","impliedFormat":1},{"version":"1147c3efa5a256bcd6a3d2cfaf764185b7120bf985f8412d9bae596a0348f77b","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"0295c7a5d5d956391ab9bf0410e73a89e25fe26810f9a1d823cc794d682cdafc","impliedFormat":1},{"version":"19826a846db870c2261a3c4cf0695df889d9fe3eebe7775f3f5bc76fe7ad07a7","impliedFormat":1},{"version":"e04cafd03370139cdb0c846273cb19eb4264be0073c7baf78e9b2c16ffb74813","impliedFormat":1},{"version":"7c01c77fb7d8664daa64819245d785e106e0a3cb6e43da64346e4400d7fa9401","impliedFormat":1},{"version":"8c2ca98f4713d989d610fbd38a44316bc43c50aa26983e62dc31002f32ce63fa","impliedFormat":1},{"version":"ee931610d1cf7a6e666fad138187751392fc88bee931b94ac8c4571208dc7370","impliedFormat":1},{"version":"53543b3b64e624a81fc5876da6d72c94dd87655e7afc10988cf82ce7cbc74180","impliedFormat":1},{"version":"967e68e99b8a80551837321442a0e2f12ef50aa1ce567ec991ac6bf062a0c7cf","impliedFormat":1},{"version":"144ab2f3ef7404caf39c6acc88d248d7e55ab3dd1c4c0d89367ad12169aec113","impliedFormat":1},{"version":"759002d4454b851c51b3585e0837c77d159c59957fc519c876449ee5d80a6643","impliedFormat":1},{"version":"1ff2be5eb8b9b508603019df9f851240e57360a9417e672bf4de9d3495833f81","impliedFormat":1},{"version":"8263aed8d77f5b9a10de995c8efd14ea0e5bc54e2b4525178b643f5b24f90f1d","impliedFormat":1},{"version":"a7e7df52af8795560306e4b354e6670d978c59a87dd78b81e58656890c5ed451","impliedFormat":1},{"version":"d6220bee7bd245bc2a377f1a8ef31c496132cc9c7e7e3937e7dd4cbbcec0b38d","impliedFormat":1},{"version":"7686d52e8cbd036b9ca265490c31e36945a52ef3a9e726523d36b02befec7331","impliedFormat":1},{"version":"0f55c8c4605355ddea9fdd104ea0cb089e6ce7f41165fdc72d08247665dba0d4","impliedFormat":1},{"version":"9cc46a5cf6e8b232bb86abfd0c0ed4e0fd25d95aa3d2930e4705b078d29e51ec","impliedFormat":1},{"version":"edd5e20e9eb8cb2eaf941d431af3ab69a9b94e7f5d8699b4c938fee1be8d53c4","impliedFormat":1},{"version":"edcb8d46132756662651f6a42656aaeced2e221d0929411fb0a62c906f9873dd","impliedFormat":1},{"version":"382d2239e60b72282adfeb672e22e6df4de3737ce7e5df2151823dab489496ba","impliedFormat":1},{"version":"304b0d21771513c0a36ed7179a9d1069bfa776e95f50b789ce898f3ef2b71514","impliedFormat":1},{"version":"a42e1c2eec0e747163afa705044664a39065215a8d66c930f8d43f118a9bc044","impliedFormat":1},{"version":"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","impliedFormat":1},{"version":"b542939a35357458e62f8229c2d7578ae888d63d3ab837395d7bb8a3064c205e","impliedFormat":1},{"version":"3a5af4fba7b27b815bb40f52715aedebaa4b371da3e5a664e7e0798c9b638825","impliedFormat":1},{"version":"8485b6da53ec35637d072e516631d25dae53984500de70a6989058f24354666f","impliedFormat":1},{"version":"ebe80346928736532e4a822154eb77f57ef3389dbe2b3ba4e571366a15448ef2","impliedFormat":1},{"version":"49c632082dc8a916353288d3d8b2dc82b3471794249a381d090d960c8ceac908","impliedFormat":1},{"version":"f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","impliedFormat":1},{"version":"71addb585c2db7b8e53dc1b0bcfa58c6c67c6e4fa2b968942046749d66f82e7e","impliedFormat":1},{"version":"c76b0c5727302341d0bdfa2cc2cee4b19ff185b554edb6e8543f0661d8487116","impliedFormat":1},{"version":"25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","impliedFormat":1},{"version":"0320c5b275beb43649be5a818dfa83a2586ae110ac5bbb2c5eb7184e1fe3ca60","impliedFormat":1},{"version":"f5ef066942e4f0bd98200aa6a6694b831e73200c9b3ade77ad0aa2409e8fe1b1","impliedFormat":1},{"version":"b9e99cd94f4166a245f5158f7286c05406e2a4c694619bceb7a4f3519d1d768e","impliedFormat":1},{"version":"5568d7c32e5cf5f35e092649f4e5e168c3114c800b1d7545b7ae5e0415704802","impliedFormat":1},{"version":"378e26daa6ec402b81f5aea1ab47262d4f8ad8966037c26be75e8185366d09a1","impliedFormat":1},{"version":"4788f58342a67af140858e23a24cdf62457ec1ff79af68ac71b9d3c0c89bb53b","impliedFormat":1},{"version":"efb8488e3acac79cac5927eaa8069fffc1d37cc3b2c3213d0256e9e1be8276bc","impliedFormat":1},{"version":"951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","impliedFormat":1},{"version":"361547594eb0fdbb5316523e4668c26ec483de464f53c4a0f65bbca573abae3e","impliedFormat":1},{"version":"afcef07b51d43cdd4e1bc0b92a3d84734cded5f12d764af090666afefb5a3676","impliedFormat":1},{"version":"3f6f70c077ed8d600aa24d8c0e83ba0dd5d2c5300d524cd2181efd30c0a62c72","impliedFormat":1},{"version":"b773bcdaeda86c0f58910cecd6c77a0bd60be763127c42cad5a64fe66799b1f6","impliedFormat":1},{"version":"0ca63470234437191f454f7f66b5815d79b59ebc636faa1de1194d282563e431","impliedFormat":1},{"version":"6d3b514475ee51ab5e99e4fc82ffcd6191d40c19dd197a1743111e0757c6f9c6","impliedFormat":1},{"version":"0494f89b64c5e8906ce5284194e09bad42b56837757d79cb9e62ce16aae88ab4","impliedFormat":1},{"version":"716c6fce977a188f23ee5165e4179944a63e8620784a7054fc0dd81f6c348bb4","impliedFormat":1},{"version":"cf2324583854e9b5dd489e537e2d46375ffb66169fbd947dea112898210ed9ff","impliedFormat":1},{"version":"b4b08a04e1861c2494437fad74c5c71f38a2f3d3cdd51fba70fcb072f3337b58","impliedFormat":1},{"version":"9f6b591d5909723b39591336ad5a383249878549cbecb8fea4322a6481801b4c","signature":"5c73bc775cf6bea0151c341b1064a5448df6a9bbf00be2badcdacec1b7657ff8"},{"version":"a38dd744af3e661d33182c6cf172d97d24d9d913b1231693423f6fd98c9ec260","signature":"c26e5c4f1ba434903c9fb7adef2297809fdfe92fde7b3c971b1c4a7f50425429"},{"version":"bdc24cddb716844c0b414462db1e9b6ff9e17bc85d2f082a501ced80c5d50c0f","signature":"57d93e9a08d75f1291aedf6dfadd5e548f7609d24f3d5a086251391431da5b72"},{"version":"34c9e0f712a7c12210c619fbc9a680a71b8e46f7ebce48a6fa25a2a442964632","signature":"dc60335146a535b572ee150b53d63e1cde4c570302d333e5b4330d1458238748"},{"version":"9bebd0cb9ea52115c4782454468458162ab752b6ece7d652ed418720038aab2c","signature":"0f42b371ceb675afaa529a84214ed6701d5c91725e9c1d6f9c6756dd793abace"},{"version":"773f388f0dd8f84603f44b4975882292eddbc100d0b0dd41861ec2ce36ccdab1","signature":"90b4789076498bebc2bce94fce8a9016daaf81b8953910923c87e975c97c75c1"},"45a2bda3fb6f6cc84f847aff6bb7da5b5c01e7125ad08fc07557abe8d23bfca3","9d42a00c4b4d6bb5212ed7d72e6c0109ef54db4a12b800e1e645d73b3eba5d00","f43bf93c954cbff11441828dde8cb88349dda6838e46fb30433044d28167455f",{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"844ab83672160ca57a2a2ea46da4c64200d8c18d4ebb2087819649cad099ff0e","impliedFormat":1}],"root":[[149,157]],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"referencedMap":[[150,1],[112,2],[109,3],[111,4],[110,5],[113,6],[101,7],[100,8],[99,9],[107,10],[108,11],[105,12],[106,13],[103,14],[104,15],[102,16],[94,17],[95,18],[97,19],[86,20],[85,21],[84,22],[92,23],[90,24],[91,25],[88,26],[89,27],[87,28],[93,29],[183,30],[184,31],[159,32],[162,32],[181,30],[182,30],[172,30],[171,33],[169,30],[164,30],[177,30],[175,30],[179,30],[163,30],[176,30],[180,30],[165,30],[166,30],[178,30],[160,30],[167,30],[168,30],[170,30],[174,30],[185,34],[173,30],[161,30],[198,35],[192,34],[194,36],[193,34],[186,34],[187,34],[189,34],[191,34],[195,36],[196,36],[188,36],[190,36],[118,37],[58,38],[61,39],[53,40],[54,41],[55,41],[56,41],[70,42],[73,43],[60,44],[72,45],[59,44],[75,46],[62,47],[63,48],[64,44],[69,49],[71,38],[66,50],[65,51],[67,50],[68,39],[78,52],[114,53],[143,54],[144,55],[135,56],[148,57],[81,58],[82,37],[120,37],[136,59],[146,54],[115,52],[147,60],[116,37],[117,37],[141,37],[139,37],[140,37],[138,37],[79,61],[137,62],[134,63],[125,64],[132,65],[126,66],[129,63],[133,67],[124,68],[131,69],[123,70],[151,59],[152,71],[153,59],[154,72]],"version":"5.8.3"}
|
package/index.js
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-fullenrich",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "n8n node to call fullEnrich API.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"fullenrich",
|
|
7
|
+
"enrichment",
|
|
8
|
+
"n8n-community-node-package",
|
|
9
|
+
"n8n-nodes-fullenrich",
|
|
10
|
+
"fullenrich-api"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"homepage": "https://n8n.io",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Guillaume Beaumont",
|
|
16
|
+
"email": "guillaume@fullenrich.com"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/fullenrich/n8n-nodes-fullenrich.git"
|
|
21
|
+
},
|
|
22
|
+
"main": "index.js",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "npx rimraf dist && tsc && gulp build:icons",
|
|
25
|
+
"dev": "tsc --watch",
|
|
26
|
+
"format": "prettier nodes credentials --write",
|
|
27
|
+
"lint": "eslint nodes credentials package.json",
|
|
28
|
+
"lintfix": "eslint nodes credentials package.json --fix",
|
|
29
|
+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"n8n": {
|
|
35
|
+
"n8nNodesApiVersion": 1,
|
|
36
|
+
"credentials": [
|
|
37
|
+
"dist/credentials/FullEnrichApi.credentials.js"
|
|
38
|
+
],
|
|
39
|
+
"nodes": [
|
|
40
|
+
"dist/nodes/FullEnrich/FullEnrich.node.js",
|
|
41
|
+
"dist/nodes/FullEnrichTrigger/FullEnrichTrigger.node.js"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@eslint/js": "^9.28.0",
|
|
46
|
+
"@typescript-eslint/parser": "~8.32.0",
|
|
47
|
+
"eslint": "^8.57.1",
|
|
48
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.3",
|
|
49
|
+
"eslint-plugin-react": "^7.37.5",
|
|
50
|
+
"globals": "^16.2.0",
|
|
51
|
+
"gulp": "^5.0.0",
|
|
52
|
+
"prettier": "^3.5.3",
|
|
53
|
+
"typescript": "^5.8.2",
|
|
54
|
+
"typescript-eslint": "^8.33.0"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"n8n-workflow": "*"
|
|
58
|
+
}
|
|
59
|
+
}
|