@adtrackify/at-tracking-event-types 3.1.72 → 3.1.74

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.
Files changed (43) hide show
  1. package/dist/cjs/types/api/measures/definitions/channel-measure-definitions.js +241 -0
  2. package/dist/cjs/types/api/measures/definitions/channel-measure-definitions.js.map +1 -1
  3. package/dist/cjs/types/api/measures/definitions/core-measure-definitions.js +89 -0
  4. package/dist/cjs/types/api/measures/definitions/core-measure-definitions.js.map +1 -1
  5. package/dist/cjs/types/api/measures/definitions/facebook-measure-definitions.js +127 -0
  6. package/dist/cjs/types/api/measures/definitions/facebook-measure-definitions.js.map +1 -1
  7. package/dist/cjs/types/api/measures/definitions/google-measure-definitions.js +67 -0
  8. package/dist/cjs/types/api/measures/definitions/google-measure-definitions.js.map +1 -1
  9. package/dist/cjs/types/api/measures/definitions/measure-definitions.d.ts +6 -2
  10. package/dist/cjs/types/api/measures/definitions/measure-definitions.js +7 -1
  11. package/dist/cjs/types/api/measures/definitions/measure-definitions.js.map +1 -1
  12. package/dist/cjs/types/api/measures/definitions/shopify-measure-definitions.js +63 -2
  13. package/dist/cjs/types/api/measures/definitions/shopify-measure-definitions.js.map +1 -1
  14. package/dist/cjs/types/api/measures/definitions/tracked-measure-definitions.js +103 -0
  15. package/dist/cjs/types/api/measures/definitions/tracked-measure-definitions.js.map +1 -1
  16. package/dist/cjs/types/api/measures/measures.d.ts +1 -3
  17. package/dist/cjs/types/api/measures/measures.js +2 -4
  18. package/dist/cjs/types/api/measures/measures.js.map +1 -1
  19. package/dist/cjs/types/event/base/event-name-enum.d.ts +4 -0
  20. package/dist/cjs/types/event/base/event-name-enum.js +4 -0
  21. package/dist/cjs/types/event/base/event-name-enum.js.map +1 -1
  22. package/dist/esm/types/api/measures/definitions/channel-measure-definitions.js +241 -0
  23. package/dist/esm/types/api/measures/definitions/channel-measure-definitions.js.map +1 -1
  24. package/dist/esm/types/api/measures/definitions/core-measure-definitions.js +89 -0
  25. package/dist/esm/types/api/measures/definitions/core-measure-definitions.js.map +1 -1
  26. package/dist/esm/types/api/measures/definitions/facebook-measure-definitions.js +127 -0
  27. package/dist/esm/types/api/measures/definitions/facebook-measure-definitions.js.map +1 -1
  28. package/dist/esm/types/api/measures/definitions/google-measure-definitions.js +67 -0
  29. package/dist/esm/types/api/measures/definitions/google-measure-definitions.js.map +1 -1
  30. package/dist/esm/types/api/measures/definitions/measure-definitions.d.ts +6 -2
  31. package/dist/esm/types/api/measures/definitions/measure-definitions.js +6 -0
  32. package/dist/esm/types/api/measures/definitions/measure-definitions.js.map +1 -1
  33. package/dist/esm/types/api/measures/definitions/shopify-measure-definitions.js +63 -2
  34. package/dist/esm/types/api/measures/definitions/shopify-measure-definitions.js.map +1 -1
  35. package/dist/esm/types/api/measures/definitions/tracked-measure-definitions.js +103 -0
  36. package/dist/esm/types/api/measures/definitions/tracked-measure-definitions.js.map +1 -1
  37. package/dist/esm/types/api/measures/measures.d.ts +1 -3
  38. package/dist/esm/types/api/measures/measures.js +2 -4
  39. package/dist/esm/types/api/measures/measures.js.map +1 -1
  40. package/dist/esm/types/event/base/event-name-enum.d.ts +4 -0
  41. package/dist/esm/types/event/base/event-name-enum.js +4 -0
  42. package/dist/esm/types/event/base/event-name-enum.js.map +1 -1
  43. package/package.json +1 -1
@@ -1,5 +1,6 @@
1
1
  import { MEASURE } from '../measures';
2
2
  import { MEASURE_CATEGORY } from './measure-categories';
3
+ import { MeasureApplicableContext } from './measure-definitions';
3
4
  import { MeasureValueType } from './measure-value-type';
4
5
  export const CHANNEL_MEASURES_MAP = {
5
6
  [MEASURE.CHANNEL_SPEND]: {
@@ -15,6 +16,10 @@ export const CHANNEL_MEASURES_MAP = {
15
16
  valueType: MeasureValueType.CURRENCY,
16
17
  decimalPlaces: 2,
17
18
  useCompactNotation: true,
19
+ applicableContexts: [
20
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
21
+ MeasureApplicableContext.ATTRIBUTION
22
+ ],
18
23
  },
19
24
  [MEASURE.CHANNEL_REACH]: {
20
25
  title: 'Reach - Channel Reported',
@@ -29,6 +34,10 @@ export const CHANNEL_MEASURES_MAP = {
29
34
  valueType: MeasureValueType.NUMBER,
30
35
  decimalPlaces: 0,
31
36
  useCompactNotation: false,
37
+ applicableContexts: [
38
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
39
+ MeasureApplicableContext.ATTRIBUTION
40
+ ],
32
41
  },
33
42
  [MEASURE.CHANNEL_FREQUENCY]: {
34
43
  title: 'Frequency - Channel Reported',
@@ -43,6 +52,10 @@ export const CHANNEL_MEASURES_MAP = {
43
52
  valueType: MeasureValueType.NUMBER,
44
53
  decimalPlaces: 0,
45
54
  useCompactNotation: false,
55
+ applicableContexts: [
56
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
57
+ MeasureApplicableContext.ATTRIBUTION
58
+ ],
46
59
  },
47
60
  [MEASURE.CHANNEL_IMPRESSIONS]: {
48
61
  title: 'Impressions - Channel Reported',
@@ -57,6 +70,10 @@ export const CHANNEL_MEASURES_MAP = {
57
70
  valueType: MeasureValueType.NUMBER,
58
71
  decimalPlaces: 0,
59
72
  useCompactNotation: false,
73
+ applicableContexts: [
74
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
75
+ MeasureApplicableContext.ATTRIBUTION
76
+ ],
60
77
  },
61
78
  [MEASURE.CHANNEL_CLICKS]: {
62
79
  title: 'Clicks - Channel Reported',
@@ -71,6 +88,10 @@ export const CHANNEL_MEASURES_MAP = {
71
88
  valueType: MeasureValueType.NUMBER,
72
89
  decimalPlaces: 0,
73
90
  useCompactNotation: false,
91
+ applicableContexts: [
92
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
93
+ MeasureApplicableContext.ATTRIBUTION
94
+ ],
74
95
  },
75
96
  [MEASURE.CHANNEL_CTR]: {
76
97
  title: 'CTR - Channel Reported',
@@ -85,6 +106,10 @@ export const CHANNEL_MEASURES_MAP = {
85
106
  valueType: MeasureValueType.PERCENTAGE,
86
107
  decimalPlaces: 2,
87
108
  useCompactNotation: false,
109
+ applicableContexts: [
110
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
111
+ MeasureApplicableContext.ATTRIBUTION
112
+ ],
88
113
  },
89
114
  [MEASURE.CHANNEL_CPC]: {
90
115
  title: 'CPC - Channel Reported',
@@ -99,6 +124,10 @@ export const CHANNEL_MEASURES_MAP = {
99
124
  valueType: MeasureValueType.CURRENCY,
100
125
  decimalPlaces: 2,
101
126
  useCompactNotation: true,
127
+ applicableContexts: [
128
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
129
+ MeasureApplicableContext.ATTRIBUTION
130
+ ],
102
131
  },
103
132
  [MEASURE.CHANNEL_CPM]: {
104
133
  title: 'CPM - Channel Reported',
@@ -113,6 +142,10 @@ export const CHANNEL_MEASURES_MAP = {
113
142
  valueType: MeasureValueType.CURRENCY,
114
143
  decimalPlaces: 2,
115
144
  useCompactNotation: true,
145
+ applicableContexts: [
146
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
147
+ MeasureApplicableContext.ATTRIBUTION
148
+ ],
116
149
  },
117
150
  [MEASURE.CHANNEL_CPP]: {
118
151
  title: 'CPP - Channel Reported',
@@ -127,6 +160,10 @@ export const CHANNEL_MEASURES_MAP = {
127
160
  valueType: MeasureValueType.CURRENCY,
128
161
  decimalPlaces: 2,
129
162
  useCompactNotation: true,
163
+ applicableContexts: [
164
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
165
+ MeasureApplicableContext.ATTRIBUTION
166
+ ],
130
167
  },
131
168
  [MEASURE.CHANNEL_CPV]: {
132
169
  title: 'CPV - Channel Reported',
@@ -141,6 +178,10 @@ export const CHANNEL_MEASURES_MAP = {
141
178
  valueType: MeasureValueType.CURRENCY,
142
179
  decimalPlaces: 2,
143
180
  useCompactNotation: true,
181
+ applicableContexts: [
182
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
183
+ MeasureApplicableContext.ATTRIBUTION
184
+ ],
144
185
  },
145
186
  [MEASURE.CHANNEL_CPI]: {
146
187
  title: 'CPI - Channel Reported',
@@ -155,6 +196,10 @@ export const CHANNEL_MEASURES_MAP = {
155
196
  valueType: MeasureValueType.CURRENCY,
156
197
  decimalPlaces: 2,
157
198
  useCompactNotation: true,
199
+ applicableContexts: [
200
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
201
+ MeasureApplicableContext.ATTRIBUTION
202
+ ],
158
203
  },
159
204
  [MEASURE.CHANNEL_PURCHASES]: {
160
205
  title: 'Purchases - Channel Reported',
@@ -169,6 +214,10 @@ export const CHANNEL_MEASURES_MAP = {
169
214
  valueType: MeasureValueType.NUMBER,
170
215
  decimalPlaces: 0,
171
216
  useCompactNotation: false,
217
+ applicableContexts: [
218
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
219
+ MeasureApplicableContext.ATTRIBUTION
220
+ ],
172
221
  },
173
222
  [MEASURE.CHANNEL_PURCHASES_VALUE]: {
174
223
  title: 'Purchases Value - Channel Reported',
@@ -183,6 +232,10 @@ export const CHANNEL_MEASURES_MAP = {
183
232
  valueType: MeasureValueType.CURRENCY,
184
233
  decimalPlaces: 2,
185
234
  useCompactNotation: true,
235
+ applicableContexts: [
236
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
237
+ MeasureApplicableContext.ATTRIBUTION
238
+ ],
186
239
  },
187
240
  [MEASURE.CHANNEL_PURCHASES_COST]: {
188
241
  title: 'Purchases Cost - Channel Reported',
@@ -197,6 +250,10 @@ export const CHANNEL_MEASURES_MAP = {
197
250
  valueType: MeasureValueType.CURRENCY,
198
251
  decimalPlaces: 2,
199
252
  useCompactNotation: true,
253
+ applicableContexts: [
254
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
255
+ MeasureApplicableContext.ATTRIBUTION
256
+ ],
200
257
  },
201
258
  [MEASURE.CHANNEL_CPA]: {
202
259
  title: 'CPA - Channel Reported',
@@ -211,6 +268,10 @@ export const CHANNEL_MEASURES_MAP = {
211
268
  valueType: MeasureValueType.CURRENCY,
212
269
  decimalPlaces: 2,
213
270
  useCompactNotation: true,
271
+ applicableContexts: [
272
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
273
+ MeasureApplicableContext.ATTRIBUTION
274
+ ]
214
275
  },
215
276
  [MEASURE.CHANNEL_ROAS]: {
216
277
  title: 'ROAS - Channel Reported',
@@ -225,6 +286,10 @@ export const CHANNEL_MEASURES_MAP = {
225
286
  valueType: MeasureValueType.MULTIPLIER,
226
287
  decimalPlaces: 2,
227
288
  useCompactNotation: false,
289
+ applicableContexts: [
290
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
291
+ MeasureApplicableContext.ATTRIBUTION
292
+ ]
228
293
  },
229
294
  [MEASURE.CHANNEL_NEW_CUSTOMER_CPA]: {
230
295
  title: 'New Customer CPA - Channel Reported',
@@ -239,6 +304,10 @@ export const CHANNEL_MEASURES_MAP = {
239
304
  valueType: MeasureValueType.CURRENCY,
240
305
  decimalPlaces: 2,
241
306
  useCompactNotation: true,
307
+ applicableContexts: [
308
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
309
+ MeasureApplicableContext.ATTRIBUTION
310
+ ]
242
311
  },
243
312
  [MEASURE.CHANNEL_NEW_CUSTOMER_ROAS]: {
244
313
  title: 'New Customer ROAS - Channel Reported',
@@ -253,6 +322,10 @@ export const CHANNEL_MEASURES_MAP = {
253
322
  valueType: MeasureValueType.MULTIPLIER,
254
323
  decimalPlaces: 2,
255
324
  useCompactNotation: false,
325
+ applicableContexts: [
326
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
327
+ MeasureApplicableContext.ATTRIBUTION
328
+ ]
256
329
  },
257
330
  [MEASURE.CHANNEL_UNIQUE_CLICKS]: {
258
331
  title: 'Unique Clicks - Channel Reported',
@@ -267,6 +340,10 @@ export const CHANNEL_MEASURES_MAP = {
267
340
  valueType: MeasureValueType.NUMBER,
268
341
  decimalPlaces: 0,
269
342
  useCompactNotation: false,
343
+ applicableContexts: [
344
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
345
+ MeasureApplicableContext.ATTRIBUTION
346
+ ],
270
347
  },
271
348
  [MEASURE.CHANNEL_COST_PER_UNIQUE_CLICK]: {
272
349
  title: 'Cost Per Unique Click - Channel Reported',
@@ -281,6 +358,10 @@ export const CHANNEL_MEASURES_MAP = {
281
358
  valueType: MeasureValueType.CURRENCY,
282
359
  decimalPlaces: 2,
283
360
  useCompactNotation: true,
361
+ applicableContexts: [
362
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
363
+ MeasureApplicableContext.ATTRIBUTION
364
+ ],
284
365
  },
285
366
  [MEASURE.CHANNEL_INLINE_CLICKS]: {
286
367
  title: 'Inline Clicks - Channel Reported',
@@ -295,6 +376,10 @@ export const CHANNEL_MEASURES_MAP = {
295
376
  valueType: MeasureValueType.NUMBER,
296
377
  decimalPlaces: 0,
297
378
  useCompactNotation: false,
379
+ applicableContexts: [
380
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
381
+ MeasureApplicableContext.ATTRIBUTION
382
+ ],
298
383
  },
299
384
  [MEASURE.CHANNEL_COST_PER_INLINE_CLICK]: {
300
385
  title: 'Cost Per Inline Click - Channel Reported',
@@ -309,6 +394,10 @@ export const CHANNEL_MEASURES_MAP = {
309
394
  valueType: MeasureValueType.CURRENCY,
310
395
  decimalPlaces: 2,
311
396
  useCompactNotation: true,
397
+ applicableContexts: [
398
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
399
+ MeasureApplicableContext.ATTRIBUTION
400
+ ],
312
401
  },
313
402
  [MEASURE.CHANNEL_INLINE_CLICK_CTR]: {
314
403
  title: 'Inline Click CTR - Channel Reported',
@@ -323,6 +412,10 @@ export const CHANNEL_MEASURES_MAP = {
323
412
  valueType: MeasureValueType.PERCENTAGE,
324
413
  decimalPlaces: 2,
325
414
  useCompactNotation: false,
415
+ applicableContexts: [
416
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
417
+ MeasureApplicableContext.ATTRIBUTION
418
+ ],
326
419
  },
327
420
  [MEASURE.CHANNEL_OUTBOUND_CLICKS]: {
328
421
  title: 'Outbound Clicks - Channel Reported',
@@ -337,6 +430,10 @@ export const CHANNEL_MEASURES_MAP = {
337
430
  valueType: MeasureValueType.NUMBER,
338
431
  decimalPlaces: 0,
339
432
  useCompactNotation: false,
433
+ applicableContexts: [
434
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
435
+ MeasureApplicableContext.ATTRIBUTION
436
+ ],
340
437
  },
341
438
  [MEASURE.CHANNEL_COST_PER_OUTBOUND_CLICK]: {
342
439
  title: 'Cost Per Outbound Click - Channel Reported',
@@ -351,6 +448,10 @@ export const CHANNEL_MEASURES_MAP = {
351
448
  valueType: MeasureValueType.CURRENCY,
352
449
  decimalPlaces: 2,
353
450
  useCompactNotation: true,
451
+ applicableContexts: [
452
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
453
+ MeasureApplicableContext.ATTRIBUTION
454
+ ],
354
455
  },
355
456
  [MEASURE.CHANNEL_OUTBOUND_CLICKS_CTR]: {
356
457
  title: 'Outbound Click CTR - Channel Reported',
@@ -365,6 +466,10 @@ export const CHANNEL_MEASURES_MAP = {
365
466
  valueType: MeasureValueType.PERCENTAGE,
366
467
  decimalPlaces: 2,
367
468
  useCompactNotation: false,
469
+ applicableContexts: [
470
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
471
+ MeasureApplicableContext.ATTRIBUTION
472
+ ],
368
473
  },
369
474
  [MEASURE.CHANNEL_OMNI_VIEW_CONTENTS]: {
370
475
  title: 'View Contents - Channel Reported',
@@ -379,6 +484,10 @@ export const CHANNEL_MEASURES_MAP = {
379
484
  valueType: MeasureValueType.NUMBER,
380
485
  decimalPlaces: 0,
381
486
  useCompactNotation: false,
487
+ applicableContexts: [
488
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
489
+ MeasureApplicableContext.ATTRIBUTION
490
+ ],
382
491
  },
383
492
  [MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_VALUE]: {
384
493
  title: 'View Contents Value - Channel Reported',
@@ -393,6 +502,10 @@ export const CHANNEL_MEASURES_MAP = {
393
502
  valueType: MeasureValueType.CURRENCY,
394
503
  decimalPlaces: 2,
395
504
  useCompactNotation: true,
505
+ applicableContexts: [
506
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
507
+ MeasureApplicableContext.ATTRIBUTION
508
+ ],
396
509
  },
397
510
  [MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_COST]: {
398
511
  title: 'View Contents Cost - Channel Reported',
@@ -407,6 +520,10 @@ export const CHANNEL_MEASURES_MAP = {
407
520
  valueType: MeasureValueType.CURRENCY,
408
521
  decimalPlaces: 2,
409
522
  useCompactNotation: true,
523
+ applicableContexts: [
524
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
525
+ MeasureApplicableContext.ATTRIBUTION
526
+ ],
410
527
  },
411
528
  [MEASURE.CHANNEL_OMNI_ADD_TO_CARTS]: {
412
529
  title: 'Add To Carts - Channel Reported',
@@ -421,6 +538,10 @@ export const CHANNEL_MEASURES_MAP = {
421
538
  valueType: MeasureValueType.NUMBER,
422
539
  decimalPlaces: 0,
423
540
  useCompactNotation: false,
541
+ applicableContexts: [
542
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
543
+ MeasureApplicableContext.ATTRIBUTION
544
+ ],
424
545
  },
425
546
  [MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_VALUE]: {
426
547
  title: 'Add To Carts Value - Channel Reported',
@@ -435,6 +556,10 @@ export const CHANNEL_MEASURES_MAP = {
435
556
  valueType: MeasureValueType.CURRENCY,
436
557
  decimalPlaces: 2,
437
558
  useCompactNotation: true,
559
+ applicableContexts: [
560
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
561
+ MeasureApplicableContext.ATTRIBUTION
562
+ ],
438
563
  },
439
564
  [MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_COST]: {
440
565
  title: 'Add To Carts Cost - Channel Reported',
@@ -449,6 +574,10 @@ export const CHANNEL_MEASURES_MAP = {
449
574
  valueType: MeasureValueType.CURRENCY,
450
575
  decimalPlaces: 2,
451
576
  useCompactNotation: true,
577
+ applicableContexts: [
578
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
579
+ MeasureApplicableContext.ATTRIBUTION
580
+ ],
452
581
  },
453
582
  [MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS]: {
454
583
  title: 'Initiate Checkouts - Channel Reported',
@@ -463,6 +592,10 @@ export const CHANNEL_MEASURES_MAP = {
463
592
  valueType: MeasureValueType.NUMBER,
464
593
  decimalPlaces: 0,
465
594
  useCompactNotation: false,
595
+ applicableContexts: [
596
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
597
+ MeasureApplicableContext.ATTRIBUTION
598
+ ],
466
599
  },
467
600
  [MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_VALUE]: {
468
601
  title: 'Initiate Checkouts Value - Channel Reported',
@@ -477,6 +610,10 @@ export const CHANNEL_MEASURES_MAP = {
477
610
  valueType: MeasureValueType.CURRENCY,
478
611
  decimalPlaces: 2,
479
612
  useCompactNotation: true,
613
+ applicableContexts: [
614
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
615
+ MeasureApplicableContext.ATTRIBUTION
616
+ ],
480
617
  },
481
618
  [MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_COST]: {
482
619
  title: 'Initiate Checkouts Cost - Channel Reported',
@@ -491,6 +628,10 @@ export const CHANNEL_MEASURES_MAP = {
491
628
  valueType: MeasureValueType.CURRENCY,
492
629
  decimalPlaces: 2,
493
630
  useCompactNotation: true,
631
+ applicableContexts: [
632
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
633
+ MeasureApplicableContext.ATTRIBUTION
634
+ ],
494
635
  },
495
636
  [MEASURE.CHANNEL_LEADS]: {
496
637
  title: 'Leads - Channel Reported',
@@ -505,6 +646,10 @@ export const CHANNEL_MEASURES_MAP = {
505
646
  valueType: MeasureValueType.NUMBER,
506
647
  decimalPlaces: 0,
507
648
  useCompactNotation: false,
649
+ applicableContexts: [
650
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
651
+ MeasureApplicableContext.ATTRIBUTION
652
+ ],
508
653
  },
509
654
  [MEASURE.CHANNEL_LEADS_VALUE]: {
510
655
  title: 'Leads Value - Channel Reported',
@@ -519,6 +664,10 @@ export const CHANNEL_MEASURES_MAP = {
519
664
  valueType: MeasureValueType.CURRENCY,
520
665
  decimalPlaces: 2,
521
666
  useCompactNotation: true,
667
+ applicableContexts: [
668
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
669
+ MeasureApplicableContext.ATTRIBUTION
670
+ ],
522
671
  },
523
672
  [MEASURE.CHANNEL_LEADS_COST]: {
524
673
  title: 'Leads Cost - Channel Reported',
@@ -533,6 +682,10 @@ export const CHANNEL_MEASURES_MAP = {
533
682
  valueType: MeasureValueType.CURRENCY,
534
683
  decimalPlaces: 2,
535
684
  useCompactNotation: true,
685
+ applicableContexts: [
686
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
687
+ MeasureApplicableContext.ATTRIBUTION
688
+ ],
536
689
  },
537
690
  [MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES]: {
538
691
  title: 'New Customer Purchases - Channel Reported',
@@ -547,6 +700,10 @@ export const CHANNEL_MEASURES_MAP = {
547
700
  valueType: MeasureValueType.NUMBER,
548
701
  decimalPlaces: 0,
549
702
  useCompactNotation: false,
703
+ applicableContexts: [
704
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
705
+ MeasureApplicableContext.ATTRIBUTION
706
+ ],
550
707
  },
551
708
  [MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES_VALUE]: {
552
709
  title: 'New Customer Purchases Value - Channel Reported',
@@ -561,6 +718,10 @@ export const CHANNEL_MEASURES_MAP = {
561
718
  valueType: MeasureValueType.CURRENCY,
562
719
  decimalPlaces: 2,
563
720
  useCompactNotation: true,
721
+ applicableContexts: [
722
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
723
+ MeasureApplicableContext.ATTRIBUTION
724
+ ],
564
725
  },
565
726
  [MEASURE.CHANNEL_VIDEO_VIEWS]: {
566
727
  title: 'Video Views - Channel Reported',
@@ -575,6 +736,10 @@ export const CHANNEL_MEASURES_MAP = {
575
736
  valueType: MeasureValueType.NUMBER,
576
737
  decimalPlaces: 0,
577
738
  useCompactNotation: false,
739
+ applicableContexts: [
740
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
741
+ MeasureApplicableContext.ATTRIBUTION
742
+ ],
578
743
  },
579
744
  [MEASURE.CHANNEL_VIDEO_VIEWS_COST]: {
580
745
  title: 'Video Views Cost - Channel Reported',
@@ -589,6 +754,10 @@ export const CHANNEL_MEASURES_MAP = {
589
754
  valueType: MeasureValueType.CURRENCY,
590
755
  decimalPlaces: 2,
591
756
  useCompactNotation: true,
757
+ applicableContexts: [
758
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
759
+ MeasureApplicableContext.ATTRIBUTION
760
+ ],
592
761
  },
593
762
  [MEASURE.CHANNEL_VIDEO_VIEWS_15SEC_COST]: {
594
763
  title: '15-Second Video Views Cost - Channel Reported',
@@ -603,6 +772,10 @@ export const CHANNEL_MEASURES_MAP = {
603
772
  valueType: MeasureValueType.CURRENCY,
604
773
  decimalPlaces: 2,
605
774
  useCompactNotation: true,
775
+ applicableContexts: [
776
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
777
+ MeasureApplicableContext.ATTRIBUTION
778
+ ],
606
779
  },
607
780
  [MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY_COST]: {
608
781
  title: 'Video Thruplay Cost - Channel Reported',
@@ -617,6 +790,10 @@ export const CHANNEL_MEASURES_MAP = {
617
790
  valueType: MeasureValueType.CURRENCY,
618
791
  decimalPlaces: 2,
619
792
  useCompactNotation: true,
793
+ applicableContexts: [
794
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
795
+ MeasureApplicableContext.ATTRIBUTION
796
+ ],
620
797
  },
621
798
  [MEASURE.CHANNEL_VIDEO_30SEC_WATCHED_VIEWS]: {
622
799
  title: '30-Second Video Views - Channel Reported',
@@ -631,6 +808,10 @@ export const CHANNEL_MEASURES_MAP = {
631
808
  valueType: MeasureValueType.NUMBER,
632
809
  decimalPlaces: 0,
633
810
  useCompactNotation: false,
811
+ applicableContexts: [
812
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
813
+ MeasureApplicableContext.ATTRIBUTION
814
+ ],
634
815
  },
635
816
  [MEASURE.CHANNEL_VIDEO_AVG_TIME_WATCHED_VIEWS]: {
636
817
  title: 'Average Video Watch Time - Channel Reported',
@@ -645,6 +826,10 @@ export const CHANNEL_MEASURES_MAP = {
645
826
  valueType: MeasureValueType.DURATION,
646
827
  decimalPlaces: 0,
647
828
  useCompactNotation: false,
829
+ applicableContexts: [
830
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
831
+ MeasureApplicableContext.ATTRIBUTION
832
+ ],
648
833
  },
649
834
  [MEASURE.CHANNEL_VIDEO_P25_WATCHED_VIEWS]: {
650
835
  title: '25% Video Views - Channel Reported',
@@ -659,6 +844,10 @@ export const CHANNEL_MEASURES_MAP = {
659
844
  valueType: MeasureValueType.NUMBER,
660
845
  decimalPlaces: 0,
661
846
  useCompactNotation: false,
847
+ applicableContexts: [
848
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
849
+ MeasureApplicableContext.ATTRIBUTION
850
+ ],
662
851
  },
663
852
  [MEASURE.CHANNEL_VIDEO_P50_WATCHED_VIEWS]: {
664
853
  title: '50% Video Views - Channel Reported',
@@ -673,6 +862,10 @@ export const CHANNEL_MEASURES_MAP = {
673
862
  valueType: MeasureValueType.NUMBER,
674
863
  decimalPlaces: 0,
675
864
  useCompactNotation: false,
865
+ applicableContexts: [
866
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
867
+ MeasureApplicableContext.ATTRIBUTION
868
+ ],
676
869
  },
677
870
  [MEASURE.CHANNEL_VIDEO_P75_WATCHED_VIEWS]: {
678
871
  title: '75% Video Views - Channel Reported',
@@ -687,6 +880,10 @@ export const CHANNEL_MEASURES_MAP = {
687
880
  valueType: MeasureValueType.NUMBER,
688
881
  decimalPlaces: 0,
689
882
  useCompactNotation: false,
883
+ applicableContexts: [
884
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
885
+ MeasureApplicableContext.ATTRIBUTION
886
+ ],
690
887
  },
691
888
  [MEASURE.CHANNEL_VIDEO_P95_WATCHED_VIEWS]: {
692
889
  title: '95% Video Views - Channel Reported',
@@ -701,6 +898,10 @@ export const CHANNEL_MEASURES_MAP = {
701
898
  valueType: MeasureValueType.NUMBER,
702
899
  decimalPlaces: 0,
703
900
  useCompactNotation: false,
901
+ applicableContexts: [
902
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
903
+ MeasureApplicableContext.ATTRIBUTION
904
+ ],
704
905
  },
705
906
  [MEASURE.CHANNEL_VIDEO_P100_WATCHED_VIEWS]: {
706
907
  title: 'Complete Video Views - Channel Reported',
@@ -715,6 +916,10 @@ export const CHANNEL_MEASURES_MAP = {
715
916
  valueType: MeasureValueType.NUMBER,
716
917
  decimalPlaces: 0,
717
918
  useCompactNotation: false,
919
+ applicableContexts: [
920
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
921
+ MeasureApplicableContext.ATTRIBUTION
922
+ ],
718
923
  },
719
924
  [MEASURE.CHANNEL_VIDEO_QUARTILE_P25_RATE]: {
720
925
  title: '25% Video Completion Rate - Channel Reported',
@@ -729,6 +934,10 @@ export const CHANNEL_MEASURES_MAP = {
729
934
  valueType: MeasureValueType.PERCENTAGE,
730
935
  decimalPlaces: 2,
731
936
  useCompactNotation: false,
937
+ applicableContexts: [
938
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
939
+ MeasureApplicableContext.ATTRIBUTION
940
+ ],
732
941
  },
733
942
  [MEASURE.CHANNEL_VIDEO_QUARTILE_P50_RATE]: {
734
943
  title: '50% Video Completion Rate - Channel Reported',
@@ -743,6 +952,10 @@ export const CHANNEL_MEASURES_MAP = {
743
952
  valueType: MeasureValueType.PERCENTAGE,
744
953
  decimalPlaces: 2,
745
954
  useCompactNotation: false,
955
+ applicableContexts: [
956
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
957
+ MeasureApplicableContext.ATTRIBUTION
958
+ ],
746
959
  },
747
960
  [MEASURE.CHANNEL_VIDEO_QUARTILE_P75_RATE]: {
748
961
  title: '75% Video Completion Rate - Channel Reported',
@@ -757,6 +970,10 @@ export const CHANNEL_MEASURES_MAP = {
757
970
  valueType: MeasureValueType.PERCENTAGE,
758
971
  decimalPlaces: 2,
759
972
  useCompactNotation: false,
973
+ applicableContexts: [
974
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
975
+ MeasureApplicableContext.ATTRIBUTION
976
+ ],
760
977
  },
761
978
  [MEASURE.CHANNEL_VIDEO_QUARTILE_P100_RATE]: {
762
979
  title: '100% Video Completion Rate - Channel Reported',
@@ -771,6 +988,10 @@ export const CHANNEL_MEASURES_MAP = {
771
988
  valueType: MeasureValueType.PERCENTAGE,
772
989
  decimalPlaces: 2,
773
990
  useCompactNotation: false,
991
+ applicableContexts: [
992
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
993
+ MeasureApplicableContext.ATTRIBUTION
994
+ ],
774
995
  },
775
996
  [MEASURE.CHANNEL_VIDEO_PLAYS]: {
776
997
  title: 'Video Plays - Channel Reported',
@@ -785,6 +1006,10 @@ export const CHANNEL_MEASURES_MAP = {
785
1006
  valueType: MeasureValueType.NUMBER,
786
1007
  decimalPlaces: 0,
787
1008
  useCompactNotation: false,
1009
+ applicableContexts: [
1010
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
1011
+ MeasureApplicableContext.ATTRIBUTION
1012
+ ],
788
1013
  },
789
1014
  [MEASURE.CHANNEL_ALL_CONVERSIONS]: {
790
1015
  title: 'All Conversions - Channel Reported',
@@ -799,6 +1024,10 @@ export const CHANNEL_MEASURES_MAP = {
799
1024
  valueType: MeasureValueType.NUMBER,
800
1025
  decimalPlaces: 0,
801
1026
  useCompactNotation: false,
1027
+ applicableContexts: [
1028
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
1029
+ MeasureApplicableContext.ATTRIBUTION
1030
+ ],
802
1031
  },
803
1032
  [MEASURE.CHANNEL_ALL_CONVERSIONS_VALUE]: {
804
1033
  title: 'All Conversions Value - Channel Reported',
@@ -813,6 +1042,10 @@ export const CHANNEL_MEASURES_MAP = {
813
1042
  valueType: MeasureValueType.CURRENCY,
814
1043
  decimalPlaces: 2,
815
1044
  useCompactNotation: true,
1045
+ applicableContexts: [
1046
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
1047
+ MeasureApplicableContext.ATTRIBUTION
1048
+ ],
816
1049
  },
817
1050
  [MEASURE.CHANNEL_ALL_CONVERSIONS_COST]: {
818
1051
  title: 'All Conversions Cost - Channel Reported',
@@ -827,6 +1060,10 @@ export const CHANNEL_MEASURES_MAP = {
827
1060
  valueType: MeasureValueType.CURRENCY,
828
1061
  decimalPlaces: 2,
829
1062
  useCompactNotation: true,
1063
+ applicableContexts: [
1064
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
1065
+ MeasureApplicableContext.ATTRIBUTION
1066
+ ],
830
1067
  },
831
1068
  [MEASURE.CHANNEL_ALL_CONVERSIONS_ROAS]: {
832
1069
  title: 'All Conversions ROAS - Channel Reported',
@@ -841,6 +1078,10 @@ export const CHANNEL_MEASURES_MAP = {
841
1078
  valueType: MeasureValueType.MULTIPLIER,
842
1079
  decimalPlaces: 2,
843
1080
  useCompactNotation: false,
1081
+ applicableContexts: [
1082
+ MeasureApplicableContext.CUSTOM_DASHBOARD,
1083
+ MeasureApplicableContext.ATTRIBUTION
1084
+ ],
844
1085
  },
845
1086
  };
846
1087
  //# sourceMappingURL=channel-measure-definitions.js.map