n8n-nodes-cention 1.0.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 +21 -0
- package/README.md +165 -0
- package/dist/credentials/CentionApi.credentials.d.ts +11 -0
- package/dist/credentials/CentionApi.credentials.d.ts.map +1 -0
- package/dist/credentials/CentionApi.credentials.js +63 -0
- package/dist/credentials/CentionApi.credentials.js.map +1 -0
- package/dist/nodes/Cention/AgentPresenceDescription.d.ts +4 -0
- package/dist/nodes/Cention/AgentPresenceDescription.d.ts.map +1 -0
- package/dist/nodes/Cention/AgentPresenceDescription.js +90 -0
- package/dist/nodes/Cention/AgentPresenceDescription.js.map +1 -0
- package/dist/nodes/Cention/Cention.node.d.ts +7 -0
- package/dist/nodes/Cention/Cention.node.d.ts.map +1 -0
- package/dist/nodes/Cention/Cention.node.js +676 -0
- package/dist/nodes/Cention/Cention.node.js.map +1 -0
- package/dist/nodes/Cention/CentionTrigger.node.d.ts +7 -0
- package/dist/nodes/Cention/CentionTrigger.node.d.ts.map +1 -0
- package/dist/nodes/Cention/CentionTrigger.node.js +165 -0
- package/dist/nodes/Cention/CentionTrigger.node.js.map +1 -0
- package/dist/nodes/Cention/ChannelDescription.d.ts +4 -0
- package/dist/nodes/Cention/ChannelDescription.d.ts.map +1 -0
- package/dist/nodes/Cention/ChannelDescription.js +144 -0
- package/dist/nodes/Cention/ChannelDescription.js.map +1 -0
- package/dist/nodes/Cention/ChatMessageDescription.d.ts +4 -0
- package/dist/nodes/Cention/ChatMessageDescription.d.ts.map +1 -0
- package/dist/nodes/Cention/ChatMessageDescription.js +86 -0
- package/dist/nodes/Cention/ChatMessageDescription.js.map +1 -0
- package/dist/nodes/Cention/ContactCardDescription.d.ts +4 -0
- package/dist/nodes/Cention/ContactCardDescription.d.ts.map +1 -0
- package/dist/nodes/Cention/ContactCardDescription.js +446 -0
- package/dist/nodes/Cention/ContactCardDescription.js.map +1 -0
- package/dist/nodes/Cention/ErrandDescription.d.ts +4 -0
- package/dist/nodes/Cention/ErrandDescription.d.ts.map +1 -0
- package/dist/nodes/Cention/ErrandDescription.js +409 -0
- package/dist/nodes/Cention/ErrandDescription.js.map +1 -0
- package/dist/nodes/Cention/GenericFunctions.d.ts +5 -0
- package/dist/nodes/Cention/GenericFunctions.d.ts.map +1 -0
- package/dist/nodes/Cention/GenericFunctions.js +60 -0
- package/dist/nodes/Cention/GenericFunctions.js.map +1 -0
- package/dist/nodes/Cention/LibraryQuestionDescription.d.ts +4 -0
- package/dist/nodes/Cention/LibraryQuestionDescription.d.ts.map +1 -0
- package/dist/nodes/Cention/LibraryQuestionDescription.js +216 -0
- package/dist/nodes/Cention/LibraryQuestionDescription.js.map +1 -0
- package/dist/nodes/Cention/StatisticsDescription.d.ts +4 -0
- package/dist/nodes/Cention/StatisticsDescription.d.ts.map +1 -0
- package/dist/nodes/Cention/StatisticsDescription.js +169 -0
- package/dist/nodes/Cention/StatisticsDescription.js.map +1 -0
- package/dist/nodes/Cention/cention.svg +7 -0
- package/dist/nodes/Cention/logo.png +0 -0
- package/package.json +60 -0
|
@@ -0,0 +1,446 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.contactCardFields = exports.contactCardOperations = void 0;
|
|
4
|
+
exports.contactCardOperations = [
|
|
5
|
+
{
|
|
6
|
+
displayName: 'Operation',
|
|
7
|
+
name: 'operation',
|
|
8
|
+
type: 'options',
|
|
9
|
+
noDataExpression: true,
|
|
10
|
+
displayOptions: {
|
|
11
|
+
show: {
|
|
12
|
+
resource: ['contactCard'],
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
options: [
|
|
16
|
+
{
|
|
17
|
+
name: 'Create',
|
|
18
|
+
value: 'create',
|
|
19
|
+
description: 'Create a new contact card',
|
|
20
|
+
action: 'Create a contact card',
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
name: 'Delete',
|
|
24
|
+
value: 'delete',
|
|
25
|
+
description: 'Delete a contact card',
|
|
26
|
+
action: 'Delete a contact card',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: 'Get',
|
|
30
|
+
value: 'get',
|
|
31
|
+
description: 'Get a contact card by ID',
|
|
32
|
+
action: 'Get a contact card',
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: 'Get Many',
|
|
36
|
+
value: 'getAll',
|
|
37
|
+
description: 'Get many contact cards',
|
|
38
|
+
action: 'Get many contact cards',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'Search',
|
|
42
|
+
value: 'search',
|
|
43
|
+
description: 'Search contact cards',
|
|
44
|
+
action: 'Search contact cards',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Update',
|
|
48
|
+
value: 'update',
|
|
49
|
+
description: 'Update a contact card',
|
|
50
|
+
action: 'Update a contact card',
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
default: 'get',
|
|
54
|
+
},
|
|
55
|
+
];
|
|
56
|
+
exports.contactCardFields = [
|
|
57
|
+
/* -------------------------------------------------------------------------- */
|
|
58
|
+
/* contactCard:get */
|
|
59
|
+
/* -------------------------------------------------------------------------- */
|
|
60
|
+
{
|
|
61
|
+
displayName: 'Contact Card ID',
|
|
62
|
+
name: 'contactCardId',
|
|
63
|
+
type: 'number',
|
|
64
|
+
required: true,
|
|
65
|
+
displayOptions: {
|
|
66
|
+
show: {
|
|
67
|
+
resource: ['contactCard'],
|
|
68
|
+
operation: ['get'],
|
|
69
|
+
},
|
|
70
|
+
},
|
|
71
|
+
default: 0,
|
|
72
|
+
description: 'The ID of the contact card to retrieve',
|
|
73
|
+
},
|
|
74
|
+
/* -------------------------------------------------------------------------- */
|
|
75
|
+
/* contactCard:getAll */
|
|
76
|
+
/* -------------------------------------------------------------------------- */
|
|
77
|
+
{
|
|
78
|
+
displayName: 'Return All',
|
|
79
|
+
name: 'returnAll',
|
|
80
|
+
type: 'boolean',
|
|
81
|
+
displayOptions: {
|
|
82
|
+
show: {
|
|
83
|
+
resource: ['contactCard'],
|
|
84
|
+
operation: ['getAll'],
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
default: false,
|
|
88
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
displayName: 'Limit',
|
|
92
|
+
name: 'limit',
|
|
93
|
+
type: 'number',
|
|
94
|
+
displayOptions: {
|
|
95
|
+
show: {
|
|
96
|
+
resource: ['contactCard'],
|
|
97
|
+
operation: ['getAll'],
|
|
98
|
+
returnAll: [false],
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
typeOptions: {
|
|
102
|
+
minValue: 1,
|
|
103
|
+
maxValue: 100,
|
|
104
|
+
},
|
|
105
|
+
default: 50,
|
|
106
|
+
description: 'Max number of results to return',
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
displayName: 'Additional Fields',
|
|
110
|
+
name: 'additionalFields',
|
|
111
|
+
type: 'collection',
|
|
112
|
+
placeholder: 'Add Field',
|
|
113
|
+
default: {},
|
|
114
|
+
displayOptions: {
|
|
115
|
+
show: {
|
|
116
|
+
resource: ['contactCard'],
|
|
117
|
+
operation: ['getAll'],
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
options: [
|
|
121
|
+
{
|
|
122
|
+
displayName: 'Email',
|
|
123
|
+
name: 'email',
|
|
124
|
+
type: 'string',
|
|
125
|
+
default: '',
|
|
126
|
+
description: 'Filter by email address',
|
|
127
|
+
placeholder: 'customer@example.com',
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
displayName: 'Name',
|
|
131
|
+
name: 'name',
|
|
132
|
+
type: 'string',
|
|
133
|
+
default: '',
|
|
134
|
+
description: 'Filter by contact name',
|
|
135
|
+
placeholder: 'John Doe',
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
},
|
|
139
|
+
/* -------------------------------------------------------------------------- */
|
|
140
|
+
/* contactCard:create */
|
|
141
|
+
/* -------------------------------------------------------------------------- */
|
|
142
|
+
{
|
|
143
|
+
displayName: 'Name',
|
|
144
|
+
name: 'name',
|
|
145
|
+
type: 'string',
|
|
146
|
+
required: true,
|
|
147
|
+
displayOptions: {
|
|
148
|
+
show: {
|
|
149
|
+
resource: ['contactCard'],
|
|
150
|
+
operation: ['create'],
|
|
151
|
+
},
|
|
152
|
+
},
|
|
153
|
+
default: '',
|
|
154
|
+
description: 'Contact name',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
displayName: 'Email',
|
|
158
|
+
name: 'email',
|
|
159
|
+
type: 'string',
|
|
160
|
+
required: true,
|
|
161
|
+
displayOptions: {
|
|
162
|
+
show: {
|
|
163
|
+
resource: ['contactCard'],
|
|
164
|
+
operation: ['create'],
|
|
165
|
+
},
|
|
166
|
+
},
|
|
167
|
+
default: '',
|
|
168
|
+
description: 'Contact email address',
|
|
169
|
+
placeholder: 'customer@example.com',
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
displayName: 'Additional Fields',
|
|
173
|
+
name: 'additionalFields',
|
|
174
|
+
type: 'collection',
|
|
175
|
+
placeholder: 'Add Field',
|
|
176
|
+
default: {},
|
|
177
|
+
displayOptions: {
|
|
178
|
+
show: {
|
|
179
|
+
resource: ['contactCard'],
|
|
180
|
+
operation: ['create'],
|
|
181
|
+
},
|
|
182
|
+
},
|
|
183
|
+
options: [
|
|
184
|
+
{
|
|
185
|
+
displayName: 'Facebook',
|
|
186
|
+
name: 'facebook',
|
|
187
|
+
type: 'string',
|
|
188
|
+
default: '',
|
|
189
|
+
description: 'Facebook ID (e.g., 12345@facebook.com)',
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
displayName: 'Phone',
|
|
193
|
+
name: 'voice',
|
|
194
|
+
type: 'string',
|
|
195
|
+
default: '',
|
|
196
|
+
description: 'Phone number with plus sign (e.g., +1234567890)',
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
displayName: 'VK',
|
|
200
|
+
name: 'vk',
|
|
201
|
+
type: 'string',
|
|
202
|
+
default: '',
|
|
203
|
+
description: 'VKontakte account (e.g., centionvk-cc-12345)',
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
displayName: 'LINE',
|
|
207
|
+
name: 'line',
|
|
208
|
+
type: 'string',
|
|
209
|
+
default: '',
|
|
210
|
+
description: 'LINE messenger ID (e.g., centionline-c12345)',
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
displayName: 'Custom Fields',
|
|
214
|
+
name: 'custom',
|
|
215
|
+
type: 'fixedCollection',
|
|
216
|
+
typeOptions: {
|
|
217
|
+
multipleValues: true,
|
|
218
|
+
},
|
|
219
|
+
default: {},
|
|
220
|
+
description: 'Custom fields for the contact',
|
|
221
|
+
options: [
|
|
222
|
+
{
|
|
223
|
+
displayName: 'Field',
|
|
224
|
+
name: 'field',
|
|
225
|
+
values: [
|
|
226
|
+
{
|
|
227
|
+
displayName: 'Label',
|
|
228
|
+
name: 'label',
|
|
229
|
+
type: 'string',
|
|
230
|
+
default: '',
|
|
231
|
+
description: 'Field label (e.g., Company, Address)',
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
displayName: 'Value',
|
|
235
|
+
name: 'value',
|
|
236
|
+
type: 'string',
|
|
237
|
+
default: '',
|
|
238
|
+
description: 'Field value',
|
|
239
|
+
},
|
|
240
|
+
],
|
|
241
|
+
},
|
|
242
|
+
],
|
|
243
|
+
},
|
|
244
|
+
],
|
|
245
|
+
},
|
|
246
|
+
/* -------------------------------------------------------------------------- */
|
|
247
|
+
/* contactCard:update */
|
|
248
|
+
/* -------------------------------------------------------------------------- */
|
|
249
|
+
{
|
|
250
|
+
displayName: 'Contact Card ID',
|
|
251
|
+
name: 'contactCardId',
|
|
252
|
+
type: 'number',
|
|
253
|
+
required: true,
|
|
254
|
+
displayOptions: {
|
|
255
|
+
show: {
|
|
256
|
+
resource: ['contactCard'],
|
|
257
|
+
operation: ['update'],
|
|
258
|
+
},
|
|
259
|
+
},
|
|
260
|
+
default: 0,
|
|
261
|
+
description: 'The ID of the contact card to update',
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
displayName: 'Update Fields',
|
|
265
|
+
name: 'updateFields',
|
|
266
|
+
type: 'collection',
|
|
267
|
+
placeholder: 'Add Field',
|
|
268
|
+
default: {},
|
|
269
|
+
displayOptions: {
|
|
270
|
+
show: {
|
|
271
|
+
resource: ['contactCard'],
|
|
272
|
+
operation: ['update'],
|
|
273
|
+
},
|
|
274
|
+
},
|
|
275
|
+
options: [
|
|
276
|
+
{
|
|
277
|
+
displayName: 'Name',
|
|
278
|
+
name: 'name',
|
|
279
|
+
type: 'string',
|
|
280
|
+
default: '',
|
|
281
|
+
description: 'Contact name',
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
displayName: 'Email',
|
|
285
|
+
name: 'email',
|
|
286
|
+
type: 'string',
|
|
287
|
+
default: '',
|
|
288
|
+
description: 'Contact email address',
|
|
289
|
+
placeholder: 'customer@example.com',
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
displayName: 'Facebook',
|
|
293
|
+
name: 'facebook',
|
|
294
|
+
type: 'string',
|
|
295
|
+
default: '',
|
|
296
|
+
description: 'Facebook ID (e.g., 12345@facebook.com)',
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
displayName: 'Phone',
|
|
300
|
+
name: 'voice',
|
|
301
|
+
type: 'string',
|
|
302
|
+
default: '',
|
|
303
|
+
description: 'Phone number with plus sign (e.g., +1234567890)',
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
displayName: 'VK',
|
|
307
|
+
name: 'vk',
|
|
308
|
+
type: 'string',
|
|
309
|
+
default: '',
|
|
310
|
+
description: 'VKontakte account',
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
displayName: 'LINE',
|
|
314
|
+
name: 'line',
|
|
315
|
+
type: 'string',
|
|
316
|
+
default: '',
|
|
317
|
+
description: 'LINE messenger ID',
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
displayName: 'Custom Fields',
|
|
321
|
+
name: 'custom',
|
|
322
|
+
type: 'fixedCollection',
|
|
323
|
+
typeOptions: {
|
|
324
|
+
multipleValues: true,
|
|
325
|
+
},
|
|
326
|
+
default: {},
|
|
327
|
+
description: 'Custom fields for the contact',
|
|
328
|
+
options: [
|
|
329
|
+
{
|
|
330
|
+
displayName: 'Field',
|
|
331
|
+
name: 'field',
|
|
332
|
+
values: [
|
|
333
|
+
{
|
|
334
|
+
displayName: 'Label',
|
|
335
|
+
name: 'label',
|
|
336
|
+
type: 'string',
|
|
337
|
+
default: '',
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
displayName: 'Value',
|
|
341
|
+
name: 'value',
|
|
342
|
+
type: 'string',
|
|
343
|
+
default: '',
|
|
344
|
+
},
|
|
345
|
+
],
|
|
346
|
+
},
|
|
347
|
+
],
|
|
348
|
+
},
|
|
349
|
+
],
|
|
350
|
+
},
|
|
351
|
+
/* -------------------------------------------------------------------------- */
|
|
352
|
+
/* contactCard:delete */
|
|
353
|
+
/* -------------------------------------------------------------------------- */
|
|
354
|
+
{
|
|
355
|
+
displayName: 'Contact Card ID',
|
|
356
|
+
name: 'contactCardId',
|
|
357
|
+
type: 'number',
|
|
358
|
+
required: true,
|
|
359
|
+
displayOptions: {
|
|
360
|
+
show: {
|
|
361
|
+
resource: ['contactCard'],
|
|
362
|
+
operation: ['delete'],
|
|
363
|
+
},
|
|
364
|
+
},
|
|
365
|
+
default: 0,
|
|
366
|
+
description: 'The ID of the contact card to delete',
|
|
367
|
+
},
|
|
368
|
+
/* -------------------------------------------------------------------------- */
|
|
369
|
+
/* contactCard:search */
|
|
370
|
+
/* -------------------------------------------------------------------------- */
|
|
371
|
+
{
|
|
372
|
+
displayName: 'Return All',
|
|
373
|
+
name: 'returnAll',
|
|
374
|
+
type: 'boolean',
|
|
375
|
+
displayOptions: {
|
|
376
|
+
show: {
|
|
377
|
+
resource: ['contactCard'],
|
|
378
|
+
operation: ['search'],
|
|
379
|
+
},
|
|
380
|
+
},
|
|
381
|
+
default: false,
|
|
382
|
+
description: 'Whether to return all results or only up to a given limit',
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
displayName: 'Limit',
|
|
386
|
+
name: 'limit',
|
|
387
|
+
type: 'number',
|
|
388
|
+
displayOptions: {
|
|
389
|
+
show: {
|
|
390
|
+
resource: ['contactCard'],
|
|
391
|
+
operation: ['search'],
|
|
392
|
+
returnAll: [false],
|
|
393
|
+
},
|
|
394
|
+
},
|
|
395
|
+
typeOptions: {
|
|
396
|
+
minValue: 1,
|
|
397
|
+
maxValue: 100,
|
|
398
|
+
},
|
|
399
|
+
default: 50,
|
|
400
|
+
description: 'Max number of results to return',
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
displayName: 'Search Query',
|
|
404
|
+
name: 'query',
|
|
405
|
+
type: 'string',
|
|
406
|
+
displayOptions: {
|
|
407
|
+
show: {
|
|
408
|
+
resource: ['contactCard'],
|
|
409
|
+
operation: ['search'],
|
|
410
|
+
},
|
|
411
|
+
},
|
|
412
|
+
default: '',
|
|
413
|
+
description: 'Search term to find contacts (searches name, email, company)',
|
|
414
|
+
placeholder: 'John Doe',
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
displayName: 'Additional Fields',
|
|
418
|
+
name: 'additionalFields',
|
|
419
|
+
type: 'collection',
|
|
420
|
+
placeholder: 'Add Field',
|
|
421
|
+
default: {},
|
|
422
|
+
displayOptions: {
|
|
423
|
+
show: {
|
|
424
|
+
resource: ['contactCard'],
|
|
425
|
+
operation: ['search'],
|
|
426
|
+
},
|
|
427
|
+
},
|
|
428
|
+
options: [
|
|
429
|
+
{
|
|
430
|
+
displayName: 'Email',
|
|
431
|
+
name: 'email',
|
|
432
|
+
type: 'string',
|
|
433
|
+
default: '',
|
|
434
|
+
description: 'Filter by email address',
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
displayName: 'Name',
|
|
438
|
+
name: 'name',
|
|
439
|
+
type: 'string',
|
|
440
|
+
default: '',
|
|
441
|
+
description: 'Filter by contact name',
|
|
442
|
+
},
|
|
443
|
+
],
|
|
444
|
+
},
|
|
445
|
+
];
|
|
446
|
+
//# sourceMappingURL=ContactCardDescription.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ContactCardDescription.js","sourceRoot":"","sources":["../../../nodes/Cention/ContactCardDescription.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ErrandDescription.d.ts","sourceRoot":"","sources":["../../../nodes/Cention/ErrandDescription.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAEpD,eAAO,MAAM,gBAAgB,EAAE,eAAe,EAyD7C,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,eAAe,EA+VzC,CAAC"}
|