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