n8n-nodes-ido-toolbox 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +19 -0
- package/README.md +245 -0
- package/dist/nodes/IdoToolbox/IdoToolbox.node.d.ts +5 -0
- package/dist/nodes/IdoToolbox/IdoToolbox.node.js +369 -0
- package/dist/nodes/IdoToolbox/IdoToolbox.node.js.map +1 -0
- package/dist/nodes/IdoToolbox/IdoToolbox.node.json +12 -0
- package/dist/nodes/IdoToolbox/ToolboxFields.d.ts +2 -0
- package/dist/nodes/IdoToolbox/ToolboxFields.js +383 -0
- package/dist/nodes/IdoToolbox/ToolboxFields.js.map +1 -0
- package/dist/nodes/IdoToolbox/ToolboxOperations.d.ts +2 -0
- package/dist/nodes/IdoToolbox/ToolboxOperations.js +68 -0
- package/dist/nodes/IdoToolbox/ToolboxOperations.js.map +1 -0
- package/dist/nodes/IdoToolbox/idoToolbox.svg +27 -0
- package/dist/package.json +54 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/index.js +5 -0
- package/package.json +54 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"node": "n8n-nodes-base.function",
|
|
3
|
+
"nodeVersion": "1.0",
|
|
4
|
+
"codexVersion": "1.0",
|
|
5
|
+
"categories": ["Miscellaneous"],
|
|
6
|
+
"resources": {
|
|
7
|
+
"credentialDocumentation": [],
|
|
8
|
+
"documentation": "https://github.com/ido-tools/n8n-nodes-ido-toolbox",
|
|
9
|
+
"request": [],
|
|
10
|
+
"primaryDocumentation": []
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.toolboxFields = void 0;
|
|
4
|
+
const generateRandomStringFields = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Length',
|
|
7
|
+
name: 'length',
|
|
8
|
+
type: 'number',
|
|
9
|
+
default: 8,
|
|
10
|
+
description: 'אורך המחרוזת האקראית',
|
|
11
|
+
displayOptions: {
|
|
12
|
+
show: {
|
|
13
|
+
resource: ['tools'],
|
|
14
|
+
operation: ['generateRandomString'],
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
required: true,
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
displayName: 'Include Numbers',
|
|
21
|
+
name: 'includeNumbers',
|
|
22
|
+
type: 'boolean',
|
|
23
|
+
default: true,
|
|
24
|
+
description: 'Whether to include numbers in the string',
|
|
25
|
+
displayOptions: {
|
|
26
|
+
show: {
|
|
27
|
+
resource: ['tools'],
|
|
28
|
+
operation: ['generateRandomString'],
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
displayName: 'Include Uppercase',
|
|
34
|
+
name: 'includeUppercase',
|
|
35
|
+
type: 'boolean',
|
|
36
|
+
default: true,
|
|
37
|
+
description: 'Whether to include uppercase letters in the string',
|
|
38
|
+
displayOptions: {
|
|
39
|
+
show: {
|
|
40
|
+
resource: ['tools'],
|
|
41
|
+
operation: ['generateRandomString'],
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
displayName: 'Include Lowercase',
|
|
47
|
+
name: 'includeLowercase',
|
|
48
|
+
type: 'boolean',
|
|
49
|
+
default: true,
|
|
50
|
+
description: 'Whether to include lowercase letters in the string',
|
|
51
|
+
displayOptions: {
|
|
52
|
+
show: {
|
|
53
|
+
resource: ['tools'],
|
|
54
|
+
operation: ['generateRandomString'],
|
|
55
|
+
},
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
];
|
|
59
|
+
const generateRandomNumberFields = [
|
|
60
|
+
{
|
|
61
|
+
displayName: 'Minimum Value',
|
|
62
|
+
name: 'min',
|
|
63
|
+
type: 'number',
|
|
64
|
+
default: 0,
|
|
65
|
+
description: 'ערך מינימלי',
|
|
66
|
+
displayOptions: {
|
|
67
|
+
show: {
|
|
68
|
+
resource: ['tools'],
|
|
69
|
+
operation: ['generateRandomNumber'],
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
required: true,
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
displayName: 'Maximum Value',
|
|
76
|
+
name: 'max',
|
|
77
|
+
type: 'number',
|
|
78
|
+
default: 100,
|
|
79
|
+
description: 'ערך מקסימלי',
|
|
80
|
+
displayOptions: {
|
|
81
|
+
show: {
|
|
82
|
+
resource: ['tools'],
|
|
83
|
+
operation: ['generateRandomNumber'],
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
required: true,
|
|
87
|
+
},
|
|
88
|
+
];
|
|
89
|
+
const passwordGeneratorFields = [
|
|
90
|
+
{
|
|
91
|
+
displayName: 'Length',
|
|
92
|
+
name: 'length',
|
|
93
|
+
type: 'number',
|
|
94
|
+
default: 12,
|
|
95
|
+
description: 'אורך הסיסמה',
|
|
96
|
+
displayOptions: {
|
|
97
|
+
show: {
|
|
98
|
+
resource: ['tools'],
|
|
99
|
+
operation: ['passwordGenerator'],
|
|
100
|
+
},
|
|
101
|
+
},
|
|
102
|
+
required: true,
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
displayName: 'Include Numbers',
|
|
106
|
+
name: 'includeNumbers',
|
|
107
|
+
type: 'boolean',
|
|
108
|
+
default: true,
|
|
109
|
+
description: 'Whether to include numbers in the password',
|
|
110
|
+
displayOptions: {
|
|
111
|
+
show: {
|
|
112
|
+
resource: ['tools'],
|
|
113
|
+
operation: ['passwordGenerator'],
|
|
114
|
+
},
|
|
115
|
+
},
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
displayName: 'Include Symbols',
|
|
119
|
+
name: 'includeSymbols',
|
|
120
|
+
type: 'boolean',
|
|
121
|
+
default: true,
|
|
122
|
+
description: 'Whether to include symbols in the password',
|
|
123
|
+
displayOptions: {
|
|
124
|
+
show: {
|
|
125
|
+
resource: ['tools'],
|
|
126
|
+
operation: ['passwordGenerator'],
|
|
127
|
+
},
|
|
128
|
+
},
|
|
129
|
+
},
|
|
130
|
+
];
|
|
131
|
+
const randomReplyFields = [
|
|
132
|
+
{
|
|
133
|
+
displayName: 'Replies',
|
|
134
|
+
name: 'replies',
|
|
135
|
+
type: 'string',
|
|
136
|
+
default: 'כן,לא,אולי,שאל שוב מאוחר יותר',
|
|
137
|
+
description: 'רשימת תגובות מופרדות בפסיקים',
|
|
138
|
+
displayOptions: {
|
|
139
|
+
show: {
|
|
140
|
+
resource: ['tools'],
|
|
141
|
+
operation: ['randomReply'],
|
|
142
|
+
},
|
|
143
|
+
},
|
|
144
|
+
required: true,
|
|
145
|
+
},
|
|
146
|
+
];
|
|
147
|
+
const fixEmailDomainFields = [
|
|
148
|
+
{
|
|
149
|
+
displayName: 'Email Address',
|
|
150
|
+
name: 'email',
|
|
151
|
+
type: 'string',
|
|
152
|
+
default: '',
|
|
153
|
+
placeholder: 'user@gmial.com',
|
|
154
|
+
description: 'כתובת האימייל לתיקון',
|
|
155
|
+
displayOptions: {
|
|
156
|
+
show: {
|
|
157
|
+
resource: ['tools'],
|
|
158
|
+
operation: ['fixEmailDomain'],
|
|
159
|
+
},
|
|
160
|
+
},
|
|
161
|
+
required: true,
|
|
162
|
+
},
|
|
163
|
+
];
|
|
164
|
+
const multipleSearchReplaceFields = [
|
|
165
|
+
{
|
|
166
|
+
displayName: 'Input Text',
|
|
167
|
+
name: 'inputText',
|
|
168
|
+
type: 'string',
|
|
169
|
+
default: '',
|
|
170
|
+
description: 'הטקסט שעליו לבצע חיפוש והחלפה',
|
|
171
|
+
displayOptions: {
|
|
172
|
+
show: {
|
|
173
|
+
resource: ['tools'],
|
|
174
|
+
operation: ['multipleSearchReplace'],
|
|
175
|
+
},
|
|
176
|
+
},
|
|
177
|
+
required: true,
|
|
178
|
+
typeOptions: {
|
|
179
|
+
rows: 4,
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
displayName: 'Replacements',
|
|
184
|
+
name: 'replacements',
|
|
185
|
+
type: 'fixedCollection',
|
|
186
|
+
default: {},
|
|
187
|
+
description: 'רשימת החלפות לביצוע',
|
|
188
|
+
displayOptions: {
|
|
189
|
+
show: {
|
|
190
|
+
resource: ['tools'],
|
|
191
|
+
operation: ['multipleSearchReplace'],
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
required: true,
|
|
195
|
+
typeOptions: {
|
|
196
|
+
multipleValues: true,
|
|
197
|
+
},
|
|
198
|
+
options: [
|
|
199
|
+
{
|
|
200
|
+
name: 'replacement',
|
|
201
|
+
displayName: 'Replacement',
|
|
202
|
+
values: [
|
|
203
|
+
{
|
|
204
|
+
displayName: 'Search For',
|
|
205
|
+
name: 'search',
|
|
206
|
+
type: 'string',
|
|
207
|
+
default: '',
|
|
208
|
+
description: 'הטקסט לחיפוש',
|
|
209
|
+
required: true,
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
displayName: 'Replace With',
|
|
213
|
+
name: 'replace',
|
|
214
|
+
type: 'string',
|
|
215
|
+
default: '',
|
|
216
|
+
description: 'הטקסט להחלפה',
|
|
217
|
+
required: true,
|
|
218
|
+
},
|
|
219
|
+
],
|
|
220
|
+
},
|
|
221
|
+
],
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
displayName: 'Case Sensitive',
|
|
225
|
+
name: 'caseSensitive',
|
|
226
|
+
type: 'boolean',
|
|
227
|
+
default: false,
|
|
228
|
+
description: 'Whether the search should be case sensitive',
|
|
229
|
+
displayOptions: {
|
|
230
|
+
show: {
|
|
231
|
+
resource: ['tools'],
|
|
232
|
+
operation: ['multipleSearchReplace'],
|
|
233
|
+
},
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
];
|
|
237
|
+
const createHtmlFromTableFields = [
|
|
238
|
+
{
|
|
239
|
+
displayName: 'Input Data',
|
|
240
|
+
name: 'inputData',
|
|
241
|
+
type: 'string',
|
|
242
|
+
default: '',
|
|
243
|
+
description: 'נתוני הקלט (JSON או טקסט מופרד בפסיקים)',
|
|
244
|
+
displayOptions: {
|
|
245
|
+
show: {
|
|
246
|
+
resource: ['tools'],
|
|
247
|
+
operation: ['createHtmlFromTable'],
|
|
248
|
+
},
|
|
249
|
+
},
|
|
250
|
+
required: true,
|
|
251
|
+
typeOptions: {
|
|
252
|
+
rows: 6,
|
|
253
|
+
},
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
displayName: 'Data Format',
|
|
257
|
+
name: 'dataFormat',
|
|
258
|
+
type: 'options',
|
|
259
|
+
default: 'json',
|
|
260
|
+
description: 'פורמט הנתונים',
|
|
261
|
+
displayOptions: {
|
|
262
|
+
show: {
|
|
263
|
+
resource: ['tools'],
|
|
264
|
+
operation: ['createHtmlFromTable'],
|
|
265
|
+
},
|
|
266
|
+
},
|
|
267
|
+
options: [
|
|
268
|
+
{
|
|
269
|
+
name: 'JSON',
|
|
270
|
+
value: 'json',
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
name: 'CSV',
|
|
274
|
+
value: 'csv',
|
|
275
|
+
},
|
|
276
|
+
],
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
displayName: 'Include Headers',
|
|
280
|
+
name: 'includeHeaders',
|
|
281
|
+
type: 'boolean',
|
|
282
|
+
default: true,
|
|
283
|
+
description: 'Whether to include headers in the table',
|
|
284
|
+
displayOptions: {
|
|
285
|
+
show: {
|
|
286
|
+
resource: ['tools'],
|
|
287
|
+
operation: ['createHtmlFromTable'],
|
|
288
|
+
},
|
|
289
|
+
},
|
|
290
|
+
},
|
|
291
|
+
];
|
|
292
|
+
const createHtmlFromTableAdvancedFields = [
|
|
293
|
+
{
|
|
294
|
+
displayName: 'Input Data',
|
|
295
|
+
name: 'inputData',
|
|
296
|
+
type: 'string',
|
|
297
|
+
default: '',
|
|
298
|
+
description: 'נתוני הקלט (JSON או טקסט מופרד בפסיקים)',
|
|
299
|
+
displayOptions: {
|
|
300
|
+
show: {
|
|
301
|
+
resource: ['tools'],
|
|
302
|
+
operation: ['createHtmlFromTableAdvanced'],
|
|
303
|
+
},
|
|
304
|
+
},
|
|
305
|
+
required: true,
|
|
306
|
+
typeOptions: {
|
|
307
|
+
rows: 6,
|
|
308
|
+
},
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
displayName: 'Data Format',
|
|
312
|
+
name: 'dataFormat',
|
|
313
|
+
type: 'options',
|
|
314
|
+
default: 'json',
|
|
315
|
+
description: 'פורמט הנתונים',
|
|
316
|
+
displayOptions: {
|
|
317
|
+
show: {
|
|
318
|
+
resource: ['tools'],
|
|
319
|
+
operation: ['createHtmlFromTableAdvanced'],
|
|
320
|
+
},
|
|
321
|
+
},
|
|
322
|
+
options: [
|
|
323
|
+
{
|
|
324
|
+
name: 'JSON',
|
|
325
|
+
value: 'json',
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
name: 'CSV',
|
|
329
|
+
value: 'csv',
|
|
330
|
+
},
|
|
331
|
+
],
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
displayName: 'Table Class',
|
|
335
|
+
name: 'tableClass',
|
|
336
|
+
type: 'string',
|
|
337
|
+
default: 'table table-striped',
|
|
338
|
+
description: 'מחלקת CSS לטבלה',
|
|
339
|
+
displayOptions: {
|
|
340
|
+
show: {
|
|
341
|
+
resource: ['tools'],
|
|
342
|
+
operation: ['createHtmlFromTableAdvanced'],
|
|
343
|
+
},
|
|
344
|
+
},
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
displayName: 'Include Headers',
|
|
348
|
+
name: 'includeHeaders',
|
|
349
|
+
type: 'boolean',
|
|
350
|
+
default: true,
|
|
351
|
+
description: 'Whether to include headers in the table',
|
|
352
|
+
displayOptions: {
|
|
353
|
+
show: {
|
|
354
|
+
resource: ['tools'],
|
|
355
|
+
operation: ['createHtmlFromTableAdvanced'],
|
|
356
|
+
},
|
|
357
|
+
},
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
displayName: 'Table Title',
|
|
361
|
+
name: 'tableTitle',
|
|
362
|
+
type: 'string',
|
|
363
|
+
default: '',
|
|
364
|
+
description: 'כותרת לטבלה (אופציונלי)',
|
|
365
|
+
displayOptions: {
|
|
366
|
+
show: {
|
|
367
|
+
resource: ['tools'],
|
|
368
|
+
operation: ['createHtmlFromTableAdvanced'],
|
|
369
|
+
},
|
|
370
|
+
},
|
|
371
|
+
},
|
|
372
|
+
];
|
|
373
|
+
exports.toolboxFields = [
|
|
374
|
+
...generateRandomStringFields,
|
|
375
|
+
...generateRandomNumberFields,
|
|
376
|
+
...passwordGeneratorFields,
|
|
377
|
+
...randomReplyFields,
|
|
378
|
+
...fixEmailDomainFields,
|
|
379
|
+
...multipleSearchReplaceFields,
|
|
380
|
+
...createHtmlFromTableFields,
|
|
381
|
+
...createHtmlFromTableAdvancedFields,
|
|
382
|
+
];
|
|
383
|
+
//# sourceMappingURL=ToolboxFields.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ToolboxFields.js","sourceRoot":"","sources":["../../../nodes/IdoToolbox/ToolboxFields.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.toolboxOperations = void 0;
|
|
4
|
+
exports.toolboxOperations = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ['tools'],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Create HTML From Table - Advanced (יצירת HTML מטבלה - מתקדם)',
|
|
18
|
+
value: 'createHtmlFromTableAdvanced',
|
|
19
|
+
description: 'יוצר טבלת HTML הניתנת להתאמה אישית',
|
|
20
|
+
action: 'Create advanced HTML table',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
name: 'Create HTML From Table (יצירת HTML מטבלה)',
|
|
24
|
+
value: 'createHtmlFromTable',
|
|
25
|
+
description: 'יוצר טבלת HTML מצרורות או טקסט',
|
|
26
|
+
action: 'Create HTML table',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'Fix Email Address Domain (תיקון דומיין כתובת אימייל)',
|
|
30
|
+
value: 'fixEmailDomain',
|
|
31
|
+
description: 'מתקן אימיילים עם שגיאות הקלדה בשם הדומיין',
|
|
32
|
+
action: 'Fix email domain',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'Generate Random Number (יצירת מספר אקראי)',
|
|
36
|
+
value: 'generateRandomNumber',
|
|
37
|
+
description: 'יוצר מספר אקראי עם ערך מינימלי ומקסימלי',
|
|
38
|
+
action: 'Generate random number',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Generate Random String (יצירת מחרוזת אקראית)',
|
|
42
|
+
value: 'generateRandomString',
|
|
43
|
+
description: 'יוצר מחרוזת אקראית באורך נבחר',
|
|
44
|
+
action: 'Generate random string',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Multiple Search and Replace (חיפוש והחלפה מרובים)',
|
|
48
|
+
value: 'multipleSearchReplace',
|
|
49
|
+
description: 'חיפוש והחלפה מרובים של מחרוזות',
|
|
50
|
+
action: 'Multiple search and replace',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'Password Generator (מחולל סיסמאות)',
|
|
54
|
+
value: 'passwordGenerator',
|
|
55
|
+
description: 'מחולל סיסמאות אקראיות',
|
|
56
|
+
action: 'Generate password',
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
name: 'Return a Random Reply (החזרת תגובה אקראית)',
|
|
60
|
+
value: 'randomReply',
|
|
61
|
+
description: 'מחזיר תגובה אקראית',
|
|
62
|
+
action: 'Return random reply',
|
|
63
|
+
},
|
|
64
|
+
],
|
|
65
|
+
default: 'generateRandomString',
|
|
66
|
+
},
|
|
67
|
+
];
|
|
68
|
+
//# sourceMappingURL=ToolboxOperations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ToolboxOperations.js","sourceRoot":"","sources":["../../../nodes/IdoToolbox/ToolboxOperations.ts"],"names":[],"mappings":";;;AAEa,QAAA,iBAAiB,GAAsB;IACnD;QACC,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,SAAS;QACf,gBAAgB,EAAE,IAAI;QACtB,cAAc,EAAE;YACf,IAAI,EAAE;gBACL,QAAQ,EAAE,CAAC,OAAO,CAAC;aACnB;SACD;QACD,OAAO,EAAE;YACR;gBACC,IAAI,EAAE,8DAA8D;gBACpE,KAAK,EAAE,6BAA6B;gBACpC,WAAW,EAAE,oCAAoC;gBACjD,MAAM,EAAE,4BAA4B;aACpC;YACD;gBACC,IAAI,EAAE,2CAA2C;gBACjD,KAAK,EAAE,qBAAqB;gBAC5B,WAAW,EAAE,gCAAgC;gBAC7C,MAAM,EAAE,mBAAmB;aAC3B;YACD;gBACC,IAAI,EAAE,sDAAsD;gBAC5D,KAAK,EAAE,gBAAgB;gBACvB,WAAW,EAAE,2CAA2C;gBACxD,MAAM,EAAE,kBAAkB;aAC1B;YACD;gBACC,IAAI,EAAE,2CAA2C;gBACjD,KAAK,EAAE,sBAAsB;gBAC7B,WAAW,EAAE,yCAAyC;gBACtD,MAAM,EAAE,wBAAwB;aAChC;YACD;gBACC,IAAI,EAAE,8CAA8C;gBACpD,KAAK,EAAE,sBAAsB;gBAC7B,WAAW,EAAE,+BAA+B;gBAC5C,MAAM,EAAE,wBAAwB;aAChC;YACD;gBACC,IAAI,EAAE,mDAAmD;gBACzD,KAAK,EAAE,uBAAuB;gBAC9B,WAAW,EAAE,gCAAgC;gBAC7C,MAAM,EAAE,6BAA6B;aACrC;YACD;gBACC,IAAI,EAAE,oCAAoC;gBAC1C,KAAK,EAAE,mBAAmB;gBAC1B,WAAW,EAAE,uBAAuB;gBACpC,MAAM,EAAE,mBAAmB;aAC3B;YACD;gBACC,IAAI,EAAE,4CAA4C;gBAClD,KAAK,EAAE,aAAa;gBACpB,WAAW,EAAE,oBAAoB;gBACjC,MAAM,EAAE,qBAAqB;aAC7B;SACD;QACD,OAAO,EAAE,sBAAsB;KAC/B;CACD,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
4
|
+
<stop offset="0%" style="stop-color:#667eea;stop-opacity:1" />
|
|
5
|
+
<stop offset="100%" style="stop-color:#764ba2;stop-opacity:1" />
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
|
|
9
|
+
<!-- Toolbox background -->
|
|
10
|
+
<rect x="2" y="6" width="20" height="16" rx="2" ry="2" fill="url(#grad1)" stroke="#4a5568" stroke-width="0.5"/>
|
|
11
|
+
|
|
12
|
+
<!-- Toolbox handle -->
|
|
13
|
+
<rect x="8" y="3" width="8" height="4" rx="1" ry="1" fill="#2d3748" stroke="#4a5568" stroke-width="0.5"/>
|
|
14
|
+
|
|
15
|
+
<!-- Tools inside -->
|
|
16
|
+
<!-- Hammer -->
|
|
17
|
+
<rect x="4" y="8" width="6" height="2" fill="#e53e3e"/>
|
|
18
|
+
<rect x="9" y="7" width="1" height="4" fill="#2d3748"/>
|
|
19
|
+
|
|
20
|
+
<!-- Screwdriver -->
|
|
21
|
+
<rect x="4" y="12" width="8" height="1" fill="#3182ce"/>
|
|
22
|
+
<rect x="11" y="11" width="1" height="3" fill="#2d3748"/>
|
|
23
|
+
|
|
24
|
+
<!-- Wrench -->
|
|
25
|
+
<path d="M 4 16 Q 6 14 8 16 Q 10 18 8 20 Q 6 22 4 20 Q 2 18 4 16 Z" fill="#38a169"/>
|
|
26
|
+
<circle cx="6" cy="18" r="1" fill="#2d3748"/>
|
|
27
|
+
</svg>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "n8n-nodes-ido-toolbox",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "אוסף כלים שימושיים לניהול נתונים, טקסט, תאריכים ופעולות יומיומיות",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"utilities",
|
|
8
|
+
"tools",
|
|
9
|
+
"hebrew",
|
|
10
|
+
"data-processing"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"homepage": "https://github.com/ovadiab9/n8n-nodes-ido-toolbox",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Ovadiah Ben-David",
|
|
16
|
+
"email": "ovadia.ben.david@gmail.com"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/ovadiab9/n8n-nodes-ido-toolbox.git"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=20.15"
|
|
24
|
+
},
|
|
25
|
+
"main": "index.js",
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "npx rimraf dist && tsc && gulp build:icons",
|
|
28
|
+
"dev": "tsc --watch",
|
|
29
|
+
"format": "prettier nodes --write",
|
|
30
|
+
"lint": "eslint nodes package.json",
|
|
31
|
+
"lintfix": "eslint nodes package.json --fix",
|
|
32
|
+
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes package.json"
|
|
33
|
+
},
|
|
34
|
+
"files": [
|
|
35
|
+
"dist"
|
|
36
|
+
],
|
|
37
|
+
"n8n": {
|
|
38
|
+
"n8nNodesApiVersion": 1,
|
|
39
|
+
"nodes": [
|
|
40
|
+
"dist/nodes/IdoToolbox/IdoToolbox.node.js"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@typescript-eslint/parser": "~8.32.0",
|
|
45
|
+
"eslint": "^8.57.0",
|
|
46
|
+
"eslint-plugin-n8n-nodes-base": "^1.16.3",
|
|
47
|
+
"gulp": "^5.0.0",
|
|
48
|
+
"prettier": "^3.5.3",
|
|
49
|
+
"typescript": "^5.8.2"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"n8n-workflow": "*"
|
|
53
|
+
}
|
|
54
|
+
}
|