n8n-nodes-qlik-cloud 1.1.1 → 1.2.2
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/README.md +77 -69
- package/dist/nodes/QlikCloud/QlikCloud.node.js +130 -1
- package/dist/nodes/QlikCloud/resources/data-alerts/index.d.ts +17 -0
- package/dist/nodes/QlikCloud/resources/data-alerts/index.js +558 -0
- package/package.json +1 -1
- package/src/nodes/QlikCloud/QlikCloud.node.ts +155 -1
- package/src/nodes/QlikCloud/resources/data-alerts/index.ts +575 -0
|
@@ -0,0 +1,558 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.dataAlertDescription = exports.dataAlertsSettingsUpdateDescription = exports.dataAlertsSettingsGetDescription = exports.dataAlertsValidateDescription = exports.dataAlertsTriggerDescription = exports.dataAlertsExecutionStatsDescription = exports.dataAlertsExecutionEvaluationDescription = exports.dataAlertsExecutionsListDescription = exports.dataAlertsRecipientStatsDescription = exports.dataAlertsExecutionDescription = exports.dataAlertsConditionDescription = exports.dataAlertsDeleteDescription = exports.dataAlertsUpdateDescription = exports.dataAlertsGetDescription = exports.dataAlertsCreateDescription = exports.dataAlertsGetAllDescription = void 0;
|
|
4
|
+
const alertIdField = {
|
|
5
|
+
displayName: 'Alert ID',
|
|
6
|
+
name: 'alertId',
|
|
7
|
+
type: 'string',
|
|
8
|
+
default: '',
|
|
9
|
+
required: true,
|
|
10
|
+
description: 'The ID of the data alert task',
|
|
11
|
+
};
|
|
12
|
+
const executionIdField = {
|
|
13
|
+
displayName: 'Execution ID',
|
|
14
|
+
name: 'executionId',
|
|
15
|
+
type: 'string',
|
|
16
|
+
default: '',
|
|
17
|
+
required: true,
|
|
18
|
+
description: 'The ID of the execution',
|
|
19
|
+
};
|
|
20
|
+
const taskIdField = {
|
|
21
|
+
displayName: 'Task ID',
|
|
22
|
+
name: 'taskId',
|
|
23
|
+
type: 'string',
|
|
24
|
+
default: '',
|
|
25
|
+
required: true,
|
|
26
|
+
description: 'The ID of the data alert task',
|
|
27
|
+
};
|
|
28
|
+
exports.dataAlertsGetAllDescription = [
|
|
29
|
+
{
|
|
30
|
+
displayName: 'Return All',
|
|
31
|
+
name: 'returnAll',
|
|
32
|
+
type: 'boolean',
|
|
33
|
+
default: false,
|
|
34
|
+
displayOptions: {
|
|
35
|
+
show: {
|
|
36
|
+
resource: ['dataAlerts'],
|
|
37
|
+
operation: ['getAll'],
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
description: 'Whether to return all data alert tasks',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
displayName: 'Limit',
|
|
44
|
+
name: 'limit',
|
|
45
|
+
type: 'number',
|
|
46
|
+
default: 20,
|
|
47
|
+
typeOptions: {
|
|
48
|
+
minValue: 1,
|
|
49
|
+
maxValue: 100,
|
|
50
|
+
},
|
|
51
|
+
displayOptions: {
|
|
52
|
+
show: {
|
|
53
|
+
resource: ['dataAlerts'],
|
|
54
|
+
operation: ['getAll'],
|
|
55
|
+
returnAll: [false],
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
description: 'Max number of tasks to return (1-100)',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
displayName: 'Options',
|
|
62
|
+
name: 'options',
|
|
63
|
+
type: 'collection',
|
|
64
|
+
placeholder: 'Add Option',
|
|
65
|
+
default: {},
|
|
66
|
+
displayOptions: {
|
|
67
|
+
show: {
|
|
68
|
+
resource: ['dataAlerts'],
|
|
69
|
+
operation: ['getAll'],
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
options: [
|
|
73
|
+
{
|
|
74
|
+
displayName: 'App ID',
|
|
75
|
+
name: 'appId',
|
|
76
|
+
type: 'string',
|
|
77
|
+
default: '',
|
|
78
|
+
description: 'Filter alerts by app ID',
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
displayName: 'Condition ID',
|
|
82
|
+
name: 'conditionId',
|
|
83
|
+
type: 'string',
|
|
84
|
+
default: '',
|
|
85
|
+
description: 'Filter alerts by condition ID',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
displayName: 'Owner ID',
|
|
89
|
+
name: 'ownerId',
|
|
90
|
+
type: 'string',
|
|
91
|
+
default: '',
|
|
92
|
+
description: 'Filter alerts by owner ID',
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
displayName: 'Owner Name',
|
|
96
|
+
name: 'ownerName',
|
|
97
|
+
type: 'string',
|
|
98
|
+
default: '',
|
|
99
|
+
description: 'Filter alerts by owner name',
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
displayName: 'Role',
|
|
103
|
+
name: 'role',
|
|
104
|
+
type: 'string',
|
|
105
|
+
default: '',
|
|
106
|
+
description: 'Filter alerts by role',
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
displayName: 'Next Cursor',
|
|
110
|
+
name: 'next',
|
|
111
|
+
type: 'string',
|
|
112
|
+
default: '',
|
|
113
|
+
description: 'Cursor for the next page',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
displayName: 'Previous Cursor',
|
|
117
|
+
name: 'prev',
|
|
118
|
+
type: 'string',
|
|
119
|
+
default: '',
|
|
120
|
+
description: 'Cursor for the previous page',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
displayName: 'Offset',
|
|
124
|
+
name: 'offset',
|
|
125
|
+
type: 'number',
|
|
126
|
+
typeOptions: { minValue: 0 },
|
|
127
|
+
default: 0,
|
|
128
|
+
description: 'Offset to start listing from',
|
|
129
|
+
},
|
|
130
|
+
],
|
|
131
|
+
},
|
|
132
|
+
];
|
|
133
|
+
exports.dataAlertsCreateDescription = [
|
|
134
|
+
{
|
|
135
|
+
displayName: 'Alert Task (JSON)',
|
|
136
|
+
name: 'body',
|
|
137
|
+
type: 'json',
|
|
138
|
+
default: '{}',
|
|
139
|
+
required: true,
|
|
140
|
+
displayOptions: {
|
|
141
|
+
show: {
|
|
142
|
+
resource: ['dataAlerts'],
|
|
143
|
+
operation: ['create'],
|
|
144
|
+
},
|
|
145
|
+
},
|
|
146
|
+
description: 'Definition of the data alert task to create',
|
|
147
|
+
},
|
|
148
|
+
];
|
|
149
|
+
exports.dataAlertsGetDescription = [
|
|
150
|
+
{
|
|
151
|
+
...alertIdField,
|
|
152
|
+
displayOptions: {
|
|
153
|
+
show: {
|
|
154
|
+
resource: ['dataAlerts'],
|
|
155
|
+
operation: ['get'],
|
|
156
|
+
},
|
|
157
|
+
},
|
|
158
|
+
},
|
|
159
|
+
];
|
|
160
|
+
exports.dataAlertsUpdateDescription = [
|
|
161
|
+
{
|
|
162
|
+
...alertIdField,
|
|
163
|
+
displayOptions: {
|
|
164
|
+
show: {
|
|
165
|
+
resource: ['dataAlerts'],
|
|
166
|
+
operation: ['update'],
|
|
167
|
+
},
|
|
168
|
+
},
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
displayName: 'Alert Task (JSON)',
|
|
172
|
+
name: 'body',
|
|
173
|
+
type: 'json',
|
|
174
|
+
default: '{}',
|
|
175
|
+
required: true,
|
|
176
|
+
displayOptions: {
|
|
177
|
+
show: {
|
|
178
|
+
resource: ['dataAlerts'],
|
|
179
|
+
operation: ['update'],
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
description: 'JSON Patch payload for the data alert task',
|
|
183
|
+
},
|
|
184
|
+
];
|
|
185
|
+
exports.dataAlertsDeleteDescription = [
|
|
186
|
+
{
|
|
187
|
+
...alertIdField,
|
|
188
|
+
displayOptions: {
|
|
189
|
+
show: {
|
|
190
|
+
resource: ['dataAlerts'],
|
|
191
|
+
operation: ['delete'],
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
description: 'The ID of the data alert task to delete',
|
|
195
|
+
},
|
|
196
|
+
];
|
|
197
|
+
exports.dataAlertsConditionDescription = [
|
|
198
|
+
{
|
|
199
|
+
...alertIdField,
|
|
200
|
+
displayOptions: {
|
|
201
|
+
show: {
|
|
202
|
+
resource: ['dataAlerts'],
|
|
203
|
+
operation: ['getCondition'],
|
|
204
|
+
},
|
|
205
|
+
},
|
|
206
|
+
description: 'The data alert task whose condition will be retrieved',
|
|
207
|
+
},
|
|
208
|
+
];
|
|
209
|
+
exports.dataAlertsExecutionDescription = [
|
|
210
|
+
{
|
|
211
|
+
...alertIdField,
|
|
212
|
+
displayOptions: {
|
|
213
|
+
show: {
|
|
214
|
+
resource: ['dataAlerts'],
|
|
215
|
+
operation: ['getExecution', 'deleteExecution'],
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
...executionIdField,
|
|
221
|
+
displayOptions: {
|
|
222
|
+
show: {
|
|
223
|
+
resource: ['dataAlerts'],
|
|
224
|
+
operation: ['getExecution', 'deleteExecution'],
|
|
225
|
+
},
|
|
226
|
+
},
|
|
227
|
+
},
|
|
228
|
+
];
|
|
229
|
+
exports.dataAlertsRecipientStatsDescription = [
|
|
230
|
+
{
|
|
231
|
+
...alertIdField,
|
|
232
|
+
displayOptions: {
|
|
233
|
+
show: {
|
|
234
|
+
resource: ['dataAlerts'],
|
|
235
|
+
operation: ['recipientStats'],
|
|
236
|
+
},
|
|
237
|
+
},
|
|
238
|
+
description: 'The data alert task whose recipient stats will be retrieved',
|
|
239
|
+
},
|
|
240
|
+
];
|
|
241
|
+
exports.dataAlertsExecutionsListDescription = [
|
|
242
|
+
{
|
|
243
|
+
...taskIdField,
|
|
244
|
+
displayOptions: {
|
|
245
|
+
show: {
|
|
246
|
+
resource: ['dataAlerts'],
|
|
247
|
+
operation: ['listExecutions'],
|
|
248
|
+
},
|
|
249
|
+
},
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
displayName: 'Return All',
|
|
253
|
+
name: 'returnAll',
|
|
254
|
+
type: 'boolean',
|
|
255
|
+
default: false,
|
|
256
|
+
displayOptions: {
|
|
257
|
+
show: {
|
|
258
|
+
resource: ['dataAlerts'],
|
|
259
|
+
operation: ['listExecutions'],
|
|
260
|
+
},
|
|
261
|
+
},
|
|
262
|
+
description: 'Whether to return all executions',
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
displayName: 'Limit',
|
|
266
|
+
name: 'limit',
|
|
267
|
+
type: 'number',
|
|
268
|
+
default: 20,
|
|
269
|
+
typeOptions: { minValue: 1, maxValue: 100 },
|
|
270
|
+
displayOptions: {
|
|
271
|
+
show: {
|
|
272
|
+
resource: ['dataAlerts'],
|
|
273
|
+
operation: ['listExecutions'],
|
|
274
|
+
returnAll: [false],
|
|
275
|
+
},
|
|
276
|
+
},
|
|
277
|
+
description: 'Max number of executions to return (1-100)',
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
displayName: 'Options',
|
|
281
|
+
name: 'options',
|
|
282
|
+
type: 'collection',
|
|
283
|
+
placeholder: 'Add Option',
|
|
284
|
+
default: {},
|
|
285
|
+
displayOptions: {
|
|
286
|
+
show: {
|
|
287
|
+
resource: ['dataAlerts'],
|
|
288
|
+
operation: ['listExecutions'],
|
|
289
|
+
},
|
|
290
|
+
},
|
|
291
|
+
options: [
|
|
292
|
+
{
|
|
293
|
+
displayName: 'Next Cursor',
|
|
294
|
+
name: 'next',
|
|
295
|
+
type: 'string',
|
|
296
|
+
default: '',
|
|
297
|
+
description: 'Cursor for the next page',
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
displayName: 'Previous Cursor',
|
|
301
|
+
name: 'prev',
|
|
302
|
+
type: 'string',
|
|
303
|
+
default: '',
|
|
304
|
+
description: 'Cursor for the previous page',
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
displayName: 'Offset',
|
|
308
|
+
name: 'offset',
|
|
309
|
+
type: 'number',
|
|
310
|
+
typeOptions: { minValue: 0 },
|
|
311
|
+
default: 0,
|
|
312
|
+
description: 'Offset to start listing from',
|
|
313
|
+
},
|
|
314
|
+
],
|
|
315
|
+
},
|
|
316
|
+
];
|
|
317
|
+
exports.dataAlertsExecutionEvaluationDescription = [
|
|
318
|
+
{
|
|
319
|
+
...taskIdField,
|
|
320
|
+
displayOptions: {
|
|
321
|
+
show: {
|
|
322
|
+
resource: ['dataAlerts'],
|
|
323
|
+
operation: ['getExecutionEvaluation'],
|
|
324
|
+
},
|
|
325
|
+
},
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
...executionIdField,
|
|
329
|
+
displayOptions: {
|
|
330
|
+
show: {
|
|
331
|
+
resource: ['dataAlerts'],
|
|
332
|
+
operation: ['getExecutionEvaluation'],
|
|
333
|
+
},
|
|
334
|
+
},
|
|
335
|
+
},
|
|
336
|
+
];
|
|
337
|
+
exports.dataAlertsExecutionStatsDescription = [
|
|
338
|
+
{
|
|
339
|
+
...taskIdField,
|
|
340
|
+
displayOptions: {
|
|
341
|
+
show: {
|
|
342
|
+
resource: ['dataAlerts'],
|
|
343
|
+
operation: ['getExecutionStats'],
|
|
344
|
+
},
|
|
345
|
+
},
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
displayName: 'Options',
|
|
349
|
+
name: 'options',
|
|
350
|
+
type: 'collection',
|
|
351
|
+
placeholder: 'Add Option',
|
|
352
|
+
default: {},
|
|
353
|
+
displayOptions: {
|
|
354
|
+
show: {
|
|
355
|
+
resource: ['dataAlerts'],
|
|
356
|
+
operation: ['getExecutionStats'],
|
|
357
|
+
},
|
|
358
|
+
},
|
|
359
|
+
options: [
|
|
360
|
+
{
|
|
361
|
+
displayName: 'Period',
|
|
362
|
+
name: 'period',
|
|
363
|
+
type: 'string',
|
|
364
|
+
default: '',
|
|
365
|
+
description: 'Time period for stats (e.g. day, week, month)',
|
|
366
|
+
},
|
|
367
|
+
],
|
|
368
|
+
},
|
|
369
|
+
];
|
|
370
|
+
exports.dataAlertsTriggerDescription = [
|
|
371
|
+
{
|
|
372
|
+
displayName: 'Trigger Payload (JSON)',
|
|
373
|
+
name: 'body',
|
|
374
|
+
type: 'json',
|
|
375
|
+
default: '{}',
|
|
376
|
+
required: true,
|
|
377
|
+
displayOptions: {
|
|
378
|
+
show: {
|
|
379
|
+
resource: ['dataAlerts'],
|
|
380
|
+
operation: ['trigger'],
|
|
381
|
+
},
|
|
382
|
+
},
|
|
383
|
+
description: 'Payload describing alert tasks to trigger',
|
|
384
|
+
},
|
|
385
|
+
];
|
|
386
|
+
exports.dataAlertsValidateDescription = [
|
|
387
|
+
{
|
|
388
|
+
displayName: 'Validation Payload (JSON)',
|
|
389
|
+
name: 'body',
|
|
390
|
+
type: 'json',
|
|
391
|
+
default: '{}',
|
|
392
|
+
required: true,
|
|
393
|
+
displayOptions: {
|
|
394
|
+
show: {
|
|
395
|
+
resource: ['dataAlerts'],
|
|
396
|
+
operation: ['validate'],
|
|
397
|
+
},
|
|
398
|
+
},
|
|
399
|
+
description: 'Payload to validate a data alert task definition',
|
|
400
|
+
},
|
|
401
|
+
];
|
|
402
|
+
exports.dataAlertsSettingsGetDescription = [
|
|
403
|
+
{
|
|
404
|
+
displayName: 'Operation',
|
|
405
|
+
name: 'operation',
|
|
406
|
+
type: 'hidden',
|
|
407
|
+
default: 'getSettings',
|
|
408
|
+
displayOptions: {
|
|
409
|
+
show: {
|
|
410
|
+
resource: ['dataAlerts'],
|
|
411
|
+
operation: ['getSettings'],
|
|
412
|
+
},
|
|
413
|
+
},
|
|
414
|
+
},
|
|
415
|
+
];
|
|
416
|
+
exports.dataAlertsSettingsUpdateDescription = [
|
|
417
|
+
{
|
|
418
|
+
displayName: 'Settings Payload (JSON)',
|
|
419
|
+
name: 'body',
|
|
420
|
+
type: 'json',
|
|
421
|
+
default: '{}',
|
|
422
|
+
required: true,
|
|
423
|
+
displayOptions: {
|
|
424
|
+
show: {
|
|
425
|
+
resource: ['dataAlerts'],
|
|
426
|
+
operation: ['updateSettings'],
|
|
427
|
+
},
|
|
428
|
+
},
|
|
429
|
+
description: 'Settings to apply to the data alert service',
|
|
430
|
+
},
|
|
431
|
+
];
|
|
432
|
+
exports.dataAlertDescription = [
|
|
433
|
+
{
|
|
434
|
+
displayName: 'Operation',
|
|
435
|
+
name: 'operation',
|
|
436
|
+
type: 'options',
|
|
437
|
+
noDataExpression: true,
|
|
438
|
+
displayOptions: {
|
|
439
|
+
show: {
|
|
440
|
+
resource: ['dataAlerts'],
|
|
441
|
+
},
|
|
442
|
+
},
|
|
443
|
+
options: [
|
|
444
|
+
{
|
|
445
|
+
name: 'List Alert Tasks',
|
|
446
|
+
value: 'getAll',
|
|
447
|
+
action: 'List data alert tasks',
|
|
448
|
+
description: 'Retrieve data alert tasks accessible to the user',
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
name: 'Create Alert Task',
|
|
452
|
+
value: 'create',
|
|
453
|
+
action: 'Create a data alert task',
|
|
454
|
+
description: 'Create a new data alert task',
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
name: 'Get Alert Task',
|
|
458
|
+
value: 'get',
|
|
459
|
+
action: 'Get a data alert task',
|
|
460
|
+
description: 'Retrieve a specific data alert task',
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
name: 'Update Alert Task',
|
|
464
|
+
value: 'update',
|
|
465
|
+
action: 'Update a data alert task',
|
|
466
|
+
description: 'Update a specific data alert task',
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
name: 'Delete Alert Task',
|
|
470
|
+
value: 'delete',
|
|
471
|
+
action: 'Delete a data alert task',
|
|
472
|
+
description: 'Delete a specific data alert task',
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
name: 'Get Alert Condition',
|
|
476
|
+
value: 'getCondition',
|
|
477
|
+
action: 'Get the condition for an alert',
|
|
478
|
+
description: 'Retrieve the condition for a data alert task',
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
name: 'Get Alert Execution',
|
|
482
|
+
value: 'getExecution',
|
|
483
|
+
action: 'Get an alert execution',
|
|
484
|
+
description: 'Retrieve an execution for a data alert task',
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
name: 'Delete Alert Execution',
|
|
488
|
+
value: 'deleteExecution',
|
|
489
|
+
action: 'Delete an alert execution',
|
|
490
|
+
description: 'Delete a specific execution for a data alert task',
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
name: 'Get Recipient Stats',
|
|
494
|
+
value: 'recipientStats',
|
|
495
|
+
action: 'Get recipient stats for an alert',
|
|
496
|
+
description: 'Retrieve recipient statistics for a data alert task',
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
name: 'List Task Executions',
|
|
500
|
+
value: 'listExecutions',
|
|
501
|
+
action: 'List executions for an alert task',
|
|
502
|
+
description: 'Retrieve executions for a data alert task',
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
name: 'Get Execution Evaluation',
|
|
506
|
+
value: 'getExecutionEvaluation',
|
|
507
|
+
action: 'Get evaluation for an execution',
|
|
508
|
+
description: 'Retrieve evaluation details for an alert execution',
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
name: 'Get Execution Stats',
|
|
512
|
+
value: 'getExecutionStats',
|
|
513
|
+
action: 'Get execution stats for an alert task',
|
|
514
|
+
description: 'Retrieve execution statistics for a data alert task',
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
name: 'Trigger Alert Tasks',
|
|
518
|
+
value: 'trigger',
|
|
519
|
+
action: 'Trigger data alert tasks',
|
|
520
|
+
description: 'Trigger one or more data alert tasks',
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
name: 'Validate Alert Task',
|
|
524
|
+
value: 'validate',
|
|
525
|
+
action: 'Validate a data alert task',
|
|
526
|
+
description: 'Validate a data alert task definition',
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
name: 'Get Alert Settings',
|
|
530
|
+
value: 'getSettings',
|
|
531
|
+
action: 'Get data alert settings',
|
|
532
|
+
description: 'Retrieve settings for data alerts',
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
name: 'Update Alert Settings',
|
|
536
|
+
value: 'updateSettings',
|
|
537
|
+
action: 'Update data alert settings',
|
|
538
|
+
description: 'Update settings for data alerts',
|
|
539
|
+
},
|
|
540
|
+
],
|
|
541
|
+
default: 'getAll',
|
|
542
|
+
},
|
|
543
|
+
...exports.dataAlertsGetAllDescription,
|
|
544
|
+
...exports.dataAlertsCreateDescription,
|
|
545
|
+
...exports.dataAlertsGetDescription,
|
|
546
|
+
...exports.dataAlertsUpdateDescription,
|
|
547
|
+
...exports.dataAlertsDeleteDescription,
|
|
548
|
+
...exports.dataAlertsConditionDescription,
|
|
549
|
+
...exports.dataAlertsExecutionDescription,
|
|
550
|
+
...exports.dataAlertsRecipientStatsDescription,
|
|
551
|
+
...exports.dataAlertsExecutionsListDescription,
|
|
552
|
+
...exports.dataAlertsExecutionEvaluationDescription,
|
|
553
|
+
...exports.dataAlertsExecutionStatsDescription,
|
|
554
|
+
...exports.dataAlertsTriggerDescription,
|
|
555
|
+
...exports.dataAlertsValidateDescription,
|
|
556
|
+
...exports.dataAlertsSettingsGetDescription,
|
|
557
|
+
...exports.dataAlertsSettingsUpdateDescription,
|
|
558
|
+
];
|