@adtrackify/at-tracking-event-types 4.66.33 → 4.66.34
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.
- package/dist/cjs/types/api/measures/definitions/channel-measure-definitions.js +110 -110
- package/dist/cjs/types/api/measures/definitions/channel-measure-definitions.js.map +1 -1
- package/dist/cjs/types/api/measures/definitions/core-measure-definitions.js +2 -2
- package/dist/cjs/types/api/measures/definitions/core-measure-definitions.js.map +1 -1
- package/dist/cjs/types/api/measures/definitions/measure-applicable-contexts.d.ts +1 -0
- package/dist/cjs/types/api/measures/definitions/measure-applicable-contexts.js +6 -1
- package/dist/cjs/types/api/measures/definitions/measure-applicable-contexts.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/channel-measure-definitions.js +111 -111
- package/dist/esm/types/api/measures/definitions/channel-measure-definitions.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/core-measure-definitions.js +3 -3
- package/dist/esm/types/api/measures/definitions/core-measure-definitions.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/measure-applicable-contexts.d.ts +1 -0
- package/dist/esm/types/api/measures/definitions/measure-applicable-contexts.js +5 -0
- package/dist/esm/types/api/measures/definitions/measure-applicable-contexts.js.map +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import { MEASURE } from '../measures.js';
|
|
|
3
3
|
import { MEASURE_CATEGORY, MEASURE_SUBCATEGORY } from '../measure-categories.js';
|
|
4
4
|
import { MEASURE_ICON } from '../measure-icon.js';
|
|
5
5
|
import { MeasureValueType } from '../measure-value-type.js';
|
|
6
|
-
import {
|
|
6
|
+
import { ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS } from './measure-applicable-contexts.js';
|
|
7
7
|
export const CHANNEL_MEASURES_MAP = {
|
|
8
8
|
[MEASURE.CHANNEL_SPEND]: {
|
|
9
9
|
title: 'Channel Spend',
|
|
@@ -19,7 +19,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
19
19
|
valueType: MeasureValueType.CURRENCY,
|
|
20
20
|
decimalPlaces: 2,
|
|
21
21
|
useCompactNotation: true,
|
|
22
|
-
applicableContexts:
|
|
22
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
23
23
|
shortTitle: 'Channel Spend',
|
|
24
24
|
tooltip: 'The total amount of money spent on ads across all advertising channels in the selected period.',
|
|
25
25
|
relatedMeasures: [MEASURE.CHANNEL_IMPRESSIONS, MEASURE.CHANNEL_ROAS, MEASURE.CHANNEL_CPA],
|
|
@@ -38,7 +38,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
38
38
|
valueType: MeasureValueType.NUMBER,
|
|
39
39
|
decimalPlaces: 0,
|
|
40
40
|
useCompactNotation: false,
|
|
41
|
-
applicableContexts:
|
|
41
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
42
42
|
shortTitle: 'Channel Impressions',
|
|
43
43
|
tooltip: 'How many times your ads were displayed to users across all channels, including repeat views by the same person.',
|
|
44
44
|
relatedMeasures: [MEASURE.CHANNEL_REACH, MEASURE.CHANNEL_FREQUENCY, MEASURE.CHANNEL_CPM, MEASURE.CHANNEL_CTR],
|
|
@@ -57,7 +57,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
57
57
|
valueType: MeasureValueType.CURRENCY,
|
|
58
58
|
decimalPlaces: 2,
|
|
59
59
|
useCompactNotation: true,
|
|
60
|
-
applicableContexts:
|
|
60
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
61
61
|
shortTitle: 'Channel CPM',
|
|
62
62
|
tooltip: 'How much you pay on average for every 1,000 ad impressions across all channels. Lower CPM means cheaper reach.',
|
|
63
63
|
formulaDisplay: 'Total Spend ÷ Impressions × 1,000',
|
|
@@ -78,7 +78,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
78
78
|
valueType: MeasureValueType.NUMBER,
|
|
79
79
|
decimalPlaces: 0,
|
|
80
80
|
useCompactNotation: false,
|
|
81
|
-
applicableContexts:
|
|
81
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
82
82
|
shortTitle: 'Channel Frequency',
|
|
83
83
|
tooltip: 'The average number of times each unique person saw your ads. High frequency may indicate ad fatigue.',
|
|
84
84
|
formulaDisplay: 'Impressions ÷ Reach',
|
|
@@ -99,7 +99,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
99
99
|
valueType: MeasureValueType.NUMBER,
|
|
100
100
|
decimalPlaces: 0,
|
|
101
101
|
useCompactNotation: false,
|
|
102
|
-
applicableContexts:
|
|
102
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
103
103
|
shortTitle: 'Channel Reach',
|
|
104
104
|
tooltip: 'The number of distinct people who were shown your ads at least once across all channels.',
|
|
105
105
|
relatedMeasures: [MEASURE.CHANNEL_IMPRESSIONS, MEASURE.CHANNEL_FREQUENCY, MEASURE.CHANNEL_CPP],
|
|
@@ -118,7 +118,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
118
118
|
valueType: MeasureValueType.CURRENCY,
|
|
119
119
|
decimalPlaces: 2,
|
|
120
120
|
useCompactNotation: true,
|
|
121
|
-
applicableContexts:
|
|
121
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
122
122
|
aliases: [MEASURE.CHANNEL_COST_TO_REACH_1000_ACCOUNTS],
|
|
123
123
|
shortTitle: 'Channel CPP',
|
|
124
124
|
tooltip: 'How much you pay on average to reach 1,000 unique people across all channels. Measures the cost efficiency of your audience reach.',
|
|
@@ -140,7 +140,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
140
140
|
valueType: MeasureValueType.NUMBER,
|
|
141
141
|
decimalPlaces: 0,
|
|
142
142
|
useCompactNotation: false,
|
|
143
|
-
applicableContexts:
|
|
143
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
144
144
|
shortTitle: 'Channel Clicks',
|
|
145
145
|
tooltip: 'The total number of clicks on your ads across all channels, including all click types.',
|
|
146
146
|
relatedMeasures: [MEASURE.CHANNEL_CTR, MEASURE.CHANNEL_CPC, MEASURE.CHANNEL_IMPRESSIONS],
|
|
@@ -159,7 +159,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
159
159
|
valueType: MeasureValueType.CURRENCY,
|
|
160
160
|
decimalPlaces: 2,
|
|
161
161
|
useCompactNotation: true,
|
|
162
|
-
applicableContexts:
|
|
162
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
163
163
|
shortTitle: 'Channel CPC',
|
|
164
164
|
tooltip: 'How much you spend on average for each click on your ads across all channels.',
|
|
165
165
|
formulaDisplay: 'Total Spend ÷ Clicks',
|
|
@@ -180,7 +180,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
180
180
|
valueType: MeasureValueType.PERCENTAGE,
|
|
181
181
|
decimalPlaces: 2,
|
|
182
182
|
useCompactNotation: false,
|
|
183
|
-
applicableContexts:
|
|
183
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
184
184
|
shortTitle: 'Channel CTR',
|
|
185
185
|
tooltip: 'The percentage of ad impressions that resulted in a click. Higher CTR indicates more compelling ad creative or targeting.',
|
|
186
186
|
formulaDisplay: 'Clicks ÷ Impressions × 100',
|
|
@@ -201,7 +201,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
201
201
|
valueType: MeasureValueType.NUMBER,
|
|
202
202
|
decimalPlaces: 0,
|
|
203
203
|
useCompactNotation: false,
|
|
204
|
-
applicableContexts:
|
|
204
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
205
205
|
shortTitle: 'Channel Unique Clicks',
|
|
206
206
|
tooltip: 'The number of distinct people who clicked your ads, counting each person only once regardless of how many times they clicked.',
|
|
207
207
|
relatedMeasures: [MEASURE.CHANNEL_CLICKS, MEASURE.CHANNEL_UNIQUE_CLICKS_CTR, MEASURE.CHANNEL_COST_PER_UNIQUE_CLICK],
|
|
@@ -220,7 +220,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
220
220
|
valueType: MeasureValueType.PERCENTAGE,
|
|
221
221
|
decimalPlaces: 2,
|
|
222
222
|
useCompactNotation: false,
|
|
223
|
-
applicableContexts:
|
|
223
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
224
224
|
shortTitle: 'Channel Unique CTR',
|
|
225
225
|
tooltip: 'The percentage of ad impressions that resulted in a click from a unique person. Filters out repeat clicks by the same user.',
|
|
226
226
|
formulaDisplay: 'Unique Clicks ÷ Impressions × 100',
|
|
@@ -241,7 +241,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
241
241
|
valueType: MeasureValueType.CURRENCY,
|
|
242
242
|
decimalPlaces: 2,
|
|
243
243
|
useCompactNotation: true,
|
|
244
|
-
applicableContexts:
|
|
244
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
245
245
|
shortTitle: 'Channel Cost/Unique Click',
|
|
246
246
|
tooltip: 'How much you spend on average for each unique person who clicks your ads, removing the effect of repeat clicks.',
|
|
247
247
|
formulaDisplay: 'Total Spend ÷ Unique Clicks',
|
|
@@ -262,7 +262,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
262
262
|
valueType: MeasureValueType.NUMBER,
|
|
263
263
|
decimalPlaces: 0,
|
|
264
264
|
useCompactNotation: false,
|
|
265
|
-
applicableContexts:
|
|
265
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
266
266
|
shortTitle: 'Channel Inline Clicks',
|
|
267
267
|
tooltip: 'The number of clicks on links embedded within the ad body, excluding clicks on the ad headline or call-to-action button.',
|
|
268
268
|
relatedMeasures: [MEASURE.CHANNEL_INLINE_CLICK_CTR, MEASURE.CHANNEL_COST_PER_INLINE_CLICK, MEASURE.CHANNEL_CLICKS],
|
|
@@ -281,7 +281,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
281
281
|
valueType: MeasureValueType.PERCENTAGE,
|
|
282
282
|
decimalPlaces: 2,
|
|
283
283
|
useCompactNotation: false,
|
|
284
|
-
applicableContexts:
|
|
284
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
285
285
|
shortTitle: 'Channel Inline CTR',
|
|
286
286
|
tooltip: 'The percentage of ad impressions that led to a click on an inline link within the ad content.',
|
|
287
287
|
formulaDisplay: 'Inline Link Clicks ÷ Impressions × 100',
|
|
@@ -302,7 +302,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
302
302
|
valueType: MeasureValueType.CURRENCY,
|
|
303
303
|
decimalPlaces: 2,
|
|
304
304
|
useCompactNotation: true,
|
|
305
|
-
applicableContexts:
|
|
305
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
306
306
|
shortTitle: 'Channel Cost/Inline Click',
|
|
307
307
|
tooltip: 'How much you spend on average for each click on an inline link within your ad content.',
|
|
308
308
|
formulaDisplay: 'Total Spend ÷ Inline Link Clicks',
|
|
@@ -323,7 +323,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
323
323
|
valueType: MeasureValueType.NUMBER,
|
|
324
324
|
decimalPlaces: 0,
|
|
325
325
|
useCompactNotation: false,
|
|
326
|
-
applicableContexts:
|
|
326
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
327
327
|
shortTitle: 'Channel Outbound Clicks',
|
|
328
328
|
tooltip: 'The number of clicks that took users off the advertising platform to an external destination, such as your website.',
|
|
329
329
|
relatedMeasures: [
|
|
@@ -346,7 +346,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
346
346
|
valueType: MeasureValueType.PERCENTAGE,
|
|
347
347
|
decimalPlaces: 2,
|
|
348
348
|
useCompactNotation: false,
|
|
349
|
-
applicableContexts:
|
|
349
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
350
350
|
shortTitle: 'Channel Outbound CTR',
|
|
351
351
|
tooltip: 'The percentage of ad impressions that resulted in a click leading users to an external destination.',
|
|
352
352
|
formulaDisplay: 'Outbound Clicks ÷ Impressions × 100',
|
|
@@ -367,7 +367,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
367
367
|
valueType: MeasureValueType.CURRENCY,
|
|
368
368
|
decimalPlaces: 2,
|
|
369
369
|
useCompactNotation: true,
|
|
370
|
-
applicableContexts:
|
|
370
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
371
371
|
shortTitle: 'Channel Cost/Outbound Click',
|
|
372
372
|
tooltip: 'How much you spend on average for each click that sends a user from the ad platform to an external destination.',
|
|
373
373
|
formulaDisplay: 'Total Spend ÷ Outbound Clicks',
|
|
@@ -388,7 +388,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
388
388
|
valueType: MeasureValueType.NUMBER,
|
|
389
389
|
decimalPlaces: 0,
|
|
390
390
|
useCompactNotation: false,
|
|
391
|
-
applicableContexts:
|
|
391
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
392
392
|
shortTitle: 'Channel Link Clicks',
|
|
393
393
|
tooltip: 'The number of clicks on any links within your ads across all channels.',
|
|
394
394
|
relatedMeasures: [MEASURE.CHANNEL_LINK_CLICKS_CTR, MEASURE.CHANNEL_COST_PER_LINK_CLICK, MEASURE.CHANNEL_CLICKS],
|
|
@@ -407,7 +407,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
407
407
|
valueType: MeasureValueType.PERCENTAGE,
|
|
408
408
|
decimalPlaces: 2,
|
|
409
409
|
useCompactNotation: false,
|
|
410
|
-
applicableContexts:
|
|
410
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
411
411
|
shortTitle: 'Channel Link CTR',
|
|
412
412
|
tooltip: 'The percentage of ad impressions that resulted in a click on a link within the ad.',
|
|
413
413
|
formulaDisplay: 'Link Clicks ÷ Impressions × 100',
|
|
@@ -428,7 +428,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
428
428
|
valueType: MeasureValueType.CURRENCY,
|
|
429
429
|
decimalPlaces: 2,
|
|
430
430
|
useCompactNotation: true,
|
|
431
|
-
applicableContexts:
|
|
431
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
432
432
|
shortTitle: 'Channel Cost/Link Click',
|
|
433
433
|
tooltip: 'How much you spend on average for each click on a link within your ads.',
|
|
434
434
|
formulaDisplay: 'Total Spend ÷ Link Clicks',
|
|
@@ -449,7 +449,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
449
449
|
valueType: MeasureValueType.NUMBER,
|
|
450
450
|
decimalPlaces: 0,
|
|
451
451
|
useCompactNotation: false,
|
|
452
|
-
applicableContexts:
|
|
452
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
453
453
|
shortTitle: 'Channel Purchases',
|
|
454
454
|
tooltip: 'The number of purchase conversions attributed to your ads across all channels.',
|
|
455
455
|
relatedMeasures: [MEASURE.CHANNEL_PURCHASES_VALUE, MEASURE.CHANNEL_CPA, MEASURE.CHANNEL_ROAS],
|
|
@@ -468,7 +468,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
468
468
|
valueType: MeasureValueType.CURRENCY,
|
|
469
469
|
decimalPlaces: 2,
|
|
470
470
|
useCompactNotation: true,
|
|
471
|
-
applicableContexts:
|
|
471
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
472
472
|
shortTitle: 'Channel Purchase Value',
|
|
473
473
|
tooltip: 'The total revenue generated from purchases attributed to your ads across all channels.',
|
|
474
474
|
relatedMeasures: [MEASURE.CHANNEL_PURCHASES, MEASURE.CHANNEL_ROAS, MEASURE.CHANNEL_SPEND],
|
|
@@ -487,7 +487,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
487
487
|
valueType: MeasureValueType.CURRENCY,
|
|
488
488
|
decimalPlaces: 2,
|
|
489
489
|
useCompactNotation: true,
|
|
490
|
-
applicableContexts:
|
|
490
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
491
491
|
aliases: [MEASURE.CHANNEL_PURCHASES_COST],
|
|
492
492
|
shortTitle: 'Channel CPA',
|
|
493
493
|
tooltip: 'How much you spend on average to acquire each purchase conversion across all channels.',
|
|
@@ -509,7 +509,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
509
509
|
valueType: MeasureValueType.MULTIPLIER,
|
|
510
510
|
decimalPlaces: 2,
|
|
511
511
|
useCompactNotation: false,
|
|
512
|
-
applicableContexts:
|
|
512
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
513
513
|
shortTitle: 'Channel ROAS',
|
|
514
514
|
tooltip: 'How many dollars of purchase revenue you generate for every dollar spent on ads across all channels. A ROAS of 3x means $3 revenue per $1 spent.',
|
|
515
515
|
formulaDisplay: 'Purchases Value ÷ Total Spend',
|
|
@@ -530,7 +530,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
530
530
|
valueType: MeasureValueType.NUMBER,
|
|
531
531
|
decimalPlaces: 0,
|
|
532
532
|
useCompactNotation: false,
|
|
533
|
-
applicableContexts:
|
|
533
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
534
534
|
shortTitle: 'Channel NC Purchases',
|
|
535
535
|
tooltip: 'The number of purchases from first-time customers attributed to your ads across all channels.',
|
|
536
536
|
relatedMeasures: [
|
|
@@ -553,7 +553,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
553
553
|
valueType: MeasureValueType.CURRENCY,
|
|
554
554
|
decimalPlaces: 2,
|
|
555
555
|
useCompactNotation: true,
|
|
556
|
-
applicableContexts:
|
|
556
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
557
557
|
shortTitle: 'Channel NC Purchase Val',
|
|
558
558
|
tooltip: 'The total revenue generated from first-time customer purchases attributed to your ads across all channels.',
|
|
559
559
|
relatedMeasures: [
|
|
@@ -576,7 +576,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
576
576
|
valueType: MeasureValueType.CURRENCY,
|
|
577
577
|
decimalPlaces: 2,
|
|
578
578
|
useCompactNotation: true,
|
|
579
|
-
applicableContexts:
|
|
579
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
580
580
|
shortTitle: 'Channel NC CPA',
|
|
581
581
|
tooltip: 'How much you spend on average to acquire each new customer through your ads across all channels.',
|
|
582
582
|
formulaDisplay: 'Total Spend ÷ New Customer Purchases',
|
|
@@ -597,7 +597,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
597
597
|
valueType: MeasureValueType.MULTIPLIER,
|
|
598
598
|
decimalPlaces: 2,
|
|
599
599
|
useCompactNotation: false,
|
|
600
|
-
applicableContexts:
|
|
600
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
601
601
|
shortTitle: 'Channel NC ROAS',
|
|
602
602
|
tooltip: 'How many dollars of new customer revenue you generate for every dollar spent on ads across all channels.',
|
|
603
603
|
formulaDisplay: 'New Customer Purchases Value ÷ Total Spend',
|
|
@@ -618,7 +618,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
618
618
|
valueType: MeasureValueType.NUMBER,
|
|
619
619
|
decimalPlaces: 0,
|
|
620
620
|
useCompactNotation: false,
|
|
621
|
-
applicableContexts:
|
|
621
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
622
622
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_VIEW_CONTENTS],
|
|
623
623
|
shortTitle: 'Channel View Contents',
|
|
624
624
|
tooltip: 'The number of product page or content views attributed to your ads across all channels, indicating top-of-funnel engagement.',
|
|
@@ -638,7 +638,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
638
638
|
valueType: MeasureValueType.CURRENCY,
|
|
639
639
|
decimalPlaces: 2,
|
|
640
640
|
useCompactNotation: true,
|
|
641
|
-
applicableContexts:
|
|
641
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
642
642
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_VALUE],
|
|
643
643
|
shortTitle: 'Channel View Contents Value',
|
|
644
644
|
tooltip: 'The total product value associated with content views attributed to your ads across all channels.',
|
|
@@ -658,7 +658,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
658
658
|
valueType: MeasureValueType.CURRENCY,
|
|
659
659
|
decimalPlaces: 2,
|
|
660
660
|
useCompactNotation: true,
|
|
661
|
-
applicableContexts:
|
|
661
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
662
662
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_VIEW_CONTENTS_COST],
|
|
663
663
|
shortTitle: 'Channel Cost/View Content',
|
|
664
664
|
tooltip: 'How much you spend on average for each product page or content view attributed to your ads.',
|
|
@@ -680,7 +680,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
680
680
|
valueType: MeasureValueType.NUMBER,
|
|
681
681
|
decimalPlaces: 0,
|
|
682
682
|
useCompactNotation: false,
|
|
683
|
-
applicableContexts:
|
|
683
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
684
684
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_ADD_TO_CARTS],
|
|
685
685
|
shortTitle: 'Channel Add to Carts',
|
|
686
686
|
tooltip: 'The number of times shoppers added a product to their cart after seeing your ads across all channels.',
|
|
@@ -700,7 +700,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
700
700
|
valueType: MeasureValueType.CURRENCY,
|
|
701
701
|
decimalPlaces: 2,
|
|
702
702
|
useCompactNotation: true,
|
|
703
|
-
applicableContexts:
|
|
703
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
704
704
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_VALUE],
|
|
705
705
|
shortTitle: 'Channel Add to Cart Value',
|
|
706
706
|
tooltip: 'The total product value of items added to cart attributed to your ads across all channels.',
|
|
@@ -720,7 +720,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
720
720
|
valueType: MeasureValueType.CURRENCY,
|
|
721
721
|
decimalPlaces: 2,
|
|
722
722
|
useCompactNotation: true,
|
|
723
|
-
applicableContexts:
|
|
723
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
724
724
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_ADD_TO_CARTS_COST],
|
|
725
725
|
shortTitle: 'Channel Cost/Add to Cart',
|
|
726
726
|
tooltip: 'How much you spend on average for each add-to-cart event attributed to your ads across all channels.',
|
|
@@ -742,7 +742,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
742
742
|
valueType: MeasureValueType.NUMBER,
|
|
743
743
|
decimalPlaces: 0,
|
|
744
744
|
useCompactNotation: false,
|
|
745
|
-
applicableContexts:
|
|
745
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
746
746
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS],
|
|
747
747
|
shortTitle: 'Channel Checkouts',
|
|
748
748
|
tooltip: 'The number of times shoppers began the checkout process after seeing your ads across all channels.',
|
|
@@ -762,7 +762,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
762
762
|
valueType: MeasureValueType.CURRENCY,
|
|
763
763
|
decimalPlaces: 2,
|
|
764
764
|
useCompactNotation: true,
|
|
765
|
-
applicableContexts:
|
|
765
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
766
766
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_VALUE],
|
|
767
767
|
shortTitle: 'Channel Checkout Value',
|
|
768
768
|
tooltip: 'The total product value in carts when shoppers initiated checkout, attributed to your ads across all channels.',
|
|
@@ -782,7 +782,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
782
782
|
valueType: MeasureValueType.CURRENCY,
|
|
783
783
|
decimalPlaces: 2,
|
|
784
784
|
useCompactNotation: true,
|
|
785
|
-
applicableContexts:
|
|
785
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
786
786
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_INITIATE_CHECKOUTS_COST],
|
|
787
787
|
shortTitle: 'Channel Cost/Checkout',
|
|
788
788
|
tooltip: 'How much you spend on average for each checkout initiation attributed to your ads across all channels.',
|
|
@@ -804,7 +804,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
804
804
|
valueType: MeasureValueType.NUMBER,
|
|
805
805
|
decimalPlaces: 0,
|
|
806
806
|
useCompactNotation: false,
|
|
807
|
-
applicableContexts:
|
|
807
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
808
808
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_SEARCHES],
|
|
809
809
|
shortTitle: 'Channel Searches',
|
|
810
810
|
tooltip: 'The number of on-site search events attributed to your ads across all channels.',
|
|
@@ -824,7 +824,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
824
824
|
valueType: MeasureValueType.CURRENCY,
|
|
825
825
|
decimalPlaces: 2,
|
|
826
826
|
useCompactNotation: true,
|
|
827
|
-
applicableContexts:
|
|
827
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
828
828
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_SEARCHES_VALUE],
|
|
829
829
|
shortTitle: 'Channel Searches Value',
|
|
830
830
|
tooltip: 'The total value associated with on-site search events attributed to your ads across all channels.',
|
|
@@ -844,7 +844,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
844
844
|
valueType: MeasureValueType.CURRENCY,
|
|
845
845
|
decimalPlaces: 2,
|
|
846
846
|
useCompactNotation: true,
|
|
847
|
-
applicableContexts:
|
|
847
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
848
848
|
aliases: [DEPRECATED_MEASURE.CHANNEL_OMNI_SEARCHES_COST],
|
|
849
849
|
shortTitle: 'Channel Cost/Search',
|
|
850
850
|
tooltip: 'How much you spend on average for each on-site search event attributed to your ads across all channels.',
|
|
@@ -866,7 +866,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
866
866
|
valueType: MeasureValueType.NUMBER,
|
|
867
867
|
decimalPlaces: 0,
|
|
868
868
|
useCompactNotation: false,
|
|
869
|
-
applicableContexts:
|
|
869
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
870
870
|
aliases: [
|
|
871
871
|
DEPRECATED_MEASURE.CHANNEL_ADD_TO_WITHLISTS,
|
|
872
872
|
DEPRECATED_MEASURE.CHANNEL_OMNI_ADD_TO_WISHLISTS,
|
|
@@ -894,7 +894,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
894
894
|
valueType: MeasureValueType.CURRENCY,
|
|
895
895
|
decimalPlaces: 2,
|
|
896
896
|
useCompactNotation: true,
|
|
897
|
-
applicableContexts:
|
|
897
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
898
898
|
aliases: [
|
|
899
899
|
DEPRECATED_MEASURE.CHANNEL_ADD_TO_WITHLISTS_VALUE,
|
|
900
900
|
DEPRECATED_MEASURE.CHANNEL_OMNI_ADD_TO_WISHLISTS_VALUE,
|
|
@@ -918,7 +918,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
918
918
|
valueType: MeasureValueType.CURRENCY,
|
|
919
919
|
decimalPlaces: 2,
|
|
920
920
|
useCompactNotation: true,
|
|
921
|
-
applicableContexts:
|
|
921
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
922
922
|
aliases: [
|
|
923
923
|
DEPRECATED_MEASURE.CHANNEL_ADD_TO_WITHLISTS_COST,
|
|
924
924
|
DEPRECATED_MEASURE.CHANNEL_OMNI_ADD_TO_WISHLISTS_COST,
|
|
@@ -944,7 +944,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
944
944
|
valueType: MeasureValueType.NUMBER,
|
|
945
945
|
decimalPlaces: 0,
|
|
946
946
|
useCompactNotation: false,
|
|
947
|
-
applicableContexts:
|
|
947
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
948
948
|
shortTitle: 'Channel Engagements',
|
|
949
949
|
tooltip: 'The total number of interactions with your ads across all channels, including likes, comments, shares, and clicks.',
|
|
950
950
|
relatedMeasures: [MEASURE.CHANNEL_ENGAGEMENT_RATE, MEASURE.CHANNEL_ENGAGEMENTS_COST, MEASURE.CHANNEL_IMPRESSIONS],
|
|
@@ -963,7 +963,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
963
963
|
valueType: MeasureValueType.CURRENCY,
|
|
964
964
|
decimalPlaces: 2,
|
|
965
965
|
useCompactNotation: true,
|
|
966
|
-
applicableContexts:
|
|
966
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
967
967
|
shortTitle: 'Channel Cost/Engagement',
|
|
968
968
|
tooltip: 'How much you spend on average for each engagement (like, comment, share, or click) on your ads across all channels.',
|
|
969
969
|
formulaDisplay: 'Total Spend ÷ Engagements',
|
|
@@ -984,7 +984,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
984
984
|
valueType: MeasureValueType.PERCENTAGE,
|
|
985
985
|
decimalPlaces: 2,
|
|
986
986
|
useCompactNotation: false,
|
|
987
|
-
applicableContexts:
|
|
987
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
988
988
|
shortTitle: 'Channel Engagement Rate',
|
|
989
989
|
tooltip: 'The percentage of ad impressions that resulted in any engagement action across all channels. Higher rates indicate more compelling content.',
|
|
990
990
|
formulaDisplay: 'Engagements ÷ Impressions × 100',
|
|
@@ -1005,7 +1005,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1005
1005
|
valueType: MeasureValueType.NUMBER,
|
|
1006
1006
|
decimalPlaces: 0,
|
|
1007
1007
|
useCompactNotation: false,
|
|
1008
|
-
applicableContexts:
|
|
1008
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1009
1009
|
shortTitle: 'Channel Shares',
|
|
1010
1010
|
tooltip: 'The number of times users shared your ads with others across all channels.',
|
|
1011
1011
|
relatedMeasures: [MEASURE.CHANNEL_SHARES_COST, MEASURE.CHANNEL_ENGAGEMENTS, MEASURE.CHANNEL_REACTIONS],
|
|
@@ -1024,7 +1024,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1024
1024
|
valueType: MeasureValueType.CURRENCY,
|
|
1025
1025
|
decimalPlaces: 2,
|
|
1026
1026
|
useCompactNotation: true,
|
|
1027
|
-
applicableContexts:
|
|
1027
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1028
1028
|
shortTitle: 'Channel Cost/Share',
|
|
1029
1029
|
tooltip: 'How much you spend on average for each share of your ads across all channels.',
|
|
1030
1030
|
formulaDisplay: 'Total Spend ÷ Shares',
|
|
@@ -1045,7 +1045,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1045
1045
|
valueType: MeasureValueType.NUMBER,
|
|
1046
1046
|
decimalPlaces: 0,
|
|
1047
1047
|
useCompactNotation: false,
|
|
1048
|
-
applicableContexts:
|
|
1048
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1049
1049
|
shortTitle: 'Channel Reactions',
|
|
1050
1050
|
tooltip: 'The number of emoji reactions (likes, loves, etc.) your ads received across all channels.',
|
|
1051
1051
|
relatedMeasures: [MEASURE.CHANNEL_REACTIONS_COST, MEASURE.CHANNEL_LIKES, MEASURE.CHANNEL_ENGAGEMENTS],
|
|
@@ -1064,7 +1064,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1064
1064
|
valueType: MeasureValueType.CURRENCY,
|
|
1065
1065
|
decimalPlaces: 2,
|
|
1066
1066
|
useCompactNotation: true,
|
|
1067
|
-
applicableContexts:
|
|
1067
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1068
1068
|
shortTitle: 'Channel Cost/Reaction',
|
|
1069
1069
|
tooltip: 'How much you spend on average for each reaction your ads receive across all channels.',
|
|
1070
1070
|
formulaDisplay: 'Total Spend ÷ Reactions',
|
|
@@ -1085,7 +1085,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1085
1085
|
valueType: MeasureValueType.NUMBER,
|
|
1086
1086
|
decimalPlaces: 0,
|
|
1087
1087
|
useCompactNotation: false,
|
|
1088
|
-
applicableContexts:
|
|
1088
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1089
1089
|
shortTitle: 'Channel Likes',
|
|
1090
1090
|
tooltip: 'The number of likes your ads received across all channels.',
|
|
1091
1091
|
relatedMeasures: [MEASURE.CHANNEL_LIKES_COST, MEASURE.CHANNEL_REACTIONS, MEASURE.CHANNEL_ENGAGEMENTS],
|
|
@@ -1104,7 +1104,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1104
1104
|
valueType: MeasureValueType.CURRENCY,
|
|
1105
1105
|
decimalPlaces: 2,
|
|
1106
1106
|
useCompactNotation: true,
|
|
1107
|
-
applicableContexts:
|
|
1107
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1108
1108
|
shortTitle: 'Channel Cost/Like',
|
|
1109
1109
|
tooltip: 'How much you spend on average for each like your ads receive across all channels.',
|
|
1110
1110
|
formulaDisplay: 'Total Spend ÷ Likes',
|
|
@@ -1125,7 +1125,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1125
1125
|
valueType: MeasureValueType.NUMBER,
|
|
1126
1126
|
decimalPlaces: 0,
|
|
1127
1127
|
useCompactNotation: false,
|
|
1128
|
-
applicableContexts:
|
|
1128
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1129
1129
|
shortTitle: 'Channel Comments',
|
|
1130
1130
|
tooltip: 'The number of comments left on your ads across all channels.',
|
|
1131
1131
|
relatedMeasures: [MEASURE.CHANNEL_COMMENTS_COST, MEASURE.CHANNEL_ENGAGEMENTS, MEASURE.CHANNEL_SHARES],
|
|
@@ -1144,7 +1144,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1144
1144
|
valueType: MeasureValueType.CURRENCY,
|
|
1145
1145
|
decimalPlaces: 2,
|
|
1146
1146
|
useCompactNotation: true,
|
|
1147
|
-
applicableContexts:
|
|
1147
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1148
1148
|
shortTitle: 'Channel Cost/Comment',
|
|
1149
1149
|
tooltip: 'How much you spend on average for each comment your ads receive across all channels.',
|
|
1150
1150
|
formulaDisplay: 'Total Spend ÷ Comments',
|
|
@@ -1165,7 +1165,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1165
1165
|
valueType: MeasureValueType.NUMBER,
|
|
1166
1166
|
decimalPlaces: 0,
|
|
1167
1167
|
useCompactNotation: false,
|
|
1168
|
-
applicableContexts:
|
|
1168
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1169
1169
|
shortTitle: 'Channel Saves',
|
|
1170
1170
|
tooltip: 'The number of times users saved your ads for later across all channels.',
|
|
1171
1171
|
relatedMeasures: [MEASURE.CHANNEL_SAVES_COST, MEASURE.CHANNEL_ENGAGEMENTS, MEASURE.CHANNEL_SHARES],
|
|
@@ -1184,7 +1184,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1184
1184
|
valueType: MeasureValueType.CURRENCY,
|
|
1185
1185
|
decimalPlaces: 2,
|
|
1186
1186
|
useCompactNotation: true,
|
|
1187
|
-
applicableContexts:
|
|
1187
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1188
1188
|
shortTitle: 'Channel Cost/Save',
|
|
1189
1189
|
tooltip: 'How much you spend on average for each save your ads receive across all channels.',
|
|
1190
1190
|
formulaDisplay: 'Total Spend ÷ Saves',
|
|
@@ -1205,7 +1205,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1205
1205
|
valueType: MeasureValueType.NUMBER,
|
|
1206
1206
|
decimalPlaces: 0,
|
|
1207
1207
|
useCompactNotation: false,
|
|
1208
|
-
applicableContexts:
|
|
1208
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1209
1209
|
shortTitle: 'Channel LP Views',
|
|
1210
1210
|
tooltip: 'The number of times people fully loaded your landing page after clicking an ad across all channels.',
|
|
1211
1211
|
relatedMeasures: [
|
|
@@ -1228,7 +1228,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1228
1228
|
valueType: MeasureValueType.CURRENCY,
|
|
1229
1229
|
decimalPlaces: 2,
|
|
1230
1230
|
useCompactNotation: true,
|
|
1231
|
-
applicableContexts:
|
|
1231
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1232
1232
|
shortTitle: 'Channel Cost/LP View',
|
|
1233
1233
|
tooltip: 'How much you spend on average for each full landing page load attributed to your ads across all channels.',
|
|
1234
1234
|
formulaDisplay: 'Total Spend ÷ Landing Page Views',
|
|
@@ -1249,7 +1249,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1249
1249
|
valueType: MeasureValueType.PERCENTAGE,
|
|
1250
1250
|
decimalPlaces: 2,
|
|
1251
1251
|
useCompactNotation: false,
|
|
1252
|
-
applicableContexts:
|
|
1252
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1253
1253
|
shortTitle: 'Channel LP View Rate',
|
|
1254
1254
|
tooltip: 'The percentage of clicks that resulted in a full landing page load. Lower rates may indicate slow page speed or tracking issues.',
|
|
1255
1255
|
formulaDisplay: 'Landing Page Views ÷ Clicks × 100',
|
|
@@ -1270,7 +1270,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1270
1270
|
valueType: MeasureValueType.NUMBER,
|
|
1271
1271
|
decimalPlaces: 0,
|
|
1272
1272
|
useCompactNotation: false,
|
|
1273
|
-
applicableContexts:
|
|
1273
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1274
1274
|
shortTitle: 'Channel Leads',
|
|
1275
1275
|
tooltip: 'The number of leads generated (such as form submissions or contact requests) attributed to your ads across all channels.',
|
|
1276
1276
|
relatedMeasures: [MEASURE.CHANNEL_LEADS_COST, MEASURE.CHANNEL_LEADS_VALUE, MEASURE.CHANNEL_PURCHASES],
|
|
@@ -1289,7 +1289,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1289
1289
|
valueType: MeasureValueType.CURRENCY,
|
|
1290
1290
|
decimalPlaces: 2,
|
|
1291
1291
|
useCompactNotation: true,
|
|
1292
|
-
applicableContexts:
|
|
1292
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1293
1293
|
shortTitle: 'Channel Leads Value',
|
|
1294
1294
|
tooltip: 'The total assigned value of leads generated by your ads across all channels.',
|
|
1295
1295
|
relatedMeasures: [MEASURE.CHANNEL_LEADS, MEASURE.CHANNEL_LEADS_COST],
|
|
@@ -1308,7 +1308,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1308
1308
|
valueType: MeasureValueType.CURRENCY,
|
|
1309
1309
|
decimalPlaces: 2,
|
|
1310
1310
|
useCompactNotation: true,
|
|
1311
|
-
applicableContexts:
|
|
1311
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1312
1312
|
shortTitle: 'Channel CPL',
|
|
1313
1313
|
tooltip: 'How much you spend on average to generate each lead through your ads across all channels.',
|
|
1314
1314
|
formulaDisplay: 'Total Spend ÷ Leads',
|
|
@@ -1329,7 +1329,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1329
1329
|
valueType: MeasureValueType.NUMBER,
|
|
1330
1330
|
decimalPlaces: 0,
|
|
1331
1331
|
useCompactNotation: false,
|
|
1332
|
-
applicableContexts:
|
|
1332
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1333
1333
|
shortTitle: 'Channel Appointments',
|
|
1334
1334
|
tooltip: 'The number of appointments or bookings scheduled attributed to your ads across all channels.',
|
|
1335
1335
|
relatedMeasures: [MEASURE.CHANNEL_APPOINTMENTS_COST, MEASURE.CHANNEL_APPOINTMENTS_VALUE, MEASURE.CHANNEL_LEADS],
|
|
@@ -1348,7 +1348,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1348
1348
|
valueType: MeasureValueType.CURRENCY,
|
|
1349
1349
|
decimalPlaces: 2,
|
|
1350
1350
|
useCompactNotation: true,
|
|
1351
|
-
applicableContexts:
|
|
1351
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1352
1352
|
shortTitle: 'Channel Appointments Value',
|
|
1353
1353
|
tooltip: 'The total assigned value of appointments scheduled attributed to your ads across all channels.',
|
|
1354
1354
|
relatedMeasures: [MEASURE.CHANNEL_APPOINTMENTS, MEASURE.CHANNEL_APPOINTMENTS_COST],
|
|
@@ -1367,7 +1367,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1367
1367
|
valueType: MeasureValueType.CURRENCY,
|
|
1368
1368
|
decimalPlaces: 2,
|
|
1369
1369
|
useCompactNotation: true,
|
|
1370
|
-
applicableContexts:
|
|
1370
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1371
1371
|
shortTitle: 'Channel Cost/Appointment',
|
|
1372
1372
|
tooltip: 'How much you spend on average to drive each appointment or booking through your ads across all channels.',
|
|
1373
1373
|
formulaDisplay: 'Total Spend ÷ Appointments',
|
|
@@ -1388,7 +1388,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1388
1388
|
valueType: MeasureValueType.NUMBER,
|
|
1389
1389
|
decimalPlaces: 0,
|
|
1390
1390
|
useCompactNotation: false,
|
|
1391
|
-
applicableContexts:
|
|
1391
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1392
1392
|
shortTitle: 'Channel Subscriptions',
|
|
1393
1393
|
tooltip: 'The number of subscription sign-ups attributed to your ads across all channels.',
|
|
1394
1394
|
relatedMeasures: [MEASURE.CHANNEL_SUBSCRIBERS_COST, MEASURE.CHANNEL_SUBSCRIBERS_VALUE, MEASURE.CHANNEL_LEADS],
|
|
@@ -1407,7 +1407,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1407
1407
|
valueType: MeasureValueType.CURRENCY,
|
|
1408
1408
|
decimalPlaces: 2,
|
|
1409
1409
|
useCompactNotation: true,
|
|
1410
|
-
applicableContexts:
|
|
1410
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1411
1411
|
shortTitle: 'Channel Subscriptions Value',
|
|
1412
1412
|
tooltip: 'The total assigned value of subscription sign-ups attributed to your ads across all channels.',
|
|
1413
1413
|
relatedMeasures: [MEASURE.CHANNEL_SUBSCRIBERS, MEASURE.CHANNEL_SUBSCRIBERS_COST],
|
|
@@ -1426,7 +1426,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1426
1426
|
valueType: MeasureValueType.CURRENCY,
|
|
1427
1427
|
decimalPlaces: 2,
|
|
1428
1428
|
useCompactNotation: true,
|
|
1429
|
-
applicableContexts:
|
|
1429
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1430
1430
|
shortTitle: 'Channel Cost/Subscription',
|
|
1431
1431
|
tooltip: 'How much you spend on average to drive each subscription sign-up through your ads across all channels.',
|
|
1432
1432
|
formulaDisplay: 'Total Spend ÷ Subscriptions',
|
|
@@ -1447,7 +1447,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1447
1447
|
valueType: MeasureValueType.NUMBER,
|
|
1448
1448
|
decimalPlaces: 0,
|
|
1449
1449
|
useCompactNotation: false,
|
|
1450
|
-
applicableContexts:
|
|
1450
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1451
1451
|
shortTitle: 'Channel Trial Starts',
|
|
1452
1452
|
tooltip: 'The number of free trial activations attributed to your ads across all channels.',
|
|
1453
1453
|
relatedMeasures: [
|
|
@@ -1470,7 +1470,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1470
1470
|
valueType: MeasureValueType.CURRENCY,
|
|
1471
1471
|
decimalPlaces: 2,
|
|
1472
1472
|
useCompactNotation: true,
|
|
1473
|
-
applicableContexts:
|
|
1473
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1474
1474
|
shortTitle: 'Channel Trial Starts Value',
|
|
1475
1475
|
tooltip: 'The total assigned value of trial starts attributed to your ads across all channels.',
|
|
1476
1476
|
relatedMeasures: [MEASURE.CHANNEL_START_TRIALS, MEASURE.CHANNEL_START_TRIALS_COST],
|
|
@@ -1489,7 +1489,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1489
1489
|
valueType: MeasureValueType.CURRENCY,
|
|
1490
1490
|
decimalPlaces: 2,
|
|
1491
1491
|
useCompactNotation: true,
|
|
1492
|
-
applicableContexts:
|
|
1492
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1493
1493
|
shortTitle: 'Channel Cost/Trial Start',
|
|
1494
1494
|
tooltip: 'How much you spend on average to drive each free trial activation through your ads across all channels.',
|
|
1495
1495
|
formulaDisplay: 'Total Spend ÷ Trial Starts',
|
|
@@ -1510,7 +1510,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1510
1510
|
valueType: MeasureValueType.NUMBER,
|
|
1511
1511
|
decimalPlaces: 0,
|
|
1512
1512
|
useCompactNotation: false,
|
|
1513
|
-
applicableContexts:
|
|
1513
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1514
1514
|
shortTitle: 'Channel Applications',
|
|
1515
1515
|
tooltip: 'The number of application form submissions attributed to your ads across all channels.',
|
|
1516
1516
|
relatedMeasures: [
|
|
@@ -1533,7 +1533,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1533
1533
|
valueType: MeasureValueType.CURRENCY,
|
|
1534
1534
|
decimalPlaces: 2,
|
|
1535
1535
|
useCompactNotation: true,
|
|
1536
|
-
applicableContexts:
|
|
1536
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1537
1537
|
shortTitle: 'Channel Applications Value',
|
|
1538
1538
|
tooltip: 'The total assigned value of application submissions attributed to your ads across all channels.',
|
|
1539
1539
|
relatedMeasures: [MEASURE.CHANNEL_SUBMIT_APPLICATIONS, MEASURE.CHANNEL_SUBMIT_APPLICATIONS_COST],
|
|
@@ -1552,7 +1552,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1552
1552
|
valueType: MeasureValueType.CURRENCY,
|
|
1553
1553
|
decimalPlaces: 2,
|
|
1554
1554
|
useCompactNotation: true,
|
|
1555
|
-
applicableContexts:
|
|
1555
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1556
1556
|
shortTitle: 'Channel Cost/Application',
|
|
1557
1557
|
tooltip: 'How much you spend on average to drive each application submission through your ads across all channels.',
|
|
1558
1558
|
formulaDisplay: 'Total Spend ÷ Application Submissions',
|
|
@@ -1573,7 +1573,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1573
1573
|
valueType: MeasureValueType.NUMBER,
|
|
1574
1574
|
decimalPlaces: 0,
|
|
1575
1575
|
useCompactNotation: false,
|
|
1576
|
-
applicableContexts:
|
|
1576
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1577
1577
|
shortTitle: 'Channel App Installs',
|
|
1578
1578
|
tooltip: 'The number of mobile app installs attributed to your ads across all channels.',
|
|
1579
1579
|
relatedMeasures: [MEASURE.CHANNEL_APP_INSTALLS_COST, MEASURE.CHANNEL_APP_INSTALLS_VALUE, MEASURE.CHANNEL_PURCHASES],
|
|
@@ -1592,7 +1592,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1592
1592
|
valueType: MeasureValueType.CURRENCY,
|
|
1593
1593
|
decimalPlaces: 2,
|
|
1594
1594
|
useCompactNotation: true,
|
|
1595
|
-
applicableContexts:
|
|
1595
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1596
1596
|
shortTitle: 'Channel App Installs Value',
|
|
1597
1597
|
tooltip: 'The total assigned value of app installs attributed to your ads across all channels.',
|
|
1598
1598
|
relatedMeasures: [MEASURE.CHANNEL_APP_INSTALLS, MEASURE.CHANNEL_APP_INSTALLS_COST],
|
|
@@ -1611,7 +1611,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1611
1611
|
valueType: MeasureValueType.CURRENCY,
|
|
1612
1612
|
decimalPlaces: 2,
|
|
1613
1613
|
useCompactNotation: true,
|
|
1614
|
-
applicableContexts:
|
|
1614
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1615
1615
|
shortTitle: 'Channel Cost/App Install',
|
|
1616
1616
|
tooltip: 'How much you spend on average to drive each app install through your ads across all channels.',
|
|
1617
1617
|
formulaDisplay: 'Total Spend ÷ App Installs',
|
|
@@ -1632,7 +1632,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1632
1632
|
valueType: MeasureValueType.NUMBER,
|
|
1633
1633
|
decimalPlaces: 0,
|
|
1634
1634
|
useCompactNotation: false,
|
|
1635
|
-
applicableContexts:
|
|
1635
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1636
1636
|
shortTitle: 'Channel Registrations',
|
|
1637
1637
|
tooltip: 'The number of completed account or event registrations attributed to your ads across all channels.',
|
|
1638
1638
|
relatedMeasures: [
|
|
@@ -1655,7 +1655,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1655
1655
|
valueType: MeasureValueType.CURRENCY,
|
|
1656
1656
|
decimalPlaces: 2,
|
|
1657
1657
|
useCompactNotation: true,
|
|
1658
|
-
applicableContexts:
|
|
1658
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1659
1659
|
shortTitle: 'Channel Registrations Value',
|
|
1660
1660
|
tooltip: 'The total assigned value of completed registrations attributed to your ads across all channels.',
|
|
1661
1661
|
relatedMeasures: [MEASURE.CHANNEL_COMPLETE_REGISTRATIONS, MEASURE.CHANNEL_COMPLETE_REGISTRATIONS_COST],
|
|
@@ -1674,7 +1674,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1674
1674
|
valueType: MeasureValueType.CURRENCY,
|
|
1675
1675
|
decimalPlaces: 2,
|
|
1676
1676
|
useCompactNotation: true,
|
|
1677
|
-
applicableContexts:
|
|
1677
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1678
1678
|
shortTitle: 'Channel Cost/Registration',
|
|
1679
1679
|
tooltip: 'How much you spend on average to drive each completed registration through your ads across all channels.',
|
|
1680
1680
|
formulaDisplay: 'Total Spend ÷ Completed Registrations',
|
|
@@ -1695,7 +1695,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1695
1695
|
valueType: MeasureValueType.NUMBER,
|
|
1696
1696
|
decimalPlaces: 0,
|
|
1697
1697
|
useCompactNotation: false,
|
|
1698
|
-
applicableContexts:
|
|
1698
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1699
1699
|
shortTitle: 'Channel Video Views',
|
|
1700
1700
|
tooltip: 'The number of times your video ads were viewed across all channels.',
|
|
1701
1701
|
relatedMeasures: [MEASURE.CHANNEL_CPV, MEASURE.CHANNEL_VIDEO_PLAYS, MEASURE.CHANNEL_VIDEO_VIEWS_THRUPLAY],
|
|
@@ -1714,7 +1714,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1714
1714
|
valueType: MeasureValueType.CURRENCY,
|
|
1715
1715
|
decimalPlaces: 2,
|
|
1716
1716
|
useCompactNotation: true,
|
|
1717
|
-
applicableContexts:
|
|
1717
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1718
1718
|
aliases: [MEASURE.CHANNEL_VIDEO_VIEWS_COST],
|
|
1719
1719
|
shortTitle: 'Channel CPV',
|
|
1720
1720
|
tooltip: 'How much you spend on average for each video view across all channels.',
|
|
@@ -1736,7 +1736,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1736
1736
|
valueType: MeasureValueType.NUMBER,
|
|
1737
1737
|
decimalPlaces: 0,
|
|
1738
1738
|
useCompactNotation: false,
|
|
1739
|
-
applicableContexts:
|
|
1739
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1740
1740
|
shortTitle: 'Channel 15s Video Views',
|
|
1741
1741
|
tooltip: 'The number of video ad views that lasted at least 15 seconds across all channels.',
|
|
1742
1742
|
relatedMeasures: [
|
|
@@ -1759,7 +1759,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1759
1759
|
valueType: MeasureValueType.CURRENCY,
|
|
1760
1760
|
decimalPlaces: 2,
|
|
1761
1761
|
useCompactNotation: true,
|
|
1762
|
-
applicableContexts:
|
|
1762
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1763
1763
|
shortTitle: 'Channel Cost/15s View',
|
|
1764
1764
|
tooltip: 'How much you spend on average for each video view that lasted at least 15 seconds across all channels.',
|
|
1765
1765
|
formulaDisplay: 'Total Spend ÷ 15-Second Video Views',
|
|
@@ -1780,7 +1780,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1780
1780
|
valueType: MeasureValueType.NUMBER,
|
|
1781
1781
|
decimalPlaces: 0,
|
|
1782
1782
|
useCompactNotation: false,
|
|
1783
|
-
applicableContexts:
|
|
1783
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1784
1784
|
shortTitle: 'Channel 30s Video Views',
|
|
1785
1785
|
tooltip: 'The number of video ad views that lasted at least 30 seconds across all channels.',
|
|
1786
1786
|
relatedMeasures: [
|
|
@@ -1803,7 +1803,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1803
1803
|
valueType: MeasureValueType.CURRENCY,
|
|
1804
1804
|
decimalPlaces: 2,
|
|
1805
1805
|
useCompactNotation: true,
|
|
1806
|
-
applicableContexts:
|
|
1806
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1807
1807
|
shortTitle: 'Channel Cost/30s View',
|
|
1808
1808
|
tooltip: 'How much you spend on average for each video view that lasted at least 30 seconds across all channels.',
|
|
1809
1809
|
formulaDisplay: 'Total Spend ÷ 30-Second Video Views',
|
|
@@ -1824,7 +1824,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1824
1824
|
valueType: MeasureValueType.NUMBER,
|
|
1825
1825
|
decimalPlaces: 0,
|
|
1826
1826
|
useCompactNotation: false,
|
|
1827
|
-
applicableContexts:
|
|
1827
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1828
1828
|
shortTitle: 'Channel 25% Video Views',
|
|
1829
1829
|
tooltip: 'The number of video views where at least 25% of the video was watched across all channels.',
|
|
1830
1830
|
relatedMeasures: [
|
|
@@ -1847,7 +1847,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1847
1847
|
valueType: MeasureValueType.NUMBER,
|
|
1848
1848
|
decimalPlaces: 0,
|
|
1849
1849
|
useCompactNotation: false,
|
|
1850
|
-
applicableContexts:
|
|
1850
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1851
1851
|
shortTitle: 'Channel 50% Video Views',
|
|
1852
1852
|
tooltip: 'The number of video views where at least 50% of the video was watched across all channels.',
|
|
1853
1853
|
relatedMeasures: [
|
|
@@ -1870,7 +1870,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1870
1870
|
valueType: MeasureValueType.NUMBER,
|
|
1871
1871
|
decimalPlaces: 0,
|
|
1872
1872
|
useCompactNotation: false,
|
|
1873
|
-
applicableContexts:
|
|
1873
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1874
1874
|
shortTitle: 'Channel 75% Video Views',
|
|
1875
1875
|
tooltip: 'The number of video views where at least 75% of the video was watched across all channels.',
|
|
1876
1876
|
relatedMeasures: [
|
|
@@ -1893,7 +1893,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1893
1893
|
valueType: MeasureValueType.NUMBER,
|
|
1894
1894
|
decimalPlaces: 0,
|
|
1895
1895
|
useCompactNotation: false,
|
|
1896
|
-
applicableContexts:
|
|
1896
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1897
1897
|
shortTitle: 'Channel 95% Video Views',
|
|
1898
1898
|
tooltip: 'The number of video views where at least 95% of the video was watched across all channels.',
|
|
1899
1899
|
relatedMeasures: [
|
|
@@ -1916,7 +1916,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1916
1916
|
valueType: MeasureValueType.NUMBER,
|
|
1917
1917
|
decimalPlaces: 0,
|
|
1918
1918
|
useCompactNotation: false,
|
|
1919
|
-
applicableContexts:
|
|
1919
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1920
1920
|
shortTitle: 'Channel 100% Video Views',
|
|
1921
1921
|
tooltip: 'The number of video views where the entire video was watched to completion across all channels.',
|
|
1922
1922
|
relatedMeasures: [
|
|
@@ -1939,7 +1939,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1939
1939
|
valueType: MeasureValueType.PERCENTAGE,
|
|
1940
1940
|
decimalPlaces: 2,
|
|
1941
1941
|
useCompactNotation: false,
|
|
1942
|
-
applicableContexts:
|
|
1942
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1943
1943
|
shortTitle: 'Channel 25% Completion',
|
|
1944
1944
|
tooltip: 'The percentage of video views that reached at least 25% of the video across all channels. A key indicator of early content retention.',
|
|
1945
1945
|
formulaDisplay: '25% Video Views ÷ Video Views × 100',
|
|
@@ -1964,7 +1964,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1964
1964
|
valueType: MeasureValueType.PERCENTAGE,
|
|
1965
1965
|
decimalPlaces: 2,
|
|
1966
1966
|
useCompactNotation: false,
|
|
1967
|
-
applicableContexts:
|
|
1967
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1968
1968
|
shortTitle: 'Channel 50% Completion',
|
|
1969
1969
|
tooltip: 'The percentage of video views that reached at least the midpoint of the video across all channels.',
|
|
1970
1970
|
formulaDisplay: '50% Video Views ÷ Video Views × 100',
|
|
@@ -1989,7 +1989,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
1989
1989
|
valueType: MeasureValueType.PERCENTAGE,
|
|
1990
1990
|
decimalPlaces: 2,
|
|
1991
1991
|
useCompactNotation: false,
|
|
1992
|
-
applicableContexts:
|
|
1992
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
1993
1993
|
shortTitle: 'Channel 75% Completion',
|
|
1994
1994
|
tooltip: 'The percentage of video views that reached at least 75% of the video across all channels.',
|
|
1995
1995
|
formulaDisplay: '75% Video Views ÷ Video Views × 100',
|
|
@@ -2014,7 +2014,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2014
2014
|
valueType: MeasureValueType.PERCENTAGE,
|
|
2015
2015
|
decimalPlaces: 2,
|
|
2016
2016
|
useCompactNotation: false,
|
|
2017
|
-
applicableContexts:
|
|
2017
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2018
2018
|
shortTitle: 'Channel 100% Completion',
|
|
2019
2019
|
tooltip: 'The percentage of video views where viewers watched the entire video to completion across all channels.',
|
|
2020
2020
|
formulaDisplay: '100% Video Views ÷ Video Views × 100',
|
|
@@ -2039,7 +2039,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2039
2039
|
valueType: MeasureValueType.NUMBER,
|
|
2040
2040
|
decimalPlaces: 0,
|
|
2041
2041
|
useCompactNotation: false,
|
|
2042
|
-
applicableContexts:
|
|
2042
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2043
2043
|
shortTitle: 'Channel ThruPlay Views',
|
|
2044
2044
|
tooltip: 'The number of times your video ads were played to completion or for at least 15 seconds across all channels.',
|
|
2045
2045
|
relatedMeasures: [
|
|
@@ -2062,7 +2062,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2062
2062
|
valueType: MeasureValueType.CURRENCY,
|
|
2063
2063
|
decimalPlaces: 2,
|
|
2064
2064
|
useCompactNotation: true,
|
|
2065
|
-
applicableContexts:
|
|
2065
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2066
2066
|
shortTitle: 'Channel Cost/ThruPlay',
|
|
2067
2067
|
tooltip: 'How much you spend on average for each ThruPlay — a video view that reached completion or lasted at least 15 seconds — across all channels.',
|
|
2068
2068
|
formulaDisplay: 'Total Spend ÷ ThruPlay Views',
|
|
@@ -2083,7 +2083,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2083
2083
|
valueType: MeasureValueType.NUMBER,
|
|
2084
2084
|
decimalPlaces: 0,
|
|
2085
2085
|
useCompactNotation: false,
|
|
2086
|
-
applicableContexts:
|
|
2086
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2087
2087
|
shortTitle: 'Channel Video Plays',
|
|
2088
2088
|
tooltip: 'The number of times playback was initiated on your video ads across all channels, including autoplay.',
|
|
2089
2089
|
relatedMeasures: [MEASURE.CHANNEL_VIDEO_PLAYS_COST, MEASURE.CHANNEL_VIDEO_VIEWS, MEASURE.CHANNEL_IMPRESSIONS],
|
|
@@ -2102,7 +2102,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2102
2102
|
valueType: MeasureValueType.CURRENCY,
|
|
2103
2103
|
decimalPlaces: 2,
|
|
2104
2104
|
useCompactNotation: true,
|
|
2105
|
-
applicableContexts:
|
|
2105
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2106
2106
|
shortTitle: 'Channel Cost/Video Play',
|
|
2107
2107
|
tooltip: 'How much you spend on average for each video play initiation across all channels.',
|
|
2108
2108
|
formulaDisplay: 'Total Spend ÷ Video Plays',
|
|
@@ -2123,7 +2123,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2123
2123
|
valueType: MeasureValueType.NUMBER,
|
|
2124
2124
|
decimalPlaces: 0,
|
|
2125
2125
|
useCompactNotation: false,
|
|
2126
|
-
applicableContexts:
|
|
2126
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2127
2127
|
shortTitle: 'Channel Conversions',
|
|
2128
2128
|
tooltip: 'The total number of conversion events attributed to your ads across all channels.',
|
|
2129
2129
|
relatedMeasures: [MEASURE.CHANNEL_CONVERSIONS_VALUE, MEASURE.CHANNEL_CONVERSIONS_COST, MEASURE.CHANNEL_PURCHASES],
|
|
@@ -2142,7 +2142,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2142
2142
|
valueType: MeasureValueType.CURRENCY,
|
|
2143
2143
|
decimalPlaces: 2,
|
|
2144
2144
|
useCompactNotation: true,
|
|
2145
|
-
applicableContexts:
|
|
2145
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2146
2146
|
shortTitle: 'Channel Conversions Value',
|
|
2147
2147
|
tooltip: 'The total monetary value of all conversions attributed to your ads across all channels.',
|
|
2148
2148
|
relatedMeasures: [MEASURE.CHANNEL_CONVERSIONS, MEASURE.CHANNEL_CONVERSIONS_ROAS, MEASURE.CHANNEL_SPEND],
|
|
@@ -2161,7 +2161,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2161
2161
|
valueType: MeasureValueType.CURRENCY,
|
|
2162
2162
|
decimalPlaces: 2,
|
|
2163
2163
|
useCompactNotation: true,
|
|
2164
|
-
applicableContexts:
|
|
2164
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2165
2165
|
shortTitle: 'Channel Cost/Conversion',
|
|
2166
2166
|
tooltip: 'How much you spend on average for each conversion event attributed to your ads across all channels.',
|
|
2167
2167
|
formulaDisplay: 'Total Spend ÷ Conversions',
|
|
@@ -2182,7 +2182,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2182
2182
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2183
2183
|
decimalPlaces: 2,
|
|
2184
2184
|
useCompactNotation: false,
|
|
2185
|
-
applicableContexts:
|
|
2185
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2186
2186
|
shortTitle: 'Channel Conv. ROAS',
|
|
2187
2187
|
tooltip: 'How many dollars of conversion value you generate for every dollar spent on ads across all channels.',
|
|
2188
2188
|
formulaDisplay: 'Conversions Value ÷ Total Spend',
|
|
@@ -2203,7 +2203,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2203
2203
|
valueType: MeasureValueType.NUMBER,
|
|
2204
2204
|
decimalPlaces: 0,
|
|
2205
2205
|
useCompactNotation: false,
|
|
2206
|
-
applicableContexts:
|
|
2206
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2207
2207
|
shortTitle: 'Channel All Conversions',
|
|
2208
2208
|
tooltip: 'The total number of all conversion events including cross-device and view-through conversions attributed to your ads across all channels.',
|
|
2209
2209
|
relatedMeasures: [
|
|
@@ -2226,7 +2226,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2226
2226
|
valueType: MeasureValueType.CURRENCY,
|
|
2227
2227
|
decimalPlaces: 2,
|
|
2228
2228
|
useCompactNotation: true,
|
|
2229
|
-
applicableContexts:
|
|
2229
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2230
2230
|
shortTitle: 'Channel All Conv. Value',
|
|
2231
2231
|
tooltip: 'The total monetary value of all conversions including cross-device and view-through conversions across all channels.',
|
|
2232
2232
|
relatedMeasures: [
|
|
@@ -2249,7 +2249,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2249
2249
|
valueType: MeasureValueType.CURRENCY,
|
|
2250
2250
|
decimalPlaces: 2,
|
|
2251
2251
|
useCompactNotation: true,
|
|
2252
|
-
applicableContexts:
|
|
2252
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2253
2253
|
shortTitle: 'Channel Cost/All Conv.',
|
|
2254
2254
|
tooltip: 'How much you spend on average for each conversion including cross-device and view-through conversions across all channels.',
|
|
2255
2255
|
formulaDisplay: 'Total Spend ÷ All Conversions',
|
|
@@ -2270,7 +2270,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2270
2270
|
valueType: MeasureValueType.MULTIPLIER,
|
|
2271
2271
|
decimalPlaces: 2,
|
|
2272
2272
|
useCompactNotation: false,
|
|
2273
|
-
applicableContexts:
|
|
2273
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2274
2274
|
shortTitle: 'Channel All Conv. ROAS',
|
|
2275
2275
|
tooltip: 'How many dollars of all-conversion value you generate for every dollar spent on ads across all channels, including view-through conversions.',
|
|
2276
2276
|
formulaDisplay: 'All Conversions Value ÷ Total Spend',
|
|
@@ -2291,7 +2291,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2291
2291
|
valueType: MeasureValueType.NUMBER,
|
|
2292
2292
|
decimalPlaces: 0,
|
|
2293
2293
|
useCompactNotation: false,
|
|
2294
|
-
applicableContexts:
|
|
2294
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2295
2295
|
shortTitle: 'Channel View-Through Conv.',
|
|
2296
2296
|
tooltip: 'The number of conversions attributed to users who saw your ad but did not click it, then later converted on their own.',
|
|
2297
2297
|
relatedMeasures: [
|
|
@@ -2314,7 +2314,7 @@ export const CHANNEL_MEASURES_MAP = {
|
|
|
2314
2314
|
valueType: MeasureValueType.CURRENCY,
|
|
2315
2315
|
decimalPlaces: 2,
|
|
2316
2316
|
useCompactNotation: true,
|
|
2317
|
-
applicableContexts:
|
|
2317
|
+
applicableContexts: ATTRIBUTION_AND_DASHBOARD_APPLICABLE_CONTEXTS,
|
|
2318
2318
|
shortTitle: 'Channel Cost/VTC',
|
|
2319
2319
|
tooltip: 'How much you spend on average for each view-through conversion — where a user saw but did not click your ad before converting.',
|
|
2320
2320
|
formulaDisplay: 'Total Spend ÷ View-Through Conversions',
|