@adtrackify/at-tracking-event-types 3.4.13 → 3.4.15

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.
@@ -4,8 +4,8 @@ import { MeasureValueType } from './measure-value-type.js';
4
4
  import { CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS, STANDARD_APPLICABLE_CONTEXTS } from './measure-applicable-contexts.js';
5
5
  export const CHANNEL_MEASURES_MAP = {
6
6
  [MEASURE.CHANNEL_SPEND]: {
7
- title: 'Spend - Channel Reported',
8
- description: 'The amount of money spent as reported by the channel.',
7
+ title: 'Channel Spend',
8
+ description: 'The total amount spent on advertising across all channels.',
9
9
  sumPrefix: '$',
10
10
  sumSuffix: '',
11
11
  avgPrefix: '$',
@@ -18,24 +18,39 @@ export const CHANNEL_MEASURES_MAP = {
18
18
  useCompactNotation: true,
19
19
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
20
20
  },
21
- [MEASURE.CHANNEL_REACH]: {
22
- title: 'Reach - Channel Reported',
23
- description: 'The number of unique users as reported by the channel.',
21
+ [MEASURE.CHANNEL_IMPRESSIONS]: {
22
+ title: 'Channel Impressions',
23
+ description: 'The number of times ads were shown across all channels.',
24
24
  sumPrefix: '',
25
25
  sumSuffix: '',
26
26
  avgPrefix: '',
27
27
  avgSuffix: '',
28
28
  icon: 'channel',
29
- measure: MEASURE.CHANNEL_REACH,
29
+ measure: MEASURE.CHANNEL_IMPRESSIONS,
30
30
  category: MEASURE_CATEGORY.UPSTACK_DATA,
31
31
  valueType: MeasureValueType.NUMBER,
32
32
  decimalPlaces: 0,
33
33
  useCompactNotation: false,
34
34
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
35
35
  },
36
+ [MEASURE.CHANNEL_CPM]: {
37
+ title: 'Channel CPM',
38
+ description: 'The cost per thousand impressions across all channels.',
39
+ sumPrefix: '$',
40
+ sumSuffix: '',
41
+ avgPrefix: '$',
42
+ avgSuffix: '',
43
+ icon: 'channel',
44
+ measure: MEASURE.CHANNEL_CPM,
45
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
46
+ valueType: MeasureValueType.CURRENCY,
47
+ decimalPlaces: 2,
48
+ useCompactNotation: true,
49
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
50
+ },
36
51
  [MEASURE.CHANNEL_FREQUENCY]: {
37
- title: 'Frequency - Channel Reported',
38
- description: 'The average number of times each person saw the ads as reported by the channel.',
52
+ title: 'Channel Frequency',
53
+ description: 'The average number of times each person saw ads across all channels.',
39
54
  sumPrefix: '',
40
55
  sumSuffix: '',
41
56
  avgPrefix: '',
@@ -48,24 +63,40 @@ export const CHANNEL_MEASURES_MAP = {
48
63
  useCompactNotation: false,
49
64
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
50
65
  },
51
- [MEASURE.CHANNEL_IMPRESSIONS]: {
52
- title: 'Impressions - Channel Reported',
53
- description: 'The number of times ads were shown as reported by the channel.',
66
+ [MEASURE.CHANNEL_REACH]: {
67
+ title: 'Channel Reach',
68
+ description: 'The number of unique people who saw ads across all channels.',
54
69
  sumPrefix: '',
55
70
  sumSuffix: '',
56
71
  avgPrefix: '',
57
72
  avgSuffix: '',
58
73
  icon: 'channel',
59
- measure: MEASURE.CHANNEL_IMPRESSIONS,
74
+ measure: MEASURE.CHANNEL_REACH,
60
75
  category: MEASURE_CATEGORY.UPSTACK_DATA,
61
76
  valueType: MeasureValueType.NUMBER,
62
77
  decimalPlaces: 0,
63
78
  useCompactNotation: false,
64
79
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
65
80
  },
81
+ [MEASURE.CHANNEL_CPP]: {
82
+ title: 'Channel CPP',
83
+ description: 'The cost to reach 1,000 people across all channels.',
84
+ sumPrefix: '$',
85
+ sumSuffix: '',
86
+ avgPrefix: '$',
87
+ avgSuffix: '',
88
+ icon: 'channel',
89
+ measure: MEASURE.CHANNEL_CPP,
90
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
91
+ valueType: MeasureValueType.CURRENCY,
92
+ decimalPlaces: 2,
93
+ useCompactNotation: true,
94
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
95
+ aliases: [MEASURE.CHANNEL_COST_TO_REACH_1000_ACCOUNTS]
96
+ },
66
97
  [MEASURE.CHANNEL_CLICKS]: {
67
- title: 'Clicks - Channel Reported',
68
- description: 'The number of clicks as reported by the channel.',
98
+ title: 'Channel Clicks',
99
+ description: 'The number of clicks on ads across all channels.',
69
100
  sumPrefix: '',
70
101
  sumSuffix: '',
71
102
  avgPrefix: '',
@@ -78,9 +109,24 @@ export const CHANNEL_MEASURES_MAP = {
78
109
  useCompactNotation: false,
79
110
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
80
111
  },
112
+ [MEASURE.CHANNEL_CPC]: {
113
+ title: 'Channel CPC',
114
+ description: 'The cost per click across all channels.',
115
+ sumPrefix: '$',
116
+ sumSuffix: '',
117
+ avgPrefix: '$',
118
+ avgSuffix: '',
119
+ icon: 'channel',
120
+ measure: MEASURE.CHANNEL_CPC,
121
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
122
+ valueType: MeasureValueType.CURRENCY,
123
+ decimalPlaces: 2,
124
+ useCompactNotation: true,
125
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
126
+ },
81
127
  [MEASURE.CHANNEL_CTR]: {
82
- title: 'CTR - Channel Reported',
83
- description: 'The click-through rate as reported by the channel.',
128
+ title: 'Channel CTR',
129
+ description: 'The percentage of impressions that resulted in clicks across all channels.',
84
130
  sumPrefix: '',
85
131
  sumSuffix: '%',
86
132
  avgPrefix: '',
@@ -93,849 +139,1196 @@ export const CHANNEL_MEASURES_MAP = {
93
139
  useCompactNotation: false,
94
140
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
95
141
  },
96
- [MEASURE.CHANNEL_CPC]: {
97
- title: 'CPC - Channel Reported',
98
- description: 'The cost per click as reported by the channel.',
142
+ [MEASURE.CHANNEL_UNIQUE_CLICKS]: {
143
+ title: 'Channel Unique Clicks',
144
+ description: 'The number of unique people who clicked ads across all channels.',
145
+ sumPrefix: '',
146
+ sumSuffix: '',
147
+ avgPrefix: '',
148
+ avgSuffix: '',
149
+ icon: 'channel',
150
+ measure: MEASURE.CHANNEL_UNIQUE_CLICKS,
151
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
152
+ valueType: MeasureValueType.NUMBER,
153
+ decimalPlaces: 0,
154
+ useCompactNotation: false,
155
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
156
+ },
157
+ [MEASURE.CHANNEL_UNIQUE_CLICKS_CTR]: {
158
+ title: 'Channel Unique Click CTR',
159
+ description: 'The percentage of impressions that resulted in unique clicks across all channels.',
160
+ sumPrefix: '',
161
+ sumSuffix: '%',
162
+ avgPrefix: '',
163
+ avgSuffix: '%',
164
+ icon: 'channel',
165
+ measure: MEASURE.CHANNEL_UNIQUE_CLICKS_CTR,
166
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
167
+ valueType: MeasureValueType.PERCENTAGE,
168
+ decimalPlaces: 2,
169
+ useCompactNotation: false,
170
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
171
+ },
172
+ [MEASURE.CHANNEL_COST_PER_UNIQUE_CLICK]: {
173
+ title: 'Channel Cost per Unique Click',
174
+ description: 'The cost per unique click across all channels.',
99
175
  sumPrefix: '$',
100
176
  sumSuffix: '',
101
177
  avgPrefix: '$',
102
178
  avgSuffix: '',
103
179
  icon: 'channel',
104
- measure: MEASURE.CHANNEL_CPC,
180
+ measure: MEASURE.CHANNEL_COST_PER_UNIQUE_CLICK,
105
181
  category: MEASURE_CATEGORY.UPSTACK_DATA,
106
182
  valueType: MeasureValueType.CURRENCY,
107
183
  decimalPlaces: 2,
108
184
  useCompactNotation: true,
109
185
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
110
186
  },
111
- [MEASURE.CHANNEL_CPM]: {
112
- title: 'CPM - Channel Reported',
113
- description: 'The cost per thousand impressions as reported by the channel.',
187
+ [MEASURE.CHANNEL_INLINE_CLICKS]: {
188
+ title: 'Channel Inline Link Clicks',
189
+ description: 'The number of inline link clicks on ads across all channels.',
190
+ sumPrefix: '',
191
+ sumSuffix: '',
192
+ avgPrefix: '',
193
+ avgSuffix: '',
194
+ icon: 'channel',
195
+ measure: MEASURE.CHANNEL_INLINE_CLICKS,
196
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
197
+ valueType: MeasureValueType.NUMBER,
198
+ decimalPlaces: 0,
199
+ useCompactNotation: false,
200
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
201
+ },
202
+ [MEASURE.CHANNEL_INLINE_CLICK_CTR]: {
203
+ title: 'Channel Inline Link Click CTR',
204
+ description: 'The percentage of impressions that resulted in inline link clicks across all channels.',
205
+ sumPrefix: '',
206
+ sumSuffix: '%',
207
+ avgPrefix: '',
208
+ avgSuffix: '%',
209
+ icon: 'channel',
210
+ measure: MEASURE.CHANNEL_INLINE_CLICK_CTR,
211
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
212
+ valueType: MeasureValueType.PERCENTAGE,
213
+ decimalPlaces: 2,
214
+ useCompactNotation: false,
215
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
216
+ },
217
+ [MEASURE.CHANNEL_COST_PER_INLINE_CLICK]: {
218
+ title: 'Channel Cost per Inline Link Click',
219
+ description: 'The cost per inline link click across all channels.',
114
220
  sumPrefix: '$',
115
221
  sumSuffix: '',
116
222
  avgPrefix: '$',
117
223
  avgSuffix: '',
118
224
  icon: 'channel',
119
- measure: MEASURE.CHANNEL_CPM,
225
+ measure: MEASURE.CHANNEL_COST_PER_INLINE_CLICK,
120
226
  category: MEASURE_CATEGORY.UPSTACK_DATA,
121
227
  valueType: MeasureValueType.CURRENCY,
122
228
  decimalPlaces: 2,
123
229
  useCompactNotation: true,
124
230
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
125
231
  },
126
- [MEASURE.CHANNEL_CPP]: {
127
- title: 'CPP - Channel Reported',
128
- description: 'The average cost to reach 1,000 people as reported by the channel.',
232
+ [MEASURE.CHANNEL_OUTBOUND_CLICKS]: {
233
+ title: 'Channel Outbound Clicks',
234
+ description: 'The number of outbound clicks on ads across all channels.',
235
+ sumPrefix: '',
236
+ sumSuffix: '',
237
+ avgPrefix: '',
238
+ avgSuffix: '',
239
+ icon: 'channel',
240
+ measure: MEASURE.CHANNEL_OUTBOUND_CLICKS,
241
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
242
+ valueType: MeasureValueType.NUMBER,
243
+ decimalPlaces: 0,
244
+ useCompactNotation: false,
245
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
246
+ },
247
+ [MEASURE.CHANNEL_OUTBOUND_CLICKS_CTR]: {
248
+ title: 'Channel Outbound Click CTR',
249
+ description: 'The percentage of impressions that resulted in outbound clicks across all channels.',
250
+ sumPrefix: '',
251
+ sumSuffix: '%',
252
+ avgPrefix: '',
253
+ avgSuffix: '%',
254
+ icon: 'channel',
255
+ measure: MEASURE.CHANNEL_OUTBOUND_CLICKS_CTR,
256
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
257
+ valueType: MeasureValueType.PERCENTAGE,
258
+ decimalPlaces: 2,
259
+ useCompactNotation: false,
260
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
261
+ },
262
+ [MEASURE.CHANNEL_COST_PER_OUTBOUND_CLICK]: {
263
+ title: 'Channel Cost per Outbound Click',
264
+ description: 'The cost per outbound click across all channels.',
129
265
  sumPrefix: '$',
130
266
  sumSuffix: '',
131
267
  avgPrefix: '$',
132
268
  avgSuffix: '',
133
269
  icon: 'channel',
134
- measure: MEASURE.CHANNEL_CPP,
270
+ measure: MEASURE.CHANNEL_COST_PER_OUTBOUND_CLICK,
135
271
  category: MEASURE_CATEGORY.UPSTACK_DATA,
136
272
  valueType: MeasureValueType.CURRENCY,
137
273
  decimalPlaces: 2,
138
274
  useCompactNotation: true,
139
275
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
140
276
  },
141
- [MEASURE.CHANNEL_CPV]: {
142
- title: 'CPV - Channel Reported',
143
- description: 'The average cost per video view as reported by the channel.',
277
+ [MEASURE.CHANNEL_LINK_CLICKS]: {
278
+ title: 'Channel Link Clicks',
279
+ description: 'The number of link clicks on ads across all channels.',
280
+ sumPrefix: '',
281
+ sumSuffix: '',
282
+ avgPrefix: '',
283
+ avgSuffix: '',
284
+ icon: 'channel',
285
+ measure: MEASURE.CHANNEL_LINK_CLICKS,
286
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
287
+ valueType: MeasureValueType.NUMBER,
288
+ decimalPlaces: 0,
289
+ useCompactNotation: false,
290
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
291
+ },
292
+ [MEASURE.CHANNEL_LINK_CLICKS_CTR]: {
293
+ title: 'Channel Link Click CTR',
294
+ description: 'The percentage of impressions that resulted in link clicks across all channels.',
295
+ sumPrefix: '',
296
+ sumSuffix: '%',
297
+ avgPrefix: '',
298
+ avgSuffix: '%',
299
+ icon: 'channel',
300
+ measure: MEASURE.CHANNEL_LINK_CLICKS_CTR,
301
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
302
+ valueType: MeasureValueType.PERCENTAGE,
303
+ decimalPlaces: 2,
304
+ useCompactNotation: false,
305
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
306
+ },
307
+ [MEASURE.CHANNEL_COST_PER_LINK_CLICK]: {
308
+ title: 'Channel Cost per Link Click',
309
+ description: 'The cost per link click across all channels.',
144
310
  sumPrefix: '$',
145
311
  sumSuffix: '',
146
312
  avgPrefix: '$',
147
313
  avgSuffix: '',
148
314
  icon: 'channel',
149
- measure: MEASURE.CHANNEL_CPV,
315
+ measure: MEASURE.CHANNEL_COST_PER_LINK_CLICK,
316
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
317
+ valueType: MeasureValueType.CURRENCY,
318
+ decimalPlaces: 2,
319
+ useCompactNotation: true,
320
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
321
+ },
322
+ [MEASURE.CHANNEL_PURCHASES]: {
323
+ title: 'Channel Purchases',
324
+ description: 'The number of purchases attributed to ads across all channels.',
325
+ sumPrefix: '',
326
+ sumSuffix: '',
327
+ avgPrefix: '',
328
+ avgSuffix: '',
329
+ icon: 'channel',
330
+ measure: MEASURE.CHANNEL_PURCHASES,
331
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
332
+ valueType: MeasureValueType.NUMBER,
333
+ decimalPlaces: 0,
334
+ useCompactNotation: false,
335
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
336
+ },
337
+ [MEASURE.CHANNEL_PURCHASES_VALUE]: {
338
+ title: 'Channel Purchases Value',
339
+ description: 'The total revenue from purchases attributed to ads across all channels.',
340
+ sumPrefix: '$',
341
+ sumSuffix: '',
342
+ avgPrefix: '$',
343
+ avgSuffix: '',
344
+ icon: 'channel',
345
+ measure: MEASURE.CHANNEL_PURCHASES_VALUE,
346
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
347
+ valueType: MeasureValueType.CURRENCY,
348
+ decimalPlaces: 2,
349
+ useCompactNotation: true,
350
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
351
+ },
352
+ [MEASURE.CHANNEL_CPA]: {
353
+ title: 'Channel CPA',
354
+ description: 'The cost per purchase conversion across all channels.',
355
+ sumPrefix: '$',
356
+ sumSuffix: '',
357
+ avgPrefix: '$',
358
+ avgSuffix: '',
359
+ icon: 'channel',
360
+ measure: MEASURE.CHANNEL_CPA,
361
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
362
+ valueType: MeasureValueType.CURRENCY,
363
+ decimalPlaces: 2,
364
+ useCompactNotation: true,
365
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
366
+ aliases: [MEASURE.CHANNEL_PURCHASES_COST]
367
+ },
368
+ [MEASURE.CHANNEL_ROAS]: {
369
+ title: 'Channel ROAS',
370
+ description: 'The return on ad spend across all channels.',
371
+ sumPrefix: '',
372
+ sumSuffix: 'x',
373
+ avgPrefix: '',
374
+ avgSuffix: 'x',
375
+ icon: 'channel',
376
+ measure: MEASURE.CHANNEL_ROAS,
377
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
378
+ valueType: MeasureValueType.MULTIPLIER,
379
+ decimalPlaces: 2,
380
+ useCompactNotation: false,
381
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
382
+ },
383
+ [MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES]: {
384
+ title: 'Channel New Customer Purchases',
385
+ description: 'The number of new customer purchases attributed to ads across all channels.',
386
+ sumPrefix: '',
387
+ sumSuffix: '',
388
+ avgPrefix: '',
389
+ avgSuffix: '',
390
+ icon: 'channel',
391
+ measure: MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES,
392
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
393
+ valueType: MeasureValueType.NUMBER,
394
+ decimalPlaces: 0,
395
+ useCompactNotation: false,
396
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
397
+ },
398
+ [MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES_VALUE]: {
399
+ title: 'Channel New Customer Purchases Value',
400
+ description: 'The total revenue from new customer purchases attributed to ads across all channels.',
401
+ sumPrefix: '$',
402
+ sumSuffix: '',
403
+ avgPrefix: '$',
404
+ avgSuffix: '',
405
+ icon: 'channel',
406
+ measure: MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES_VALUE,
407
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
408
+ valueType: MeasureValueType.CURRENCY,
409
+ decimalPlaces: 2,
410
+ useCompactNotation: true,
411
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
412
+ },
413
+ [MEASURE.CHANNEL_NEW_CUSTOMER_CPA]: {
414
+ title: 'Channel New Customer CPA',
415
+ description: 'The cost per new customer acquisition across all channels.',
416
+ sumPrefix: '$',
417
+ sumSuffix: '',
418
+ avgPrefix: '$',
419
+ avgSuffix: '',
420
+ icon: 'channel',
421
+ measure: MEASURE.CHANNEL_NEW_CUSTOMER_CPA,
422
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
423
+ valueType: MeasureValueType.CURRENCY,
424
+ decimalPlaces: 2,
425
+ useCompactNotation: true,
426
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
427
+ },
428
+ [MEASURE.CHANNEL_NEW_CUSTOMER_ROAS]: {
429
+ title: 'Channel New Customer ROAS',
430
+ description: 'The return on ad spend for new customer purchases across all channels.',
431
+ sumPrefix: '',
432
+ sumSuffix: 'x',
433
+ avgPrefix: '',
434
+ avgSuffix: 'x',
435
+ icon: 'channel',
436
+ measure: MEASURE.CHANNEL_NEW_CUSTOMER_ROAS,
437
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
438
+ valueType: MeasureValueType.MULTIPLIER,
439
+ decimalPlaces: 2,
440
+ useCompactNotation: false,
441
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
442
+ },
443
+ [MEASURE.CHANNEL_OMNI_VIEW_CONTENTS]: {
444
+ title: 'Channel View Contents',
445
+ description: 'The number of times content was viewed across all channels.',
446
+ sumPrefix: '',
447
+ sumSuffix: '',
448
+ avgPrefix: '',
449
+ avgSuffix: '',
450
+ icon: 'channel',
451
+ measure: MEASURE.CHANNEL_OMNI_VIEW_CONTENTS,
452
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
453
+ valueType: MeasureValueType.NUMBER,
454
+ decimalPlaces: 0,
455
+ useCompactNotation: false,
456
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
457
+ },
458
+ [MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_VALUE]: {
459
+ title: 'Channel View Contents Value',
460
+ description: 'The total value associated with content views across all channels.',
461
+ sumPrefix: '$',
462
+ sumSuffix: '',
463
+ avgPrefix: '$',
464
+ avgSuffix: '',
465
+ icon: 'channel',
466
+ measure: MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_VALUE,
467
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
468
+ valueType: MeasureValueType.CURRENCY,
469
+ decimalPlaces: 2,
470
+ useCompactNotation: true,
471
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
472
+ },
473
+ [MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_COST]: {
474
+ title: 'Channel Cost per View Content',
475
+ description: 'The cost per content view across all channels.',
476
+ sumPrefix: '$',
477
+ sumSuffix: '',
478
+ avgPrefix: '$',
479
+ avgSuffix: '',
480
+ icon: 'channel',
481
+ measure: MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_COST,
482
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
483
+ valueType: MeasureValueType.CURRENCY,
484
+ decimalPlaces: 2,
485
+ useCompactNotation: true,
486
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
487
+ },
488
+ [MEASURE.CHANNEL_OMNI_ADD_TO_CARTS]: {
489
+ title: 'Channel Add to Carts',
490
+ description: 'The number of times products were added to cart across all channels.',
491
+ sumPrefix: '',
492
+ sumSuffix: '',
493
+ avgPrefix: '',
494
+ avgSuffix: '',
495
+ icon: 'channel',
496
+ measure: MEASURE.CHANNEL_OMNI_ADD_TO_CARTS,
497
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
498
+ valueType: MeasureValueType.NUMBER,
499
+ decimalPlaces: 0,
500
+ useCompactNotation: false,
501
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
502
+ },
503
+ [MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_VALUE]: {
504
+ title: 'Channel Add to Carts Value',
505
+ description: 'The total value of products added to cart across all channels.',
506
+ sumPrefix: '$',
507
+ sumSuffix: '',
508
+ avgPrefix: '$',
509
+ avgSuffix: '',
510
+ icon: 'channel',
511
+ measure: MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_VALUE,
512
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
513
+ valueType: MeasureValueType.CURRENCY,
514
+ decimalPlaces: 2,
515
+ useCompactNotation: true,
516
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
517
+ },
518
+ [MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_COST]: {
519
+ title: 'Channel Cost per Add to Cart',
520
+ description: 'The cost per add to cart event across all channels.',
521
+ sumPrefix: '$',
522
+ sumSuffix: '',
523
+ avgPrefix: '$',
524
+ avgSuffix: '',
525
+ icon: 'channel',
526
+ measure: MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_COST,
527
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
528
+ valueType: MeasureValueType.CURRENCY,
529
+ decimalPlaces: 2,
530
+ useCompactNotation: true,
531
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
532
+ },
533
+ [MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS]: {
534
+ title: 'Channel Initiate Checkouts',
535
+ description: 'The number of checkout initiations across all channels.',
536
+ sumPrefix: '',
537
+ sumSuffix: '',
538
+ avgPrefix: '',
539
+ avgSuffix: '',
540
+ icon: 'channel',
541
+ measure: MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS,
542
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
543
+ valueType: MeasureValueType.NUMBER,
544
+ decimalPlaces: 0,
545
+ useCompactNotation: false,
546
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
547
+ },
548
+ [MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_VALUE]: {
549
+ title: 'Channel Initiate Checkouts Value',
550
+ description: 'The total value of initiated checkouts across all channels.',
551
+ sumPrefix: '$',
552
+ sumSuffix: '',
553
+ avgPrefix: '$',
554
+ avgSuffix: '',
555
+ icon: 'channel',
556
+ measure: MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_VALUE,
557
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
558
+ valueType: MeasureValueType.CURRENCY,
559
+ decimalPlaces: 2,
560
+ useCompactNotation: true,
561
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
562
+ },
563
+ [MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_COST]: {
564
+ title: 'Channel Cost per Initiate Checkout',
565
+ description: 'The cost per checkout initiation across all channels.',
566
+ sumPrefix: '$',
567
+ sumSuffix: '',
568
+ avgPrefix: '$',
569
+ avgSuffix: '',
570
+ icon: 'channel',
571
+ measure: MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_COST,
572
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
573
+ valueType: MeasureValueType.CURRENCY,
574
+ decimalPlaces: 2,
575
+ useCompactNotation: true,
576
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
577
+ },
578
+ [MEASURE.CHANNEL_OMNI_SEARCHES]: {
579
+ title: 'Channel Searches',
580
+ description: 'The number of searches performed across all channels.',
581
+ sumPrefix: '',
582
+ sumSuffix: '',
583
+ avgPrefix: '',
584
+ avgSuffix: '',
585
+ icon: 'channel',
586
+ measure: MEASURE.CHANNEL_OMNI_SEARCHES,
587
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
588
+ valueType: MeasureValueType.NUMBER,
589
+ decimalPlaces: 0,
590
+ useCompactNotation: false,
591
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
592
+ },
593
+ [MEASURE.CHANNEL_OMNI_SEARCHES_VALUE]: {
594
+ title: 'Channel Searches Value',
595
+ description: 'The total value associated with searches across all channels.',
596
+ sumPrefix: '$',
597
+ sumSuffix: '',
598
+ avgPrefix: '$',
599
+ avgSuffix: '',
600
+ icon: 'channel',
601
+ measure: MEASURE.CHANNEL_OMNI_SEARCHES_VALUE,
150
602
  category: MEASURE_CATEGORY.UPSTACK_DATA,
151
603
  valueType: MeasureValueType.CURRENCY,
152
604
  decimalPlaces: 2,
153
605
  useCompactNotation: true,
154
606
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
155
607
  },
156
- [MEASURE.CHANNEL_CPI]: {
157
- title: 'CPI - Channel Reported',
158
- description: 'The average cost per interaction as reported by the channel.',
608
+ [MEASURE.CHANNEL_OMNI_SEARCHES_COST]: {
609
+ title: 'Channel Cost per Search',
610
+ description: 'The cost per search event across all channels.',
159
611
  sumPrefix: '$',
160
612
  sumSuffix: '',
161
613
  avgPrefix: '$',
162
614
  avgSuffix: '',
163
615
  icon: 'channel',
164
- measure: MEASURE.CHANNEL_CPI,
616
+ measure: MEASURE.CHANNEL_OMNI_SEARCHES_COST,
165
617
  category: MEASURE_CATEGORY.UPSTACK_DATA,
166
618
  valueType: MeasureValueType.CURRENCY,
167
619
  decimalPlaces: 2,
168
620
  useCompactNotation: true,
169
621
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
170
622
  },
171
- [MEASURE.CHANNEL_PURCHASES]: {
172
- title: 'Purchases - Channel Reported',
173
- description: 'The number of purchases as reported by the channel.',
623
+ [MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS]: {
624
+ title: 'Channel Add to Wishlists',
625
+ description: 'The number of times products were added to wishlists across all channels.',
174
626
  sumPrefix: '',
175
627
  sumSuffix: '',
176
628
  avgPrefix: '',
177
629
  avgSuffix: '',
178
630
  icon: 'channel',
179
- measure: MEASURE.CHANNEL_PURCHASES,
631
+ measure: MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS,
180
632
  category: MEASURE_CATEGORY.UPSTACK_DATA,
181
633
  valueType: MeasureValueType.NUMBER,
182
634
  decimalPlaces: 0,
183
635
  useCompactNotation: false,
184
636
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
185
637
  },
186
- [MEASURE.CHANNEL_PURCHASES_VALUE]: {
187
- title: 'Purchases Value - Channel Reported',
188
- description: 'The total value of purchases as reported by the channel.',
189
- sumPrefix: '$',
190
- sumSuffix: '',
191
- avgPrefix: '$',
192
- avgSuffix: '',
193
- icon: 'channel',
194
- measure: MEASURE.CHANNEL_PURCHASES_VALUE,
195
- category: MEASURE_CATEGORY.UPSTACK_DATA,
196
- valueType: MeasureValueType.CURRENCY,
197
- decimalPlaces: 2,
198
- useCompactNotation: true,
199
- applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
200
- },
201
- [MEASURE.CHANNEL_PURCHASES_COST]: {
202
- title: 'Purchases Cost - Channel Reported',
203
- description: 'The cost of purchases as reported by the channel.',
638
+ [MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_VALUE]: {
639
+ title: 'Channel Add to Wishlists Value',
640
+ description: 'The total value of products added to wishlists across all channels.',
204
641
  sumPrefix: '$',
205
642
  sumSuffix: '',
206
643
  avgPrefix: '$',
207
644
  avgSuffix: '',
208
645
  icon: 'channel',
209
- measure: MEASURE.CHANNEL_PURCHASES_COST,
646
+ measure: MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_VALUE,
210
647
  category: MEASURE_CATEGORY.UPSTACK_DATA,
211
648
  valueType: MeasureValueType.CURRENCY,
212
649
  decimalPlaces: 2,
213
650
  useCompactNotation: true,
214
651
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
215
652
  },
216
- [MEASURE.CHANNEL_CPA]: {
217
- title: 'CPA - Channel Reported',
218
- description: 'The amount spent per acquisition as reported by the channel.',
653
+ [MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_COST]: {
654
+ title: 'Channel Cost per Add to Wishlist',
655
+ description: 'The cost per add to wishlist event across all channels.',
219
656
  sumPrefix: '$',
220
657
  sumSuffix: '',
221
658
  avgPrefix: '$',
222
659
  avgSuffix: '',
223
660
  icon: 'channel',
224
- measure: MEASURE.CHANNEL_CPA,
661
+ measure: MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_COST,
225
662
  category: MEASURE_CATEGORY.UPSTACK_DATA,
226
663
  valueType: MeasureValueType.CURRENCY,
227
664
  decimalPlaces: 2,
228
665
  useCompactNotation: true,
229
666
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
230
667
  },
231
- [MEASURE.CHANNEL_ROAS]: {
232
- title: 'ROAS - Channel Reported',
233
- description: 'The return on ad spend as reported by the channel.',
668
+ [MEASURE.CHANNEL_ENGAGEMENTS]: {
669
+ title: 'Channel Engagements',
670
+ description: 'The number of engagements across all channels.',
234
671
  sumPrefix: '',
235
- sumSuffix: 'x',
672
+ sumSuffix: '',
236
673
  avgPrefix: '',
237
- avgSuffix: 'x',
674
+ avgSuffix: '',
238
675
  icon: 'channel',
239
- measure: MEASURE.CHANNEL_ROAS,
676
+ measure: MEASURE.CHANNEL_ENGAGEMENTS,
240
677
  category: MEASURE_CATEGORY.UPSTACK_DATA,
241
- valueType: MeasureValueType.MULTIPLIER,
242
- decimalPlaces: 2,
678
+ valueType: MeasureValueType.NUMBER,
679
+ decimalPlaces: 0,
243
680
  useCompactNotation: false,
244
681
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
245
682
  },
246
- [MEASURE.CHANNEL_NEW_CUSTOMER_CPA]: {
247
- title: 'New Customer CPA - Channel Reported',
248
- description: 'The cost per acquisition for new customers as reported by the channel.',
683
+ [MEASURE.CHANNEL_ENGAGEMENTS_COST]: {
684
+ title: 'Channel Cost per Engagement',
685
+ description: 'The cost per engagement across all channels.',
249
686
  sumPrefix: '$',
250
687
  sumSuffix: '',
251
688
  avgPrefix: '$',
252
689
  avgSuffix: '',
253
690
  icon: 'channel',
254
- measure: MEASURE.CHANNEL_NEW_CUSTOMER_CPA,
691
+ measure: MEASURE.CHANNEL_ENGAGEMENTS_COST,
255
692
  category: MEASURE_CATEGORY.UPSTACK_DATA,
256
693
  valueType: MeasureValueType.CURRENCY,
257
694
  decimalPlaces: 2,
258
695
  useCompactNotation: true,
259
696
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
260
697
  },
261
- [MEASURE.CHANNEL_NEW_CUSTOMER_ROAS]: {
262
- title: 'New Customer ROAS - Channel Reported',
263
- description: 'The return on ad spend for new customers as reported by the channel.',
698
+ [MEASURE.CHANNEL_ENGAGEMENT_RATE]: {
699
+ title: 'Channel Engagement Rate',
700
+ description: 'The percentage of impressions that resulted in engagements across all channels.',
264
701
  sumPrefix: '',
265
- sumSuffix: 'x',
702
+ sumSuffix: '%',
266
703
  avgPrefix: '',
267
- avgSuffix: 'x',
704
+ avgSuffix: '%',
268
705
  icon: 'channel',
269
- measure: MEASURE.CHANNEL_NEW_CUSTOMER_ROAS,
706
+ measure: MEASURE.CHANNEL_ENGAGEMENT_RATE,
270
707
  category: MEASURE_CATEGORY.UPSTACK_DATA,
271
- valueType: MeasureValueType.MULTIPLIER,
708
+ valueType: MeasureValueType.PERCENTAGE,
272
709
  decimalPlaces: 2,
273
710
  useCompactNotation: false,
274
711
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
275
712
  },
276
- [MEASURE.CHANNEL_UNIQUE_CLICKS]: {
277
- title: 'Unique Clicks - Channel Reported',
278
- description: 'The number of unique clicks as reported by the channel.',
713
+ [MEASURE.CHANNEL_SHARES]: {
714
+ title: 'Channel Posts',
715
+ description: 'The number of posts across all channels.',
279
716
  sumPrefix: '',
280
717
  sumSuffix: '',
281
718
  avgPrefix: '',
282
719
  avgSuffix: '',
283
720
  icon: 'channel',
284
- measure: MEASURE.CHANNEL_UNIQUE_CLICKS,
721
+ measure: MEASURE.CHANNEL_SHARES,
285
722
  category: MEASURE_CATEGORY.UPSTACK_DATA,
286
723
  valueType: MeasureValueType.NUMBER,
287
724
  decimalPlaces: 0,
288
725
  useCompactNotation: false,
289
726
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
290
727
  },
291
- [MEASURE.CHANNEL_COST_PER_UNIQUE_CLICK]: {
292
- title: 'Cost Per Unique Click - Channel Reported',
293
- description: 'The average cost per unique click as reported by the channel.',
728
+ [MEASURE.CHANNEL_SHARES_COST]: {
729
+ title: 'Channel Cost per Post',
730
+ description: 'The cost per post across all channels.',
294
731
  sumPrefix: '$',
295
732
  sumSuffix: '',
296
733
  avgPrefix: '$',
297
734
  avgSuffix: '',
298
735
  icon: 'channel',
299
- measure: MEASURE.CHANNEL_COST_PER_UNIQUE_CLICK,
736
+ measure: MEASURE.CHANNEL_SHARES_COST,
300
737
  category: MEASURE_CATEGORY.UPSTACK_DATA,
301
738
  valueType: MeasureValueType.CURRENCY,
302
739
  decimalPlaces: 2,
303
740
  useCompactNotation: true,
304
741
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
305
742
  },
306
- [MEASURE.CHANNEL_INLINE_CLICKS]: {
307
- title: 'Inline Clicks - Channel Reported',
308
- description: 'The number of inline link clicks as reported by the channel.',
743
+ [MEASURE.CHANNEL_REACTIONS]: {
744
+ title: 'Channel Reactions',
745
+ description: 'The number of reactions across all channels.',
309
746
  sumPrefix: '',
310
747
  sumSuffix: '',
311
748
  avgPrefix: '',
312
749
  avgSuffix: '',
313
750
  icon: 'channel',
314
- measure: MEASURE.CHANNEL_INLINE_CLICKS,
751
+ measure: MEASURE.CHANNEL_REACTIONS,
315
752
  category: MEASURE_CATEGORY.UPSTACK_DATA,
316
753
  valueType: MeasureValueType.NUMBER,
317
754
  decimalPlaces: 0,
318
755
  useCompactNotation: false,
319
756
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
320
757
  },
321
- [MEASURE.CHANNEL_COST_PER_INLINE_CLICK]: {
322
- title: 'Cost Per Inline Click - Channel Reported',
323
- description: 'The average cost per inline link click as reported by the channel.',
758
+ [MEASURE.CHANNEL_REACTIONS_COST]: {
759
+ title: 'Channel Cost per Reaction',
760
+ description: 'The cost per reaction across all channels.',
324
761
  sumPrefix: '$',
325
762
  sumSuffix: '',
326
763
  avgPrefix: '$',
327
764
  avgSuffix: '',
328
765
  icon: 'channel',
329
- measure: MEASURE.CHANNEL_COST_PER_INLINE_CLICK,
766
+ measure: MEASURE.CHANNEL_REACTIONS_COST,
330
767
  category: MEASURE_CATEGORY.UPSTACK_DATA,
331
768
  valueType: MeasureValueType.CURRENCY,
332
769
  decimalPlaces: 2,
333
770
  useCompactNotation: true,
334
771
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
335
772
  },
336
- [MEASURE.CHANNEL_INLINE_CLICK_CTR]: {
337
- title: 'Inline Click CTR - Channel Reported',
338
- description: 'The click-through rate for inline links as reported by the channel.',
339
- sumPrefix: '',
340
- sumSuffix: '%',
341
- avgPrefix: '',
342
- avgSuffix: '%',
343
- icon: 'channel',
344
- measure: MEASURE.CHANNEL_INLINE_CLICK_CTR,
345
- category: MEASURE_CATEGORY.UPSTACK_DATA,
346
- valueType: MeasureValueType.PERCENTAGE,
347
- decimalPlaces: 2,
348
- useCompactNotation: false,
349
- applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
350
- },
351
- [MEASURE.CHANNEL_OUTBOUND_CLICKS]: {
352
- title: 'Outbound Clicks - Channel Reported',
353
- description: 'The number of outbound clicks as reported by the channel.',
773
+ [MEASURE.CHANNEL_LIKES]: {
774
+ title: 'Channel Likes',
775
+ description: 'The number of likes across all channels.',
354
776
  sumPrefix: '',
355
777
  sumSuffix: '',
356
778
  avgPrefix: '',
357
779
  avgSuffix: '',
358
780
  icon: 'channel',
359
- measure: MEASURE.CHANNEL_OUTBOUND_CLICKS,
781
+ measure: MEASURE.CHANNEL_LIKES,
360
782
  category: MEASURE_CATEGORY.UPSTACK_DATA,
361
783
  valueType: MeasureValueType.NUMBER,
362
784
  decimalPlaces: 0,
363
785
  useCompactNotation: false,
364
786
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
365
787
  },
366
- [MEASURE.CHANNEL_COST_PER_OUTBOUND_CLICK]: {
367
- title: 'Cost Per Outbound Click - Channel Reported',
368
- description: 'The average cost per outbound click as reported by the channel.',
788
+ [MEASURE.CHANNEL_LIKES_COST]: {
789
+ title: 'Channel Cost per Like',
790
+ description: 'The cost per like across all channels.',
369
791
  sumPrefix: '$',
370
792
  sumSuffix: '',
371
793
  avgPrefix: '$',
372
794
  avgSuffix: '',
373
795
  icon: 'channel',
374
- measure: MEASURE.CHANNEL_COST_PER_OUTBOUND_CLICK,
796
+ measure: MEASURE.CHANNEL_LIKES_COST,
375
797
  category: MEASURE_CATEGORY.UPSTACK_DATA,
376
798
  valueType: MeasureValueType.CURRENCY,
377
799
  decimalPlaces: 2,
378
800
  useCompactNotation: true,
379
801
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
380
802
  },
381
- [MEASURE.CHANNEL_OUTBOUND_CLICKS_CTR]: {
382
- title: 'Outbound Click CTR - Channel Reported',
383
- description: 'The click-through rate for outbound links as reported by the channel.',
384
- sumPrefix: '',
385
- sumSuffix: '%',
386
- avgPrefix: '',
387
- avgSuffix: '%',
388
- icon: 'channel',
389
- measure: MEASURE.CHANNEL_OUTBOUND_CLICKS_CTR,
390
- category: MEASURE_CATEGORY.UPSTACK_DATA,
391
- valueType: MeasureValueType.PERCENTAGE,
392
- decimalPlaces: 2,
393
- useCompactNotation: false,
394
- applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
395
- },
396
- [MEASURE.CHANNEL_OMNI_VIEW_CONTENTS]: {
397
- title: 'View Contents - Channel Reported',
398
- description: 'The number of times content was viewed as reported by the channel.',
803
+ [MEASURE.CHANNEL_COMMENTS]: {
804
+ title: 'Channel Comments',
805
+ description: 'The number of comments across all channels.',
399
806
  sumPrefix: '',
400
807
  sumSuffix: '',
401
808
  avgPrefix: '',
402
809
  avgSuffix: '',
403
810
  icon: 'channel',
404
- measure: MEASURE.CHANNEL_OMNI_VIEW_CONTENTS,
811
+ measure: MEASURE.CHANNEL_COMMENTS,
405
812
  category: MEASURE_CATEGORY.UPSTACK_DATA,
406
813
  valueType: MeasureValueType.NUMBER,
407
814
  decimalPlaces: 0,
408
815
  useCompactNotation: false,
409
816
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
410
817
  },
411
- [MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_VALUE]: {
412
- title: 'View Contents Value - Channel Reported',
413
- description: 'The total value of content views as reported by the channel.',
818
+ [MEASURE.CHANNEL_COMMENTS_COST]: {
819
+ title: 'Channel Cost per Comment',
820
+ description: 'The cost per comment across all channels.',
414
821
  sumPrefix: '$',
415
822
  sumSuffix: '',
416
823
  avgPrefix: '$',
417
824
  avgSuffix: '',
418
825
  icon: 'channel',
419
- measure: MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_VALUE,
826
+ measure: MEASURE.CHANNEL_COMMENTS_COST,
420
827
  category: MEASURE_CATEGORY.UPSTACK_DATA,
421
828
  valueType: MeasureValueType.CURRENCY,
422
829
  decimalPlaces: 2,
423
830
  useCompactNotation: true,
424
831
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
425
832
  },
426
- [MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_COST]: {
427
- title: 'View Contents Cost - Channel Reported',
428
- description: 'The cost of content views as reported by the channel.',
833
+ [MEASURE.CHANNEL_SAVES]: {
834
+ title: 'Channel Saves',
835
+ description: 'The number of saves across all channels.',
836
+ sumPrefix: '',
837
+ sumSuffix: '',
838
+ avgPrefix: '',
839
+ avgSuffix: '',
840
+ icon: 'channel',
841
+ measure: MEASURE.CHANNEL_SAVES,
842
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
843
+ valueType: MeasureValueType.NUMBER,
844
+ decimalPlaces: 0,
845
+ useCompactNotation: false,
846
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
847
+ },
848
+ [MEASURE.CHANNEL_SAVES_COST]: {
849
+ title: 'Channel Cost per Save',
850
+ description: 'The cost per save across all channels.',
429
851
  sumPrefix: '$',
430
852
  sumSuffix: '',
431
853
  avgPrefix: '$',
432
854
  avgSuffix: '',
433
855
  icon: 'channel',
434
- measure: MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_COST,
856
+ measure: MEASURE.CHANNEL_SAVES_COST,
435
857
  category: MEASURE_CATEGORY.UPSTACK_DATA,
436
858
  valueType: MeasureValueType.CURRENCY,
437
859
  decimalPlaces: 2,
438
860
  useCompactNotation: true,
439
861
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
440
862
  },
441
- [MEASURE.CHANNEL_OMNI_ADD_TO_CARTS]: {
442
- title: 'Add To Carts - Channel Reported',
443
- description: 'The number of times a product was added to cart as reported by the channel.',
863
+ [MEASURE.CHANNEL_LANDING_PAGE_VIEWS]: {
864
+ title: 'Channel Landing Page Views',
865
+ description: 'The number of landing page views across all channels.',
444
866
  sumPrefix: '',
445
867
  sumSuffix: '',
446
868
  avgPrefix: '',
447
869
  avgSuffix: '',
448
870
  icon: 'channel',
449
- measure: MEASURE.CHANNEL_OMNI_ADD_TO_CARTS,
871
+ measure: MEASURE.CHANNEL_LANDING_PAGE_VIEWS,
450
872
  category: MEASURE_CATEGORY.UPSTACK_DATA,
451
873
  valueType: MeasureValueType.NUMBER,
452
874
  decimalPlaces: 0,
453
875
  useCompactNotation: false,
454
876
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
455
877
  },
456
- [MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_VALUE]: {
457
- title: 'Add To Carts Value - Channel Reported',
458
- description: 'The total value of products added to cart as reported by the channel.',
878
+ [MEASURE.CHANNEL_LANDING_PAGE_VIEWS_COST]: {
879
+ title: 'Channel Cost per Landing Page View',
880
+ description: 'The cost per landing page view across all channels.',
459
881
  sumPrefix: '$',
460
882
  sumSuffix: '',
461
883
  avgPrefix: '$',
462
884
  avgSuffix: '',
463
885
  icon: 'channel',
464
- measure: MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_VALUE,
886
+ measure: MEASURE.CHANNEL_LANDING_PAGE_VIEWS_COST,
465
887
  category: MEASURE_CATEGORY.UPSTACK_DATA,
466
888
  valueType: MeasureValueType.CURRENCY,
467
889
  decimalPlaces: 2,
468
890
  useCompactNotation: true,
469
891
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
470
892
  },
471
- [MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_COST]: {
472
- title: 'Add To Carts Cost - Channel Reported',
473
- description: 'The cost of products added to cart as reported by the channel.',
474
- sumPrefix: '$',
475
- sumSuffix: '',
476
- avgPrefix: '$',
477
- avgSuffix: '',
893
+ [MEASURE.CHANNEL_LANDING_PAGE_VIEW_RATE]: {
894
+ title: 'Channel Landing Page View Rate',
895
+ description: 'The percentage of clicks that resulted in landing page views across all channels.',
896
+ sumPrefix: '',
897
+ sumSuffix: '%',
898
+ avgPrefix: '',
899
+ avgSuffix: '%',
478
900
  icon: 'channel',
479
- measure: MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_COST,
901
+ measure: MEASURE.CHANNEL_LANDING_PAGE_VIEW_RATE,
480
902
  category: MEASURE_CATEGORY.UPSTACK_DATA,
481
- valueType: MeasureValueType.CURRENCY,
903
+ valueType: MeasureValueType.PERCENTAGE,
482
904
  decimalPlaces: 2,
483
- useCompactNotation: true,
905
+ useCompactNotation: false,
484
906
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
485
907
  },
486
- [MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS]: {
487
- title: 'Initiate Checkouts - Channel Reported',
488
- description: 'The number of initiated checkouts as reported by the channel.',
908
+ [MEASURE.CHANNEL_LEADS]: {
909
+ title: 'Channel Leads',
910
+ description: 'The number of leads generated across all channels.',
489
911
  sumPrefix: '',
490
912
  sumSuffix: '',
491
913
  avgPrefix: '',
492
914
  avgSuffix: '',
493
915
  icon: 'channel',
494
- measure: MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS,
916
+ measure: MEASURE.CHANNEL_LEADS,
495
917
  category: MEASURE_CATEGORY.UPSTACK_DATA,
496
918
  valueType: MeasureValueType.NUMBER,
497
919
  decimalPlaces: 0,
498
920
  useCompactNotation: false,
499
921
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
500
922
  },
501
- [MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_VALUE]: {
502
- title: 'Initiate Checkouts Value - Channel Reported',
503
- description: 'The total value of initiated checkouts as reported by the channel.',
923
+ [MEASURE.CHANNEL_LEADS_VALUE]: {
924
+ title: 'Channel Leads Value',
925
+ description: 'The total value of leads generated across all channels.',
504
926
  sumPrefix: '$',
505
927
  sumSuffix: '',
506
928
  avgPrefix: '$',
507
929
  avgSuffix: '',
508
930
  icon: 'channel',
509
- measure: MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_VALUE,
931
+ measure: MEASURE.CHANNEL_LEADS_VALUE,
510
932
  category: MEASURE_CATEGORY.UPSTACK_DATA,
511
933
  valueType: MeasureValueType.CURRENCY,
512
934
  decimalPlaces: 2,
513
935
  useCompactNotation: true,
514
936
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
515
937
  },
516
- [MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_COST]: {
517
- title: 'Initiate Checkouts Cost - Channel Reported',
518
- description: 'The cost of initiated checkouts as reported by the channel.',
938
+ [MEASURE.CHANNEL_LEADS_COST]: {
939
+ title: 'Channel Cost per Lead',
940
+ description: 'The cost per lead generated across all channels.',
519
941
  sumPrefix: '$',
520
942
  sumSuffix: '',
521
943
  avgPrefix: '$',
522
944
  avgSuffix: '',
523
945
  icon: 'channel',
524
- measure: MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_COST,
946
+ measure: MEASURE.CHANNEL_LEADS_COST,
525
947
  category: MEASURE_CATEGORY.UPSTACK_DATA,
526
948
  valueType: MeasureValueType.CURRENCY,
527
949
  decimalPlaces: 2,
528
950
  useCompactNotation: true,
529
951
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
530
952
  },
531
- [MEASURE.CHANNEL_OMNI_SEARCHES]: {
532
- title: 'Searches - Channel Reported',
533
- description: 'The number of searches as reported by the channel.',
953
+ [MEASURE.CHANNEL_APPOINTMENTS]: {
954
+ title: 'Channel Appointments',
955
+ description: 'The number of appointments scheduled across all channels.',
534
956
  sumPrefix: '',
535
957
  sumSuffix: '',
536
958
  avgPrefix: '',
537
959
  avgSuffix: '',
538
960
  icon: 'channel',
539
- measure: MEASURE.CHANNEL_OMNI_SEARCHES,
961
+ measure: MEASURE.CHANNEL_APPOINTMENTS,
540
962
  category: MEASURE_CATEGORY.UPSTACK_DATA,
541
963
  valueType: MeasureValueType.NUMBER,
542
964
  decimalPlaces: 0,
543
965
  useCompactNotation: false,
544
966
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
545
967
  },
546
- [MEASURE.CHANNEL_OMNI_SEARCHES_VALUE]: {
547
- title: 'Searches Value - Channel Reported',
548
- description: 'The total value of searches as reported by the channel.',
968
+ [MEASURE.CHANNEL_APPOINTMENTS_VALUE]: {
969
+ title: 'Channel Appointments Value',
970
+ description: 'The total value of appointments scheduled across all channels.',
549
971
  sumPrefix: '$',
550
972
  sumSuffix: '',
551
973
  avgPrefix: '$',
552
974
  avgSuffix: '',
553
975
  icon: 'channel',
554
- measure: MEASURE.CHANNEL_OMNI_SEARCHES_VALUE,
976
+ measure: MEASURE.CHANNEL_APPOINTMENTS_VALUE,
555
977
  category: MEASURE_CATEGORY.UPSTACK_DATA,
556
978
  valueType: MeasureValueType.CURRENCY,
557
979
  decimalPlaces: 2,
558
980
  useCompactNotation: true,
559
981
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
560
982
  },
561
- [MEASURE.CHANNEL_OMNI_SEARCHES_COST]: {
562
- title: 'Searches Cost - Channel Reported',
563
- description: 'The cost of searches as reported by the channel.',
983
+ [MEASURE.CHANNEL_APPOINTMENTS_COST]: {
984
+ title: 'Channel Cost per Appointment',
985
+ description: 'The cost per appointment scheduled across all channels.',
564
986
  sumPrefix: '$',
565
987
  sumSuffix: '',
566
988
  avgPrefix: '$',
567
989
  avgSuffix: '',
568
990
  icon: 'channel',
569
- measure: MEASURE.CHANNEL_OMNI_SEARCHES_COST,
991
+ measure: MEASURE.CHANNEL_APPOINTMENTS_COST,
570
992
  category: MEASURE_CATEGORY.UPSTACK_DATA,
571
993
  valueType: MeasureValueType.CURRENCY,
572
994
  decimalPlaces: 2,
573
995
  useCompactNotation: true,
574
996
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
575
997
  },
576
- [MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS]: {
577
- title: 'Add To Withlists - Channel Reported',
578
- description: 'The number of times a product was added to a wishlist as reported by the channel.',
998
+ [MEASURE.CHANNEL_SUBSCRIBERS]: {
999
+ title: 'Channel Subscribers',
1000
+ description: 'The number of subscribers acquired across all channels.',
579
1001
  sumPrefix: '',
580
1002
  sumSuffix: '',
581
1003
  avgPrefix: '',
582
1004
  avgSuffix: '',
583
1005
  icon: 'channel',
584
- measure: MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS,
1006
+ measure: MEASURE.CHANNEL_SUBSCRIBERS,
585
1007
  category: MEASURE_CATEGORY.UPSTACK_DATA,
586
1008
  valueType: MeasureValueType.NUMBER,
587
1009
  decimalPlaces: 0,
588
1010
  useCompactNotation: false,
589
1011
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
590
1012
  },
591
- [MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_VALUE]: {
592
- title: 'Add To Withlists Value - Channel Reported',
593
- description: 'The total value of products added to wishlists as reported by the channel.',
1013
+ [MEASURE.CHANNEL_SUBSCRIBERS_VALUE]: {
1014
+ title: 'Channel Subscribers Value',
1015
+ description: 'The total value of subscriptions acquired across all channels.',
594
1016
  sumPrefix: '$',
595
1017
  sumSuffix: '',
596
1018
  avgPrefix: '$',
597
1019
  avgSuffix: '',
598
1020
  icon: 'channel',
599
- measure: MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_VALUE,
1021
+ measure: MEASURE.CHANNEL_SUBSCRIBERS_VALUE,
600
1022
  category: MEASURE_CATEGORY.UPSTACK_DATA,
601
1023
  valueType: MeasureValueType.CURRENCY,
602
1024
  decimalPlaces: 2,
603
1025
  useCompactNotation: true,
604
1026
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
605
1027
  },
606
- [MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_COST]: {
607
- title: 'Add To Withlists Cost - Channel Reported',
608
- description: 'The cost of products added to wishlists as reported by the channel.',
1028
+ [MEASURE.CHANNEL_SUBSCRIBERS_COST]: {
1029
+ title: 'Channel Cost per Subscriber',
1030
+ description: 'The cost per subscriber acquired across all channels.',
609
1031
  sumPrefix: '$',
610
1032
  sumSuffix: '',
611
1033
  avgPrefix: '$',
612
1034
  avgSuffix: '',
613
1035
  icon: 'channel',
614
- measure: MEASURE.CHANNEL_OMNI_ADD_TO_WITHLISTS_COST,
1036
+ measure: MEASURE.CHANNEL_SUBSCRIBERS_COST,
615
1037
  category: MEASURE_CATEGORY.UPSTACK_DATA,
616
1038
  valueType: MeasureValueType.CURRENCY,
617
1039
  decimalPlaces: 2,
618
1040
  useCompactNotation: true,
619
1041
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
620
1042
  },
621
- [MEASURE.CHANNEL_POSTS]: {
622
- title: 'Posts - Channel Reported',
623
- description: 'The number of posts as reported by the channel.',
1043
+ [MEASURE.CHANNEL_START_TRIALS]: {
1044
+ title: 'Channel Trial Starts',
1045
+ description: 'The number of trial starts across all channels.',
624
1046
  sumPrefix: '',
625
1047
  sumSuffix: '',
626
1048
  avgPrefix: '',
627
1049
  avgSuffix: '',
628
1050
  icon: 'channel',
629
- measure: MEASURE.CHANNEL_POSTS,
1051
+ measure: MEASURE.CHANNEL_START_TRIALS,
630
1052
  category: MEASURE_CATEGORY.UPSTACK_DATA,
631
1053
  valueType: MeasureValueType.NUMBER,
632
1054
  decimalPlaces: 0,
633
1055
  useCompactNotation: false,
634
1056
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
635
1057
  },
636
- [MEASURE.CHANNEL_POSTS_VALUE]: {
637
- title: 'Posts Value - Channel Reported',
638
- description: 'The total value of posts as reported by the channel.',
1058
+ [MEASURE.CHANNEL_START_TRIALS_VALUE]: {
1059
+ title: 'Channel Trial Starts Value',
1060
+ description: 'The total value of trial starts across all channels.',
639
1061
  sumPrefix: '$',
640
1062
  sumSuffix: '',
641
1063
  avgPrefix: '$',
642
1064
  avgSuffix: '',
643
1065
  icon: 'channel',
644
- measure: MEASURE.CHANNEL_POSTS_VALUE,
1066
+ measure: MEASURE.CHANNEL_START_TRIALS_VALUE,
645
1067
  category: MEASURE_CATEGORY.UPSTACK_DATA,
646
1068
  valueType: MeasureValueType.CURRENCY,
647
1069
  decimalPlaces: 2,
648
1070
  useCompactNotation: true,
649
1071
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
650
1072
  },
651
- [MEASURE.CHANNEL_POSTS_COST]: {
652
- title: 'Posts Cost - Channel Reported',
653
- description: 'The cost of posts as reported by the channel.',
1073
+ [MEASURE.CHANNEL_START_TRIALS_COST]: {
1074
+ title: 'Channel Cost per Trial Start',
1075
+ description: 'The cost per trial start across all channels.',
654
1076
  sumPrefix: '$',
655
1077
  sumSuffix: '',
656
1078
  avgPrefix: '$',
657
1079
  avgSuffix: '',
658
1080
  icon: 'channel',
659
- measure: MEASURE.CHANNEL_POSTS_COST,
1081
+ measure: MEASURE.CHANNEL_START_TRIALS_COST,
660
1082
  category: MEASURE_CATEGORY.UPSTACK_DATA,
661
1083
  valueType: MeasureValueType.CURRENCY,
662
1084
  decimalPlaces: 2,
663
1085
  useCompactNotation: true,
664
1086
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
665
1087
  },
666
- [MEASURE.CHANNEL_POST_ENGAGEMENTS]: {
667
- title: 'Post Engagements - Channel Reported',
668
- description: 'The number of post engagements as reported by the channel.',
1088
+ [MEASURE.CHANNEL_SUBMIT_APPLICATIONS]: {
1089
+ title: 'Channel Application Submissions',
1090
+ description: 'The number of application submissions across all channels.',
669
1091
  sumPrefix: '',
670
1092
  sumSuffix: '',
671
1093
  avgPrefix: '',
672
1094
  avgSuffix: '',
673
1095
  icon: 'channel',
674
- measure: MEASURE.CHANNEL_POST_ENGAGEMENTS,
1096
+ measure: MEASURE.CHANNEL_SUBMIT_APPLICATIONS,
675
1097
  category: MEASURE_CATEGORY.UPSTACK_DATA,
676
1098
  valueType: MeasureValueType.NUMBER,
677
1099
  decimalPlaces: 0,
678
1100
  useCompactNotation: false,
679
1101
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
680
1102
  },
681
- [MEASURE.CHANNEL_POST_ENGAGEMENTS_VALUE]: {
682
- title: 'Post Engagements Value - Channel Reported',
683
- description: 'The total value of post engagements as reported by the channel.',
1103
+ [MEASURE.CHANNEL_SUBMIT_APPLICATIONS_VALUE]: {
1104
+ title: 'Channel Application Submissions Value',
1105
+ description: 'The total value of application submissions across all channels.',
684
1106
  sumPrefix: '$',
685
1107
  sumSuffix: '',
686
1108
  avgPrefix: '$',
687
1109
  avgSuffix: '',
688
1110
  icon: 'channel',
689
- measure: MEASURE.CHANNEL_POST_ENGAGEMENTS_VALUE,
1111
+ measure: MEASURE.CHANNEL_SUBMIT_APPLICATIONS_VALUE,
690
1112
  category: MEASURE_CATEGORY.UPSTACK_DATA,
691
1113
  valueType: MeasureValueType.CURRENCY,
692
1114
  decimalPlaces: 2,
693
1115
  useCompactNotation: true,
694
1116
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
695
1117
  },
696
- [MEASURE.CHANNEL_POST_ENGAGEMENTS_COST]: {
697
- title: 'Post Engagements Cost - Channel Reported',
698
- description: 'The cost of post engagements as reported by the channel.',
1118
+ [MEASURE.CHANNEL_SUBMIT_APPLICATIONS_COST]: {
1119
+ title: 'Channel Cost per Application Submission',
1120
+ description: 'The cost per application submission across all channels.',
699
1121
  sumPrefix: '$',
700
1122
  sumSuffix: '',
701
1123
  avgPrefix: '$',
702
1124
  avgSuffix: '',
703
1125
  icon: 'channel',
704
- measure: MEASURE.CHANNEL_POST_ENGAGEMENTS_COST,
1126
+ measure: MEASURE.CHANNEL_SUBMIT_APPLICATIONS_COST,
705
1127
  category: MEASURE_CATEGORY.UPSTACK_DATA,
706
1128
  valueType: MeasureValueType.CURRENCY,
707
1129
  decimalPlaces: 2,
708
1130
  useCompactNotation: true,
709
1131
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
710
1132
  },
711
- [MEASURE.CHANNEL_POST_REACTIONS]: {
712
- title: 'Post Reactions - Channel Reported',
713
- description: 'The number of post reactions as reported by the channel.',
1133
+ [MEASURE.CHANNEL_APP_INSTALLS]: {
1134
+ title: 'Channel App Installs',
1135
+ description: 'The number of app installs across all channels.',
714
1136
  sumPrefix: '',
715
1137
  sumSuffix: '',
716
1138
  avgPrefix: '',
717
1139
  avgSuffix: '',
718
1140
  icon: 'channel',
719
- measure: MEASURE.CHANNEL_POST_REACTIONS,
1141
+ measure: MEASURE.CHANNEL_APP_INSTALLS,
720
1142
  category: MEASURE_CATEGORY.UPSTACK_DATA,
721
1143
  valueType: MeasureValueType.NUMBER,
722
1144
  decimalPlaces: 0,
723
1145
  useCompactNotation: false,
724
1146
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
725
1147
  },
726
- [MEASURE.CHANNEL_POST_REACTIONS_VALUE]: {
727
- title: 'Post Reactions Value - Channel Reported',
728
- description: 'The total value of post reactions as reported by the channel.',
1148
+ [MEASURE.CHANNEL_APP_INSTALLS_VALUE]: {
1149
+ title: 'Channel App Installs Value',
1150
+ description: 'The total value of app installs across all channels.',
729
1151
  sumPrefix: '$',
730
1152
  sumSuffix: '',
731
1153
  avgPrefix: '$',
732
1154
  avgSuffix: '',
733
1155
  icon: 'channel',
734
- measure: MEASURE.CHANNEL_POST_REACTIONS_VALUE,
1156
+ measure: MEASURE.CHANNEL_APP_INSTALLS_VALUE,
735
1157
  category: MEASURE_CATEGORY.UPSTACK_DATA,
736
1158
  valueType: MeasureValueType.CURRENCY,
737
1159
  decimalPlaces: 2,
738
1160
  useCompactNotation: true,
739
1161
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
740
1162
  },
741
- [MEASURE.CHANNEL_POST_REACTIONS_COST]: {
742
- title: 'Post Reactions Cost - Channel Reported',
743
- description: 'The cost of post reactions as reported by the channel.',
1163
+ [MEASURE.CHANNEL_APP_INSTALLS_COST]: {
1164
+ title: 'Channel Cost per App Install',
1165
+ description: 'The cost per app install across all channels.',
744
1166
  sumPrefix: '$',
745
1167
  sumSuffix: '',
746
1168
  avgPrefix: '$',
747
1169
  avgSuffix: '',
748
1170
  icon: 'channel',
749
- measure: MEASURE.CHANNEL_POST_REACTIONS_COST,
1171
+ measure: MEASURE.CHANNEL_APP_INSTALLS_COST,
750
1172
  category: MEASURE_CATEGORY.UPSTACK_DATA,
751
1173
  valueType: MeasureValueType.CURRENCY,
752
1174
  decimalPlaces: 2,
753
1175
  useCompactNotation: true,
754
1176
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
755
1177
  },
756
- [MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS]: {
757
- title: 'View Through Conversions - Channel Reported',
758
- description: 'The number of view through conversions as reported by the channel.',
759
- sumPrefix: '',
760
- sumSuffix: '',
761
- avgPrefix: '',
762
- avgSuffix: '',
763
- icon: 'channel',
764
- measure: MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS,
765
- category: MEASURE_CATEGORY.UPSTACK_DATA,
766
- valueType: MeasureValueType.NUMBER,
767
- decimalPlaces: 0,
768
- useCompactNotation: false,
769
- applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
770
- },
771
- [MEASURE.CHANNEL_LEADS]: {
772
- title: 'Leads - Channel Reported',
773
- description: 'The number of leads as reported by the channel.',
1178
+ [MEASURE.CHANNEL_COMPLETE_REGISTRATIONS]: {
1179
+ title: 'Channel Completed Registrations',
1180
+ description: 'The number of completed registrations across all channels.',
774
1181
  sumPrefix: '',
775
1182
  sumSuffix: '',
776
1183
  avgPrefix: '',
777
1184
  avgSuffix: '',
778
1185
  icon: 'channel',
779
- measure: MEASURE.CHANNEL_LEADS,
1186
+ measure: MEASURE.CHANNEL_COMPLETE_REGISTRATIONS,
780
1187
  category: MEASURE_CATEGORY.UPSTACK_DATA,
781
1188
  valueType: MeasureValueType.NUMBER,
782
1189
  decimalPlaces: 0,
783
1190
  useCompactNotation: false,
784
1191
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
785
1192
  },
786
- [MEASURE.CHANNEL_LEADS_VALUE]: {
787
- title: 'Leads Value - Channel Reported',
788
- description: 'The total value of leads as reported by the channel.',
1193
+ [MEASURE.CHANNEL_COMPLETE_REGISTRATIONS_VALUE]: {
1194
+ title: 'Channel Completed Registrations Value',
1195
+ description: 'The total value of completed registrations across all channels.',
789
1196
  sumPrefix: '$',
790
1197
  sumSuffix: '',
791
1198
  avgPrefix: '$',
792
1199
  avgSuffix: '',
793
1200
  icon: 'channel',
794
- measure: MEASURE.CHANNEL_LEADS_VALUE,
1201
+ measure: MEASURE.CHANNEL_COMPLETE_REGISTRATIONS_VALUE,
795
1202
  category: MEASURE_CATEGORY.UPSTACK_DATA,
796
1203
  valueType: MeasureValueType.CURRENCY,
797
1204
  decimalPlaces: 2,
798
1205
  useCompactNotation: true,
799
1206
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
800
1207
  },
801
- [MEASURE.CHANNEL_LEADS_COST]: {
802
- title: 'Leads Cost - Channel Reported',
803
- description: 'The cost of leads as reported by the channel.',
1208
+ [MEASURE.CHANNEL_COMPLETE_REGISTRATIONS_COST]: {
1209
+ title: 'Channel Cost per Completed Registration',
1210
+ description: 'The cost per completed registration across all channels.',
804
1211
  sumPrefix: '$',
805
1212
  sumSuffix: '',
806
1213
  avgPrefix: '$',
807
1214
  avgSuffix: '',
808
1215
  icon: 'channel',
809
- measure: MEASURE.CHANNEL_LEADS_COST,
1216
+ measure: MEASURE.CHANNEL_COMPLETE_REGISTRATIONS_COST,
810
1217
  category: MEASURE_CATEGORY.UPSTACK_DATA,
811
1218
  valueType: MeasureValueType.CURRENCY,
812
1219
  decimalPlaces: 2,
813
1220
  useCompactNotation: true,
814
1221
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
815
1222
  },
816
- [MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES]: {
817
- title: 'New Customer Purchases - Channel Reported',
818
- description: 'The number of new customer purchases as reported by the channel.',
1223
+ [MEASURE.CHANNEL_VIDEO_VIEWS]: {
1224
+ title: 'Channel Video Views',
1225
+ description: 'The number of video views across all channels.',
819
1226
  sumPrefix: '',
820
1227
  sumSuffix: '',
821
1228
  avgPrefix: '',
822
1229
  avgSuffix: '',
823
1230
  icon: 'channel',
824
- measure: MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES,
1231
+ measure: MEASURE.CHANNEL_VIDEO_VIEWS,
825
1232
  category: MEASURE_CATEGORY.UPSTACK_DATA,
826
1233
  valueType: MeasureValueType.NUMBER,
827
1234
  decimalPlaces: 0,
828
1235
  useCompactNotation: false,
829
1236
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
830
1237
  },
831
- [MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES_VALUE]: {
832
- title: 'New Customer Purchases Value - Channel Reported',
833
- description: 'The total value of new customer purchases as reported by the channel.',
1238
+ [MEASURE.CHANNEL_VIDEO_VIEWS_COST]: {
1239
+ title: 'Channel Cost per Video View',
1240
+ description: 'The cost per video view across all channels.',
834
1241
  sumPrefix: '$',
835
1242
  sumSuffix: '',
836
1243
  avgPrefix: '$',
837
1244
  avgSuffix: '',
838
1245
  icon: 'channel',
839
- measure: MEASURE.CHANNEL_NEW_CUSTOMER_PURCHASES_VALUE,
1246
+ measure: MEASURE.CHANNEL_VIDEO_VIEWS_COST,
840
1247
  category: MEASURE_CATEGORY.UPSTACK_DATA,
841
1248
  valueType: MeasureValueType.CURRENCY,
842
1249
  decimalPlaces: 2,
843
1250
  useCompactNotation: true,
844
1251
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
845
1252
  },
846
- [MEASURE.CHANNEL_VIDEO_VIEWS]: {
847
- title: 'Video Views - Channel Reported',
848
- description: 'The number of video views as reported by the channel.',
849
- sumPrefix: '',
850
- sumSuffix: '',
851
- avgPrefix: '',
852
- avgSuffix: '',
853
- icon: 'channel',
854
- measure: MEASURE.CHANNEL_VIDEO_VIEWS,
855
- category: MEASURE_CATEGORY.UPSTACK_DATA,
856
- valueType: MeasureValueType.NUMBER,
857
- decimalPlaces: 0,
858
- useCompactNotation: false,
859
- applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
860
- },
861
- [MEASURE.CHANNEL_VIDEO_VIEWS_COST]: {
862
- title: 'Video Views Cost - Channel Reported',
863
- description: 'The cost of video views as reported by the channel.',
1253
+ [MEASURE.CHANNEL_CPV]: {
1254
+ title: 'Channel CPV',
1255
+ description: 'The cost per video view across all channels.',
864
1256
  sumPrefix: '$',
865
1257
  sumSuffix: '',
866
1258
  avgPrefix: '$',
867
1259
  avgSuffix: '',
868
1260
  icon: 'channel',
869
- measure: MEASURE.CHANNEL_VIDEO_VIEWS_COST,
1261
+ measure: MEASURE.CHANNEL_CPV,
870
1262
  category: MEASURE_CATEGORY.UPSTACK_DATA,
871
1263
  valueType: MeasureValueType.CURRENCY,
872
1264
  decimalPlaces: 2,
873
1265
  useCompactNotation: true,
874
1266
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1267
+ aliases: [MEASURE.CHANNEL_VIDEO_VIEWS_COST]
875
1268
  },
876
- [MEASURE.CHANNEL_VIDEO_VIEWS_15SEC_COST]: {
877
- title: '15-Second Video Views Cost - Channel Reported',
878
- description: 'The cost of 15-second video views as reported by the channel.',
879
- sumPrefix: '$',
1269
+ [MEASURE.CHANNEL_VIDEO_VIEWS_15_SEC]: {
1270
+ title: 'Channel 15-Second Video Views',
1271
+ description: 'The number of video views that reached 15 seconds across all channels.',
1272
+ sumPrefix: '',
880
1273
  sumSuffix: '',
881
- avgPrefix: '$',
1274
+ avgPrefix: '',
882
1275
  avgSuffix: '',
883
1276
  icon: 'channel',
884
- measure: MEASURE.CHANNEL_VIDEO_VIEWS_15SEC_COST,
1277
+ measure: MEASURE.CHANNEL_VIDEO_VIEWS_15_SEC,
885
1278
  category: MEASURE_CATEGORY.UPSTACK_DATA,
886
- valueType: MeasureValueType.CURRENCY,
887
- decimalPlaces: 2,
888
- useCompactNotation: true,
1279
+ valueType: MeasureValueType.NUMBER,
1280
+ decimalPlaces: 0,
1281
+ useCompactNotation: false,
889
1282
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
890
1283
  },
891
- [MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY_COST]: {
892
- title: 'Video Thruplay Cost - Channel Reported',
893
- description: 'The cost of complete video views as reported by the channel.',
1284
+ [MEASURE.CHANNEL_VIDEO_VIEWS_15_SEC_COST]: {
1285
+ title: 'Channel Cost per 15-Second Video View',
1286
+ description: 'The cost per 15-second video view across all channels.',
894
1287
  sumPrefix: '$',
895
1288
  sumSuffix: '',
896
1289
  avgPrefix: '$',
897
1290
  avgSuffix: '',
898
1291
  icon: 'channel',
899
- measure: MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY_COST,
1292
+ measure: MEASURE.CHANNEL_VIDEO_VIEWS_15_SEC_COST,
900
1293
  category: MEASURE_CATEGORY.UPSTACK_DATA,
901
1294
  valueType: MeasureValueType.CURRENCY,
902
1295
  decimalPlaces: 2,
903
1296
  useCompactNotation: true,
904
1297
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
905
1298
  },
906
- [MEASURE.CHANNEL_VIDEO_30SEC_WATCHED_VIEWS]: {
907
- title: '30-Second Video Views - Channel Reported',
908
- description: 'The number of video views that reached 30 seconds as reported by the channel.',
1299
+ [MEASURE.CHANNEL_VIDEO_VIEWS_30_SEC]: {
1300
+ title: 'Channel 30-Second Video Views',
1301
+ description: 'The number of video views that reached 30 seconds across all channels.',
909
1302
  sumPrefix: '',
910
1303
  sumSuffix: '',
911
1304
  avgPrefix: '',
912
1305
  avgSuffix: '',
913
1306
  icon: 'channel',
914
- measure: MEASURE.CHANNEL_VIDEO_30SEC_WATCHED_VIEWS,
1307
+ measure: MEASURE.CHANNEL_VIDEO_VIEWS_30_SEC,
915
1308
  category: MEASURE_CATEGORY.UPSTACK_DATA,
916
1309
  valueType: MeasureValueType.NUMBER,
917
1310
  decimalPlaces: 0,
918
1311
  useCompactNotation: false,
919
1312
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
920
1313
  },
921
- [MEASURE.CHANNEL_VIDEO_AVG_TIME_WATCHED_VIEWS]: {
922
- title: 'Average Video Watch Time - Channel Reported',
923
- description: 'The average time viewers spent watching videos as reported by the channel.',
924
- sumPrefix: '',
1314
+ [MEASURE.CHANNEL_VIDEO_VIEWS_30_SEC_COST]: {
1315
+ title: 'Channel Cost per 30-Second Video View',
1316
+ description: 'The cost per 30-second video view across all channels.',
1317
+ sumPrefix: '$',
925
1318
  sumSuffix: '',
926
- avgPrefix: '',
1319
+ avgPrefix: '$',
927
1320
  avgSuffix: '',
928
1321
  icon: 'channel',
929
- measure: MEASURE.CHANNEL_VIDEO_AVG_TIME_WATCHED_VIEWS,
1322
+ measure: MEASURE.CHANNEL_VIDEO_VIEWS_30_SEC_COST,
930
1323
  category: MEASURE_CATEGORY.UPSTACK_DATA,
931
- valueType: MeasureValueType.DURATION,
932
- decimalPlaces: 0,
933
- useCompactNotation: false,
1324
+ valueType: MeasureValueType.CURRENCY,
1325
+ decimalPlaces: 2,
1326
+ useCompactNotation: true,
934
1327
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
935
1328
  },
936
1329
  [MEASURE.CHANNEL_VIDEO_P25_WATCHED_VIEWS]: {
937
- title: '25% Video Views - Channel Reported',
938
- description: 'The number of video views that reached 25% completion as reported by the channel.',
1330
+ title: 'Channel 25% Video Views',
1331
+ description: 'The number of video views that reached 25% completion across all channels.',
939
1332
  sumPrefix: '',
940
1333
  sumSuffix: '',
941
1334
  avgPrefix: '',
@@ -949,8 +1342,8 @@ export const CHANNEL_MEASURES_MAP = {
949
1342
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
950
1343
  },
951
1344
  [MEASURE.CHANNEL_VIDEO_P50_WATCHED_VIEWS]: {
952
- title: '50% Video Views - Channel Reported',
953
- description: 'The number of video views that reached 50% completion as reported by the channel.',
1345
+ title: 'Channel 50% Video Views',
1346
+ description: 'The number of video views that reached 50% completion across all channels.',
954
1347
  sumPrefix: '',
955
1348
  sumSuffix: '',
956
1349
  avgPrefix: '',
@@ -964,8 +1357,8 @@ export const CHANNEL_MEASURES_MAP = {
964
1357
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
965
1358
  },
966
1359
  [MEASURE.CHANNEL_VIDEO_P75_WATCHED_VIEWS]: {
967
- title: '75% Video Views - Channel Reported',
968
- description: 'The number of video views that reached 75% completion as reported by the channel.',
1360
+ title: 'Channel 75% Video Views',
1361
+ description: 'The number of video views that reached 75% completion across all channels.',
969
1362
  sumPrefix: '',
970
1363
  sumSuffix: '',
971
1364
  avgPrefix: '',
@@ -979,8 +1372,8 @@ export const CHANNEL_MEASURES_MAP = {
979
1372
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
980
1373
  },
981
1374
  [MEASURE.CHANNEL_VIDEO_P95_WATCHED_VIEWS]: {
982
- title: '95% Video Views - Channel Reported',
983
- description: 'The number of video views that reached 95% completion as reported by the channel.',
1375
+ title: 'Channel 95% Video Views',
1376
+ description: 'The number of video views that reached 95% completion across all channels.',
984
1377
  sumPrefix: '',
985
1378
  sumSuffix: '',
986
1379
  avgPrefix: '',
@@ -994,8 +1387,8 @@ export const CHANNEL_MEASURES_MAP = {
994
1387
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
995
1388
  },
996
1389
  [MEASURE.CHANNEL_VIDEO_P100_WATCHED_VIEWS]: {
997
- title: 'Complete Video Views - Channel Reported',
998
- description: 'The number of video views that reached 100% completion as reported by the channel.',
1390
+ title: 'Channel 100% Video Views',
1391
+ description: 'The number of video views that reached 100% completion across all channels.',
999
1392
  sumPrefix: '',
1000
1393
  sumSuffix: '',
1001
1394
  avgPrefix: '',
@@ -1009,8 +1402,8 @@ export const CHANNEL_MEASURES_MAP = {
1009
1402
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1010
1403
  },
1011
1404
  [MEASURE.CHANNEL_VIDEO_QUARTILE_P25_RATE]: {
1012
- title: '25% Video Completion Rate - Channel Reported',
1013
- description: 'The percentage of video views that reached 25% completion as reported by the channel.',
1405
+ title: 'Channel 25% Video Completion Rate',
1406
+ description: 'The percentage of video views that reached 25% completion across all channels.',
1014
1407
  sumPrefix: '',
1015
1408
  sumSuffix: '%',
1016
1409
  avgPrefix: '',
@@ -1024,8 +1417,8 @@ export const CHANNEL_MEASURES_MAP = {
1024
1417
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1025
1418
  },
1026
1419
  [MEASURE.CHANNEL_VIDEO_QUARTILE_P50_RATE]: {
1027
- title: '50% Video Completion Rate - Channel Reported',
1028
- description: 'The percentage of video views that reached 50% completion as reported by the channel.',
1420
+ title: 'Channel 50% Video Completion Rate',
1421
+ description: 'The percentage of video views that reached 50% completion across all channels.',
1029
1422
  sumPrefix: '',
1030
1423
  sumSuffix: '%',
1031
1424
  avgPrefix: '',
@@ -1039,8 +1432,8 @@ export const CHANNEL_MEASURES_MAP = {
1039
1432
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1040
1433
  },
1041
1434
  [MEASURE.CHANNEL_VIDEO_QUARTILE_P75_RATE]: {
1042
- title: '75% Video Completion Rate - Channel Reported',
1043
- description: 'The percentage of video views that reached 75% completion as reported by the channel.',
1435
+ title: 'Channel 75% Video Completion Rate',
1436
+ description: 'The percentage of video views that reached 75% completion across all channels.',
1044
1437
  sumPrefix: '',
1045
1438
  sumSuffix: '%',
1046
1439
  avgPrefix: '',
@@ -1054,8 +1447,8 @@ export const CHANNEL_MEASURES_MAP = {
1054
1447
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1055
1448
  },
1056
1449
  [MEASURE.CHANNEL_VIDEO_QUARTILE_P100_RATE]: {
1057
- title: '100% Video Completion Rate - Channel Reported',
1058
- description: 'The percentage of video views that reached full completion as reported by the channel.',
1450
+ title: 'Channel 100% Video Completion Rate',
1451
+ description: 'The percentage of video views that reached 100% completion across all channels.',
1059
1452
  sumPrefix: '',
1060
1453
  sumSuffix: '%',
1061
1454
  avgPrefix: '',
@@ -1068,9 +1461,39 @@ export const CHANNEL_MEASURES_MAP = {
1068
1461
  useCompactNotation: false,
1069
1462
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1070
1463
  },
1464
+ [MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY]: {
1465
+ title: 'Channel Video ThruPlay Views',
1466
+ description: 'The number of video views played to completion across all channels.',
1467
+ sumPrefix: '',
1468
+ sumSuffix: '',
1469
+ avgPrefix: '',
1470
+ avgSuffix: '',
1471
+ icon: 'channel',
1472
+ measure: MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY,
1473
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
1474
+ valueType: MeasureValueType.NUMBER,
1475
+ decimalPlaces: 0,
1476
+ useCompactNotation: false,
1477
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1478
+ },
1479
+ [MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY_COST]: {
1480
+ title: 'Channel Cost per Video ThruPlay',
1481
+ description: 'The cost per video played to completion across all channels.',
1482
+ sumPrefix: '$',
1483
+ sumSuffix: '',
1484
+ avgPrefix: '$',
1485
+ avgSuffix: '',
1486
+ icon: 'channel',
1487
+ measure: MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY_COST,
1488
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
1489
+ valueType: MeasureValueType.CURRENCY,
1490
+ decimalPlaces: 2,
1491
+ useCompactNotation: true,
1492
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1493
+ },
1071
1494
  [MEASURE.CHANNEL_VIDEO_PLAYS]: {
1072
- title: 'Video Plays - Channel Reported',
1073
- description: 'The number of video plays initiated as reported by the channel.',
1495
+ title: 'Channel Video Plays',
1496
+ description: 'The number of video play initiations across all channels.',
1074
1497
  sumPrefix: '',
1075
1498
  sumSuffix: '',
1076
1499
  avgPrefix: '',
@@ -1083,9 +1506,24 @@ export const CHANNEL_MEASURES_MAP = {
1083
1506
  useCompactNotation: false,
1084
1507
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1085
1508
  },
1509
+ [MEASURE.CHANNEL_VIDEO_PLAYES_COST]: {
1510
+ title: 'Channel Cost per Video Play',
1511
+ description: 'The cost per video play initiation across all channels.',
1512
+ sumPrefix: '$',
1513
+ sumSuffix: '',
1514
+ avgPrefix: '$',
1515
+ avgSuffix: '',
1516
+ icon: 'channel',
1517
+ measure: MEASURE.CHANNEL_VIDEO_PLAYES_COST,
1518
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
1519
+ valueType: MeasureValueType.CURRENCY,
1520
+ decimalPlaces: 2,
1521
+ useCompactNotation: true,
1522
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1523
+ },
1086
1524
  [MEASURE.CHANNEL_CONVERSIONS]: {
1087
- title: 'Conversions - Channel Reported',
1088
- description: 'The total number of conversions as reported by the channel.',
1525
+ title: 'Channel Conversions',
1526
+ description: 'The total number of conversions across all channels.',
1089
1527
  sumPrefix: '',
1090
1528
  sumSuffix: '',
1091
1529
  avgPrefix: '',
@@ -1099,8 +1537,8 @@ export const CHANNEL_MEASURES_MAP = {
1099
1537
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1100
1538
  },
1101
1539
  [MEASURE.CHANNEL_CONVERSIONS_VALUE]: {
1102
- title: 'Conversions Value - Channel Reported',
1103
- description: 'The total value of conversions as reported by the channel.',
1540
+ title: 'Channel Conversions Value',
1541
+ description: 'The total value of conversions across all channels.',
1104
1542
  sumPrefix: '$',
1105
1543
  sumSuffix: '',
1106
1544
  avgPrefix: '$',
@@ -1114,8 +1552,8 @@ export const CHANNEL_MEASURES_MAP = {
1114
1552
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1115
1553
  },
1116
1554
  [MEASURE.CHANNEL_CONVERSIONS_COST]: {
1117
- title: 'Conversions Cost - Channel Reported',
1118
- description: 'The cost of conversion as reported by the channel.',
1555
+ title: 'Channel Cost per Conversion',
1556
+ description: 'The cost per conversion across all channels.',
1119
1557
  sumPrefix: '$',
1120
1558
  sumSuffix: '',
1121
1559
  avgPrefix: '$',
@@ -1129,8 +1567,8 @@ export const CHANNEL_MEASURES_MAP = {
1129
1567
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1130
1568
  },
1131
1569
  [MEASURE.CHANNEL_CONVERSIONS_ROAS]: {
1132
- title: 'Conversions ROAS - Channel Reported',
1133
- description: 'The return on ad spend across conversions as reported by the channel.',
1570
+ title: 'Channel Conversions ROAS',
1571
+ description: 'The return on ad spend for conversions across all channels.',
1134
1572
  sumPrefix: '',
1135
1573
  sumSuffix: 'x',
1136
1574
  avgPrefix: '',
@@ -1144,8 +1582,8 @@ export const CHANNEL_MEASURES_MAP = {
1144
1582
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1145
1583
  },
1146
1584
  [MEASURE.CHANNEL_ALL_CONVERSIONS]: {
1147
- title: 'All Conversions - Channel Reported',
1148
- description: 'The total number of conversions across all types as reported by the channel.',
1585
+ title: 'Channel All Conversions',
1586
+ description: 'The total number of all conversions across all channels.',
1149
1587
  sumPrefix: '',
1150
1588
  sumSuffix: '',
1151
1589
  avgPrefix: '',
@@ -1159,8 +1597,8 @@ export const CHANNEL_MEASURES_MAP = {
1159
1597
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
1160
1598
  },
1161
1599
  [MEASURE.CHANNEL_ALL_CONVERSIONS_VALUE]: {
1162
- title: 'All Conversions Value - Channel Reported',
1163
- description: 'The total value of all conversions as reported by the channel.',
1600
+ title: 'Channel All Conversions Value',
1601
+ description: 'The total value of all conversions across all channels.',
1164
1602
  sumPrefix: '$',
1165
1603
  sumSuffix: '',
1166
1604
  avgPrefix: '$',
@@ -1174,8 +1612,8 @@ export const CHANNEL_MEASURES_MAP = {
1174
1612
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
1175
1613
  },
1176
1614
  [MEASURE.CHANNEL_ALL_CONVERSIONS_COST]: {
1177
- title: 'All Conversions Cost - Channel Reported',
1178
- description: 'The cost of conversion as reported by the channel.',
1615
+ title: 'Channel Cost per All Conversions',
1616
+ description: 'The cost per conversion across all channels.',
1179
1617
  sumPrefix: '$',
1180
1618
  sumSuffix: '',
1181
1619
  avgPrefix: '$',
@@ -1189,8 +1627,8 @@ export const CHANNEL_MEASURES_MAP = {
1189
1627
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
1190
1628
  },
1191
1629
  [MEASURE.CHANNEL_ALL_CONVERSIONS_ROAS]: {
1192
- title: 'All Conversions ROAS - Channel Reported',
1193
- description: 'The return on ad spend across all conversions as reported by the channel.',
1630
+ title: 'Channel All Conversions ROAS',
1631
+ description: 'The return on ad spend for all conversions across all channels.',
1194
1632
  sumPrefix: '',
1195
1633
  sumSuffix: 'x',
1196
1634
  avgPrefix: '',
@@ -1203,20 +1641,35 @@ export const CHANNEL_MEASURES_MAP = {
1203
1641
  useCompactNotation: false,
1204
1642
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
1205
1643
  },
1206
- [MEASURE.CHANNEL_COST_TO_REACH_1000_ACCOUNTS]: {
1207
- title: 'Cost to Reach 1000 Accounts - Channel Reported',
1208
- description: 'The cost to reach 1000 accounts as reported by the channel.',
1644
+ [MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS]: {
1645
+ title: 'Channel View-Through Conversions',
1646
+ description: 'The number of conversions that occurred after someone saw, but did not click, an ad across all channels.',
1647
+ sumPrefix: '',
1648
+ sumSuffix: '',
1649
+ avgPrefix: '',
1650
+ avgSuffix: '',
1651
+ icon: 'channel',
1652
+ measure: MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS,
1653
+ category: MEASURE_CATEGORY.UPSTACK_DATA,
1654
+ valueType: MeasureValueType.NUMBER,
1655
+ decimalPlaces: 0,
1656
+ useCompactNotation: false,
1657
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1658
+ },
1659
+ [MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS_COST]: {
1660
+ title: 'Channel Cost per View-Through Conversion',
1661
+ description: 'The cost per view-through conversion across all channels.',
1209
1662
  sumPrefix: '$',
1210
1663
  sumSuffix: '',
1211
1664
  avgPrefix: '$',
1212
1665
  avgSuffix: '',
1213
1666
  icon: 'channel',
1214
- measure: MEASURE.CHANNEL_COST_TO_REACH_1000_ACCOUNTS,
1667
+ measure: MEASURE.CHANNEL_VIEW_THRU_CONVERSIONS_COST,
1215
1668
  category: MEASURE_CATEGORY.UPSTACK_DATA,
1216
1669
  valueType: MeasureValueType.CURRENCY,
1217
1670
  decimalPlaces: 2,
1218
1671
  useCompactNotation: true,
1219
1672
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1220
- }
1673
+ },
1221
1674
  };
1222
1675
  //# sourceMappingURL=channel-measure-definitions.js.map