@adtrackify/at-tracking-event-types 3.4.9 → 3.4.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/dist/cjs/types/api/measures/definitions/facebook-measure-definitions.js +923 -97
  2. package/dist/cjs/types/api/measures/definitions/facebook-measure-definitions.js.map +1 -1
  3. package/dist/cjs/types/api/measures/definitions/measure-definitions.js +1 -1
  4. package/dist/cjs/types/api/measures/definitions/measure-definitions.js.map +1 -1
  5. package/dist/cjs/types/api/measures/definitions/shopify/shopify-measure-definitions.js +19 -19
  6. package/dist/cjs/types/api/measures/definitions/shopify/shopify-measure-definitions.js.map +1 -1
  7. package/dist/cjs/types/api/measures/definitions/shopify/shopify-nc-measure-definitions.js +7 -7
  8. package/dist/cjs/types/api/measures/definitions/shopify/shopify-nc-measure-definitions.js.map +1 -1
  9. package/dist/cjs/types/api/measures/definitions/shopify/shopify-rc-measure-definitions.js +7 -7
  10. package/dist/cjs/types/api/measures/definitions/shopify/shopify-rc-measure-definitions.js.map +1 -1
  11. package/dist/cjs/types/api/measures/measures.d.ts +57 -1
  12. package/dist/cjs/types/api/measures/measures.js +57 -1
  13. package/dist/cjs/types/api/measures/measures.js.map +1 -1
  14. package/dist/esm/types/api/measures/definitions/facebook-measure-definitions.js +923 -97
  15. package/dist/esm/types/api/measures/definitions/facebook-measure-definitions.js.map +1 -1
  16. package/dist/esm/types/api/measures/definitions/measure-definitions.js +1 -1
  17. package/dist/esm/types/api/measures/definitions/measure-definitions.js.map +1 -1
  18. package/dist/esm/types/api/measures/definitions/shopify/shopify-measure-definitions.js +19 -19
  19. package/dist/esm/types/api/measures/definitions/shopify/shopify-measure-definitions.js.map +1 -1
  20. package/dist/esm/types/api/measures/definitions/shopify/shopify-nc-measure-definitions.js +7 -7
  21. package/dist/esm/types/api/measures/definitions/shopify/shopify-nc-measure-definitions.js.map +1 -1
  22. package/dist/esm/types/api/measures/definitions/shopify/shopify-rc-measure-definitions.js +7 -7
  23. package/dist/esm/types/api/measures/definitions/shopify/shopify-rc-measure-definitions.js.map +1 -1
  24. package/dist/esm/types/api/measures/measures.d.ts +57 -1
  25. package/dist/esm/types/api/measures/measures.js +57 -1
  26. package/dist/esm/types/api/measures/measures.js.map +1 -1
  27. package/package.json +1 -1
@@ -4,8 +4,8 @@ import { MeasureValueType } from './measure-value-type.js';
4
4
  import { CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS } from './measure-applicable-contexts.js';
5
5
  export const FACEBOOK_MEASURES_MAP = {
6
6
  [MEASURE.CHANNEL_FB_CLICKS]: {
7
- title: 'Facebook Clicks',
8
- description: 'The number of clicks on your Facebook ads.',
7
+ title: 'Meta Clicks',
8
+ description: 'The number of clicks on your Meta ads.',
9
9
  sumPrefix: '',
10
10
  sumSuffix: '',
11
11
  avgPrefix: '',
@@ -19,8 +19,8 @@ export const FACEBOOK_MEASURES_MAP = {
19
19
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
20
20
  },
21
21
  [MEASURE.CHANNEL_FB_IMPRESSIONS]: {
22
- title: 'Facebook Impressions',
23
- description: 'The number of times your Facebook ads were shown.',
22
+ title: 'Meta Impressions',
23
+ description: 'The number of times your Meta ads were shown.',
24
24
  sumPrefix: '',
25
25
  sumSuffix: '',
26
26
  avgPrefix: '',
@@ -34,8 +34,8 @@ export const FACEBOOK_MEASURES_MAP = {
34
34
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
35
35
  },
36
36
  [MEASURE.CHANNEL_FB_SPEND]: {
37
- title: 'Facebook Spend',
38
- description: 'The amount of money spent on your Facebook ads.',
37
+ title: 'Meta Spend',
38
+ description: 'The total amount spent on your Meta ads.',
39
39
  sumPrefix: '$',
40
40
  sumSuffix: '',
41
41
  avgPrefix: '$',
@@ -49,8 +49,8 @@ export const FACEBOOK_MEASURES_MAP = {
49
49
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
50
50
  },
51
51
  [MEASURE.CHANNEL_FB_ROAS]: {
52
- title: 'Facebook ROAS',
53
- description: 'The return on ad spend from your Facebook ads.',
52
+ title: 'Meta ROAS',
53
+ description: 'The return on ad spend from your Meta ads.',
54
54
  sumPrefix: '',
55
55
  sumSuffix: 'x',
56
56
  avgPrefix: '',
@@ -64,8 +64,8 @@ export const FACEBOOK_MEASURES_MAP = {
64
64
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
65
65
  },
66
66
  [MEASURE.CHANNEL_FB_CPC]: {
67
- title: 'Facebook CPC',
68
- description: 'The cost per click on your Facebook ads.',
67
+ title: 'Meta CPC',
68
+ description: 'The cost per click on your Meta ads.',
69
69
  sumPrefix: '$',
70
70
  sumSuffix: '',
71
71
  avgPrefix: '$',
@@ -79,8 +79,8 @@ export const FACEBOOK_MEASURES_MAP = {
79
79
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
80
80
  },
81
81
  [MEASURE.CHANNEL_FB_CTR]: {
82
- title: 'Facebook CTR',
83
- description: 'The click-through rate of your Facebook ads.',
82
+ title: 'Meta CTR',
83
+ description: 'The percentage of impressions that resulted in clicks.',
84
84
  sumPrefix: '',
85
85
  sumSuffix: '%',
86
86
  avgPrefix: '',
@@ -94,8 +94,8 @@ export const FACEBOOK_MEASURES_MAP = {
94
94
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
95
95
  },
96
96
  [MEASURE.CHANNEL_FB_CPM]: {
97
- title: 'Facebook CPM',
98
- description: 'The cost per thousand impressions of your Facebook ads.',
97
+ title: 'Meta CPM',
98
+ description: 'The cost per thousand impressions of your Meta ads.',
99
99
  sumPrefix: '$',
100
100
  sumSuffix: '',
101
101
  avgPrefix: '$',
@@ -109,8 +109,8 @@ export const FACEBOOK_MEASURES_MAP = {
109
109
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
110
110
  },
111
111
  [MEASURE.CHANNEL_FB_CPA]: {
112
- title: 'Facebook CPA',
113
- description: 'The cost per action of your Facebook ads.',
112
+ title: 'Meta CPA',
113
+ description: 'The cost per purchase conversion from your Meta ads.',
114
114
  sumPrefix: '$',
115
115
  sumSuffix: '',
116
116
  avgPrefix: '$',
@@ -121,11 +121,12 @@ export const FACEBOOK_MEASURES_MAP = {
121
121
  valueType: MeasureValueType.CURRENCY,
122
122
  decimalPlaces: 2,
123
123
  useCompactNotation: true,
124
- applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
124
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS,
125
+ aliases: [MEASURE.CHANNEL_FB_PURCHASES_COST]
125
126
  },
126
127
  [MEASURE.CHANNEL_FB_PURCHASES]: {
127
- title: 'Facebook Purchases',
128
- description: 'The number of Facebook attributed purchases.',
128
+ title: 'Meta Purchases',
129
+ description: 'The number of purchases attributed to your Meta ads.',
129
130
  sumPrefix: '',
130
131
  sumSuffix: '',
131
132
  avgPrefix: '',
@@ -139,8 +140,8 @@ export const FACEBOOK_MEASURES_MAP = {
139
140
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
140
141
  },
141
142
  [MEASURE.CHANNEL_FB_PURCHASES_VALUE]: {
142
- title: 'Facebook Purchases Value',
143
- description: 'The total value of Facebook attributed purchases.',
143
+ title: 'Meta Purchases Value',
144
+ description: 'The total revenue from purchases attributed to your Meta ads.',
144
145
  sumPrefix: '$',
145
146
  sumSuffix: '',
146
147
  avgPrefix: '$',
@@ -153,24 +154,9 @@ export const FACEBOOK_MEASURES_MAP = {
153
154
  useCompactNotation: true,
154
155
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
155
156
  },
156
- [MEASURE.CHANNEL_FB_PURCHASES_COST]: {
157
- title: 'Facebook Purchases Cost',
158
- description: 'The cost per purchase from your Facebook ads.',
159
- sumPrefix: '$',
160
- sumSuffix: '',
161
- avgPrefix: '$',
162
- avgSuffix: '',
163
- icon: 'facebook',
164
- measure: MEASURE.CHANNEL_FB_PURCHASES_COST,
165
- category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
166
- valueType: MeasureValueType.CURRENCY,
167
- decimalPlaces: 2,
168
- useCompactNotation: true,
169
- applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
170
- },
171
157
  [MEASURE.CHANNEL_FB_FREQUENCY]: {
172
- title: 'Facebook Frequency',
173
- description: 'The frequency of the Facebook ad.',
158
+ title: 'Meta Frequency',
159
+ description: 'The average number of times each person saw your Meta ads.',
174
160
  sumPrefix: '',
175
161
  sumSuffix: '',
176
162
  avgPrefix: '',
@@ -185,7 +171,7 @@ export const FACEBOOK_MEASURES_MAP = {
185
171
  },
186
172
  [MEASURE.CHANNEL_FB_NEW_CUSTOMER_ROAS]: {
187
173
  title: 'New Customer ROAS',
188
- description: 'The return on ad spend from new customers.',
174
+ description: 'The return on ad spend from new customers acquired via Meta ads.',
189
175
  sumPrefix: '',
190
176
  sumSuffix: 'x',
191
177
  avgPrefix: '',
@@ -199,8 +185,8 @@ export const FACEBOOK_MEASURES_MAP = {
199
185
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
200
186
  },
201
187
  [MEASURE.CHANNEL_FB_NEW_CUSTOMER_CPA]: {
202
- title: 'Facebook New Customer CPA',
203
- description: 'The cost per acquisition for new customers from Facebook ads.',
188
+ title: 'Meta New Customer CPA',
189
+ description: 'The cost per acquisition for new customers from Meta ads.',
204
190
  sumPrefix: '$',
205
191
  sumSuffix: '',
206
192
  avgPrefix: '$',
@@ -214,8 +200,8 @@ export const FACEBOOK_MEASURES_MAP = {
214
200
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
215
201
  },
216
202
  [MEASURE.CHANNEL_FB_NEW_CUSTOMER_PURCHASES]: {
217
- title: 'Facebook New Customer Purchases',
218
- description: 'The number of new customer purchases from your Facebook ads.',
203
+ title: 'Meta New Customer Purchases',
204
+ description: 'The number of new customer purchases attributed to your Meta ads.',
219
205
  sumPrefix: '',
220
206
  sumSuffix: '',
221
207
  avgPrefix: '',
@@ -229,8 +215,8 @@ export const FACEBOOK_MEASURES_MAP = {
229
215
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
230
216
  },
231
217
  [MEASURE.CHANNEL_FB_NEW_CUSTOMER_PURCHASES_VALUE]: {
232
- title: 'Facebook New Customer Purchases Value',
233
- description: 'The total value of new customer purchases from your Facebook ads.',
218
+ title: 'Meta New Customer Purchases Value',
219
+ description: 'The total revenue from new customer purchases attributed to your Meta ads.',
234
220
  sumPrefix: '$',
235
221
  sumSuffix: '',
236
222
  avgPrefix: '$',
@@ -244,8 +230,8 @@ export const FACEBOOK_MEASURES_MAP = {
244
230
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
245
231
  },
246
232
  [MEASURE.CHANNEL_FB_NEW_CUSTOMER_PURCHASES_COST]: {
247
- title: 'Facebook New Customer Purchases Cost',
248
- description: 'The cost per new customer purchase from your Facebook ads.',
233
+ title: 'Meta New Customer Purchases Cost',
234
+ description: 'The cost per new customer purchase attributed to your Meta ads.',
249
235
  sumPrefix: '$',
250
236
  sumSuffix: '',
251
237
  avgPrefix: '$',
@@ -259,8 +245,8 @@ export const FACEBOOK_MEASURES_MAP = {
259
245
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
260
246
  },
261
247
  [MEASURE.CHANNEL_FB_REACH]: {
262
- title: 'Facebook Reach',
263
- description: 'The number of unique people who saw your Facebook ads.',
248
+ title: 'Meta Reach',
249
+ description: 'The number of unique people who saw your Meta ads.',
264
250
  sumPrefix: '',
265
251
  sumSuffix: '',
266
252
  avgPrefix: '',
@@ -274,8 +260,8 @@ export const FACEBOOK_MEASURES_MAP = {
274
260
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
275
261
  },
276
262
  [MEASURE.CHANNEL_FB_CPP]: {
277
- title: 'Facebook CPP',
278
- description: 'The cost per 1,000 people reached by your Facebook ads.',
263
+ title: 'Meta CPP',
264
+ description: 'The cost per 1,000 people reached by your Meta ads.',
279
265
  sumPrefix: '$',
280
266
  sumSuffix: '',
281
267
  avgPrefix: '$',
@@ -289,8 +275,8 @@ export const FACEBOOK_MEASURES_MAP = {
289
275
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
290
276
  },
291
277
  [MEASURE.CHANNEL_FB_UNIQUE_CLICKS]: {
292
- title: 'Facebook Unique Clicks',
293
- description: 'The number of unique people who clicked your Facebook ads.',
278
+ title: 'Meta Unique Clicks',
279
+ description: 'The number of unique people who clicked on your Meta ads.',
294
280
  sumPrefix: '',
295
281
  sumSuffix: '',
296
282
  avgPrefix: '',
@@ -304,8 +290,8 @@ export const FACEBOOK_MEASURES_MAP = {
304
290
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
305
291
  },
306
292
  [MEASURE.CHANNEL_FB_COST_PER_UNIQUE_CLICK]: {
307
- title: 'Facebook Cost per Unique Click',
308
- description: 'The average cost per unique click on your Facebook ads.',
293
+ title: 'Meta Cost per Unique Click',
294
+ description: 'The average cost per unique click on your Meta ads.',
309
295
  sumPrefix: '$',
310
296
  sumSuffix: '',
311
297
  avgPrefix: '$',
@@ -319,8 +305,8 @@ export const FACEBOOK_MEASURES_MAP = {
319
305
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
320
306
  },
321
307
  [MEASURE.CHANNEL_FB_INLINE_CLICKS]: {
322
- title: 'Facebook Inline Clicks',
323
- description: 'The number of clicks on links within your Facebook ads.',
308
+ title: 'Meta Inline Clicks',
309
+ description: 'The number of clicks on links within your Meta ads.',
324
310
  sumPrefix: '',
325
311
  sumSuffix: '',
326
312
  avgPrefix: '',
@@ -334,8 +320,8 @@ export const FACEBOOK_MEASURES_MAP = {
334
320
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
335
321
  },
336
322
  [MEASURE.CHANNEL_FB_COST_PER_INLINE_CLICK]: {
337
- title: 'Facebook Cost per Inline Click',
338
- description: 'The average cost per inline click on your Facebook ads.',
323
+ title: 'Meta Cost per Inline Click',
324
+ description: 'The average cost per inline click on your Meta ads.',
339
325
  sumPrefix: '$',
340
326
  sumSuffix: '',
341
327
  avgPrefix: '$',
@@ -349,8 +335,8 @@ export const FACEBOOK_MEASURES_MAP = {
349
335
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
350
336
  },
351
337
  [MEASURE.CHANNEL_FB_OUTBOUND_CLICKS]: {
352
- title: 'Facebook Outbound Clicks',
353
- description: 'The number of clicks to external destinations from your Facebook ads.',
338
+ title: 'Meta Outbound Clicks',
339
+ description: 'The number of clicks that took people to destinations off Meta.',
354
340
  sumPrefix: '',
355
341
  sumSuffix: '',
356
342
  avgPrefix: '',
@@ -364,8 +350,8 @@ export const FACEBOOK_MEASURES_MAP = {
364
350
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
365
351
  },
366
352
  [MEASURE.CHANNEL_FB_COST_PER_OUTBOUND_CLICK]: {
367
- title: 'Facebook Cost per Outbound Click',
368
- description: 'The average cost per outbound click from your Facebook ads.',
353
+ title: 'Meta Cost per Outbound Click',
354
+ description: 'The average cost per click that took people off Meta.',
369
355
  sumPrefix: '$',
370
356
  sumSuffix: '',
371
357
  avgPrefix: '$',
@@ -379,8 +365,8 @@ export const FACEBOOK_MEASURES_MAP = {
379
365
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
380
366
  },
381
367
  [MEASURE.CHANNEL_FB_VIEW_CONTENTS]: {
382
- title: 'Facebook View Contents',
383
- description: 'The number of content views from your Facebook ads.',
368
+ title: 'Meta View Contents',
369
+ description: 'The number of product or content page views attributed to your Meta ads.',
384
370
  sumPrefix: '',
385
371
  sumSuffix: '',
386
372
  avgPrefix: '',
@@ -394,8 +380,8 @@ export const FACEBOOK_MEASURES_MAP = {
394
380
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
395
381
  },
396
382
  [MEASURE.CHANNEL_FB_VIEW_CONTENTS_VALUE]: {
397
- title: 'Facebook View Contents Value',
398
- description: 'The total value of content views from your Facebook ads.',
383
+ title: 'Meta View Contents Value',
384
+ description: 'The total value of products viewed from your Meta ads.',
399
385
  sumPrefix: '$',
400
386
  sumSuffix: '',
401
387
  avgPrefix: '$',
@@ -409,8 +395,8 @@ export const FACEBOOK_MEASURES_MAP = {
409
395
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
410
396
  },
411
397
  [MEASURE.CHANNEL_FB_VIEW_CONTENTS_COST]: {
412
- title: 'Facebook View Contents Cost',
413
- description: 'The cost per content view from your Facebook ads.',
398
+ title: 'Meta View Contents Cost',
399
+ description: 'The cost per product or content page view from your Meta ads.',
414
400
  sumPrefix: '$',
415
401
  sumSuffix: '',
416
402
  avgPrefix: '$',
@@ -424,8 +410,8 @@ export const FACEBOOK_MEASURES_MAP = {
424
410
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
425
411
  },
426
412
  [MEASURE.CHANNEL_FB_ADD_TO_CARTS]: {
427
- title: 'Facebook Add to Carts',
428
- description: 'The number of add to cart actions from your Facebook ads.',
413
+ title: 'Meta Add to Carts',
414
+ description: 'The number of add to cart actions attributed to your Meta ads.',
429
415
  sumPrefix: '',
430
416
  sumSuffix: '',
431
417
  avgPrefix: '',
@@ -439,8 +425,8 @@ export const FACEBOOK_MEASURES_MAP = {
439
425
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
440
426
  },
441
427
  [MEASURE.CHANNEL_FB_ADD_TO_CARTS_VALUE]: {
442
- title: 'Facebook Add to Carts Value',
443
- description: 'The total value of add to cart actions from your Facebook ads.',
428
+ title: 'Meta Add to Carts Value',
429
+ description: 'The total value of products added to cart from your Meta ads.',
444
430
  sumPrefix: '$',
445
431
  sumSuffix: '',
446
432
  avgPrefix: '$',
@@ -454,8 +440,8 @@ export const FACEBOOK_MEASURES_MAP = {
454
440
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
455
441
  },
456
442
  [MEASURE.CHANNEL_FB_ADD_TO_CARTS_COST]: {
457
- title: 'Facebook Add to Carts Cost',
458
- description: 'The cost per add to cart action from your Facebook ads.',
443
+ title: 'Meta Add to Carts Cost',
444
+ description: 'The cost per add to cart action from your Meta ads.',
459
445
  sumPrefix: '$',
460
446
  sumSuffix: '',
461
447
  avgPrefix: '$',
@@ -469,8 +455,8 @@ export const FACEBOOK_MEASURES_MAP = {
469
455
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
470
456
  },
471
457
  [MEASURE.CHANNEL_FB_INITIATE_CHECKOUTS]: {
472
- title: 'Facebook Initiate Checkouts',
473
- description: 'The number of checkout initiations from your Facebook ads.',
458
+ title: 'Meta Initiate Checkouts',
459
+ description: 'The number of checkout initiations attributed to your Meta ads.',
474
460
  sumPrefix: '',
475
461
  sumSuffix: '',
476
462
  avgPrefix: '',
@@ -484,8 +470,8 @@ export const FACEBOOK_MEASURES_MAP = {
484
470
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
485
471
  },
486
472
  [MEASURE.CHANNEL_FB_INITIATE_CHECKOUTS_VALUE]: {
487
- title: 'Facebook Initiate Checkouts Value',
488
- description: 'The total value of checkout initiations from your Facebook ads.',
473
+ title: 'Meta Initiate Checkouts Value',
474
+ description: 'The total value of carts at checkout from your Meta ads.',
489
475
  sumPrefix: '$',
490
476
  sumSuffix: '',
491
477
  avgPrefix: '$',
@@ -499,8 +485,8 @@ export const FACEBOOK_MEASURES_MAP = {
499
485
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
500
486
  },
501
487
  [MEASURE.CHANNEL_FB_INITIATE_CHECKOUTS_COST]: {
502
- title: 'Facebook Initiate Checkouts Cost',
503
- description: 'The cost per checkout initiation from your Facebook ads.',
488
+ title: 'Meta Initiate Checkouts Cost',
489
+ description: 'The cost per checkout initiation from your Meta ads.',
504
490
  sumPrefix: '$',
505
491
  sumSuffix: '',
506
492
  avgPrefix: '$',
@@ -514,8 +500,8 @@ export const FACEBOOK_MEASURES_MAP = {
514
500
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
515
501
  },
516
502
  [MEASURE.CHANNEL_FB_LEADS]: {
517
- title: 'Facebook Leads',
518
- description: 'The number of leads generated from your Facebook ads.',
503
+ title: 'Meta Leads',
504
+ description: 'The number of leads generated from your Meta ads.',
519
505
  sumPrefix: '',
520
506
  sumSuffix: '',
521
507
  avgPrefix: '',
@@ -529,8 +515,8 @@ export const FACEBOOK_MEASURES_MAP = {
529
515
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
530
516
  },
531
517
  [MEASURE.CHANNEL_FB_LEADS_VALUE]: {
532
- title: 'Facebook Leads Value',
533
- description: 'The total value of leads generated from your Facebook ads.',
518
+ title: 'Meta Leads Value',
519
+ description: 'The total value of leads generated from your Meta ads.',
534
520
  sumPrefix: '$',
535
521
  sumSuffix: '',
536
522
  avgPrefix: '$',
@@ -544,8 +530,8 @@ export const FACEBOOK_MEASURES_MAP = {
544
530
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
545
531
  },
546
532
  [MEASURE.CHANNEL_FB_LEADS_COST]: {
547
- title: 'Facebook Leads Cost',
548
- description: 'The cost per lead from your Facebook ads.',
533
+ title: 'Meta Leads Cost',
534
+ description: 'The cost per lead generated from your Meta ads.',
549
535
  sumPrefix: '$',
550
536
  sumSuffix: '',
551
537
  avgPrefix: '$',
@@ -558,9 +544,279 @@ export const FACEBOOK_MEASURES_MAP = {
558
544
  useCompactNotation: true,
559
545
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
560
546
  },
547
+ [MEASURE.CHANNEL_FB_APPOINTMENT_SCHEDULES]: {
548
+ title: 'Meta Appointment Schedules',
549
+ description: 'The number of appointments scheduled from your Meta ads.',
550
+ sumPrefix: '',
551
+ sumSuffix: '',
552
+ avgPrefix: '',
553
+ avgSuffix: '',
554
+ icon: 'facebook',
555
+ measure: MEASURE.CHANNEL_FB_APPOINTMENT_SCHEDULES,
556
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
557
+ valueType: MeasureValueType.NUMBER,
558
+ decimalPlaces: 0,
559
+ useCompactNotation: false,
560
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
561
+ },
562
+ [MEASURE.CHANNEL_FB_APPOINTMENT_SCHEDULES_VALUE]: {
563
+ title: 'Meta Appointment Schedules Value',
564
+ description: 'The total value of appointments scheduled from your Meta ads.',
565
+ sumPrefix: '$',
566
+ sumSuffix: '',
567
+ avgPrefix: '$',
568
+ avgSuffix: '',
569
+ icon: 'facebook',
570
+ measure: MEASURE.CHANNEL_FB_APPOINTMENT_SCHEDULES_VALUE,
571
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
572
+ valueType: MeasureValueType.CURRENCY,
573
+ decimalPlaces: 2,
574
+ useCompactNotation: true,
575
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
576
+ },
577
+ [MEASURE.CHANNEL_FB_APPOINTMENT_SCHEDULES_COST]: {
578
+ title: 'Meta Appointment Schedules Cost',
579
+ description: 'The cost per appointment scheduled from your Meta ads.',
580
+ sumPrefix: '$',
581
+ sumSuffix: '',
582
+ avgPrefix: '$',
583
+ avgSuffix: '',
584
+ icon: 'facebook',
585
+ measure: MEASURE.CHANNEL_FB_APPOINTMENT_SCHEDULES_COST,
586
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
587
+ valueType: MeasureValueType.CURRENCY,
588
+ decimalPlaces: 2,
589
+ useCompactNotation: true,
590
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
591
+ },
592
+ [MEASURE.CHANNEL_FB_SUBSCRIBES]: {
593
+ title: 'Meta Subscribes',
594
+ description: 'The number of subscription sign-ups from your Meta ads.',
595
+ sumPrefix: '',
596
+ sumSuffix: '',
597
+ avgPrefix: '',
598
+ avgSuffix: '',
599
+ icon: 'facebook',
600
+ measure: MEASURE.CHANNEL_FB_SUBSCRIBES,
601
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
602
+ valueType: MeasureValueType.NUMBER,
603
+ decimalPlaces: 0,
604
+ useCompactNotation: false,
605
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
606
+ },
607
+ [MEASURE.CHANNEL_FB_SUBSCRIBES_VALUE]: {
608
+ title: 'Meta Subscribes Value',
609
+ description: 'The total value of subscriptions from your Meta ads.',
610
+ sumPrefix: '$',
611
+ sumSuffix: '',
612
+ avgPrefix: '$',
613
+ avgSuffix: '',
614
+ icon: 'facebook',
615
+ measure: MEASURE.CHANNEL_FB_SUBSCRIBES_VALUE,
616
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
617
+ valueType: MeasureValueType.CURRENCY,
618
+ decimalPlaces: 2,
619
+ useCompactNotation: true,
620
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
621
+ },
622
+ [MEASURE.CHANNEL_FB_SUBSCRIBES_COST]: {
623
+ title: 'Meta Subscribes Cost',
624
+ description: 'The cost per subscription sign-up from your Meta ads.',
625
+ sumPrefix: '$',
626
+ sumSuffix: '',
627
+ avgPrefix: '$',
628
+ avgSuffix: '',
629
+ icon: 'facebook',
630
+ measure: MEASURE.CHANNEL_FB_SUBSCRIBES_COST,
631
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
632
+ valueType: MeasureValueType.CURRENCY,
633
+ decimalPlaces: 2,
634
+ useCompactNotation: true,
635
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
636
+ },
637
+ [MEASURE.CHANNEL_FB_START_TRIALS]: {
638
+ title: 'Meta Start Trials',
639
+ description: 'The number of trial starts from your Meta ads.',
640
+ sumPrefix: '',
641
+ sumSuffix: '',
642
+ avgPrefix: '',
643
+ avgSuffix: '',
644
+ icon: 'facebook',
645
+ measure: MEASURE.CHANNEL_FB_START_TRIALS,
646
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
647
+ valueType: MeasureValueType.NUMBER,
648
+ decimalPlaces: 0,
649
+ useCompactNotation: false,
650
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
651
+ },
652
+ [MEASURE.CHANNEL_FB_START_TRIALS_VALUE]: {
653
+ title: 'Meta Start Trials Value',
654
+ description: 'The total value of trials started from your Meta ads.',
655
+ sumPrefix: '$',
656
+ sumSuffix: '',
657
+ avgPrefix: '$',
658
+ avgSuffix: '',
659
+ icon: 'facebook',
660
+ measure: MEASURE.CHANNEL_FB_START_TRIALS_VALUE,
661
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
662
+ valueType: MeasureValueType.CURRENCY,
663
+ decimalPlaces: 2,
664
+ useCompactNotation: true,
665
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
666
+ },
667
+ [MEASURE.CHANNEL_FB_START_TRIALS_COST]: {
668
+ title: 'Meta Start Trials Cost',
669
+ description: 'The cost per trial start from your Meta ads.',
670
+ sumPrefix: '$',
671
+ sumSuffix: '',
672
+ avgPrefix: '$',
673
+ avgSuffix: '',
674
+ icon: 'facebook',
675
+ measure: MEASURE.CHANNEL_FB_START_TRIALS_COST,
676
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
677
+ valueType: MeasureValueType.CURRENCY,
678
+ decimalPlaces: 2,
679
+ useCompactNotation: true,
680
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
681
+ },
682
+ [MEASURE.CHANNEL_FB_SUBMIT_APPLICATIONS]: {
683
+ title: 'Meta Submit Applications',
684
+ description: 'The number of application submissions from your Meta ads.',
685
+ sumPrefix: '',
686
+ sumSuffix: '',
687
+ avgPrefix: '',
688
+ avgSuffix: '',
689
+ icon: 'facebook',
690
+ measure: MEASURE.CHANNEL_FB_SUBMIT_APPLICATIONS,
691
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
692
+ valueType: MeasureValueType.NUMBER,
693
+ decimalPlaces: 0,
694
+ useCompactNotation: false,
695
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
696
+ },
697
+ [MEASURE.CHANNEL_FB_SUBMIT_APPLICATIONS_VALUE]: {
698
+ title: 'Meta Submit Applications Value',
699
+ description: 'The total value of applications submitted from your Meta ads.',
700
+ sumPrefix: '$',
701
+ sumSuffix: '',
702
+ avgPrefix: '$',
703
+ avgSuffix: '',
704
+ icon: 'facebook',
705
+ measure: MEASURE.CHANNEL_FB_SUBMIT_APPLICATIONS_VALUE,
706
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
707
+ valueType: MeasureValueType.CURRENCY,
708
+ decimalPlaces: 2,
709
+ useCompactNotation: true,
710
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
711
+ },
712
+ [MEASURE.CHANNEL_FB_SUBMIT_APPLICATIONS_COST]: {
713
+ title: 'Meta Submit Applications Cost',
714
+ description: 'The cost per application submission from your Meta ads.',
715
+ sumPrefix: '$',
716
+ sumSuffix: '',
717
+ avgPrefix: '$',
718
+ avgSuffix: '',
719
+ icon: 'facebook',
720
+ measure: MEASURE.CHANNEL_FB_SUBMIT_APPLICATIONS_COST,
721
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
722
+ valueType: MeasureValueType.CURRENCY,
723
+ decimalPlaces: 2,
724
+ useCompactNotation: true,
725
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
726
+ },
727
+ [MEASURE.CHANNEL_FB_APP_INSTALLS]: {
728
+ title: 'Meta App Installs',
729
+ description: 'The number of app installs from your Meta ads.',
730
+ sumPrefix: '',
731
+ sumSuffix: '',
732
+ avgPrefix: '',
733
+ avgSuffix: '',
734
+ icon: 'facebook',
735
+ measure: MEASURE.CHANNEL_FB_APP_INSTALLS,
736
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
737
+ valueType: MeasureValueType.NUMBER,
738
+ decimalPlaces: 0,
739
+ useCompactNotation: false,
740
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
741
+ },
742
+ [MEASURE.CHANNEL_FB_APP_INSTALLS_VALUE]: {
743
+ title: 'Meta App Installs Value',
744
+ description: 'The total value of app installs from your Meta ads.',
745
+ sumPrefix: '$',
746
+ sumSuffix: '',
747
+ avgPrefix: '$',
748
+ avgSuffix: '',
749
+ icon: 'facebook',
750
+ measure: MEASURE.CHANNEL_FB_APP_INSTALLS_VALUE,
751
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
752
+ valueType: MeasureValueType.CURRENCY,
753
+ decimalPlaces: 2,
754
+ useCompactNotation: true,
755
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
756
+ },
757
+ [MEASURE.CHANNEL_FB_APP_INSTALLS_COST]: {
758
+ title: 'Meta App Installs Cost',
759
+ description: 'The cost per app install from your Meta ads.',
760
+ sumPrefix: '$',
761
+ sumSuffix: '',
762
+ avgPrefix: '$',
763
+ avgSuffix: '',
764
+ icon: 'facebook',
765
+ measure: MEASURE.CHANNEL_FB_APP_INSTALLS_COST,
766
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
767
+ valueType: MeasureValueType.CURRENCY,
768
+ decimalPlaces: 2,
769
+ useCompactNotation: true,
770
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
771
+ },
772
+ [MEASURE.CHANNEL_FB_COMPLETE_REGISTRATIONS]: {
773
+ title: 'Meta Complete Registrations',
774
+ description: 'The number of completed registrations from your Meta ads.',
775
+ sumPrefix: '',
776
+ sumSuffix: '',
777
+ avgPrefix: '',
778
+ avgSuffix: '',
779
+ icon: 'facebook',
780
+ measure: MEASURE.CHANNEL_FB_COMPLETE_REGISTRATIONS,
781
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
782
+ valueType: MeasureValueType.NUMBER,
783
+ decimalPlaces: 0,
784
+ useCompactNotation: false,
785
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
786
+ },
787
+ [MEASURE.CHANNEL_FB_COMPLETE_REGISTRATIONS_VALUE]: {
788
+ title: 'Meta Complete Registrations Value',
789
+ description: 'The total value of completed registrations from your Meta ads.',
790
+ sumPrefix: '$',
791
+ sumSuffix: '',
792
+ avgPrefix: '$',
793
+ avgSuffix: '',
794
+ icon: 'facebook',
795
+ measure: MEASURE.CHANNEL_FB_COMPLETE_REGISTRATIONS_VALUE,
796
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
797
+ valueType: MeasureValueType.CURRENCY,
798
+ decimalPlaces: 2,
799
+ useCompactNotation: true,
800
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
801
+ },
802
+ [MEASURE.CHANNEL_FB_COMPLETE_REGISTRATIONS_COST]: {
803
+ title: 'Meta Complete Registrations Cost',
804
+ description: 'The cost per completed registration from your Meta ads.',
805
+ sumPrefix: '$',
806
+ sumSuffix: '',
807
+ avgPrefix: '$',
808
+ avgSuffix: '',
809
+ icon: 'facebook',
810
+ measure: MEASURE.CHANNEL_FB_COMPLETE_REGISTRATIONS_COST,
811
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
812
+ valueType: MeasureValueType.CURRENCY,
813
+ decimalPlaces: 2,
814
+ useCompactNotation: true,
815
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
816
+ },
561
817
  [MEASURE.CHANNEL_FB_VIDEO_VIEWS]: {
562
- title: 'Facebook Video Views',
563
- description: 'The number of video views on your Facebook ads.',
818
+ title: 'Meta Video Views',
819
+ description: 'The number of video views on your Meta ads.',
564
820
  sumPrefix: '',
565
821
  sumSuffix: '',
566
822
  avgPrefix: '',
@@ -574,8 +830,8 @@ export const FACEBOOK_MEASURES_MAP = {
574
830
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
575
831
  },
576
832
  [MEASURE.CHANNEL_FB_VIDEO_VIEWS_COST]: {
577
- title: 'Facebook Video Views Cost',
578
- description: 'The cost per video view on your Facebook ads.',
833
+ title: 'Meta Video Views Cost',
834
+ description: 'The cost per video view on your Meta ads.',
579
835
  sumPrefix: '$',
580
836
  sumSuffix: '',
581
837
  avgPrefix: '$',
@@ -589,8 +845,8 @@ export const FACEBOOK_MEASURES_MAP = {
589
845
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
590
846
  },
591
847
  [MEASURE.CHANNEL_FB_VIDEO_VIEWS_15_SEC_COST]: {
592
- title: 'Facebook 15-Second Video Views Cost',
593
- description: 'The cost per 15-second video view on your Facebook ads.',
848
+ title: 'Meta 15-Second Video Views Cost',
849
+ description: 'The cost per 15-second video view on your Meta ads.',
594
850
  sumPrefix: '$',
595
851
  sumSuffix: '',
596
852
  avgPrefix: '$',
@@ -604,8 +860,8 @@ export const FACEBOOK_MEASURES_MAP = {
604
860
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
605
861
  },
606
862
  [MEASURE.CHANNEL_FB_VIDEO_VIEWS_THRUPLAY_COST]: {
607
- title: 'Facebook Video Thruplay Cost',
608
- description: 'The cost per video thruplay on your Facebook ads.',
863
+ title: 'Meta Video Thruplay Cost',
864
+ description: 'The cost per video watched to completion or for at least 15 seconds.',
609
865
  sumPrefix: '$',
610
866
  sumSuffix: '',
611
867
  avgPrefix: '$',
@@ -619,8 +875,8 @@ export const FACEBOOK_MEASURES_MAP = {
619
875
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
620
876
  },
621
877
  [MEASURE.CHANNEL_FB_VIDEO_PLAYS]: {
622
- title: 'Facebook Video Plays',
623
- description: 'The number of video plays on your Facebook ads.',
878
+ title: 'Meta Video Plays',
879
+ description: 'The number of video plays on your Meta ads.',
624
880
  sumPrefix: '',
625
881
  sumSuffix: '',
626
882
  avgPrefix: '',
@@ -633,5 +889,575 @@ export const FACEBOOK_MEASURES_MAP = {
633
889
  useCompactNotation: false,
634
890
  applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
635
891
  },
892
+ [MEASURE.CHANNEL_FB_VIDEO_PLAYS_COST]: {
893
+ title: 'Meta Video Plays Cost',
894
+ description: 'The cost per video play on your Meta ads.',
895
+ sumPrefix: '$',
896
+ sumSuffix: '',
897
+ avgPrefix: '$',
898
+ avgSuffix: '',
899
+ icon: 'facebook',
900
+ measure: MEASURE.CHANNEL_FB_VIDEO_PLAYS_COST,
901
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
902
+ valueType: MeasureValueType.CURRENCY,
903
+ decimalPlaces: 2,
904
+ useCompactNotation: true,
905
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
906
+ },
907
+ [MEASURE.CHANNEL_FB_UNIQUE_CLICKS_CTR]: {
908
+ title: 'Meta Unique Clicks CTR',
909
+ description: 'The percentage of people who clicked on your ad at least once.',
910
+ sumPrefix: '',
911
+ sumSuffix: '%',
912
+ avgPrefix: '',
913
+ avgSuffix: '%',
914
+ icon: 'facebook',
915
+ measure: MEASURE.CHANNEL_FB_UNIQUE_CLICKS_CTR,
916
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
917
+ valueType: MeasureValueType.PERCENTAGE,
918
+ decimalPlaces: 2,
919
+ useCompactNotation: false,
920
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
921
+ },
922
+ [MEASURE.CHANNEL_FB_INLINE_CLICKS_CTR]: {
923
+ title: 'Meta Inline Clicks CTR',
924
+ description: 'The percentage of impressions that resulted in inline link clicks.',
925
+ sumPrefix: '',
926
+ sumSuffix: '%',
927
+ avgPrefix: '',
928
+ avgSuffix: '%',
929
+ icon: 'facebook',
930
+ measure: MEASURE.CHANNEL_FB_INLINE_CLICKS_CTR,
931
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
932
+ valueType: MeasureValueType.PERCENTAGE,
933
+ decimalPlaces: 2,
934
+ useCompactNotation: false,
935
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
936
+ },
937
+ [MEASURE.CHANNEL_FB_OUTBOUND_CLICKS_CTR]: {
938
+ title: 'Meta Outbound Clicks CTR',
939
+ description: 'The percentage of impressions that resulted in outbound clicks.',
940
+ sumPrefix: '',
941
+ sumSuffix: '%',
942
+ avgPrefix: '',
943
+ avgSuffix: '%',
944
+ icon: 'facebook',
945
+ measure: MEASURE.CHANNEL_FB_OUTBOUND_CLICKS_CTR,
946
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
947
+ valueType: MeasureValueType.PERCENTAGE,
948
+ decimalPlaces: 2,
949
+ useCompactNotation: false,
950
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
951
+ },
952
+ [MEASURE.CHANNEL_FB_LINK_CLICKS]: {
953
+ title: 'Meta Link Clicks',
954
+ description: 'The number of clicks on links in your Meta ads.',
955
+ sumPrefix: '',
956
+ sumSuffix: '',
957
+ avgPrefix: '',
958
+ avgSuffix: '',
959
+ icon: 'facebook',
960
+ measure: MEASURE.CHANNEL_FB_LINK_CLICKS,
961
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
962
+ valueType: MeasureValueType.NUMBER,
963
+ decimalPlaces: 0,
964
+ useCompactNotation: false,
965
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
966
+ },
967
+ [MEASURE.CHANNEL_FB_LINK_CLICKS_CTR]: {
968
+ title: 'Meta Link Clicks CTR',
969
+ description: 'The percentage of impressions that resulted in link clicks.',
970
+ sumPrefix: '',
971
+ sumSuffix: '%',
972
+ avgPrefix: '',
973
+ avgSuffix: '%',
974
+ icon: 'facebook',
975
+ measure: MEASURE.CHANNEL_FB_LINK_CLICKS_CTR,
976
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
977
+ valueType: MeasureValueType.PERCENTAGE,
978
+ decimalPlaces: 2,
979
+ useCompactNotation: false,
980
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
981
+ },
982
+ [MEASURE.CHANNEL_FB_COST_PER_LINK_CLICK]: {
983
+ title: 'Meta Cost per Link Click',
984
+ description: 'The average cost per link click on your Meta ads.',
985
+ sumPrefix: '$',
986
+ sumSuffix: '',
987
+ avgPrefix: '$',
988
+ avgSuffix: '',
989
+ icon: 'facebook',
990
+ measure: MEASURE.CHANNEL_FB_COST_PER_LINK_CLICK,
991
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
992
+ valueType: MeasureValueType.CURRENCY,
993
+ decimalPlaces: 2,
994
+ useCompactNotation: true,
995
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
996
+ },
997
+ [MEASURE.CHANNEL_FB_SEARCHES]: {
998
+ title: 'Meta Searches',
999
+ description: 'The number of on-site searches attributed to your Meta ads.',
1000
+ sumPrefix: '',
1001
+ sumSuffix: '',
1002
+ avgPrefix: '',
1003
+ avgSuffix: '',
1004
+ icon: 'facebook',
1005
+ measure: MEASURE.CHANNEL_FB_SEARCHES,
1006
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1007
+ valueType: MeasureValueType.NUMBER,
1008
+ decimalPlaces: 0,
1009
+ useCompactNotation: false,
1010
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1011
+ },
1012
+ [MEASURE.CHANNEL_FB_SEARCHES_VALUE]: {
1013
+ title: 'Meta Searches Value',
1014
+ description: 'The total value of on-site searches attributed to your Meta ads.',
1015
+ sumPrefix: '$',
1016
+ sumSuffix: '',
1017
+ avgPrefix: '$',
1018
+ avgSuffix: '',
1019
+ icon: 'facebook',
1020
+ measure: MEASURE.CHANNEL_FB_SEARCHES_VALUE,
1021
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1022
+ valueType: MeasureValueType.CURRENCY,
1023
+ decimalPlaces: 2,
1024
+ useCompactNotation: true,
1025
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1026
+ },
1027
+ [MEASURE.CHANNEL_FB_SEARCHES_COST]: {
1028
+ title: 'Meta Searches Cost',
1029
+ description: 'The cost per on-site search attributed to your Meta ads.',
1030
+ sumPrefix: '$',
1031
+ sumSuffix: '',
1032
+ avgPrefix: '$',
1033
+ avgSuffix: '',
1034
+ icon: 'facebook',
1035
+ measure: MEASURE.CHANNEL_FB_SEARCHES_COST,
1036
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1037
+ valueType: MeasureValueType.CURRENCY,
1038
+ decimalPlaces: 2,
1039
+ useCompactNotation: true,
1040
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1041
+ },
1042
+ [MEASURE.CHANNEL_FB_ADD_TO_WISHLISTS]: {
1043
+ title: 'Meta Add to Wishlists',
1044
+ description: 'The number of add to wishlist actions attributed to your Meta ads.',
1045
+ sumPrefix: '',
1046
+ sumSuffix: '',
1047
+ avgPrefix: '',
1048
+ avgSuffix: '',
1049
+ icon: 'facebook',
1050
+ measure: MEASURE.CHANNEL_FB_ADD_TO_WISHLISTS,
1051
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1052
+ valueType: MeasureValueType.NUMBER,
1053
+ decimalPlaces: 0,
1054
+ useCompactNotation: false,
1055
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1056
+ },
1057
+ [MEASURE.CHANNEL_FB_ADD_TO_WISHLISTS_VALUE]: {
1058
+ title: 'Meta Add to Wishlists Value',
1059
+ description: 'The total value of products added to wishlist from your Meta ads.',
1060
+ sumPrefix: '$',
1061
+ sumSuffix: '',
1062
+ avgPrefix: '$',
1063
+ avgSuffix: '',
1064
+ icon: 'facebook',
1065
+ measure: MEASURE.CHANNEL_FB_ADD_TO_WISHLISTS_VALUE,
1066
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1067
+ valueType: MeasureValueType.CURRENCY,
1068
+ decimalPlaces: 2,
1069
+ useCompactNotation: true,
1070
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1071
+ },
1072
+ [MEASURE.CHANNEL_FB_ADD_TO_WISHLISTS_COST]: {
1073
+ title: 'Meta Add to Wishlists Cost',
1074
+ description: 'The cost per add to wishlist action from your Meta ads.',
1075
+ sumPrefix: '$',
1076
+ sumSuffix: '',
1077
+ avgPrefix: '$',
1078
+ avgSuffix: '',
1079
+ icon: 'facebook',
1080
+ measure: MEASURE.CHANNEL_FB_ADD_TO_WISHLISTS_COST,
1081
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1082
+ valueType: MeasureValueType.CURRENCY,
1083
+ decimalPlaces: 2,
1084
+ useCompactNotation: true,
1085
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1086
+ },
1087
+ [MEASURE.CHANNEL_FB_ENGAGEMENTS]: {
1088
+ title: 'Meta Engagements',
1089
+ description: 'The total interactions with your Meta ads (likes, comments, shares, etc.).',
1090
+ sumPrefix: '',
1091
+ sumSuffix: '',
1092
+ avgPrefix: '',
1093
+ avgSuffix: '',
1094
+ icon: 'facebook',
1095
+ measure: MEASURE.CHANNEL_FB_ENGAGEMENTS,
1096
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1097
+ valueType: MeasureValueType.NUMBER,
1098
+ decimalPlaces: 0,
1099
+ useCompactNotation: false,
1100
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1101
+ },
1102
+ [MEASURE.CHANNEL_FB_ENGAGEMENTS_COST]: {
1103
+ title: 'Meta Engagements Cost',
1104
+ description: 'The cost per engagement on your Meta ads.',
1105
+ sumPrefix: '$',
1106
+ sumSuffix: '',
1107
+ avgPrefix: '$',
1108
+ avgSuffix: '',
1109
+ icon: 'facebook',
1110
+ measure: MEASURE.CHANNEL_FB_ENGAGEMENTS_COST,
1111
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1112
+ valueType: MeasureValueType.CURRENCY,
1113
+ decimalPlaces: 2,
1114
+ useCompactNotation: true,
1115
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1116
+ },
1117
+ [MEASURE.CHANNEL_FB_ENGAGEMENT_RATE]: {
1118
+ title: 'Meta Engagement Rate',
1119
+ description: 'The percentage of people who engaged with your Meta ads after seeing them.',
1120
+ sumPrefix: '',
1121
+ sumSuffix: '%',
1122
+ avgPrefix: '',
1123
+ avgSuffix: '%',
1124
+ icon: 'facebook',
1125
+ measure: MEASURE.CHANNEL_FB_ENGAGEMENT_RATE,
1126
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1127
+ valueType: MeasureValueType.PERCENTAGE,
1128
+ decimalPlaces: 2,
1129
+ useCompactNotation: false,
1130
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1131
+ },
1132
+ [MEASURE.CHANNEL_FB_REACTIONS]: {
1133
+ title: 'Meta Reactions',
1134
+ description: 'The number of reactions (like, love, wow, etc.) on your Meta ads.',
1135
+ sumPrefix: '',
1136
+ sumSuffix: '',
1137
+ avgPrefix: '',
1138
+ avgSuffix: '',
1139
+ icon: 'facebook',
1140
+ measure: MEASURE.CHANNEL_FB_REACTIONS,
1141
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1142
+ valueType: MeasureValueType.NUMBER,
1143
+ decimalPlaces: 0,
1144
+ useCompactNotation: false,
1145
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1146
+ },
1147
+ [MEASURE.CHANNEL_FB_REACTIONS_COST]: {
1148
+ title: 'Meta Reactions Cost',
1149
+ description: 'The cost per reaction on your Meta ads.',
1150
+ sumPrefix: '$',
1151
+ sumSuffix: '',
1152
+ avgPrefix: '$',
1153
+ avgSuffix: '',
1154
+ icon: 'facebook',
1155
+ measure: MEASURE.CHANNEL_FB_REACTIONS_COST,
1156
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1157
+ valueType: MeasureValueType.CURRENCY,
1158
+ decimalPlaces: 2,
1159
+ useCompactNotation: true,
1160
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1161
+ },
1162
+ [MEASURE.CHANNEL_FB_SHARES]: {
1163
+ title: 'Meta Shares',
1164
+ description: 'The number of times your Meta ads were shared.',
1165
+ sumPrefix: '',
1166
+ sumSuffix: '',
1167
+ avgPrefix: '',
1168
+ avgSuffix: '',
1169
+ icon: 'facebook',
1170
+ measure: MEASURE.CHANNEL_FB_SHARES,
1171
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1172
+ valueType: MeasureValueType.NUMBER,
1173
+ decimalPlaces: 0,
1174
+ useCompactNotation: false,
1175
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1176
+ },
1177
+ [MEASURE.CHANNEL_FB_SHARES_COST]: {
1178
+ title: 'Meta Shares Cost',
1179
+ description: 'The cost per share of your Meta ads.',
1180
+ sumPrefix: '$',
1181
+ sumSuffix: '',
1182
+ avgPrefix: '$',
1183
+ avgSuffix: '',
1184
+ icon: 'facebook',
1185
+ measure: MEASURE.CHANNEL_FB_SHARES_COST,
1186
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1187
+ valueType: MeasureValueType.CURRENCY,
1188
+ decimalPlaces: 2,
1189
+ useCompactNotation: true,
1190
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1191
+ },
1192
+ [MEASURE.CHANNEL_FB_LIKES]: {
1193
+ title: 'Meta Likes',
1194
+ description: 'The number of likes on your Meta ads.',
1195
+ sumPrefix: '',
1196
+ sumSuffix: '',
1197
+ avgPrefix: '',
1198
+ avgSuffix: '',
1199
+ icon: 'facebook',
1200
+ measure: MEASURE.CHANNEL_FB_LIKES,
1201
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1202
+ valueType: MeasureValueType.NUMBER,
1203
+ decimalPlaces: 0,
1204
+ useCompactNotation: false,
1205
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1206
+ },
1207
+ [MEASURE.CHANNEL_FB_LIKES_COST]: {
1208
+ title: 'Meta Likes Cost',
1209
+ description: 'The cost per like on your Meta ads.',
1210
+ sumPrefix: '$',
1211
+ sumSuffix: '',
1212
+ avgPrefix: '$',
1213
+ avgSuffix: '',
1214
+ icon: 'facebook',
1215
+ measure: MEASURE.CHANNEL_FB_LIKES_COST,
1216
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1217
+ valueType: MeasureValueType.CURRENCY,
1218
+ decimalPlaces: 2,
1219
+ useCompactNotation: true,
1220
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1221
+ },
1222
+ [MEASURE.CHANNEL_FB_COMMENTS]: {
1223
+ title: 'Meta Comments',
1224
+ description: 'The number of comments on your Meta ads.',
1225
+ sumPrefix: '',
1226
+ sumSuffix: '',
1227
+ avgPrefix: '',
1228
+ avgSuffix: '',
1229
+ icon: 'facebook',
1230
+ measure: MEASURE.CHANNEL_FB_COMMENTS,
1231
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1232
+ valueType: MeasureValueType.NUMBER,
1233
+ decimalPlaces: 0,
1234
+ useCompactNotation: false,
1235
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1236
+ },
1237
+ [MEASURE.CHANNEL_FB_COMMENTS_COST]: {
1238
+ title: 'Meta Comments Cost',
1239
+ description: 'The cost per comment on your Meta ads.',
1240
+ sumPrefix: '$',
1241
+ sumSuffix: '',
1242
+ avgPrefix: '$',
1243
+ avgSuffix: '',
1244
+ icon: 'facebook',
1245
+ measure: MEASURE.CHANNEL_FB_COMMENTS_COST,
1246
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1247
+ valueType: MeasureValueType.CURRENCY,
1248
+ decimalPlaces: 2,
1249
+ useCompactNotation: true,
1250
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1251
+ },
1252
+ [MEASURE.CHANNEL_FB_SAVES]: {
1253
+ title: 'Meta Saves',
1254
+ description: 'The number of times people saved your Meta ads for later viewing.',
1255
+ sumPrefix: '',
1256
+ sumSuffix: '',
1257
+ avgPrefix: '',
1258
+ avgSuffix: '',
1259
+ icon: 'facebook',
1260
+ measure: MEASURE.CHANNEL_FB_SAVES,
1261
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1262
+ valueType: MeasureValueType.NUMBER,
1263
+ decimalPlaces: 0,
1264
+ useCompactNotation: false,
1265
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1266
+ },
1267
+ [MEASURE.CHANNEL_FB_SAVES_COST]: {
1268
+ title: 'Meta Saves Cost',
1269
+ description: 'The cost per save on your Meta ads.',
1270
+ sumPrefix: '$',
1271
+ sumSuffix: '',
1272
+ avgPrefix: '$',
1273
+ avgSuffix: '',
1274
+ icon: 'facebook',
1275
+ measure: MEASURE.CHANNEL_FB_SAVES_COST,
1276
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1277
+ valueType: MeasureValueType.CURRENCY,
1278
+ decimalPlaces: 2,
1279
+ useCompactNotation: true,
1280
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1281
+ },
1282
+ [MEASURE.CHANNEL_FB_LANDING_PAGE_VIEWS]: {
1283
+ title: 'Meta Landing Page Views',
1284
+ description: 'The number of times your landing page loaded after people clicked your ads.',
1285
+ sumPrefix: '',
1286
+ sumSuffix: '',
1287
+ avgPrefix: '',
1288
+ avgSuffix: '',
1289
+ icon: 'facebook',
1290
+ measure: MEASURE.CHANNEL_FB_LANDING_PAGE_VIEWS,
1291
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1292
+ valueType: MeasureValueType.NUMBER,
1293
+ decimalPlaces: 0,
1294
+ useCompactNotation: false,
1295
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1296
+ },
1297
+ [MEASURE.CHANNEL_FB_LANDING_PAGE_VIEWS_COST]: {
1298
+ title: 'Meta Landing Page Views Cost',
1299
+ description: 'The cost per landing page view from your Meta ads.',
1300
+ sumPrefix: '$',
1301
+ sumSuffix: '',
1302
+ avgPrefix: '$',
1303
+ avgSuffix: '',
1304
+ icon: 'facebook',
1305
+ measure: MEASURE.CHANNEL_FB_LANDING_PAGE_VIEWS_COST,
1306
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1307
+ valueType: MeasureValueType.CURRENCY,
1308
+ decimalPlaces: 2,
1309
+ useCompactNotation: true,
1310
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1311
+ },
1312
+ [MEASURE.CHANNEL_FB_LANDING_PAGE_VIEW_RATE]: {
1313
+ title: 'Meta Landing Page View Rate',
1314
+ description: 'The percentage of clicks that resulted in landing page loads.',
1315
+ sumPrefix: '',
1316
+ sumSuffix: '%',
1317
+ avgPrefix: '',
1318
+ avgSuffix: '%',
1319
+ icon: 'facebook',
1320
+ measure: MEASURE.CHANNEL_FB_LANDING_PAGE_VIEW_RATE,
1321
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1322
+ valueType: MeasureValueType.PERCENTAGE,
1323
+ decimalPlaces: 2,
1324
+ useCompactNotation: false,
1325
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1326
+ },
1327
+ [MEASURE.CHANNEL_FB_VIDEO_VIEWS_15_SEC]: {
1328
+ title: 'Meta 15-Second Video Views',
1329
+ description: 'The number of times your video ads were watched for at least 15 seconds.',
1330
+ sumPrefix: '',
1331
+ sumSuffix: '',
1332
+ avgPrefix: '',
1333
+ avgSuffix: '',
1334
+ icon: 'facebook',
1335
+ measure: MEASURE.CHANNEL_FB_VIDEO_VIEWS_15_SEC,
1336
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1337
+ valueType: MeasureValueType.NUMBER,
1338
+ decimalPlaces: 0,
1339
+ useCompactNotation: false,
1340
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1341
+ },
1342
+ [MEASURE.CHANNEL_FB_VIDEO_VIEWS_30_SEC]: {
1343
+ title: 'Meta 30-Second Video Views',
1344
+ description: 'The number of times your video ads were watched for at least 30 seconds.',
1345
+ sumPrefix: '',
1346
+ sumSuffix: '',
1347
+ avgPrefix: '',
1348
+ avgSuffix: '',
1349
+ icon: 'facebook',
1350
+ measure: MEASURE.CHANNEL_FB_VIDEO_VIEWS_30_SEC,
1351
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1352
+ valueType: MeasureValueType.NUMBER,
1353
+ decimalPlaces: 0,
1354
+ useCompactNotation: false,
1355
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1356
+ },
1357
+ [MEASURE.CHANNEL_FB_VIDEO_VIEWS_30_SEC_COST]: {
1358
+ title: 'Meta 30-Second Video Views Cost',
1359
+ description: 'The cost per 30-second video view on your Meta ads.',
1360
+ sumPrefix: '$',
1361
+ sumSuffix: '',
1362
+ avgPrefix: '$',
1363
+ avgSuffix: '',
1364
+ icon: 'facebook',
1365
+ measure: MEASURE.CHANNEL_FB_VIDEO_VIEWS_30_SEC_COST,
1366
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1367
+ valueType: MeasureValueType.CURRENCY,
1368
+ decimalPlaces: 2,
1369
+ useCompactNotation: true,
1370
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1371
+ },
1372
+ [MEASURE.CHANNEL_FB_VIDEO_P25_WATCHED_VIEWS]: {
1373
+ title: 'Meta Video 25% Watched Views',
1374
+ description: 'The number of times your video ads were watched to at least 25% completion.',
1375
+ sumPrefix: '',
1376
+ sumSuffix: '',
1377
+ avgPrefix: '',
1378
+ avgSuffix: '',
1379
+ icon: 'facebook',
1380
+ measure: MEASURE.CHANNEL_FB_VIDEO_P25_WATCHED_VIEWS,
1381
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1382
+ valueType: MeasureValueType.NUMBER,
1383
+ decimalPlaces: 0,
1384
+ useCompactNotation: false,
1385
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1386
+ },
1387
+ [MEASURE.CHANNEL_FB_VIDEO_P50_WATCHED_VIEWS]: {
1388
+ title: 'Meta Video 50% Watched Views',
1389
+ description: 'The number of times your video ads were watched to at least 50% completion.',
1390
+ sumPrefix: '',
1391
+ sumSuffix: '',
1392
+ avgPrefix: '',
1393
+ avgSuffix: '',
1394
+ icon: 'facebook',
1395
+ measure: MEASURE.CHANNEL_FB_VIDEO_P50_WATCHED_VIEWS,
1396
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1397
+ valueType: MeasureValueType.NUMBER,
1398
+ decimalPlaces: 0,
1399
+ useCompactNotation: false,
1400
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1401
+ },
1402
+ [MEASURE.CHANNEL_FB_VIDEO_P75_WATCHED_VIEWS]: {
1403
+ title: 'Meta Video 75% Watched Views',
1404
+ description: 'The number of times your video ads were watched to at least 75% completion.',
1405
+ sumPrefix: '',
1406
+ sumSuffix: '',
1407
+ avgPrefix: '',
1408
+ avgSuffix: '',
1409
+ icon: 'facebook',
1410
+ measure: MEASURE.CHANNEL_FB_VIDEO_P75_WATCHED_VIEWS,
1411
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1412
+ valueType: MeasureValueType.NUMBER,
1413
+ decimalPlaces: 0,
1414
+ useCompactNotation: false,
1415
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1416
+ },
1417
+ [MEASURE.CHANNEL_FB_VIDEO_P95_WATCHED_VIEWS]: {
1418
+ title: 'Meta Video 95% Watched Views',
1419
+ description: 'The number of times your video ads were watched to at least 95% completion.',
1420
+ sumPrefix: '',
1421
+ sumSuffix: '',
1422
+ avgPrefix: '',
1423
+ avgSuffix: '',
1424
+ icon: 'facebook',
1425
+ measure: MEASURE.CHANNEL_FB_VIDEO_P95_WATCHED_VIEWS,
1426
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1427
+ valueType: MeasureValueType.NUMBER,
1428
+ decimalPlaces: 0,
1429
+ useCompactNotation: false,
1430
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1431
+ },
1432
+ [MEASURE.CHANNEL_FB_VIDEO_P100_WATCHED_VIEWS]: {
1433
+ title: 'Meta Video 100% Watched Views',
1434
+ description: 'The number of times your video ads were watched to 100% completion.',
1435
+ sumPrefix: '',
1436
+ sumSuffix: '',
1437
+ avgPrefix: '',
1438
+ avgSuffix: '',
1439
+ icon: 'facebook',
1440
+ measure: MEASURE.CHANNEL_FB_VIDEO_P100_WATCHED_VIEWS,
1441
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1442
+ valueType: MeasureValueType.NUMBER,
1443
+ decimalPlaces: 0,
1444
+ useCompactNotation: false,
1445
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1446
+ },
1447
+ [MEASURE.CHANNEL_FB_VIDEO_VIEWS_THRUPLAY]: {
1448
+ title: 'Meta Video Thruplay Views',
1449
+ description: 'The number of videos watched to completion or for at least 15 seconds.',
1450
+ sumPrefix: '',
1451
+ sumSuffix: '',
1452
+ avgPrefix: '',
1453
+ avgSuffix: '',
1454
+ icon: 'facebook',
1455
+ measure: MEASURE.CHANNEL_FB_VIDEO_VIEWS_THRUPLAY,
1456
+ category: MEASURE_CATEGORY.FACEBOOK_REPORTED,
1457
+ valueType: MeasureValueType.NUMBER,
1458
+ decimalPlaces: 0,
1459
+ useCompactNotation: false,
1460
+ applicableContexts: CUSTOM_DASHBOARD_APPLICABLE_CONTEXTS
1461
+ },
636
1462
  };
637
1463
  //# sourceMappingURL=facebook-measure-definitions.js.map