@varify-io/n8n-nodes-varify 0.2.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.
@@ -0,0 +1,567 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.allParameters = void 0;
4
+ const STATUS_OPTIONS = [
5
+ {
6
+ name: 'Active',
7
+ value: 'active',
8
+ description: 'Experiment is running',
9
+ },
10
+ {
11
+ name: 'Archived',
12
+ value: 'archived',
13
+ description: 'Experiment is archived',
14
+ },
15
+ {
16
+ name: 'Initial',
17
+ value: 'initial',
18
+ description: 'Experiment is in initial state',
19
+ },
20
+ {
21
+ name: 'Paused',
22
+ value: 'paused',
23
+ description: 'Experiment is paused',
24
+ },
25
+ {
26
+ name: 'QA',
27
+ value: 'qa',
28
+ description: 'Experiment is in QA testing',
29
+ },
30
+ ];
31
+ const experimentIdParameter = [
32
+ {
33
+ displayName: 'Experiment ID',
34
+ name: 'experimentId',
35
+ type: 'string',
36
+ required: true,
37
+ displayOptions: {
38
+ show: {
39
+ resource: ['experiment', 'report'],
40
+ operation: [
41
+ 'get',
42
+ 'update',
43
+ 'updateStatus',
44
+ 'duplicate',
45
+ 'updateTrafficAllocation',
46
+ 'toggleTracking',
47
+ 'getReport',
48
+ 'getDailyReport',
49
+ 'getRawRevenueReport',
50
+ ],
51
+ },
52
+ },
53
+ default: '',
54
+ description: 'The ID of the experiment',
55
+ placeholder: '12345',
56
+ },
57
+ ];
58
+ const paginationParameters = [
59
+ {
60
+ displayName: 'Page ID',
61
+ name: 'page_id',
62
+ type: 'number',
63
+ displayOptions: {
64
+ show: {
65
+ resource: ['experiment'],
66
+ operation: ['getAll'],
67
+ },
68
+ },
69
+ default: 1,
70
+ description: 'The page number to retrieve (starts at 1)',
71
+ typeOptions: {
72
+ minValue: 1,
73
+ },
74
+ },
75
+ {
76
+ displayName: 'Per Page',
77
+ name: 'per_page',
78
+ type: 'number',
79
+ displayOptions: {
80
+ show: {
81
+ resource: ['experiment'],
82
+ operation: ['getAll'],
83
+ },
84
+ },
85
+ default: 15,
86
+ description: 'Number of items to return per page',
87
+ typeOptions: {
88
+ minValue: 1,
89
+ maxValue: 100,
90
+ },
91
+ },
92
+ ];
93
+ const filteringParameters = [
94
+ {
95
+ displayName: 'Filter by Status',
96
+ name: 'filter_by_status',
97
+ type: 'options',
98
+ displayOptions: {
99
+ show: {
100
+ resource: ['experiment'],
101
+ operation: ['getAll'],
102
+ },
103
+ },
104
+ options: [{ name: 'All', value: '' }, ...STATUS_OPTIONS],
105
+ default: '',
106
+ description: 'Filter experiments by status',
107
+ },
108
+ {
109
+ displayName: 'Filter by Name',
110
+ name: 'filter_by_name',
111
+ type: 'string',
112
+ displayOptions: {
113
+ show: {
114
+ resource: ['experiment'],
115
+ operation: ['getAll'],
116
+ },
117
+ },
118
+ default: '',
119
+ description: 'Filter experiments by name (partial match)',
120
+ placeholder: 'Homepage Test',
121
+ },
122
+ {
123
+ displayName: 'Order By',
124
+ name: 'order_by',
125
+ type: 'options',
126
+ displayOptions: {
127
+ show: {
128
+ resource: ['experiment'],
129
+ operation: ['getAll'],
130
+ },
131
+ },
132
+ options: [
133
+ {
134
+ name: 'Created At',
135
+ value: 'created_at',
136
+ },
137
+ {
138
+ name: 'Updated At',
139
+ value: 'updated_at',
140
+ },
141
+ {
142
+ name: 'Name',
143
+ value: 'name',
144
+ },
145
+ {
146
+ name: 'Status',
147
+ value: 'status',
148
+ },
149
+ ],
150
+ default: 'created_at',
151
+ description: 'Field to order results by',
152
+ },
153
+ {
154
+ displayName: 'Order Direction',
155
+ name: 'order_direction',
156
+ type: 'options',
157
+ displayOptions: {
158
+ show: {
159
+ resource: ['experiment'],
160
+ operation: ['getAll'],
161
+ },
162
+ },
163
+ options: [
164
+ {
165
+ name: 'Ascending',
166
+ value: 'asc',
167
+ },
168
+ {
169
+ name: 'Descending',
170
+ value: 'desc',
171
+ },
172
+ ],
173
+ default: 'desc',
174
+ description: 'Direction to order results',
175
+ },
176
+ ];
177
+ const createExperimentParameters = [
178
+ {
179
+ displayName: 'Name',
180
+ name: 'name',
181
+ type: 'string',
182
+ required: true,
183
+ displayOptions: {
184
+ show: {
185
+ resource: ['experiment'],
186
+ operation: ['create'],
187
+ },
188
+ },
189
+ default: '',
190
+ description: 'The name of the experiment',
191
+ placeholder: 'Homepage Hero Test',
192
+ },
193
+ {
194
+ displayName: 'Page URL',
195
+ name: 'page_url',
196
+ type: 'string',
197
+ required: true,
198
+ displayOptions: {
199
+ show: {
200
+ resource: ['experiment'],
201
+ operation: ['create'],
202
+ },
203
+ },
204
+ default: '',
205
+ description: 'The URL of the page where the experiment will run',
206
+ placeholder: 'https://example.com/homepage',
207
+ },
208
+ {
209
+ displayName: 'Page Name',
210
+ name: 'page_name',
211
+ type: 'string',
212
+ displayOptions: {
213
+ show: {
214
+ resource: ['experiment'],
215
+ operation: ['create'],
216
+ },
217
+ },
218
+ default: '',
219
+ description: 'Optional name for the page',
220
+ placeholder: 'Homepage',
221
+ },
222
+ {
223
+ displayName: 'Tracking Enabled',
224
+ name: 'tracking_enabled',
225
+ type: 'boolean',
226
+ displayOptions: {
227
+ show: {
228
+ resource: ['experiment'],
229
+ operation: ['create'],
230
+ },
231
+ },
232
+ default: true,
233
+ description: 'Whether tracking is enabled for this experiment',
234
+ },
235
+ {
236
+ displayName: 'Variations',
237
+ name: 'variations',
238
+ type: 'json',
239
+ required: true,
240
+ displayOptions: {
241
+ show: {
242
+ resource: ['experiment'],
243
+ operation: ['create'],
244
+ },
245
+ },
246
+ default: JSON.stringify([
247
+ {
248
+ name: 'Control',
249
+ traffic_allocation: 50,
250
+ },
251
+ {
252
+ name: 'Variation A',
253
+ traffic_allocation: 50,
254
+ javascript: "console.log('Variation A');",
255
+ javascript_reset: "console.log('Reset');",
256
+ css: '.hero { background: blue; }',
257
+ extensions: [],
258
+ changesets: [],
259
+ redirect_url: 'https://example.com/variant',
260
+ ga4_audience_id: 'aud_123',
261
+ },
262
+ ], null, 2),
263
+ description: 'Array of variations. Required: name, traffic_allocation (0-100). Optional: javascript, javascript_reset, css, extensions (array), changesets (array), redirect_url (max 255 chars), ga4_audience_id (max 255 chars).',
264
+ typeOptions: {
265
+ alwaysOpenEditWindow: true,
266
+ },
267
+ },
268
+ {
269
+ displayName: 'Audience Targeting',
270
+ name: 'audience_targeting',
271
+ type: 'json',
272
+ displayOptions: {
273
+ show: {
274
+ resource: ['experiment'],
275
+ operation: ['create'],
276
+ },
277
+ },
278
+ default: '',
279
+ description: 'Optional audience targeting rules as nested array structure. Example: [[{"type": "device", "operator": "equals", "value": "desktop"}]].',
280
+ typeOptions: {
281
+ alwaysOpenEditWindow: true,
282
+ },
283
+ },
284
+ {
285
+ displayName: 'Page Targeting',
286
+ name: 'page_targeting',
287
+ type: 'json',
288
+ displayOptions: {
289
+ show: {
290
+ resource: ['experiment'],
291
+ operation: ['create'],
292
+ },
293
+ },
294
+ default: '',
295
+ description: 'Optional page targeting rules as nested array structure. Example: [[{"type": "URL", "operator": "contains", "value": "/products"}]].',
296
+ typeOptions: {
297
+ alwaysOpenEditWindow: true,
298
+ },
299
+ },
300
+ ];
301
+ const updateExperimentParameters = [
302
+ {
303
+ displayName: 'Name',
304
+ name: 'name',
305
+ type: 'string',
306
+ displayOptions: {
307
+ show: {
308
+ resource: ['experiment'],
309
+ operation: ['update'],
310
+ },
311
+ },
312
+ default: '',
313
+ description: 'The new name for the experiment (leave empty to keep current)',
314
+ placeholder: 'Updated Experiment Name',
315
+ },
316
+ {
317
+ displayName: 'Page URL',
318
+ name: 'page_url',
319
+ type: 'string',
320
+ displayOptions: {
321
+ show: {
322
+ resource: ['experiment'],
323
+ operation: ['update'],
324
+ },
325
+ },
326
+ default: '',
327
+ description: 'Updated page URL where the experiment will run (leave empty to keep current)',
328
+ placeholder: 'https://example.com/homepage',
329
+ },
330
+ {
331
+ displayName: 'Page Name',
332
+ name: 'page_name',
333
+ type: 'string',
334
+ displayOptions: {
335
+ show: {
336
+ resource: ['experiment'],
337
+ operation: ['update'],
338
+ },
339
+ },
340
+ default: '',
341
+ description: 'Updated page name (leave empty to keep current)',
342
+ placeholder: 'Homepage',
343
+ },
344
+ {
345
+ displayName: 'Tracking Enabled',
346
+ name: 'tracking_enabled',
347
+ type: 'boolean',
348
+ displayOptions: {
349
+ show: {
350
+ resource: ['experiment'],
351
+ operation: ['update'],
352
+ },
353
+ },
354
+ default: true,
355
+ description: 'Whether tracking is enabled for this experiment',
356
+ },
357
+ {
358
+ displayName: 'GA4 Audience ID',
359
+ name: 'ga4_audience_id',
360
+ type: 'string',
361
+ displayOptions: {
362
+ show: {
363
+ resource: ['experiment'],
364
+ operation: ['update'],
365
+ },
366
+ },
367
+ default: '',
368
+ description: 'Google Analytics 4 audience ID for this experiment',
369
+ placeholder: '12345',
370
+ },
371
+ {
372
+ displayName: 'Status',
373
+ name: 'status',
374
+ type: 'options',
375
+ displayOptions: {
376
+ show: {
377
+ resource: ['experiment'],
378
+ operation: ['update'],
379
+ },
380
+ },
381
+ options: STATUS_OPTIONS,
382
+ default: 'initial',
383
+ description: 'Updated experiment status (leave empty to keep current)',
384
+ },
385
+ {
386
+ displayName: 'Variations',
387
+ name: 'variations',
388
+ type: 'json',
389
+ displayOptions: {
390
+ show: {
391
+ resource: ['experiment'],
392
+ operation: ['update'],
393
+ },
394
+ },
395
+ default: '',
396
+ description: 'Update or create variations. Include ID to update existing, omit ID to create new.',
397
+ typeOptions: {
398
+ alwaysOpenEditWindow: true,
399
+ },
400
+ },
401
+ {
402
+ displayName: 'Audience Targeting',
403
+ name: 'audience_targeting',
404
+ type: 'json',
405
+ displayOptions: {
406
+ show: {
407
+ resource: ['experiment'],
408
+ operation: ['update'],
409
+ },
410
+ },
411
+ default: '',
412
+ description: 'Updated audience targeting rules as nested array structure. Example: [[{"type": "device", "operator": "equals", "value": "desktop"}]].',
413
+ typeOptions: {
414
+ alwaysOpenEditWindow: true,
415
+ },
416
+ },
417
+ {
418
+ displayName: 'Page Targeting',
419
+ name: 'page_targeting',
420
+ type: 'json',
421
+ displayOptions: {
422
+ show: {
423
+ resource: ['experiment'],
424
+ operation: ['update'],
425
+ },
426
+ },
427
+ default: '',
428
+ description: 'Updated page targeting rules as nested array structure. Example: [[{"type": "URL", "operator": "contains", "value": "/products"}]].',
429
+ typeOptions: {
430
+ alwaysOpenEditWindow: true,
431
+ },
432
+ },
433
+ ];
434
+ const statusParameter = [
435
+ {
436
+ displayName: 'Status',
437
+ name: 'status',
438
+ type: 'options',
439
+ required: true,
440
+ displayOptions: {
441
+ show: {
442
+ resource: ['experiment'],
443
+ operation: ['updateStatus'],
444
+ },
445
+ },
446
+ options: STATUS_OPTIONS,
447
+ default: 'initial',
448
+ description: 'The new status for the experiment',
449
+ },
450
+ ];
451
+ const trafficAllocationParameter = [
452
+ {
453
+ displayName: 'Variations',
454
+ name: 'variations',
455
+ type: 'json',
456
+ required: true,
457
+ displayOptions: {
458
+ show: {
459
+ resource: ['experiment'],
460
+ operation: ['updateTrafficAllocation'],
461
+ },
462
+ },
463
+ default: JSON.stringify([
464
+ { id: 123, traffic_allocation: 60 },
465
+ { id: 456, traffic_allocation: 40 },
466
+ ], null, 2),
467
+ description: 'Array of variations with updated traffic allocation. Each variation must have an ID (number) and traffic_allocation (0-100). Total must not exceed 100%.',
468
+ typeOptions: {
469
+ alwaysOpenEditWindow: true,
470
+ },
471
+ },
472
+ ];
473
+ const reportParameters = [
474
+ {
475
+ displayName: 'Start Date',
476
+ name: 'start_date',
477
+ type: 'dateTime',
478
+ required: true,
479
+ displayOptions: {
480
+ show: {
481
+ resource: ['report'],
482
+ operation: ['getReport', 'getDailyReport', 'getRawRevenueReport'],
483
+ },
484
+ },
485
+ default: '',
486
+ placeholder: '2024-01-01',
487
+ description: 'Start date for report data in YYYY-MM-DD format',
488
+ },
489
+ {
490
+ displayName: 'End Date',
491
+ name: 'end_date',
492
+ type: 'dateTime',
493
+ required: true,
494
+ displayOptions: {
495
+ show: {
496
+ resource: ['report'],
497
+ operation: ['getReport', 'getDailyReport', 'getRawRevenueReport'],
498
+ },
499
+ },
500
+ default: '',
501
+ placeholder: '2024-01-31',
502
+ description: 'End date for report data in YYYY-MM-DD format',
503
+ },
504
+ {
505
+ displayName: 'Report Type',
506
+ name: 'report_type',
507
+ type: 'options',
508
+ required: true,
509
+ displayOptions: {
510
+ show: {
511
+ resource: ['report'],
512
+ operation: ['getReport', 'getDailyReport', 'getRawRevenueReport'],
513
+ },
514
+ },
515
+ options: [
516
+ {
517
+ name: 'Google Analytics 4',
518
+ value: 'ga4',
519
+ description: 'Use Google Analytics 4 as the data source',
520
+ },
521
+ {
522
+ name: 'PostHog',
523
+ value: 'posthog',
524
+ description: 'Use PostHog as the data source',
525
+ },
526
+ ],
527
+ default: 'ga4',
528
+ description: 'Analytics provider to use for report data',
529
+ },
530
+ {
531
+ displayName: 'Exclude Duplicate Events',
532
+ name: 'should_exclude_duplicate_user_events',
533
+ type: 'boolean',
534
+ displayOptions: {
535
+ show: {
536
+ resource: ['report'],
537
+ operation: ['getReport', 'getDailyReport', 'getRawRevenueReport'],
538
+ },
539
+ },
540
+ default: false,
541
+ description: 'Whether to exclude duplicate user events from the report',
542
+ },
543
+ {
544
+ displayName: 'Raw Data',
545
+ name: 'raw_data',
546
+ type: 'boolean',
547
+ displayOptions: {
548
+ show: {
549
+ resource: ['report'],
550
+ operation: ['getReport', 'getRawRevenueReport'],
551
+ },
552
+ },
553
+ default: false,
554
+ description: 'Whether raw data should be returned, instead of formatted report',
555
+ },
556
+ ];
557
+ exports.allParameters = [
558
+ ...experimentIdParameter,
559
+ ...paginationParameters,
560
+ ...filteringParameters,
561
+ ...createExperimentParameters,
562
+ ...updateExperimentParameters,
563
+ ...statusParameter,
564
+ ...trafficAllocationParameter,
565
+ ...reportParameters,
566
+ ];
567
+ //# sourceMappingURL=properties.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"properties.js","sourceRoot":"","sources":["../../../../nodes/Varify/config/properties.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@varify-io/n8n-nodes-varify",
3
+ "version": "0.2.0",
4
+ "license": "MIT",
5
+ "homepage": "",
6
+ "description": "n8n node for varify papi",
7
+ "keywords": [
8
+ "n8n-community-node-package"
9
+ ],
10
+ "engines": {
11
+ "node": "22.16.0"
12
+ },
13
+ "author": {
14
+ "name": "Dan Schalow",
15
+ "email": "dan@varify.io"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://gitlab.com/varify/n8n-nodes.git"
20
+ },
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "scripts": {
25
+ "build": "n8n-node build",
26
+ "build:watch": "tsc --watch",
27
+ "dev": "n8n-node dev",
28
+ "lint": "n8n-node lint",
29
+ "lint:fix": "n8n-node lint --fix",
30
+ "release": "n8n-node release",
31
+ "prepublishOnly": "n8n-node prerelease"
32
+ },
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "n8n": {
37
+ "n8nNodesApiVersion": 1,
38
+ "strict": true,
39
+ "credentials": [
40
+ "dist/credentials/VarifyOAuth2Api.credentials.js"
41
+ ],
42
+ "nodes": [
43
+ "dist/nodes/Varify/Varify.node.js"
44
+ ]
45
+ },
46
+ "devDependencies": {
47
+ "@n8n/node-cli": "*",
48
+ "eslint": "9.32.0",
49
+ "prettier": "3.6.2",
50
+ "release-it": "^19.0.4",
51
+ "typescript": "5.9.2"
52
+ },
53
+ "peerDependencies": {
54
+ "n8n-workflow": "*"
55
+ },
56
+ "packageManager": "pnpm@9.15.5+sha512.845196026aab1cc3f098a0474b64dfbab2afe7a1b4e91dd86895d8e4aa32a7a6d03049e2d0ad770bbe4de023a7122fb68c1a1d6e0d033c7076085f9d5d4800d4"
57
+ }