n8n-mcp 2.22.21 → 2.23.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/data/nodes.db +0 -0
- package/dist/constants/type-structures.d.ts +123 -0
- package/dist/constants/type-structures.d.ts.map +1 -0
- package/dist/constants/type-structures.js +654 -0
- package/dist/constants/type-structures.js.map +1 -0
- package/dist/mcp/tools-documentation.js +4 -4
- package/dist/services/enhanced-config-validator.d.ts +3 -0
- package/dist/services/enhanced-config-validator.d.ts.map +1 -1
- package/dist/services/enhanced-config-validator.js +216 -2
- package/dist/services/enhanced-config-validator.js.map +1 -1
- package/dist/services/n8n-validation.d.ts +2 -2
- package/dist/services/node-specific-validators.d.ts.map +1 -1
- package/dist/services/node-specific-validators.js +12 -8
- package/dist/services/node-specific-validators.js.map +1 -1
- package/dist/services/type-structure-service.d.ts +23 -0
- package/dist/services/type-structure-service.d.ts.map +1 -0
- package/dist/services/type-structure-service.js +109 -0
- package/dist/services/type-structure-service.js.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -0
- package/dist/types/index.js.map +1 -1
- package/dist/types/type-structures.d.ts +42 -0
- package/dist/types/type-structures.d.ts.map +1 -0
- package/dist/types/type-structures.js +32 -0
- package/dist/types/type-structures.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,654 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.COMPLEX_TYPE_EXAMPLES = exports.TYPE_STRUCTURES = void 0;
|
|
4
|
+
exports.TYPE_STRUCTURES = {
|
|
5
|
+
string: {
|
|
6
|
+
type: 'primitive',
|
|
7
|
+
jsType: 'string',
|
|
8
|
+
description: 'A text value that can contain any characters',
|
|
9
|
+
example: 'Hello World',
|
|
10
|
+
examples: ['', 'A simple text', '{{ $json.name }}', 'https://example.com'],
|
|
11
|
+
validation: {
|
|
12
|
+
allowEmpty: true,
|
|
13
|
+
allowExpressions: true,
|
|
14
|
+
},
|
|
15
|
+
notes: ['Most common property type', 'Supports n8n expressions'],
|
|
16
|
+
},
|
|
17
|
+
number: {
|
|
18
|
+
type: 'primitive',
|
|
19
|
+
jsType: 'number',
|
|
20
|
+
description: 'A numeric value (integer or decimal)',
|
|
21
|
+
example: 42,
|
|
22
|
+
examples: [0, -10, 3.14, 100],
|
|
23
|
+
validation: {
|
|
24
|
+
allowEmpty: false,
|
|
25
|
+
allowExpressions: true,
|
|
26
|
+
},
|
|
27
|
+
notes: ['Can be constrained with min/max in typeOptions'],
|
|
28
|
+
},
|
|
29
|
+
boolean: {
|
|
30
|
+
type: 'primitive',
|
|
31
|
+
jsType: 'boolean',
|
|
32
|
+
description: 'A true/false toggle value',
|
|
33
|
+
example: true,
|
|
34
|
+
examples: [true, false],
|
|
35
|
+
validation: {
|
|
36
|
+
allowEmpty: false,
|
|
37
|
+
allowExpressions: false,
|
|
38
|
+
},
|
|
39
|
+
notes: ['Rendered as checkbox in n8n UI'],
|
|
40
|
+
},
|
|
41
|
+
dateTime: {
|
|
42
|
+
type: 'primitive',
|
|
43
|
+
jsType: 'string',
|
|
44
|
+
description: 'A date and time value in ISO 8601 format',
|
|
45
|
+
example: '2024-01-20T10:30:00Z',
|
|
46
|
+
examples: [
|
|
47
|
+
'2024-01-20T10:30:00Z',
|
|
48
|
+
'2024-01-20',
|
|
49
|
+
'{{ $now }}',
|
|
50
|
+
],
|
|
51
|
+
validation: {
|
|
52
|
+
allowEmpty: false,
|
|
53
|
+
allowExpressions: true,
|
|
54
|
+
pattern: '^\\d{4}-\\d{2}-\\d{2}(T\\d{2}:\\d{2}:\\d{2}(\\.\\d{3})?Z?)?$',
|
|
55
|
+
},
|
|
56
|
+
notes: ['Accepts ISO 8601 format', 'Can use n8n date expressions'],
|
|
57
|
+
},
|
|
58
|
+
color: {
|
|
59
|
+
type: 'primitive',
|
|
60
|
+
jsType: 'string',
|
|
61
|
+
description: 'A color value in hex format',
|
|
62
|
+
example: '#FF5733',
|
|
63
|
+
examples: ['#FF5733', '#000000', '#FFFFFF', '{{ $json.color }}'],
|
|
64
|
+
validation: {
|
|
65
|
+
allowEmpty: false,
|
|
66
|
+
allowExpressions: true,
|
|
67
|
+
pattern: '^#[0-9A-Fa-f]{6}$',
|
|
68
|
+
},
|
|
69
|
+
notes: ['Must be 6-digit hex color', 'Rendered with color picker in UI'],
|
|
70
|
+
},
|
|
71
|
+
json: {
|
|
72
|
+
type: 'primitive',
|
|
73
|
+
jsType: 'string',
|
|
74
|
+
description: 'A JSON string that can be parsed into any structure',
|
|
75
|
+
example: '{"key": "value", "nested": {"data": 123}}',
|
|
76
|
+
examples: [
|
|
77
|
+
'{}',
|
|
78
|
+
'{"name": "John", "age": 30}',
|
|
79
|
+
'[1, 2, 3]',
|
|
80
|
+
'{{ $json }}',
|
|
81
|
+
],
|
|
82
|
+
validation: {
|
|
83
|
+
allowEmpty: false,
|
|
84
|
+
allowExpressions: true,
|
|
85
|
+
},
|
|
86
|
+
notes: ['Must be valid JSON when parsed', 'Often used for custom payloads'],
|
|
87
|
+
},
|
|
88
|
+
options: {
|
|
89
|
+
type: 'primitive',
|
|
90
|
+
jsType: 'string',
|
|
91
|
+
description: 'Single selection from a list of predefined options',
|
|
92
|
+
example: 'option1',
|
|
93
|
+
examples: ['GET', 'POST', 'channelMessage', 'update'],
|
|
94
|
+
validation: {
|
|
95
|
+
allowEmpty: false,
|
|
96
|
+
allowExpressions: false,
|
|
97
|
+
},
|
|
98
|
+
notes: [
|
|
99
|
+
'Value must match one of the defined option values',
|
|
100
|
+
'Rendered as dropdown in UI',
|
|
101
|
+
'Options defined in property.options array',
|
|
102
|
+
],
|
|
103
|
+
},
|
|
104
|
+
multiOptions: {
|
|
105
|
+
type: 'array',
|
|
106
|
+
jsType: 'array',
|
|
107
|
+
description: 'Multiple selections from a list of predefined options',
|
|
108
|
+
structure: {
|
|
109
|
+
items: {
|
|
110
|
+
type: 'string',
|
|
111
|
+
description: 'Selected option value',
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
example: ['option1', 'option2'],
|
|
115
|
+
examples: [[], ['GET', 'POST'], ['read', 'write', 'delete']],
|
|
116
|
+
validation: {
|
|
117
|
+
allowEmpty: true,
|
|
118
|
+
allowExpressions: false,
|
|
119
|
+
},
|
|
120
|
+
notes: [
|
|
121
|
+
'Array of option values',
|
|
122
|
+
'Each value must exist in property.options',
|
|
123
|
+
'Rendered as multi-select dropdown',
|
|
124
|
+
],
|
|
125
|
+
},
|
|
126
|
+
collection: {
|
|
127
|
+
type: 'collection',
|
|
128
|
+
jsType: 'object',
|
|
129
|
+
description: 'A group of related properties with dynamic values',
|
|
130
|
+
structure: {
|
|
131
|
+
properties: {
|
|
132
|
+
'<propertyName>': {
|
|
133
|
+
type: 'any',
|
|
134
|
+
description: 'Any nested property from the collection definition',
|
|
135
|
+
},
|
|
136
|
+
},
|
|
137
|
+
flexible: true,
|
|
138
|
+
},
|
|
139
|
+
example: {
|
|
140
|
+
name: 'John Doe',
|
|
141
|
+
email: 'john@example.com',
|
|
142
|
+
age: 30,
|
|
143
|
+
},
|
|
144
|
+
examples: [
|
|
145
|
+
{},
|
|
146
|
+
{ key1: 'value1', key2: 123 },
|
|
147
|
+
{ nested: { deep: { value: true } } },
|
|
148
|
+
],
|
|
149
|
+
validation: {
|
|
150
|
+
allowEmpty: true,
|
|
151
|
+
allowExpressions: true,
|
|
152
|
+
},
|
|
153
|
+
notes: [
|
|
154
|
+
'Properties defined in property.values array',
|
|
155
|
+
'Each property can be any type',
|
|
156
|
+
'UI renders as expandable section',
|
|
157
|
+
],
|
|
158
|
+
},
|
|
159
|
+
fixedCollection: {
|
|
160
|
+
type: 'collection',
|
|
161
|
+
jsType: 'object',
|
|
162
|
+
description: 'A collection with predefined groups of properties',
|
|
163
|
+
structure: {
|
|
164
|
+
properties: {
|
|
165
|
+
'<collectionName>': {
|
|
166
|
+
type: 'array',
|
|
167
|
+
description: 'Array of collection items',
|
|
168
|
+
items: {
|
|
169
|
+
type: 'object',
|
|
170
|
+
description: 'Collection item with defined properties',
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
required: [],
|
|
175
|
+
},
|
|
176
|
+
example: {
|
|
177
|
+
headers: [
|
|
178
|
+
{ name: 'Content-Type', value: 'application/json' },
|
|
179
|
+
{ name: 'Authorization', value: 'Bearer token' },
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
examples: [
|
|
183
|
+
{},
|
|
184
|
+
{ queryParameters: [{ name: 'id', value: '123' }] },
|
|
185
|
+
{
|
|
186
|
+
headers: [{ name: 'Accept', value: '*/*' }],
|
|
187
|
+
queryParameters: [{ name: 'limit', value: '10' }],
|
|
188
|
+
},
|
|
189
|
+
],
|
|
190
|
+
validation: {
|
|
191
|
+
allowEmpty: true,
|
|
192
|
+
allowExpressions: true,
|
|
193
|
+
},
|
|
194
|
+
notes: [
|
|
195
|
+
'Each collection has predefined structure',
|
|
196
|
+
'Often used for headers, parameters, etc.',
|
|
197
|
+
'Supports multiple values per collection',
|
|
198
|
+
],
|
|
199
|
+
},
|
|
200
|
+
resourceLocator: {
|
|
201
|
+
type: 'special',
|
|
202
|
+
jsType: 'object',
|
|
203
|
+
description: 'A flexible way to specify a resource by ID, name, URL, or list',
|
|
204
|
+
structure: {
|
|
205
|
+
properties: {
|
|
206
|
+
mode: {
|
|
207
|
+
type: 'string',
|
|
208
|
+
description: 'How the resource is specified',
|
|
209
|
+
enum: ['id', 'url', 'list'],
|
|
210
|
+
required: true,
|
|
211
|
+
},
|
|
212
|
+
value: {
|
|
213
|
+
type: 'string',
|
|
214
|
+
description: 'The resource identifier',
|
|
215
|
+
required: true,
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
required: ['mode', 'value'],
|
|
219
|
+
},
|
|
220
|
+
example: {
|
|
221
|
+
mode: 'id',
|
|
222
|
+
value: 'abc123',
|
|
223
|
+
},
|
|
224
|
+
examples: [
|
|
225
|
+
{ mode: 'url', value: 'https://example.com/resource/123' },
|
|
226
|
+
{ mode: 'list', value: 'item-from-dropdown' },
|
|
227
|
+
{ mode: 'id', value: '{{ $json.resourceId }}' },
|
|
228
|
+
],
|
|
229
|
+
validation: {
|
|
230
|
+
allowEmpty: false,
|
|
231
|
+
allowExpressions: true,
|
|
232
|
+
},
|
|
233
|
+
notes: [
|
|
234
|
+
'Provides flexible resource selection',
|
|
235
|
+
'Mode determines how value is interpreted',
|
|
236
|
+
'UI adapts based on selected mode',
|
|
237
|
+
],
|
|
238
|
+
},
|
|
239
|
+
resourceMapper: {
|
|
240
|
+
type: 'special',
|
|
241
|
+
jsType: 'object',
|
|
242
|
+
description: 'Maps input data fields to resource fields with transformation options',
|
|
243
|
+
structure: {
|
|
244
|
+
properties: {
|
|
245
|
+
mappingMode: {
|
|
246
|
+
type: 'string',
|
|
247
|
+
description: 'How fields are mapped',
|
|
248
|
+
enum: ['defineBelow', 'autoMapInputData'],
|
|
249
|
+
},
|
|
250
|
+
value: {
|
|
251
|
+
type: 'object',
|
|
252
|
+
description: 'Field mappings',
|
|
253
|
+
properties: {
|
|
254
|
+
'<fieldName>': {
|
|
255
|
+
type: 'string',
|
|
256
|
+
description: 'Expression or value for this field',
|
|
257
|
+
},
|
|
258
|
+
},
|
|
259
|
+
flexible: true,
|
|
260
|
+
},
|
|
261
|
+
},
|
|
262
|
+
},
|
|
263
|
+
example: {
|
|
264
|
+
mappingMode: 'defineBelow',
|
|
265
|
+
value: {
|
|
266
|
+
name: '{{ $json.fullName }}',
|
|
267
|
+
email: '{{ $json.emailAddress }}',
|
|
268
|
+
status: 'active',
|
|
269
|
+
},
|
|
270
|
+
},
|
|
271
|
+
examples: [
|
|
272
|
+
{ mappingMode: 'autoMapInputData', value: {} },
|
|
273
|
+
{
|
|
274
|
+
mappingMode: 'defineBelow',
|
|
275
|
+
value: { id: '{{ $json.userId }}', name: '{{ $json.name }}' },
|
|
276
|
+
},
|
|
277
|
+
],
|
|
278
|
+
validation: {
|
|
279
|
+
allowEmpty: false,
|
|
280
|
+
allowExpressions: true,
|
|
281
|
+
},
|
|
282
|
+
notes: [
|
|
283
|
+
'Complex mapping with UI assistance',
|
|
284
|
+
'Can auto-map or manually define',
|
|
285
|
+
'Supports field transformations',
|
|
286
|
+
],
|
|
287
|
+
},
|
|
288
|
+
filter: {
|
|
289
|
+
type: 'special',
|
|
290
|
+
jsType: 'object',
|
|
291
|
+
description: 'Defines conditions for filtering data with boolean logic',
|
|
292
|
+
structure: {
|
|
293
|
+
properties: {
|
|
294
|
+
conditions: {
|
|
295
|
+
type: 'array',
|
|
296
|
+
description: 'Array of filter conditions',
|
|
297
|
+
items: {
|
|
298
|
+
type: 'object',
|
|
299
|
+
properties: {
|
|
300
|
+
id: {
|
|
301
|
+
type: 'string',
|
|
302
|
+
description: 'Unique condition identifier',
|
|
303
|
+
required: true,
|
|
304
|
+
},
|
|
305
|
+
leftValue: {
|
|
306
|
+
type: 'any',
|
|
307
|
+
description: 'Left side of comparison',
|
|
308
|
+
},
|
|
309
|
+
operator: {
|
|
310
|
+
type: 'object',
|
|
311
|
+
description: 'Comparison operator',
|
|
312
|
+
required: true,
|
|
313
|
+
properties: {
|
|
314
|
+
type: {
|
|
315
|
+
type: 'string',
|
|
316
|
+
enum: ['string', 'number', 'boolean', 'dateTime', 'array', 'object'],
|
|
317
|
+
required: true,
|
|
318
|
+
},
|
|
319
|
+
operation: {
|
|
320
|
+
type: 'string',
|
|
321
|
+
description: 'Operation to perform',
|
|
322
|
+
required: true,
|
|
323
|
+
},
|
|
324
|
+
},
|
|
325
|
+
},
|
|
326
|
+
rightValue: {
|
|
327
|
+
type: 'any',
|
|
328
|
+
description: 'Right side of comparison',
|
|
329
|
+
},
|
|
330
|
+
},
|
|
331
|
+
},
|
|
332
|
+
required: true,
|
|
333
|
+
},
|
|
334
|
+
combinator: {
|
|
335
|
+
type: 'string',
|
|
336
|
+
description: 'How to combine conditions',
|
|
337
|
+
enum: ['and', 'or'],
|
|
338
|
+
required: true,
|
|
339
|
+
},
|
|
340
|
+
},
|
|
341
|
+
required: ['conditions', 'combinator'],
|
|
342
|
+
},
|
|
343
|
+
example: {
|
|
344
|
+
conditions: [
|
|
345
|
+
{
|
|
346
|
+
id: 'abc-123',
|
|
347
|
+
leftValue: '{{ $json.status }}',
|
|
348
|
+
operator: { type: 'string', operation: 'equals' },
|
|
349
|
+
rightValue: 'active',
|
|
350
|
+
},
|
|
351
|
+
],
|
|
352
|
+
combinator: 'and',
|
|
353
|
+
},
|
|
354
|
+
validation: {
|
|
355
|
+
allowEmpty: false,
|
|
356
|
+
allowExpressions: true,
|
|
357
|
+
},
|
|
358
|
+
notes: [
|
|
359
|
+
'Advanced filtering UI in n8n',
|
|
360
|
+
'Supports complex boolean logic',
|
|
361
|
+
'Operations vary by data type',
|
|
362
|
+
],
|
|
363
|
+
},
|
|
364
|
+
assignmentCollection: {
|
|
365
|
+
type: 'special',
|
|
366
|
+
jsType: 'object',
|
|
367
|
+
description: 'Defines variable assignments with expressions',
|
|
368
|
+
structure: {
|
|
369
|
+
properties: {
|
|
370
|
+
assignments: {
|
|
371
|
+
type: 'array',
|
|
372
|
+
description: 'Array of variable assignments',
|
|
373
|
+
items: {
|
|
374
|
+
type: 'object',
|
|
375
|
+
properties: {
|
|
376
|
+
id: {
|
|
377
|
+
type: 'string',
|
|
378
|
+
description: 'Unique assignment identifier',
|
|
379
|
+
required: true,
|
|
380
|
+
},
|
|
381
|
+
name: {
|
|
382
|
+
type: 'string',
|
|
383
|
+
description: 'Variable name',
|
|
384
|
+
required: true,
|
|
385
|
+
},
|
|
386
|
+
value: {
|
|
387
|
+
type: 'any',
|
|
388
|
+
description: 'Value to assign',
|
|
389
|
+
required: true,
|
|
390
|
+
},
|
|
391
|
+
type: {
|
|
392
|
+
type: 'string',
|
|
393
|
+
description: 'Data type of the value',
|
|
394
|
+
enum: ['string', 'number', 'boolean', 'array', 'object'],
|
|
395
|
+
},
|
|
396
|
+
},
|
|
397
|
+
},
|
|
398
|
+
required: true,
|
|
399
|
+
},
|
|
400
|
+
},
|
|
401
|
+
required: ['assignments'],
|
|
402
|
+
},
|
|
403
|
+
example: {
|
|
404
|
+
assignments: [
|
|
405
|
+
{
|
|
406
|
+
id: 'abc-123',
|
|
407
|
+
name: 'userName',
|
|
408
|
+
value: '{{ $json.name }}',
|
|
409
|
+
type: 'string',
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
id: 'def-456',
|
|
413
|
+
name: 'userAge',
|
|
414
|
+
value: 30,
|
|
415
|
+
type: 'number',
|
|
416
|
+
},
|
|
417
|
+
],
|
|
418
|
+
},
|
|
419
|
+
validation: {
|
|
420
|
+
allowEmpty: false,
|
|
421
|
+
allowExpressions: true,
|
|
422
|
+
},
|
|
423
|
+
notes: [
|
|
424
|
+
'Used in Set node and similar',
|
|
425
|
+
'Each assignment can use expressions',
|
|
426
|
+
'Type helps with validation',
|
|
427
|
+
],
|
|
428
|
+
},
|
|
429
|
+
credentials: {
|
|
430
|
+
type: 'special',
|
|
431
|
+
jsType: 'string',
|
|
432
|
+
description: 'Reference to credential configuration',
|
|
433
|
+
example: 'googleSheetsOAuth2Api',
|
|
434
|
+
examples: ['httpBasicAuth', 'slackOAuth2Api', 'postgresApi'],
|
|
435
|
+
validation: {
|
|
436
|
+
allowEmpty: false,
|
|
437
|
+
allowExpressions: false,
|
|
438
|
+
},
|
|
439
|
+
notes: [
|
|
440
|
+
'References credential type name',
|
|
441
|
+
'Credential must be configured in n8n',
|
|
442
|
+
'Type name matches credential definition',
|
|
443
|
+
],
|
|
444
|
+
},
|
|
445
|
+
credentialsSelect: {
|
|
446
|
+
type: 'special',
|
|
447
|
+
jsType: 'string',
|
|
448
|
+
description: 'Dropdown to select from available credentials',
|
|
449
|
+
example: 'credential-id-123',
|
|
450
|
+
examples: ['cred-abc', 'cred-def', '{{ $credentials.id }}'],
|
|
451
|
+
validation: {
|
|
452
|
+
allowEmpty: false,
|
|
453
|
+
allowExpressions: true,
|
|
454
|
+
},
|
|
455
|
+
notes: [
|
|
456
|
+
'User selects from configured credentials',
|
|
457
|
+
'Returns credential ID',
|
|
458
|
+
'Used when multiple credential instances exist',
|
|
459
|
+
],
|
|
460
|
+
},
|
|
461
|
+
hidden: {
|
|
462
|
+
type: 'special',
|
|
463
|
+
jsType: 'string',
|
|
464
|
+
description: 'Hidden property not shown in UI (used for internal logic)',
|
|
465
|
+
example: '',
|
|
466
|
+
validation: {
|
|
467
|
+
allowEmpty: true,
|
|
468
|
+
allowExpressions: true,
|
|
469
|
+
},
|
|
470
|
+
notes: [
|
|
471
|
+
'Not rendered in UI',
|
|
472
|
+
'Can store metadata or computed values',
|
|
473
|
+
'Often used for version tracking',
|
|
474
|
+
],
|
|
475
|
+
},
|
|
476
|
+
button: {
|
|
477
|
+
type: 'special',
|
|
478
|
+
jsType: 'string',
|
|
479
|
+
description: 'Clickable button that triggers an action',
|
|
480
|
+
example: '',
|
|
481
|
+
validation: {
|
|
482
|
+
allowEmpty: true,
|
|
483
|
+
allowExpressions: false,
|
|
484
|
+
},
|
|
485
|
+
notes: [
|
|
486
|
+
'Triggers action when clicked',
|
|
487
|
+
'Does not store a value',
|
|
488
|
+
'Action defined in routing property',
|
|
489
|
+
],
|
|
490
|
+
},
|
|
491
|
+
callout: {
|
|
492
|
+
type: 'special',
|
|
493
|
+
jsType: 'string',
|
|
494
|
+
description: 'Informational message box (warning, info, success, error)',
|
|
495
|
+
example: '',
|
|
496
|
+
validation: {
|
|
497
|
+
allowEmpty: true,
|
|
498
|
+
allowExpressions: false,
|
|
499
|
+
},
|
|
500
|
+
notes: [
|
|
501
|
+
'Display-only, no value stored',
|
|
502
|
+
'Used for warnings and hints',
|
|
503
|
+
'Style controlled by typeOptions',
|
|
504
|
+
],
|
|
505
|
+
},
|
|
506
|
+
notice: {
|
|
507
|
+
type: 'special',
|
|
508
|
+
jsType: 'string',
|
|
509
|
+
description: 'Notice message displayed to user',
|
|
510
|
+
example: '',
|
|
511
|
+
validation: {
|
|
512
|
+
allowEmpty: true,
|
|
513
|
+
allowExpressions: false,
|
|
514
|
+
},
|
|
515
|
+
notes: ['Similar to callout', 'Display-only element', 'Provides contextual information'],
|
|
516
|
+
},
|
|
517
|
+
workflowSelector: {
|
|
518
|
+
type: 'special',
|
|
519
|
+
jsType: 'string',
|
|
520
|
+
description: 'Dropdown to select another workflow',
|
|
521
|
+
example: 'workflow-123',
|
|
522
|
+
examples: ['wf-abc', '{{ $json.workflowId }}'],
|
|
523
|
+
validation: {
|
|
524
|
+
allowEmpty: false,
|
|
525
|
+
allowExpressions: true,
|
|
526
|
+
},
|
|
527
|
+
notes: [
|
|
528
|
+
'Selects from available workflows',
|
|
529
|
+
'Returns workflow ID',
|
|
530
|
+
'Used in Execute Workflow node',
|
|
531
|
+
],
|
|
532
|
+
},
|
|
533
|
+
curlImport: {
|
|
534
|
+
type: 'special',
|
|
535
|
+
jsType: 'string',
|
|
536
|
+
description: 'Import configuration from cURL command',
|
|
537
|
+
example: 'curl -X GET https://api.example.com/data',
|
|
538
|
+
validation: {
|
|
539
|
+
allowEmpty: true,
|
|
540
|
+
allowExpressions: false,
|
|
541
|
+
},
|
|
542
|
+
notes: [
|
|
543
|
+
'Parses cURL command to populate fields',
|
|
544
|
+
'Used in HTTP Request node',
|
|
545
|
+
'One-time import feature',
|
|
546
|
+
],
|
|
547
|
+
},
|
|
548
|
+
};
|
|
549
|
+
exports.COMPLEX_TYPE_EXAMPLES = {
|
|
550
|
+
collection: {
|
|
551
|
+
basic: {
|
|
552
|
+
name: 'John Doe',
|
|
553
|
+
email: 'john@example.com',
|
|
554
|
+
},
|
|
555
|
+
nested: {
|
|
556
|
+
user: {
|
|
557
|
+
firstName: 'Jane',
|
|
558
|
+
lastName: 'Smith',
|
|
559
|
+
},
|
|
560
|
+
preferences: {
|
|
561
|
+
theme: 'dark',
|
|
562
|
+
notifications: true,
|
|
563
|
+
},
|
|
564
|
+
},
|
|
565
|
+
withExpressions: {
|
|
566
|
+
id: '{{ $json.userId }}',
|
|
567
|
+
timestamp: '{{ $now }}',
|
|
568
|
+
data: '{{ $json.payload }}',
|
|
569
|
+
},
|
|
570
|
+
},
|
|
571
|
+
fixedCollection: {
|
|
572
|
+
httpHeaders: {
|
|
573
|
+
headers: [
|
|
574
|
+
{ name: 'Content-Type', value: 'application/json' },
|
|
575
|
+
{ name: 'Authorization', value: 'Bearer {{ $credentials.token }}' },
|
|
576
|
+
],
|
|
577
|
+
},
|
|
578
|
+
queryParameters: {
|
|
579
|
+
queryParameters: [
|
|
580
|
+
{ name: 'page', value: '1' },
|
|
581
|
+
{ name: 'limit', value: '100' },
|
|
582
|
+
],
|
|
583
|
+
},
|
|
584
|
+
multipleCollections: {
|
|
585
|
+
headers: [{ name: 'Accept', value: 'application/json' }],
|
|
586
|
+
queryParameters: [{ name: 'filter', value: 'active' }],
|
|
587
|
+
},
|
|
588
|
+
},
|
|
589
|
+
filter: {
|
|
590
|
+
simple: {
|
|
591
|
+
conditions: [
|
|
592
|
+
{
|
|
593
|
+
id: '1',
|
|
594
|
+
leftValue: '{{ $json.status }}',
|
|
595
|
+
operator: { type: 'string', operation: 'equals' },
|
|
596
|
+
rightValue: 'active',
|
|
597
|
+
},
|
|
598
|
+
],
|
|
599
|
+
combinator: 'and',
|
|
600
|
+
},
|
|
601
|
+
complex: {
|
|
602
|
+
conditions: [
|
|
603
|
+
{
|
|
604
|
+
id: '1',
|
|
605
|
+
leftValue: '{{ $json.age }}',
|
|
606
|
+
operator: { type: 'number', operation: 'gt' },
|
|
607
|
+
rightValue: 18,
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
id: '2',
|
|
611
|
+
leftValue: '{{ $json.country }}',
|
|
612
|
+
operator: { type: 'string', operation: 'equals' },
|
|
613
|
+
rightValue: 'US',
|
|
614
|
+
},
|
|
615
|
+
],
|
|
616
|
+
combinator: 'and',
|
|
617
|
+
},
|
|
618
|
+
},
|
|
619
|
+
resourceMapper: {
|
|
620
|
+
autoMap: {
|
|
621
|
+
mappingMode: 'autoMapInputData',
|
|
622
|
+
value: {},
|
|
623
|
+
},
|
|
624
|
+
manual: {
|
|
625
|
+
mappingMode: 'defineBelow',
|
|
626
|
+
value: {
|
|
627
|
+
firstName: '{{ $json.first_name }}',
|
|
628
|
+
lastName: '{{ $json.last_name }}',
|
|
629
|
+
email: '{{ $json.email_address }}',
|
|
630
|
+
status: 'active',
|
|
631
|
+
},
|
|
632
|
+
},
|
|
633
|
+
},
|
|
634
|
+
assignmentCollection: {
|
|
635
|
+
basic: {
|
|
636
|
+
assignments: [
|
|
637
|
+
{
|
|
638
|
+
id: '1',
|
|
639
|
+
name: 'fullName',
|
|
640
|
+
value: '{{ $json.firstName }} {{ $json.lastName }}',
|
|
641
|
+
type: 'string',
|
|
642
|
+
},
|
|
643
|
+
],
|
|
644
|
+
},
|
|
645
|
+
multiple: {
|
|
646
|
+
assignments: [
|
|
647
|
+
{ id: '1', name: 'userName', value: '{{ $json.name }}', type: 'string' },
|
|
648
|
+
{ id: '2', name: 'userAge', value: '{{ $json.age }}', type: 'number' },
|
|
649
|
+
{ id: '3', name: 'isActive', value: true, type: 'boolean' },
|
|
650
|
+
],
|
|
651
|
+
},
|
|
652
|
+
},
|
|
653
|
+
};
|
|
654
|
+
//# sourceMappingURL=type-structures.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"type-structures.js","sourceRoot":"","sources":["../../src/constants/type-structures.ts"],"names":[],"mappings":"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"}
|