n8n-nodes-qlik-cloud 1.0.0 → 1.0.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.
@@ -0,0 +1,391 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.appDescription = exports.appsPrivilegesDescription = exports.appsPublishDescription = exports.appsExportDescription = exports.appsCopyDescription = exports.appsDeleteDescription = exports.appsUpdateDescription = exports.appsCreateDescription = exports.appsGetDescription = exports.appsGetAllDescription = void 0;
4
+ exports.appsGetAllDescription = [
5
+ {
6
+ displayName: 'Return All',
7
+ name: 'returnAll',
8
+ type: 'boolean',
9
+ default: false,
10
+ displayOptions: {
11
+ show: {
12
+ resource: ['apps'],
13
+ operation: ['getAll'],
14
+ },
15
+ },
16
+ description: 'Whether to return all results',
17
+ },
18
+ {
19
+ displayName: 'Limit',
20
+ name: 'limit',
21
+ type: 'number',
22
+ default: 50,
23
+ displayOptions: {
24
+ show: {
25
+ resource: ['apps'],
26
+ operation: ['getAll'],
27
+ returnAll: [false],
28
+ },
29
+ },
30
+ description: 'Max number of results to return',
31
+ },
32
+ {
33
+ displayName: 'Options',
34
+ name: 'options',
35
+ type: 'collection',
36
+ placeholder: 'Add Option',
37
+ default: {},
38
+ displayOptions: {
39
+ show: {
40
+ resource: ['apps'],
41
+ operation: ['getAll'],
42
+ },
43
+ },
44
+ options: [
45
+ {
46
+ displayName: 'Filter by Name',
47
+ name: 'name',
48
+ type: 'string',
49
+ default: '',
50
+ description: 'Filter apps by name (case-insensitive)',
51
+ },
52
+ {
53
+ displayName: 'Filter by Space',
54
+ name: 'spaceId',
55
+ type: 'string',
56
+ default: '',
57
+ description: 'Filter apps by space ID',
58
+ },
59
+ ],
60
+ },
61
+ ];
62
+ exports.appsGetDescription = [
63
+ {
64
+ displayName: 'App ID',
65
+ name: 'appId',
66
+ type: 'string',
67
+ default: '',
68
+ required: true,
69
+ displayOptions: {
70
+ show: {
71
+ resource: ['apps'],
72
+ operation: ['get'],
73
+ },
74
+ },
75
+ description: 'The ID of the app to retrieve',
76
+ },
77
+ ];
78
+ exports.appsCreateDescription = [
79
+ {
80
+ displayName: 'App Name',
81
+ name: 'name',
82
+ type: 'string',
83
+ default: '',
84
+ required: true,
85
+ displayOptions: {
86
+ show: {
87
+ resource: ['apps'],
88
+ operation: ['create'],
89
+ },
90
+ },
91
+ description: 'Name of the new app',
92
+ },
93
+ {
94
+ displayName: 'Options',
95
+ name: 'options',
96
+ type: 'collection',
97
+ placeholder: 'Add Option',
98
+ default: {},
99
+ displayOptions: {
100
+ show: {
101
+ resource: ['apps'],
102
+ operation: ['create'],
103
+ },
104
+ },
105
+ options: [
106
+ {
107
+ displayName: 'Description',
108
+ name: 'description',
109
+ type: 'string',
110
+ default: '',
111
+ description: 'Description of the app',
112
+ },
113
+ {
114
+ displayName: 'Locale',
115
+ name: 'locale',
116
+ type: 'string',
117
+ default: '',
118
+ description: 'Locale for the app (e.g., en-US)',
119
+ },
120
+ {
121
+ displayName: 'Space ID',
122
+ name: 'spaceId',
123
+ type: 'string',
124
+ default: '',
125
+ description: 'Space where the app will be created',
126
+ },
127
+ ],
128
+ },
129
+ ];
130
+ exports.appsUpdateDescription = [
131
+ {
132
+ displayName: 'App ID',
133
+ name: 'appId',
134
+ type: 'string',
135
+ default: '',
136
+ required: true,
137
+ displayOptions: {
138
+ show: {
139
+ resource: ['apps'],
140
+ operation: ['update'],
141
+ },
142
+ },
143
+ description: 'The ID of the app to update',
144
+ },
145
+ {
146
+ displayName: 'Body (JSON)',
147
+ name: 'body',
148
+ type: 'json',
149
+ default: '{}',
150
+ required: true,
151
+ displayOptions: {
152
+ show: {
153
+ resource: ['apps'],
154
+ operation: ['update'],
155
+ },
156
+ },
157
+ description: 'App attributes to update',
158
+ },
159
+ ];
160
+ exports.appsDeleteDescription = [
161
+ {
162
+ displayName: 'App ID',
163
+ name: 'appId',
164
+ type: 'string',
165
+ default: '',
166
+ required: true,
167
+ displayOptions: {
168
+ show: {
169
+ resource: ['apps'],
170
+ operation: ['delete'],
171
+ },
172
+ },
173
+ description: 'The ID of the app to delete',
174
+ },
175
+ ];
176
+ exports.appsCopyDescription = [
177
+ {
178
+ displayName: 'Source App ID',
179
+ name: 'appId',
180
+ type: 'string',
181
+ default: '',
182
+ required: true,
183
+ displayOptions: {
184
+ show: {
185
+ resource: ['apps'],
186
+ operation: ['copy'],
187
+ },
188
+ },
189
+ description: 'The ID of the app to copy',
190
+ },
191
+ {
192
+ displayName: 'New App Name',
193
+ name: 'name',
194
+ type: 'string',
195
+ default: '',
196
+ required: true,
197
+ displayOptions: {
198
+ show: {
199
+ resource: ['apps'],
200
+ operation: ['copy'],
201
+ },
202
+ },
203
+ description: 'Name for the copied app',
204
+ },
205
+ {
206
+ displayName: 'Options',
207
+ name: 'options',
208
+ type: 'collection',
209
+ placeholder: 'Add Option',
210
+ default: {},
211
+ displayOptions: {
212
+ show: {
213
+ resource: ['apps'],
214
+ operation: ['copy'],
215
+ },
216
+ },
217
+ options: [
218
+ {
219
+ displayName: 'Description',
220
+ name: 'description',
221
+ type: 'string',
222
+ default: '',
223
+ description: 'Description for the copied app',
224
+ },
225
+ {
226
+ displayName: 'Space ID',
227
+ name: 'spaceId',
228
+ type: 'string',
229
+ default: '',
230
+ description: 'Space where the app will be copied',
231
+ },
232
+ ],
233
+ },
234
+ ];
235
+ exports.appsExportDescription = [
236
+ {
237
+ displayName: 'App ID',
238
+ name: 'appId',
239
+ type: 'string',
240
+ default: '',
241
+ required: true,
242
+ displayOptions: {
243
+ show: {
244
+ resource: ['apps'],
245
+ operation: ['export'],
246
+ },
247
+ },
248
+ description: 'The ID of the app to export',
249
+ },
250
+ ];
251
+ exports.appsPublishDescription = [
252
+ {
253
+ displayName: 'App ID',
254
+ name: 'appId',
255
+ type: 'string',
256
+ default: '',
257
+ required: true,
258
+ displayOptions: {
259
+ show: {
260
+ resource: ['apps'],
261
+ operation: ['publish'],
262
+ },
263
+ },
264
+ description: 'The ID of the app to publish',
265
+ },
266
+ {
267
+ displayName: 'Publish Options',
268
+ name: 'publishOptions',
269
+ type: 'collection',
270
+ placeholder: 'Add Option',
271
+ default: {},
272
+ displayOptions: {
273
+ show: {
274
+ resource: ['apps'],
275
+ operation: ['publish'],
276
+ },
277
+ },
278
+ options: [
279
+ {
280
+ displayName: 'Target Space ID',
281
+ name: 'spaceId',
282
+ type: 'string',
283
+ default: '',
284
+ description: 'Space ID where app will be published',
285
+ },
286
+ ],
287
+ },
288
+ ];
289
+ exports.appsPrivilegesDescription = [
290
+ {
291
+ displayName: 'Options',
292
+ name: 'options',
293
+ type: 'collection',
294
+ placeholder: 'Add Option',
295
+ default: {},
296
+ displayOptions: {
297
+ show: {
298
+ resource: ['apps'],
299
+ operation: ['privileges'],
300
+ },
301
+ },
302
+ options: [
303
+ {
304
+ displayName: 'Filter by Role',
305
+ name: 'role',
306
+ type: 'string',
307
+ default: '',
308
+ description: 'Filter privileges by role',
309
+ },
310
+ ],
311
+ },
312
+ ];
313
+ exports.appDescription = [
314
+ {
315
+ displayName: 'Operation',
316
+ name: 'operation',
317
+ type: 'options',
318
+ noDataExpression: true,
319
+ displayOptions: {
320
+ show: {
321
+ resource: ['apps'],
322
+ },
323
+ },
324
+ options: [
325
+ {
326
+ name: 'Get All',
327
+ value: 'getAll',
328
+ action: 'Get all apps',
329
+ description: 'Retrieve all available apps',
330
+ },
331
+ {
332
+ name: 'Get',
333
+ value: 'get',
334
+ action: 'Get an app',
335
+ description: 'Retrieve a specific app by ID',
336
+ },
337
+ {
338
+ name: 'Create',
339
+ value: 'create',
340
+ action: 'Create an app',
341
+ description: 'Create a new app',
342
+ },
343
+ {
344
+ name: 'Update',
345
+ value: 'update',
346
+ action: 'Update an app',
347
+ description: 'Update app properties',
348
+ },
349
+ {
350
+ name: 'Delete',
351
+ value: 'delete',
352
+ action: 'Delete an app',
353
+ description: 'Delete an app',
354
+ },
355
+ {
356
+ name: 'Copy',
357
+ value: 'copy',
358
+ action: 'Copy an app',
359
+ description: 'Create a copy of an app',
360
+ },
361
+ {
362
+ name: 'Export',
363
+ value: 'export',
364
+ action: 'Export an app',
365
+ description: 'Export app data',
366
+ },
367
+ {
368
+ name: 'Publish',
369
+ value: 'publish',
370
+ action: 'Publish an app',
371
+ description: 'Publish an app to a space',
372
+ },
373
+ {
374
+ name: 'Get Privileges',
375
+ value: 'privileges',
376
+ action: 'Get app privileges',
377
+ description: 'Retrieve app access privileges',
378
+ },
379
+ ],
380
+ default: 'getAll',
381
+ },
382
+ ...exports.appsGetAllDescription,
383
+ ...exports.appsGetDescription,
384
+ ...exports.appsCreateDescription,
385
+ ...exports.appsUpdateDescription,
386
+ ...exports.appsDeleteDescription,
387
+ ...exports.appsCopyDescription,
388
+ ...exports.appsExportDescription,
389
+ ...exports.appsPublishDescription,
390
+ ...exports.appsPrivilegesDescription,
391
+ ];
@@ -0,0 +1,7 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const assistantsGetAllDescription: INodeProperties[];
3
+ export declare const assistantsGetDescription: INodeProperties[];
4
+ export declare const assistantsCreateDescription: INodeProperties[];
5
+ export declare const assistantsSearchDescription: INodeProperties[];
6
+ export declare const assistantsDeleteDescription: INodeProperties[];
7
+ export declare const assistantDescription: INodeProperties[];
@@ -0,0 +1,219 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.assistantDescription = exports.assistantsDeleteDescription = exports.assistantsSearchDescription = exports.assistantsCreateDescription = exports.assistantsGetDescription = exports.assistantsGetAllDescription = void 0;
4
+ exports.assistantsGetAllDescription = [
5
+ {
6
+ displayName: 'Options',
7
+ name: 'options',
8
+ type: 'collection',
9
+ placeholder: 'Add Option',
10
+ default: {},
11
+ displayOptions: {
12
+ show: {
13
+ resource: ['assistants'],
14
+ operation: ['getAll'],
15
+ },
16
+ },
17
+ options: [
18
+ {
19
+ displayName: 'Limit',
20
+ name: 'limit',
21
+ type: 'number',
22
+ default: 50,
23
+ description: 'Max number of assistants to return',
24
+ },
25
+ ],
26
+ },
27
+ ];
28
+ exports.assistantsGetDescription = [
29
+ {
30
+ displayName: 'Assistant ID',
31
+ name: 'assistantId',
32
+ type: 'string',
33
+ default: '',
34
+ required: true,
35
+ displayOptions: {
36
+ show: {
37
+ resource: ['assistants'],
38
+ operation: ['get'],
39
+ },
40
+ },
41
+ description: 'The ID of the assistant to retrieve',
42
+ },
43
+ ];
44
+ exports.assistantsCreateDescription = [
45
+ {
46
+ displayName: 'Assistant Name',
47
+ name: 'name',
48
+ type: 'string',
49
+ default: '',
50
+ required: true,
51
+ displayOptions: {
52
+ show: {
53
+ resource: ['assistants'],
54
+ operation: ['create'],
55
+ },
56
+ },
57
+ description: 'Name of the new assistant',
58
+ },
59
+ {
60
+ displayName: 'Options',
61
+ name: 'options',
62
+ type: 'collection',
63
+ placeholder: 'Add Option',
64
+ default: {},
65
+ displayOptions: {
66
+ show: {
67
+ resource: ['assistants'],
68
+ operation: ['create'],
69
+ },
70
+ },
71
+ options: [
72
+ {
73
+ displayName: 'Description',
74
+ name: 'description',
75
+ type: 'string',
76
+ default: '',
77
+ description: 'Description of the assistant',
78
+ },
79
+ ],
80
+ },
81
+ ];
82
+ exports.assistantsSearchDescription = [
83
+ {
84
+ displayName: 'Assistant ID',
85
+ name: 'assistantId',
86
+ type: 'string',
87
+ default: '',
88
+ required: true,
89
+ displayOptions: {
90
+ show: {
91
+ resource: ['assistants'],
92
+ operation: ['search'],
93
+ },
94
+ },
95
+ description: 'The ID of the assistant to search in',
96
+ },
97
+ {
98
+ displayName: 'Query',
99
+ name: 'query',
100
+ type: 'string',
101
+ default: '',
102
+ required: true,
103
+ displayOptions: {
104
+ show: {
105
+ resource: ['assistants'],
106
+ operation: ['search'],
107
+ },
108
+ },
109
+ description: 'Search query to execute',
110
+ },
111
+ {
112
+ displayName: 'Options',
113
+ name: 'options',
114
+ type: 'collection',
115
+ placeholder: 'Add Option',
116
+ default: {},
117
+ displayOptions: {
118
+ show: {
119
+ resource: ['assistants'],
120
+ operation: ['search'],
121
+ },
122
+ },
123
+ options: [
124
+ {
125
+ displayName: 'Top N Results',
126
+ name: 'topN',
127
+ type: 'number',
128
+ default: 5,
129
+ description: 'Number of top results to return (max 50)',
130
+ },
131
+ {
132
+ displayName: 'Search Mode',
133
+ name: 'mode',
134
+ type: 'options',
135
+ options: [
136
+ {
137
+ name: 'SIMPLE',
138
+ value: 'SIMPLE',
139
+ description: 'Semantic search only',
140
+ },
141
+ {
142
+ name: 'FULL',
143
+ value: 'FULL',
144
+ description: 'Semantic search with reranking and hybrid search',
145
+ },
146
+ ],
147
+ default: 'SIMPLE',
148
+ description: 'Search mode to use',
149
+ },
150
+ ],
151
+ },
152
+ ];
153
+ exports.assistantsDeleteDescription = [
154
+ {
155
+ displayName: 'Assistant ID',
156
+ name: 'assistantId',
157
+ type: 'string',
158
+ default: '',
159
+ required: true,
160
+ displayOptions: {
161
+ show: {
162
+ resource: ['assistants'],
163
+ operation: ['delete'],
164
+ },
165
+ },
166
+ description: 'The ID of the assistant to delete',
167
+ },
168
+ ];
169
+ exports.assistantDescription = [
170
+ {
171
+ displayName: 'Operation',
172
+ name: 'operation',
173
+ type: 'options',
174
+ noDataExpression: true,
175
+ displayOptions: {
176
+ show: {
177
+ resource: ['assistants'],
178
+ },
179
+ },
180
+ options: [
181
+ {
182
+ name: 'Get All',
183
+ value: 'getAll',
184
+ action: 'Get all assistants',
185
+ description: 'Retrieve all available assistants',
186
+ },
187
+ {
188
+ name: 'Get',
189
+ value: 'get',
190
+ action: 'Get an assistant',
191
+ description: 'Retrieve a specific assistant by ID',
192
+ },
193
+ {
194
+ name: 'Create',
195
+ value: 'create',
196
+ action: 'Create an assistant',
197
+ description: 'Create a new assistant',
198
+ },
199
+ {
200
+ name: 'Search',
201
+ value: 'search',
202
+ action: 'Search assistant sources',
203
+ description: 'Perform search in assistant sources',
204
+ },
205
+ {
206
+ name: 'Delete',
207
+ value: 'delete',
208
+ action: 'Delete an assistant',
209
+ description: 'Delete an assistant',
210
+ },
211
+ ],
212
+ default: 'getAll',
213
+ },
214
+ ...exports.assistantsGetAllDescription,
215
+ ...exports.assistantsGetDescription,
216
+ ...exports.assistantsCreateDescription,
217
+ ...exports.assistantsSearchDescription,
218
+ ...exports.assistantsDeleteDescription,
219
+ ];
@@ -0,0 +1,7 @@
1
+ import type { INodeProperties } from 'n8n-workflow';
2
+ export declare const auditsGetAllDescription: INodeProperties[];
3
+ export declare const auditsGetDescription: INodeProperties[];
4
+ export declare const auditsGetSourcesDescription: INodeProperties[];
5
+ export declare const auditsGetTypesDescription: INodeProperties[];
6
+ export declare const auditsGetSettingsDescription: INodeProperties[];
7
+ export declare const auditDescription: INodeProperties[];