@limetech/n8n-nodes-lime 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/.eslintrc.js +58 -0
- package/.github/copilot-instructions.md +20 -0
- package/.github/workflows/publish.yml +34 -0
- package/README.md +79 -0
- package/credentials/LimeCrmApi.credentials.ts +57 -0
- package/credentials/LimeGoApi.credentials.ts +31 -0
- package/dist/credentials/LimeCrmApi.credentials.d.ts +9 -0
- package/dist/credentials/LimeCrmApi.credentials.js +53 -0
- package/dist/credentials/LimeCrmApi.credentials.js.map +1 -0
- package/dist/credentials/LimeGoApi.credentials.d.ts +15 -0
- package/dist/credentials/LimeGoApi.credentials.js +32 -0
- package/dist/credentials/LimeGoApi.credentials.js.map +1 -0
- package/dist/nodes/lime-crm/GenericTypes.d.ts +80 -0
- package/dist/nodes/lime-crm/GenericTypes.js +7 -0
- package/dist/nodes/lime-crm/GenericTypes.js.map +1 -0
- package/dist/nodes/lime-crm/LimeCrm.node.json +18 -0
- package/dist/nodes/lime-crm/LimeCrmNode.node.d.ts +17 -0
- package/dist/nodes/lime-crm/LimeCrmNode.node.js +114 -0
- package/dist/nodes/lime-crm/LimeCrmNode.node.js.map +1 -0
- package/dist/nodes/lime-crm/LimeCrmTrigger/LimeCrmTrigger.node.d.ts +17 -0
- package/dist/nodes/lime-crm/LimeCrmTrigger/LimeCrmTrigger.node.js +408 -0
- package/dist/nodes/lime-crm/LimeCrmTrigger/LimeCrmTrigger.node.js.map +1 -0
- package/dist/nodes/lime-crm/LimeCrmTrigger.node.d.ts +17 -0
- package/dist/nodes/lime-crm/LimeCrmTrigger.node.js +439 -0
- package/dist/nodes/lime-crm/LimeCrmTrigger.node.js.map +1 -0
- package/dist/nodes/lime-crm/lime-crm.svg +1 -0
- package/dist/nodes/lime-crm/methods/getAllSortableFields.d.ts +7 -0
- package/dist/nodes/lime-crm/methods/getAllSortableFields.js +53 -0
- package/dist/nodes/lime-crm/methods/getAllSortableFields.js.map +1 -0
- package/dist/nodes/lime-crm/methods/getLimeTypeProperties.d.ts +3 -0
- package/dist/nodes/lime-crm/methods/getLimeTypeProperties.js +40 -0
- package/dist/nodes/lime-crm/methods/getLimeTypeProperties.js.map +1 -0
- package/dist/nodes/lime-crm/methods/getLimeTypeRelations.d.ts +7 -0
- package/dist/nodes/lime-crm/methods/getLimeTypeRelations.js +30 -0
- package/dist/nodes/lime-crm/methods/getLimeTypeRelations.js.map +1 -0
- package/dist/nodes/lime-crm/methods/getLimeTypes.d.ts +3 -0
- package/dist/nodes/lime-crm/methods/getLimeTypes.js +33 -0
- package/dist/nodes/lime-crm/methods/getLimeTypes.js.map +1 -0
- package/dist/nodes/lime-crm/methods/getRelatedTypeProperties.d.ts +7 -0
- package/dist/nodes/lime-crm/methods/getRelatedTypeProperties.js +39 -0
- package/dist/nodes/lime-crm/methods/getRelatedTypeProperties.js.map +1 -0
- package/dist/nodes/lime-crm/methods/index.d.ts +5 -0
- package/dist/nodes/lime-crm/methods/index.js +14 -0
- package/dist/nodes/lime-crm/methods/index.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeObject/commonFields.d.ts +4 -0
- package/dist/nodes/lime-crm/resources/limeObject/commonFields.js +165 -0
- package/dist/nodes/lime-crm/resources/limeObject/commonFields.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeObject/index.d.ts +6 -0
- package/dist/nodes/lime-crm/resources/limeObject/index.js +79 -0
- package/dist/nodes/lime-crm/resources/limeObject/index.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/common.operation.d.ts +2 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/common.operation.js +36 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/common.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/create.operation.d.ts +9 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/create.operation.js +234 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/create.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/delete.operation.d.ts +9 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/delete.operation.js +136 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/delete.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/get.operation.d.ts +9 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/get.operation.js +125 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/get.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/getAll.operation.d.ts +3 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/getAll.operation.js +212 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/getAll.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/search.operation.d.ts +9 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/search.operation.js +232 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/search.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/update.operation.d.ts +9 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/update.operation.js +186 -0
- package/dist/nodes/lime-crm/resources/limeObject/operations/update.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeType/index.d.ts +6 -0
- package/dist/nodes/lime-crm/resources/limeType/index.js +81 -0
- package/dist/nodes/lime-crm/resources/limeType/index.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/getProperties.operation.d.ts +9 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/getProperties.operation.js +112 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/getProperties.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/getRelations.operation.d.ts +9 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/getRelations.operation.js +112 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/getRelations.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/getType.operation.d.ts +9 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/getType.operation.js +70 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/getType.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/listTypes.operation.d.ts +9 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/listTypes.operation.js +86 -0
- package/dist/nodes/lime-crm/resources/limeType/operations/listTypes.operation.js.map +1 -0
- package/dist/nodes/lime-crm/resources/queryApi/index.d.ts +6 -0
- package/dist/nodes/lime-crm/resources/queryApi/index.js +57 -0
- package/dist/nodes/lime-crm/resources/queryApi/index.js.map +1 -0
- package/dist/nodes/lime-crm/resources/queryApi/operations/executeQuery.operation.d.ts +9 -0
- package/dist/nodes/lime-crm/resources/queryApi/operations/executeQuery.operation.js +559 -0
- package/dist/nodes/lime-crm/resources/queryApi/operations/executeQuery.operation.js.map +1 -0
- package/dist/nodes/lime-crm/transport/index.d.ts +2 -0
- package/dist/nodes/lime-crm/transport/index.js +50 -0
- package/dist/nodes/lime-crm/transport/index.js.map +1 -0
- package/dist/nodes/lime-go/LimeGo.node.d.ts +8 -0
- package/dist/nodes/lime-go/LimeGo.node.js +123 -0
- package/dist/nodes/lime-go/LimeGo.node.js.map +1 -0
- package/dist/nodes/lime-go/actions/organization/get.operation.d.ts +5 -0
- package/dist/nodes/lime-go/actions/organization/get.operation.js +39 -0
- package/dist/nodes/lime-go/actions/organization/get.operation.js.map +1 -0
- package/dist/nodes/lime-go/actions/organization/getByExternalKey.operation.d.ts +5 -0
- package/dist/nodes/lime-go/actions/organization/getByExternalKey.operation.js +54 -0
- package/dist/nodes/lime-go/actions/organization/getByExternalKey.operation.js.map +1 -0
- package/dist/nodes/lime-go/actions/organization/index.d.ts +7 -0
- package/dist/nodes/lime-go/actions/organization/index.js +92 -0
- package/dist/nodes/lime-go/actions/organization/index.js.map +1 -0
- package/dist/nodes/lime-go/actions/organization/organizationFields.d.ts +2 -0
- package/dist/nodes/lime-go/actions/organization/organizationFields.js +162 -0
- package/dist/nodes/lime-go/actions/organization/organizationFields.js.map +1 -0
- package/dist/nodes/lime-go/actions/organization/search.operation.d.ts +5 -0
- package/dist/nodes/lime-go/actions/organization/search.operation.js +70 -0
- package/dist/nodes/lime-go/actions/organization/search.operation.js.map +1 -0
- package/dist/nodes/lime-go/actions/organization/update.operation.d.ts +5 -0
- package/dist/nodes/lime-go/actions/organization/update.operation.js +125 -0
- package/dist/nodes/lime-go/actions/organization/update.operation.js.map +1 -0
- package/dist/nodes/lime-go/actions/person/createMail.operation.d.ts +7 -0
- package/dist/nodes/lime-go/actions/person/createMail.operation.js +130 -0
- package/dist/nodes/lime-go/actions/person/createMail.operation.js.map +1 -0
- package/dist/nodes/lime-go/actions/person/get.operation.d.ts +7 -0
- package/dist/nodes/lime-go/actions/person/get.operation.js +45 -0
- package/dist/nodes/lime-go/actions/person/get.operation.js.map +1 -0
- package/dist/nodes/lime-go/actions/person/index.d.ts +7 -0
- package/dist/nodes/lime-go/actions/person/index.js +92 -0
- package/dist/nodes/lime-go/actions/person/index.js.map +1 -0
- package/dist/nodes/lime-go/actions/person/personFields.d.ts +2 -0
- package/dist/nodes/lime-go/actions/person/personFields.js +134 -0
- package/dist/nodes/lime-go/actions/person/personFields.js.map +1 -0
- package/dist/nodes/lime-go/actions/person/search.operation.d.ts +7 -0
- package/dist/nodes/lime-go/actions/person/search.operation.js +81 -0
- package/dist/nodes/lime-go/actions/person/search.operation.js.map +1 -0
- package/dist/nodes/lime-go/actions/person/update.operation.d.ts +7 -0
- package/dist/nodes/lime-go/actions/person/update.operation.js +104 -0
- package/dist/nodes/lime-go/actions/person/update.operation.js.map +1 -0
- package/dist/nodes/lime-go/lime-go.svg +1 -0
- package/dist/nodes/lime-go/transport/graphqlRequest.d.ts +2 -0
- package/dist/nodes/lime-go/transport/graphqlRequest.js +23 -0
- package/dist/nodes/lime-go/transport/graphqlRequest.js.map +1 -0
- package/dist/nodes/lime-go/transport/transport.d.ts +3 -0
- package/dist/nodes/lime-go/transport/transport.js +58 -0
- package/dist/nodes/lime-go/transport/transport.js.map +1 -0
- package/dist/nodes/lime-go/triggers/webhook.d.ts +10 -0
- package/dist/nodes/lime-go/triggers/webhook.js +92 -0
- package/dist/nodes/lime-go/triggers/webhook.js.map +1 -0
- package/dist/package.json +49 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/docker-compose.yml +44 -0
- package/index.js +3 -0
- package/nodes/lime-crm/GenericTypes.ts +114 -0
- package/nodes/lime-crm/LimeCrm.node.json +18 -0
- package/nodes/lime-crm/LimeCrmNode.node.ts +154 -0
- package/nodes/lime-crm/LimeCrmTrigger/LimeCrmTrigger.node.ts +461 -0
- package/nodes/lime-crm/LimeCrmTrigger.node.ts +505 -0
- package/nodes/lime-crm/lime-crm.svg +1 -0
- package/nodes/lime-crm/methods/getAllSortableFields.ts +73 -0
- package/nodes/lime-crm/methods/getLimeTypeProperties.ts +48 -0
- package/nodes/lime-crm/methods/getLimeTypeRelations.ts +32 -0
- package/nodes/lime-crm/methods/getLimeTypes.ts +33 -0
- package/nodes/lime-crm/methods/getRelatedTypeProperties.ts +47 -0
- package/nodes/lime-crm/methods/index.ts +5 -0
- package/nodes/lime-crm/resources/limeObject/commonFields.ts +179 -0
- package/nodes/lime-crm/resources/limeObject/index.ts +64 -0
- package/nodes/lime-crm/resources/limeObject/operations/common.operation.ts +35 -0
- package/nodes/lime-crm/resources/limeObject/operations/create.operation.ts +234 -0
- package/nodes/lime-crm/resources/limeObject/operations/delete.operation.ts +136 -0
- package/nodes/lime-crm/resources/limeObject/operations/get.operation.ts +124 -0
- package/nodes/lime-crm/resources/limeObject/operations/getAll.operation.ts +242 -0
- package/nodes/lime-crm/resources/limeObject/operations/search.operation.ts +242 -0
- package/nodes/lime-crm/resources/limeObject/operations/update.operation.ts +201 -0
- package/nodes/lime-crm/resources/limeType/index.ts +66 -0
- package/nodes/lime-crm/resources/limeType/operations/getProperties.operation.ts +105 -0
- package/nodes/lime-crm/resources/limeType/operations/getRelations.operation.ts +105 -0
- package/nodes/lime-crm/resources/limeType/operations/getType.operation.ts +58 -0
- package/nodes/lime-crm/resources/limeType/operations/listTypes.operation.ts +76 -0
- package/nodes/lime-crm/resources/queryApi/index.ts +42 -0
- package/nodes/lime-crm/resources/queryApi/operations/executeQuery.operation.ts +605 -0
- package/nodes/lime-crm/transport/index.ts +74 -0
- package/nodes/lime-go/LimeGo.node.ts +146 -0
- package/nodes/lime-go/actions/organization/get.operation.ts +42 -0
- package/nodes/lime-go/actions/organization/getByExternalKey.operation.ts +57 -0
- package/nodes/lime-go/actions/organization/index.ts +69 -0
- package/nodes/lime-go/actions/organization/organizationFields.ts +160 -0
- package/nodes/lime-go/actions/organization/search.operation.ts +73 -0
- package/nodes/lime-go/actions/organization/update.operation.ts +140 -0
- package/nodes/lime-go/actions/person/createMail.operation.ts +140 -0
- package/nodes/lime-go/actions/person/get.operation.ts +51 -0
- package/nodes/lime-go/actions/person/index.ts +69 -0
- package/nodes/lime-go/actions/person/personFields.ts +132 -0
- package/nodes/lime-go/actions/person/search.operation.ts +88 -0
- package/nodes/lime-go/actions/person/update.operation.ts +122 -0
- package/nodes/lime-go/lime-go.svg +1 -0
- package/nodes/lime-go/transport/graphqlRequest.ts +30 -0
- package/package.json +50 -0
- package/tsconfig.json +30 -0
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.execute = exports.properties = exports.description = void 0;
|
|
27
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
28
|
+
exports.description = {
|
|
29
|
+
name: 'Execute Query',
|
|
30
|
+
value: 'executeQuery',
|
|
31
|
+
description: 'Execute a custom query against the Lime CRM database',
|
|
32
|
+
action: 'Execute a custom query',
|
|
33
|
+
};
|
|
34
|
+
exports.properties = [
|
|
35
|
+
{
|
|
36
|
+
displayName: 'LimeType',
|
|
37
|
+
name: 'limeType',
|
|
38
|
+
type: 'options',
|
|
39
|
+
typeOptions: {
|
|
40
|
+
loadOptionsMethod: 'getLimeTypes',
|
|
41
|
+
},
|
|
42
|
+
required: true,
|
|
43
|
+
default: '',
|
|
44
|
+
description: 'The entity type in Lime CRM to query',
|
|
45
|
+
displayOptions: {
|
|
46
|
+
show: {
|
|
47
|
+
resource: [
|
|
48
|
+
'queryApi',
|
|
49
|
+
],
|
|
50
|
+
operation: [
|
|
51
|
+
'executeQuery',
|
|
52
|
+
],
|
|
53
|
+
queryMode: [
|
|
54
|
+
'guided',
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
displayName: 'Query Mode',
|
|
61
|
+
name: 'queryMode',
|
|
62
|
+
type: 'options',
|
|
63
|
+
options: [
|
|
64
|
+
{
|
|
65
|
+
name: 'Guided (UI Builder)',
|
|
66
|
+
value: 'guided',
|
|
67
|
+
description: 'Build your query using the user interface',
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Code (JSON)',
|
|
71
|
+
value: 'code',
|
|
72
|
+
description: 'Write your query as a JSON object',
|
|
73
|
+
},
|
|
74
|
+
],
|
|
75
|
+
default: 'guided',
|
|
76
|
+
displayOptions: {
|
|
77
|
+
show: {
|
|
78
|
+
resource: [
|
|
79
|
+
'queryApi',
|
|
80
|
+
],
|
|
81
|
+
operation: [
|
|
82
|
+
'executeQuery',
|
|
83
|
+
],
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
displayName: 'Query',
|
|
89
|
+
name: 'query',
|
|
90
|
+
type: 'json',
|
|
91
|
+
default: '{\n "limetype": "company",\n "properties": ["name", "phone"],\n "filter": {\n "relation": {\n "equals": "customer"\n }\n },\n "take": 10\n}',
|
|
92
|
+
required: true,
|
|
93
|
+
description: 'The query to execute. Must be valid JSON format. See <a href="https://docs.lime-crm.com/query-api/" target="_blank">Query API documentation</a>.',
|
|
94
|
+
displayOptions: {
|
|
95
|
+
show: {
|
|
96
|
+
resource: [
|
|
97
|
+
'queryApi',
|
|
98
|
+
],
|
|
99
|
+
operation: [
|
|
100
|
+
'executeQuery',
|
|
101
|
+
],
|
|
102
|
+
queryMode: [
|
|
103
|
+
'code',
|
|
104
|
+
],
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
typeOptions: {
|
|
108
|
+
alwaysOpenEditWindow: true,
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
displayName: 'Properties',
|
|
113
|
+
name: 'properties',
|
|
114
|
+
type: 'multiOptions',
|
|
115
|
+
typeOptions: {
|
|
116
|
+
loadOptionsMethod: 'getLimeTypeProperties',
|
|
117
|
+
loadOptionsDependsOn: ['limeType'],
|
|
118
|
+
},
|
|
119
|
+
default: [],
|
|
120
|
+
description: 'Properties to retrieve from the selected Lime type',
|
|
121
|
+
displayOptions: {
|
|
122
|
+
show: {
|
|
123
|
+
resource: [
|
|
124
|
+
'queryApi',
|
|
125
|
+
],
|
|
126
|
+
operation: [
|
|
127
|
+
'executeQuery',
|
|
128
|
+
],
|
|
129
|
+
queryMode: [
|
|
130
|
+
'guided',
|
|
131
|
+
],
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
displayName: 'Include Relations',
|
|
137
|
+
name: 'includeRelations',
|
|
138
|
+
type: 'boolean',
|
|
139
|
+
default: false,
|
|
140
|
+
description: 'Whether to include properties from related objects',
|
|
141
|
+
displayOptions: {
|
|
142
|
+
show: {
|
|
143
|
+
resource: [
|
|
144
|
+
'queryApi',
|
|
145
|
+
],
|
|
146
|
+
operation: [
|
|
147
|
+
'executeQuery',
|
|
148
|
+
],
|
|
149
|
+
queryMode: [
|
|
150
|
+
'guided',
|
|
151
|
+
],
|
|
152
|
+
},
|
|
153
|
+
},
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
displayName: 'Relations Configuration',
|
|
157
|
+
name: 'relationsConfig',
|
|
158
|
+
placeholder: 'Add Relation',
|
|
159
|
+
type: 'fixedCollection',
|
|
160
|
+
typeOptions: {
|
|
161
|
+
multipleValues: true,
|
|
162
|
+
},
|
|
163
|
+
default: {},
|
|
164
|
+
description: 'Configure properties from related objects',
|
|
165
|
+
displayOptions: {
|
|
166
|
+
show: {
|
|
167
|
+
resource: [
|
|
168
|
+
'queryApi',
|
|
169
|
+
],
|
|
170
|
+
operation: [
|
|
171
|
+
'executeQuery',
|
|
172
|
+
],
|
|
173
|
+
queryMode: [
|
|
174
|
+
'guided',
|
|
175
|
+
],
|
|
176
|
+
includeRelations: [
|
|
177
|
+
true,
|
|
178
|
+
],
|
|
179
|
+
},
|
|
180
|
+
},
|
|
181
|
+
options: [
|
|
182
|
+
{
|
|
183
|
+
name: 'relation',
|
|
184
|
+
displayName: 'Relation',
|
|
185
|
+
values: [
|
|
186
|
+
{
|
|
187
|
+
displayName: 'Relation Name',
|
|
188
|
+
name: 'relationName',
|
|
189
|
+
type: 'options',
|
|
190
|
+
typeOptions: {
|
|
191
|
+
loadOptionsMethod: 'getLimeTypeRelations',
|
|
192
|
+
loadOptionsDependsOn: ['limetype'],
|
|
193
|
+
},
|
|
194
|
+
default: '',
|
|
195
|
+
description: 'The name of the relation',
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
displayName: 'Properties',
|
|
199
|
+
name: 'properties',
|
|
200
|
+
type: 'multiOptions',
|
|
201
|
+
typeOptions: {
|
|
202
|
+
loadOptionsMethod: 'getRelatedTypeProperties',
|
|
203
|
+
loadOptionsDependsOn: ['limetype', 'relationsConfig.relation[].relationName'],
|
|
204
|
+
},
|
|
205
|
+
default: [],
|
|
206
|
+
description: 'Properties from the related entity',
|
|
207
|
+
},
|
|
208
|
+
],
|
|
209
|
+
},
|
|
210
|
+
],
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
displayName: 'Add Filter',
|
|
214
|
+
name: 'addFilter',
|
|
215
|
+
type: 'boolean',
|
|
216
|
+
default: false,
|
|
217
|
+
description: 'Whether to add a filter to the query',
|
|
218
|
+
displayOptions: {
|
|
219
|
+
show: {
|
|
220
|
+
resource: [
|
|
221
|
+
'queryApi',
|
|
222
|
+
],
|
|
223
|
+
operation: [
|
|
224
|
+
'executeQuery',
|
|
225
|
+
],
|
|
226
|
+
queryMode: [
|
|
227
|
+
'guided',
|
|
228
|
+
],
|
|
229
|
+
},
|
|
230
|
+
},
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
displayName: 'Filter',
|
|
234
|
+
name: 'filter',
|
|
235
|
+
type: 'json',
|
|
236
|
+
default: '{\n "key": "name",\n "op": "contains",\n "exp": "Lime"\n}',
|
|
237
|
+
description: 'Filter to apply to the query (JSON format)',
|
|
238
|
+
displayOptions: {
|
|
239
|
+
show: {
|
|
240
|
+
resource: [
|
|
241
|
+
'queryApi',
|
|
242
|
+
],
|
|
243
|
+
operation: [
|
|
244
|
+
'executeQuery',
|
|
245
|
+
],
|
|
246
|
+
queryMode: [
|
|
247
|
+
'guided',
|
|
248
|
+
],
|
|
249
|
+
addFilter: [
|
|
250
|
+
true,
|
|
251
|
+
],
|
|
252
|
+
},
|
|
253
|
+
},
|
|
254
|
+
typeOptions: {
|
|
255
|
+
alwaysOpenEditWindow: true,
|
|
256
|
+
},
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
displayName: 'Limit',
|
|
260
|
+
name: 'limit',
|
|
261
|
+
type: 'number',
|
|
262
|
+
default: 50,
|
|
263
|
+
description: 'Maximum number of records to return',
|
|
264
|
+
displayOptions: {
|
|
265
|
+
show: {
|
|
266
|
+
resource: [
|
|
267
|
+
'queryApi',
|
|
268
|
+
],
|
|
269
|
+
operation: [
|
|
270
|
+
'executeQuery',
|
|
271
|
+
],
|
|
272
|
+
queryMode: [
|
|
273
|
+
'guided',
|
|
274
|
+
],
|
|
275
|
+
returnAll: [
|
|
276
|
+
false,
|
|
277
|
+
],
|
|
278
|
+
},
|
|
279
|
+
},
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
displayName: 'Offset',
|
|
283
|
+
name: 'offset',
|
|
284
|
+
type: 'number',
|
|
285
|
+
default: 0,
|
|
286
|
+
description: 'Number of records to skip',
|
|
287
|
+
displayOptions: {
|
|
288
|
+
show: {
|
|
289
|
+
resource: [
|
|
290
|
+
'queryApi',
|
|
291
|
+
],
|
|
292
|
+
operation: [
|
|
293
|
+
'executeQuery',
|
|
294
|
+
],
|
|
295
|
+
queryMode: [
|
|
296
|
+
'guided',
|
|
297
|
+
],
|
|
298
|
+
},
|
|
299
|
+
},
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
displayName: 'Add Sorting',
|
|
303
|
+
name: 'addSorting',
|
|
304
|
+
type: 'boolean',
|
|
305
|
+
default: false,
|
|
306
|
+
description: 'Whether to add sorting to the query',
|
|
307
|
+
displayOptions: {
|
|
308
|
+
show: {
|
|
309
|
+
resource: [
|
|
310
|
+
'queryApi',
|
|
311
|
+
],
|
|
312
|
+
operation: [
|
|
313
|
+
'executeQuery',
|
|
314
|
+
],
|
|
315
|
+
queryMode: [
|
|
316
|
+
'guided',
|
|
317
|
+
],
|
|
318
|
+
},
|
|
319
|
+
},
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
displayName: 'Sort Field',
|
|
323
|
+
name: 'sortField',
|
|
324
|
+
type: 'options',
|
|
325
|
+
typeOptions: {
|
|
326
|
+
loadOptionsMethod: 'getAllSortableFields',
|
|
327
|
+
loadOptionsDependsOn: ['limetype', 'includeRelations', 'relationsConfig.relation'],
|
|
328
|
+
},
|
|
329
|
+
default: '',
|
|
330
|
+
description: 'Field to sort by',
|
|
331
|
+
displayOptions: {
|
|
332
|
+
show: {
|
|
333
|
+
resource: [
|
|
334
|
+
'queryApi',
|
|
335
|
+
],
|
|
336
|
+
operation: [
|
|
337
|
+
'executeQuery',
|
|
338
|
+
],
|
|
339
|
+
queryMode: [
|
|
340
|
+
'guided',
|
|
341
|
+
],
|
|
342
|
+
addSorting: [
|
|
343
|
+
true,
|
|
344
|
+
],
|
|
345
|
+
},
|
|
346
|
+
},
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
displayName: 'Sort Direction',
|
|
350
|
+
name: 'sortDirection',
|
|
351
|
+
type: 'options',
|
|
352
|
+
options: [
|
|
353
|
+
{
|
|
354
|
+
name: 'Ascending (A-Z)',
|
|
355
|
+
value: 'ASC',
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
name: 'Descending (Z-A)',
|
|
359
|
+
value: 'DESC',
|
|
360
|
+
},
|
|
361
|
+
],
|
|
362
|
+
default: 'ASC',
|
|
363
|
+
description: 'Sort direction',
|
|
364
|
+
displayOptions: {
|
|
365
|
+
show: {
|
|
366
|
+
resource: [
|
|
367
|
+
'queryApi',
|
|
368
|
+
],
|
|
369
|
+
operation: [
|
|
370
|
+
'executeQuery',
|
|
371
|
+
],
|
|
372
|
+
queryMode: [
|
|
373
|
+
'guided',
|
|
374
|
+
],
|
|
375
|
+
addSorting: [
|
|
376
|
+
true,
|
|
377
|
+
],
|
|
378
|
+
},
|
|
379
|
+
},
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
displayName: 'Return All',
|
|
383
|
+
name: 'returnAll',
|
|
384
|
+
type: 'boolean',
|
|
385
|
+
displayOptions: {
|
|
386
|
+
show: {
|
|
387
|
+
resource: [
|
|
388
|
+
'queryApi',
|
|
389
|
+
],
|
|
390
|
+
operation: [
|
|
391
|
+
'executeQuery',
|
|
392
|
+
],
|
|
393
|
+
},
|
|
394
|
+
},
|
|
395
|
+
default: false,
|
|
396
|
+
description: 'Whether to return all results or respect the limit parameter',
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
displayName: 'Options',
|
|
400
|
+
name: 'options',
|
|
401
|
+
type: 'collection',
|
|
402
|
+
placeholder: 'Add Option',
|
|
403
|
+
default: {},
|
|
404
|
+
displayOptions: {
|
|
405
|
+
show: {
|
|
406
|
+
resource: [
|
|
407
|
+
'queryApi',
|
|
408
|
+
],
|
|
409
|
+
operation: [
|
|
410
|
+
'executeQuery',
|
|
411
|
+
],
|
|
412
|
+
},
|
|
413
|
+
},
|
|
414
|
+
options: [
|
|
415
|
+
{
|
|
416
|
+
displayName: 'Include Metadata',
|
|
417
|
+
name: 'includeMetadata',
|
|
418
|
+
type: 'boolean',
|
|
419
|
+
default: false,
|
|
420
|
+
description: 'Whether to include metadata about the query result (total count, pagination info, etc.)',
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
displayName: 'Timeout (ms)',
|
|
424
|
+
name: 'timeout',
|
|
425
|
+
type: 'number',
|
|
426
|
+
default: 30000,
|
|
427
|
+
description: 'Timeout for the query in milliseconds',
|
|
428
|
+
},
|
|
429
|
+
],
|
|
430
|
+
},
|
|
431
|
+
];
|
|
432
|
+
async function execute(i) {
|
|
433
|
+
const { apiRequest } = await Promise.resolve().then(() => __importStar(require('../../../transport')));
|
|
434
|
+
const queryMode = this.getNodeParameter('queryMode', i);
|
|
435
|
+
const returnAll = this.getNodeParameter('returnAll', i);
|
|
436
|
+
const options = this.getNodeParameter('options', i, {});
|
|
437
|
+
let queryObject;
|
|
438
|
+
if (queryMode === 'code') {
|
|
439
|
+
const queryJson = this.getNodeParameter('query', i);
|
|
440
|
+
try {
|
|
441
|
+
if (typeof queryJson === 'string') {
|
|
442
|
+
queryObject = JSON.parse(queryJson);
|
|
443
|
+
}
|
|
444
|
+
else {
|
|
445
|
+
queryObject = queryJson;
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
catch (error) {
|
|
449
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Invalid JSON in query: ' + error.message);
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
else {
|
|
453
|
+
queryObject = {};
|
|
454
|
+
const limetype = this.getNodeParameter('limeType', i);
|
|
455
|
+
queryObject.limetype = limetype;
|
|
456
|
+
const properties = this.getNodeParameter('properties', i, []);
|
|
457
|
+
const responseFormat = { object: {} };
|
|
458
|
+
properties.forEach((property) => {
|
|
459
|
+
responseFormat.object[property] = null;
|
|
460
|
+
});
|
|
461
|
+
const includeRelations = this.getNodeParameter('includeRelations', i, false);
|
|
462
|
+
if (includeRelations) {
|
|
463
|
+
const relations = this.getNodeParameter('relationsConfig.relation', i, []);
|
|
464
|
+
relations.forEach((relationConfig) => {
|
|
465
|
+
const relationName = relationConfig.relationName;
|
|
466
|
+
const relationProperties = relationConfig.properties || [];
|
|
467
|
+
if (relationName && relationProperties.length > 0) {
|
|
468
|
+
const relationObject = {};
|
|
469
|
+
relationProperties.forEach((property) => {
|
|
470
|
+
relationObject[property] = null;
|
|
471
|
+
});
|
|
472
|
+
responseFormat.object[relationName] = relationObject;
|
|
473
|
+
}
|
|
474
|
+
});
|
|
475
|
+
}
|
|
476
|
+
queryObject.responseFormat = responseFormat;
|
|
477
|
+
const addFilter = this.getNodeParameter('addFilter', i, false);
|
|
478
|
+
if (addFilter) {
|
|
479
|
+
try {
|
|
480
|
+
const filterJson = this.getNodeParameter('filter', i);
|
|
481
|
+
queryObject.filter = typeof filterJson === 'string' ? JSON.parse(filterJson) : filterJson;
|
|
482
|
+
}
|
|
483
|
+
catch (error) {
|
|
484
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Invalid JSON in filter: ' + error.message);
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
if (!returnAll) {
|
|
488
|
+
queryObject.limit = this.getNodeParameter('limit', i, 50);
|
|
489
|
+
}
|
|
490
|
+
queryObject.offset = this.getNodeParameter('offset', i, 0);
|
|
491
|
+
const addSorting = this.getNodeParameter('addSorting', i, false);
|
|
492
|
+
if (addSorting) {
|
|
493
|
+
const sortField = this.getNodeParameter('sortField', i, '');
|
|
494
|
+
const sortDirection = this.getNodeParameter('sortDirection', i, 'ASC');
|
|
495
|
+
if (sortField) {
|
|
496
|
+
const orderBy = [];
|
|
497
|
+
const orderItem = {};
|
|
498
|
+
orderItem[sortField] = sortDirection;
|
|
499
|
+
orderBy.push(orderItem);
|
|
500
|
+
queryObject.orderBy = orderBy;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
if (returnAll) {
|
|
505
|
+
queryObject.limit = 10000;
|
|
506
|
+
}
|
|
507
|
+
if (options.includeMetadata) {
|
|
508
|
+
queryObject.includemetadata = true;
|
|
509
|
+
}
|
|
510
|
+
const endpoint = '/api/v1/query/';
|
|
511
|
+
try {
|
|
512
|
+
const requestOptions = {
|
|
513
|
+
method: 'GET',
|
|
514
|
+
endpoint,
|
|
515
|
+
qs: { q: JSON.stringify(queryObject) },
|
|
516
|
+
};
|
|
517
|
+
if (options.timeout) {
|
|
518
|
+
requestOptions.timeout = options.timeout;
|
|
519
|
+
}
|
|
520
|
+
if (returnAll && queryObject.limit) {
|
|
521
|
+
const results = [];
|
|
522
|
+
let hasMoreData = true;
|
|
523
|
+
let currentOffset = queryObject.offset || 0;
|
|
524
|
+
while (hasMoreData) {
|
|
525
|
+
queryObject.offset = currentOffset;
|
|
526
|
+
requestOptions.qs = { q: JSON.stringify(queryObject) };
|
|
527
|
+
const response = await apiRequest.call(this, requestOptions);
|
|
528
|
+
if (response && response.data && Array.isArray(response.data)) {
|
|
529
|
+
results.push(...response.data);
|
|
530
|
+
if (response.data.length < queryObject.limit) {
|
|
531
|
+
hasMoreData = false;
|
|
532
|
+
}
|
|
533
|
+
else {
|
|
534
|
+
currentOffset += response.data.length;
|
|
535
|
+
}
|
|
536
|
+
}
|
|
537
|
+
else {
|
|
538
|
+
hasMoreData = false;
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
const finalResponse = { data: results };
|
|
542
|
+
if (options.includeMetadata) {
|
|
543
|
+
finalResponse.metadata = {
|
|
544
|
+
totalCount: results.length,
|
|
545
|
+
};
|
|
546
|
+
}
|
|
547
|
+
return finalResponse.objects;
|
|
548
|
+
}
|
|
549
|
+
else {
|
|
550
|
+
const response = await apiRequest.call(this, requestOptions);
|
|
551
|
+
return response.objects;
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
catch (error) {
|
|
555
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Query execution failed: ${error.message}`);
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
exports.execute = execute;
|
|
559
|
+
//# sourceMappingURL=executeQuery.operation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"executeQuery.operation.js","sourceRoot":"","sources":["../../../../../../nodes/lime-crm/resources/queryApi/operations/executeQuery.operation.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.apiRequest = void 0;
|
|
4
|
+
const n8n_workflow_1 = require("n8n-workflow");
|
|
5
|
+
async function apiRequest(options) {
|
|
6
|
+
var _a;
|
|
7
|
+
const credentials = await this.getCredentials('limeCrmApi');
|
|
8
|
+
if (!credentials) {
|
|
9
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'No credentials provided');
|
|
10
|
+
}
|
|
11
|
+
const baseURL = credentials.url;
|
|
12
|
+
const apiKey = credentials.apiKey;
|
|
13
|
+
const headers = {
|
|
14
|
+
'X-API-Key': apiKey,
|
|
15
|
+
'Accept': 'application/json',
|
|
16
|
+
'Content-Type': 'application/json',
|
|
17
|
+
};
|
|
18
|
+
const endpoint = options.endpoint;
|
|
19
|
+
const method = options.method || 'GET';
|
|
20
|
+
try {
|
|
21
|
+
const requestOptions = {
|
|
22
|
+
method,
|
|
23
|
+
uri: `${baseURL}${endpoint}`,
|
|
24
|
+
json: true,
|
|
25
|
+
headers,
|
|
26
|
+
};
|
|
27
|
+
if (options.qs) {
|
|
28
|
+
requestOptions.qs = options.qs;
|
|
29
|
+
}
|
|
30
|
+
if (options.body && method !== 'GET') {
|
|
31
|
+
requestOptions.body = options.body;
|
|
32
|
+
}
|
|
33
|
+
if (options.timeout) {
|
|
34
|
+
requestOptions.timeout = options.timeout;
|
|
35
|
+
}
|
|
36
|
+
return await this.helpers.request(requestOptions);
|
|
37
|
+
}
|
|
38
|
+
catch (error) {
|
|
39
|
+
if (error.response) {
|
|
40
|
+
const statusCode = error.response.statusCode;
|
|
41
|
+
const errorMessage = ((_a = error.response.body) === null || _a === void 0 ? void 0 : _a.message) || error.message;
|
|
42
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `API request failed [${statusCode}]: ${errorMessage}`);
|
|
43
|
+
}
|
|
44
|
+
else {
|
|
45
|
+
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `API request failed: ${error.message}`);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
exports.apiRequest = apiRequest;
|
|
50
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../nodes/lime-crm/transport/index.ts"],"names":[],"mappings":";;;AAAA,+CAAyG;AAKlG,KAAK,UAAU,UAAU,CAE5B,OAAoB;;IAGpB,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC;IAE5D,IAAI,CAAC,WAAW,EAAE;QACd,MAAM,IAAI,iCAAkB,CAAC,IAAI,CAAC,OAAO,EAAE,EAAE,yBAAyB,CAAC,CAAC;KAC3E;IAED,MAAM,OAAO,GAAG,WAAW,CAAC,GAAa,CAAC;IAC1C,MAAM,MAAM,GAAG,WAAW,CAAC,MAAgB,CAAC;IAG5C,MAAM,OAAO,GAAG;QACZ,WAAW,EAAE,MAAM;QACnB,QAAQ,EAAE,kBAAkB;QAC5B,cAAc,EAAE,kBAAkB;KACrC,CAAC;IAEF,MAAM,QAAQ,GAAG,OAAO,CAAC,QAAkB,CAAC;IAC5C,MAAM,MAAM,GAAG,OAAO,CAAC,MAAgB,IAAI,KAAK,CAAC;IAEjD,IAAI;QACA,MAAM,cAAc,GAAgB;YAChC,MAAM;YACN,GAAG,EAAE,GAAG,OAAO,GAAG,QAAQ,EAAE;YAC5B,IAAI,EAAE,IAAI;YACV,OAAO;SACV,CAAC;QAGF,IAAI,OAAO,CAAC,EAAE,EAAE;YACZ,cAAc,CAAC,EAAE,GAAG,OAAO,CAAC,EAAE,CAAC;SAClC;QAGD,IAAI,OAAO,CAAC,IAAI,IAAI,MAAM,KAAK,KAAK,EAAE;YAClC,cAAc,CAAC,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC;SACtC;QAGD,IAAI,OAAO,CAAC,OAAO,EAAE;YACjB,cAAc,CAAC,OAAO,GAAG,OAAO,CAAC,OAAiB,CAAC;SACtD;QAGD,OAAO,MAAM,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;KACrD;IAAC,OAAO,KAAK,EAAE;QAEZ,IAAI,KAAK,CAAC,QAAQ,EAAE;YAEhB,MAAM,UAAU,GAAG,KAAK,CAAC,QAAQ,CAAC,UAAU,CAAC;YAC7C,MAAM,YAAY,GAAG,CAAA,MAAA,KAAK,CAAC,QAAQ,CAAC,IAAI,0CAAE,OAAO,KAAI,KAAK,CAAC,OAAO,CAAC;YAEnE,MAAM,IAAI,iCAAkB,CACxB,IAAI,CAAC,OAAO,EAAE,EACd,uBAAuB,UAAU,MAAM,YAAY,EAAE,CACxD,CAAC;SACL;aAAM;YAEH,MAAM,IAAI,iCAAkB,CACxB,IAAI,CAAC,OAAO,EAAE,EACd,uBAAuB,KAAK,CAAC,OAAO,EAAE,CACzC,CAAC;SACL;KACJ;AACL,CAAC;AApED,gCAoEC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
2
|
+
export declare class LimeGo implements INodeType {
|
|
3
|
+
description: INodeTypeDescription;
|
|
4
|
+
methods: {
|
|
5
|
+
loadOptions: {};
|
|
6
|
+
};
|
|
7
|
+
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|
|
8
|
+
}
|