@adtrackify/at-tracking-event-types 4.57.0 → 4.58.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.
Files changed (25) hide show
  1. package/dist/cjs/types/api/measures/definitions/core-measure-definitions.js +11 -0
  2. package/dist/cjs/types/api/measures/definitions/core-measure-definitions.js.map +1 -1
  3. package/dist/cjs/types/api/measures/definitions/orders-measure-definitions.js +476 -566
  4. package/dist/cjs/types/api/measures/definitions/orders-measure-definitions.js.map +1 -1
  5. package/dist/cjs/types/api/measures/definitions/tracked-measure-definitions.js +76 -51
  6. package/dist/cjs/types/api/measures/definitions/tracked-measure-definitions.js.map +1 -1
  7. package/dist/cjs/types/api/measures/measure-categories.d.ts +8 -4
  8. package/dist/cjs/types/api/measures/measure-categories.js +8 -4
  9. package/dist/cjs/types/api/measures/measure-categories.js.map +1 -1
  10. package/dist/cjs/types/api/measures/measure-icon.d.ts +2 -1
  11. package/dist/cjs/types/api/measures/measure-icon.js +1 -0
  12. package/dist/cjs/types/api/measures/measure-icon.js.map +1 -1
  13. package/dist/esm/types/api/measures/definitions/core-measure-definitions.js +11 -0
  14. package/dist/esm/types/api/measures/definitions/core-measure-definitions.js.map +1 -1
  15. package/dist/esm/types/api/measures/definitions/orders-measure-definitions.js +477 -567
  16. package/dist/esm/types/api/measures/definitions/orders-measure-definitions.js.map +1 -1
  17. package/dist/esm/types/api/measures/definitions/tracked-measure-definitions.js +76 -51
  18. package/dist/esm/types/api/measures/definitions/tracked-measure-definitions.js.map +1 -1
  19. package/dist/esm/types/api/measures/measure-categories.d.ts +8 -4
  20. package/dist/esm/types/api/measures/measure-categories.js +8 -4
  21. package/dist/esm/types/api/measures/measure-categories.js.map +1 -1
  22. package/dist/esm/types/api/measures/measure-icon.d.ts +2 -1
  23. package/dist/esm/types/api/measures/measure-icon.js +1 -0
  24. package/dist/esm/types/api/measures/measure-icon.js.map +1 -1
  25. package/package.json +1 -1
@@ -2,7 +2,7 @@ import { MEASURE } from '../measures.js';
2
2
  import { MEASURE_CATEGORY, MEASURE_SUBCATEGORY } from '../measure-categories.js';
3
3
  import { MEASURE_ICON } from '../measure-icon.js';
4
4
  import { MeasureValueType } from '../measure-value-type.js';
5
- import { LTV_COHORT_APPLICABLE_CONTEXTS, ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS, STANDARD_APPLICABLE_CONTEXTS, } from './measure-applicable-contexts.js';
5
+ import { LTV_COHORT_APPLICABLE_CONTEXTS, STANDARD_APPLICABLE_CONTEXTS, } from './measure-applicable-contexts.js';
6
6
  export const ORDERS_MEASURES_MAP = {
7
7
  [MEASURE.ORDERS_COUNT]: {
8
8
  priority: 1,
@@ -39,7 +39,7 @@ export const ORDERS_MEASURES_MAP = {
39
39
  decimalPlaces: 0,
40
40
  useCompactNotation: false,
41
41
  applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
42
- shortTitle: 'Unique Cust.',
42
+ shortTitle: 'Unique Customers',
43
43
  tooltip: 'The count of distinct customers who placed at least one order in the period. Each customer is counted once regardless of how many orders they placed.',
44
44
  },
45
45
  [MEASURE.ORDERS_UNITS]: {
@@ -76,7 +76,7 @@ export const ORDERS_MEASURES_MAP = {
76
76
  valueType: MeasureValueType.NUMBER,
77
77
  decimalPlaces: 0,
78
78
  useCompactNotation: false,
79
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
79
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
80
80
  shortTitle: 'NC Units',
81
81
  tooltip: 'Total product units purchased by new customers. Useful for understanding acquisition basket size.',
82
82
  },
@@ -95,7 +95,7 @@ export const ORDERS_MEASURES_MAP = {
95
95
  valueType: MeasureValueType.NUMBER,
96
96
  decimalPlaces: 0,
97
97
  useCompactNotation: false,
98
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
98
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
99
99
  shortTitle: 'RC Units',
100
100
  tooltip: 'Total product units purchased by returning customers. Reflects repeat buyer basket size.',
101
101
  },
@@ -115,14 +115,14 @@ export const ORDERS_MEASURES_MAP = {
115
115
  valueType: MeasureValueType.NUMBER,
116
116
  decimalPlaces: 2,
117
117
  useCompactNotation: false,
118
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
118
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
119
119
  tooltip: 'The average number of product units included in each order. Higher values indicate larger basket sizes.',
120
120
  formulaDisplay: 'Units Sold ÷ Order Count',
121
121
  formula: 'units_sold / order_count',
122
122
  },
123
123
  [MEASURE.ORDERS_NEW_CUSTOMER_UNITS_PER_ORDER]: {
124
124
  priority: 12,
125
- title: 'NC Units Per Order',
125
+ title: 'New Customer Units Per Order',
126
126
  description: 'Average units per order for new customers.',
127
127
  sumPrefix: '',
128
128
  sumSuffix: '',
@@ -135,7 +135,7 @@ export const ORDERS_MEASURES_MAP = {
135
135
  valueType: MeasureValueType.NUMBER,
136
136
  decimalPlaces: 2,
137
137
  useCompactNotation: false,
138
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
138
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
139
139
  shortTitle: 'NC Units/Order',
140
140
  tooltip: 'Average number of units per order for new customers. Compare to returning customers to gauge first-time buyer behavior.',
141
141
  formulaDisplay: 'NC Units Sold ÷ NC Order Count',
@@ -143,7 +143,7 @@ export const ORDERS_MEASURES_MAP = {
143
143
  },
144
144
  [MEASURE.ORDERS_RETURNING_CUSTOMER_UNITS_PER_ORDER]: {
145
145
  priority: 22,
146
- title: 'RC Units Per Order',
146
+ title: 'Returning Customer Units Per Order',
147
147
  description: 'Average units per order for returning customers.',
148
148
  sumPrefix: '',
149
149
  sumSuffix: '',
@@ -156,7 +156,7 @@ export const ORDERS_MEASURES_MAP = {
156
156
  valueType: MeasureValueType.NUMBER,
157
157
  decimalPlaces: 2,
158
158
  useCompactNotation: false,
159
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
159
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
160
160
  shortTitle: 'RC Units/Order',
161
161
  tooltip: 'Average number of units per order for returning customers. Higher values than new customers suggest loyalty-driven upsell.',
162
162
  formulaDisplay: 'RC Units Sold ÷ RC Order Count',
@@ -223,7 +223,7 @@ export const ORDERS_MEASURES_MAP = {
223
223
  },
224
224
  [MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_REVENUE]: {
225
225
  priority: 11,
226
- title: 'NC Total Revenue',
226
+ title: 'New Customer Total Revenue',
227
227
  description: 'Total revenue from new customers.',
228
228
  sumPrefix: '$',
229
229
  sumSuffix: '',
@@ -242,7 +242,7 @@ export const ORDERS_MEASURES_MAP = {
242
242
  },
243
243
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_REVENUE]: {
244
244
  priority: 12,
245
- title: 'NC Gross Revenue',
245
+ title: 'New Customer Gross Revenue',
246
246
  description: 'Gross revenue from new customers.',
247
247
  sumPrefix: '$',
248
248
  sumSuffix: '',
@@ -261,7 +261,7 @@ export const ORDERS_MEASURES_MAP = {
261
261
  },
262
262
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_REVENUE]: {
263
263
  priority: 13,
264
- title: 'NC Net Revenue',
264
+ title: 'New Customer Net Revenue',
265
265
  description: 'Net revenue from new customers.',
266
266
  sumPrefix: '$',
267
267
  sumSuffix: '',
@@ -280,7 +280,7 @@ export const ORDERS_MEASURES_MAP = {
280
280
  },
281
281
  [MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_REVENUE]: {
282
282
  priority: 21,
283
- title: 'RC Total Revenue',
283
+ title: 'Returning Customer Total Revenue',
284
284
  description: 'Total revenue from returning customers.',
285
285
  sumPrefix: '$',
286
286
  sumSuffix: '',
@@ -299,7 +299,7 @@ export const ORDERS_MEASURES_MAP = {
299
299
  },
300
300
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_REVENUE]: {
301
301
  priority: 22,
302
- title: 'RC Gross Revenue',
302
+ title: 'Returning Customer Gross Revenue',
303
303
  description: 'Gross revenue from returning customers.',
304
304
  sumPrefix: '$',
305
305
  sumSuffix: '',
@@ -318,7 +318,7 @@ export const ORDERS_MEASURES_MAP = {
318
318
  },
319
319
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_REVENUE]: {
320
320
  priority: 23,
321
- title: 'RC Net Revenue',
321
+ title: 'Returning Customer Net Revenue',
322
322
  description: 'Net revenue from returning customers.',
323
323
  sumPrefix: '$',
324
324
  sumSuffix: '',
@@ -338,6 +338,7 @@ export const ORDERS_MEASURES_MAP = {
338
338
  [MEASURE.ORDERS_TOTAL_AOV]: {
339
339
  priority: 1,
340
340
  title: 'Total AOV',
341
+ shortTitle: 'Total AOV',
341
342
  description: 'Average order value based on total revenue.',
342
343
  sumPrefix: '$',
343
344
  sumSuffix: '',
@@ -358,6 +359,7 @@ export const ORDERS_MEASURES_MAP = {
358
359
  [MEASURE.ORDERS_GROSS_AOV]: {
359
360
  priority: 2,
360
361
  title: 'Gross AOV',
362
+ shortTitle: 'Gross AOV',
361
363
  description: 'Average order value based on gross revenue.',
362
364
  sumPrefix: '$',
363
365
  sumSuffix: '',
@@ -378,6 +380,7 @@ export const ORDERS_MEASURES_MAP = {
378
380
  [MEASURE.ORDERS_NET_AOV]: {
379
381
  priority: 3,
380
382
  title: 'Net AOV',
383
+ shortTitle: 'Net AOV',
381
384
  description: 'Average order value based on net revenue.',
382
385
  sumPrefix: '$',
383
386
  sumSuffix: '',
@@ -397,7 +400,7 @@ export const ORDERS_MEASURES_MAP = {
397
400
  },
398
401
  [MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_AOV]: {
399
402
  priority: 11,
400
- title: 'NC Total AOV',
403
+ title: 'New Customer Total AOV',
401
404
  description: 'Average order value for new customers (total revenue).',
402
405
  sumPrefix: '$',
403
406
  sumSuffix: '',
@@ -418,7 +421,7 @@ export const ORDERS_MEASURES_MAP = {
418
421
  },
419
422
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_AOV]: {
420
423
  priority: 12,
421
- title: 'NC Gross AOV',
424
+ title: 'New Customer Gross AOV',
422
425
  description: 'Average order value for new customers (gross revenue).',
423
426
  sumPrefix: '$',
424
427
  sumSuffix: '',
@@ -439,7 +442,7 @@ export const ORDERS_MEASURES_MAP = {
439
442
  },
440
443
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_AOV]: {
441
444
  priority: 13,
442
- title: 'NC Net AOV',
445
+ title: 'New Customer Net AOV',
443
446
  description: 'Average order value for new customers (net revenue).',
444
447
  sumPrefix: '$',
445
448
  sumSuffix: '',
@@ -460,7 +463,7 @@ export const ORDERS_MEASURES_MAP = {
460
463
  },
461
464
  [MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_AOV]: {
462
465
  priority: 21,
463
- title: 'RC Total AOV',
466
+ title: 'Returning Customer Total AOV',
464
467
  description: 'Average order value for returning customers (total revenue).',
465
468
  sumPrefix: '$',
466
469
  sumSuffix: '',
@@ -481,7 +484,7 @@ export const ORDERS_MEASURES_MAP = {
481
484
  },
482
485
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_AOV]: {
483
486
  priority: 22,
484
- title: 'RC Gross AOV',
487
+ title: 'Returning Customer Gross AOV',
485
488
  description: 'Average order value for returning customers (gross revenue).',
486
489
  sumPrefix: '$',
487
490
  sumSuffix: '',
@@ -502,7 +505,7 @@ export const ORDERS_MEASURES_MAP = {
502
505
  },
503
506
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_AOV]: {
504
507
  priority: 23,
505
- title: 'RC Net AOV',
508
+ title: 'Returning Customer Net AOV',
506
509
  description: 'Average order value for returning customers (net revenue).',
507
510
  sumPrefix: '$',
508
511
  sumSuffix: '',
@@ -524,6 +527,7 @@ export const ORDERS_MEASURES_MAP = {
524
527
  [MEASURE.ORDERS_COGS]: {
525
528
  priority: 1,
526
529
  title: 'COGS',
530
+ shortTitle: 'COGS',
527
531
  description: 'Cost of goods sold.',
528
532
  sumPrefix: '$',
529
533
  sumSuffix: '',
@@ -541,7 +545,7 @@ export const ORDERS_MEASURES_MAP = {
541
545
  },
542
546
  [MEASURE.ORDERS_NEW_CUSTOMER_COGS]: {
543
547
  priority: 11,
544
- title: 'NC COGS',
548
+ title: 'New Customer COGS',
545
549
  shortTitle: 'NC COGS',
546
550
  description: 'COGS for new customer orders.',
547
551
  sumPrefix: '$',
@@ -555,12 +559,12 @@ export const ORDERS_MEASURES_MAP = {
555
559
  valueType: MeasureValueType.CURRENCY,
556
560
  decimalPlaces: 2,
557
561
  useCompactNotation: true,
558
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
562
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
559
563
  tooltip: 'Cost of goods sold for orders placed by new customers. Used to calculate new customer gross margin.',
560
564
  },
561
565
  [MEASURE.ORDERS_RETURNING_CUSTOMER_COGS]: {
562
566
  priority: 21,
563
- title: 'RC COGS',
567
+ title: 'Returning Customer COGS',
564
568
  shortTitle: 'RC COGS',
565
569
  description: 'COGS for returning customer orders.',
566
570
  sumPrefix: '$',
@@ -574,12 +578,13 @@ export const ORDERS_MEASURES_MAP = {
574
578
  valueType: MeasureValueType.CURRENCY,
575
579
  decimalPlaces: 2,
576
580
  useCompactNotation: true,
577
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
581
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
578
582
  tooltip: 'Cost of goods sold for orders placed by returning customers. Used to calculate repeat-buyer gross margin.',
579
583
  },
580
584
  [MEASURE.ORDERS_COGS_PER_ORDER]: {
581
585
  priority: 3,
582
586
  title: 'COGS Per Order',
587
+ shortTitle: 'COGS/Order',
583
588
  description: 'Average COGS per order.',
584
589
  sumPrefix: '$',
585
590
  sumSuffix: '',
@@ -592,14 +597,14 @@ export const ORDERS_MEASURES_MAP = {
592
597
  valueType: MeasureValueType.CURRENCY,
593
598
  decimalPlaces: 2,
594
599
  useCompactNotation: false,
595
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
600
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
596
601
  tooltip: 'Average product cost per order. Useful for understanding the cost structure of a typical order.',
597
602
  formulaDisplay: 'COGS ÷ Order Count',
598
603
  formula: 'cogs / order_count',
599
604
  },
600
605
  [MEASURE.ORDERS_NEW_CUSTOMER_COGS_PER_ORDER]: {
601
606
  priority: 13,
602
- title: 'NC COGS Per Order',
607
+ title: 'New Customer COGS Per Order',
603
608
  description: 'Average COGS per order for new customers.',
604
609
  sumPrefix: '$',
605
610
  sumSuffix: '',
@@ -612,7 +617,7 @@ export const ORDERS_MEASURES_MAP = {
612
617
  valueType: MeasureValueType.CURRENCY,
613
618
  decimalPlaces: 2,
614
619
  useCompactNotation: false,
615
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
620
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
616
621
  shortTitle: 'NC COGS/Order',
617
622
  tooltip: 'Average product cost per new customer order. Compare to returning customers to assess cost mix differences.',
618
623
  formulaDisplay: 'NC COGS ÷ NC Order Count',
@@ -620,7 +625,7 @@ export const ORDERS_MEASURES_MAP = {
620
625
  },
621
626
  [MEASURE.ORDERS_RETURNING_CUSTOMER_COGS_PER_ORDER]: {
622
627
  priority: 23,
623
- title: 'RC COGS Per Order',
628
+ title: 'Returning Customer COGS Per Order',
624
629
  description: 'Average COGS per order for returning customers.',
625
630
  sumPrefix: '$',
626
631
  sumSuffix: '',
@@ -633,7 +638,7 @@ export const ORDERS_MEASURES_MAP = {
633
638
  valueType: MeasureValueType.CURRENCY,
634
639
  decimalPlaces: 2,
635
640
  useCompactNotation: false,
636
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
641
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
637
642
  shortTitle: 'RC COGS/Order',
638
643
  tooltip: 'Average product cost per returning customer order.',
639
644
  formulaDisplay: 'RC COGS ÷ RC Order Count',
@@ -660,6 +665,7 @@ export const ORDERS_MEASURES_MAP = {
660
665
  [MEASURE.ORDERS_REFUND_COUNT]: {
661
666
  priority: 2,
662
667
  title: 'Refund Count',
668
+ shortTitle: 'Refund Count',
663
669
  description: 'Number of refunded orders.',
664
670
  sumPrefix: '',
665
671
  sumSuffix: '',
@@ -672,12 +678,13 @@ export const ORDERS_MEASURES_MAP = {
672
678
  valueType: MeasureValueType.NUMBER,
673
679
  decimalPlaces: 0,
674
680
  useCompactNotation: false,
675
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
681
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
676
682
  tooltip: 'The number of orders that had a refund issued. Use with Refund Rate to understand the scale of returns.',
677
683
  },
678
684
  [MEASURE.ORDERS_REFUND_PERCENT]: {
679
685
  priority: 3,
680
686
  title: 'Refund %',
687
+ shortTitle: 'Refund %',
681
688
  description: 'Percentage of orders refunded.',
682
689
  sumPrefix: '',
683
690
  sumSuffix: '%',
@@ -690,7 +697,7 @@ export const ORDERS_MEASURES_MAP = {
690
697
  valueType: MeasureValueType.PERCENTAGE,
691
698
  decimalPlaces: 2,
692
699
  useCompactNotation: false,
693
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
700
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
694
701
  tooltip: 'The share of orders that resulted in a refund. Elevated refund rates can indicate product quality, sizing, or expectation issues.',
695
702
  formulaDisplay: 'Refund Count ÷ Order Count × 100',
696
703
  formula: 'refund_count / order_count * 100',
@@ -710,7 +717,7 @@ export const ORDERS_MEASURES_MAP = {
710
717
  valueType: MeasureValueType.CURRENCY,
711
718
  decimalPlaces: 2,
712
719
  useCompactNotation: false,
713
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
720
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
714
721
  shortTitle: 'Refund/Order',
715
722
  tooltip: 'Average refund dollar amount per order placed. Useful for modeling the true realized revenue per order.',
716
723
  formulaDisplay: 'Total Refunds ÷ Order Count',
@@ -731,7 +738,7 @@ export const ORDERS_MEASURES_MAP = {
731
738
  valueType: MeasureValueType.CURRENCY,
732
739
  decimalPlaces: 2,
733
740
  useCompactNotation: true,
734
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
741
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
735
742
  shortTitle: 'NC Refunds',
736
743
  tooltip: 'The total dollar amount refunded to new customers. High values may indicate product/expectation issues with first-time buyers.',
737
744
  },
@@ -750,13 +757,13 @@ export const ORDERS_MEASURES_MAP = {
750
757
  valueType: MeasureValueType.NUMBER,
751
758
  decimalPlaces: 0,
752
759
  useCompactNotation: false,
753
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
760
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
754
761
  shortTitle: 'NC Refund Ct',
755
762
  tooltip: 'The number of new customer orders that had a refund issued.',
756
763
  },
757
764
  [MEASURE.ORDERS_NEW_CUSTOMER_REFUND_PERCENT]: {
758
765
  priority: 7,
759
- title: 'NC Refund %',
766
+ title: 'New Customer Refund %',
760
767
  shortTitle: 'NC Refund %',
761
768
  description: 'Percentage of new customer orders refunded.',
762
769
  sumPrefix: '',
@@ -770,7 +777,7 @@ export const ORDERS_MEASURES_MAP = {
770
777
  valueType: MeasureValueType.PERCENTAGE,
771
778
  decimalPlaces: 2,
772
779
  useCompactNotation: false,
773
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
780
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
774
781
  tooltip: 'The share of new customer orders that resulted in a refund.',
775
782
  formulaDisplay: 'NC Refund Count ÷ NC Order Count × 100',
776
783
  formula: 'nc_refund_count / nc_order_count * 100',
@@ -790,7 +797,7 @@ export const ORDERS_MEASURES_MAP = {
790
797
  valueType: MeasureValueType.CURRENCY,
791
798
  decimalPlaces: 2,
792
799
  useCompactNotation: false,
793
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
800
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
794
801
  shortTitle: 'NC Ref/Ord',
795
802
  tooltip: 'Average refund dollar amount per new customer order placed.',
796
803
  formulaDisplay: 'NC Refunds ÷ NC Order Count',
@@ -811,7 +818,7 @@ export const ORDERS_MEASURES_MAP = {
811
818
  valueType: MeasureValueType.CURRENCY,
812
819
  decimalPlaces: 2,
813
820
  useCompactNotation: true,
814
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
821
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
815
822
  shortTitle: 'RC Refunds',
816
823
  tooltip: 'The total dollar amount refunded to returning customers. High values may indicate quality issues affecting repeat buyers.',
817
824
  },
@@ -830,13 +837,13 @@ export const ORDERS_MEASURES_MAP = {
830
837
  valueType: MeasureValueType.NUMBER,
831
838
  decimalPlaces: 0,
832
839
  useCompactNotation: false,
833
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
840
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
834
841
  shortTitle: 'RC Refund Ct',
835
842
  tooltip: 'The number of returning customer orders that had a refund issued.',
836
843
  },
837
844
  [MEASURE.ORDERS_RETURNING_CUSTOMER_REFUND_PERCENT]: {
838
845
  priority: 11,
839
- title: 'RC Refund %',
846
+ title: 'Returning Customer Refund %',
840
847
  shortTitle: 'RC Refund %',
841
848
  description: 'Percentage of returning customer orders refunded.',
842
849
  sumPrefix: '',
@@ -850,7 +857,7 @@ export const ORDERS_MEASURES_MAP = {
850
857
  valueType: MeasureValueType.PERCENTAGE,
851
858
  decimalPlaces: 2,
852
859
  useCompactNotation: false,
853
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
860
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
854
861
  tooltip: 'The share of returning customer orders that resulted in a refund.',
855
862
  formulaDisplay: 'RC Refund Count ÷ RC Order Count × 100',
856
863
  formula: 'rc_refund_count / rc_order_count * 100',
@@ -870,7 +877,7 @@ export const ORDERS_MEASURES_MAP = {
870
877
  valueType: MeasureValueType.CURRENCY,
871
878
  decimalPlaces: 2,
872
879
  useCompactNotation: false,
873
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
880
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
874
881
  shortTitle: 'RC Ref/Ord',
875
882
  tooltip: 'Average refund dollar amount per returning customer order placed.',
876
883
  formulaDisplay: 'RC Refunds ÷ RC Order Count',
@@ -909,7 +916,7 @@ export const ORDERS_MEASURES_MAP = {
909
916
  valueType: MeasureValueType.PERCENTAGE,
910
917
  decimalPlaces: 2,
911
918
  useCompactNotation: false,
912
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
919
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
913
920
  tooltip: 'Discounts as a share of gross revenue. A high discount rate erodes margin and may indicate over-reliance on promotions.',
914
921
  formulaDisplay: 'Discounts ÷ Gross Revenue × 100',
915
922
  formula: 'discounts / gross_revenue * 100',
@@ -929,7 +936,7 @@ export const ORDERS_MEASURES_MAP = {
929
936
  valueType: MeasureValueType.CURRENCY,
930
937
  decimalPlaces: 2,
931
938
  useCompactNotation: false,
932
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
939
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
933
940
  shortTitle: 'Discount/Order',
934
941
  tooltip: 'Average discount dollar value applied per order. Useful for understanding how much revenue is being given away per transaction.',
935
942
  formulaDisplay: 'Total Discounts ÷ Order Count',
@@ -937,7 +944,7 @@ export const ORDERS_MEASURES_MAP = {
937
944
  },
938
945
  [MEASURE.ORDERS_NEW_CUSTOMER_DISCOUNTS]: {
939
946
  priority: 15,
940
- title: 'NC Discount Amount',
947
+ title: 'New Customer Discount Amount',
941
948
  shortTitle: 'NC Discounts',
942
949
  description: 'Total discount amount for new customers.',
943
950
  sumPrefix: '$',
@@ -951,12 +958,12 @@ export const ORDERS_MEASURES_MAP = {
951
958
  valueType: MeasureValueType.CURRENCY,
952
959
  decimalPlaces: 2,
953
960
  useCompactNotation: true,
954
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
961
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
955
962
  tooltip: 'Total dollar value of discounts applied to new customer orders.',
956
963
  },
957
964
  [MEASURE.ORDERS_NEW_CUSTOMER_DISCOUNT_PERCENT]: {
958
965
  priority: 16,
959
- title: 'NC Discount %',
966
+ title: 'New Customer Discount %',
960
967
  shortTitle: 'NC Discount %',
961
968
  description: 'Discounts as percentage of new customer gross revenue.',
962
969
  sumPrefix: '',
@@ -970,14 +977,14 @@ export const ORDERS_MEASURES_MAP = {
970
977
  valueType: MeasureValueType.PERCENTAGE,
971
978
  decimalPlaces: 2,
972
979
  useCompactNotation: false,
973
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
980
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
974
981
  tooltip: 'New customer discounts as a percentage of new customer gross revenue.',
975
982
  formulaDisplay: 'NC Discounts ÷ NC Gross Revenue × 100',
976
983
  formula: 'nc_discounts / nc_gross_revenue * 100',
977
984
  },
978
985
  [MEASURE.ORDERS_NEW_CUSTOMER_DISCOUNT_PER_ORDER]: {
979
986
  priority: 17,
980
- title: 'NC Discount Per Order',
987
+ title: 'New Customer Discount Per Order',
981
988
  shortTitle: 'NC Discount/Order',
982
989
  description: 'Average discount per new customer order.',
983
990
  sumPrefix: '$',
@@ -991,14 +998,14 @@ export const ORDERS_MEASURES_MAP = {
991
998
  valueType: MeasureValueType.CURRENCY,
992
999
  decimalPlaces: 2,
993
1000
  useCompactNotation: false,
994
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1001
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
995
1002
  tooltip: 'Average discount dollar value applied per new customer order.',
996
1003
  formulaDisplay: 'NC Discounts ÷ NC Order Count',
997
1004
  formula: 'nc_discounts / nc_order_count',
998
1005
  },
999
1006
  [MEASURE.ORDERS_RETURNING_CUSTOMER_DISCOUNTS]: {
1000
1007
  priority: 18,
1001
- title: 'RC Discount Amount',
1008
+ title: 'Returning Customer Discount Amount',
1002
1009
  shortTitle: 'RC Discounts',
1003
1010
  description: 'Total discount amount for returning customers.',
1004
1011
  sumPrefix: '$',
@@ -1012,12 +1019,12 @@ export const ORDERS_MEASURES_MAP = {
1012
1019
  valueType: MeasureValueType.CURRENCY,
1013
1020
  decimalPlaces: 2,
1014
1021
  useCompactNotation: true,
1015
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1022
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1016
1023
  tooltip: 'Total dollar value of discounts applied to returning customer orders.',
1017
1024
  },
1018
1025
  [MEASURE.ORDERS_RETURNING_CUSTOMER_DISCOUNT_PERCENT]: {
1019
1026
  priority: 19,
1020
- title: 'RC Discount %',
1027
+ title: 'Returning Customer Discount %',
1021
1028
  shortTitle: 'RC Discount %',
1022
1029
  description: 'Discounts as percentage of returning customer gross revenue.',
1023
1030
  sumPrefix: '',
@@ -1031,14 +1038,14 @@ export const ORDERS_MEASURES_MAP = {
1031
1038
  valueType: MeasureValueType.PERCENTAGE,
1032
1039
  decimalPlaces: 2,
1033
1040
  useCompactNotation: false,
1034
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1041
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1035
1042
  tooltip: 'Returning customer discounts as a percentage of returning customer gross revenue.',
1036
1043
  formulaDisplay: 'RC Discounts ÷ RC Gross Revenue × 100',
1037
1044
  formula: 'rc_discounts / rc_gross_revenue * 100',
1038
1045
  },
1039
1046
  [MEASURE.ORDERS_RETURNING_CUSTOMER_DISCOUNT_PER_ORDER]: {
1040
1047
  priority: 20,
1041
- title: 'RC Discount Per Order',
1048
+ title: 'Returning Customer Discount Per Order',
1042
1049
  shortTitle: 'RC Discount/Order',
1043
1050
  description: 'Average discount per returning customer order.',
1044
1051
  sumPrefix: '$',
@@ -1052,7 +1059,7 @@ export const ORDERS_MEASURES_MAP = {
1052
1059
  valueType: MeasureValueType.CURRENCY,
1053
1060
  decimalPlaces: 2,
1054
1061
  useCompactNotation: false,
1055
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1062
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1056
1063
  tooltip: 'Average discount dollar value applied per returning customer order.',
1057
1064
  formulaDisplay: 'RC Discounts ÷ RC Order Count',
1058
1065
  formula: 'rc_discounts / rc_order_count',
@@ -1091,7 +1098,7 @@ export const ORDERS_MEASURES_MAP = {
1091
1098
  valueType: MeasureValueType.PERCENTAGE,
1092
1099
  decimalPlaces: 2,
1093
1100
  useCompactNotation: false,
1094
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1101
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1095
1102
  tooltip: 'Shipping revenue as a share of total revenue. A declining rate may indicate free shipping promotions affecting margins.',
1096
1103
  formulaDisplay: 'Shipping ÷ Total Revenue × 100',
1097
1104
  formula: 'shipping / total_revenue * 100',
@@ -1111,7 +1118,7 @@ export const ORDERS_MEASURES_MAP = {
1111
1118
  valueType: MeasureValueType.CURRENCY,
1112
1119
  decimalPlaces: 2,
1113
1120
  useCompactNotation: false,
1114
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1121
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1115
1122
  shortTitle: 'Shipping/Order',
1116
1123
  tooltip: 'Average shipping fee collected per order.',
1117
1124
  formulaDisplay: 'Total Shipping ÷ Order Count',
@@ -1119,7 +1126,7 @@ export const ORDERS_MEASURES_MAP = {
1119
1126
  },
1120
1127
  [MEASURE.ORDERS_NEW_CUSTOMER_SHIPPING]: {
1121
1128
  priority: 34,
1122
- title: 'NC Shipping Revenue',
1129
+ title: 'New Customer Shipping Revenue',
1123
1130
  shortTitle: 'NC Shipping',
1124
1131
  description: 'Total shipping revenue from new customers.',
1125
1132
  sumPrefix: '$',
@@ -1133,12 +1140,12 @@ export const ORDERS_MEASURES_MAP = {
1133
1140
  valueType: MeasureValueType.CURRENCY,
1134
1141
  decimalPlaces: 2,
1135
1142
  useCompactNotation: true,
1136
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1143
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1137
1144
  tooltip: 'Total shipping fees collected from new customer orders.',
1138
1145
  },
1139
1146
  [MEASURE.ORDERS_NEW_CUSTOMER_SHIPPING_PERCENT]: {
1140
1147
  priority: 35,
1141
- title: 'NC Shipping %',
1148
+ title: 'New Customer Shipping %',
1142
1149
  shortTitle: 'NC Ship. %',
1143
1150
  description: 'Shipping as percentage of new customer total revenue.',
1144
1151
  sumPrefix: '',
@@ -1152,14 +1159,14 @@ export const ORDERS_MEASURES_MAP = {
1152
1159
  valueType: MeasureValueType.PERCENTAGE,
1153
1160
  decimalPlaces: 2,
1154
1161
  useCompactNotation: false,
1155
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1162
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1156
1163
  tooltip: 'New customer shipping revenue as a percentage of new customer total revenue.',
1157
1164
  formulaDisplay: 'NC Shipping ÷ NC Total Revenue × 100',
1158
1165
  formula: 'nc_shipping / nc_total_revenue * 100',
1159
1166
  },
1160
1167
  [MEASURE.ORDERS_NEW_CUSTOMER_SHIPPING_PER_ORDER]: {
1161
1168
  priority: 36,
1162
- title: 'NC Shipping Per Order',
1169
+ title: 'New Customer Shipping Per Order',
1163
1170
  shortTitle: 'NC Shipping/Order',
1164
1171
  description: 'Average shipping per new customer order.',
1165
1172
  sumPrefix: '$',
@@ -1173,14 +1180,14 @@ export const ORDERS_MEASURES_MAP = {
1173
1180
  valueType: MeasureValueType.CURRENCY,
1174
1181
  decimalPlaces: 2,
1175
1182
  useCompactNotation: false,
1176
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1183
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1177
1184
  tooltip: 'Average shipping fee collected per new customer order.',
1178
1185
  formulaDisplay: 'NC Shipping ÷ NC Order Count',
1179
1186
  formula: 'nc_shipping / nc_order_count',
1180
1187
  },
1181
1188
  [MEASURE.ORDERS_RETURNING_CUSTOMER_SHIPPING]: {
1182
1189
  priority: 37,
1183
- title: 'RC Shipping Revenue',
1190
+ title: 'Returning Customer Shipping Revenue',
1184
1191
  shortTitle: 'RC Shipping',
1185
1192
  description: 'Total shipping revenue from returning customers.',
1186
1193
  sumPrefix: '$',
@@ -1194,12 +1201,12 @@ export const ORDERS_MEASURES_MAP = {
1194
1201
  valueType: MeasureValueType.CURRENCY,
1195
1202
  decimalPlaces: 2,
1196
1203
  useCompactNotation: true,
1197
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1204
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1198
1205
  tooltip: 'Total shipping fees collected from returning customer orders.',
1199
1206
  },
1200
1207
  [MEASURE.ORDERS_RETURNING_CUSTOMER_SHIPPING_PERCENT]: {
1201
1208
  priority: 38,
1202
- title: 'RC Shipping %',
1209
+ title: 'Returning Customer Shipping %',
1203
1210
  shortTitle: 'RC Ship. %',
1204
1211
  description: 'Shipping as percentage of returning customer total revenue.',
1205
1212
  sumPrefix: '',
@@ -1213,14 +1220,14 @@ export const ORDERS_MEASURES_MAP = {
1213
1220
  valueType: MeasureValueType.PERCENTAGE,
1214
1221
  decimalPlaces: 2,
1215
1222
  useCompactNotation: false,
1216
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1223
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1217
1224
  tooltip: 'Returning customer shipping revenue as a percentage of returning customer total revenue.',
1218
1225
  formulaDisplay: 'RC Shipping ÷ RC Total Revenue × 100',
1219
1226
  formula: 'rc_shipping / rc_total_revenue * 100',
1220
1227
  },
1221
1228
  [MEASURE.ORDERS_RETURNING_CUSTOMER_SHIPPING_PER_ORDER]: {
1222
1229
  priority: 39,
1223
- title: 'RC Shipping Per Order',
1230
+ title: 'Returning Customer Shipping Per Order',
1224
1231
  shortTitle: 'RC Shipping/Order',
1225
1232
  description: 'Average shipping per returning customer order.',
1226
1233
  sumPrefix: '$',
@@ -1234,7 +1241,7 @@ export const ORDERS_MEASURES_MAP = {
1234
1241
  valueType: MeasureValueType.CURRENCY,
1235
1242
  decimalPlaces: 2,
1236
1243
  useCompactNotation: false,
1237
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1244
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1238
1245
  tooltip: 'Average shipping fee collected per returning customer order.',
1239
1246
  formulaDisplay: 'RC Shipping ÷ RC Order Count',
1240
1247
  formula: 'rc_shipping / rc_order_count',
@@ -1273,7 +1280,7 @@ export const ORDERS_MEASURES_MAP = {
1273
1280
  valueType: MeasureValueType.PERCENTAGE,
1274
1281
  decimalPlaces: 2,
1275
1282
  useCompactNotation: false,
1276
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1283
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1277
1284
  tooltip: 'Tax collected as a share of total revenue. Useful for estimating effective tax burden across markets.',
1278
1285
  formulaDisplay: 'Tax ÷ Total Revenue × 100',
1279
1286
  formula: 'tax / total_revenue * 100',
@@ -1293,14 +1300,14 @@ export const ORDERS_MEASURES_MAP = {
1293
1300
  valueType: MeasureValueType.CURRENCY,
1294
1301
  decimalPlaces: 2,
1295
1302
  useCompactNotation: false,
1296
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1303
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1297
1304
  tooltip: 'Average tax amount collected per order.',
1298
1305
  formulaDisplay: 'Total Tax ÷ Order Count',
1299
1306
  formula: 'total_tax / order_count',
1300
1307
  },
1301
1308
  [MEASURE.ORDERS_NEW_CUSTOMER_TAX]: {
1302
1309
  priority: 44,
1303
- title: 'NC Tax Collected',
1310
+ title: 'New Customer Tax Collected',
1304
1311
  shortTitle: 'NC Tax',
1305
1312
  description: 'Total tax collected from new customers.',
1306
1313
  sumPrefix: '$',
@@ -1314,12 +1321,12 @@ export const ORDERS_MEASURES_MAP = {
1314
1321
  valueType: MeasureValueType.CURRENCY,
1315
1322
  decimalPlaces: 2,
1316
1323
  useCompactNotation: true,
1317
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1324
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1318
1325
  tooltip: 'Total tax collected from new customer orders.',
1319
1326
  },
1320
1327
  [MEASURE.ORDERS_NEW_CUSTOMER_TAX_PERCENT]: {
1321
1328
  priority: 45,
1322
- title: 'NC Tax %',
1329
+ title: 'New Customer Tax %',
1323
1330
  shortTitle: 'NC Tax %',
1324
1331
  description: 'Tax as percentage of new customer total revenue.',
1325
1332
  sumPrefix: '',
@@ -1333,14 +1340,14 @@ export const ORDERS_MEASURES_MAP = {
1333
1340
  valueType: MeasureValueType.PERCENTAGE,
1334
1341
  decimalPlaces: 2,
1335
1342
  useCompactNotation: false,
1336
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1343
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1337
1344
  tooltip: 'New customer tax as a percentage of new customer total revenue.',
1338
1345
  formulaDisplay: 'NC Tax ÷ NC Total Revenue × 100',
1339
1346
  formula: 'nc_tax / nc_total_revenue * 100',
1340
1347
  },
1341
1348
  [MEASURE.ORDERS_NEW_CUSTOMER_TAX_PER_ORDER]: {
1342
1349
  priority: 46,
1343
- title: 'NC Tax Per Order',
1350
+ title: 'New Customer Tax Per Order',
1344
1351
  shortTitle: 'NC Tax/Order',
1345
1352
  description: 'Average tax per new customer order.',
1346
1353
  sumPrefix: '$',
@@ -1354,14 +1361,14 @@ export const ORDERS_MEASURES_MAP = {
1354
1361
  valueType: MeasureValueType.CURRENCY,
1355
1362
  decimalPlaces: 2,
1356
1363
  useCompactNotation: false,
1357
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1364
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1358
1365
  tooltip: 'Average tax amount collected per new customer order.',
1359
1366
  formulaDisplay: 'NC Tax ÷ NC Order Count',
1360
1367
  formula: 'nc_tax / nc_order_count',
1361
1368
  },
1362
1369
  [MEASURE.ORDERS_RETURNING_CUSTOMER_TAX]: {
1363
1370
  priority: 47,
1364
- title: 'RC Tax Collected',
1371
+ title: 'Returning Customer Tax Collected',
1365
1372
  shortTitle: 'RC Tax',
1366
1373
  description: 'Total tax collected from returning customers.',
1367
1374
  sumPrefix: '$',
@@ -1375,12 +1382,12 @@ export const ORDERS_MEASURES_MAP = {
1375
1382
  valueType: MeasureValueType.CURRENCY,
1376
1383
  decimalPlaces: 2,
1377
1384
  useCompactNotation: true,
1378
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1385
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1379
1386
  tooltip: 'Total tax collected from returning customer orders.',
1380
1387
  },
1381
1388
  [MEASURE.ORDERS_RETURNING_CUSTOMER_TAX_PERCENT]: {
1382
1389
  priority: 48,
1383
- title: 'RC Tax %',
1390
+ title: 'Returning Customer Tax %',
1384
1391
  shortTitle: 'RC Tax %',
1385
1392
  description: 'Tax as percentage of returning customer total revenue.',
1386
1393
  sumPrefix: '',
@@ -1394,14 +1401,14 @@ export const ORDERS_MEASURES_MAP = {
1394
1401
  valueType: MeasureValueType.PERCENTAGE,
1395
1402
  decimalPlaces: 2,
1396
1403
  useCompactNotation: false,
1397
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1404
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1398
1405
  tooltip: 'Returning customer tax as a percentage of returning customer total revenue.',
1399
1406
  formulaDisplay: 'RC Tax ÷ RC Total Revenue × 100',
1400
1407
  formula: 'rc_tax / rc_total_revenue * 100',
1401
1408
  },
1402
1409
  [MEASURE.ORDERS_RETURNING_CUSTOMER_TAX_PER_ORDER]: {
1403
1410
  priority: 49,
1404
- title: 'RC Tax Per Order',
1411
+ title: 'Returning Customer Tax Per Order',
1405
1412
  shortTitle: 'RC Tax/Order',
1406
1413
  description: 'Average tax per returning customer order.',
1407
1414
  sumPrefix: '$',
@@ -1415,7 +1422,7 @@ export const ORDERS_MEASURES_MAP = {
1415
1422
  valueType: MeasureValueType.CURRENCY,
1416
1423
  decimalPlaces: 2,
1417
1424
  useCompactNotation: false,
1418
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1425
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1419
1426
  tooltip: 'Average tax amount collected per returning customer order.',
1420
1427
  formulaDisplay: 'RC Tax ÷ RC Order Count',
1421
1428
  formula: 'rc_tax / rc_order_count',
@@ -1464,28 +1471,27 @@ export const ORDERS_MEASURES_MAP = {
1464
1471
  },
1465
1472
  [MEASURE.ORDERS_CM1_PER_ORDER]: {
1466
1473
  priority: 5,
1467
- title: 'CM1 Per Order (Gross Margin Per Order)',
1474
+ title: 'CM1 Per Order',
1468
1475
  shortTitle: 'CM1/Order',
1469
1476
  description: 'Average CM1 per order. Net Revenue minus Effective COGS divided by order count.',
1470
1477
  sumPrefix: '$',
1471
1478
  sumSuffix: '',
1472
1479
  avgPrefix: '$',
1473
1480
  avgSuffix: '',
1474
- icon: MEASURE_ICON.SHOPIFY,
1481
+ icon: MEASURE_ICON.CHANNEL,
1475
1482
  measure: MEASURE.ORDERS_CM1_PER_ORDER,
1476
- category: MEASURE_CATEGORY.ORDERS,
1477
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1483
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1478
1484
  valueType: MeasureValueType.CURRENCY,
1479
1485
  decimalPlaces: 2,
1480
1486
  useCompactNotation: false,
1481
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1487
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1482
1488
  tooltip: 'CM1 Per Order is the conservative gross margin per order using Net Revenue minus Effective COGS.',
1483
1489
  formulaDisplay: '(CM1) ÷ (Order Count)',
1484
1490
  formula: '(cm1) / (order_count)',
1485
1491
  },
1486
1492
  [MEASURE.ORDERS_NEW_CUSTOMER_CM1_PER_ORDER]: {
1487
1493
  priority: 15,
1488
- title: 'NC CM1 Per Order',
1494
+ title: 'New Customer CM1 Per Order',
1489
1495
  shortTitle: 'NC CM1/Order',
1490
1496
  description: 'Average CM1 per new customer order.',
1491
1497
  sumPrefix: '$',
@@ -1494,19 +1500,18 @@ export const ORDERS_MEASURES_MAP = {
1494
1500
  avgSuffix: '',
1495
1501
  icon: MEASURE_ICON.SHOPIFY,
1496
1502
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1_PER_ORDER,
1497
- category: MEASURE_CATEGORY.ORDERS,
1498
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1503
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1499
1504
  valueType: MeasureValueType.CURRENCY,
1500
1505
  decimalPlaces: 2,
1501
1506
  useCompactNotation: false,
1502
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1507
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1503
1508
  tooltip: 'NC CM1 Per Order is the conservative gross margin per new customer order.',
1504
1509
  formulaDisplay: '(NC CM1) ÷ (NC Order Count)',
1505
1510
  formula: '(nc_cm1) / (nc_order_count)',
1506
1511
  },
1507
1512
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_PER_ORDER]: {
1508
1513
  priority: 25,
1509
- title: 'RC CM1 Per Order',
1514
+ title: 'Returning Customer CM1 Per Order',
1510
1515
  shortTitle: 'RC CM1/Order',
1511
1516
  description: 'Average CM1 per returning customer order.',
1512
1517
  sumPrefix: '$',
@@ -1515,12 +1520,11 @@ export const ORDERS_MEASURES_MAP = {
1515
1520
  avgSuffix: '',
1516
1521
  icon: MEASURE_ICON.SHOPIFY,
1517
1522
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_PER_ORDER,
1518
- category: MEASURE_CATEGORY.ORDERS,
1519
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1523
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1520
1524
  valueType: MeasureValueType.CURRENCY,
1521
1525
  decimalPlaces: 2,
1522
1526
  useCompactNotation: false,
1523
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1527
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1524
1528
  tooltip: 'RC CM1 Per Order is the conservative gross margin per returning customer order.',
1525
1529
  formulaDisplay: '(RC CM1) ÷ (RC Order Count)',
1526
1530
  formula: '(rc_cm1) / (rc_order_count)',
@@ -1534,14 +1538,13 @@ export const ORDERS_MEASURES_MAP = {
1534
1538
  sumSuffix: '',
1535
1539
  avgPrefix: '$',
1536
1540
  avgSuffix: '',
1537
- icon: MEASURE_ICON.SHOPIFY,
1541
+ icon: MEASURE_ICON.CHANNEL,
1538
1542
  measure: MEASURE.ORDERS_CM2_PER_ORDER,
1539
- category: MEASURE_CATEGORY.ORDERS,
1540
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1543
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1541
1544
  valueType: MeasureValueType.CURRENCY,
1542
1545
  decimalPlaces: 2,
1543
1546
  useCompactNotation: false,
1544
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1547
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1545
1548
  tooltip: 'Average Contribution Margin 2 per order, after deducting marketing costs. Helps assess marketing efficiency at the order level.',
1546
1549
  formulaDisplay: 'CM2 ÷ Order Count',
1547
1550
  formula: 'cm2 / order_count',
@@ -1555,14 +1558,13 @@ export const ORDERS_MEASURES_MAP = {
1555
1558
  sumSuffix: '',
1556
1559
  avgPrefix: '$',
1557
1560
  avgSuffix: '',
1558
- icon: MEASURE_ICON.SHOPIFY,
1561
+ icon: MEASURE_ICON.CHANNEL,
1559
1562
  measure: MEASURE.ORDERS_CM3_PER_ORDER,
1560
- category: MEASURE_CATEGORY.ORDERS,
1561
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1563
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1562
1564
  valueType: MeasureValueType.CURRENCY,
1563
1565
  decimalPlaces: 2,
1564
1566
  useCompactNotation: false,
1565
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1567
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1566
1568
  tooltip: 'Average Contribution Margin 3 per order, after all layered cost deductions.',
1567
1569
  formulaDisplay: 'CM3 ÷ Order Count',
1568
1570
  formula: 'cm3 / order_count',
@@ -1577,21 +1579,20 @@ export const ORDERS_MEASURES_MAP = {
1577
1579
  sumSuffix: '',
1578
1580
  avgPrefix: '$',
1579
1581
  avgSuffix: '',
1580
- icon: MEASURE_ICON.SHOPIFY,
1582
+ icon: MEASURE_ICON.CHANNEL,
1581
1583
  measure: MEASURE.ORDERS_CM4_PER_ORDER,
1582
- category: MEASURE_CATEGORY.ORDERS,
1583
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1584
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1584
1585
  valueType: MeasureValueType.CURRENCY,
1585
1586
  decimalPlaces: 2,
1586
1587
  useCompactNotation: false,
1587
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1588
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1588
1589
  tooltip: 'Average Contribution Margin 4 (operating profit) per order, after deducting all costs including fixed costs.',
1589
1590
  formulaDisplay: 'CM4 ÷ Order Count',
1590
1591
  formula: 'cm4 / order_count',
1591
1592
  },
1592
1593
  [MEASURE.ORDERS_NEW_CUSTOMER_CM2_PER_ORDER]: {
1593
1594
  priority: 16,
1594
- title: 'NC CM2 Per Order',
1595
+ title: 'New Customer CM2 Per Order',
1595
1596
  shortTitle: 'NC CM2/Order',
1596
1597
  description: 'Average CM2 per new customer order.',
1597
1598
  sumPrefix: '$',
@@ -1600,19 +1601,18 @@ export const ORDERS_MEASURES_MAP = {
1600
1601
  avgSuffix: '',
1601
1602
  icon: MEASURE_ICON.SHOPIFY,
1602
1603
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2_PER_ORDER,
1603
- category: MEASURE_CATEGORY.ORDERS,
1604
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1604
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1605
1605
  valueType: MeasureValueType.CURRENCY,
1606
1606
  decimalPlaces: 2,
1607
1607
  useCompactNotation: false,
1608
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1608
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1609
1609
  tooltip: 'Average Contribution Margin 2 per new customer order, after deducting marketing costs.',
1610
1610
  formulaDisplay: 'NC CM2 ÷ NC Order Count',
1611
1611
  formula: 'nc_cm2 / nc_order_count',
1612
1612
  },
1613
1613
  [MEASURE.ORDERS_NEW_CUSTOMER_CM3_PER_ORDER]: {
1614
1614
  priority: 17,
1615
- title: 'NC CM3 Per Order',
1615
+ title: 'New Customer CM3 Per Order',
1616
1616
  shortTitle: 'NC CM3/Order',
1617
1617
  description: 'Average CM3 per new customer order.',
1618
1618
  sumPrefix: '$',
@@ -1621,19 +1621,18 @@ export const ORDERS_MEASURES_MAP = {
1621
1621
  avgSuffix: '',
1622
1622
  icon: MEASURE_ICON.SHOPIFY,
1623
1623
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3_PER_ORDER,
1624
- category: MEASURE_CATEGORY.ORDERS,
1625
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1624
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1626
1625
  valueType: MeasureValueType.CURRENCY,
1627
1626
  decimalPlaces: 2,
1628
1627
  useCompactNotation: false,
1629
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1628
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1630
1629
  tooltip: 'Average Contribution Margin 3 per new customer order, after all layered cost deductions.',
1631
1630
  formulaDisplay: 'NC CM3 ÷ NC Order Count',
1632
1631
  formula: 'nc_cm3 / nc_order_count',
1633
1632
  },
1634
1633
  [MEASURE.ORDERS_NEW_CUSTOMER_CM4_PER_ORDER]: {
1635
1634
  priority: 18,
1636
- title: 'NC CM4 Per Order',
1635
+ title: 'New Customer CM4 Per Order',
1637
1636
  shortTitle: 'NC CM4/Order',
1638
1637
  description: 'Average CM4 (operating profit) per new customer order.',
1639
1638
  sumPrefix: '$',
@@ -1642,19 +1641,18 @@ export const ORDERS_MEASURES_MAP = {
1642
1641
  avgSuffix: '',
1643
1642
  icon: MEASURE_ICON.SHOPIFY,
1644
1643
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM4_PER_ORDER,
1645
- category: MEASURE_CATEGORY.ORDERS,
1646
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1644
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1647
1645
  valueType: MeasureValueType.CURRENCY,
1648
1646
  decimalPlaces: 2,
1649
1647
  useCompactNotation: false,
1650
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1648
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1651
1649
  tooltip: 'Average Contribution Margin 4 (operating profit) per new customer order, after deducting all costs including fixed costs.',
1652
1650
  formulaDisplay: 'NC CM4 ÷ NC Order Count',
1653
1651
  formula: 'nc_cm4 / nc_order_count',
1654
1652
  },
1655
1653
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_PER_ORDER]: {
1656
1654
  priority: 26,
1657
- title: 'RC CM2 Per Order',
1655
+ title: 'Returning Customer CM2 Per Order',
1658
1656
  shortTitle: 'RC CM2/Order',
1659
1657
  description: 'Average CM2 per returning customer order.',
1660
1658
  sumPrefix: '$',
@@ -1663,19 +1661,18 @@ export const ORDERS_MEASURES_MAP = {
1663
1661
  avgSuffix: '',
1664
1662
  icon: MEASURE_ICON.SHOPIFY,
1665
1663
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_PER_ORDER,
1666
- category: MEASURE_CATEGORY.ORDERS,
1667
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1664
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1668
1665
  valueType: MeasureValueType.CURRENCY,
1669
1666
  decimalPlaces: 2,
1670
1667
  useCompactNotation: false,
1671
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1668
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1672
1669
  tooltip: 'Average Contribution Margin 2 per returning customer order, after deducting marketing costs.',
1673
1670
  formulaDisplay: 'RC CM2 ÷ RC Order Count',
1674
1671
  formula: 'rc_cm2 / rc_order_count',
1675
1672
  },
1676
1673
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_PER_ORDER]: {
1677
1674
  priority: 27,
1678
- title: 'RC CM3 Per Order',
1675
+ title: 'Returning Customer CM3 Per Order',
1679
1676
  shortTitle: 'RC CM3/Order',
1680
1677
  description: 'Average CM3 per returning customer order.',
1681
1678
  sumPrefix: '$',
@@ -1684,19 +1681,18 @@ export const ORDERS_MEASURES_MAP = {
1684
1681
  avgSuffix: '',
1685
1682
  icon: MEASURE_ICON.SHOPIFY,
1686
1683
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_PER_ORDER,
1687
- category: MEASURE_CATEGORY.ORDERS,
1688
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1684
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1689
1685
  valueType: MeasureValueType.CURRENCY,
1690
1686
  decimalPlaces: 2,
1691
1687
  useCompactNotation: false,
1692
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1688
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1693
1689
  tooltip: 'Average Contribution Margin 3 per returning customer order, after all layered cost deductions.',
1694
1690
  formulaDisplay: 'RC CM3 ÷ RC Order Count',
1695
1691
  formula: 'rc_cm3 / rc_order_count',
1696
1692
  },
1697
1693
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM4_PER_ORDER]: {
1698
1694
  priority: 28,
1699
- title: 'RC CM4 Per Order',
1695
+ title: 'Returning Customer CM4 Per Order',
1700
1696
  shortTitle: 'RC CM4/Order',
1701
1697
  description: 'Average CM4 (operating profit) per returning customer order.',
1702
1698
  sumPrefix: '$',
@@ -1705,12 +1701,11 @@ export const ORDERS_MEASURES_MAP = {
1705
1701
  avgSuffix: '',
1706
1702
  icon: MEASURE_ICON.SHOPIFY,
1707
1703
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM4_PER_ORDER,
1708
- category: MEASURE_CATEGORY.ORDERS,
1709
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
1704
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
1710
1705
  valueType: MeasureValueType.CURRENCY,
1711
1706
  decimalPlaces: 2,
1712
1707
  useCompactNotation: false,
1713
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1708
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1714
1709
  tooltip: 'Average Contribution Margin 4 (operating profit) per returning customer order, after deducting all costs including fixed costs.',
1715
1710
  formulaDisplay: 'RC CM4 ÷ RC Order Count',
1716
1711
  formula: 'rc_cm4 / rc_order_count',
@@ -1730,7 +1725,7 @@ export const ORDERS_MEASURES_MAP = {
1730
1725
  valueType: MeasureValueType.NUMBER,
1731
1726
  decimalPlaces: 2,
1732
1727
  useCompactNotation: false,
1733
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1728
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1734
1729
  shortTitle: 'Avg Orders/Cust',
1735
1730
  tooltip: 'The average number of orders placed per unique customer in the period. Higher values indicate strong repeat purchase behavior.',
1736
1731
  formulaDisplay: 'Order Count ÷ Unique Customers',
@@ -1739,6 +1734,7 @@ export const ORDERS_MEASURES_MAP = {
1739
1734
  [MEASURE.ORDERS_NEW_CUSTOMERS]: {
1740
1735
  priority: 2,
1741
1736
  title: 'New Customers',
1737
+ shortTitle: 'New Customers',
1742
1738
  description: 'Count of unique new customers.',
1743
1739
  sumPrefix: '',
1744
1740
  sumSuffix: '',
@@ -1751,7 +1747,7 @@ export const ORDERS_MEASURES_MAP = {
1751
1747
  valueType: MeasureValueType.NUMBER,
1752
1748
  decimalPlaces: 0,
1753
1749
  useCompactNotation: false,
1754
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1750
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1755
1751
  tooltip: 'The number of distinct customers making their first-ever purchase in the period. Core acquisition metric.',
1756
1752
  },
1757
1753
  [MEASURE.ORDERS_RETURNING_CUSTOMERS]: {
@@ -1769,13 +1765,13 @@ export const ORDERS_MEASURES_MAP = {
1769
1765
  valueType: MeasureValueType.NUMBER,
1770
1766
  decimalPlaces: 0,
1771
1767
  useCompactNotation: false,
1772
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1773
- shortTitle: 'Ret. Customers',
1768
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1769
+ shortTitle: 'Returning Customers',
1774
1770
  tooltip: 'The number of distinct customers who have ordered before and purchased again in the period. Core retention metric.',
1775
1771
  },
1776
1772
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RATE]: {
1777
1773
  priority: 33,
1778
- title: 'NC Gross Revenue Rate',
1774
+ title: 'New Customer Gross Revenue Rate',
1779
1775
  description: 'New customer gross revenue as percentage of total gross revenue.',
1780
1776
  sumPrefix: '',
1781
1777
  sumSuffix: '%',
@@ -1788,7 +1784,7 @@ export const ORDERS_MEASURES_MAP = {
1788
1784
  valueType: MeasureValueType.PERCENTAGE,
1789
1785
  decimalPlaces: 2,
1790
1786
  useCompactNotation: false,
1791
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1787
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1792
1788
  shortTitle: 'NC Gross Rate',
1793
1789
  tooltip: 'New customer gross revenue as a share of total gross revenue. Shows how much of top-line sales comes from first-time buyers.',
1794
1790
  formulaDisplay: 'NC Gross Revenue ÷ Gross Revenue × 100',
@@ -1796,7 +1792,7 @@ export const ORDERS_MEASURES_MAP = {
1796
1792
  },
1797
1793
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RATE]: {
1798
1794
  priority: 34,
1799
- title: 'RC Gross Revenue Rate',
1795
+ title: 'Returning Customer Gross Revenue Rate',
1800
1796
  description: 'Returning customer gross revenue as percentage of total gross revenue.',
1801
1797
  sumPrefix: '',
1802
1798
  sumSuffix: '%',
@@ -1809,7 +1805,7 @@ export const ORDERS_MEASURES_MAP = {
1809
1805
  valueType: MeasureValueType.PERCENTAGE,
1810
1806
  decimalPlaces: 2,
1811
1807
  useCompactNotation: false,
1812
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1808
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1813
1809
  shortTitle: 'RC Gross Rate',
1814
1810
  tooltip: 'Returning customer gross revenue as a share of total gross revenue. High values indicate a retention-driven revenue base.',
1815
1811
  formulaDisplay: 'RC Gross Revenue ÷ Gross Revenue × 100',
@@ -1830,7 +1826,7 @@ export const ORDERS_MEASURES_MAP = {
1830
1826
  valueType: MeasureValueType.CURRENCY,
1831
1827
  decimalPlaces: 2,
1832
1828
  useCompactNotation: true,
1833
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1829
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1834
1830
  shortTitle: 'Refund by Date',
1835
1831
  tooltip: 'Refund amounts attributed to the date the refund was issued. Use this to track when refunds actually hit, not when orders were placed.',
1836
1832
  },
@@ -1849,7 +1845,7 @@ export const ORDERS_MEASURES_MAP = {
1849
1845
  valueType: MeasureValueType.CURRENCY,
1850
1846
  decimalPlaces: 2,
1851
1847
  useCompactNotation: true,
1852
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1848
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1853
1849
  shortTitle: 'Refund by Order',
1854
1850
  tooltip: 'Refund amounts attributed to the original order date. Useful for cohort analysis and understanding which order batches had high returns.',
1855
1851
  },
@@ -1868,7 +1864,7 @@ export const ORDERS_MEASURES_MAP = {
1868
1864
  valueType: MeasureValueType.PERCENTAGE,
1869
1865
  decimalPlaces: 2,
1870
1866
  useCompactNotation: false,
1871
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1867
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1872
1868
  shortTitle: 'Refund Gross %',
1873
1869
  tooltip: 'Total refunds as a percentage of gross revenue. Shows what portion of sales value is being returned.',
1874
1870
  formulaDisplay: 'Refunds ÷ Gross Revenue × 100',
@@ -1889,7 +1885,7 @@ export const ORDERS_MEASURES_MAP = {
1889
1885
  valueType: MeasureValueType.PERCENTAGE,
1890
1886
  decimalPlaces: 2,
1891
1887
  useCompactNotation: false,
1892
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1888
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1893
1889
  shortTitle: 'Refund Net %',
1894
1890
  tooltip: 'Total refunds as a percentage of net revenue. A higher rate here vs. gross rate means discounts compound the refund impact.',
1895
1891
  formulaDisplay: 'Refunds ÷ Net Revenue × 100',
@@ -1898,6 +1894,7 @@ export const ORDERS_MEASURES_MAP = {
1898
1894
  [MEASURE.ORDERS_DISCOUNT_COUNT]: {
1899
1895
  priority: 12,
1900
1896
  title: 'Discount Count',
1897
+ shortTitle: 'Discount Count',
1901
1898
  description: 'Count of orders with discounts.',
1902
1899
  sumPrefix: '',
1903
1900
  sumSuffix: '',
@@ -1910,7 +1907,7 @@ export const ORDERS_MEASURES_MAP = {
1910
1907
  valueType: MeasureValueType.NUMBER,
1911
1908
  decimalPlaces: 0,
1912
1909
  useCompactNotation: false,
1913
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1910
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1914
1911
  tooltip: 'The number of orders that had at least one discount applied. Compare to total orders to gauge discount usage frequency.',
1915
1912
  },
1916
1913
  [MEASURE.ORDERS_DISCOUNT_GROSS_RATE]: {
@@ -1928,7 +1925,7 @@ export const ORDERS_MEASURES_MAP = {
1928
1925
  valueType: MeasureValueType.PERCENTAGE,
1929
1926
  decimalPlaces: 2,
1930
1927
  useCompactNotation: false,
1931
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1928
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1932
1929
  shortTitle: 'Disc. Gross Rate',
1933
1930
  tooltip: 'Total discounts as a share of gross revenue. Tracks how aggressively promotional pricing is eroding top-line sales.',
1934
1931
  formulaDisplay: 'Discounts ÷ Gross Revenue × 100',
@@ -1936,7 +1933,7 @@ export const ORDERS_MEASURES_MAP = {
1936
1933
  },
1937
1934
  [MEASURE.ORDERS_NEW_CUSTOMER_DISCOUNT_GROSS_RATE]: {
1938
1935
  priority: 16,
1939
- title: 'NC Discount Gross Rate',
1936
+ title: 'New Customer Discount Gross Rate',
1940
1937
  description: 'New customer discount as percentage of gross revenue.',
1941
1938
  sumPrefix: '',
1942
1939
  sumSuffix: '%',
@@ -1949,7 +1946,7 @@ export const ORDERS_MEASURES_MAP = {
1949
1946
  valueType: MeasureValueType.PERCENTAGE,
1950
1947
  decimalPlaces: 2,
1951
1948
  useCompactNotation: false,
1952
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1949
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1953
1950
  shortTitle: 'NC Disc. Gross',
1954
1951
  tooltip: 'New customer discounts as a share of new customer gross revenue. High rates suggest heavy promotion to drive acquisition.',
1955
1952
  formulaDisplay: 'NC Discounts ÷ NC Gross Revenue × 100',
@@ -1957,7 +1954,7 @@ export const ORDERS_MEASURES_MAP = {
1957
1954
  },
1958
1955
  [MEASURE.ORDERS_RETURNING_CUSTOMER_DISCOUNT_GROSS_RATE]: {
1959
1956
  priority: 17,
1960
- title: 'RC Discount Gross Rate',
1957
+ title: 'Returning Customer Discount Gross Rate',
1961
1958
  description: 'Returning customer discount as percentage of gross revenue.',
1962
1959
  sumPrefix: '',
1963
1960
  sumSuffix: '%',
@@ -1970,7 +1967,7 @@ export const ORDERS_MEASURES_MAP = {
1970
1967
  valueType: MeasureValueType.PERCENTAGE,
1971
1968
  decimalPlaces: 2,
1972
1969
  useCompactNotation: false,
1973
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1970
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1974
1971
  shortTitle: 'RC Disc. Gross',
1975
1972
  tooltip: 'Returning customer discounts as a share of returning customer gross revenue. High rates may indicate loyalty discounts cutting into repeat margins.',
1976
1973
  formulaDisplay: 'RC Discounts ÷ RC Gross Revenue × 100',
@@ -1978,7 +1975,7 @@ export const ORDERS_MEASURES_MAP = {
1978
1975
  },
1979
1976
  [MEASURE.ORDERS_NEW_CUSTOMER_DISCOUNT_ORDER_RATE]: {
1980
1977
  priority: 18,
1981
- title: 'NC Discount Order Rate',
1978
+ title: 'New Customer Discount Order Rate',
1982
1979
  description: 'Percentage of new customer orders with discount.',
1983
1980
  sumPrefix: '',
1984
1981
  sumSuffix: '%',
@@ -1991,7 +1988,7 @@ export const ORDERS_MEASURES_MAP = {
1991
1988
  valueType: MeasureValueType.PERCENTAGE,
1992
1989
  decimalPlaces: 2,
1993
1990
  useCompactNotation: false,
1994
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
1991
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
1995
1992
  shortTitle: 'NC Disc. Order %',
1996
1993
  tooltip: 'The share of new customer orders that used a discount code or promotion. High values show how dependent acquisition is on discounting.',
1997
1994
  formulaDisplay: 'NC Discounted Orders ÷ NC Orders × 100',
@@ -1999,7 +1996,7 @@ export const ORDERS_MEASURES_MAP = {
1999
1996
  },
2000
1997
  [MEASURE.ORDERS_RETURNING_CUSTOMER_DISCOUNT_ORDER_RATE]: {
2001
1998
  priority: 19,
2002
- title: 'RC Discount Order Rate',
1999
+ title: 'Returning Customer Discount Order Rate',
2003
2000
  description: 'Percentage of returning customer orders with discount.',
2004
2001
  sumPrefix: '',
2005
2002
  sumSuffix: '%',
@@ -2012,7 +2009,7 @@ export const ORDERS_MEASURES_MAP = {
2012
2009
  valueType: MeasureValueType.PERCENTAGE,
2013
2010
  decimalPlaces: 2,
2014
2011
  useCompactNotation: false,
2015
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2012
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2016
2013
  shortTitle: 'RC Disc. Order %',
2017
2014
  tooltip: 'The share of returning customer orders that used a discount. Elevated values may signal discount dependency in retention.',
2018
2015
  formulaDisplay: 'RC Discounted Orders ÷ RC Orders × 100',
@@ -2033,7 +2030,7 @@ export const ORDERS_MEASURES_MAP = {
2033
2030
  valueType: MeasureValueType.CURRENCY,
2034
2031
  decimalPlaces: 2,
2035
2032
  useCompactNotation: true,
2036
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2033
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2037
2034
  shortTitle: 'Refund + Disc.',
2038
2035
  tooltip: 'The combined dollar value of refunds and discounts. Represents the total revenue leakage from gross sales.',
2039
2036
  formulaDisplay: 'Refunds + Discounts',
@@ -2041,7 +2038,7 @@ export const ORDERS_MEASURES_MAP = {
2041
2038
  },
2042
2039
  [MEASURE.ORDERS_NEW_CUSTOMER_REFUND_PLUS_DISCOUNT]: {
2043
2040
  priority: 22,
2044
- title: 'NC Refund + Discount',
2041
+ title: 'New Customer Refund + Discount',
2045
2042
  description: 'New customer refund and discount combined.',
2046
2043
  sumPrefix: '$',
2047
2044
  sumSuffix: '',
@@ -2054,7 +2051,7 @@ export const ORDERS_MEASURES_MAP = {
2054
2051
  valueType: MeasureValueType.CURRENCY,
2055
2052
  decimalPlaces: 2,
2056
2053
  useCompactNotation: true,
2057
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2054
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2058
2055
  shortTitle: 'NC Ref+Disc',
2059
2056
  tooltip: 'Combined refunds and discounts for new customer orders. Reflects the total revenue given back from first-time buyer transactions.',
2060
2057
  formulaDisplay: 'NC Refunds + NC Discounts',
@@ -2062,7 +2059,7 @@ export const ORDERS_MEASURES_MAP = {
2062
2059
  },
2063
2060
  [MEASURE.ORDERS_RETURNING_CUSTOMER_REFUND_PLUS_DISCOUNT]: {
2064
2061
  priority: 23,
2065
- title: 'RC Refund + Discount',
2062
+ title: 'Returning Customer Refund + Discount',
2066
2063
  description: 'Returning customer refund and discount combined.',
2067
2064
  sumPrefix: '$',
2068
2065
  sumSuffix: '',
@@ -2075,7 +2072,7 @@ export const ORDERS_MEASURES_MAP = {
2075
2072
  valueType: MeasureValueType.CURRENCY,
2076
2073
  decimalPlaces: 2,
2077
2074
  useCompactNotation: true,
2078
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2075
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2079
2076
  shortTitle: 'RC Ref+Disc',
2080
2077
  tooltip: 'Combined refunds and discounts for returning customer orders.',
2081
2078
  formulaDisplay: 'RC Refunds + RC Discounts',
@@ -2096,8 +2093,9 @@ export const ORDERS_MEASURES_MAP = {
2096
2093
  valueType: MeasureValueType.CURRENCY,
2097
2094
  decimalPlaces: 2,
2098
2095
  useCompactNotation: true,
2099
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2096
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2100
2097
  tooltip: 'The order subtotal before shipping and taxes are added. Reflects the product value customers commit to at checkout.',
2098
+ hideFromUI: true,
2101
2099
  },
2102
2100
  [MEASURE.ORDERS_NET_PLUS_SHIPPING]: {
2103
2101
  priority: 5,
@@ -2114,11 +2112,12 @@ export const ORDERS_MEASURES_MAP = {
2114
2112
  valueType: MeasureValueType.CURRENCY,
2115
2113
  decimalPlaces: 2,
2116
2114
  useCompactNotation: true,
2117
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2115
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2118
2116
  shortTitle: 'Net + Ship.',
2119
2117
  tooltip: 'Net revenue plus shipping collected. Useful for businesses where shipping is a meaningful revenue contributor.',
2120
2118
  formulaDisplay: 'Net Revenue + Shipping',
2121
2119
  formula: 'net_revenue + shipping',
2120
+ hideFromUI: true,
2122
2121
  },
2123
2122
  [MEASURE.ORDERS_CANCELLED_COUNT]: {
2124
2123
  priority: 51,
@@ -2135,7 +2134,7 @@ export const ORDERS_MEASURES_MAP = {
2135
2134
  valueType: MeasureValueType.NUMBER,
2136
2135
  decimalPlaces: 0,
2137
2136
  useCompactNotation: false,
2138
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2137
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2139
2138
  shortTitle: 'Cancellations',
2140
2139
  tooltip: 'The number of orders that were cancelled before fulfillment. High counts may indicate checkout friction or inventory issues.',
2141
2140
  },
@@ -2154,13 +2153,13 @@ export const ORDERS_MEASURES_MAP = {
2154
2153
  valueType: MeasureValueType.CURRENCY,
2155
2154
  decimalPlaces: 2,
2156
2155
  useCompactNotation: true,
2157
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2156
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2158
2157
  shortTitle: 'Cancelled $',
2159
2158
  tooltip: 'The total dollar value of cancelled orders. Represents potential revenue that was lost before fulfillment.',
2160
2159
  },
2161
2160
  [MEASURE.ORDERS_NEW_CUSTOMER_CANCELLED_COUNT]: {
2162
2161
  priority: 53,
2163
- title: 'NC Cancelled Orders',
2162
+ title: 'New Customer Cancelled Orders',
2164
2163
  description: 'Count of cancelled orders from new customers.',
2165
2164
  sumPrefix: '',
2166
2165
  sumSuffix: '',
@@ -2173,13 +2172,13 @@ export const ORDERS_MEASURES_MAP = {
2173
2172
  valueType: MeasureValueType.NUMBER,
2174
2173
  decimalPlaces: 0,
2175
2174
  useCompactNotation: false,
2176
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2175
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2177
2176
  shortTitle: 'NC Cancellations',
2178
2177
  tooltip: 'The number of new customer orders that were cancelled before fulfillment.',
2179
2178
  },
2180
2179
  [MEASURE.ORDERS_NEW_CUSTOMER_CANCELLED_AMOUNT]: {
2181
2180
  priority: 54,
2182
- title: 'NC Cancelled Amount',
2181
+ title: 'New Customer Cancelled Amount',
2183
2182
  description: 'Cancelled order amount from new customers.',
2184
2183
  sumPrefix: '$',
2185
2184
  sumSuffix: '',
@@ -2192,7 +2191,7 @@ export const ORDERS_MEASURES_MAP = {
2192
2191
  valueType: MeasureValueType.CURRENCY,
2193
2192
  decimalPlaces: 2,
2194
2193
  useCompactNotation: true,
2195
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2194
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2196
2195
  shortTitle: 'NC Cancelled $',
2197
2196
  tooltip: 'The total dollar value of cancelled new customer orders.',
2198
2197
  },
@@ -2211,13 +2210,13 @@ export const ORDERS_MEASURES_MAP = {
2211
2210
  valueType: MeasureValueType.NUMBER,
2212
2211
  decimalPlaces: 0,
2213
2212
  useCompactNotation: false,
2214
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2213
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2215
2214
  shortTitle: 'RC Cancellations',
2216
2215
  tooltip: 'The number of returning customer orders that were cancelled before fulfillment.',
2217
2216
  },
2218
2217
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CANCELLED_AMOUNT]: {
2219
2218
  priority: 56,
2220
- title: 'RC Cancelled Amount',
2219
+ title: 'Returning Customer Cancelled Amount',
2221
2220
  description: 'Cancelled order amount from returning customers.',
2222
2221
  sumPrefix: '$',
2223
2222
  sumSuffix: '',
@@ -2230,7 +2229,7 @@ export const ORDERS_MEASURES_MAP = {
2230
2229
  valueType: MeasureValueType.CURRENCY,
2231
2230
  decimalPlaces: 2,
2232
2231
  useCompactNotation: true,
2233
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2232
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2234
2233
  shortTitle: 'RC Cancelled $',
2235
2234
  tooltip: 'The total dollar value of cancelled returning customer orders.',
2236
2235
  },
@@ -2244,8 +2243,7 @@ export const ORDERS_MEASURES_MAP = {
2244
2243
  avgSuffix: '',
2245
2244
  icon: MEASURE_ICON.SHOPIFY,
2246
2245
  measure: MEASURE.ORDERS_GROSS_PROFIT,
2247
- category: MEASURE_CATEGORY.ORDERS,
2248
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
2246
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2249
2247
  valueType: MeasureValueType.CURRENCY,
2250
2248
  decimalPlaces: 2,
2251
2249
  useCompactNotation: true,
@@ -2257,7 +2255,7 @@ export const ORDERS_MEASURES_MAP = {
2257
2255
  },
2258
2256
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT]: {
2259
2257
  priority: 2,
2260
- title: 'NC Gross Profit',
2258
+ title: 'New Customer Gross Profit',
2261
2259
  description: 'Gross profit from new customers.',
2262
2260
  sumPrefix: '$',
2263
2261
  sumSuffix: '',
@@ -2265,8 +2263,7 @@ export const ORDERS_MEASURES_MAP = {
2265
2263
  avgSuffix: '',
2266
2264
  icon: MEASURE_ICON.SHOPIFY,
2267
2265
  measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT,
2268
- category: MEASURE_CATEGORY.ORDERS,
2269
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
2266
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2270
2267
  valueType: MeasureValueType.CURRENCY,
2271
2268
  decimalPlaces: 2,
2272
2269
  useCompactNotation: true,
@@ -2276,7 +2273,7 @@ export const ORDERS_MEASURES_MAP = {
2276
2273
  },
2277
2274
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT]: {
2278
2275
  priority: 3,
2279
- title: 'RC Gross Profit',
2276
+ title: 'Returning Customer Gross Profit',
2280
2277
  description: 'Gross profit from returning customers.',
2281
2278
  sumPrefix: '$',
2282
2279
  sumSuffix: '',
@@ -2284,8 +2281,7 @@ export const ORDERS_MEASURES_MAP = {
2284
2281
  avgSuffix: '',
2285
2282
  icon: MEASURE_ICON.SHOPIFY,
2286
2283
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT,
2287
- category: MEASURE_CATEGORY.ORDERS,
2288
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
2284
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2289
2285
  valueType: MeasureValueType.CURRENCY,
2290
2286
  decimalPlaces: 2,
2291
2287
  useCompactNotation: true,
@@ -2303,8 +2299,7 @@ export const ORDERS_MEASURES_MAP = {
2303
2299
  avgSuffix: '%',
2304
2300
  icon: MEASURE_ICON.SHOPIFY,
2305
2301
  measure: MEASURE.ORDERS_GROSS_PROFIT_GROSS_PERCENT,
2306
- category: MEASURE_CATEGORY.ORDERS,
2307
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
2302
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2308
2303
  valueType: MeasureValueType.PERCENTAGE,
2309
2304
  decimalPlaces: 2,
2310
2305
  useCompactNotation: false,
@@ -2316,7 +2311,7 @@ export const ORDERS_MEASURES_MAP = {
2316
2311
  },
2317
2312
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT]: {
2318
2313
  priority: 12,
2319
- title: 'NC Gross Profit % (of Gross)',
2314
+ title: 'New Customer Gross Profit % (of Gross)',
2320
2315
  description: 'NC gross profit as percentage of NC gross revenue.',
2321
2316
  sumPrefix: '',
2322
2317
  sumSuffix: '%',
@@ -2324,8 +2319,7 @@ export const ORDERS_MEASURES_MAP = {
2324
2319
  avgSuffix: '%',
2325
2320
  icon: MEASURE_ICON.SHOPIFY,
2326
2321
  measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT,
2327
- category: MEASURE_CATEGORY.ORDERS,
2328
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
2322
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2329
2323
  valueType: MeasureValueType.PERCENTAGE,
2330
2324
  decimalPlaces: 2,
2331
2325
  useCompactNotation: false,
@@ -2335,7 +2329,7 @@ export const ORDERS_MEASURES_MAP = {
2335
2329
  },
2336
2330
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT]: {
2337
2331
  priority: 13,
2338
- title: 'RC Gross Profit % (of Gross)',
2332
+ title: 'Returning Customer Gross Profit % (of Gross)',
2339
2333
  description: 'RC gross profit as percentage of RC gross revenue.',
2340
2334
  sumPrefix: '',
2341
2335
  sumSuffix: '%',
@@ -2343,8 +2337,7 @@ export const ORDERS_MEASURES_MAP = {
2343
2337
  avgSuffix: '%',
2344
2338
  icon: MEASURE_ICON.SHOPIFY,
2345
2339
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT,
2346
- category: MEASURE_CATEGORY.ORDERS,
2347
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
2340
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2348
2341
  valueType: MeasureValueType.PERCENTAGE,
2349
2342
  decimalPlaces: 2,
2350
2343
  useCompactNotation: false,
@@ -2362,8 +2355,7 @@ export const ORDERS_MEASURES_MAP = {
2362
2355
  avgSuffix: '',
2363
2356
  icon: MEASURE_ICON.SHOPIFY,
2364
2357
  measure: MEASURE.ORDERS_GROSS_PROFIT_PER_ORDER,
2365
- category: MEASURE_CATEGORY.ORDERS,
2366
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
2358
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2367
2359
  valueType: MeasureValueType.CURRENCY,
2368
2360
  decimalPlaces: 2,
2369
2361
  useCompactNotation: false,
@@ -2375,7 +2367,7 @@ export const ORDERS_MEASURES_MAP = {
2375
2367
  },
2376
2368
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_PER_ORDER]: {
2377
2369
  priority: 22,
2378
- title: 'NC Gross Profit Per Order',
2370
+ title: 'New Customer Gross Profit Per Order',
2379
2371
  description: 'Average gross profit per new customer order.',
2380
2372
  sumPrefix: '$',
2381
2373
  sumSuffix: '',
@@ -2383,8 +2375,7 @@ export const ORDERS_MEASURES_MAP = {
2383
2375
  avgSuffix: '',
2384
2376
  icon: MEASURE_ICON.SHOPIFY,
2385
2377
  measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_PER_ORDER,
2386
- category: MEASURE_CATEGORY.ORDERS,
2387
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
2378
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2388
2379
  valueType: MeasureValueType.CURRENCY,
2389
2380
  decimalPlaces: 2,
2390
2381
  useCompactNotation: false,
@@ -2394,7 +2385,7 @@ export const ORDERS_MEASURES_MAP = {
2394
2385
  },
2395
2386
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_PER_ORDER]: {
2396
2387
  priority: 23,
2397
- title: 'RC Gross Profit Per Order',
2388
+ title: 'Returning Customer Gross Profit Per Order',
2398
2389
  description: 'Average gross profit per returning customer order.',
2399
2390
  sumPrefix: '$',
2400
2391
  sumSuffix: '',
@@ -2402,8 +2393,7 @@ export const ORDERS_MEASURES_MAP = {
2402
2393
  avgSuffix: '',
2403
2394
  icon: MEASURE_ICON.SHOPIFY,
2404
2395
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_PER_ORDER,
2405
- category: MEASURE_CATEGORY.ORDERS,
2406
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
2396
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2407
2397
  valueType: MeasureValueType.CURRENCY,
2408
2398
  decimalPlaces: 2,
2409
2399
  useCompactNotation: false,
@@ -2426,7 +2416,7 @@ export const ORDERS_MEASURES_MAP = {
2426
2416
  valueType: MeasureValueType.PERCENTAGE,
2427
2417
  decimalPlaces: 2,
2428
2418
  useCompactNotation: false,
2429
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2419
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2430
2420
  shortTitle: 'COGS/Gross %',
2431
2421
  tooltip: 'Cost of goods as a share of gross revenue. The complement of gross margin rate — COGS % + Gross Margin % = 100%.',
2432
2422
  formulaDisplay: 'COGS ÷ Gross Revenue × 100',
@@ -2434,7 +2424,7 @@ export const ORDERS_MEASURES_MAP = {
2434
2424
  },
2435
2425
  [MEASURE.ORDERS_NEW_CUSTOMER_COGS_GROSS_RATE]: {
2436
2426
  priority: 35,
2437
- title: 'NC COGS / Gross Rate',
2427
+ title: 'New Customer COGS / Gross Rate',
2438
2428
  description: 'NC COGS as percentage of gross revenue.',
2439
2429
  sumPrefix: '',
2440
2430
  sumSuffix: '%',
@@ -2447,7 +2437,7 @@ export const ORDERS_MEASURES_MAP = {
2447
2437
  valueType: MeasureValueType.PERCENTAGE,
2448
2438
  decimalPlaces: 2,
2449
2439
  useCompactNotation: false,
2450
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2440
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2451
2441
  shortTitle: 'NC COGS/Gross %',
2452
2442
  tooltip: 'New customer COGS as a share of their gross revenue.',
2453
2443
  formulaDisplay: 'NC COGS ÷ NC Gross Revenue × 100',
@@ -2455,7 +2445,7 @@ export const ORDERS_MEASURES_MAP = {
2455
2445
  },
2456
2446
  [MEASURE.ORDERS_RETURNING_CUSTOMER_COGS_GROSS_RATE]: {
2457
2447
  priority: 38,
2458
- title: 'RC COGS / Gross Rate',
2448
+ title: 'Returning Customer COGS / Gross Rate',
2459
2449
  description: 'RC COGS as percentage of gross revenue.',
2460
2450
  sumPrefix: '',
2461
2451
  sumSuffix: '%',
@@ -2468,7 +2458,7 @@ export const ORDERS_MEASURES_MAP = {
2468
2458
  valueType: MeasureValueType.PERCENTAGE,
2469
2459
  decimalPlaces: 2,
2470
2460
  useCompactNotation: false,
2471
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2461
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2472
2462
  shortTitle: 'RC COGS/Gross %',
2473
2463
  tooltip: 'Returning customer COGS as a share of their gross revenue.',
2474
2464
  formulaDisplay: 'RC COGS ÷ RC Gross Revenue × 100',
@@ -2489,7 +2479,7 @@ export const ORDERS_MEASURES_MAP = {
2489
2479
  valueType: MeasureValueType.PERCENTAGE,
2490
2480
  decimalPlaces: 2,
2491
2481
  useCompactNotation: false,
2492
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2482
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2493
2483
  shortTitle: 'COGS/Net %',
2494
2484
  tooltip: 'COGS as a share of net revenue. Higher than gross rate because discounts and refunds reduce the denominator.',
2495
2485
  formulaDisplay: 'COGS ÷ Net Revenue × 100',
@@ -2497,7 +2487,7 @@ export const ORDERS_MEASURES_MAP = {
2497
2487
  },
2498
2488
  [MEASURE.ORDERS_NEW_CUSTOMER_COGS_NET_RATE]: {
2499
2489
  priority: 36,
2500
- title: 'NC COGS / Net Rate',
2490
+ title: 'New Customer COGS / Net Rate',
2501
2491
  description: 'NC COGS as percentage of net revenue.',
2502
2492
  sumPrefix: '',
2503
2493
  sumSuffix: '%',
@@ -2510,7 +2500,7 @@ export const ORDERS_MEASURES_MAP = {
2510
2500
  valueType: MeasureValueType.PERCENTAGE,
2511
2501
  decimalPlaces: 2,
2512
2502
  useCompactNotation: false,
2513
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2503
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2514
2504
  shortTitle: 'NC COGS/Net %',
2515
2505
  tooltip: 'New customer COGS as a share of their net revenue.',
2516
2506
  formulaDisplay: 'NC COGS ÷ NC Net Revenue × 100',
@@ -2518,7 +2508,7 @@ export const ORDERS_MEASURES_MAP = {
2518
2508
  },
2519
2509
  [MEASURE.ORDERS_RETURNING_CUSTOMER_COGS_NET_RATE]: {
2520
2510
  priority: 39,
2521
- title: 'RC COGS / Net Rate',
2511
+ title: 'Returning Customer COGS / Net Rate',
2522
2512
  description: 'RC COGS as percentage of net revenue.',
2523
2513
  sumPrefix: '',
2524
2514
  sumSuffix: '%',
@@ -2531,7 +2521,7 @@ export const ORDERS_MEASURES_MAP = {
2531
2521
  valueType: MeasureValueType.PERCENTAGE,
2532
2522
  decimalPlaces: 2,
2533
2523
  useCompactNotation: false,
2534
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2524
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2535
2525
  shortTitle: 'RC COGS/Net %',
2536
2526
  tooltip: 'Returning customer COGS as a share of their net revenue.',
2537
2527
  formulaDisplay: 'RC COGS ÷ RC Net Revenue × 100',
@@ -2664,7 +2654,7 @@ export const ORDERS_MEASURES_MAP = {
2664
2654
  decimalPlaces: 0,
2665
2655
  useCompactNotation: true,
2666
2656
  applicableContexts: LTV_COHORT_APPLICABLE_CONTEXTS,
2667
- shortTitle: 'Cohort Cust.',
2657
+ shortTitle: 'Cohort Customers',
2668
2658
  tooltip: 'The number of customers who made their first purchase in the cohort period. The denominator for all per-customer cohort metrics.',
2669
2659
  },
2670
2660
  [MEASURE.ORDERS_COHORT_RETENTION_PERCENT]: {
@@ -2711,6 +2701,7 @@ export const ORDERS_MEASURES_MAP = {
2711
2701
  [MEASURE.ORDERS_TOP_PRODUCTS]: {
2712
2702
  priority: 9,
2713
2703
  title: 'Top Products',
2704
+ shortTitle: 'Top Products',
2714
2705
  description: 'Top selling products by revenue.',
2715
2706
  sumPrefix: '',
2716
2707
  sumSuffix: '',
@@ -2723,7 +2714,7 @@ export const ORDERS_MEASURES_MAP = {
2723
2714
  valueType: MeasureValueType.NUMBER,
2724
2715
  decimalPlaces: 0,
2725
2716
  useCompactNotation: false,
2726
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2717
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2727
2718
  tooltip: 'A ranking of products ordered by revenue contribution. Identifies the highest-impact products for merchandising and ad targeting.',
2728
2719
  },
2729
2720
  [MEASURE.ORDERS_CPA]: {
@@ -2735,14 +2726,13 @@ export const ORDERS_MEASURES_MAP = {
2735
2726
  sumSuffix: '',
2736
2727
  avgPrefix: '$',
2737
2728
  avgSuffix: '',
2738
- icon: MEASURE_ICON.SHOPIFY,
2729
+ icon: MEASURE_ICON.CHANNEL,
2739
2730
  measure: MEASURE.ORDERS_CPA,
2740
- category: MEASURE_CATEGORY.ORDERS,
2741
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2731
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2742
2732
  valueType: MeasureValueType.CURRENCY,
2743
2733
  decimalPlaces: 2,
2744
2734
  useCompactNotation: true,
2745
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2735
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2746
2736
  tooltip: 'How much you spend on average to acquire each order. Lower is better.',
2747
2737
  formulaDisplay: 'Total Ad Spend ÷ Orders',
2748
2738
  formula: 'spend / orders',
@@ -2756,35 +2746,33 @@ export const ORDERS_MEASURES_MAP = {
2756
2746
  sumSuffix: '',
2757
2747
  avgPrefix: '$',
2758
2748
  avgSuffix: '',
2759
- icon: MEASURE_ICON.SHOPIFY,
2749
+ icon: MEASURE_ICON.CHANNEL,
2760
2750
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CPA,
2761
- category: MEASURE_CATEGORY.ORDERS,
2762
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2751
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2763
2752
  valueType: MeasureValueType.CURRENCY,
2764
2753
  decimalPlaces: 2,
2765
2754
  useCompactNotation: true,
2766
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2755
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2767
2756
  tooltip: 'How much you spend to acquire each first-time customer order. Critical for understanding customer acquisition efficiency.',
2768
2757
  formulaDisplay: 'Total Ad Spend ÷ New Customer Orders',
2769
2758
  formula: 'spend / new_customer_orders',
2770
2759
  },
2771
2760
  [MEASURE.ORDERS_TOTAL_ROAS]: {
2772
2761
  priority: 1,
2773
- title: 'Return on Ad Spend',
2774
- shortTitle: 'ROAS',
2762
+ title: 'ROAS (Total Sales)',
2763
+ shortTitle: 'ROAS Total',
2775
2764
  description: 'Total Order Revenue divided by Total Ad Spend.',
2776
2765
  sumPrefix: '',
2777
2766
  sumSuffix: 'x',
2778
2767
  avgPrefix: '',
2779
2768
  avgSuffix: 'x',
2780
- icon: MEASURE_ICON.SHOPIFY,
2769
+ icon: MEASURE_ICON.CHANNEL,
2781
2770
  measure: MEASURE.ORDERS_TOTAL_ROAS,
2782
- category: MEASURE_CATEGORY.ORDERS,
2783
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2771
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2784
2772
  valueType: MeasureValueType.MULTIPLIER,
2785
2773
  decimalPlaces: 2,
2786
2774
  useCompactNotation: false,
2787
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2775
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2788
2776
  tooltip: 'How much revenue you earn for every dollar spent on advertising. A 3x ROAS means $3 revenue per $1 spent.',
2789
2777
  formulaDisplay: 'Total Order Revenue ÷ Total Ad Spend',
2790
2778
  formula: 'total_revenue / spend',
@@ -2798,14 +2786,13 @@ export const ORDERS_MEASURES_MAP = {
2798
2786
  sumSuffix: 'x',
2799
2787
  avgPrefix: '',
2800
2788
  avgSuffix: 'x',
2801
- icon: MEASURE_ICON.SHOPIFY,
2789
+ icon: MEASURE_ICON.CHANNEL,
2802
2790
  measure: MEASURE.ORDERS_GROSS_ROAS,
2803
- category: MEASURE_CATEGORY.ORDERS,
2804
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2791
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2805
2792
  valueType: MeasureValueType.MULTIPLIER,
2806
2793
  decimalPlaces: 2,
2807
2794
  useCompactNotation: false,
2808
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2795
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2809
2796
  tooltip: 'Return on ad spend using gross sales (before discounts and refunds are applied).',
2810
2797
  formulaDisplay: 'Gross Order Sales ÷ Total Ad Spend',
2811
2798
  formula: 'gross_sales / spend',
@@ -2819,14 +2806,13 @@ export const ORDERS_MEASURES_MAP = {
2819
2806
  sumSuffix: 'x',
2820
2807
  avgPrefix: '',
2821
2808
  avgSuffix: 'x',
2822
- icon: MEASURE_ICON.SHOPIFY,
2809
+ icon: MEASURE_ICON.CHANNEL,
2823
2810
  measure: MEASURE.ORDERS_NET_ROAS,
2824
- category: MEASURE_CATEGORY.ORDERS,
2825
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2811
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2826
2812
  valueType: MeasureValueType.MULTIPLIER,
2827
2813
  decimalPlaces: 2,
2828
2814
  useCompactNotation: false,
2829
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2815
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2830
2816
  tooltip: 'Return on ad spend using net sales (after discounts and refunds). Most accurate for true profitability.',
2831
2817
  formulaDisplay: 'Net Order Sales ÷ Total Ad Spend',
2832
2818
  formula: 'net_sales / spend',
@@ -2840,56 +2826,53 @@ export const ORDERS_MEASURES_MAP = {
2840
2826
  sumSuffix: 'x',
2841
2827
  avgPrefix: '',
2842
2828
  avgSuffix: 'x',
2843
- icon: MEASURE_ICON.SHOPIFY,
2829
+ icon: MEASURE_ICON.CHANNEL,
2844
2830
  measure: MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_ROAS,
2845
- category: MEASURE_CATEGORY.ORDERS,
2846
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2831
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2847
2832
  valueType: MeasureValueType.MULTIPLIER,
2848
2833
  decimalPlaces: 2,
2849
2834
  useCompactNotation: false,
2850
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2835
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2851
2836
  tooltip: 'Revenue from new customer orders per dollar spent on advertising. Key metric for customer acquisition efficiency.',
2852
2837
  formulaDisplay: 'New Customer Order Revenue ÷ Ad Spend',
2853
2838
  formula: 'nc_revenue / spend',
2854
2839
  },
2855
2840
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_ROAS]: {
2856
2841
  priority: 12,
2857
- title: 'NC ROAS (Gross Sales)',
2842
+ title: 'New Customer ROAS (Gross Sales)',
2858
2843
  shortTitle: 'NC ROAS Gross',
2859
2844
  description: 'New Customer Gross Order Sales divided by Ad Spend.',
2860
2845
  sumPrefix: '',
2861
2846
  sumSuffix: 'x',
2862
2847
  avgPrefix: '',
2863
2848
  avgSuffix: 'x',
2864
- icon: MEASURE_ICON.SHOPIFY,
2849
+ icon: MEASURE_ICON.CHANNEL,
2865
2850
  measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_ROAS,
2866
- category: MEASURE_CATEGORY.ORDERS,
2867
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2851
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2868
2852
  valueType: MeasureValueType.MULTIPLIER,
2869
2853
  decimalPlaces: 2,
2870
2854
  useCompactNotation: false,
2871
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2855
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2872
2856
  tooltip: 'Gross sales from new customer orders per dollar spent on advertising.',
2873
2857
  formulaDisplay: 'NC Gross Order Sales ÷ Ad Spend',
2874
2858
  formula: 'nc_gross_sales / spend',
2875
2859
  },
2876
2860
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_ROAS]: {
2877
2861
  priority: 13,
2878
- title: 'NC ROAS (Net Sales)',
2862
+ title: 'New Customer ROAS (Net Sales)',
2879
2863
  shortTitle: 'NC ROAS Net',
2880
2864
  description: 'New Customer Net Order Sales divided by Ad Spend.',
2881
2865
  sumPrefix: '',
2882
2866
  sumSuffix: 'x',
2883
2867
  avgPrefix: '',
2884
2868
  avgSuffix: 'x',
2885
- icon: MEASURE_ICON.SHOPIFY,
2869
+ icon: MEASURE_ICON.CHANNEL,
2886
2870
  measure: MEASURE.ORDERS_NEW_CUSTOMER_NET_ROAS,
2887
- category: MEASURE_CATEGORY.ORDERS,
2888
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2871
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2889
2872
  valueType: MeasureValueType.MULTIPLIER,
2890
2873
  decimalPlaces: 2,
2891
2874
  useCompactNotation: false,
2892
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2875
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2893
2876
  tooltip: 'Net sales from new customer orders per dollar spent on advertising. Most accurate for true acquisition profitability.',
2894
2877
  formulaDisplay: 'NC Net Order Sales ÷ Ad Spend',
2895
2878
  formula: 'nc_net_sales / spend',
@@ -2903,14 +2886,13 @@ export const ORDERS_MEASURES_MAP = {
2903
2886
  sumSuffix: '',
2904
2887
  avgPrefix: '$',
2905
2888
  avgSuffix: '',
2906
- icon: MEASURE_ICON.SHOPIFY,
2889
+ icon: MEASURE_ICON.CHANNEL,
2907
2890
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CPA,
2908
- category: MEASURE_CATEGORY.ORDERS,
2909
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2891
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2910
2892
  valueType: MeasureValueType.CURRENCY,
2911
2893
  decimalPlaces: 2,
2912
2894
  useCompactNotation: true,
2913
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2895
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2914
2896
  tooltip: 'How much you spend to acquire each repeat customer order. Useful for measuring retention and remarketing campaign efficiency.',
2915
2897
  formulaDisplay: 'Total Ad Spend ÷ Returning Customer Orders',
2916
2898
  formula: 'spend / returning_customer_orders',
@@ -2924,56 +2906,53 @@ export const ORDERS_MEASURES_MAP = {
2924
2906
  sumSuffix: 'x',
2925
2907
  avgPrefix: '',
2926
2908
  avgSuffix: 'x',
2927
- icon: MEASURE_ICON.SHOPIFY,
2909
+ icon: MEASURE_ICON.CHANNEL,
2928
2910
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_ROAS,
2929
- category: MEASURE_CATEGORY.ORDERS,
2930
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2911
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2931
2912
  valueType: MeasureValueType.MULTIPLIER,
2932
2913
  decimalPlaces: 2,
2933
2914
  useCompactNotation: false,
2934
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2915
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2935
2916
  tooltip: 'Revenue from returning customer orders per dollar spent on advertising. Key metric for retention efficiency.',
2936
2917
  formulaDisplay: 'Returning Customer Order Revenue ÷ Ad Spend',
2937
2918
  formula: 'rc_revenue / spend',
2938
2919
  },
2939
2920
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_ROAS]: {
2940
2921
  priority: 22,
2941
- title: 'RC ROAS (Gross Sales)',
2922
+ title: 'Returning Customer ROAS (Gross Sales)',
2942
2923
  shortTitle: 'RC ROAS Gross',
2943
2924
  description: 'Returning Customer Gross Order Sales divided by Ad Spend.',
2944
2925
  sumPrefix: '',
2945
2926
  sumSuffix: 'x',
2946
2927
  avgPrefix: '',
2947
2928
  avgSuffix: 'x',
2948
- icon: MEASURE_ICON.SHOPIFY,
2929
+ icon: MEASURE_ICON.CHANNEL,
2949
2930
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_ROAS,
2950
- category: MEASURE_CATEGORY.ORDERS,
2951
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2931
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2952
2932
  valueType: MeasureValueType.MULTIPLIER,
2953
2933
  decimalPlaces: 2,
2954
2934
  useCompactNotation: false,
2955
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2935
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2956
2936
  tooltip: 'Gross sales from returning customer orders per dollar spent on advertising.',
2957
2937
  formulaDisplay: 'RC Gross Order Sales ÷ Ad Spend',
2958
2938
  formula: 'rc_gross_sales / spend',
2959
2939
  },
2960
2940
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_ROAS]: {
2961
2941
  priority: 23,
2962
- title: 'RC ROAS (Net Sales)',
2942
+ title: 'Returning Customer ROAS (Net Sales)',
2963
2943
  shortTitle: 'RC ROAS Net',
2964
2944
  description: 'Returning Customer Net Order Sales divided by Ad Spend.',
2965
2945
  sumPrefix: '',
2966
2946
  sumSuffix: 'x',
2967
2947
  avgPrefix: '',
2968
2948
  avgSuffix: 'x',
2969
- icon: MEASURE_ICON.SHOPIFY,
2949
+ icon: MEASURE_ICON.CHANNEL,
2970
2950
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_NET_ROAS,
2971
- category: MEASURE_CATEGORY.ORDERS,
2972
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2951
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2973
2952
  valueType: MeasureValueType.MULTIPLIER,
2974
2953
  decimalPlaces: 2,
2975
2954
  useCompactNotation: false,
2976
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2955
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2977
2956
  tooltip: 'Net sales from returning customer orders per dollar spent on advertising. Most accurate for true retention profitability.',
2978
2957
  formulaDisplay: 'RC Net Order Sales ÷ Ad Spend',
2979
2958
  formula: 'rc_net_sales / spend',
@@ -2987,14 +2966,13 @@ export const ORDERS_MEASURES_MAP = {
2987
2966
  sumSuffix: 'x',
2988
2967
  avgPrefix: '',
2989
2968
  avgSuffix: 'x',
2990
- icon: MEASURE_ICON.SHOPIFY,
2969
+ icon: MEASURE_ICON.CHANNEL,
2991
2970
  measure: MEASURE.ORDERS_CM1_ROAS,
2992
- category: MEASURE_CATEGORY.ORDERS,
2993
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2971
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
2994
2972
  valueType: MeasureValueType.MULTIPLIER,
2995
2973
  decimalPlaces: 2,
2996
2974
  useCompactNotation: false,
2997
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2975
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
2998
2976
  tooltip: 'How much gross margin (CM1) you earn for every dollar spent on advertising.',
2999
2977
  formulaDisplay: 'CM1 ÷ Total Ad Spend',
3000
2978
  formula: 'cm1 / spend',
@@ -3009,14 +2987,13 @@ export const ORDERS_MEASURES_MAP = {
3009
2987
  sumSuffix: 'x',
3010
2988
  avgPrefix: '',
3011
2989
  avgSuffix: 'x',
3012
- icon: MEASURE_ICON.SHOPIFY,
2990
+ icon: MEASURE_ICON.CHANNEL,
3013
2991
  measure: MEASURE.ORDERS_CM2_ROAS,
3014
- category: MEASURE_CATEGORY.ORDERS,
3015
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
2992
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3016
2993
  valueType: MeasureValueType.MULTIPLIER,
3017
2994
  decimalPlaces: 2,
3018
2995
  useCompactNotation: false,
3019
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
2996
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3020
2997
  tooltip: 'How much contribution margin after marketing (CM2) you earn for every dollar spent on advertising.',
3021
2998
  formulaDisplay: 'CM2 ÷ Total Ad Spend',
3022
2999
  formula: 'cm2 / spend',
@@ -3031,140 +3008,133 @@ export const ORDERS_MEASURES_MAP = {
3031
3008
  sumSuffix: 'x',
3032
3009
  avgPrefix: '',
3033
3010
  avgSuffix: 'x',
3034
- icon: MEASURE_ICON.SHOPIFY,
3011
+ icon: MEASURE_ICON.CHANNEL,
3035
3012
  measure: MEASURE.ORDERS_CM3_ROAS,
3036
- category: MEASURE_CATEGORY.ORDERS,
3037
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3013
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3038
3014
  valueType: MeasureValueType.MULTIPLIER,
3039
3015
  decimalPlaces: 2,
3040
3016
  useCompactNotation: false,
3041
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3017
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3042
3018
  tooltip: 'How much contribution margin after all costs (CM3) you earn for every dollar spent on advertising.',
3043
3019
  formulaDisplay: 'CM3 ÷ Total Ad Spend',
3044
3020
  formula: 'cm3 / spend',
3045
3021
  },
3046
3022
  [MEASURE.ORDERS_NEW_CUSTOMER_CM1_ROAS]: {
3047
3023
  priority: 54,
3048
- title: 'NC CM1 ROAS',
3024
+ title: 'New Customer CM1 ROAS',
3049
3025
  shortTitle: 'NC CM1 ROAS',
3050
3026
  description: 'New Customer CM1 (Gross Margin) divided by Ad Spend.',
3051
3027
  sumPrefix: '',
3052
3028
  sumSuffix: 'x',
3053
3029
  avgPrefix: '',
3054
3030
  avgSuffix: 'x',
3055
- icon: MEASURE_ICON.SHOPIFY,
3031
+ icon: MEASURE_ICON.CHANNEL,
3056
3032
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1_ROAS,
3057
- category: MEASURE_CATEGORY.ORDERS,
3058
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3033
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3059
3034
  valueType: MeasureValueType.MULTIPLIER,
3060
3035
  decimalPlaces: 2,
3061
3036
  useCompactNotation: false,
3062
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3037
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3063
3038
  tooltip: 'New customer gross margin (CM1) per dollar spent on advertising.',
3064
3039
  formulaDisplay: 'NC CM1 ÷ Ad Spend',
3065
3040
  formula: 'nc_cm1 / spend',
3066
3041
  },
3067
3042
  [MEASURE.ORDERS_NEW_CUSTOMER_CM2_ROAS]: {
3068
3043
  priority: 55,
3069
- title: 'NC CM2 ROAS',
3044
+ title: 'New Customer CM2 ROAS',
3070
3045
  shortTitle: 'NC CM2 ROAS',
3071
3046
  description: 'New Customer CM2 divided by Ad Spend.',
3072
3047
  sumPrefix: '',
3073
3048
  sumSuffix: 'x',
3074
3049
  avgPrefix: '',
3075
3050
  avgSuffix: 'x',
3076
- icon: MEASURE_ICON.SHOPIFY,
3051
+ icon: MEASURE_ICON.CHANNEL,
3077
3052
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2_ROAS,
3078
- category: MEASURE_CATEGORY.ORDERS,
3079
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3053
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3080
3054
  valueType: MeasureValueType.MULTIPLIER,
3081
3055
  decimalPlaces: 2,
3082
3056
  useCompactNotation: false,
3083
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3057
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3084
3058
  tooltip: 'New customer contribution margin after marketing (CM2) per dollar spent on advertising.',
3085
3059
  formulaDisplay: 'NC CM2 ÷ Ad Spend',
3086
3060
  formula: 'nc_cm2 / spend',
3087
3061
  },
3088
3062
  [MEASURE.ORDERS_NEW_CUSTOMER_CM3_ROAS]: {
3089
3063
  priority: 56,
3090
- title: 'NC CM3 ROAS',
3064
+ title: 'New Customer CM3 ROAS',
3091
3065
  shortTitle: 'NC CM3 ROAS',
3092
3066
  description: 'New Customer CM3 divided by Ad Spend.',
3093
3067
  sumPrefix: '',
3094
3068
  sumSuffix: 'x',
3095
3069
  avgPrefix: '',
3096
3070
  avgSuffix: 'x',
3097
- icon: MEASURE_ICON.SHOPIFY,
3071
+ icon: MEASURE_ICON.CHANNEL,
3098
3072
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3_ROAS,
3099
- category: MEASURE_CATEGORY.ORDERS,
3100
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3073
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3101
3074
  valueType: MeasureValueType.MULTIPLIER,
3102
3075
  decimalPlaces: 2,
3103
3076
  useCompactNotation: false,
3104
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3077
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3105
3078
  tooltip: 'New customer contribution margin after all costs (CM3) per dollar spent on advertising.',
3106
3079
  formulaDisplay: 'NC CM3 ÷ Ad Spend',
3107
3080
  formula: 'nc_cm3 / spend',
3108
3081
  },
3109
3082
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_ROAS]: {
3110
3083
  priority: 57,
3111
- title: 'RC CM1 ROAS',
3084
+ title: 'Returning Customer CM1 ROAS',
3112
3085
  shortTitle: 'RC CM1 ROAS',
3113
3086
  description: 'Returning Customer CM1 (Gross Margin) divided by Ad Spend.',
3114
3087
  sumPrefix: '',
3115
3088
  sumSuffix: 'x',
3116
3089
  avgPrefix: '',
3117
3090
  avgSuffix: 'x',
3118
- icon: MEASURE_ICON.SHOPIFY,
3091
+ icon: MEASURE_ICON.CHANNEL,
3119
3092
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_ROAS,
3120
- category: MEASURE_CATEGORY.ORDERS,
3121
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3093
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3122
3094
  valueType: MeasureValueType.MULTIPLIER,
3123
3095
  decimalPlaces: 2,
3124
3096
  useCompactNotation: false,
3125
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3097
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3126
3098
  tooltip: 'Returning customer gross margin (CM1) per dollar spent on advertising.',
3127
3099
  formulaDisplay: 'RC CM1 ÷ Ad Spend',
3128
3100
  formula: 'rc_cm1 / spend',
3129
3101
  },
3130
3102
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_ROAS]: {
3131
3103
  priority: 58,
3132
- title: 'RC CM2 ROAS',
3104
+ title: 'Returning Customer CM2 ROAS',
3133
3105
  shortTitle: 'RC CM2 ROAS',
3134
3106
  description: 'Returning Customer CM2 divided by Ad Spend.',
3135
3107
  sumPrefix: '',
3136
3108
  sumSuffix: 'x',
3137
3109
  avgPrefix: '',
3138
3110
  avgSuffix: 'x',
3139
- icon: MEASURE_ICON.SHOPIFY,
3111
+ icon: MEASURE_ICON.CHANNEL,
3140
3112
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_ROAS,
3141
- category: MEASURE_CATEGORY.ORDERS,
3142
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3113
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3143
3114
  valueType: MeasureValueType.MULTIPLIER,
3144
3115
  decimalPlaces: 2,
3145
3116
  useCompactNotation: false,
3146
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3117
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3147
3118
  tooltip: 'Returning customer contribution margin after marketing (CM2) per dollar spent on advertising.',
3148
3119
  formulaDisplay: 'RC CM2 ÷ Ad Spend',
3149
3120
  formula: 'rc_cm2 / spend',
3150
3121
  },
3151
3122
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_ROAS]: {
3152
3123
  priority: 59,
3153
- title: 'RC CM3 ROAS',
3124
+ title: 'Returning Customer CM3 ROAS',
3154
3125
  shortTitle: 'RC CM3 ROAS',
3155
3126
  description: 'Returning Customer CM3 divided by Ad Spend.',
3156
3127
  sumPrefix: '',
3157
3128
  sumSuffix: 'x',
3158
3129
  avgPrefix: '',
3159
3130
  avgSuffix: 'x',
3160
- icon: MEASURE_ICON.SHOPIFY,
3131
+ icon: MEASURE_ICON.CHANNEL,
3161
3132
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_ROAS,
3162
- category: MEASURE_CATEGORY.ORDERS,
3163
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3133
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3164
3134
  valueType: MeasureValueType.MULTIPLIER,
3165
3135
  decimalPlaces: 2,
3166
3136
  useCompactNotation: false,
3167
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3137
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3168
3138
  tooltip: 'Returning customer contribution margin after all costs (CM3) per dollar spent on advertising.',
3169
3139
  formulaDisplay: 'RC CM3 ÷ Ad Spend',
3170
3140
  formula: 'rc_cm3 / spend',
@@ -3178,14 +3148,13 @@ export const ORDERS_MEASURES_MAP = {
3178
3148
  sumSuffix: '%',
3179
3149
  avgPrefix: '',
3180
3150
  avgSuffix: '%',
3181
- icon: MEASURE_ICON.SHOPIFY,
3151
+ icon: MEASURE_ICON.CHANNEL,
3182
3152
  measure: MEASURE.ORDERS_TOTAL_MER,
3183
- category: MEASURE_CATEGORY.ORDERS,
3184
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3153
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3185
3154
  valueType: MeasureValueType.PERCENTAGE,
3186
3155
  decimalPlaces: 2,
3187
3156
  useCompactNotation: false,
3188
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3157
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3189
3158
  tooltip: 'What percentage of your order revenue is spent on advertising. Lower is better—it means more revenue per ad dollar.',
3190
3159
  formulaDisplay: '(Total Ad Spend ÷ Total Order Revenue) × 100',
3191
3160
  formula: '(spend / total_revenue) * 100',
@@ -3199,14 +3168,13 @@ export const ORDERS_MEASURES_MAP = {
3199
3168
  sumSuffix: '%',
3200
3169
  avgPrefix: '',
3201
3170
  avgSuffix: '%',
3202
- icon: MEASURE_ICON.SHOPIFY,
3171
+ icon: MEASURE_ICON.CHANNEL,
3203
3172
  measure: MEASURE.ORDERS_GROSS_MER,
3204
- category: MEASURE_CATEGORY.ORDERS,
3205
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3173
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3206
3174
  valueType: MeasureValueType.PERCENTAGE,
3207
3175
  decimalPlaces: 2,
3208
3176
  useCompactNotation: false,
3209
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3177
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3210
3178
  tooltip: 'What percentage of gross order sales (before discounts and refunds) is spent on advertising.',
3211
3179
  formulaDisplay: '(Total Ad Spend ÷ Gross Order Sales) × 100',
3212
3180
  formula: '(spend / gross_sales) * 100',
@@ -3220,35 +3188,33 @@ export const ORDERS_MEASURES_MAP = {
3220
3188
  sumSuffix: '%',
3221
3189
  avgPrefix: '',
3222
3190
  avgSuffix: '%',
3223
- icon: MEASURE_ICON.SHOPIFY,
3191
+ icon: MEASURE_ICON.CHANNEL,
3224
3192
  measure: MEASURE.ORDERS_NET_MER,
3225
- category: MEASURE_CATEGORY.ORDERS,
3226
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3193
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3227
3194
  valueType: MeasureValueType.PERCENTAGE,
3228
3195
  decimalPlaces: 2,
3229
3196
  useCompactNotation: false,
3230
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3197
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3231
3198
  tooltip: 'What percentage of net order sales (after discounts and refunds) is spent on advertising.',
3232
3199
  formulaDisplay: '(Total Ad Spend ÷ Net Order Sales) × 100',
3233
3200
  formula: '(spend / net_sales) * 100',
3234
3201
  },
3235
3202
  [MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_MER]: {
3236
3203
  priority: 36,
3237
- title: 'NC Marketing Efficiency Ratio',
3204
+ title: 'New Customer Marketing Efficiency Ratio',
3238
3205
  shortTitle: 'NC MER',
3239
3206
  description: 'Marketing Efficiency Ratio using New Customer Order Revenue.',
3240
3207
  sumPrefix: '',
3241
3208
  sumSuffix: '%',
3242
3209
  avgPrefix: '',
3243
3210
  avgSuffix: '%',
3244
- icon: MEASURE_ICON.SHOPIFY,
3211
+ icon: MEASURE_ICON.CHANNEL,
3245
3212
  measure: MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_MER,
3246
- category: MEASURE_CATEGORY.ORDERS,
3247
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3213
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3248
3214
  valueType: MeasureValueType.PERCENTAGE,
3249
3215
  decimalPlaces: 2,
3250
3216
  useCompactNotation: false,
3251
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3217
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3252
3218
  tooltip: 'What percentage of new customer order revenue is spent on advertising. Lower is better.',
3253
3219
  formulaDisplay: '(Ad Spend ÷ NC Order Revenue) × 100',
3254
3220
  formula: '(spend / nc_revenue) * 100',
@@ -3262,98 +3228,93 @@ export const ORDERS_MEASURES_MAP = {
3262
3228
  sumSuffix: '%',
3263
3229
  avgPrefix: '',
3264
3230
  avgSuffix: '%',
3265
- icon: MEASURE_ICON.SHOPIFY,
3231
+ icon: MEASURE_ICON.CHANNEL,
3266
3232
  measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_MER,
3267
- category: MEASURE_CATEGORY.ORDERS,
3268
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3233
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3269
3234
  valueType: MeasureValueType.PERCENTAGE,
3270
3235
  decimalPlaces: 2,
3271
3236
  useCompactNotation: false,
3272
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3237
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3273
3238
  tooltip: 'What percentage of new customer gross order sales is spent on advertising.',
3274
3239
  formulaDisplay: '(Ad Spend ÷ NC Gross Order Sales) × 100',
3275
3240
  formula: '(spend / nc_gross_sales) * 100',
3276
3241
  },
3277
3242
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_MER]: {
3278
3243
  priority: 38,
3279
- title: 'NC MER (Net Sales)',
3244
+ title: 'New Customer MER (Net Sales)',
3280
3245
  shortTitle: 'NC MER Net',
3281
3246
  description: 'Marketing Efficiency Ratio using New Customer Net Order Sales.',
3282
3247
  sumPrefix: '',
3283
3248
  sumSuffix: '%',
3284
3249
  avgPrefix: '',
3285
3250
  avgSuffix: '%',
3286
- icon: MEASURE_ICON.SHOPIFY,
3251
+ icon: MEASURE_ICON.CHANNEL,
3287
3252
  measure: MEASURE.ORDERS_NEW_CUSTOMER_NET_MER,
3288
- category: MEASURE_CATEGORY.ORDERS,
3289
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3253
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3290
3254
  valueType: MeasureValueType.PERCENTAGE,
3291
3255
  decimalPlaces: 2,
3292
3256
  useCompactNotation: false,
3293
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3257
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3294
3258
  tooltip: 'What percentage of new customer net order sales is spent on advertising.',
3295
3259
  formulaDisplay: '(Ad Spend ÷ NC Net Order Sales) × 100',
3296
3260
  formula: '(spend / nc_net_sales) * 100',
3297
3261
  },
3298
3262
  [MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_MER]: {
3299
3263
  priority: 41,
3300
- title: 'RC Marketing Efficiency Ratio',
3264
+ title: 'Returning Customer Marketing Efficiency Ratio',
3301
3265
  shortTitle: 'RC MER',
3302
3266
  description: 'Marketing Efficiency Ratio using Returning Customer Order Revenue.',
3303
3267
  sumPrefix: '',
3304
3268
  sumSuffix: '%',
3305
3269
  avgPrefix: '',
3306
3270
  avgSuffix: '%',
3307
- icon: MEASURE_ICON.SHOPIFY,
3271
+ icon: MEASURE_ICON.CHANNEL,
3308
3272
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_MER,
3309
- category: MEASURE_CATEGORY.ORDERS,
3310
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3273
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3311
3274
  valueType: MeasureValueType.PERCENTAGE,
3312
3275
  decimalPlaces: 2,
3313
3276
  useCompactNotation: false,
3314
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3277
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3315
3278
  tooltip: 'What percentage of returning customer order revenue is spent on advertising. Lower is better.',
3316
3279
  formulaDisplay: '(Ad Spend ÷ RC Order Revenue) × 100',
3317
3280
  formula: '(spend / rc_revenue) * 100',
3318
3281
  },
3319
3282
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_MER]: {
3320
3283
  priority: 42,
3321
- title: 'RC MER (Gross Sales)',
3284
+ title: 'Returning Customer MER (Gross Sales)',
3322
3285
  shortTitle: 'RC MER Gross',
3323
3286
  description: 'Marketing Efficiency Ratio using Returning Customer Gross Order Sales.',
3324
3287
  sumPrefix: '',
3325
3288
  sumSuffix: '%',
3326
3289
  avgPrefix: '',
3327
3290
  avgSuffix: '%',
3328
- icon: MEASURE_ICON.SHOPIFY,
3291
+ icon: MEASURE_ICON.CHANNEL,
3329
3292
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_MER,
3330
- category: MEASURE_CATEGORY.ORDERS,
3331
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3293
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3332
3294
  valueType: MeasureValueType.PERCENTAGE,
3333
3295
  decimalPlaces: 2,
3334
3296
  useCompactNotation: false,
3335
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3297
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3336
3298
  tooltip: 'What percentage of returning customer gross order sales is spent on advertising.',
3337
3299
  formulaDisplay: '(Ad Spend ÷ RC Gross Order Sales) × 100',
3338
3300
  formula: '(spend / rc_gross_sales) * 100',
3339
3301
  },
3340
3302
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_MER]: {
3341
3303
  priority: 43,
3342
- title: 'RC MER (Net Sales)',
3304
+ title: 'Returning Customer MER (Net Sales)',
3343
3305
  shortTitle: 'RC MER Net',
3344
3306
  description: 'Marketing Efficiency Ratio using Returning Customer Net Order Sales.',
3345
3307
  sumPrefix: '',
3346
3308
  sumSuffix: '%',
3347
3309
  avgPrefix: '',
3348
3310
  avgSuffix: '%',
3349
- icon: MEASURE_ICON.SHOPIFY,
3311
+ icon: MEASURE_ICON.CHANNEL,
3350
3312
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_NET_MER,
3351
- category: MEASURE_CATEGORY.ORDERS,
3352
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3313
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3353
3314
  valueType: MeasureValueType.PERCENTAGE,
3354
3315
  decimalPlaces: 2,
3355
3316
  useCompactNotation: false,
3356
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3317
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3357
3318
  tooltip: 'What percentage of returning customer net order sales is spent on advertising.',
3358
3319
  formulaDisplay: '(Ad Spend ÷ RC Net Order Sales) × 100',
3359
3320
  formula: '(spend / rc_net_sales) * 100',
@@ -3367,14 +3328,13 @@ export const ORDERS_MEASURES_MAP = {
3367
3328
  sumSuffix: '%',
3368
3329
  avgPrefix: '',
3369
3330
  avgSuffix: '%',
3370
- icon: MEASURE_ICON.SHOPIFY,
3331
+ icon: MEASURE_ICON.CHANNEL,
3371
3332
  measure: MEASURE.ORDERS_CM1_MER,
3372
- category: MEASURE_CATEGORY.ORDERS,
3373
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3333
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3374
3334
  valueType: MeasureValueType.PERCENTAGE,
3375
3335
  decimalPlaces: 2,
3376
3336
  useCompactNotation: false,
3377
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3337
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3378
3338
  tooltip: 'What percentage of your gross margin (CM1) is spent on advertising. Lower is better.',
3379
3339
  formulaDisplay: '(Total Ad Spend ÷ CM1) × 100',
3380
3340
  formula: '(spend / cm1) * 100',
@@ -3389,14 +3349,13 @@ export const ORDERS_MEASURES_MAP = {
3389
3349
  sumSuffix: '%',
3390
3350
  avgPrefix: '',
3391
3351
  avgSuffix: '%',
3392
- icon: MEASURE_ICON.SHOPIFY,
3352
+ icon: MEASURE_ICON.CHANNEL,
3393
3353
  measure: MEASURE.ORDERS_CM2_MER,
3394
- category: MEASURE_CATEGORY.ORDERS,
3395
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3354
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3396
3355
  valueType: MeasureValueType.PERCENTAGE,
3397
3356
  decimalPlaces: 2,
3398
3357
  useCompactNotation: false,
3399
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3358
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3400
3359
  tooltip: 'What percentage of your contribution margin after marketing (CM2) is spent on advertising.',
3401
3360
  formulaDisplay: '(Total Ad Spend ÷ CM2) × 100',
3402
3361
  formula: '(spend / cm2) * 100',
@@ -3411,140 +3370,133 @@ export const ORDERS_MEASURES_MAP = {
3411
3370
  sumSuffix: '%',
3412
3371
  avgPrefix: '',
3413
3372
  avgSuffix: '%',
3414
- icon: MEASURE_ICON.SHOPIFY,
3373
+ icon: MEASURE_ICON.CHANNEL,
3415
3374
  measure: MEASURE.ORDERS_CM3_MER,
3416
- category: MEASURE_CATEGORY.ORDERS,
3417
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3375
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3418
3376
  valueType: MeasureValueType.PERCENTAGE,
3419
3377
  decimalPlaces: 2,
3420
3378
  useCompactNotation: false,
3421
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3379
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3422
3380
  tooltip: 'What percentage of your contribution margin after all costs (CM3) is spent on advertising.',
3423
3381
  formulaDisplay: '(Total Ad Spend ÷ CM3) × 100',
3424
3382
  formula: '(spend / cm3) * 100',
3425
3383
  },
3426
3384
  [MEASURE.ORDERS_NEW_CUSTOMER_CM1_MER]: {
3427
3385
  priority: 64,
3428
- title: 'NC CM1 MER',
3386
+ title: 'New Customer CM1 MER',
3429
3387
  shortTitle: 'NC CM1 MER',
3430
3388
  description: 'Marketing Efficiency Ratio using New Customer CM1.',
3431
3389
  sumPrefix: '',
3432
3390
  sumSuffix: '%',
3433
3391
  avgPrefix: '',
3434
3392
  avgSuffix: '%',
3435
- icon: MEASURE_ICON.SHOPIFY,
3393
+ icon: MEASURE_ICON.CHANNEL,
3436
3394
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1_MER,
3437
- category: MEASURE_CATEGORY.ORDERS,
3438
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3395
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3439
3396
  valueType: MeasureValueType.PERCENTAGE,
3440
3397
  decimalPlaces: 2,
3441
3398
  useCompactNotation: false,
3442
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3399
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3443
3400
  tooltip: 'What percentage of new customer gross margin (CM1) is spent on advertising.',
3444
3401
  formulaDisplay: '(Ad Spend ÷ NC CM1) × 100',
3445
3402
  formula: '(spend / nc_cm1) * 100',
3446
3403
  },
3447
3404
  [MEASURE.ORDERS_NEW_CUSTOMER_CM2_MER]: {
3448
3405
  priority: 65,
3449
- title: 'NC CM2 MER',
3406
+ title: 'New Customer CM2 MER',
3450
3407
  shortTitle: 'NC CM2 MER',
3451
3408
  description: 'Marketing Efficiency Ratio using New Customer CM2.',
3452
3409
  sumPrefix: '',
3453
3410
  sumSuffix: '%',
3454
3411
  avgPrefix: '',
3455
3412
  avgSuffix: '%',
3456
- icon: MEASURE_ICON.SHOPIFY,
3413
+ icon: MEASURE_ICON.CHANNEL,
3457
3414
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2_MER,
3458
- category: MEASURE_CATEGORY.ORDERS,
3459
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3415
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3460
3416
  valueType: MeasureValueType.PERCENTAGE,
3461
3417
  decimalPlaces: 2,
3462
3418
  useCompactNotation: false,
3463
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3419
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3464
3420
  tooltip: 'What percentage of new customer contribution margin after marketing (CM2) is spent on advertising.',
3465
3421
  formulaDisplay: '(Ad Spend ÷ NC CM2) × 100',
3466
3422
  formula: '(spend / nc_cm2) * 100',
3467
3423
  },
3468
3424
  [MEASURE.ORDERS_NEW_CUSTOMER_CM3_MER]: {
3469
3425
  priority: 66,
3470
- title: 'NC CM3 MER',
3426
+ title: 'New Customer CM3 MER',
3471
3427
  shortTitle: 'NC CM3 MER',
3472
3428
  description: 'Marketing Efficiency Ratio using New Customer CM3.',
3473
3429
  sumPrefix: '',
3474
3430
  sumSuffix: '%',
3475
3431
  avgPrefix: '',
3476
3432
  avgSuffix: '%',
3477
- icon: MEASURE_ICON.SHOPIFY,
3433
+ icon: MEASURE_ICON.CHANNEL,
3478
3434
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3_MER,
3479
- category: MEASURE_CATEGORY.ORDERS,
3480
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3435
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3481
3436
  valueType: MeasureValueType.PERCENTAGE,
3482
3437
  decimalPlaces: 2,
3483
3438
  useCompactNotation: false,
3484
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3439
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3485
3440
  tooltip: 'What percentage of new customer contribution margin after all costs (CM3) is spent on advertising.',
3486
3441
  formulaDisplay: '(Ad Spend ÷ NC CM3) × 100',
3487
3442
  formula: '(spend / nc_cm3) * 100',
3488
3443
  },
3489
3444
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_MER]: {
3490
3445
  priority: 67,
3491
- title: 'RC CM1 MER',
3446
+ title: 'Returning Customer CM1 MER',
3492
3447
  shortTitle: 'RC CM1 MER',
3493
3448
  description: 'Marketing Efficiency Ratio using Returning Customer CM1.',
3494
3449
  sumPrefix: '',
3495
3450
  sumSuffix: '%',
3496
3451
  avgPrefix: '',
3497
3452
  avgSuffix: '%',
3498
- icon: MEASURE_ICON.SHOPIFY,
3453
+ icon: MEASURE_ICON.CHANNEL,
3499
3454
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_MER,
3500
- category: MEASURE_CATEGORY.ORDERS,
3501
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3455
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3502
3456
  valueType: MeasureValueType.PERCENTAGE,
3503
3457
  decimalPlaces: 2,
3504
3458
  useCompactNotation: false,
3505
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3459
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3506
3460
  tooltip: 'What percentage of returning customer gross margin (CM1) is spent on advertising.',
3507
3461
  formulaDisplay: '(Ad Spend ÷ RC CM1) × 100',
3508
3462
  formula: '(spend / rc_cm1) * 100',
3509
3463
  },
3510
3464
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_MER]: {
3511
3465
  priority: 68,
3512
- title: 'RC CM2 MER',
3466
+ title: 'Returning Customer CM2 MER',
3513
3467
  shortTitle: 'RC CM2 MER',
3514
3468
  description: 'Marketing Efficiency Ratio using Returning Customer CM2.',
3515
3469
  sumPrefix: '',
3516
3470
  sumSuffix: '%',
3517
3471
  avgPrefix: '',
3518
3472
  avgSuffix: '%',
3519
- icon: MEASURE_ICON.SHOPIFY,
3473
+ icon: MEASURE_ICON.CHANNEL,
3520
3474
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_MER,
3521
- category: MEASURE_CATEGORY.ORDERS,
3522
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3475
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3523
3476
  valueType: MeasureValueType.PERCENTAGE,
3524
3477
  decimalPlaces: 2,
3525
3478
  useCompactNotation: false,
3526
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3479
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3527
3480
  tooltip: 'What percentage of returning customer contribution margin after marketing (CM2) is spent on advertising.',
3528
3481
  formulaDisplay: '(Ad Spend ÷ RC CM2) × 100',
3529
3482
  formula: '(spend / rc_cm2) * 100',
3530
3483
  },
3531
3484
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_MER]: {
3532
3485
  priority: 69,
3533
- title: 'RC CM3 MER',
3486
+ title: 'Returning Customer CM3 MER',
3534
3487
  shortTitle: 'RC CM3 MER',
3535
3488
  description: 'Marketing Efficiency Ratio using Returning Customer CM3.',
3536
3489
  sumPrefix: '',
3537
3490
  sumSuffix: '%',
3538
3491
  avgPrefix: '',
3539
3492
  avgSuffix: '%',
3540
- icon: MEASURE_ICON.SHOPIFY,
3493
+ icon: MEASURE_ICON.CHANNEL,
3541
3494
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_MER,
3542
- category: MEASURE_CATEGORY.ORDERS,
3543
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3495
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3544
3496
  valueType: MeasureValueType.PERCENTAGE,
3545
3497
  decimalPlaces: 2,
3546
3498
  useCompactNotation: false,
3547
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3499
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3548
3500
  tooltip: 'What percentage of returning customer contribution margin after all costs (CM3) is spent on advertising.',
3549
3501
  formulaDisplay: '(Ad Spend ÷ RC CM3) × 100',
3550
3502
  formula: '(spend / rc_cm3) * 100',
@@ -3558,14 +3510,13 @@ export const ORDERS_MEASURES_MAP = {
3558
3510
  sumSuffix: '',
3559
3511
  avgPrefix: '$',
3560
3512
  avgSuffix: '',
3561
- icon: MEASURE_ICON.SHOPIFY,
3513
+ icon: MEASURE_ICON.CHANNEL,
3562
3514
  measure: MEASURE.ORDERS_TOTAL_RAAD,
3563
- category: MEASURE_CATEGORY.ORDERS,
3564
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3515
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3565
3516
  valueType: MeasureValueType.CURRENCY,
3566
3517
  decimalPlaces: 2,
3567
3518
  useCompactNotation: true,
3568
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3519
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3569
3520
  tooltip: 'Order revenue remaining after subtracting advertising costs. A quick measure of marketing profitability.',
3570
3521
  formulaDisplay: 'Total Order Revenue − Ad Spend',
3571
3522
  formula: 'total_revenue - spend',
@@ -3579,14 +3530,13 @@ export const ORDERS_MEASURES_MAP = {
3579
3530
  sumSuffix: '',
3580
3531
  avgPrefix: '$',
3581
3532
  avgSuffix: '',
3582
- icon: MEASURE_ICON.SHOPIFY,
3533
+ icon: MEASURE_ICON.CHANNEL,
3583
3534
  measure: MEASURE.ORDERS_GROSS_RAAD,
3584
- category: MEASURE_CATEGORY.ORDERS,
3585
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3535
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3586
3536
  valueType: MeasureValueType.CURRENCY,
3587
3537
  decimalPlaces: 2,
3588
3538
  useCompactNotation: true,
3589
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3539
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3590
3540
  tooltip: 'Gross order sales remaining after subtracting advertising costs.',
3591
3541
  formulaDisplay: 'Gross Order Sales − Ad Spend',
3592
3542
  formula: 'gross_sales - spend',
@@ -3600,14 +3550,13 @@ export const ORDERS_MEASURES_MAP = {
3600
3550
  sumSuffix: '',
3601
3551
  avgPrefix: '$',
3602
3552
  avgSuffix: '',
3603
- icon: MEASURE_ICON.SHOPIFY,
3553
+ icon: MEASURE_ICON.CHANNEL,
3604
3554
  measure: MEASURE.ORDERS_NET_RAAD,
3605
- category: MEASURE_CATEGORY.ORDERS,
3606
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3555
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3607
3556
  valueType: MeasureValueType.CURRENCY,
3608
3557
  decimalPlaces: 2,
3609
3558
  useCompactNotation: true,
3610
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3559
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3611
3560
  tooltip: 'Net order sales remaining after subtracting advertising costs. Most accurate for true profitability.',
3612
3561
  formulaDisplay: 'Net Order Sales − Ad Spend',
3613
3562
  formula: 'net_sales - spend',
@@ -3621,14 +3570,13 @@ export const ORDERS_MEASURES_MAP = {
3621
3570
  sumSuffix: '%',
3622
3571
  avgPrefix: '',
3623
3572
  avgSuffix: '%',
3624
- icon: MEASURE_ICON.SHOPIFY,
3573
+ icon: MEASURE_ICON.CHANNEL,
3625
3574
  measure: MEASURE.ORDERS_TOTAL_RAAD_PERCENT,
3626
- category: MEASURE_CATEGORY.ORDERS,
3627
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3575
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3628
3576
  valueType: MeasureValueType.PERCENTAGE,
3629
3577
  decimalPlaces: 2,
3630
3578
  useCompactNotation: false,
3631
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3579
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3632
3580
  tooltip: 'What percentage of your total order revenue remains after ad spend. Higher is better.',
3633
3581
  formulaDisplay: '(RAAD ÷ Total Revenue) × 100',
3634
3582
  formula: '((total_revenue - spend) / total_revenue) * 100',
@@ -3642,14 +3590,13 @@ export const ORDERS_MEASURES_MAP = {
3642
3590
  sumSuffix: '%',
3643
3591
  avgPrefix: '',
3644
3592
  avgSuffix: '%',
3645
- icon: MEASURE_ICON.SHOPIFY,
3593
+ icon: MEASURE_ICON.CHANNEL,
3646
3594
  measure: MEASURE.ORDERS_GROSS_RAAD_PERCENT,
3647
- category: MEASURE_CATEGORY.ORDERS,
3648
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3595
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3649
3596
  valueType: MeasureValueType.PERCENTAGE,
3650
3597
  decimalPlaces: 2,
3651
3598
  useCompactNotation: false,
3652
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3599
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3653
3600
  tooltip: 'What percentage of your gross order sales remains after ad spend.',
3654
3601
  formulaDisplay: '(RAAD Gross ÷ Gross Sales) × 100',
3655
3602
  formula: '((gross_sales - spend) / gross_sales) * 100',
@@ -3663,266 +3610,253 @@ export const ORDERS_MEASURES_MAP = {
3663
3610
  sumSuffix: '%',
3664
3611
  avgPrefix: '',
3665
3612
  avgSuffix: '%',
3666
- icon: MEASURE_ICON.SHOPIFY,
3613
+ icon: MEASURE_ICON.CHANNEL,
3667
3614
  measure: MEASURE.ORDERS_NET_RAAD_PERCENT,
3668
- category: MEASURE_CATEGORY.ORDERS,
3669
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3615
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3670
3616
  valueType: MeasureValueType.PERCENTAGE,
3671
3617
  decimalPlaces: 2,
3672
3618
  useCompactNotation: false,
3673
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3619
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3674
3620
  tooltip: 'What percentage of your net order sales remains after ad spend. Most accurate profitability view.',
3675
3621
  formulaDisplay: '(RAAD Net ÷ Net Sales) × 100',
3676
3622
  formula: '((net_sales - spend) / net_sales) * 100',
3677
3623
  },
3678
3624
  [MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_RAAD]: {
3679
3625
  priority: 77,
3680
- title: 'NC Revenue After Ad Spend',
3626
+ title: 'New Customer Revenue After Ad Spend',
3681
3627
  shortTitle: 'NC RAAD',
3682
3628
  description: 'New Customer Order Revenue minus Ad Spend.',
3683
3629
  sumPrefix: '$',
3684
3630
  sumSuffix: '',
3685
3631
  avgPrefix: '$',
3686
3632
  avgSuffix: '',
3687
- icon: MEASURE_ICON.SHOPIFY,
3633
+ icon: MEASURE_ICON.CHANNEL,
3688
3634
  measure: MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_RAAD,
3689
- category: MEASURE_CATEGORY.ORDERS,
3690
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3635
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3691
3636
  valueType: MeasureValueType.CURRENCY,
3692
3637
  decimalPlaces: 2,
3693
3638
  useCompactNotation: true,
3694
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3639
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3695
3640
  tooltip: 'New customer order revenue remaining after subtracting advertising costs.',
3696
3641
  formulaDisplay: 'NC Order Revenue − Ad Spend',
3697
3642
  formula: 'nc_revenue - spend',
3698
3643
  },
3699
3644
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RAAD]: {
3700
3645
  priority: 78,
3701
- title: 'NC RAAD (Gross Sales)',
3646
+ title: 'New Customer RAAD (Gross Sales)',
3702
3647
  shortTitle: 'NC RAAD Gross',
3703
3648
  description: 'New Customer Gross Order Sales minus Ad Spend.',
3704
3649
  sumPrefix: '$',
3705
3650
  sumSuffix: '',
3706
3651
  avgPrefix: '$',
3707
3652
  avgSuffix: '',
3708
- icon: MEASURE_ICON.SHOPIFY,
3653
+ icon: MEASURE_ICON.CHANNEL,
3709
3654
  measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RAAD,
3710
- category: MEASURE_CATEGORY.ORDERS,
3711
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3655
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3712
3656
  valueType: MeasureValueType.CURRENCY,
3713
3657
  decimalPlaces: 2,
3714
3658
  useCompactNotation: true,
3715
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3659
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3716
3660
  tooltip: 'New customer gross order sales remaining after subtracting advertising costs.',
3717
3661
  formulaDisplay: 'NC Gross Order Sales − Ad Spend',
3718
3662
  formula: 'nc_gross_sales - spend',
3719
3663
  },
3720
3664
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_RAAD]: {
3721
3665
  priority: 79,
3722
- title: 'NC RAAD (Net Sales)',
3666
+ title: 'New Customer RAAD (Net Sales)',
3723
3667
  shortTitle: 'NC RAAD Net',
3724
3668
  description: 'New Customer Net Order Sales minus Ad Spend.',
3725
3669
  sumPrefix: '$',
3726
3670
  sumSuffix: '',
3727
3671
  avgPrefix: '$',
3728
3672
  avgSuffix: '',
3729
- icon: MEASURE_ICON.SHOPIFY,
3673
+ icon: MEASURE_ICON.CHANNEL,
3730
3674
  measure: MEASURE.ORDERS_NEW_CUSTOMER_NET_RAAD,
3731
- category: MEASURE_CATEGORY.ORDERS,
3732
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3675
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3733
3676
  valueType: MeasureValueType.CURRENCY,
3734
3677
  decimalPlaces: 2,
3735
3678
  useCompactNotation: true,
3736
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3679
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3737
3680
  tooltip: 'New customer net order sales remaining after subtracting advertising costs.',
3738
3681
  formulaDisplay: 'NC Net Order Sales − Ad Spend',
3739
3682
  formula: 'nc_net_sales - spend',
3740
3683
  },
3741
3684
  [MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_RAAD_PERCENT]: {
3742
3685
  priority: 80,
3743
- title: 'NC RAAD % of Total Revenue',
3686
+ title: 'New Customer RAAD % of Total Revenue',
3744
3687
  shortTitle: 'NC RAAD %',
3745
3688
  description: 'NC Revenue After Ad Spend as percentage of NC Total Revenue.',
3746
3689
  sumPrefix: '',
3747
3690
  sumSuffix: '%',
3748
3691
  avgPrefix: '',
3749
3692
  avgSuffix: '%',
3750
- icon: MEASURE_ICON.SHOPIFY,
3693
+ icon: MEASURE_ICON.CHANNEL,
3751
3694
  measure: MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_RAAD_PERCENT,
3752
- category: MEASURE_CATEGORY.ORDERS,
3753
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3695
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3754
3696
  valueType: MeasureValueType.PERCENTAGE,
3755
3697
  decimalPlaces: 2,
3756
3698
  useCompactNotation: false,
3757
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3699
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3758
3700
  tooltip: 'What percentage of new customer order revenue remains after ad spend.',
3759
3701
  formulaDisplay: '(NC RAAD ÷ NC Revenue) × 100',
3760
3702
  formula: '((nc_revenue - spend) / nc_revenue) * 100',
3761
3703
  },
3762
3704
  [MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RAAD_PERCENT]: {
3763
3705
  priority: 81,
3764
- title: 'NC RAAD % of Gross Sales',
3706
+ title: 'New Customer RAAD % of Gross Sales',
3765
3707
  shortTitle: 'NC RAAD % Gross',
3766
3708
  description: 'NC Revenue After Ad Spend as percentage of NC Gross Sales.',
3767
3709
  sumPrefix: '',
3768
3710
  sumSuffix: '%',
3769
3711
  avgPrefix: '',
3770
3712
  avgSuffix: '%',
3771
- icon: MEASURE_ICON.SHOPIFY,
3713
+ icon: MEASURE_ICON.CHANNEL,
3772
3714
  measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RAAD_PERCENT,
3773
- category: MEASURE_CATEGORY.ORDERS,
3774
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3715
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3775
3716
  valueType: MeasureValueType.PERCENTAGE,
3776
3717
  decimalPlaces: 2,
3777
3718
  useCompactNotation: false,
3778
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3719
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3779
3720
  tooltip: 'What percentage of new customer gross order sales remains after ad spend.',
3780
3721
  formulaDisplay: '(NC RAAD Gross ÷ NC Gross Sales) × 100',
3781
3722
  formula: '((nc_gross_sales - spend) / nc_gross_sales) * 100',
3782
3723
  },
3783
3724
  [MEASURE.ORDERS_NEW_CUSTOMER_NET_RAAD_PERCENT]: {
3784
3725
  priority: 82,
3785
- title: 'NC RAAD % of Net Sales',
3726
+ title: 'New Customer RAAD % of Net Sales',
3786
3727
  shortTitle: 'NC RAAD % Net',
3787
3728
  description: 'NC Revenue After Ad Spend as percentage of NC Net Sales.',
3788
3729
  sumPrefix: '',
3789
3730
  sumSuffix: '%',
3790
3731
  avgPrefix: '',
3791
3732
  avgSuffix: '%',
3792
- icon: MEASURE_ICON.SHOPIFY,
3733
+ icon: MEASURE_ICON.CHANNEL,
3793
3734
  measure: MEASURE.ORDERS_NEW_CUSTOMER_NET_RAAD_PERCENT,
3794
- category: MEASURE_CATEGORY.ORDERS,
3795
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3735
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3796
3736
  valueType: MeasureValueType.PERCENTAGE,
3797
3737
  decimalPlaces: 2,
3798
3738
  useCompactNotation: false,
3799
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3739
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3800
3740
  tooltip: 'What percentage of new customer net order sales remains after ad spend.',
3801
3741
  formulaDisplay: '(NC RAAD Net ÷ NC Net Sales) × 100',
3802
3742
  formula: '((nc_net_sales - spend) / nc_net_sales) * 100',
3803
3743
  },
3804
3744
  [MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_RAAD]: {
3805
3745
  priority: 83,
3806
- title: 'RC Revenue After Ad Spend',
3746
+ title: 'Returning Customer Revenue After Ad Spend',
3807
3747
  shortTitle: 'RC RAAD',
3808
3748
  description: 'Returning Customer Order Revenue minus Ad Spend.',
3809
3749
  sumPrefix: '$',
3810
3750
  sumSuffix: '',
3811
3751
  avgPrefix: '$',
3812
3752
  avgSuffix: '',
3813
- icon: MEASURE_ICON.SHOPIFY,
3753
+ icon: MEASURE_ICON.CHANNEL,
3814
3754
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_RAAD,
3815
- category: MEASURE_CATEGORY.ORDERS,
3816
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3755
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3817
3756
  valueType: MeasureValueType.CURRENCY,
3818
3757
  decimalPlaces: 2,
3819
3758
  useCompactNotation: true,
3820
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3759
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3821
3760
  tooltip: 'Returning customer order revenue remaining after subtracting advertising costs.',
3822
3761
  formulaDisplay: 'RC Order Revenue − Ad Spend',
3823
3762
  formula: 'rc_revenue - spend',
3824
3763
  },
3825
3764
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RAAD]: {
3826
3765
  priority: 84,
3827
- title: 'RC RAAD (Gross Sales)',
3766
+ title: 'Returning Customer RAAD (Gross Sales)',
3828
3767
  shortTitle: 'RC RAAD Gross',
3829
3768
  description: 'Returning Customer Gross Order Sales minus Ad Spend.',
3830
3769
  sumPrefix: '$',
3831
3770
  sumSuffix: '',
3832
3771
  avgPrefix: '$',
3833
3772
  avgSuffix: '',
3834
- icon: MEASURE_ICON.SHOPIFY,
3773
+ icon: MEASURE_ICON.CHANNEL,
3835
3774
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RAAD,
3836
- category: MEASURE_CATEGORY.ORDERS,
3837
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3775
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3838
3776
  valueType: MeasureValueType.CURRENCY,
3839
3777
  decimalPlaces: 2,
3840
3778
  useCompactNotation: true,
3841
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3779
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3842
3780
  tooltip: 'Returning customer gross order sales remaining after subtracting advertising costs.',
3843
3781
  formulaDisplay: 'RC Gross Order Sales − Ad Spend',
3844
3782
  formula: 'rc_gross_sales - spend',
3845
3783
  },
3846
3784
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_RAAD]: {
3847
3785
  priority: 85,
3848
- title: 'RC RAAD (Net Sales)',
3786
+ title: 'Returning Customer RAAD (Net Sales)',
3849
3787
  shortTitle: 'RC RAAD Net',
3850
3788
  description: 'Returning Customer Net Order Sales minus Ad Spend.',
3851
3789
  sumPrefix: '$',
3852
3790
  sumSuffix: '',
3853
3791
  avgPrefix: '$',
3854
3792
  avgSuffix: '',
3855
- icon: MEASURE_ICON.SHOPIFY,
3793
+ icon: MEASURE_ICON.CHANNEL,
3856
3794
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_NET_RAAD,
3857
- category: MEASURE_CATEGORY.ORDERS,
3858
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3795
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3859
3796
  valueType: MeasureValueType.CURRENCY,
3860
3797
  decimalPlaces: 2,
3861
3798
  useCompactNotation: true,
3862
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3799
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3863
3800
  tooltip: 'Returning customer net order sales remaining after subtracting advertising costs.',
3864
3801
  formulaDisplay: 'RC Net Order Sales − Ad Spend',
3865
3802
  formula: 'rc_net_sales - spend',
3866
3803
  },
3867
3804
  [MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_RAAD_PERCENT]: {
3868
3805
  priority: 86,
3869
- title: 'RC RAAD % of Total Revenue',
3806
+ title: 'Returning Customer RAAD % of Total Revenue',
3870
3807
  shortTitle: 'RC RAAD %',
3871
3808
  description: 'RC Revenue After Ad Spend as percentage of RC Total Revenue.',
3872
3809
  sumPrefix: '',
3873
3810
  sumSuffix: '%',
3874
3811
  avgPrefix: '',
3875
3812
  avgSuffix: '%',
3876
- icon: MEASURE_ICON.SHOPIFY,
3813
+ icon: MEASURE_ICON.CHANNEL,
3877
3814
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_RAAD_PERCENT,
3878
- category: MEASURE_CATEGORY.ORDERS,
3879
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3815
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3880
3816
  valueType: MeasureValueType.PERCENTAGE,
3881
3817
  decimalPlaces: 2,
3882
3818
  useCompactNotation: false,
3883
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3819
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3884
3820
  tooltip: 'What percentage of returning customer order revenue remains after ad spend.',
3885
3821
  formulaDisplay: '(RC RAAD ÷ RC Revenue) × 100',
3886
3822
  formula: '((rc_revenue - spend) / rc_revenue) * 100',
3887
3823
  },
3888
3824
  [MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RAAD_PERCENT]: {
3889
3825
  priority: 87,
3890
- title: 'RC RAAD % of Gross Sales',
3826
+ title: 'Returning Customer RAAD % of Gross Sales',
3891
3827
  shortTitle: 'RC RAAD % Gross',
3892
3828
  description: 'RC Revenue After Ad Spend as percentage of RC Gross Sales.',
3893
3829
  sumPrefix: '',
3894
3830
  sumSuffix: '%',
3895
3831
  avgPrefix: '',
3896
3832
  avgSuffix: '%',
3897
- icon: MEASURE_ICON.SHOPIFY,
3833
+ icon: MEASURE_ICON.CHANNEL,
3898
3834
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RAAD_PERCENT,
3899
- category: MEASURE_CATEGORY.ORDERS,
3900
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3835
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3901
3836
  valueType: MeasureValueType.PERCENTAGE,
3902
3837
  decimalPlaces: 2,
3903
3838
  useCompactNotation: false,
3904
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3839
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3905
3840
  tooltip: 'What percentage of returning customer gross order sales remains after ad spend.',
3906
3841
  formulaDisplay: '(RC RAAD Gross ÷ RC Gross Sales) × 100',
3907
3842
  formula: '((rc_gross_sales - spend) / rc_gross_sales) * 100',
3908
3843
  },
3909
3844
  [MEASURE.ORDERS_RETURNING_CUSTOMER_NET_RAAD_PERCENT]: {
3910
3845
  priority: 88,
3911
- title: 'RC RAAD % of Net Sales',
3846
+ title: 'Returning Customer RAAD % of Net Sales',
3912
3847
  shortTitle: 'RC RAAD % Net',
3913
3848
  description: 'RC Revenue After Ad Spend as percentage of RC Net Sales.',
3914
3849
  sumPrefix: '',
3915
3850
  sumSuffix: '%',
3916
3851
  avgPrefix: '',
3917
3852
  avgSuffix: '%',
3918
- icon: MEASURE_ICON.SHOPIFY,
3853
+ icon: MEASURE_ICON.CHANNEL,
3919
3854
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_NET_RAAD_PERCENT,
3920
- category: MEASURE_CATEGORY.ORDERS,
3921
- subcategory: MEASURE_SUBCATEGORY.ORDERS_PERFORMANCE,
3855
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3922
3856
  valueType: MeasureValueType.PERCENTAGE,
3923
3857
  decimalPlaces: 2,
3924
3858
  useCompactNotation: false,
3925
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3859
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3926
3860
  tooltip: 'What percentage of returning customer net order sales remains after ad spend.',
3927
3861
  formulaDisplay: '(RC RAAD Net ÷ RC Net Sales) × 100',
3928
3862
  formula: '((rc_net_sales - spend) / rc_net_sales) * 100',
@@ -3937,14 +3871,13 @@ export const ORDERS_MEASURES_MAP = {
3937
3871
  sumSuffix: '',
3938
3872
  avgPrefix: '$',
3939
3873
  avgSuffix: '',
3940
- icon: MEASURE_ICON.SHOPIFY,
3874
+ icon: MEASURE_ICON.CHANNEL,
3941
3875
  measure: MEASURE.ORDERS_CM2,
3942
- category: MEASURE_CATEGORY.ORDERS,
3943
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
3876
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3944
3877
  valueType: MeasureValueType.CURRENCY,
3945
3878
  decimalPlaces: 2,
3946
3879
  useCompactNotation: true,
3947
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3880
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3948
3881
  tooltip: 'Profit after deducting fulfillment and variable operating costs.',
3949
3882
  formulaDisplay: '(CM1) − (Shipping) − (Gateway) − (Variable Costs)',
3950
3883
  formula: '(cm1) - (shipping) - (gateway) - (variable_costs)',
@@ -3959,21 +3892,20 @@ export const ORDERS_MEASURES_MAP = {
3959
3892
  sumSuffix: '%',
3960
3893
  avgPrefix: '',
3961
3894
  avgSuffix: '%',
3962
- icon: MEASURE_ICON.SHOPIFY,
3895
+ icon: MEASURE_ICON.CHANNEL,
3963
3896
  measure: MEASURE.ORDERS_CM2_PERCENT,
3964
- category: MEASURE_CATEGORY.ORDERS,
3965
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
3897
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3966
3898
  valueType: MeasureValueType.PERCENTAGE,
3967
3899
  decimalPlaces: 2,
3968
3900
  useCompactNotation: false,
3969
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3901
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3970
3902
  tooltip: 'What percentage of net revenue remains after product and variable costs.',
3971
3903
  formulaDisplay: '(CM2) ÷ (Net Revenue) × 100',
3972
3904
  formula: '((cm2) / (net_revenue)) * 100',
3973
3905
  },
3974
3906
  [MEASURE.ORDERS_NEW_CUSTOMER_CM2]: {
3975
3907
  priority: 12,
3976
- title: 'NC Contribution Margin 2',
3908
+ title: 'New Customer Contribution Margin 2',
3977
3909
  shortTitle: 'NC CM2',
3978
3910
  description: 'New customer CM1 minus shipping, gateway, and variable costs.',
3979
3911
  sumPrefix: '$',
@@ -3982,19 +3914,18 @@ export const ORDERS_MEASURES_MAP = {
3982
3914
  avgSuffix: '',
3983
3915
  icon: MEASURE_ICON.SHOPIFY,
3984
3916
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2,
3985
- category: MEASURE_CATEGORY.ORDERS,
3986
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
3917
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
3987
3918
  valueType: MeasureValueType.CURRENCY,
3988
3919
  decimalPlaces: 2,
3989
3920
  useCompactNotation: true,
3990
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3921
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
3991
3922
  tooltip: 'Profit from new customers after subtracting fulfillment and variable costs.',
3992
3923
  formulaDisplay: '(NC CM1) − (Shipping) − (Gateway) − (Variable Costs)',
3993
3924
  formula: '(nc_cm1) - (nc_shipping) - (nc_gateway) - (nc_variable_costs)',
3994
3925
  },
3995
3926
  [MEASURE.ORDERS_NEW_CUSTOMER_CM2_PERCENT]: {
3996
3927
  priority: 36,
3997
- title: 'NC CM2 Margin',
3928
+ title: 'New Customer CM2 Margin',
3998
3929
  shortTitle: 'NC CM2 %',
3999
3930
  description: 'NC CM2 as a percentage of NC Net Revenue.',
4000
3931
  sumPrefix: '',
@@ -4003,19 +3934,18 @@ export const ORDERS_MEASURES_MAP = {
4003
3934
  avgSuffix: '%',
4004
3935
  icon: MEASURE_ICON.SHOPIFY,
4005
3936
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2_PERCENT,
4006
- category: MEASURE_CATEGORY.ORDERS,
4007
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
3937
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4008
3938
  valueType: MeasureValueType.PERCENTAGE,
4009
3939
  decimalPlaces: 2,
4010
3940
  useCompactNotation: false,
4011
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3941
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4012
3942
  tooltip: 'What percentage of new customer net revenue remains after variable costs.',
4013
3943
  formulaDisplay: '(NC CM2) ÷ (NC Net Revenue) × 100',
4014
3944
  formula: '((nc_cm2) / (nc_net_revenue)) * 100',
4015
3945
  },
4016
3946
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM2]: {
4017
3947
  priority: 22,
4018
- title: 'RC Contribution Margin 2',
3948
+ title: 'Returning Customer Contribution Margin 2',
4019
3949
  shortTitle: 'RC CM2',
4020
3950
  description: 'Returning customer CM1 minus shipping, gateway, and variable costs.',
4021
3951
  sumPrefix: '$',
@@ -4024,19 +3954,18 @@ export const ORDERS_MEASURES_MAP = {
4024
3954
  avgSuffix: '',
4025
3955
  icon: MEASURE_ICON.SHOPIFY,
4026
3956
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2,
4027
- category: MEASURE_CATEGORY.ORDERS,
4028
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
3957
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4029
3958
  valueType: MeasureValueType.CURRENCY,
4030
3959
  decimalPlaces: 2,
4031
3960
  useCompactNotation: true,
4032
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3961
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4033
3962
  tooltip: 'Profit from returning customers after subtracting fulfillment and variable costs.',
4034
3963
  formulaDisplay: '(RC CM1) − (Shipping) − (Gateway) − (Variable Costs)',
4035
3964
  formula: '(rc_cm1) - (rc_shipping) - (rc_gateway) - (rc_variable_costs)',
4036
3965
  },
4037
3966
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_PERCENT]: {
4038
3967
  priority: 40,
4039
- title: 'RC CM2 Margin',
3968
+ title: 'Returning Customer CM2 Margin',
4040
3969
  shortTitle: 'RC CM2 %',
4041
3970
  description: 'RC CM2 as a percentage of RC Net Revenue.',
4042
3971
  sumPrefix: '',
@@ -4045,12 +3974,11 @@ export const ORDERS_MEASURES_MAP = {
4045
3974
  avgSuffix: '%',
4046
3975
  icon: MEASURE_ICON.SHOPIFY,
4047
3976
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_PERCENT,
4048
- category: MEASURE_CATEGORY.ORDERS,
4049
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
3977
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4050
3978
  valueType: MeasureValueType.PERCENTAGE,
4051
3979
  decimalPlaces: 2,
4052
3980
  useCompactNotation: false,
4053
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
3981
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4054
3982
  tooltip: 'What percentage of returning customer net revenue remains after variable costs.',
4055
3983
  formulaDisplay: '(RC CM2) ÷ (RC Net Revenue) × 100',
4056
3984
  formula: '((rc_cm2) / (rc_net_revenue)) * 100',
@@ -4065,14 +3993,13 @@ export const ORDERS_MEASURES_MAP = {
4065
3993
  sumSuffix: '',
4066
3994
  avgPrefix: '$',
4067
3995
  avgSuffix: '',
4068
- icon: MEASURE_ICON.SHOPIFY,
3996
+ icon: MEASURE_ICON.CHANNEL,
4069
3997
  measure: MEASURE.ORDERS_CM3,
4070
- category: MEASURE_CATEGORY.ORDERS,
4071
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
3998
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4072
3999
  valueType: MeasureValueType.CURRENCY,
4073
4000
  decimalPlaces: 2,
4074
4001
  useCompactNotation: true,
4075
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4002
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4076
4003
  tooltip: 'Profit after all variable costs including advertising. Key metric for marketing profitability.',
4077
4004
  formulaDisplay: '(CM2) − (Ad Spend)',
4078
4005
  formula: '(cm2) - (blended_ad_spend)',
@@ -4087,21 +4014,20 @@ export const ORDERS_MEASURES_MAP = {
4087
4014
  sumSuffix: '%',
4088
4015
  avgPrefix: '',
4089
4016
  avgSuffix: '%',
4090
- icon: MEASURE_ICON.SHOPIFY,
4017
+ icon: MEASURE_ICON.CHANNEL,
4091
4018
  measure: MEASURE.ORDERS_CM3_PERCENT,
4092
- category: MEASURE_CATEGORY.ORDERS,
4093
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4019
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4094
4020
  valueType: MeasureValueType.PERCENTAGE,
4095
4021
  decimalPlaces: 2,
4096
4022
  useCompactNotation: false,
4097
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4023
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4098
4024
  tooltip: 'What percentage of net revenue remains after all variable costs including advertising.',
4099
4025
  formulaDisplay: '(CM3) ÷ (Net Revenue) × 100',
4100
4026
  formula: '((cm3) / (net_revenue)) * 100',
4101
4027
  },
4102
4028
  [MEASURE.ORDERS_NEW_CUSTOMER_CM3]: {
4103
4029
  priority: 13,
4104
- title: 'NC Contribution Margin 3',
4030
+ title: 'New Customer Contribution Margin 3',
4105
4031
  shortTitle: 'NC CM3',
4106
4032
  description: 'New customer CM2 minus ad spend.',
4107
4033
  sumPrefix: '$',
@@ -4110,19 +4036,18 @@ export const ORDERS_MEASURES_MAP = {
4110
4036
  avgSuffix: '',
4111
4037
  icon: MEASURE_ICON.SHOPIFY,
4112
4038
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3,
4113
- category: MEASURE_CATEGORY.ORDERS,
4114
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4039
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4115
4040
  valueType: MeasureValueType.CURRENCY,
4116
4041
  decimalPlaces: 2,
4117
4042
  useCompactNotation: true,
4118
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4043
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4119
4044
  tooltip: 'Profit from new customers after subtracting all variable costs including advertising.',
4120
4045
  formulaDisplay: '(NC CM2) − (Ad Spend)',
4121
4046
  formula: '(nc_cm2) - (nc_ad_spend)',
4122
4047
  },
4123
4048
  [MEASURE.ORDERS_NEW_CUSTOMER_CM3_PERCENT]: {
4124
4049
  priority: 37,
4125
- title: 'NC CM3 Margin',
4050
+ title: 'New Customer CM3 Margin',
4126
4051
  shortTitle: 'NC CM3 %',
4127
4052
  description: 'NC CM3 as a percentage of NC Net Revenue.',
4128
4053
  sumPrefix: '',
@@ -4131,19 +4056,18 @@ export const ORDERS_MEASURES_MAP = {
4131
4056
  avgSuffix: '%',
4132
4057
  icon: MEASURE_ICON.SHOPIFY,
4133
4058
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3_PERCENT,
4134
- category: MEASURE_CATEGORY.ORDERS,
4135
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4059
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4136
4060
  valueType: MeasureValueType.PERCENTAGE,
4137
4061
  decimalPlaces: 2,
4138
4062
  useCompactNotation: false,
4139
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4063
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4140
4064
  tooltip: 'What percentage of new customer net revenue remains after all variable costs.',
4141
4065
  formulaDisplay: '(NC CM3) ÷ (NC Net Revenue) × 100',
4142
4066
  formula: '((nc_cm3) / (nc_net_revenue)) * 100',
4143
4067
  },
4144
4068
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM3]: {
4145
4069
  priority: 23,
4146
- title: 'RC Contribution Margin 3',
4070
+ title: 'Returning Customer Contribution Margin 3',
4147
4071
  shortTitle: 'RC CM3',
4148
4072
  description: 'Returning customer CM2 minus ad spend.',
4149
4073
  sumPrefix: '$',
@@ -4152,19 +4076,18 @@ export const ORDERS_MEASURES_MAP = {
4152
4076
  avgSuffix: '',
4153
4077
  icon: MEASURE_ICON.SHOPIFY,
4154
4078
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3,
4155
- category: MEASURE_CATEGORY.ORDERS,
4156
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4079
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4157
4080
  valueType: MeasureValueType.CURRENCY,
4158
4081
  decimalPlaces: 2,
4159
4082
  useCompactNotation: true,
4160
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4083
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4161
4084
  tooltip: 'Profit from returning customers after subtracting all variable costs including advertising.',
4162
4085
  formulaDisplay: '(RC CM2) − (Ad Spend)',
4163
4086
  formula: '(rc_cm2) - (rc_ad_spend)',
4164
4087
  },
4165
4088
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_PERCENT]: {
4166
4089
  priority: 41,
4167
- title: 'RC CM3 Margin',
4090
+ title: 'Returning Customer CM3 Margin',
4168
4091
  shortTitle: 'RC CM3 %',
4169
4092
  description: 'RC CM3 as a percentage of RC Net Revenue.',
4170
4093
  sumPrefix: '',
@@ -4173,12 +4096,11 @@ export const ORDERS_MEASURES_MAP = {
4173
4096
  avgSuffix: '%',
4174
4097
  icon: MEASURE_ICON.SHOPIFY,
4175
4098
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_PERCENT,
4176
- category: MEASURE_CATEGORY.ORDERS,
4177
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4099
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4178
4100
  valueType: MeasureValueType.PERCENTAGE,
4179
4101
  decimalPlaces: 2,
4180
4102
  useCompactNotation: false,
4181
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4103
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4182
4104
  tooltip: 'What percentage of returning customer net revenue remains after all variable costs.',
4183
4105
  formulaDisplay: '(RC CM3) ÷ (RC Net Revenue) × 100',
4184
4106
  formula: '((rc_cm3) / (rc_net_revenue)) * 100',
@@ -4193,14 +4115,13 @@ export const ORDERS_MEASURES_MAP = {
4193
4115
  sumSuffix: '',
4194
4116
  avgPrefix: '$',
4195
4117
  avgSuffix: '',
4196
- icon: MEASURE_ICON.SHOPIFY,
4118
+ icon: MEASURE_ICON.CHANNEL,
4197
4119
  measure: MEASURE.ORDERS_CM4,
4198
- category: MEASURE_CATEGORY.ORDERS,
4199
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4120
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4200
4121
  valueType: MeasureValueType.CURRENCY,
4201
4122
  decimalPlaces: 2,
4202
4123
  useCompactNotation: true,
4203
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4124
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4204
4125
  tooltip: 'CM4 is your operating profit after all costs. Calculated as CM3 (profit after marketing) minus Fixed Costs (salaries, software, rent).',
4205
4126
  formulaDisplay: '(CM3) − (Fixed Costs)',
4206
4127
  formula: '(cm3) - (fixed_costs)',
@@ -4215,21 +4136,20 @@ export const ORDERS_MEASURES_MAP = {
4215
4136
  sumSuffix: '%',
4216
4137
  avgPrefix: '',
4217
4138
  avgSuffix: '%',
4218
- icon: MEASURE_ICON.SHOPIFY,
4139
+ icon: MEASURE_ICON.CHANNEL,
4219
4140
  measure: MEASURE.ORDERS_CM4_PERCENT,
4220
- category: MEASURE_CATEGORY.ORDERS,
4221
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4141
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4222
4142
  valueType: MeasureValueType.PERCENTAGE,
4223
4143
  decimalPlaces: 2,
4224
4144
  useCompactNotation: false,
4225
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4145
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4226
4146
  tooltip: 'What percentage of net revenue becomes operating profit. The ultimate efficiency metric showing profitability after all variable and fixed costs.',
4227
4147
  formulaDisplay: '((CM4) ÷ (Net Revenue)) × 100',
4228
4148
  formula: '((cm4) / (net_revenue)) * 100',
4229
4149
  },
4230
4150
  [MEASURE.ORDERS_NEW_CUSTOMER_CM4]: {
4231
4151
  priority: 14,
4232
- title: 'NC CM4 (Operating Profit)',
4152
+ title: 'New Customer CM4 (Operating Profit)',
4233
4153
  shortTitle: 'NC CM4',
4234
4154
  description: 'New customer CM3 minus Fixed Costs. Operating profit from new customer acquisitions.',
4235
4155
  sumPrefix: '$',
@@ -4238,19 +4158,18 @@ export const ORDERS_MEASURES_MAP = {
4238
4158
  avgSuffix: '',
4239
4159
  icon: MEASURE_ICON.SHOPIFY,
4240
4160
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM4,
4241
- category: MEASURE_CATEGORY.ORDERS,
4242
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4161
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4243
4162
  valueType: MeasureValueType.CURRENCY,
4244
4163
  decimalPlaces: 2,
4245
4164
  useCompactNotation: true,
4246
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4165
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4247
4166
  tooltip: 'Operating profit from new customer acquisitions after all variable and fixed costs.',
4248
4167
  formulaDisplay: '(NC CM3) − (NC Fixed Costs)',
4249
4168
  formula: '(nc_cm3) - (nc_fixed_costs)',
4250
4169
  },
4251
4170
  [MEASURE.ORDERS_NEW_CUSTOMER_CM4_PERCENT]: {
4252
4171
  priority: 38,
4253
- title: 'NC CM4 % (Operating Margin)',
4172
+ title: 'New Customer CM4 % (Operating Margin)',
4254
4173
  shortTitle: 'NC CM4 %',
4255
4174
  description: 'NC CM4 as a percentage of NC Net Revenue. Operating margin from new customers.',
4256
4175
  sumPrefix: '',
@@ -4259,19 +4178,18 @@ export const ORDERS_MEASURES_MAP = {
4259
4178
  avgSuffix: '%',
4260
4179
  icon: MEASURE_ICON.SHOPIFY,
4261
4180
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM4_PERCENT,
4262
- category: MEASURE_CATEGORY.ORDERS,
4263
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4181
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4264
4182
  valueType: MeasureValueType.PERCENTAGE,
4265
4183
  decimalPlaces: 2,
4266
4184
  useCompactNotation: false,
4267
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4185
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4268
4186
  tooltip: 'What percentage of new customer net revenue becomes operating profit after all costs.',
4269
4187
  formulaDisplay: '((NC CM4) ÷ (NC Net Revenue)) × 100',
4270
4188
  formula: '((nc_cm4) / (nc_net_revenue)) * 100',
4271
4189
  },
4272
4190
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM4]: {
4273
4191
  priority: 24,
4274
- title: 'RC CM4 (Operating Profit)',
4192
+ title: 'Returning Customer CM4 (Operating Profit)',
4275
4193
  shortTitle: 'RC CM4',
4276
4194
  description: 'Returning customer CM3 minus Fixed Costs. Operating profit from repeat purchases.',
4277
4195
  sumPrefix: '$',
@@ -4280,19 +4198,18 @@ export const ORDERS_MEASURES_MAP = {
4280
4198
  avgSuffix: '',
4281
4199
  icon: MEASURE_ICON.SHOPIFY,
4282
4200
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM4,
4283
- category: MEASURE_CATEGORY.ORDERS,
4284
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4201
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4285
4202
  valueType: MeasureValueType.CURRENCY,
4286
4203
  decimalPlaces: 2,
4287
4204
  useCompactNotation: true,
4288
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4205
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4289
4206
  tooltip: 'Operating profit from returning customer orders after all variable and fixed costs.',
4290
4207
  formulaDisplay: '(RC CM3) − (RC Fixed Costs)',
4291
4208
  formula: '(rc_cm3) - (rc_fixed_costs)',
4292
4209
  },
4293
4210
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM4_PERCENT]: {
4294
4211
  priority: 42,
4295
- title: 'RC CM4 % (Operating Margin)',
4212
+ title: 'Returning Customer CM4 % (Operating Margin)',
4296
4213
  shortTitle: 'RC CM4 %',
4297
4214
  description: 'RC CM4 as a percentage of RC Net Revenue. Operating margin from returning customers.',
4298
4215
  sumPrefix: '',
@@ -4301,12 +4218,11 @@ export const ORDERS_MEASURES_MAP = {
4301
4218
  avgSuffix: '%',
4302
4219
  icon: MEASURE_ICON.SHOPIFY,
4303
4220
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM4_PERCENT,
4304
- category: MEASURE_CATEGORY.ORDERS,
4305
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4221
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4306
4222
  valueType: MeasureValueType.PERCENTAGE,
4307
4223
  decimalPlaces: 2,
4308
4224
  useCompactNotation: false,
4309
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4225
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4310
4226
  tooltip: 'What percentage of returning customer net revenue becomes operating profit after all costs.',
4311
4227
  formulaDisplay: '((RC CM4) ÷ (RC Net Revenue)) × 100',
4312
4228
  formula: '((rc_cm4) / (rc_net_revenue)) * 100',
@@ -4320,14 +4236,13 @@ export const ORDERS_MEASURES_MAP = {
4320
4236
  sumSuffix: '',
4321
4237
  avgPrefix: '$',
4322
4238
  avgSuffix: '',
4323
- icon: MEASURE_ICON.SHOPIFY,
4239
+ icon: MEASURE_ICON.CHANNEL,
4324
4240
  measure: MEASURE.ORDERS_CM1,
4325
- category: MEASURE_CATEGORY.ORDERS,
4326
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4241
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4327
4242
  valueType: MeasureValueType.CURRENCY,
4328
4243
  decimalPlaces: 2,
4329
4244
  useCompactNotation: true,
4330
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4245
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4331
4246
  tooltip: 'CM1 is the conservative gross margin calculation using Net Revenue (after returns/discounts) minus Effective COGS.',
4332
4247
  formulaDisplay: '(Net Revenue) − (Effective COGS)',
4333
4248
  formula: '(net_revenue) - (effective_cogs)',
@@ -4341,21 +4256,20 @@ export const ORDERS_MEASURES_MAP = {
4341
4256
  sumSuffix: '%',
4342
4257
  avgPrefix: '',
4343
4258
  avgSuffix: '%',
4344
- icon: MEASURE_ICON.SHOPIFY,
4259
+ icon: MEASURE_ICON.CHANNEL,
4345
4260
  measure: MEASURE.ORDERS_CM1_PERCENT,
4346
- category: MEASURE_CATEGORY.ORDERS,
4347
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4261
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4348
4262
  valueType: MeasureValueType.PERCENTAGE,
4349
4263
  decimalPlaces: 2,
4350
4264
  useCompactNotation: false,
4351
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4265
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4352
4266
  tooltip: 'CM1 as a percentage of Net Revenue. The conservative gross margin percentage calculation.',
4353
4267
  formulaDisplay: '(CM1) ÷ (Net Revenue) × 100',
4354
4268
  formula: '((cm1) / (net_revenue)) * 100',
4355
4269
  },
4356
4270
  [MEASURE.ORDERS_NEW_CUSTOMER_CM1]: {
4357
4271
  priority: 11,
4358
- title: 'NC CM1 (Gross Margin)',
4272
+ title: 'New Customer CM1 (Gross Margin)',
4359
4273
  shortTitle: 'NC CM1',
4360
4274
  description: 'New customer Net Revenue minus Effective COGS. Includes impact of returns/discounts.',
4361
4275
  sumPrefix: '$',
@@ -4364,19 +4278,18 @@ export const ORDERS_MEASURES_MAP = {
4364
4278
  avgSuffix: '',
4365
4279
  icon: MEASURE_ICON.SHOPIFY,
4366
4280
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1,
4367
- category: MEASURE_CATEGORY.ORDERS,
4368
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4281
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4369
4282
  valueType: MeasureValueType.CURRENCY,
4370
4283
  decimalPlaces: 2,
4371
4284
  useCompactNotation: true,
4372
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4285
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4373
4286
  tooltip: 'NC CM1 is the conservative gross margin for new customers using Net Revenue minus Effective COGS.',
4374
4287
  formulaDisplay: '(NC Net Revenue) − (NC Effective COGS)',
4375
4288
  formula: '(nc_net_revenue) - (nc_effective_cogs)',
4376
4289
  },
4377
4290
  [MEASURE.ORDERS_NEW_CUSTOMER_CM1_PERCENT]: {
4378
4291
  priority: 35,
4379
- title: 'NC CM1 % (Gross Margin %)',
4292
+ title: 'New Customer CM1 % (Gross Margin %)',
4380
4293
  shortTitle: 'NC CM1 %',
4381
4294
  description: 'NC CM1 as a percentage of NC Net Revenue. Includes impact of returns/discounts.',
4382
4295
  sumPrefix: '',
@@ -4385,19 +4298,18 @@ export const ORDERS_MEASURES_MAP = {
4385
4298
  avgSuffix: '%',
4386
4299
  icon: MEASURE_ICON.SHOPIFY,
4387
4300
  measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1_PERCENT,
4388
- category: MEASURE_CATEGORY.ORDERS,
4389
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4301
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4390
4302
  valueType: MeasureValueType.PERCENTAGE,
4391
4303
  decimalPlaces: 2,
4392
4304
  useCompactNotation: false,
4393
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4305
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4394
4306
  tooltip: 'NC CM1 as a percentage of NC Net Revenue. The conservative gross margin percentage for new customers.',
4395
4307
  formulaDisplay: '(NC CM1) ÷ (NC Net Revenue) × 100',
4396
4308
  formula: '((nc_cm1) / (nc_net_revenue)) * 100',
4397
4309
  },
4398
4310
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM1]: {
4399
4311
  priority: 21,
4400
- title: 'RC CM1 (Gross Margin)',
4312
+ title: 'Returning Customer CM1 (Gross Margin)',
4401
4313
  shortTitle: 'RC CM1',
4402
4314
  description: 'Returning customer Net Revenue minus Effective COGS. Includes impact of returns/discounts.',
4403
4315
  sumPrefix: '$',
@@ -4406,19 +4318,18 @@ export const ORDERS_MEASURES_MAP = {
4406
4318
  avgSuffix: '',
4407
4319
  icon: MEASURE_ICON.SHOPIFY,
4408
4320
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1,
4409
- category: MEASURE_CATEGORY.ORDERS,
4410
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4321
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4411
4322
  valueType: MeasureValueType.CURRENCY,
4412
4323
  decimalPlaces: 2,
4413
4324
  useCompactNotation: true,
4414
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4325
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4415
4326
  tooltip: 'RC CM1 is the conservative gross margin for returning customers using Net Revenue minus Effective COGS.',
4416
4327
  formulaDisplay: '(RC Net Revenue) − (RC Effective COGS)',
4417
4328
  formula: '(rc_net_revenue) - (rc_effective_cogs)',
4418
4329
  },
4419
4330
  [MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_PERCENT]: {
4420
4331
  priority: 39,
4421
- title: 'RC CM1 % (Gross Margin %)',
4332
+ title: 'Returning Customer CM1 % (Gross Margin %)',
4422
4333
  shortTitle: 'RC CM1 %',
4423
4334
  description: 'RC CM1 as a percentage of RC Net Revenue. Includes impact of returns/discounts.',
4424
4335
  sumPrefix: '',
@@ -4427,12 +4338,11 @@ export const ORDERS_MEASURES_MAP = {
4427
4338
  avgSuffix: '%',
4428
4339
  icon: MEASURE_ICON.SHOPIFY,
4429
4340
  measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_PERCENT,
4430
- category: MEASURE_CATEGORY.ORDERS,
4431
- subcategory: MEASURE_SUBCATEGORY.ORDERS_CONTRIBUTION_MARGIN,
4341
+ category: MEASURE_CATEGORY.ORDERS_AD_PERFORMANCE,
4432
4342
  valueType: MeasureValueType.PERCENTAGE,
4433
4343
  decimalPlaces: 2,
4434
4344
  useCompactNotation: false,
4435
- applicableContexts: ORDERS_ATTRIBUTION_APPLICABLE_CONTEXTS,
4345
+ applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
4436
4346
  tooltip: 'RC CM1 as a percentage of RC Net Revenue. The conservative gross margin percentage for returning customers.',
4437
4347
  formulaDisplay: '(RC CM1) ÷ (RC Net Revenue) × 100',
4438
4348
  formula: '((rc_cm1) / (rc_net_revenue)) * 100',