@adtrackify/at-tracking-event-types 4.58.0 → 4.59.0

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.
@@ -178,7 +178,7 @@ export const ORDERS_MEASURES_MAP = {
178
178
  decimalPlaces: 2,
179
179
  useCompactNotation: true,
180
180
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
181
- shortTitle: 'Total Rev.',
181
+ shortTitle: 'Revenue (Total)',
182
182
  tooltip: 'The total dollar amount collected from all orders including shipping and taxes, before any refunds.',
183
183
  },
184
184
  [MEASURE.ORDERS_GROSS_REVENUE]: {
@@ -197,7 +197,7 @@ export const ORDERS_MEASURES_MAP = {
197
197
  decimalPlaces: 2,
198
198
  useCompactNotation: true,
199
199
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
200
- shortTitle: 'Gross Rev.',
200
+ shortTitle: 'Revenue (Gross)',
201
201
  tooltip: 'Revenue from product sales before subtracting discounts or refunds. The starting point for margin calculations.',
202
202
  },
203
203
  [MEASURE.ORDERS_NET_REVENUE]: {
@@ -216,7 +216,7 @@ export const ORDERS_MEASURES_MAP = {
216
216
  decimalPlaces: 2,
217
217
  useCompactNotation: true,
218
218
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
219
- shortTitle: 'Net Rev.',
219
+ shortTitle: 'Revenue (Net)',
220
220
  tooltip: 'Revenue after subtracting discounts and refunds from gross revenue. The primary revenue metric for profitability analysis.',
221
221
  formulaDisplay: 'Gross Revenue − Discounts − Refunds',
222
222
  formula: 'gross_revenue - discounts - refunds',
@@ -237,7 +237,7 @@ export const ORDERS_MEASURES_MAP = {
237
237
  decimalPlaces: 2,
238
238
  useCompactNotation: true,
239
239
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
240
- shortTitle: 'NC Total Rev.',
240
+ shortTitle: 'NC Revenue (Total)',
241
241
  tooltip: 'Total revenue collected from first-time buyers including shipping and taxes. Reflects the raw dollar value of acquisition.',
242
242
  },
243
243
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_REVENUE]: {
@@ -256,7 +256,7 @@ export const ORDERS_MEASURES_MAP = {
256
256
  decimalPlaces: 2,
257
257
  useCompactNotation: true,
258
258
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
259
- shortTitle: 'NC Gross Rev.',
259
+ shortTitle: 'NC Rev. (Gross)',
260
260
  tooltip: 'Gross product revenue from new customers before discounts and refunds. Used to calculate new customer gross margin.',
261
261
  },
262
262
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_REVENUE]: {
@@ -275,7 +275,7 @@ export const ORDERS_MEASURES_MAP = {
275
275
  decimalPlaces: 2,
276
276
  useCompactNotation: true,
277
277
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
278
- shortTitle: 'NC Net Rev.',
278
+ shortTitle: 'NC Revenue (Net)',
279
279
  tooltip: 'Net revenue from new customers after discounts and refunds. The clearest measure of first-order monetization.',
280
280
  },
281
281
  [MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_REVENUE]: {
@@ -294,7 +294,7 @@ export const ORDERS_MEASURES_MAP = {
294
294
  decimalPlaces: 2,
295
295
  useCompactNotation: true,
296
296
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
297
- shortTitle: 'RC Total Rev.',
297
+ shortTitle: 'RC Rev. (Total)',
298
298
  tooltip: 'Total revenue from repeat buyers including shipping and taxes. High values indicate strong retention and LTV.',
299
299
  },
300
300
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_REVENUE]: {
@@ -313,7 +313,7 @@ export const ORDERS_MEASURES_MAP = {
313
313
  decimalPlaces: 2,
314
314
  useCompactNotation: true,
315
315
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
316
- shortTitle: 'RC Gross Rev.',
316
+ shortTitle: 'RC Revenue (Gross)',
317
317
  tooltip: 'Gross product revenue from returning customers before discounts and refunds.',
318
318
  },
319
319
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_REVENUE]: {
@@ -332,13 +332,13 @@ export const ORDERS_MEASURES_MAP = {
332
332
  decimalPlaces: 2,
333
333
  useCompactNotation: true,
334
334
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
335
- shortTitle: 'RC Net Rev.',
335
+ shortTitle: 'RC Revenue (Net)',
336
336
  tooltip: 'Net revenue from returning customers after discounts and refunds. Key input for repeat-purchase profitability.',
337
337
  },
338
338
  [MEASURE.ORDERS_TOTAL_AOV]: {
339
339
  priority: 1,
340
340
  title: 'Total AOV',
341
- shortTitle: 'Total AOV',
341
+ shortTitle: 'AOV (Total)',
342
342
  description: 'Average order value based on total revenue.',
343
343
  sumPrefix: '$',
344
344
  sumSuffix: '',
@@ -359,7 +359,7 @@ export const ORDERS_MEASURES_MAP = {
359
359
  [MEASURE.ORDERS_GROSS_AOV]: {
360
360
  priority: 2,
361
361
  title: 'Gross AOV',
362
- shortTitle: 'Gross AOV',
362
+ shortTitle: 'AOV (Gross)',
363
363
  description: 'Average order value based on gross revenue.',
364
364
  sumPrefix: '$',
365
365
  sumSuffix: '',
@@ -380,7 +380,7 @@ export const ORDERS_MEASURES_MAP = {
380
380
  [MEASURE.ORDERS_NET_AOV]: {
381
381
  priority: 3,
382
382
  title: 'Net AOV',
383
- shortTitle: 'Net AOV',
383
+ shortTitle: 'AOV (Net)',
384
384
  description: 'Average order value based on net revenue.',
385
385
  sumPrefix: '$',
386
386
  sumSuffix: '',
@@ -414,7 +414,7 @@ export const ORDERS_MEASURES_MAP = {
414
414
  decimalPlaces: 2,
415
415
  useCompactNotation: false,
416
416
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
417
- shortTitle: 'NC Total AOV',
417
+ shortTitle: 'NC AOV (Total)',
418
418
  tooltip: 'Average total transaction value for first-time buyers. Compare to RC Total AOV to see if new customers spend more or less.',
419
419
  formulaDisplay: 'NC Total Revenue ÷ NC Order Count',
420
420
  formula: 'nc_total_revenue / nc_order_count',
@@ -435,7 +435,7 @@ export const ORDERS_MEASURES_MAP = {
435
435
  decimalPlaces: 2,
436
436
  useCompactNotation: false,
437
437
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
438
- shortTitle: 'NC Gross AOV',
438
+ shortTitle: 'NC AOV (Gross)',
439
439
  tooltip: 'Average gross revenue per order for new customers before discounts and refunds.',
440
440
  formulaDisplay: 'NC Gross Revenue ÷ NC Order Count',
441
441
  formula: 'nc_gross_revenue / nc_order_count',
@@ -456,7 +456,7 @@ export const ORDERS_MEASURES_MAP = {
456
456
  decimalPlaces: 2,
457
457
  useCompactNotation: false,
458
458
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
459
- shortTitle: 'NC Net AOV',
459
+ shortTitle: 'NC AOV (Net)',
460
460
  tooltip: 'Average net revenue per order for new customers after discounts and refunds. Key input for new customer payback calculations.',
461
461
  formulaDisplay: 'NC Net Revenue ÷ NC Order Count',
462
462
  formula: 'nc_net_revenue / nc_order_count',
@@ -477,7 +477,7 @@ export const ORDERS_MEASURES_MAP = {
477
477
  decimalPlaces: 2,
478
478
  useCompactNotation: false,
479
479
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
480
- shortTitle: 'RC Total AOV',
480
+ shortTitle: 'RC AOV (Total)',
481
481
  tooltip: 'Average total transaction value for returning buyers. Typically higher than new customer AOV as loyal customers buy more.',
482
482
  formulaDisplay: 'RC Total Revenue ÷ RC Order Count',
483
483
  formula: 'rc_total_revenue / rc_order_count',
@@ -498,7 +498,7 @@ export const ORDERS_MEASURES_MAP = {
498
498
  decimalPlaces: 2,
499
499
  useCompactNotation: false,
500
500
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
501
- shortTitle: 'RC Gross AOV',
501
+ shortTitle: 'RC AOV (Gross)',
502
502
  tooltip: 'Average gross revenue per order for returning customers before discounts and refunds.',
503
503
  formulaDisplay: 'RC Gross Revenue ÷ RC Order Count',
504
504
  formula: 'rc_gross_revenue / rc_order_count',
@@ -519,7 +519,7 @@ export const ORDERS_MEASURES_MAP = {
519
519
  decimalPlaces: 2,
520
520
  useCompactNotation: false,
521
521
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
522
- shortTitle: 'RC Net AOV',
522
+ shortTitle: 'RC AOV (Net)',
523
523
  tooltip: 'Average net revenue per order for returning customers after discounts and refunds.',
524
524
  formulaDisplay: 'RC Net Revenue ÷ RC Order Count',
525
525
  formula: 'rc_net_revenue / rc_order_count',
@@ -1947,7 +1947,7 @@ export const ORDERS_MEASURES_MAP = {
1947
1947
  decimalPlaces: 2,
1948
1948
  useCompactNotation: false,
1949
1949
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1950
- shortTitle: 'NC Disc. Gross',
1950
+ shortTitle: 'NC Disc. (Gross)',
1951
1951
  tooltip: 'New customer discounts as a share of new customer gross revenue. High rates suggest heavy promotion to drive acquisition.',
1952
1952
  formulaDisplay: 'NC Discounts ÷ NC Gross Revenue × 100',
1953
1953
  formula: 'nc_discounts / nc_gross_revenue * 100',
@@ -1968,7 +1968,7 @@ export const ORDERS_MEASURES_MAP = {
1968
1968
  decimalPlaces: 2,
1969
1969
  useCompactNotation: false,
1970
1970
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1971
- shortTitle: 'RC Disc. Gross',
1971
+ shortTitle: 'RC Disc. (Gross)',
1972
1972
  tooltip: 'Returning customer discounts as a share of returning customer gross revenue. High rates may indicate loyalty discounts cutting into repeat margins.',
1973
1973
  formulaDisplay: 'RC Discounts ÷ RC Gross Revenue × 100',
1974
1974
  formula: 'rc_discounts / rc_gross_revenue * 100',
@@ -2719,7 +2719,7 @@ export const ORDERS_MEASURES_MAP = {
2719
2719
  },
2720
2720
  [MEASURE.ORDERS_CPA]: {
2721
2721
  priority: 2,
2722
- title: 'Cost Per Order',
2722
+ title: 'CPA',
2723
2723
  shortTitle: 'CPA',
2724
2724
  description: 'The amount spent per order acquisition.',
2725
2725
  sumPrefix: '$',
@@ -2739,7 +2739,7 @@ export const ORDERS_MEASURES_MAP = {
2739
2739
  },
2740
2740
  [MEASURE.ORDERS_NEW_CUSTOMER_CPA]: {
2741
2741
  priority: 52,
2742
- title: 'New Customer Cost Per Order',
2742
+ title: 'New Customer CPA',
2743
2743
  shortTitle: 'NC CPA',
2744
2744
  description: 'The amount spent per new customer order acquisition.',
2745
2745
  sumPrefix: '$',
@@ -2760,7 +2760,7 @@ export const ORDERS_MEASURES_MAP = {
2760
2760
  [MEASURE.ORDERS_TOTAL_ROAS]: {
2761
2761
  priority: 1,
2762
2762
  title: 'ROAS (Total Sales)',
2763
- shortTitle: 'ROAS Total',
2763
+ shortTitle: 'ROAS (Total)',
2764
2764
  description: 'Total Order Revenue divided by Total Ad Spend.',
2765
2765
  sumPrefix: '',
2766
2766
  sumSuffix: 'x',
@@ -2780,7 +2780,7 @@ export const ORDERS_MEASURES_MAP = {
2780
2780
  [MEASURE.ORDERS_GROSS_ROAS]: {
2781
2781
  priority: 3,
2782
2782
  title: 'ROAS (Gross Sales)',
2783
- shortTitle: 'ROAS Gross',
2783
+ shortTitle: 'ROAS (Gross)',
2784
2784
  description: 'Gross Order Sales divided by Total Ad Spend.',
2785
2785
  sumPrefix: '',
2786
2786
  sumSuffix: 'x',
@@ -2800,7 +2800,7 @@ export const ORDERS_MEASURES_MAP = {
2800
2800
  [MEASURE.ORDERS_NET_ROAS]: {
2801
2801
  priority: 4,
2802
2802
  title: 'ROAS (Net Sales)',
2803
- shortTitle: 'ROAS Net',
2803
+ shortTitle: 'ROAS (Net)',
2804
2804
  description: 'Net Order Sales divided by Total Ad Spend.',
2805
2805
  sumPrefix: '',
2806
2806
  sumSuffix: 'x',
@@ -2840,7 +2840,7 @@ export const ORDERS_MEASURES_MAP = {
2840
2840
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_ROAS]: {
2841
2841
  priority: 12,
2842
2842
  title: 'New Customer ROAS (Gross Sales)',
2843
- shortTitle: 'NC ROAS Gross',
2843
+ shortTitle: 'NC ROAS (Gross)',
2844
2844
  description: 'New Customer Gross Order Sales divided by Ad Spend.',
2845
2845
  sumPrefix: '',
2846
2846
  sumSuffix: 'x',
@@ -2860,7 +2860,7 @@ export const ORDERS_MEASURES_MAP = {
2860
2860
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_ROAS]: {
2861
2861
  priority: 13,
2862
2862
  title: 'New Customer ROAS (Net Sales)',
2863
- shortTitle: 'NC ROAS Net',
2863
+ shortTitle: 'NC ROAS (Net)',
2864
2864
  description: 'New Customer Net Order Sales divided by Ad Spend.',
2865
2865
  sumPrefix: '',
2866
2866
  sumSuffix: 'x',
@@ -2920,7 +2920,7 @@ export const ORDERS_MEASURES_MAP = {
2920
2920
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_ROAS]: {
2921
2921
  priority: 22,
2922
2922
  title: 'Returning Customer ROAS (Gross Sales)',
2923
- shortTitle: 'RC ROAS Gross',
2923
+ shortTitle: 'RC ROAS (Gross)',
2924
2924
  description: 'Returning Customer Gross Order Sales divided by Ad Spend.',
2925
2925
  sumPrefix: '',
2926
2926
  sumSuffix: 'x',
@@ -2940,7 +2940,7 @@ export const ORDERS_MEASURES_MAP = {
2940
2940
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_ROAS]: {
2941
2941
  priority: 23,
2942
2942
  title: 'Returning Customer ROAS (Net Sales)',
2943
- shortTitle: 'RC ROAS Net',
2943
+ shortTitle: 'RC ROAS (Net)',
2944
2944
  description: 'Returning Customer Net Order Sales divided by Ad Spend.',
2945
2945
  sumPrefix: '',
2946
2946
  sumSuffix: 'x',
@@ -3162,7 +3162,7 @@ export const ORDERS_MEASURES_MAP = {
3162
3162
  [MEASURE.ORDERS_GROSS_MER]: {
3163
3163
  priority: 32,
3164
3164
  title: 'MER (Gross Sales)',
3165
- shortTitle: 'MER Gross',
3165
+ shortTitle: 'MER (Gross)',
3166
3166
  description: 'Marketing Efficiency Ratio using Gross Order Sales.',
3167
3167
  sumPrefix: '',
3168
3168
  sumSuffix: '%',
@@ -3182,7 +3182,7 @@ export const ORDERS_MEASURES_MAP = {
3182
3182
  [MEASURE.ORDERS_NET_MER]: {
3183
3183
  priority: 33,
3184
3184
  title: 'MER (Net Sales)',
3185
- shortTitle: 'MER Net',
3185
+ shortTitle: 'MER (Net)',
3186
3186
  description: 'Marketing Efficiency Ratio using Net Order Sales.',
3187
3187
  sumPrefix: '',
3188
3188
  sumSuffix: '%',
@@ -3222,7 +3222,7 @@ export const ORDERS_MEASURES_MAP = {
3222
3222
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_MER]: {
3223
3223
  priority: 37,
3224
3224
  title: 'NC MER (Gross Sales)',
3225
- shortTitle: 'NC MER Gross',
3225
+ shortTitle: 'NC MER (Gross)',
3226
3226
  description: 'Marketing Efficiency Ratio using New Customer Gross Order Sales.',
3227
3227
  sumPrefix: '',
3228
3228
  sumSuffix: '%',
@@ -3242,7 +3242,7 @@ export const ORDERS_MEASURES_MAP = {
3242
3242
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_MER]: {
3243
3243
  priority: 38,
3244
3244
  title: 'New Customer MER (Net Sales)',
3245
- shortTitle: 'NC MER Net',
3245
+ shortTitle: 'NC MER (Net)',
3246
3246
  description: 'Marketing Efficiency Ratio using New Customer Net Order Sales.',
3247
3247
  sumPrefix: '',
3248
3248
  sumSuffix: '%',
@@ -3282,7 +3282,7 @@ export const ORDERS_MEASURES_MAP = {
3282
3282
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_MER]: {
3283
3283
  priority: 42,
3284
3284
  title: 'Returning Customer MER (Gross Sales)',
3285
- shortTitle: 'RC MER Gross',
3285
+ shortTitle: 'RC MER (Gross)',
3286
3286
  description: 'Marketing Efficiency Ratio using Returning Customer Gross Order Sales.',
3287
3287
  sumPrefix: '',
3288
3288
  sumSuffix: '%',
@@ -3302,7 +3302,7 @@ export const ORDERS_MEASURES_MAP = {
3302
3302
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_MER]: {
3303
3303
  priority: 43,
3304
3304
  title: 'Returning Customer MER (Net Sales)',
3305
- shortTitle: 'RC MER Net',
3305
+ shortTitle: 'RC MER (Net)',
3306
3306
  description: 'Marketing Efficiency Ratio using Returning Customer Net Order Sales.',
3307
3307
  sumPrefix: '',
3308
3308
  sumSuffix: '%',
@@ -3524,7 +3524,7 @@ export const ORDERS_MEASURES_MAP = {
3524
3524
  [MEASURE.ORDERS_GROSS_RAAD]: {
3525
3525
  priority: 72,
3526
3526
  title: 'RAAD (Gross Sales)',
3527
- shortTitle: 'RAAD Gross',
3527
+ shortTitle: 'RAAD (Gross)',
3528
3528
  description: 'Gross Order Sales minus Ad Spend.',
3529
3529
  sumPrefix: '$',
3530
3530
  sumSuffix: '',
@@ -3544,7 +3544,7 @@ export const ORDERS_MEASURES_MAP = {
3544
3544
  [MEASURE.ORDERS_NET_RAAD]: {
3545
3545
  priority: 73,
3546
3546
  title: 'RAAD (Net Sales)',
3547
- shortTitle: 'RAAD Net',
3547
+ shortTitle: 'RAAD (Net)',
3548
3548
  description: 'Net Order Sales minus Ad Spend.',
3549
3549
  sumPrefix: '$',
3550
3550
  sumSuffix: '',
@@ -3604,7 +3604,7 @@ export const ORDERS_MEASURES_MAP = {
3604
3604
  [MEASURE.ORDERS_NET_RAAD_PERCENT]: {
3605
3605
  priority: 76,
3606
3606
  title: 'RAAD % of Net Sales',
3607
- shortTitle: 'RAAD % Net',
3607
+ shortTitle: 'RAAD % (Net)',
3608
3608
  description: 'Revenue After Ad Spend as percentage of Net Sales.',
3609
3609
  sumPrefix: '',
3610
3610
  sumSuffix: '%',
@@ -3664,7 +3664,7 @@ export const ORDERS_MEASURES_MAP = {
3664
3664
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_RAAD]: {
3665
3665
  priority: 79,
3666
3666
  title: 'New Customer RAAD (Net Sales)',
3667
- shortTitle: 'NC RAAD Net',
3667
+ shortTitle: 'NC RAAD (Net)',
3668
3668
  description: 'New Customer Net Order Sales minus Ad Spend.',
3669
3669
  sumPrefix: '$',
3670
3670
  sumSuffix: '',
@@ -3704,7 +3704,7 @@ export const ORDERS_MEASURES_MAP = {
3704
3704
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RAAD_PERCENT]: {
3705
3705
  priority: 81,
3706
3706
  title: 'New Customer RAAD % of Gross Sales',
3707
- shortTitle: 'NC RAAD % Gross',
3707
+ shortTitle: 'NC RAAD % (Gross)',
3708
3708
  description: 'NC Revenue After Ad Spend as percentage of NC Gross Sales.',
3709
3709
  sumPrefix: '',
3710
3710
  sumSuffix: '%',
@@ -3724,7 +3724,7 @@ export const ORDERS_MEASURES_MAP = {
3724
3724
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_RAAD_PERCENT]: {
3725
3725
  priority: 82,
3726
3726
  title: 'New Customer RAAD % of Net Sales',
3727
- shortTitle: 'NC RAAD % Net',
3727
+ shortTitle: 'NC RAAD % (Net)',
3728
3728
  description: 'NC Revenue After Ad Spend as percentage of NC Net Sales.',
3729
3729
  sumPrefix: '',
3730
3730
  sumSuffix: '%',
@@ -3764,7 +3764,7 @@ export const ORDERS_MEASURES_MAP = {
3764
3764
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RAAD]: {
3765
3765
  priority: 84,
3766
3766
  title: 'Returning Customer RAAD (Gross Sales)',
3767
- shortTitle: 'RC RAAD Gross',
3767
+ shortTitle: 'RC RAAD (Gross)',
3768
3768
  description: 'Returning Customer Gross Order Sales minus Ad Spend.',
3769
3769
  sumPrefix: '$',
3770
3770
  sumSuffix: '',
@@ -3784,7 +3784,7 @@ export const ORDERS_MEASURES_MAP = {
3784
3784
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_RAAD]: {
3785
3785
  priority: 85,
3786
3786
  title: 'Returning Customer RAAD (Net Sales)',
3787
- shortTitle: 'RC RAAD Net',
3787
+ shortTitle: 'RC RAAD (Net)',
3788
3788
  description: 'Returning Customer Net Order Sales minus Ad Spend.',
3789
3789
  sumPrefix: '$',
3790
3790
  sumSuffix: '',
@@ -3844,7 +3844,7 @@ export const ORDERS_MEASURES_MAP = {
3844
3844
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_RAAD_PERCENT]: {
3845
3845
  priority: 88,
3846
3846
  title: 'Returning Customer RAAD % of Net Sales',
3847
- shortTitle: 'RC RAAD % Net',
3847
+ shortTitle: 'RC RAAD % (Net)',
3848
3848
  description: 'RC Revenue After Ad Spend as percentage of RC Net Sales.',
3849
3849
  sumPrefix: '',
3850
3850
  sumSuffix: '%',