@walkeros/server-destination-customerio 3.4.0-next-1776749829492

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,1074 @@
1
+ {
2
+ "$meta": {
3
+ "package": "@walkeros/server-destination-customerio",
4
+ "version": "3.4.0-next-1776749829492",
5
+ "type": "destination",
6
+ "platform": [
7
+ "server"
8
+ ],
9
+ "docs": "https://www.walkeros.io/docs/destinations/server/customerio",
10
+ "source": "https://github.com/elbwalker/walkerOS/tree/main/packages/server/destinations/customerio/src"
11
+ },
12
+ "schemas": {
13
+ "mapping": {
14
+ "$schema": "http://json-schema.org/draft-07/schema#",
15
+ "type": "object",
16
+ "properties": {
17
+ "identify": {
18
+ "description": "Per-event identify attributes. Resolves to { email?, first_name?, ... }. Use with skip: true on login/identify events."
19
+ },
20
+ "page": {
21
+ "description": "Per-event page view. Resolves to { url, ... }. Calls trackPageView(). Use with skip: true."
22
+ },
23
+ "destroy": {
24
+ "type": "boolean",
25
+ "description": "Permanently delete person from Customer.io. Set true on delete events with skip: true."
26
+ },
27
+ "suppress": {
28
+ "type": "boolean",
29
+ "description": "Suppress person (stop messaging without deleting data). Set true with skip: true."
30
+ },
31
+ "unsuppress": {
32
+ "type": "boolean",
33
+ "description": "Unsuppress person (resume messaging). Set true with skip: true."
34
+ },
35
+ "addDevice": {
36
+ "description": "Register push device. Resolves to { deviceId, platform, data? }. Use with skip: true."
37
+ },
38
+ "deleteDevice": {
39
+ "description": "Remove push device. Resolves to { deviceId, platform }. Use with skip: true."
40
+ },
41
+ "merge": {
42
+ "description": "Merge duplicate profiles. Resolves to { primaryType, primaryId, secondaryType, secondaryId }. Use with skip: true."
43
+ },
44
+ "sendEmail": {
45
+ "description": "Send transactional email. Resolves to { to, transactional_message_id, message_data?, identifiers? }. Requires appApiKey. Use with skip: true."
46
+ },
47
+ "sendPush": {
48
+ "description": "Send transactional push. Resolves to { transactional_message_id, message_data?, identifiers? }. Requires appApiKey. Use with skip: true."
49
+ }
50
+ },
51
+ "additionalProperties": false
52
+ },
53
+ "settings": {
54
+ "$schema": "http://json-schema.org/draft-07/schema#",
55
+ "type": "object",
56
+ "properties": {
57
+ "siteId": {
58
+ "type": "string",
59
+ "minLength": 1,
60
+ "description": "Customer.io Site ID. Find it in Settings > Workspace Settings > API Credentials."
61
+ },
62
+ "apiKey": {
63
+ "type": "string",
64
+ "minLength": 1,
65
+ "description": "Customer.io API Key. Find it in Settings > Workspace Settings > API Credentials."
66
+ },
67
+ "appApiKey": {
68
+ "type": "string",
69
+ "description": "App API Key for transactional messaging (sendEmail/sendPush). Find it in Settings > Workspace Settings > API Credentials > App API Keys."
70
+ },
71
+ "region": {
72
+ "type": "string",
73
+ "enum": [
74
+ "us",
75
+ "eu"
76
+ ],
77
+ "description": "Data center region. Must match where your Customer.io workspace was created. Default: us."
78
+ },
79
+ "timeout": {
80
+ "type": "integer",
81
+ "exclusiveMinimum": 0,
82
+ "maximum": 9007199254740991,
83
+ "description": "HTTP request timeout in milliseconds. Default: 10000."
84
+ },
85
+ "customerId": {
86
+ "type": "string",
87
+ "description": "walkerOS mapping value path to resolve customerId from each event (like user.id)."
88
+ },
89
+ "anonymousId": {
90
+ "type": "string",
91
+ "description": "walkerOS mapping value path to resolve anonymousId from each event (like user.session)."
92
+ },
93
+ "identify": {
94
+ "description": "Destination-level identity mapping. Resolves to { email?, first_name?, ... } attributes. Fires identify() on first push and re-fires when values change."
95
+ }
96
+ },
97
+ "required": [
98
+ "siteId",
99
+ "apiKey"
100
+ ],
101
+ "additionalProperties": false
102
+ }
103
+ },
104
+ "examples": {
105
+ "env": {
106
+ "push": {
107
+ "trackClient": {
108
+ "identify": {
109
+ "$code": "()=>Promise.resolve()"
110
+ },
111
+ "track": {
112
+ "$code": "()=>Promise.resolve()"
113
+ },
114
+ "trackAnonymous": {
115
+ "$code": "()=>Promise.resolve()"
116
+ },
117
+ "trackPageView": {
118
+ "$code": "()=>Promise.resolve()"
119
+ },
120
+ "destroy": {
121
+ "$code": "()=>Promise.resolve()"
122
+ },
123
+ "suppress": {
124
+ "$code": "()=>Promise.resolve()"
125
+ },
126
+ "unsuppress": {
127
+ "$code": "()=>Promise.resolve()"
128
+ },
129
+ "addDevice": {
130
+ "$code": "()=>Promise.resolve()"
131
+ },
132
+ "deleteDevice": {
133
+ "$code": "()=>Promise.resolve()"
134
+ },
135
+ "mergeCustomers": {
136
+ "$code": "()=>Promise.resolve()"
137
+ }
138
+ },
139
+ "apiClient": {
140
+ "sendEmail": {
141
+ "$code": "()=>Promise.resolve()"
142
+ },
143
+ "sendPush": {
144
+ "$code": "()=>Promise.resolve()"
145
+ }
146
+ }
147
+ },
148
+ "simulation": [
149
+ "call:trackClient.identify",
150
+ "call:trackClient.track",
151
+ "call:trackClient.trackAnonymous",
152
+ "call:trackClient.trackPageView",
153
+ "call:trackClient.destroy",
154
+ "call:trackClient.suppress",
155
+ "call:trackClient.unsuppress",
156
+ "call:trackClient.addDevice",
157
+ "call:trackClient.deleteDevice",
158
+ "call:trackClient.mergeCustomers",
159
+ "call:apiClient.sendEmail",
160
+ "call:apiClient.sendPush"
161
+ ]
162
+ },
163
+ "step": {
164
+ "anonymousTrack": {
165
+ "in": {
166
+ "name": "product view",
167
+ "data": {
168
+ "id": "ers",
169
+ "name": "Everyday Ruck Snack",
170
+ "color": "black",
171
+ "size": "l",
172
+ "price": 420
173
+ },
174
+ "context": {
175
+ "shopping": [
176
+ "detail",
177
+ 0
178
+ ]
179
+ },
180
+ "globals": {
181
+ "pagegroup": "shop"
182
+ },
183
+ "custom": {
184
+ "completely": "random"
185
+ },
186
+ "user": {
187
+ "session": "s3ss10n"
188
+ },
189
+ "nested": [],
190
+ "consent": {
191
+ "functional": true
192
+ },
193
+ "id": "1700000103-gr0up-1",
194
+ "trigger": "load",
195
+ "entity": "product",
196
+ "action": "view",
197
+ "timestamp": 1700000103,
198
+ "timing": 3.14,
199
+ "group": "gr0up",
200
+ "count": 1,
201
+ "version": {
202
+ "source": "3.4.0-next-1776749829492",
203
+ "tagging": 1
204
+ },
205
+ "source": {
206
+ "type": "web",
207
+ "id": "https://localhost:80",
208
+ "previous_id": "http://remotehost:9001"
209
+ }
210
+ },
211
+ "settings": {},
212
+ "out": [
213
+ [
214
+ "trackClient.trackAnonymous",
215
+ "s3ss10n",
216
+ {
217
+ "name": "product view",
218
+ "data": {},
219
+ "timestamp": 1700000
220
+ }
221
+ ]
222
+ ]
223
+ },
224
+ "defaultTrack": {
225
+ "in": {
226
+ "name": "product view",
227
+ "data": {
228
+ "id": "ers",
229
+ "name": "Everyday Ruck Snack",
230
+ "color": "black",
231
+ "size": "l",
232
+ "price": 420
233
+ },
234
+ "context": {
235
+ "shopping": [
236
+ "detail",
237
+ 0
238
+ ]
239
+ },
240
+ "globals": {
241
+ "pagegroup": "shop"
242
+ },
243
+ "custom": {
244
+ "completely": "random"
245
+ },
246
+ "user": {
247
+ "id": "us3r",
248
+ "session": "s3ss10n"
249
+ },
250
+ "nested": [],
251
+ "consent": {
252
+ "functional": true
253
+ },
254
+ "id": "1700000100-gr0up-1",
255
+ "trigger": "load",
256
+ "entity": "product",
257
+ "action": "view",
258
+ "timestamp": 1700000100,
259
+ "timing": 3.14,
260
+ "group": "gr0up",
261
+ "count": 1,
262
+ "version": {
263
+ "source": "3.4.0-next-1776749829492",
264
+ "tagging": 1
265
+ },
266
+ "source": {
267
+ "type": "web",
268
+ "id": "https://localhost:80",
269
+ "previous_id": "http://remotehost:9001"
270
+ }
271
+ },
272
+ "out": [
273
+ [
274
+ "trackClient.track",
275
+ "us3r",
276
+ {
277
+ "name": "product view",
278
+ "data": {},
279
+ "timestamp": 1700000
280
+ }
281
+ ]
282
+ ]
283
+ },
284
+ "destinationIdentify": {
285
+ "in": {
286
+ "name": "page view",
287
+ "data": {
288
+ "domain": "www.example.com",
289
+ "title": "walkerOS documentation",
290
+ "referrer": "https://www.walkeros.io/",
291
+ "search": "?foo=bar",
292
+ "hash": "#hash",
293
+ "id": "/docs/"
294
+ },
295
+ "context": {
296
+ "dev": [
297
+ "test",
298
+ 1
299
+ ]
300
+ },
301
+ "globals": {
302
+ "pagegroup": "docs"
303
+ },
304
+ "custom": {
305
+ "completely": "random"
306
+ },
307
+ "user": {
308
+ "id": "us3r",
309
+ "session": "s3ss10n",
310
+ "email": "user@example.com"
311
+ },
312
+ "nested": [
313
+ {
314
+ "entity": "child",
315
+ "data": {
316
+ "is": "subordinated"
317
+ },
318
+ "nested": [],
319
+ "context": {
320
+ "element": [
321
+ "child",
322
+ 0
323
+ ]
324
+ }
325
+ }
326
+ ],
327
+ "consent": {
328
+ "functional": true
329
+ },
330
+ "id": "1700000104-gr0up-1",
331
+ "trigger": "load",
332
+ "entity": "page",
333
+ "action": "view",
334
+ "timestamp": 1700000104,
335
+ "timing": 3.14,
336
+ "group": "gr0up",
337
+ "count": 1,
338
+ "version": {
339
+ "source": "3.4.0-next-1776749829492",
340
+ "tagging": 1
341
+ },
342
+ "source": {
343
+ "type": "web",
344
+ "id": "https://localhost:80",
345
+ "previous_id": "http://remotehost:9001"
346
+ }
347
+ },
348
+ "settings": {
349
+ "identify": {
350
+ "map": {
351
+ "email": "user.email"
352
+ }
353
+ }
354
+ },
355
+ "out": [
356
+ [
357
+ "trackClient.identify",
358
+ "us3r",
359
+ {
360
+ "email": "user@example.com"
361
+ }
362
+ ],
363
+ [
364
+ "trackClient.track",
365
+ "us3r",
366
+ {
367
+ "name": "page view",
368
+ "data": {},
369
+ "timestamp": 1700000
370
+ }
371
+ ]
372
+ ]
373
+ },
374
+ "destroyPerson": {
375
+ "in": {
376
+ "name": "user delete",
377
+ "data": {
378
+ "string": "foo",
379
+ "number": 1,
380
+ "boolean": true,
381
+ "array": [
382
+ 0,
383
+ "text",
384
+ false
385
+ ]
386
+ },
387
+ "context": {
388
+ "dev": [
389
+ "test",
390
+ 1
391
+ ]
392
+ },
393
+ "globals": {
394
+ "lang": "elb"
395
+ },
396
+ "custom": {
397
+ "completely": "random"
398
+ },
399
+ "user": {
400
+ "id": "us3r",
401
+ "session": "s3ss10n"
402
+ },
403
+ "nested": [
404
+ {
405
+ "entity": "child",
406
+ "data": {
407
+ "is": "subordinated"
408
+ },
409
+ "nested": [],
410
+ "context": {
411
+ "element": [
412
+ "child",
413
+ 0
414
+ ]
415
+ }
416
+ }
417
+ ],
418
+ "consent": {
419
+ "functional": true
420
+ },
421
+ "id": "1700000107-gr0up-1",
422
+ "trigger": "test",
423
+ "entity": "user",
424
+ "action": "delete",
425
+ "timestamp": 1700000107,
426
+ "timing": 3.14,
427
+ "group": "gr0up",
428
+ "count": 1,
429
+ "version": {
430
+ "source": "3.4.0-next-1776749829492",
431
+ "tagging": 1
432
+ },
433
+ "source": {
434
+ "type": "web",
435
+ "id": "https://localhost:80",
436
+ "previous_id": "http://remotehost:9001"
437
+ }
438
+ },
439
+ "mapping": {
440
+ "skip": true,
441
+ "settings": {
442
+ "destroy": true
443
+ }
444
+ },
445
+ "out": [
446
+ [
447
+ "trackClient.destroy",
448
+ "us3r"
449
+ ]
450
+ ]
451
+ },
452
+ "mappedData": {
453
+ "in": {
454
+ "name": "order complete",
455
+ "data": {
456
+ "id": "0rd3r1d",
457
+ "total": 555,
458
+ "currency": "EUR"
459
+ },
460
+ "context": {
461
+ "shopping": [
462
+ "complete",
463
+ 0
464
+ ]
465
+ },
466
+ "globals": {
467
+ "pagegroup": "shop"
468
+ },
469
+ "custom": {
470
+ "completely": "random"
471
+ },
472
+ "user": {
473
+ "id": "us3r",
474
+ "session": "s3ss10n"
475
+ },
476
+ "nested": [
477
+ {
478
+ "entity": "product",
479
+ "data": {
480
+ "id": "ers",
481
+ "name": "Everyday Ruck Snack",
482
+ "color": "black",
483
+ "size": "l",
484
+ "price": 420
485
+ },
486
+ "context": {
487
+ "shopping": [
488
+ "complete",
489
+ 0
490
+ ]
491
+ },
492
+ "nested": []
493
+ },
494
+ {
495
+ "entity": "product",
496
+ "data": {
497
+ "id": "cc",
498
+ "name": "Cool Cap",
499
+ "size": "one size",
500
+ "price": 42
501
+ },
502
+ "context": {
503
+ "shopping": [
504
+ "complete",
505
+ 0
506
+ ]
507
+ },
508
+ "nested": []
509
+ },
510
+ {
511
+ "entity": "gift",
512
+ "data": {
513
+ "name": "Surprise"
514
+ },
515
+ "context": {
516
+ "shopping": [
517
+ "complete",
518
+ 0
519
+ ]
520
+ },
521
+ "nested": []
522
+ }
523
+ ],
524
+ "consent": {
525
+ "functional": true
526
+ },
527
+ "id": "1700000102-gr0up-1",
528
+ "trigger": "load",
529
+ "entity": "order",
530
+ "action": "complete",
531
+ "timestamp": 1700000102,
532
+ "timing": 3.14,
533
+ "group": "gr0up",
534
+ "count": 1,
535
+ "version": {
536
+ "source": "3.4.0-next-1776749829492",
537
+ "tagging": 1
538
+ },
539
+ "source": {
540
+ "type": "web",
541
+ "id": "https://localhost:80",
542
+ "previous_id": "http://remotehost:9001"
543
+ }
544
+ },
545
+ "mapping": {
546
+ "name": "purchase",
547
+ "data": {
548
+ "map": {
549
+ "order_id": "data.id",
550
+ "value": "data.total",
551
+ "currency": "data.currency"
552
+ }
553
+ }
554
+ },
555
+ "out": [
556
+ [
557
+ "trackClient.track",
558
+ "us3r",
559
+ {
560
+ "name": "purchase",
561
+ "data": {
562
+ "order_id": "0rd3r1d",
563
+ "value": 555,
564
+ "currency": "EUR"
565
+ },
566
+ "timestamp": 1700000
567
+ }
568
+ ]
569
+ ]
570
+ },
571
+ "mappedEventName": {
572
+ "in": {
573
+ "name": "order complete",
574
+ "data": {
575
+ "id": "0rd3r1d",
576
+ "currency": "EUR",
577
+ "shipping": 5.22,
578
+ "taxes": 73.76,
579
+ "total": 555
580
+ },
581
+ "context": {
582
+ "shopping": [
583
+ "complete",
584
+ 0
585
+ ]
586
+ },
587
+ "globals": {
588
+ "pagegroup": "shop"
589
+ },
590
+ "custom": {
591
+ "completely": "random"
592
+ },
593
+ "user": {
594
+ "id": "us3r",
595
+ "session": "s3ss10n"
596
+ },
597
+ "nested": [
598
+ {
599
+ "entity": "product",
600
+ "data": {
601
+ "id": "ers",
602
+ "name": "Everyday Ruck Snack",
603
+ "color": "black",
604
+ "size": "l",
605
+ "price": 420
606
+ },
607
+ "context": {
608
+ "shopping": [
609
+ "complete",
610
+ 0
611
+ ]
612
+ },
613
+ "nested": []
614
+ },
615
+ {
616
+ "entity": "product",
617
+ "data": {
618
+ "id": "cc",
619
+ "name": "Cool Cap",
620
+ "size": "one size",
621
+ "price": 42
622
+ },
623
+ "context": {
624
+ "shopping": [
625
+ "complete",
626
+ 0
627
+ ]
628
+ },
629
+ "nested": []
630
+ },
631
+ {
632
+ "entity": "gift",
633
+ "data": {
634
+ "name": "Surprise"
635
+ },
636
+ "context": {
637
+ "shopping": [
638
+ "complete",
639
+ 0
640
+ ]
641
+ },
642
+ "nested": []
643
+ }
644
+ ],
645
+ "consent": {
646
+ "functional": true
647
+ },
648
+ "id": "1700000101-gr0up-1",
649
+ "trigger": "load",
650
+ "entity": "order",
651
+ "action": "complete",
652
+ "timestamp": 1700000101,
653
+ "timing": 3.14,
654
+ "group": "gr0up",
655
+ "count": 1,
656
+ "version": {
657
+ "source": "3.4.0-next-1776749829492",
658
+ "tagging": 1
659
+ },
660
+ "source": {
661
+ "type": "web",
662
+ "id": "https://localhost:80",
663
+ "previous_id": "http://remotehost:9001"
664
+ }
665
+ },
666
+ "mapping": {
667
+ "name": "purchase"
668
+ },
669
+ "out": [
670
+ [
671
+ "trackClient.track",
672
+ "us3r",
673
+ {
674
+ "name": "purchase",
675
+ "data": {},
676
+ "timestamp": 1700000
677
+ }
678
+ ]
679
+ ]
680
+ },
681
+ "pageView": {
682
+ "in": {
683
+ "name": "page view",
684
+ "data": {
685
+ "url": "https://example.com/pricing",
686
+ "referrer": "https://google.com"
687
+ },
688
+ "context": {
689
+ "dev": [
690
+ "test",
691
+ 1
692
+ ]
693
+ },
694
+ "globals": {
695
+ "pagegroup": "docs"
696
+ },
697
+ "custom": {
698
+ "completely": "random"
699
+ },
700
+ "user": {
701
+ "id": "us3r",
702
+ "session": "s3ss10n"
703
+ },
704
+ "nested": [
705
+ {
706
+ "entity": "child",
707
+ "data": {
708
+ "is": "subordinated"
709
+ },
710
+ "nested": [],
711
+ "context": {
712
+ "element": [
713
+ "child",
714
+ 0
715
+ ]
716
+ }
717
+ }
718
+ ],
719
+ "consent": {
720
+ "functional": true
721
+ },
722
+ "id": "1700000106-gr0up-1",
723
+ "trigger": "load",
724
+ "entity": "page",
725
+ "action": "view",
726
+ "timestamp": 1700000106,
727
+ "timing": 3.14,
728
+ "group": "gr0up",
729
+ "count": 1,
730
+ "version": {
731
+ "source": "3.4.0-next-1776749829492",
732
+ "tagging": 1
733
+ },
734
+ "source": {
735
+ "type": "web",
736
+ "id": "https://localhost:80",
737
+ "previous_id": "http://remotehost:9001"
738
+ }
739
+ },
740
+ "mapping": {
741
+ "skip": true,
742
+ "settings": {
743
+ "page": {
744
+ "map": {
745
+ "url": "data.url",
746
+ "referrer": "data.referrer"
747
+ }
748
+ }
749
+ }
750
+ },
751
+ "out": [
752
+ [
753
+ "trackClient.trackPageView",
754
+ "us3r",
755
+ "https://example.com/pricing",
756
+ {
757
+ "referrer": "https://google.com"
758
+ }
759
+ ]
760
+ ]
761
+ },
762
+ "suppressPerson": {
763
+ "in": {
764
+ "name": "user suppress",
765
+ "data": {
766
+ "string": "foo",
767
+ "number": 1,
768
+ "boolean": true,
769
+ "array": [
770
+ 0,
771
+ "text",
772
+ false
773
+ ]
774
+ },
775
+ "context": {
776
+ "dev": [
777
+ "test",
778
+ 1
779
+ ]
780
+ },
781
+ "globals": {
782
+ "lang": "elb"
783
+ },
784
+ "custom": {
785
+ "completely": "random"
786
+ },
787
+ "user": {
788
+ "id": "us3r",
789
+ "session": "s3ss10n"
790
+ },
791
+ "nested": [
792
+ {
793
+ "entity": "child",
794
+ "data": {
795
+ "is": "subordinated"
796
+ },
797
+ "nested": [],
798
+ "context": {
799
+ "element": [
800
+ "child",
801
+ 0
802
+ ]
803
+ }
804
+ }
805
+ ],
806
+ "consent": {
807
+ "functional": true
808
+ },
809
+ "id": "1700000108-gr0up-1",
810
+ "trigger": "test",
811
+ "entity": "user",
812
+ "action": "suppress",
813
+ "timestamp": 1700000108,
814
+ "timing": 3.14,
815
+ "group": "gr0up",
816
+ "count": 1,
817
+ "version": {
818
+ "source": "3.4.0-next-1776749829492",
819
+ "tagging": 1
820
+ },
821
+ "source": {
822
+ "type": "web",
823
+ "id": "https://localhost:80",
824
+ "previous_id": "http://remotehost:9001"
825
+ }
826
+ },
827
+ "mapping": {
828
+ "skip": true,
829
+ "settings": {
830
+ "suppress": true
831
+ }
832
+ },
833
+ "out": [
834
+ [
835
+ "trackClient.suppress",
836
+ "us3r"
837
+ ]
838
+ ]
839
+ },
840
+ "unsuppressPerson": {
841
+ "in": {
842
+ "name": "user unsuppress",
843
+ "data": {
844
+ "string": "foo",
845
+ "number": 1,
846
+ "boolean": true,
847
+ "array": [
848
+ 0,
849
+ "text",
850
+ false
851
+ ]
852
+ },
853
+ "context": {
854
+ "dev": [
855
+ "test",
856
+ 1
857
+ ]
858
+ },
859
+ "globals": {
860
+ "lang": "elb"
861
+ },
862
+ "custom": {
863
+ "completely": "random"
864
+ },
865
+ "user": {
866
+ "id": "us3r",
867
+ "session": "s3ss10n"
868
+ },
869
+ "nested": [
870
+ {
871
+ "entity": "child",
872
+ "data": {
873
+ "is": "subordinated"
874
+ },
875
+ "nested": [],
876
+ "context": {
877
+ "element": [
878
+ "child",
879
+ 0
880
+ ]
881
+ }
882
+ }
883
+ ],
884
+ "consent": {
885
+ "functional": true
886
+ },
887
+ "id": "1700000109-gr0up-1",
888
+ "trigger": "test",
889
+ "entity": "user",
890
+ "action": "unsuppress",
891
+ "timestamp": 1700000109,
892
+ "timing": 3.14,
893
+ "group": "gr0up",
894
+ "count": 1,
895
+ "version": {
896
+ "source": "3.4.0-next-1776749829492",
897
+ "tagging": 1
898
+ },
899
+ "source": {
900
+ "type": "web",
901
+ "id": "https://localhost:80",
902
+ "previous_id": "http://remotehost:9001"
903
+ }
904
+ },
905
+ "mapping": {
906
+ "skip": true,
907
+ "settings": {
908
+ "unsuppress": true
909
+ }
910
+ },
911
+ "out": [
912
+ [
913
+ "trackClient.unsuppress",
914
+ "us3r"
915
+ ]
916
+ ]
917
+ },
918
+ "userLoginIdentify": {
919
+ "in": {
920
+ "name": "user login",
921
+ "data": {
922
+ "email": "user@acme.com",
923
+ "first_name": "Jane",
924
+ "plan": "premium"
925
+ },
926
+ "context": {
927
+ "dev": [
928
+ "test",
929
+ 1
930
+ ]
931
+ },
932
+ "globals": {
933
+ "lang": "elb"
934
+ },
935
+ "custom": {
936
+ "completely": "random"
937
+ },
938
+ "user": {
939
+ "id": "us3r",
940
+ "session": "s3ss10n"
941
+ },
942
+ "nested": [
943
+ {
944
+ "entity": "child",
945
+ "data": {
946
+ "is": "subordinated"
947
+ },
948
+ "nested": [],
949
+ "context": {
950
+ "element": [
951
+ "child",
952
+ 0
953
+ ]
954
+ }
955
+ }
956
+ ],
957
+ "consent": {
958
+ "functional": true
959
+ },
960
+ "id": "1700000105-gr0up-1",
961
+ "trigger": "test",
962
+ "entity": "user",
963
+ "action": "login",
964
+ "timestamp": 1700000105,
965
+ "timing": 3.14,
966
+ "group": "gr0up",
967
+ "count": 1,
968
+ "version": {
969
+ "source": "3.4.0-next-1776749829492",
970
+ "tagging": 1
971
+ },
972
+ "source": {
973
+ "type": "web",
974
+ "id": "https://localhost:80",
975
+ "previous_id": "http://remotehost:9001"
976
+ }
977
+ },
978
+ "mapping": {
979
+ "skip": true,
980
+ "settings": {
981
+ "identify": {
982
+ "map": {
983
+ "email": "data.email",
984
+ "first_name": "data.first_name",
985
+ "plan": "data.plan"
986
+ }
987
+ }
988
+ }
989
+ },
990
+ "out": [
991
+ [
992
+ "trackClient.identify",
993
+ "us3r",
994
+ {
995
+ "email": "user@acme.com",
996
+ "first_name": "Jane",
997
+ "plan": "premium"
998
+ }
999
+ ]
1000
+ ]
1001
+ },
1002
+ "wildcardIgnored": {
1003
+ "in": {
1004
+ "name": "debug noise",
1005
+ "data": {
1006
+ "string": "foo",
1007
+ "number": 1,
1008
+ "boolean": true,
1009
+ "array": [
1010
+ 0,
1011
+ "text",
1012
+ false
1013
+ ]
1014
+ },
1015
+ "context": {
1016
+ "dev": [
1017
+ "test",
1018
+ 1
1019
+ ]
1020
+ },
1021
+ "globals": {
1022
+ "lang": "elb"
1023
+ },
1024
+ "custom": {
1025
+ "completely": "random"
1026
+ },
1027
+ "user": {
1028
+ "id": "us3r",
1029
+ "session": "s3ss10n"
1030
+ },
1031
+ "nested": [
1032
+ {
1033
+ "entity": "child",
1034
+ "data": {
1035
+ "is": "subordinated"
1036
+ },
1037
+ "nested": [],
1038
+ "context": {
1039
+ "element": [
1040
+ "child",
1041
+ 0
1042
+ ]
1043
+ }
1044
+ }
1045
+ ],
1046
+ "consent": {
1047
+ "functional": true
1048
+ },
1049
+ "id": "1700000110-gr0up-1",
1050
+ "trigger": "test",
1051
+ "entity": "debug",
1052
+ "action": "noise",
1053
+ "timestamp": 1700000110,
1054
+ "timing": 3.14,
1055
+ "group": "gr0up",
1056
+ "count": 1,
1057
+ "version": {
1058
+ "source": "3.4.0-next-1776749829492",
1059
+ "tagging": 1
1060
+ },
1061
+ "source": {
1062
+ "type": "web",
1063
+ "id": "https://localhost:80",
1064
+ "previous_id": "http://remotehost:9001"
1065
+ }
1066
+ },
1067
+ "mapping": {
1068
+ "ignore": true
1069
+ },
1070
+ "out": []
1071
+ }
1072
+ }
1073
+ }
1074
+ }