@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.
Files changed (194) hide show
  1. package/.eslintrc.js +58 -0
  2. package/.github/copilot-instructions.md +20 -0
  3. package/.github/workflows/publish.yml +34 -0
  4. package/README.md +79 -0
  5. package/credentials/LimeCrmApi.credentials.ts +57 -0
  6. package/credentials/LimeGoApi.credentials.ts +31 -0
  7. package/dist/credentials/LimeCrmApi.credentials.d.ts +9 -0
  8. package/dist/credentials/LimeCrmApi.credentials.js +53 -0
  9. package/dist/credentials/LimeCrmApi.credentials.js.map +1 -0
  10. package/dist/credentials/LimeGoApi.credentials.d.ts +15 -0
  11. package/dist/credentials/LimeGoApi.credentials.js +32 -0
  12. package/dist/credentials/LimeGoApi.credentials.js.map +1 -0
  13. package/dist/nodes/lime-crm/GenericTypes.d.ts +80 -0
  14. package/dist/nodes/lime-crm/GenericTypes.js +7 -0
  15. package/dist/nodes/lime-crm/GenericTypes.js.map +1 -0
  16. package/dist/nodes/lime-crm/LimeCrm.node.json +18 -0
  17. package/dist/nodes/lime-crm/LimeCrmNode.node.d.ts +17 -0
  18. package/dist/nodes/lime-crm/LimeCrmNode.node.js +114 -0
  19. package/dist/nodes/lime-crm/LimeCrmNode.node.js.map +1 -0
  20. package/dist/nodes/lime-crm/LimeCrmTrigger/LimeCrmTrigger.node.d.ts +17 -0
  21. package/dist/nodes/lime-crm/LimeCrmTrigger/LimeCrmTrigger.node.js +408 -0
  22. package/dist/nodes/lime-crm/LimeCrmTrigger/LimeCrmTrigger.node.js.map +1 -0
  23. package/dist/nodes/lime-crm/LimeCrmTrigger.node.d.ts +17 -0
  24. package/dist/nodes/lime-crm/LimeCrmTrigger.node.js +439 -0
  25. package/dist/nodes/lime-crm/LimeCrmTrigger.node.js.map +1 -0
  26. package/dist/nodes/lime-crm/lime-crm.svg +1 -0
  27. package/dist/nodes/lime-crm/methods/getAllSortableFields.d.ts +7 -0
  28. package/dist/nodes/lime-crm/methods/getAllSortableFields.js +53 -0
  29. package/dist/nodes/lime-crm/methods/getAllSortableFields.js.map +1 -0
  30. package/dist/nodes/lime-crm/methods/getLimeTypeProperties.d.ts +3 -0
  31. package/dist/nodes/lime-crm/methods/getLimeTypeProperties.js +40 -0
  32. package/dist/nodes/lime-crm/methods/getLimeTypeProperties.js.map +1 -0
  33. package/dist/nodes/lime-crm/methods/getLimeTypeRelations.d.ts +7 -0
  34. package/dist/nodes/lime-crm/methods/getLimeTypeRelations.js +30 -0
  35. package/dist/nodes/lime-crm/methods/getLimeTypeRelations.js.map +1 -0
  36. package/dist/nodes/lime-crm/methods/getLimeTypes.d.ts +3 -0
  37. package/dist/nodes/lime-crm/methods/getLimeTypes.js +33 -0
  38. package/dist/nodes/lime-crm/methods/getLimeTypes.js.map +1 -0
  39. package/dist/nodes/lime-crm/methods/getRelatedTypeProperties.d.ts +7 -0
  40. package/dist/nodes/lime-crm/methods/getRelatedTypeProperties.js +39 -0
  41. package/dist/nodes/lime-crm/methods/getRelatedTypeProperties.js.map +1 -0
  42. package/dist/nodes/lime-crm/methods/index.d.ts +5 -0
  43. package/dist/nodes/lime-crm/methods/index.js +14 -0
  44. package/dist/nodes/lime-crm/methods/index.js.map +1 -0
  45. package/dist/nodes/lime-crm/resources/limeObject/commonFields.d.ts +4 -0
  46. package/dist/nodes/lime-crm/resources/limeObject/commonFields.js +165 -0
  47. package/dist/nodes/lime-crm/resources/limeObject/commonFields.js.map +1 -0
  48. package/dist/nodes/lime-crm/resources/limeObject/index.d.ts +6 -0
  49. package/dist/nodes/lime-crm/resources/limeObject/index.js +79 -0
  50. package/dist/nodes/lime-crm/resources/limeObject/index.js.map +1 -0
  51. package/dist/nodes/lime-crm/resources/limeObject/operations/common.operation.d.ts +2 -0
  52. package/dist/nodes/lime-crm/resources/limeObject/operations/common.operation.js +36 -0
  53. package/dist/nodes/lime-crm/resources/limeObject/operations/common.operation.js.map +1 -0
  54. package/dist/nodes/lime-crm/resources/limeObject/operations/create.operation.d.ts +9 -0
  55. package/dist/nodes/lime-crm/resources/limeObject/operations/create.operation.js +234 -0
  56. package/dist/nodes/lime-crm/resources/limeObject/operations/create.operation.js.map +1 -0
  57. package/dist/nodes/lime-crm/resources/limeObject/operations/delete.operation.d.ts +9 -0
  58. package/dist/nodes/lime-crm/resources/limeObject/operations/delete.operation.js +136 -0
  59. package/dist/nodes/lime-crm/resources/limeObject/operations/delete.operation.js.map +1 -0
  60. package/dist/nodes/lime-crm/resources/limeObject/operations/get.operation.d.ts +9 -0
  61. package/dist/nodes/lime-crm/resources/limeObject/operations/get.operation.js +125 -0
  62. package/dist/nodes/lime-crm/resources/limeObject/operations/get.operation.js.map +1 -0
  63. package/dist/nodes/lime-crm/resources/limeObject/operations/getAll.operation.d.ts +3 -0
  64. package/dist/nodes/lime-crm/resources/limeObject/operations/getAll.operation.js +212 -0
  65. package/dist/nodes/lime-crm/resources/limeObject/operations/getAll.operation.js.map +1 -0
  66. package/dist/nodes/lime-crm/resources/limeObject/operations/search.operation.d.ts +9 -0
  67. package/dist/nodes/lime-crm/resources/limeObject/operations/search.operation.js +232 -0
  68. package/dist/nodes/lime-crm/resources/limeObject/operations/search.operation.js.map +1 -0
  69. package/dist/nodes/lime-crm/resources/limeObject/operations/update.operation.d.ts +9 -0
  70. package/dist/nodes/lime-crm/resources/limeObject/operations/update.operation.js +186 -0
  71. package/dist/nodes/lime-crm/resources/limeObject/operations/update.operation.js.map +1 -0
  72. package/dist/nodes/lime-crm/resources/limeType/index.d.ts +6 -0
  73. package/dist/nodes/lime-crm/resources/limeType/index.js +81 -0
  74. package/dist/nodes/lime-crm/resources/limeType/index.js.map +1 -0
  75. package/dist/nodes/lime-crm/resources/limeType/operations/getProperties.operation.d.ts +9 -0
  76. package/dist/nodes/lime-crm/resources/limeType/operations/getProperties.operation.js +112 -0
  77. package/dist/nodes/lime-crm/resources/limeType/operations/getProperties.operation.js.map +1 -0
  78. package/dist/nodes/lime-crm/resources/limeType/operations/getRelations.operation.d.ts +9 -0
  79. package/dist/nodes/lime-crm/resources/limeType/operations/getRelations.operation.js +112 -0
  80. package/dist/nodes/lime-crm/resources/limeType/operations/getRelations.operation.js.map +1 -0
  81. package/dist/nodes/lime-crm/resources/limeType/operations/getType.operation.d.ts +9 -0
  82. package/dist/nodes/lime-crm/resources/limeType/operations/getType.operation.js +70 -0
  83. package/dist/nodes/lime-crm/resources/limeType/operations/getType.operation.js.map +1 -0
  84. package/dist/nodes/lime-crm/resources/limeType/operations/listTypes.operation.d.ts +9 -0
  85. package/dist/nodes/lime-crm/resources/limeType/operations/listTypes.operation.js +86 -0
  86. package/dist/nodes/lime-crm/resources/limeType/operations/listTypes.operation.js.map +1 -0
  87. package/dist/nodes/lime-crm/resources/queryApi/index.d.ts +6 -0
  88. package/dist/nodes/lime-crm/resources/queryApi/index.js +57 -0
  89. package/dist/nodes/lime-crm/resources/queryApi/index.js.map +1 -0
  90. package/dist/nodes/lime-crm/resources/queryApi/operations/executeQuery.operation.d.ts +9 -0
  91. package/dist/nodes/lime-crm/resources/queryApi/operations/executeQuery.operation.js +559 -0
  92. package/dist/nodes/lime-crm/resources/queryApi/operations/executeQuery.operation.js.map +1 -0
  93. package/dist/nodes/lime-crm/transport/index.d.ts +2 -0
  94. package/dist/nodes/lime-crm/transport/index.js +50 -0
  95. package/dist/nodes/lime-crm/transport/index.js.map +1 -0
  96. package/dist/nodes/lime-go/LimeGo.node.d.ts +8 -0
  97. package/dist/nodes/lime-go/LimeGo.node.js +123 -0
  98. package/dist/nodes/lime-go/LimeGo.node.js.map +1 -0
  99. package/dist/nodes/lime-go/actions/organization/get.operation.d.ts +5 -0
  100. package/dist/nodes/lime-go/actions/organization/get.operation.js +39 -0
  101. package/dist/nodes/lime-go/actions/organization/get.operation.js.map +1 -0
  102. package/dist/nodes/lime-go/actions/organization/getByExternalKey.operation.d.ts +5 -0
  103. package/dist/nodes/lime-go/actions/organization/getByExternalKey.operation.js +54 -0
  104. package/dist/nodes/lime-go/actions/organization/getByExternalKey.operation.js.map +1 -0
  105. package/dist/nodes/lime-go/actions/organization/index.d.ts +7 -0
  106. package/dist/nodes/lime-go/actions/organization/index.js +92 -0
  107. package/dist/nodes/lime-go/actions/organization/index.js.map +1 -0
  108. package/dist/nodes/lime-go/actions/organization/organizationFields.d.ts +2 -0
  109. package/dist/nodes/lime-go/actions/organization/organizationFields.js +162 -0
  110. package/dist/nodes/lime-go/actions/organization/organizationFields.js.map +1 -0
  111. package/dist/nodes/lime-go/actions/organization/search.operation.d.ts +5 -0
  112. package/dist/nodes/lime-go/actions/organization/search.operation.js +70 -0
  113. package/dist/nodes/lime-go/actions/organization/search.operation.js.map +1 -0
  114. package/dist/nodes/lime-go/actions/organization/update.operation.d.ts +5 -0
  115. package/dist/nodes/lime-go/actions/organization/update.operation.js +125 -0
  116. package/dist/nodes/lime-go/actions/organization/update.operation.js.map +1 -0
  117. package/dist/nodes/lime-go/actions/person/createMail.operation.d.ts +7 -0
  118. package/dist/nodes/lime-go/actions/person/createMail.operation.js +130 -0
  119. package/dist/nodes/lime-go/actions/person/createMail.operation.js.map +1 -0
  120. package/dist/nodes/lime-go/actions/person/get.operation.d.ts +7 -0
  121. package/dist/nodes/lime-go/actions/person/get.operation.js +45 -0
  122. package/dist/nodes/lime-go/actions/person/get.operation.js.map +1 -0
  123. package/dist/nodes/lime-go/actions/person/index.d.ts +7 -0
  124. package/dist/nodes/lime-go/actions/person/index.js +92 -0
  125. package/dist/nodes/lime-go/actions/person/index.js.map +1 -0
  126. package/dist/nodes/lime-go/actions/person/personFields.d.ts +2 -0
  127. package/dist/nodes/lime-go/actions/person/personFields.js +134 -0
  128. package/dist/nodes/lime-go/actions/person/personFields.js.map +1 -0
  129. package/dist/nodes/lime-go/actions/person/search.operation.d.ts +7 -0
  130. package/dist/nodes/lime-go/actions/person/search.operation.js +81 -0
  131. package/dist/nodes/lime-go/actions/person/search.operation.js.map +1 -0
  132. package/dist/nodes/lime-go/actions/person/update.operation.d.ts +7 -0
  133. package/dist/nodes/lime-go/actions/person/update.operation.js +104 -0
  134. package/dist/nodes/lime-go/actions/person/update.operation.js.map +1 -0
  135. package/dist/nodes/lime-go/lime-go.svg +1 -0
  136. package/dist/nodes/lime-go/transport/graphqlRequest.d.ts +2 -0
  137. package/dist/nodes/lime-go/transport/graphqlRequest.js +23 -0
  138. package/dist/nodes/lime-go/transport/graphqlRequest.js.map +1 -0
  139. package/dist/nodes/lime-go/transport/transport.d.ts +3 -0
  140. package/dist/nodes/lime-go/transport/transport.js +58 -0
  141. package/dist/nodes/lime-go/transport/transport.js.map +1 -0
  142. package/dist/nodes/lime-go/triggers/webhook.d.ts +10 -0
  143. package/dist/nodes/lime-go/triggers/webhook.js +92 -0
  144. package/dist/nodes/lime-go/triggers/webhook.js.map +1 -0
  145. package/dist/package.json +49 -0
  146. package/dist/tsconfig.tsbuildinfo +1 -0
  147. package/docker-compose.yml +44 -0
  148. package/index.js +3 -0
  149. package/nodes/lime-crm/GenericTypes.ts +114 -0
  150. package/nodes/lime-crm/LimeCrm.node.json +18 -0
  151. package/nodes/lime-crm/LimeCrmNode.node.ts +154 -0
  152. package/nodes/lime-crm/LimeCrmTrigger/LimeCrmTrigger.node.ts +461 -0
  153. package/nodes/lime-crm/LimeCrmTrigger.node.ts +505 -0
  154. package/nodes/lime-crm/lime-crm.svg +1 -0
  155. package/nodes/lime-crm/methods/getAllSortableFields.ts +73 -0
  156. package/nodes/lime-crm/methods/getLimeTypeProperties.ts +48 -0
  157. package/nodes/lime-crm/methods/getLimeTypeRelations.ts +32 -0
  158. package/nodes/lime-crm/methods/getLimeTypes.ts +33 -0
  159. package/nodes/lime-crm/methods/getRelatedTypeProperties.ts +47 -0
  160. package/nodes/lime-crm/methods/index.ts +5 -0
  161. package/nodes/lime-crm/resources/limeObject/commonFields.ts +179 -0
  162. package/nodes/lime-crm/resources/limeObject/index.ts +64 -0
  163. package/nodes/lime-crm/resources/limeObject/operations/common.operation.ts +35 -0
  164. package/nodes/lime-crm/resources/limeObject/operations/create.operation.ts +234 -0
  165. package/nodes/lime-crm/resources/limeObject/operations/delete.operation.ts +136 -0
  166. package/nodes/lime-crm/resources/limeObject/operations/get.operation.ts +124 -0
  167. package/nodes/lime-crm/resources/limeObject/operations/getAll.operation.ts +242 -0
  168. package/nodes/lime-crm/resources/limeObject/operations/search.operation.ts +242 -0
  169. package/nodes/lime-crm/resources/limeObject/operations/update.operation.ts +201 -0
  170. package/nodes/lime-crm/resources/limeType/index.ts +66 -0
  171. package/nodes/lime-crm/resources/limeType/operations/getProperties.operation.ts +105 -0
  172. package/nodes/lime-crm/resources/limeType/operations/getRelations.operation.ts +105 -0
  173. package/nodes/lime-crm/resources/limeType/operations/getType.operation.ts +58 -0
  174. package/nodes/lime-crm/resources/limeType/operations/listTypes.operation.ts +76 -0
  175. package/nodes/lime-crm/resources/queryApi/index.ts +42 -0
  176. package/nodes/lime-crm/resources/queryApi/operations/executeQuery.operation.ts +605 -0
  177. package/nodes/lime-crm/transport/index.ts +74 -0
  178. package/nodes/lime-go/LimeGo.node.ts +146 -0
  179. package/nodes/lime-go/actions/organization/get.operation.ts +42 -0
  180. package/nodes/lime-go/actions/organization/getByExternalKey.operation.ts +57 -0
  181. package/nodes/lime-go/actions/organization/index.ts +69 -0
  182. package/nodes/lime-go/actions/organization/organizationFields.ts +160 -0
  183. package/nodes/lime-go/actions/organization/search.operation.ts +73 -0
  184. package/nodes/lime-go/actions/organization/update.operation.ts +140 -0
  185. package/nodes/lime-go/actions/person/createMail.operation.ts +140 -0
  186. package/nodes/lime-go/actions/person/get.operation.ts +51 -0
  187. package/nodes/lime-go/actions/person/index.ts +69 -0
  188. package/nodes/lime-go/actions/person/personFields.ts +132 -0
  189. package/nodes/lime-go/actions/person/search.operation.ts +88 -0
  190. package/nodes/lime-go/actions/person/update.operation.ts +122 -0
  191. package/nodes/lime-go/lime-go.svg +1 -0
  192. package/nodes/lime-go/transport/graphqlRequest.ts +30 -0
  193. package/package.json +50 -0
  194. package/tsconfig.json +30 -0
@@ -0,0 +1,439 @@
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.LimeCrmTrigger = void 0;
27
+ const n8n_workflow_1 = require("n8n-workflow");
28
+ const crypto = __importStar(require("crypto"));
29
+ class LimeCrmTrigger {
30
+ constructor() {
31
+ this.description = {
32
+ displayName: 'Lime CRM Trigger',
33
+ name: 'limeCrmTrigger',
34
+ icon: 'file:lime.svg',
35
+ group: ['trigger'],
36
+ version: 1,
37
+ description: 'Handle Lime CRM webhook events',
38
+ defaults: {
39
+ name: 'Lime CRM Trigger',
40
+ },
41
+ inputs: [],
42
+ outputs: ["main"],
43
+ credentials: [
44
+ {
45
+ name: 'limeCrmApi',
46
+ required: true,
47
+ },
48
+ ],
49
+ webhooks: [
50
+ {
51
+ name: 'default',
52
+ httpMethod: 'POST',
53
+ responseMode: 'onReceived',
54
+ path: 'webhook',
55
+ },
56
+ ],
57
+ properties: [
58
+ {
59
+ displayName: 'Events',
60
+ name: 'events',
61
+ type: 'fixedCollection',
62
+ typeOptions: {
63
+ multipleValues: true,
64
+ required: true,
65
+ },
66
+ default: {},
67
+ placeholder: 'Add Event',
68
+ description: 'Events to subscribe to',
69
+ options: [
70
+ {
71
+ name: 'event',
72
+ displayName: 'Event',
73
+ values: [
74
+ {
75
+ displayName: 'Lime Type',
76
+ name: 'limeType',
77
+ type: 'options',
78
+ typeOptions: {
79
+ loadOptionsMethod: 'getLimeTypes',
80
+ },
81
+ default: '',
82
+ description: 'Lime Type to subscribe to events for',
83
+ },
84
+ {
85
+ displayName: 'Event Type',
86
+ name: 'eventType',
87
+ type: 'options',
88
+ options: [
89
+ {
90
+ name: 'New',
91
+ value: 'new',
92
+ description: 'When a new record is created',
93
+ },
94
+ {
95
+ name: 'Update',
96
+ value: 'update',
97
+ description: 'When a record is updated',
98
+ },
99
+ {
100
+ name: 'Delete',
101
+ value: 'delete',
102
+ description: 'When a record is deleted',
103
+ },
104
+ ],
105
+ default: 'new',
106
+ description: 'Type of event to subscribe to',
107
+ },
108
+ ],
109
+ },
110
+ ],
111
+ },
112
+ {
113
+ displayName: 'Name',
114
+ name: 'name',
115
+ type: 'string',
116
+ default: '',
117
+ placeholder: 'my-lime-webhook',
118
+ required: true,
119
+ description: 'Name for this webhook subscription',
120
+ },
121
+ {
122
+ displayName: 'Options',
123
+ name: 'options',
124
+ type: 'collection',
125
+ placeholder: 'Add Option',
126
+ default: {},
127
+ options: [
128
+ {
129
+ displayName: 'Include Headers',
130
+ name: 'includeHeaders',
131
+ type: 'fixedCollection',
132
+ typeOptions: {
133
+ multipleValues: true,
134
+ },
135
+ default: {},
136
+ placeholder: 'Add Header',
137
+ description: 'Headers to add to webhook requests',
138
+ options: [
139
+ {
140
+ name: 'header',
141
+ displayName: 'Header',
142
+ values: [
143
+ {
144
+ displayName: 'Name',
145
+ name: 'name',
146
+ type: 'string',
147
+ default: '',
148
+ description: 'Name of the header',
149
+ },
150
+ {
151
+ displayName: 'Value',
152
+ name: 'value',
153
+ type: 'string',
154
+ default: '',
155
+ description: 'Value of the header',
156
+ },
157
+ {
158
+ displayName: 'Is Secret',
159
+ name: 'isSecret',
160
+ type: 'boolean',
161
+ default: false,
162
+ description: 'Whether this value is a secret',
163
+ },
164
+ ],
165
+ },
166
+ ],
167
+ },
168
+ {
169
+ displayName: 'Secret',
170
+ name: 'secret',
171
+ type: 'string',
172
+ typeOptions: {
173
+ password: true,
174
+ },
175
+ default: '',
176
+ description: 'Secret to verify the authenticity of received data',
177
+ },
178
+ ],
179
+ },
180
+ ],
181
+ };
182
+ this.methods = {
183
+ loadOptions: {
184
+ async getLimeTypes() {
185
+ const returnData = [];
186
+ try {
187
+ const credentials = await this.getCredentials('limeCrmApi');
188
+ if (!credentials) {
189
+ throw new Error('No credentials provided');
190
+ }
191
+ const endpoint = '/api/v1/limetype/';
192
+ const options = {
193
+ method: 'GET',
194
+ uri: endpoint,
195
+ json: true,
196
+ baseURL: credentials.url,
197
+ headers: {
198
+ 'X-API-Key': credentials.apiKey,
199
+ 'Accept': 'application/json',
200
+ },
201
+ };
202
+ const response = await this.helpers.requestWithAuthentication.call(this, 'limeCrmApi', options);
203
+ if (response._links && response._links.limetypes) {
204
+ for (const limeType of response._links.limetypes) {
205
+ if (limeType.name) {
206
+ returnData.push({
207
+ name: limeType.name,
208
+ value: limeType.name,
209
+ });
210
+ }
211
+ }
212
+ }
213
+ return returnData;
214
+ }
215
+ catch (error) {
216
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Failed to load Lime Types: ${error}`);
217
+ }
218
+ },
219
+ },
220
+ };
221
+ this.webhookMethods = {
222
+ default: {
223
+ async checkExists() {
224
+ const nodeId = this.getNode().id;
225
+ const workflowId = this.getWorkflow().id;
226
+ const workflowName = this.getWorkflow().name;
227
+ const webhookData = this.getWorkflowStaticData('node');
228
+ const webhookUrl = this.getNodeWebhookUrl('default');
229
+ if (webhookData.webhookId) {
230
+ try {
231
+ const credentials = await this.getCredentials('limeCrmApi');
232
+ if (!credentials) {
233
+ throw new Error('No credentials provided');
234
+ }
235
+ const currentWebhook = await this.helpers.requestWithAuthentication.call(this, 'limeCrmApi', {
236
+ method: 'GET',
237
+ uri: `/api/v1/subscription/${webhookData.webhookId}/`,
238
+ json: true,
239
+ baseURL: credentials.url,
240
+ headers: {
241
+ 'X-API-Key': credentials.apiKey,
242
+ 'Accept': 'application/json',
243
+ },
244
+ });
245
+ if (currentWebhook && currentWebhook.target_url === webhookUrl) {
246
+ n8n_workflow_1.LoggerProxy.debug(`Webhook exists: ${webhookData.webhookId}`, { webhookId: webhookData.webhookId, nodeId, workflowId, workflowName });
247
+ return true;
248
+ }
249
+ }
250
+ catch (error) {
251
+ n8n_workflow_1.LoggerProxy.warn(`Webhook check failed: ${error}`, { webhookId: webhookData.webhookId, nodeId, workflowId, workflowName, error });
252
+ delete webhookData.webhookId;
253
+ return false;
254
+ }
255
+ }
256
+ return false;
257
+ },
258
+ async create() {
259
+ const nodeId = this.getNode().id;
260
+ const workflowId = this.getWorkflow().id;
261
+ const workflowName = this.getWorkflow().name;
262
+ const webhookData = this.getWorkflowStaticData('node');
263
+ const webhookUrl = this.getNodeWebhookUrl('default');
264
+ if (!webhookUrl) {
265
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'No webhook URL was returned by the system');
266
+ }
267
+ const name = this.getNodeParameter('name');
268
+ const eventsCollection = this.getNodeParameter('events.event', []);
269
+ const options = this.getNodeParameter('options', {});
270
+ const credentials = await this.getCredentials('limeCrmApi');
271
+ if (!credentials) {
272
+ throw new Error('No credentials provided');
273
+ }
274
+ const events = [];
275
+ for (const eventItem of eventsCollection) {
276
+ events.push(`${eventItem.limeType}.${eventItem.eventType}`);
277
+ }
278
+ events.sort();
279
+ const headersCollection = (options.includeHeaders || {}).header || [];
280
+ const headers = [];
281
+ for (const header of headersCollection) {
282
+ if (header.isSecret) {
283
+ headers.push({
284
+ name: header.name,
285
+ value: '',
286
+ secret_value: header.value,
287
+ type: 'text',
288
+ });
289
+ }
290
+ else {
291
+ headers.push({
292
+ name: header.name,
293
+ value: header.value,
294
+ type: 'text',
295
+ });
296
+ }
297
+ }
298
+ const body = {
299
+ name,
300
+ events,
301
+ target_url: webhookUrl,
302
+ enabled: true,
303
+ headers,
304
+ };
305
+ const secret = options.secret;
306
+ if (secret) {
307
+ body.secret = secret;
308
+ }
309
+ try {
310
+ n8n_workflow_1.LoggerProxy.info('Creating new webhook subscription', { nodeId, workflowId, workflowName });
311
+ const webhookResponse = await this.helpers.requestWithAuthentication.call(this, 'limeCrmApi', {
312
+ method: 'POST',
313
+ uri: '/api/v1/subscription/',
314
+ body,
315
+ json: true,
316
+ baseURL: credentials.url,
317
+ headers: {
318
+ 'X-API-Key': credentials.apiKey,
319
+ 'Accept': 'application/json',
320
+ 'Content-Type': 'application/json',
321
+ },
322
+ });
323
+ if (webhookResponse.id) {
324
+ webhookData.webhookId = webhookResponse.id;
325
+ n8n_workflow_1.LoggerProxy.info(`Created webhook with ID: ${webhookResponse.id}`, { webhookId: webhookResponse.id, nodeId, workflowId, workflowName });
326
+ return true;
327
+ }
328
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Webhook creation failed: No ID was returned');
329
+ }
330
+ catch (error) {
331
+ n8n_workflow_1.LoggerProxy.error(`Webhook creation failed: ${error}`, { nodeId, workflowId, workflowName, error });
332
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Webhook creation failed: ${error}`);
333
+ }
334
+ },
335
+ async delete() {
336
+ const nodeId = this.getNode().id;
337
+ const workflowId = this.getWorkflow().id;
338
+ const workflowName = this.getWorkflow().name;
339
+ const webhookData = this.getWorkflowStaticData('node');
340
+ const webhookId = webhookData.webhookId;
341
+ if (webhookId !== undefined) {
342
+ try {
343
+ n8n_workflow_1.LoggerProxy.info(`Deleting webhook with ID: ${webhookId}`, { webhookId, nodeId, workflowId, workflowName });
344
+ const credentials = await this.getCredentials('limeCrmApi');
345
+ if (!credentials) {
346
+ throw new Error('No credentials provided');
347
+ }
348
+ await this.helpers.requestWithAuthentication.call(this, 'limeCrmApi', {
349
+ method: 'DELETE',
350
+ uri: `/api/v1/subscription/${webhookId}/`,
351
+ json: true,
352
+ baseURL: credentials.url,
353
+ headers: {
354
+ 'X-API-Key': credentials.apiKey,
355
+ 'Accept': 'application/json',
356
+ },
357
+ });
358
+ delete webhookData.webhookId;
359
+ n8n_workflow_1.LoggerProxy.info('Webhook deleted successfully', { webhookId, nodeId, workflowId, workflowName });
360
+ return true;
361
+ }
362
+ catch (error) {
363
+ n8n_workflow_1.LoggerProxy.error(`Webhook deletion failed: ${error}`, { webhookId, nodeId, workflowId, workflowName, error });
364
+ return false;
365
+ }
366
+ }
367
+ return true;
368
+ },
369
+ },
370
+ };
371
+ }
372
+ async webhook() {
373
+ const nodeId = this.getNode().id;
374
+ const workflowId = this.getWorkflow().id;
375
+ const workflowName = this.getWorkflow().name;
376
+ n8n_workflow_1.LoggerProxy.info('Webhook received. Starting webhook processing...', { nodeId, workflowId, workflowName });
377
+ try {
378
+ const options = this.getNodeParameter('options', {});
379
+ const secret = options.secret;
380
+ const bodyData = this.getBodyData();
381
+ const headerData = this.getHeaderData();
382
+ if (secret && headerData['x-lime-signature']) {
383
+ n8n_workflow_1.LoggerProxy.debug('Verifying webhook signature...', { nodeId, workflowId, workflowName });
384
+ const signature = headerData['x-lime-signature'];
385
+ const req = this.getRequestObject();
386
+ const rawBody = req.rawBody || JSON.stringify(bodyData);
387
+ const hmac = crypto.createHmac('sha256', secret);
388
+ hmac.update(rawBody);
389
+ const expectedSignature = hmac.digest('hex');
390
+ if (signature !== expectedSignature) {
391
+ n8n_workflow_1.LoggerProxy.warn('Signature verification FAILED!', { nodeId, workflowId, workflowName });
392
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Invalid webhook signature');
393
+ }
394
+ n8n_workflow_1.LoggerProxy.debug('Signature verification successful', { nodeId, workflowId, workflowName });
395
+ }
396
+ const typedBodyData = bodyData;
397
+ if (!typedBodyData || !typedBodyData.event || !typedBodyData.body) {
398
+ n8n_workflow_1.LoggerProxy.warn('Webhook data is invalid. Missing event or body', { nodeId, workflowId, workflowName });
399
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), 'Webhook data is invalid');
400
+ }
401
+ const eventParts = typedBodyData.event.split('.');
402
+ if (eventParts.length !== 2) {
403
+ n8n_workflow_1.LoggerProxy.warn(`Invalid event format: ${typedBodyData.event}`, { nodeId, workflowId, workflowName, event: typedBodyData.event });
404
+ throw new n8n_workflow_1.NodeOperationError(this.getNode(), `Invalid event format: ${typedBodyData.event}`);
405
+ }
406
+ const limeType = eventParts[0];
407
+ const eventType = eventParts[1];
408
+ n8n_workflow_1.LoggerProxy.info(`Processing ${limeType}.${eventType} event for ID: ${typedBodyData.body.id}`, {
409
+ limeType,
410
+ eventType,
411
+ recordId: typedBodyData.body.id,
412
+ nodeId,
413
+ workflowId,
414
+ workflowName
415
+ });
416
+ const data = [
417
+ {
418
+ json: {
419
+ limeType,
420
+ eventType,
421
+ id: typedBodyData.body.id,
422
+ data: typedBodyData.body.values || {},
423
+ rawEvent: typedBodyData,
424
+ },
425
+ },
426
+ ];
427
+ n8n_workflow_1.LoggerProxy.debug('Webhook processing complete', { nodeId, workflowId, workflowName });
428
+ return {
429
+ workflowData: [data],
430
+ };
431
+ }
432
+ catch (error) {
433
+ n8n_workflow_1.LoggerProxy.error('Error in webhook execution', { error, nodeId, workflowId, workflowName });
434
+ throw error;
435
+ }
436
+ }
437
+ }
438
+ exports.LimeCrmTrigger = LimeCrmTrigger;
439
+ //# sourceMappingURL=LimeCrmTrigger.node.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LimeCrmTrigger.node.js","sourceRoot":"","sources":["../../../nodes/lime-crm/LimeCrmTrigger.node.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ <svg viewBox="0 0 1024 1025" xmlns="http://www.w3.org/2000/svg" xml:space="preserve"><clipPath id="a"><path d="M0 .03h1024v1024H0z"/></clipPath><g clip-path="url(#a)"><path d="M92.399 480.888c0-257.059 208.719-465.779 465.78-465.779C815.28 15.109 1024 223.829 1024 480.888c0 133.713-55.806 271.139-193.403 385.355-166.779 138.45-390.39 157.35-736.15 134.525-102.653-6.785-117.502-24.319-64.468-63.444 166.694-123.047 62.42-217.167 62.42-456.436Z" style="fill:#bee034"/><clipPath id="b"><path d="M92.399 480.888c0-257.059 208.719-465.779 465.78-465.779C815.28 15.109 1024 223.829 1024 480.888c0 133.713-55.806 271.139-193.403 385.355-166.779 138.45-390.39 157.35-736.15 134.525-102.653-6.785-117.502-24.319-64.468-63.444 166.694-123.047 62.42-217.167 62.42-456.436Z"/></clipPath><g clip-path="url(#b)"><path d="M1023-361.59c0 784.587-711.326 1420.62-1588.79 1420.62C-1402.638-283.55 1023-1146.18 1023-361.59Z" style="fill:#a6efff;filter:blur(200px)"/></g><path d="M433.85 723.911c-24.702-12.757-47.23-29.226-66.813-48.596-9.088-9.002-23.765-8.959-32.768.129-9.001 9.087-8.916 23.763.171 32.766 22.911 22.698 49.236 41.941 78.121 56.873 11.392 5.888 25.385 1.409 31.231-9.94 5.888-11.349 1.409-25.344-9.942-31.232Zm367.266-363.98a270.163 270.163 0 0 1 25.556 78.547c2.048 12.629 13.952 21.206 26.581 19.158 12.586-2.006 21.204-13.951 19.156-26.539a316.387 316.387 0 0 0-29.907-92.029c-5.803-11.434-19.754-15.999-31.146-10.24-11.393 5.76-16 19.713-10.24 31.103Zm-51.497 315.384c-19.584 19.37-42.069 35.839-66.815 48.596-11.349 5.888-15.786 19.883-9.94 31.232 5.887 11.349 19.881 15.828 31.229 9.94 28.929-14.932 55.253-34.175 78.164-56.873 9.045-9.003 9.131-23.679.128-32.766-9.002-9.088-23.678-9.131-32.766-.129ZM517.006 213.546a274.904 274.904 0 0 1 41.343-3.114c14.036 0 27.861 1.066 41.343 3.114 12.629 1.919 24.448-6.784 26.367-19.413 1.962-12.628-6.741-24.446-19.371-26.409a322.626 322.626 0 0 0-48.339-3.627 322.201 322.201 0 0 0-48.34 3.627c-12.672 1.963-21.332 13.781-19.413 26.409 1.92 12.629 13.739 21.332 26.41 19.413Zm41.343 490.355c-40.489 0-73.385 32.853-73.385 73.342s32.896 73.385 73.385 73.385c40.489 0 73.342-32.896 73.342-73.385 0-40.489-32.853-73.342-73.342-73.342ZM290.025 438.478c4.481-27.818 13.227-54.227 25.514-78.547 5.761-11.39 1.195-25.343-10.239-31.103-11.392-5.759-25.343-1.194-31.104 10.24a313.893 313.893 0 0 0-29.908 92.029c-2.048 12.588 6.527 24.533 19.157 26.539 12.629 2.048 24.532-6.529 26.58-19.158Zm479.092 112.254c-12.501 38.527 8.618 79.955 47.102 92.456 38.528 12.502 79.956-8.618 92.457-47.104 12.501-38.525-8.619-79.953-47.103-92.455-38.527-12.501-79.955 8.619-92.456 47.103Zm-80.51-247.802c32.766 23.808 78.675 16.554 102.482-16.212 23.808-32.767 16.512-78.675-16.256-102.482-32.723-23.809-78.675-16.512-102.439 16.254-23.808 32.725-16.555 78.633 16.213 102.44Zm-260.558 0c32.766-23.807 40.063-69.715 16.254-102.44-23.807-32.766-69.715-40.063-102.482-16.254-32.766 23.807-40.02 69.715-16.255 102.482 23.806 32.766 69.758 40.02 102.483 16.212Zm-80.51 247.802c-12.501-38.484-53.929-59.604-92.415-47.103-38.526 12.502-59.645 53.93-47.102 92.455 12.501 38.486 53.929 59.606 92.413 47.104 38.528-12.501 59.605-53.929 47.104-92.456Z" style="fill:#fff"/></g></svg>
@@ -0,0 +1,7 @@
1
+ import { ILoadOptionsFunctions } from 'n8n-workflow';
2
+ interface SortableField {
3
+ name: string;
4
+ value: string;
5
+ }
6
+ export declare function getAllSortableFields(this: ILoadOptionsFunctions): Promise<SortableField[]>;
7
+ export default getAllSortableFields;
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getAllSortableFields = void 0;
4
+ const transport_1 = require("../transport");
5
+ async function getAllSortableFields() {
6
+ const limeType = this.getNodeParameter('limetype', '');
7
+ const includeRelations = this.getNodeParameter('includeRelations', false);
8
+ if (!limeType)
9
+ return [];
10
+ try {
11
+ const propertiesResponse = await transport_1.apiRequest.call(this, {
12
+ method: 'GET',
13
+ endpoint: `/api/v1/limetype/${limeType}/property`,
14
+ });
15
+ let sortableFields = [];
16
+ if (propertiesResponse && Array.isArray(propertiesResponse)) {
17
+ sortableFields = propertiesResponse.map((property) => ({
18
+ name: property.name,
19
+ value: property.name,
20
+ }));
21
+ }
22
+ if (includeRelations) {
23
+ const relationsResponse = await transport_1.apiRequest.call(this, {
24
+ method: 'GET',
25
+ endpoint: `/api/v1/limetype/${limeType}/relation`,
26
+ });
27
+ if (relationsResponse && Array.isArray(relationsResponse)) {
28
+ for (const relation of relationsResponse) {
29
+ const targetType = relation.targettype;
30
+ const relationName = relation.name;
31
+ const targetPropertiesResponse = await transport_1.apiRequest.call(this, {
32
+ method: 'GET',
33
+ endpoint: `/api/v1/limetype/${targetType}/property`,
34
+ });
35
+ if (targetPropertiesResponse && Array.isArray(targetPropertiesResponse)) {
36
+ sortableFields.push(...targetPropertiesResponse.map((property) => ({
37
+ name: `${relationName}.${property.name}`,
38
+ value: `${relationName}.${property.name}`,
39
+ })));
40
+ }
41
+ }
42
+ }
43
+ }
44
+ return sortableFields;
45
+ }
46
+ catch (error) {
47
+ console.error(`Error loading sortable fields for ${limeType}:`, error);
48
+ return [];
49
+ }
50
+ }
51
+ exports.getAllSortableFields = getAllSortableFields;
52
+ exports.default = getAllSortableFields;
53
+ //# sourceMappingURL=getAllSortableFields.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getAllSortableFields.js","sourceRoot":"","sources":["../../../../nodes/lime-crm/methods/getAllSortableFields.ts"],"names":[],"mappings":";;;AACA,4CAA0C;AAanC,KAAK,UAAU,oBAAoB;IACtC,MAAM,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,EAAE,CAAW,CAAC;IACjE,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,KAAK,CAAY,CAAC;IAErF,IAAI,CAAC,QAAQ;QAAE,OAAO,EAAE,CAAC;IAEzB,IAAI;QAEA,MAAM,kBAAkB,GAAG,MAAM,sBAAU,CAAC,IAAI,CAAC,IAAI,EAAE;YACnD,MAAM,EAAE,KAAK;YACb,QAAQ,EAAE,oBAAoB,QAAQ,WAAW;SACpD,CAAC,CAAC;QAEH,IAAI,cAAc,GAAoB,EAAE,CAAC;QAEzC,IAAI,kBAAkB,IAAI,KAAK,CAAC,OAAO,CAAC,kBAAkB,CAAC,EAAE;YACzD,cAAc,GAAG,kBAAkB,CAAC,GAAG,CAAC,CAAC,QAAqB,EAAE,EAAE,CAAC,CAAC;gBAChE,IAAI,EAAE,QAAQ,CAAC,IAAc;gBAC7B,KAAK,EAAE,QAAQ,CAAC,IAAc;aACjC,CAAC,CAAC,CAAC;SACP;QAGD,IAAI,gBAAgB,EAAE;YAClB,MAAM,iBAAiB,GAAG,MAAM,sBAAU,CAAC,IAAI,CAAC,IAAI,EAAE;gBAClD,MAAM,EAAE,KAAK;gBACb,QAAQ,EAAE,oBAAoB,QAAQ,WAAW;aACpD,CAAC,CAAC;YAEH,IAAI,iBAAiB,IAAI,KAAK,CAAC,OAAO,CAAC,iBAAiB,CAAC,EAAE;gBACvD,KAAK,MAAM,QAAQ,IAAI,iBAAiB,EAAE;oBACtC,MAAM,UAAU,GAAG,QAAQ,CAAC,UAAoB,CAAC;oBACjD,MAAM,YAAY,GAAG,QAAQ,CAAC,IAAc,CAAC;oBAE7C,MAAM,wBAAwB,GAAG,MAAM,sBAAU,CAAC,IAAI,CAAC,IAAI,EAAE;wBACzD,MAAM,EAAE,KAAK;wBACb,QAAQ,EAAE,oBAAoB,UAAU,WAAW;qBACtD,CAAC,CAAC;oBAEH,IAAI,wBAAwB,IAAI,KAAK,CAAC,OAAO,CAAC,wBAAwB,CAAC,EAAE;wBACrE,cAAc,CAAC,IAAI,CACf,GAAG,wBAAwB,CAAC,GAAG,CAAC,CAAC,QAAqB,EAAE,EAAE,CAAC,CAAC;4BACxD,IAAI,EAAE,GAAG,YAAY,IAAI,QAAQ,CAAC,IAAI,EAAE;4BACxC,KAAK,EAAE,GAAG,YAAY,IAAI,QAAQ,CAAC,IAAI,EAAE;yBAC5C,CAAC,CAAC,CACN,CAAC;qBACL;iBACJ;aACJ;SACJ;QAED,OAAO,cAAc,CAAC;KACzB;IAAC,OAAO,KAAK,EAAE;QACZ,OAAO,CAAC,KAAK,CAAC,qCAAqC,QAAQ,GAAG,EAAE,KAAK,CAAC,CAAC;QACvE,OAAO,EAAE,CAAC;KACb;AACL,CAAC;AAxDD,oDAwDC;AAED,kBAAe,oBAAoB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
2
+ export declare function getLimeTypeProperties(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
3
+ export default getLimeTypeProperties;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getLimeTypeProperties = void 0;
4
+ const transport_1 = require("../transport");
5
+ async function getLimeTypeProperties() {
6
+ const limeType = this.getNodeParameter('limeType', '');
7
+ console.log('Fetching properties for Lime type:', limeType);
8
+ if (!limeType)
9
+ return [];
10
+ try {
11
+ const response = await transport_1.apiRequest.call(this, {
12
+ method: 'GET',
13
+ endpoint: `/api/v1/limetype/${limeType}/`,
14
+ qs: {
15
+ _embed: 'properties',
16
+ },
17
+ });
18
+ const systemProperties = [
19
+ { name: 'ID', value: 'id', description: 'Unique identifier (integer)' },
20
+ { name: 'Updated (System)', value: 'timestamp', description: 'Last update timestamp (datetime)' },
21
+ { name: 'Created (System)', value: 'createdtime', description: 'Creation timestamp (datetime)' },
22
+ { name: 'Created By', value: 'createduser', description: 'User ID that created the record (integer)' },
23
+ { name: 'Updated By', value: 'updateduser', description: 'User ID that last updated the record (integer)' },
24
+ ];
25
+ let apiProperties = [];
26
+ apiProperties = response._embedded.properties.map((property) => ({
27
+ name: property.localname || property.name,
28
+ value: property.name,
29
+ description: `Type: ${property.type}${property.required ? ' (Required)' : ''} | DB: ${property.name}`,
30
+ }));
31
+ return [...systemProperties, ...apiProperties];
32
+ }
33
+ catch (error) {
34
+ console.error(`Error loading properties for ${limeType}:`, error);
35
+ return [];
36
+ }
37
+ }
38
+ exports.getLimeTypeProperties = getLimeTypeProperties;
39
+ exports.default = getLimeTypeProperties;
40
+ //# sourceMappingURL=getLimeTypeProperties.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getLimeTypeProperties.js","sourceRoot":"","sources":["../../../../nodes/lime-crm/methods/getLimeTypeProperties.ts"],"names":[],"mappings":";;;AACA,4CAA0C;AAKnC,KAAK,UAAU,qBAAqB;IACvC,MAAM,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,EAAE,CAAW,CAAC;IACjE,OAAO,CAAC,GAAG,CAAC,oCAAoC,EAAE,QAAQ,CAAC,CAAC;IAC5D,IAAI,CAAC,QAAQ;QAAE,OAAO,EAAE,CAAC;IAEzB,IAAI;QACA,MAAM,QAAQ,GAAG,MAAM,sBAAU,CAAC,IAAI,CAAC,IAAI,EAAE;YACzC,MAAM,EAAE,KAAK;YACb,QAAQ,EAAE,oBAAoB,QAAQ,GAAG;YACzC,EAAE,EAAE;gBACA,MAAM,EAAE,YAAY;aACvB;SACJ,CAAC,CAAC;QAGH,MAAM,gBAAgB,GAA2B;YAC7C,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,WAAW,EAAE,6BAA6B,EAAE;YACvE,EAAE,IAAI,EAAE,kBAAkB,EAAE,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,kCAAkC,EAAE;YACjG,EAAE,IAAI,EAAE,kBAAkB,EAAE,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,+BAA+B,EAAE;YAChG,EAAE,IAAI,EAAE,YAAY,EAAE,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,2CAA2C,EAAE;YACtG,EAAE,IAAI,EAAE,YAAY,EAAE,KAAK,EAAE,aAAa,EAAE,WAAW,EAAE,gDAAgD,EAAE;SAC9G,CAAC;QAGF,IAAI,aAAa,GAA2B,EAAE,CAAC;QAG/C,aAAa,GAAG,QAAQ,CAAC,SAAS,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,QAAqB,EAAE,EAAE,CAAC,CAAC;YAC1E,IAAI,EAAG,QAAQ,CAAC,SAAoB,IAAK,QAAQ,CAAC,IAAe;YACjE,KAAK,EAAE,QAAQ,CAAC,IAAc;YAC9B,WAAW,EAAE,SAAS,QAAQ,CAAC,IAAc,GAAI,QAAQ,CAAC,QAAoB,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,QAAQ,CAAC,IAAc,EAAE;SACzI,CAAC,CAAC,CAAC;QAGJ,OAAO,CAAC,GAAG,gBAAgB,EAAE,GAAG,aAAa,CAAC,CAAC;KAClD;IAAC,OAAO,KAAK,EAAE;QACZ,OAAO,CAAC,KAAK,CAAC,gCAAgC,QAAQ,GAAG,EAAE,KAAK,CAAC,CAAC;QAClE,OAAO,EAAE,CAAC;KACb;AACL,CAAC;AAvCD,sDAuCC;AAED,kBAAe,qBAAqB,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { ILoadOptionsFunctions } from 'n8n-workflow';
2
+ export declare function getLimeTypeRelations(this: ILoadOptionsFunctions): Promise<{
3
+ name: string;
4
+ value: string;
5
+ description: string;
6
+ }[]>;
7
+ export default getLimeTypeRelations;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getLimeTypeRelations = void 0;
4
+ const transport_1 = require("../transport");
5
+ async function getLimeTypeRelations() {
6
+ const limeType = this.getNodeParameter('limetype', '');
7
+ if (!limeType)
8
+ return [];
9
+ try {
10
+ const response = await transport_1.apiRequest.call(this, {
11
+ method: 'GET',
12
+ endpoint: `/api/v1/limetype/${limeType}/`,
13
+ });
14
+ if (!response || !Array.isArray(response)) {
15
+ return [];
16
+ }
17
+ return response.map((relation) => ({
18
+ name: relation.name,
19
+ value: relation.name,
20
+ description: `Target: ${relation.targettype}`,
21
+ }));
22
+ }
23
+ catch (error) {
24
+ console.error(`Error loading relations for ${limeType}:`, error);
25
+ return [];
26
+ }
27
+ }
28
+ exports.getLimeTypeRelations = getLimeTypeRelations;
29
+ exports.default = getLimeTypeRelations;
30
+ //# sourceMappingURL=getLimeTypeRelations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getLimeTypeRelations.js","sourceRoot":"","sources":["../../../../nodes/lime-crm/methods/getLimeTypeRelations.ts"],"names":[],"mappings":";;;AACA,4CAA0C;AAKnC,KAAK,UAAU,oBAAoB;IACtC,MAAM,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,EAAE,EAAE,CAAW,CAAC;IACjE,IAAI,CAAC,QAAQ;QAAE,OAAO,EAAE,CAAC;IAEzB,IAAI;QACA,MAAM,QAAQ,GAAG,MAAM,sBAAU,CAAC,IAAI,CAAC,IAAI,EAAE;YACzC,MAAM,EAAE,KAAK;YACb,QAAQ,EAAE,oBAAoB,QAAQ,GAAG;SAC5C,CAAC,CAAC;QAEH,IAAI,CAAC,QAAQ,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE;YACvC,OAAO,EAAE,CAAC;SACb;QAED,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAC,QAAqB,EAAE,EAAE,CAAC,CAAC;YAC5C,IAAI,EAAE,QAAQ,CAAC,IAAc;YAC7B,KAAK,EAAE,QAAQ,CAAC,IAAc;YAC9B,WAAW,EAAE,WAAW,QAAQ,CAAC,UAAU,EAAE;SAChD,CAAC,CAAC,CAAC;KACP;IAAC,OAAO,KAAK,EAAE;QACZ,OAAO,CAAC,KAAK,CAAC,+BAA+B,QAAQ,GAAG,EAAE,KAAK,CAAC,CAAC;QACjE,OAAO,EAAE,CAAC;KACb;AACL,CAAC;AAvBD,oDAuBC;AAED,kBAAe,oBAAoB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
2
+ export declare function getLimeTypes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
3
+ export default getLimeTypes;