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

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