@adtrackify/at-tracking-event-types 4.59.0 → 4.59.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/__tests__/measure-alias-map.spec.js +11 -0
- package/dist/cjs/__tests__/measure-alias-map.spec.js.map +1 -1
- package/dist/cjs/types/api/measures/definitions/orders-measure-definitions.js +104 -96
- package/dist/cjs/types/api/measures/definitions/orders-measure-definitions.js.map +1 -1
- package/dist/cjs/types/api/measures/measure-alias-map.js +11 -0
- package/dist/cjs/types/api/measures/measure-alias-map.js.map +1 -1
- package/dist/esm/__tests__/measure-alias-map.spec.js +11 -0
- package/dist/esm/__tests__/measure-alias-map.spec.js.map +1 -1
- package/dist/esm/types/api/measures/definitions/orders-measure-definitions.js +104 -96
- package/dist/esm/types/api/measures/definitions/orders-measure-definitions.js.map +1 -1
- package/dist/esm/types/api/measures/measure-alias-map.js +11 -0
- package/dist/esm/types/api/measures/measure-alias-map.js.map +1 -1
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
26
26
|
[MEASURE.ORDERS_UNIQUE_CUSTOMERS]: {
|
|
27
27
|
priority: 1,
|
|
28
28
|
title: 'Unique Customers',
|
|
29
|
+
shortTitle: 'Unique Customers',
|
|
29
30
|
description: 'The number of unique customers.',
|
|
30
31
|
sumPrefix: '',
|
|
31
32
|
sumSuffix: '',
|
|
@@ -39,7 +40,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
39
40
|
decimalPlaces: 0,
|
|
40
41
|
useCompactNotation: false,
|
|
41
42
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
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]: {
|
|
@@ -64,6 +64,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
64
64
|
[MEASURE.ORDERS_NEW_CUSTOMER_UNITS]: {
|
|
65
65
|
priority: 11,
|
|
66
66
|
title: 'New Customer Units',
|
|
67
|
+
shortTitle: 'NC Units',
|
|
67
68
|
description: 'Units sold to new customers.',
|
|
68
69
|
sumPrefix: '',
|
|
69
70
|
sumSuffix: '',
|
|
@@ -77,12 +78,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
77
78
|
decimalPlaces: 0,
|
|
78
79
|
useCompactNotation: false,
|
|
79
80
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
80
|
-
shortTitle: 'NC Units',
|
|
81
81
|
tooltip: 'Total product units purchased by new customers. Useful for understanding acquisition basket size.',
|
|
82
82
|
},
|
|
83
83
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_UNITS]: {
|
|
84
84
|
priority: 21,
|
|
85
85
|
title: 'Returning Customer Units',
|
|
86
|
+
shortTitle: 'RC Units',
|
|
86
87
|
description: 'Units sold to returning customers.',
|
|
87
88
|
sumPrefix: '',
|
|
88
89
|
sumSuffix: '',
|
|
@@ -96,7 +97,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
96
97
|
decimalPlaces: 0,
|
|
97
98
|
useCompactNotation: false,
|
|
98
99
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
99
|
-
shortTitle: 'RC Units',
|
|
100
100
|
tooltip: 'Total product units purchased by returning customers. Reflects repeat buyer basket size.',
|
|
101
101
|
},
|
|
102
102
|
[MEASURE.ORDERS_UNITS_PER_ORDER]: {
|
|
@@ -123,6 +123,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
123
123
|
[MEASURE.ORDERS_NEW_CUSTOMER_UNITS_PER_ORDER]: {
|
|
124
124
|
priority: 12,
|
|
125
125
|
title: 'New Customer Units Per Order',
|
|
126
|
+
shortTitle: 'NC Units/Order',
|
|
126
127
|
description: 'Average units per order for new customers.',
|
|
127
128
|
sumPrefix: '',
|
|
128
129
|
sumSuffix: '',
|
|
@@ -136,7 +137,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
136
137
|
decimalPlaces: 2,
|
|
137
138
|
useCompactNotation: false,
|
|
138
139
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
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',
|
|
142
142
|
formula: 'nc_units_sold / nc_order_count',
|
|
@@ -144,6 +144,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
144
144
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_UNITS_PER_ORDER]: {
|
|
145
145
|
priority: 22,
|
|
146
146
|
title: 'Returning Customer Units Per Order',
|
|
147
|
+
shortTitle: 'RC Units/Order',
|
|
147
148
|
description: 'Average units per order for returning customers.',
|
|
148
149
|
sumPrefix: '',
|
|
149
150
|
sumSuffix: '',
|
|
@@ -157,7 +158,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
157
158
|
decimalPlaces: 2,
|
|
158
159
|
useCompactNotation: false,
|
|
159
160
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
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',
|
|
163
163
|
formula: 'rc_units_sold / rc_order_count',
|
|
@@ -165,6 +165,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
165
165
|
[MEASURE.ORDERS_TOTAL_REVENUE]: {
|
|
166
166
|
priority: 1,
|
|
167
167
|
title: 'Total Revenue',
|
|
168
|
+
shortTitle: 'Revenue (Total)',
|
|
168
169
|
description: 'Total revenue from all orders.',
|
|
169
170
|
sumPrefix: '$',
|
|
170
171
|
sumSuffix: '',
|
|
@@ -178,12 +179,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
178
179
|
decimalPlaces: 2,
|
|
179
180
|
useCompactNotation: true,
|
|
180
181
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
181
|
-
shortTitle: 'Revenue (Total)',
|
|
182
182
|
tooltip: 'The total dollar amount collected from all orders including shipping and taxes, before any refunds.',
|
|
183
183
|
},
|
|
184
184
|
[MEASURE.ORDERS_GROSS_REVENUE]: {
|
|
185
185
|
priority: 2,
|
|
186
186
|
title: 'Gross Revenue',
|
|
187
|
+
shortTitle: 'Revenue (Gross)',
|
|
187
188
|
description: 'Gross revenue before discounts and refunds.',
|
|
188
189
|
sumPrefix: '$',
|
|
189
190
|
sumSuffix: '',
|
|
@@ -197,12 +198,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
197
198
|
decimalPlaces: 2,
|
|
198
199
|
useCompactNotation: true,
|
|
199
200
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
200
|
-
shortTitle: 'Revenue (Gross)',
|
|
201
201
|
tooltip: 'Revenue from product sales before subtracting discounts or refunds. The starting point for margin calculations.',
|
|
202
202
|
},
|
|
203
203
|
[MEASURE.ORDERS_NET_REVENUE]: {
|
|
204
204
|
priority: 3,
|
|
205
205
|
title: 'Net Revenue',
|
|
206
|
+
shortTitle: 'Revenue (Net)',
|
|
206
207
|
description: 'Net revenue after discounts and refunds.',
|
|
207
208
|
sumPrefix: '$',
|
|
208
209
|
sumSuffix: '',
|
|
@@ -216,7 +217,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
216
217
|
decimalPlaces: 2,
|
|
217
218
|
useCompactNotation: true,
|
|
218
219
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
219
|
-
shortTitle: 'Revenue (Net)',
|
|
220
220
|
tooltip: 'Revenue after subtracting discounts and refunds from gross revenue. The primary revenue metric for profitability analysis.',
|
|
221
221
|
formulaDisplay: 'Gross Revenue − Discounts − Refunds',
|
|
222
222
|
formula: 'gross_revenue - discounts - refunds',
|
|
@@ -224,6 +224,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
224
224
|
[MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_REVENUE]: {
|
|
225
225
|
priority: 11,
|
|
226
226
|
title: 'New Customer Total Revenue',
|
|
227
|
+
shortTitle: 'NC Revenue (Total)',
|
|
227
228
|
description: 'Total revenue from new customers.',
|
|
228
229
|
sumPrefix: '$',
|
|
229
230
|
sumSuffix: '',
|
|
@@ -237,12 +238,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
237
238
|
decimalPlaces: 2,
|
|
238
239
|
useCompactNotation: true,
|
|
239
240
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
240
|
-
shortTitle: 'NC Revenue (Total)',
|
|
241
241
|
tooltip: 'Total revenue collected from first-time buyers including shipping and taxes. Reflects the raw dollar value of acquisition.',
|
|
242
242
|
},
|
|
243
243
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_REVENUE]: {
|
|
244
244
|
priority: 12,
|
|
245
245
|
title: 'New Customer Gross Revenue',
|
|
246
|
+
shortTitle: 'NC Rev. (Gross)',
|
|
246
247
|
description: 'Gross revenue from new customers.',
|
|
247
248
|
sumPrefix: '$',
|
|
248
249
|
sumSuffix: '',
|
|
@@ -256,12 +257,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
256
257
|
decimalPlaces: 2,
|
|
257
258
|
useCompactNotation: true,
|
|
258
259
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
259
|
-
shortTitle: 'NC Rev. (Gross)',
|
|
260
260
|
tooltip: 'Gross product revenue from new customers before discounts and refunds. Used to calculate new customer gross margin.',
|
|
261
261
|
},
|
|
262
262
|
[MEASURE.ORDERS_NEW_CUSTOMER_NET_REVENUE]: {
|
|
263
263
|
priority: 13,
|
|
264
264
|
title: 'New Customer Net Revenue',
|
|
265
|
+
shortTitle: 'NC Revenue (Net)',
|
|
265
266
|
description: 'Net revenue from new customers.',
|
|
266
267
|
sumPrefix: '$',
|
|
267
268
|
sumSuffix: '',
|
|
@@ -275,12 +276,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
275
276
|
decimalPlaces: 2,
|
|
276
277
|
useCompactNotation: true,
|
|
277
278
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
278
|
-
shortTitle: 'NC Revenue (Net)',
|
|
279
279
|
tooltip: 'Net revenue from new customers after discounts and refunds. The clearest measure of first-order monetization.',
|
|
280
280
|
},
|
|
281
281
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_REVENUE]: {
|
|
282
282
|
priority: 21,
|
|
283
283
|
title: 'Returning Customer Total Revenue',
|
|
284
|
+
shortTitle: 'RC Rev. (Total)',
|
|
284
285
|
description: 'Total revenue from returning customers.',
|
|
285
286
|
sumPrefix: '$',
|
|
286
287
|
sumSuffix: '',
|
|
@@ -294,12 +295,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
294
295
|
decimalPlaces: 2,
|
|
295
296
|
useCompactNotation: true,
|
|
296
297
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
297
|
-
shortTitle: 'RC Rev. (Total)',
|
|
298
298
|
tooltip: 'Total revenue from repeat buyers including shipping and taxes. High values indicate strong retention and LTV.',
|
|
299
299
|
},
|
|
300
300
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_REVENUE]: {
|
|
301
301
|
priority: 22,
|
|
302
302
|
title: 'Returning Customer Gross Revenue',
|
|
303
|
+
shortTitle: 'RC Revenue (Gross)',
|
|
303
304
|
description: 'Gross revenue from returning customers.',
|
|
304
305
|
sumPrefix: '$',
|
|
305
306
|
sumSuffix: '',
|
|
@@ -313,12 +314,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
313
314
|
decimalPlaces: 2,
|
|
314
315
|
useCompactNotation: true,
|
|
315
316
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
316
|
-
shortTitle: 'RC Revenue (Gross)',
|
|
317
317
|
tooltip: 'Gross product revenue from returning customers before discounts and refunds.',
|
|
318
318
|
},
|
|
319
319
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_NET_REVENUE]: {
|
|
320
320
|
priority: 23,
|
|
321
321
|
title: 'Returning Customer Net Revenue',
|
|
322
|
+
shortTitle: 'RC Revenue (Net)',
|
|
322
323
|
description: 'Net revenue from returning customers.',
|
|
323
324
|
sumPrefix: '$',
|
|
324
325
|
sumSuffix: '',
|
|
@@ -332,7 +333,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
332
333
|
decimalPlaces: 2,
|
|
333
334
|
useCompactNotation: true,
|
|
334
335
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
335
|
-
shortTitle: 'RC Revenue (Net)',
|
|
336
336
|
tooltip: 'Net revenue from returning customers after discounts and refunds. Key input for repeat-purchase profitability.',
|
|
337
337
|
},
|
|
338
338
|
[MEASURE.ORDERS_TOTAL_AOV]: {
|
|
@@ -401,6 +401,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
401
401
|
[MEASURE.ORDERS_NEW_CUSTOMER_TOTAL_AOV]: {
|
|
402
402
|
priority: 11,
|
|
403
403
|
title: 'New Customer Total AOV',
|
|
404
|
+
shortTitle: 'NC AOV (Total)',
|
|
404
405
|
description: 'Average order value for new customers (total revenue).',
|
|
405
406
|
sumPrefix: '$',
|
|
406
407
|
sumSuffix: '',
|
|
@@ -414,7 +415,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
414
415
|
decimalPlaces: 2,
|
|
415
416
|
useCompactNotation: false,
|
|
416
417
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
417
|
-
shortTitle: 'NC AOV (Total)',
|
|
418
418
|
tooltip: 'Average total transaction value for first-time buyers. Compare to RC Total AOV to see if new customers spend more or less.',
|
|
419
419
|
formulaDisplay: 'NC Total Revenue ÷ NC Order Count',
|
|
420
420
|
formula: 'nc_total_revenue / nc_order_count',
|
|
@@ -422,6 +422,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
422
422
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_AOV]: {
|
|
423
423
|
priority: 12,
|
|
424
424
|
title: 'New Customer Gross AOV',
|
|
425
|
+
shortTitle: 'NC AOV (Gross)',
|
|
425
426
|
description: 'Average order value for new customers (gross revenue).',
|
|
426
427
|
sumPrefix: '$',
|
|
427
428
|
sumSuffix: '',
|
|
@@ -435,7 +436,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
435
436
|
decimalPlaces: 2,
|
|
436
437
|
useCompactNotation: false,
|
|
437
438
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
438
|
-
shortTitle: 'NC AOV (Gross)',
|
|
439
439
|
tooltip: 'Average gross revenue per order for new customers before discounts and refunds.',
|
|
440
440
|
formulaDisplay: 'NC Gross Revenue ÷ NC Order Count',
|
|
441
441
|
formula: 'nc_gross_revenue / nc_order_count',
|
|
@@ -443,6 +443,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
443
443
|
[MEASURE.ORDERS_NEW_CUSTOMER_NET_AOV]: {
|
|
444
444
|
priority: 13,
|
|
445
445
|
title: 'New Customer Net AOV',
|
|
446
|
+
shortTitle: 'NC AOV (Net)',
|
|
446
447
|
description: 'Average order value for new customers (net revenue).',
|
|
447
448
|
sumPrefix: '$',
|
|
448
449
|
sumSuffix: '',
|
|
@@ -456,7 +457,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
456
457
|
decimalPlaces: 2,
|
|
457
458
|
useCompactNotation: false,
|
|
458
459
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
459
|
-
shortTitle: 'NC AOV (Net)',
|
|
460
460
|
tooltip: 'Average net revenue per order for new customers after discounts and refunds. Key input for new customer payback calculations.',
|
|
461
461
|
formulaDisplay: 'NC Net Revenue ÷ NC Order Count',
|
|
462
462
|
formula: 'nc_net_revenue / nc_order_count',
|
|
@@ -464,6 +464,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
464
464
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_TOTAL_AOV]: {
|
|
465
465
|
priority: 21,
|
|
466
466
|
title: 'Returning Customer Total AOV',
|
|
467
|
+
shortTitle: 'RC AOV (Total)',
|
|
467
468
|
description: 'Average order value for returning customers (total revenue).',
|
|
468
469
|
sumPrefix: '$',
|
|
469
470
|
sumSuffix: '',
|
|
@@ -477,7 +478,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
477
478
|
decimalPlaces: 2,
|
|
478
479
|
useCompactNotation: false,
|
|
479
480
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
480
|
-
shortTitle: 'RC AOV (Total)',
|
|
481
481
|
tooltip: 'Average total transaction value for returning buyers. Typically higher than new customer AOV as loyal customers buy more.',
|
|
482
482
|
formulaDisplay: 'RC Total Revenue ÷ RC Order Count',
|
|
483
483
|
formula: 'rc_total_revenue / rc_order_count',
|
|
@@ -485,6 +485,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
485
485
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_AOV]: {
|
|
486
486
|
priority: 22,
|
|
487
487
|
title: 'Returning Customer Gross AOV',
|
|
488
|
+
shortTitle: 'RC AOV (Gross)',
|
|
488
489
|
description: 'Average order value for returning customers (gross revenue).',
|
|
489
490
|
sumPrefix: '$',
|
|
490
491
|
sumSuffix: '',
|
|
@@ -498,7 +499,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
498
499
|
decimalPlaces: 2,
|
|
499
500
|
useCompactNotation: false,
|
|
500
501
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
501
|
-
shortTitle: 'RC AOV (Gross)',
|
|
502
502
|
tooltip: 'Average gross revenue per order for returning customers before discounts and refunds.',
|
|
503
503
|
formulaDisplay: 'RC Gross Revenue ÷ RC Order Count',
|
|
504
504
|
formula: 'rc_gross_revenue / rc_order_count',
|
|
@@ -506,6 +506,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
506
506
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_NET_AOV]: {
|
|
507
507
|
priority: 23,
|
|
508
508
|
title: 'Returning Customer Net AOV',
|
|
509
|
+
shortTitle: 'RC AOV (Net)',
|
|
509
510
|
description: 'Average order value for returning customers (net revenue).',
|
|
510
511
|
sumPrefix: '$',
|
|
511
512
|
sumSuffix: '',
|
|
@@ -519,7 +520,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
519
520
|
decimalPlaces: 2,
|
|
520
521
|
useCompactNotation: false,
|
|
521
522
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
522
|
-
shortTitle: 'RC AOV (Net)',
|
|
523
523
|
tooltip: 'Average net revenue per order for returning customers after discounts and refunds.',
|
|
524
524
|
formulaDisplay: 'RC Net Revenue ÷ RC Order Count',
|
|
525
525
|
formula: 'rc_net_revenue / rc_order_count',
|
|
@@ -605,6 +605,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
605
605
|
[MEASURE.ORDERS_NEW_CUSTOMER_COGS_PER_ORDER]: {
|
|
606
606
|
priority: 13,
|
|
607
607
|
title: 'New Customer COGS Per Order',
|
|
608
|
+
shortTitle: 'NC COGS/Order',
|
|
608
609
|
description: 'Average COGS per order for new customers.',
|
|
609
610
|
sumPrefix: '$',
|
|
610
611
|
sumSuffix: '',
|
|
@@ -618,7 +619,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
618
619
|
decimalPlaces: 2,
|
|
619
620
|
useCompactNotation: false,
|
|
620
621
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
621
|
-
shortTitle: 'NC COGS/Order',
|
|
622
622
|
tooltip: 'Average product cost per new customer order. Compare to returning customers to assess cost mix differences.',
|
|
623
623
|
formulaDisplay: 'NC COGS ÷ NC Order Count',
|
|
624
624
|
formula: 'nc_cogs / nc_order_count',
|
|
@@ -626,6 +626,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
626
626
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_COGS_PER_ORDER]: {
|
|
627
627
|
priority: 23,
|
|
628
628
|
title: 'Returning Customer COGS Per Order',
|
|
629
|
+
shortTitle: 'RC COGS/Order',
|
|
629
630
|
description: 'Average COGS per order for returning customers.',
|
|
630
631
|
sumPrefix: '$',
|
|
631
632
|
sumSuffix: '',
|
|
@@ -639,7 +640,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
639
640
|
decimalPlaces: 2,
|
|
640
641
|
useCompactNotation: false,
|
|
641
642
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
642
|
-
shortTitle: 'RC COGS/Order',
|
|
643
643
|
tooltip: 'Average product cost per returning customer order.',
|
|
644
644
|
formulaDisplay: 'RC COGS ÷ RC Order Count',
|
|
645
645
|
formula: 'rc_cogs / rc_order_count',
|
|
@@ -705,6 +705,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
705
705
|
[MEASURE.ORDERS_REFUND_PER_ORDER]: {
|
|
706
706
|
priority: 4,
|
|
707
707
|
title: 'Refund Per Order',
|
|
708
|
+
shortTitle: 'Refund/Order',
|
|
708
709
|
description: 'Average refund amount per order.',
|
|
709
710
|
sumPrefix: '$',
|
|
710
711
|
sumSuffix: '',
|
|
@@ -718,7 +719,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
718
719
|
decimalPlaces: 2,
|
|
719
720
|
useCompactNotation: false,
|
|
720
721
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
721
|
-
shortTitle: 'Refund/Order',
|
|
722
722
|
tooltip: 'Average refund dollar amount per order placed. Useful for modeling the true realized revenue per order.',
|
|
723
723
|
formulaDisplay: 'Total Refunds ÷ Order Count',
|
|
724
724
|
formula: 'total_refunds / order_count',
|
|
@@ -726,6 +726,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
726
726
|
[MEASURE.ORDERS_NEW_CUSTOMER_REFUNDS]: {
|
|
727
727
|
priority: 5,
|
|
728
728
|
title: 'New Customer Refunds',
|
|
729
|
+
shortTitle: 'NC Refunds',
|
|
729
730
|
description: 'Total refund amount for new customers.',
|
|
730
731
|
sumPrefix: '$',
|
|
731
732
|
sumSuffix: '',
|
|
@@ -739,12 +740,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
739
740
|
decimalPlaces: 2,
|
|
740
741
|
useCompactNotation: true,
|
|
741
742
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
742
|
-
shortTitle: 'NC Refunds',
|
|
743
743
|
tooltip: 'The total dollar amount refunded to new customers. High values may indicate product/expectation issues with first-time buyers.',
|
|
744
744
|
},
|
|
745
745
|
[MEASURE.ORDERS_NEW_CUSTOMER_REFUND_COUNT]: {
|
|
746
746
|
priority: 6,
|
|
747
747
|
title: 'New Customer Refund Count',
|
|
748
|
+
shortTitle: 'NC Refund Ct',
|
|
748
749
|
description: 'Number of refunds for new customers.',
|
|
749
750
|
sumPrefix: '',
|
|
750
751
|
sumSuffix: '',
|
|
@@ -758,7 +759,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
758
759
|
decimalPlaces: 0,
|
|
759
760
|
useCompactNotation: false,
|
|
760
761
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
761
|
-
shortTitle: 'NC Refund Ct',
|
|
762
762
|
tooltip: 'The number of new customer orders that had a refund issued.',
|
|
763
763
|
},
|
|
764
764
|
[MEASURE.ORDERS_NEW_CUSTOMER_REFUND_PERCENT]: {
|
|
@@ -785,6 +785,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
785
785
|
[MEASURE.ORDERS_NEW_CUSTOMER_REFUND_PER_ORDER]: {
|
|
786
786
|
priority: 8,
|
|
787
787
|
title: 'New Customer Refund per Order',
|
|
788
|
+
shortTitle: 'NC Ref/Ord',
|
|
788
789
|
description: 'Average refund amount per new customer order.',
|
|
789
790
|
sumPrefix: '$',
|
|
790
791
|
sumSuffix: '',
|
|
@@ -798,7 +799,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
798
799
|
decimalPlaces: 2,
|
|
799
800
|
useCompactNotation: false,
|
|
800
801
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
801
|
-
shortTitle: 'NC Ref/Ord',
|
|
802
802
|
tooltip: 'Average refund dollar amount per new customer order placed.',
|
|
803
803
|
formulaDisplay: 'NC Refunds ÷ NC Order Count',
|
|
804
804
|
formula: 'nc_refunds / nc_order_count',
|
|
@@ -806,6 +806,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
806
806
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_REFUNDS]: {
|
|
807
807
|
priority: 9,
|
|
808
808
|
title: 'Returning Customer Refunds',
|
|
809
|
+
shortTitle: 'RC Refunds',
|
|
809
810
|
description: 'Total refund amount for returning customers.',
|
|
810
811
|
sumPrefix: '$',
|
|
811
812
|
sumSuffix: '',
|
|
@@ -819,12 +820,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
819
820
|
decimalPlaces: 2,
|
|
820
821
|
useCompactNotation: true,
|
|
821
822
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
822
|
-
shortTitle: 'RC Refunds',
|
|
823
823
|
tooltip: 'The total dollar amount refunded to returning customers. High values may indicate quality issues affecting repeat buyers.',
|
|
824
824
|
},
|
|
825
825
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_REFUND_COUNT]: {
|
|
826
826
|
priority: 10,
|
|
827
827
|
title: 'Returning Customer Refund Count',
|
|
828
|
+
shortTitle: 'RC Refund Ct',
|
|
828
829
|
description: 'Number of refunds for returning customers.',
|
|
829
830
|
sumPrefix: '',
|
|
830
831
|
sumSuffix: '',
|
|
@@ -838,7 +839,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
838
839
|
decimalPlaces: 0,
|
|
839
840
|
useCompactNotation: false,
|
|
840
841
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
841
|
-
shortTitle: 'RC Refund Ct',
|
|
842
842
|
tooltip: 'The number of returning customer orders that had a refund issued.',
|
|
843
843
|
},
|
|
844
844
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_REFUND_PERCENT]: {
|
|
@@ -865,6 +865,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
865
865
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_REFUND_PER_ORDER]: {
|
|
866
866
|
priority: 12,
|
|
867
867
|
title: 'Returning Customer Refund per Order',
|
|
868
|
+
shortTitle: 'RC Ref/Ord',
|
|
868
869
|
description: 'Average refund amount per returning customer order.',
|
|
869
870
|
sumPrefix: '$',
|
|
870
871
|
sumSuffix: '',
|
|
@@ -878,7 +879,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
878
879
|
decimalPlaces: 2,
|
|
879
880
|
useCompactNotation: false,
|
|
880
881
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
881
|
-
shortTitle: 'RC Ref/Ord',
|
|
882
882
|
tooltip: 'Average refund dollar amount per returning customer order placed.',
|
|
883
883
|
formulaDisplay: 'RC Refunds ÷ RC Order Count',
|
|
884
884
|
formula: 'rc_refunds / rc_order_count',
|
|
@@ -924,6 +924,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
924
924
|
[MEASURE.ORDERS_DISCOUNT_PER_ORDER]: {
|
|
925
925
|
priority: 14,
|
|
926
926
|
title: 'Discount Per Order',
|
|
927
|
+
shortTitle: 'Discount/Order',
|
|
927
928
|
description: 'Average discount per order.',
|
|
928
929
|
sumPrefix: '$',
|
|
929
930
|
sumSuffix: '',
|
|
@@ -937,7 +938,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
937
938
|
decimalPlaces: 2,
|
|
938
939
|
useCompactNotation: false,
|
|
939
940
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
940
|
-
shortTitle: 'Discount/Order',
|
|
941
941
|
tooltip: 'Average discount dollar value applied per order. Useful for understanding how much revenue is being given away per transaction.',
|
|
942
942
|
formulaDisplay: 'Total Discounts ÷ Order Count',
|
|
943
943
|
formula: 'total_discounts / order_count',
|
|
@@ -1106,6 +1106,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1106
1106
|
[MEASURE.ORDERS_SHIPPING_PER_ORDER]: {
|
|
1107
1107
|
priority: 33,
|
|
1108
1108
|
title: 'Shipping Per Order',
|
|
1109
|
+
shortTitle: 'Shipping/Order',
|
|
1109
1110
|
description: 'Average shipping per order.',
|
|
1110
1111
|
sumPrefix: '$',
|
|
1111
1112
|
sumSuffix: '',
|
|
@@ -1119,7 +1120,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1119
1120
|
decimalPlaces: 2,
|
|
1120
1121
|
useCompactNotation: false,
|
|
1121
1122
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1122
|
-
shortTitle: 'Shipping/Order',
|
|
1123
1123
|
tooltip: 'Average shipping fee collected per order.',
|
|
1124
1124
|
formulaDisplay: 'Total Shipping ÷ Order Count',
|
|
1125
1125
|
formula: 'total_shipping / order_count',
|
|
@@ -1430,6 +1430,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1430
1430
|
[MEASURE.ORDERS_NEW_CUSTOMER_PERCENT]: {
|
|
1431
1431
|
priority: 31,
|
|
1432
1432
|
title: 'New Customer %',
|
|
1433
|
+
shortTitle: 'NC %',
|
|
1433
1434
|
description: 'Percentage of orders from new customers.',
|
|
1434
1435
|
sumPrefix: '',
|
|
1435
1436
|
sumSuffix: '%',
|
|
@@ -1443,7 +1444,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1443
1444
|
decimalPlaces: 2,
|
|
1444
1445
|
useCompactNotation: false,
|
|
1445
1446
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1446
|
-
shortTitle: 'NC %',
|
|
1447
1447
|
tooltip: 'The percentage of total orders placed by first-time buyers. A high NC rate means the business is acquisition-heavy vs. retention-driven.',
|
|
1448
1448
|
formulaDisplay: 'NC Orders ÷ Total Orders × 100',
|
|
1449
1449
|
formula: 'nc_order_count / order_count * 100',
|
|
@@ -1451,6 +1451,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1451
1451
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_PERCENT]: {
|
|
1452
1452
|
priority: 32,
|
|
1453
1453
|
title: 'Returning Customer %',
|
|
1454
|
+
shortTitle: 'RC %',
|
|
1454
1455
|
description: 'Percentage of orders from returning customers.',
|
|
1455
1456
|
sumPrefix: '',
|
|
1456
1457
|
sumSuffix: '%',
|
|
@@ -1464,7 +1465,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1464
1465
|
decimalPlaces: 2,
|
|
1465
1466
|
useCompactNotation: false,
|
|
1466
1467
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1467
|
-
shortTitle: 'RC %',
|
|
1468
1468
|
tooltip: 'The percentage of total orders placed by repeat buyers. A high RC rate signals strong customer loyalty and retention.',
|
|
1469
1469
|
formulaDisplay: 'RC Orders ÷ Total Orders × 100',
|
|
1470
1470
|
formula: 'rc_order_count / order_count * 100',
|
|
@@ -1480,7 +1480,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1480
1480
|
avgSuffix: '',
|
|
1481
1481
|
icon: MEASURE_ICON.CHANNEL,
|
|
1482
1482
|
measure: MEASURE.ORDERS_CM1_PER_ORDER,
|
|
1483
|
-
category: MEASURE_CATEGORY.
|
|
1483
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1484
1484
|
valueType: MeasureValueType.CURRENCY,
|
|
1485
1485
|
decimalPlaces: 2,
|
|
1486
1486
|
useCompactNotation: false,
|
|
@@ -1500,7 +1500,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1500
1500
|
avgSuffix: '',
|
|
1501
1501
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1502
1502
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1_PER_ORDER,
|
|
1503
|
-
category: MEASURE_CATEGORY.
|
|
1503
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1504
1504
|
valueType: MeasureValueType.CURRENCY,
|
|
1505
1505
|
decimalPlaces: 2,
|
|
1506
1506
|
useCompactNotation: false,
|
|
@@ -1520,7 +1520,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1520
1520
|
avgSuffix: '',
|
|
1521
1521
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1522
1522
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_PER_ORDER,
|
|
1523
|
-
category: MEASURE_CATEGORY.
|
|
1523
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1524
1524
|
valueType: MeasureValueType.CURRENCY,
|
|
1525
1525
|
decimalPlaces: 2,
|
|
1526
1526
|
useCompactNotation: false,
|
|
@@ -1540,7 +1540,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1540
1540
|
avgSuffix: '',
|
|
1541
1541
|
icon: MEASURE_ICON.CHANNEL,
|
|
1542
1542
|
measure: MEASURE.ORDERS_CM2_PER_ORDER,
|
|
1543
|
-
category: MEASURE_CATEGORY.
|
|
1543
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1544
1544
|
valueType: MeasureValueType.CURRENCY,
|
|
1545
1545
|
decimalPlaces: 2,
|
|
1546
1546
|
useCompactNotation: false,
|
|
@@ -1560,7 +1560,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1560
1560
|
avgSuffix: '',
|
|
1561
1561
|
icon: MEASURE_ICON.CHANNEL,
|
|
1562
1562
|
measure: MEASURE.ORDERS_CM3_PER_ORDER,
|
|
1563
|
-
category: MEASURE_CATEGORY.
|
|
1563
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1564
1564
|
valueType: MeasureValueType.CURRENCY,
|
|
1565
1565
|
decimalPlaces: 2,
|
|
1566
1566
|
useCompactNotation: false,
|
|
@@ -1581,7 +1581,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1581
1581
|
avgSuffix: '',
|
|
1582
1582
|
icon: MEASURE_ICON.CHANNEL,
|
|
1583
1583
|
measure: MEASURE.ORDERS_CM4_PER_ORDER,
|
|
1584
|
-
category: MEASURE_CATEGORY.
|
|
1584
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1585
1585
|
valueType: MeasureValueType.CURRENCY,
|
|
1586
1586
|
decimalPlaces: 2,
|
|
1587
1587
|
useCompactNotation: false,
|
|
@@ -1601,7 +1601,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1601
1601
|
avgSuffix: '',
|
|
1602
1602
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1603
1603
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2_PER_ORDER,
|
|
1604
|
-
category: MEASURE_CATEGORY.
|
|
1604
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1605
1605
|
valueType: MeasureValueType.CURRENCY,
|
|
1606
1606
|
decimalPlaces: 2,
|
|
1607
1607
|
useCompactNotation: false,
|
|
@@ -1621,7 +1621,7 @@ 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.
|
|
1624
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1625
1625
|
valueType: MeasureValueType.CURRENCY,
|
|
1626
1626
|
decimalPlaces: 2,
|
|
1627
1627
|
useCompactNotation: false,
|
|
@@ -1641,7 +1641,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1641
1641
|
avgSuffix: '',
|
|
1642
1642
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1643
1643
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM4_PER_ORDER,
|
|
1644
|
-
category: MEASURE_CATEGORY.
|
|
1644
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1645
1645
|
valueType: MeasureValueType.CURRENCY,
|
|
1646
1646
|
decimalPlaces: 2,
|
|
1647
1647
|
useCompactNotation: false,
|
|
@@ -1661,7 +1661,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1661
1661
|
avgSuffix: '',
|
|
1662
1662
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1663
1663
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_PER_ORDER,
|
|
1664
|
-
category: MEASURE_CATEGORY.
|
|
1664
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1665
1665
|
valueType: MeasureValueType.CURRENCY,
|
|
1666
1666
|
decimalPlaces: 2,
|
|
1667
1667
|
useCompactNotation: false,
|
|
@@ -1681,7 +1681,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1681
1681
|
avgSuffix: '',
|
|
1682
1682
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1683
1683
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_PER_ORDER,
|
|
1684
|
-
category: MEASURE_CATEGORY.
|
|
1684
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1685
1685
|
valueType: MeasureValueType.CURRENCY,
|
|
1686
1686
|
decimalPlaces: 2,
|
|
1687
1687
|
useCompactNotation: false,
|
|
@@ -1701,7 +1701,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1701
1701
|
avgSuffix: '',
|
|
1702
1702
|
icon: MEASURE_ICON.SHOPIFY,
|
|
1703
1703
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM4_PER_ORDER,
|
|
1704
|
-
category: MEASURE_CATEGORY.
|
|
1704
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
1705
1705
|
valueType: MeasureValueType.CURRENCY,
|
|
1706
1706
|
decimalPlaces: 2,
|
|
1707
1707
|
useCompactNotation: false,
|
|
@@ -1713,6 +1713,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1713
1713
|
[MEASURE.ORDERS_AVG_ORDERS_PER_CUSTOMER]: {
|
|
1714
1714
|
priority: 6,
|
|
1715
1715
|
title: 'Avg Orders Per Customer',
|
|
1716
|
+
shortTitle: 'Avg Orders/Cust',
|
|
1716
1717
|
description: 'Average number of orders per customer.',
|
|
1717
1718
|
sumPrefix: '',
|
|
1718
1719
|
sumSuffix: '',
|
|
@@ -1726,7 +1727,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1726
1727
|
decimalPlaces: 2,
|
|
1727
1728
|
useCompactNotation: false,
|
|
1728
1729
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1729
|
-
shortTitle: 'Avg Orders/Cust',
|
|
1730
1730
|
tooltip: 'The average number of orders placed per unique customer in the period. Higher values indicate strong repeat purchase behavior.',
|
|
1731
1731
|
formulaDisplay: 'Order Count ÷ Unique Customers',
|
|
1732
1732
|
formula: 'order_count / unique_customers',
|
|
@@ -1753,6 +1753,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1753
1753
|
[MEASURE.ORDERS_RETURNING_CUSTOMERS]: {
|
|
1754
1754
|
priority: 3,
|
|
1755
1755
|
title: 'Returning Customers',
|
|
1756
|
+
shortTitle: 'Returning Customers',
|
|
1756
1757
|
description: 'Count of unique returning customers.',
|
|
1757
1758
|
sumPrefix: '',
|
|
1758
1759
|
sumSuffix: '',
|
|
@@ -1766,12 +1767,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1766
1767
|
decimalPlaces: 0,
|
|
1767
1768
|
useCompactNotation: false,
|
|
1768
1769
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1769
|
-
shortTitle: 'Returning Customers',
|
|
1770
1770
|
tooltip: 'The number of distinct customers who have ordered before and purchased again in the period. Core retention metric.',
|
|
1771
1771
|
},
|
|
1772
1772
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_RATE]: {
|
|
1773
1773
|
priority: 33,
|
|
1774
1774
|
title: 'New Customer Gross Revenue Rate',
|
|
1775
|
+
shortTitle: 'NC Gross Rate',
|
|
1775
1776
|
description: 'New customer gross revenue as percentage of total gross revenue.',
|
|
1776
1777
|
sumPrefix: '',
|
|
1777
1778
|
sumSuffix: '%',
|
|
@@ -1785,7 +1786,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1785
1786
|
decimalPlaces: 2,
|
|
1786
1787
|
useCompactNotation: false,
|
|
1787
1788
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1788
|
-
shortTitle: 'NC Gross Rate',
|
|
1789
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.',
|
|
1790
1790
|
formulaDisplay: 'NC Gross Revenue ÷ Gross Revenue × 100',
|
|
1791
1791
|
formula: 'nc_gross_revenue / gross_revenue * 100',
|
|
@@ -1793,6 +1793,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1793
1793
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_RATE]: {
|
|
1794
1794
|
priority: 34,
|
|
1795
1795
|
title: 'Returning Customer Gross Revenue Rate',
|
|
1796
|
+
shortTitle: 'RC Gross Rate',
|
|
1796
1797
|
description: 'Returning customer gross revenue as percentage of total gross revenue.',
|
|
1797
1798
|
sumPrefix: '',
|
|
1798
1799
|
sumSuffix: '%',
|
|
@@ -1806,7 +1807,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
1806
1807
|
decimalPlaces: 2,
|
|
1807
1808
|
useCompactNotation: false,
|
|
1808
1809
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
1809
|
-
shortTitle: 'RC Gross Rate',
|
|
1810
1810
|
tooltip: 'Returning customer gross revenue as a share of total gross revenue. High values indicate a retention-driven revenue base.',
|
|
1811
1811
|
formulaDisplay: 'RC Gross Revenue ÷ Gross Revenue × 100',
|
|
1812
1812
|
formula: 'rc_gross_revenue / gross_revenue * 100',
|
|
@@ -2243,7 +2243,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2243
2243
|
avgSuffix: '',
|
|
2244
2244
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2245
2245
|
measure: MEASURE.ORDERS_GROSS_PROFIT,
|
|
2246
|
-
category: MEASURE_CATEGORY.
|
|
2246
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2247
2247
|
valueType: MeasureValueType.CURRENCY,
|
|
2248
2248
|
decimalPlaces: 2,
|
|
2249
2249
|
useCompactNotation: true,
|
|
@@ -2263,7 +2263,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2263
2263
|
avgSuffix: '',
|
|
2264
2264
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2265
2265
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT,
|
|
2266
|
-
category: MEASURE_CATEGORY.
|
|
2266
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2267
2267
|
valueType: MeasureValueType.CURRENCY,
|
|
2268
2268
|
decimalPlaces: 2,
|
|
2269
2269
|
useCompactNotation: true,
|
|
@@ -2281,7 +2281,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2281
2281
|
avgSuffix: '',
|
|
2282
2282
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2283
2283
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT,
|
|
2284
|
-
category: MEASURE_CATEGORY.
|
|
2284
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2285
2285
|
valueType: MeasureValueType.CURRENCY,
|
|
2286
2286
|
decimalPlaces: 2,
|
|
2287
2287
|
useCompactNotation: true,
|
|
@@ -2299,7 +2299,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2299
2299
|
avgSuffix: '%',
|
|
2300
2300
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2301
2301
|
measure: MEASURE.ORDERS_GROSS_PROFIT_GROSS_PERCENT,
|
|
2302
|
-
category: MEASURE_CATEGORY.
|
|
2302
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2303
2303
|
valueType: MeasureValueType.PERCENTAGE,
|
|
2304
2304
|
decimalPlaces: 2,
|
|
2305
2305
|
useCompactNotation: false,
|
|
@@ -2312,6 +2312,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2312
2312
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT]: {
|
|
2313
2313
|
priority: 12,
|
|
2314
2314
|
title: 'New Customer Gross Profit % (of Gross)',
|
|
2315
|
+
shortTitle: 'NC GP % (Gross)',
|
|
2315
2316
|
description: 'NC gross profit as percentage of NC gross revenue.',
|
|
2316
2317
|
sumPrefix: '',
|
|
2317
2318
|
sumSuffix: '%',
|
|
@@ -2319,17 +2320,17 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2319
2320
|
avgSuffix: '%',
|
|
2320
2321
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2321
2322
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT,
|
|
2322
|
-
category: MEASURE_CATEGORY.
|
|
2323
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2323
2324
|
valueType: MeasureValueType.PERCENTAGE,
|
|
2324
2325
|
decimalPlaces: 2,
|
|
2325
2326
|
useCompactNotation: false,
|
|
2326
2327
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2327
|
-
shortTitle: 'NC GP % (Gross)',
|
|
2328
2328
|
tooltip: 'New customer gross profit as a share of their gross revenue.',
|
|
2329
2329
|
},
|
|
2330
2330
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT]: {
|
|
2331
2331
|
priority: 13,
|
|
2332
2332
|
title: 'Returning Customer Gross Profit % (of Gross)',
|
|
2333
|
+
shortTitle: 'RC GP % (Gross)',
|
|
2333
2334
|
description: 'RC gross profit as percentage of RC gross revenue.',
|
|
2334
2335
|
sumPrefix: '',
|
|
2335
2336
|
sumSuffix: '%',
|
|
@@ -2337,17 +2338,17 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2337
2338
|
avgSuffix: '%',
|
|
2338
2339
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2339
2340
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_GROSS_PERCENT,
|
|
2340
|
-
category: MEASURE_CATEGORY.
|
|
2341
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2341
2342
|
valueType: MeasureValueType.PERCENTAGE,
|
|
2342
2343
|
decimalPlaces: 2,
|
|
2343
2344
|
useCompactNotation: false,
|
|
2344
2345
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2345
|
-
shortTitle: 'RC GP % (Gross)',
|
|
2346
2346
|
tooltip: 'Returning customer gross profit as a share of their gross revenue.',
|
|
2347
2347
|
},
|
|
2348
2348
|
[MEASURE.ORDERS_GROSS_PROFIT_PER_ORDER]: {
|
|
2349
2349
|
priority: 21,
|
|
2350
2350
|
title: 'Gross Profit Per Order',
|
|
2351
|
+
shortTitle: 'GP/Order',
|
|
2351
2352
|
description: 'Average gross profit per order.',
|
|
2352
2353
|
sumPrefix: '$',
|
|
2353
2354
|
sumSuffix: '',
|
|
@@ -2355,12 +2356,11 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2355
2356
|
avgSuffix: '',
|
|
2356
2357
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2357
2358
|
measure: MEASURE.ORDERS_GROSS_PROFIT_PER_ORDER,
|
|
2358
|
-
category: MEASURE_CATEGORY.
|
|
2359
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2359
2360
|
valueType: MeasureValueType.CURRENCY,
|
|
2360
2361
|
decimalPlaces: 2,
|
|
2361
2362
|
useCompactNotation: false,
|
|
2362
2363
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2363
|
-
shortTitle: 'GP/Order',
|
|
2364
2364
|
tooltip: 'Average gross profit per order.',
|
|
2365
2365
|
formulaDisplay: 'Gross Profit ÷ Order Count',
|
|
2366
2366
|
formula: 'gross_profit / order_count',
|
|
@@ -2368,6 +2368,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2368
2368
|
[MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_PER_ORDER]: {
|
|
2369
2369
|
priority: 22,
|
|
2370
2370
|
title: 'New Customer Gross Profit Per Order',
|
|
2371
|
+
shortTitle: 'NC GP/Order',
|
|
2371
2372
|
description: 'Average gross profit per new customer order.',
|
|
2372
2373
|
sumPrefix: '$',
|
|
2373
2374
|
sumSuffix: '',
|
|
@@ -2375,17 +2376,17 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2375
2376
|
avgSuffix: '',
|
|
2376
2377
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2377
2378
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_GROSS_PROFIT_PER_ORDER,
|
|
2378
|
-
category: MEASURE_CATEGORY.
|
|
2379
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2379
2380
|
valueType: MeasureValueType.CURRENCY,
|
|
2380
2381
|
decimalPlaces: 2,
|
|
2381
2382
|
useCompactNotation: false,
|
|
2382
2383
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2383
|
-
shortTitle: 'NC GP/Order',
|
|
2384
2384
|
tooltip: 'Average gross profit per new customer order.',
|
|
2385
2385
|
},
|
|
2386
2386
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_PER_ORDER]: {
|
|
2387
2387
|
priority: 23,
|
|
2388
2388
|
title: 'Returning Customer Gross Profit Per Order',
|
|
2389
|
+
shortTitle: 'RC GP/Order',
|
|
2389
2390
|
description: 'Average gross profit per returning customer order.',
|
|
2390
2391
|
sumPrefix: '$',
|
|
2391
2392
|
sumSuffix: '',
|
|
@@ -2393,17 +2394,17 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2393
2394
|
avgSuffix: '',
|
|
2394
2395
|
icon: MEASURE_ICON.SHOPIFY,
|
|
2395
2396
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_GROSS_PROFIT_PER_ORDER,
|
|
2396
|
-
category: MEASURE_CATEGORY.
|
|
2397
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
2397
2398
|
valueType: MeasureValueType.CURRENCY,
|
|
2398
2399
|
decimalPlaces: 2,
|
|
2399
2400
|
useCompactNotation: false,
|
|
2400
2401
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2401
|
-
shortTitle: 'RC GP/Order',
|
|
2402
2402
|
tooltip: 'Average gross profit per returning customer order.',
|
|
2403
2403
|
},
|
|
2404
2404
|
[MEASURE.ORDERS_COGS_GROSS_RATE]: {
|
|
2405
2405
|
priority: 31,
|
|
2406
2406
|
title: 'COGS / Gross Rate',
|
|
2407
|
+
shortTitle: 'COGS/Gross %',
|
|
2407
2408
|
description: 'COGS as percentage of gross revenue.',
|
|
2408
2409
|
sumPrefix: '',
|
|
2409
2410
|
sumSuffix: '%',
|
|
@@ -2417,7 +2418,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2417
2418
|
decimalPlaces: 2,
|
|
2418
2419
|
useCompactNotation: false,
|
|
2419
2420
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2420
|
-
shortTitle: 'COGS/Gross %',
|
|
2421
2421
|
tooltip: 'Cost of goods as a share of gross revenue. The complement of gross margin rate — COGS % + Gross Margin % = 100%.',
|
|
2422
2422
|
formulaDisplay: 'COGS ÷ Gross Revenue × 100',
|
|
2423
2423
|
formula: 'cogs / gross_revenue * 100',
|
|
@@ -2425,6 +2425,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2425
2425
|
[MEASURE.ORDERS_NEW_CUSTOMER_COGS_GROSS_RATE]: {
|
|
2426
2426
|
priority: 35,
|
|
2427
2427
|
title: 'New Customer COGS / Gross Rate',
|
|
2428
|
+
shortTitle: 'NC COGS/Gross %',
|
|
2428
2429
|
description: 'NC COGS as percentage of gross revenue.',
|
|
2429
2430
|
sumPrefix: '',
|
|
2430
2431
|
sumSuffix: '%',
|
|
@@ -2438,7 +2439,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2438
2439
|
decimalPlaces: 2,
|
|
2439
2440
|
useCompactNotation: false,
|
|
2440
2441
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2441
|
-
shortTitle: 'NC COGS/Gross %',
|
|
2442
2442
|
tooltip: 'New customer COGS as a share of their gross revenue.',
|
|
2443
2443
|
formulaDisplay: 'NC COGS ÷ NC Gross Revenue × 100',
|
|
2444
2444
|
formula: 'nc_cogs / nc_gross_revenue * 100',
|
|
@@ -2467,6 +2467,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2467
2467
|
[MEASURE.ORDERS_COGS_NET_RATE]: {
|
|
2468
2468
|
priority: 32,
|
|
2469
2469
|
title: 'COGS / Net Rate',
|
|
2470
|
+
shortTitle: 'COGS/Net %',
|
|
2470
2471
|
description: 'COGS as percentage of net revenue.',
|
|
2471
2472
|
sumPrefix: '',
|
|
2472
2473
|
sumSuffix: '%',
|
|
@@ -2480,7 +2481,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2480
2481
|
decimalPlaces: 2,
|
|
2481
2482
|
useCompactNotation: false,
|
|
2482
2483
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2483
|
-
shortTitle: 'COGS/Net %',
|
|
2484
2484
|
tooltip: 'COGS as a share of net revenue. Higher than gross rate because discounts and refunds reduce the denominator.',
|
|
2485
2485
|
formulaDisplay: 'COGS ÷ Net Revenue × 100',
|
|
2486
2486
|
formula: 'cogs / net_revenue * 100',
|
|
@@ -2488,6 +2488,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2488
2488
|
[MEASURE.ORDERS_NEW_CUSTOMER_COGS_NET_RATE]: {
|
|
2489
2489
|
priority: 36,
|
|
2490
2490
|
title: 'New Customer COGS / Net Rate',
|
|
2491
|
+
shortTitle: 'NC COGS/Net %',
|
|
2491
2492
|
description: 'NC COGS as percentage of net revenue.',
|
|
2492
2493
|
sumPrefix: '',
|
|
2493
2494
|
sumSuffix: '%',
|
|
@@ -2501,7 +2502,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2501
2502
|
decimalPlaces: 2,
|
|
2502
2503
|
useCompactNotation: false,
|
|
2503
2504
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2504
|
-
shortTitle: 'NC COGS/Net %',
|
|
2505
2505
|
tooltip: 'New customer COGS as a share of their net revenue.',
|
|
2506
2506
|
formulaDisplay: 'NC COGS ÷ NC Net Revenue × 100',
|
|
2507
2507
|
formula: 'nc_cogs / nc_net_revenue * 100',
|
|
@@ -2509,6 +2509,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2509
2509
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_COGS_NET_RATE]: {
|
|
2510
2510
|
priority: 39,
|
|
2511
2511
|
title: 'Returning Customer COGS / Net Rate',
|
|
2512
|
+
shortTitle: 'RC COGS/Net %',
|
|
2512
2513
|
description: 'RC COGS as percentage of net revenue.',
|
|
2513
2514
|
sumPrefix: '',
|
|
2514
2515
|
sumSuffix: '%',
|
|
@@ -2522,7 +2523,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2522
2523
|
decimalPlaces: 2,
|
|
2523
2524
|
useCompactNotation: false,
|
|
2524
2525
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2525
|
-
shortTitle: 'RC COGS/Net %',
|
|
2526
2526
|
tooltip: 'Returning customer COGS as a share of their net revenue.',
|
|
2527
2527
|
formulaDisplay: 'RC COGS ÷ RC Net Revenue × 100',
|
|
2528
2528
|
formula: 'rc_cogs / rc_net_revenue * 100',
|
|
@@ -2530,6 +2530,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2530
2530
|
[MEASURE.ORDERS_LTV]: {
|
|
2531
2531
|
priority: 1,
|
|
2532
2532
|
title: 'Lifetime Value',
|
|
2533
|
+
shortTitle: 'LTV',
|
|
2533
2534
|
description: 'Average lifetime value of customers.',
|
|
2534
2535
|
sumPrefix: '$',
|
|
2535
2536
|
sumSuffix: '',
|
|
@@ -2543,8 +2544,8 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2543
2544
|
decimalPlaces: 2,
|
|
2544
2545
|
useCompactNotation: true,
|
|
2545
2546
|
applicableContexts: LTV_COHORT_APPLICABLE_CONTEXTS,
|
|
2546
|
-
shortTitle: 'LTV',
|
|
2547
2547
|
tooltip: 'The average total revenue generated per customer over their entire purchase history. Higher LTV justifies greater acquisition spend.',
|
|
2548
|
+
hideFromUI: true,
|
|
2548
2549
|
},
|
|
2549
2550
|
[MEASURE.ORDERS_LTV_90]: {
|
|
2550
2551
|
priority: 2,
|
|
@@ -2563,6 +2564,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2563
2564
|
useCompactNotation: true,
|
|
2564
2565
|
applicableContexts: LTV_COHORT_APPLICABLE_CONTEXTS,
|
|
2565
2566
|
tooltip: 'Average revenue per customer within 90 days of their first purchase. Useful for evaluating short-term payback on acquisition.',
|
|
2567
|
+
hideFromUI: true,
|
|
2566
2568
|
},
|
|
2567
2569
|
[MEASURE.ORDERS_LTV_180]: {
|
|
2568
2570
|
priority: 3,
|
|
@@ -2581,6 +2583,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2581
2583
|
useCompactNotation: true,
|
|
2582
2584
|
applicableContexts: LTV_COHORT_APPLICABLE_CONTEXTS,
|
|
2583
2585
|
tooltip: 'Average revenue per customer within 180 days of their first purchase. Captures two purchase cycles for most repeat-buy categories.',
|
|
2586
|
+
hideFromUI: true,
|
|
2584
2587
|
},
|
|
2585
2588
|
[MEASURE.ORDERS_LTV_365]: {
|
|
2586
2589
|
priority: 4,
|
|
@@ -2603,6 +2606,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2603
2606
|
[MEASURE.ORDERS_COHORT_GROSS_REVENUE]: {
|
|
2604
2607
|
priority: 33,
|
|
2605
2608
|
title: 'Cohort Gross Revenue',
|
|
2609
|
+
shortTitle: 'Cohort Gross Rev',
|
|
2606
2610
|
description: 'Cumulative gross revenue per cohort.',
|
|
2607
2611
|
sumPrefix: '$',
|
|
2608
2612
|
sumSuffix: '',
|
|
@@ -2616,12 +2620,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2616
2620
|
decimalPlaces: 2,
|
|
2617
2621
|
useCompactNotation: true,
|
|
2618
2622
|
applicableContexts: LTV_COHORT_APPLICABLE_CONTEXTS,
|
|
2619
|
-
shortTitle: 'Cohort Gross Rev',
|
|
2620
2623
|
tooltip: 'Cumulative gross revenue generated by a customer cohort over time. Used for LTV cohort analysis across acquisition periods.',
|
|
2621
2624
|
},
|
|
2622
2625
|
[MEASURE.ORDERS_COHORT_NET_REVENUE]: {
|
|
2623
2626
|
priority: 32,
|
|
2624
2627
|
title: 'Cohort Net Revenue',
|
|
2628
|
+
shortTitle: 'Cohort Net Rev',
|
|
2625
2629
|
description: 'Cumulative net revenue per cohort.',
|
|
2626
2630
|
sumPrefix: '$',
|
|
2627
2631
|
sumSuffix: '',
|
|
@@ -2635,12 +2639,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2635
2639
|
decimalPlaces: 2,
|
|
2636
2640
|
useCompactNotation: true,
|
|
2637
2641
|
applicableContexts: LTV_COHORT_APPLICABLE_CONTEXTS,
|
|
2638
|
-
shortTitle: 'Cohort Net Rev',
|
|
2639
2642
|
tooltip: 'Cumulative net revenue (after discounts and refunds) from a customer cohort over time.',
|
|
2640
2643
|
},
|
|
2641
2644
|
[MEASURE.ORDERS_COHORT_CUSTOMERS]: {
|
|
2642
2645
|
priority: 41,
|
|
2643
2646
|
title: 'Cohort Customers',
|
|
2647
|
+
shortTitle: 'Cohort Customers',
|
|
2644
2648
|
description: 'Number of customers in cohort.',
|
|
2645
2649
|
sumPrefix: '',
|
|
2646
2650
|
sumSuffix: '',
|
|
@@ -2654,12 +2658,12 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2654
2658
|
decimalPlaces: 0,
|
|
2655
2659
|
useCompactNotation: true,
|
|
2656
2660
|
applicableContexts: LTV_COHORT_APPLICABLE_CONTEXTS,
|
|
2657
|
-
shortTitle: 'Cohort Customers',
|
|
2658
2661
|
tooltip: 'The number of customers who made their first purchase in the cohort period. The denominator for all per-customer cohort metrics.',
|
|
2659
2662
|
},
|
|
2660
2663
|
[MEASURE.ORDERS_COHORT_RETENTION_PERCENT]: {
|
|
2661
2664
|
priority: 43,
|
|
2662
2665
|
title: 'Cohort Retention %',
|
|
2666
|
+
shortTitle: 'Cohort Retention',
|
|
2663
2667
|
description: 'Customer retention rate by cohort.',
|
|
2664
2668
|
sumPrefix: '',
|
|
2665
2669
|
sumSuffix: '%',
|
|
@@ -2673,7 +2677,6 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2673
2677
|
decimalPlaces: 2,
|
|
2674
2678
|
useCompactNotation: false,
|
|
2675
2679
|
applicableContexts: LTV_COHORT_APPLICABLE_CONTEXTS,
|
|
2676
|
-
shortTitle: 'Cohort Retention',
|
|
2677
2680
|
tooltip: 'The percentage of customers in a cohort who made an additional purchase in a subsequent period. Higher retention drives LTV.',
|
|
2678
2681
|
formulaDisplay: 'Returning Cohort Customers ÷ Initial Cohort Customers × 100',
|
|
2679
2682
|
formula: 'returning_cohort_customers / initial_cohort_customers * 100',
|
|
@@ -2716,6 +2719,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
2716
2719
|
useCompactNotation: false,
|
|
2717
2720
|
applicableContexts: STANDARD_APPLICABLE_CONTEXTS,
|
|
2718
2721
|
tooltip: 'A ranking of products ordered by revenue contribution. Identifies the highest-impact products for merchandising and ad targeting.',
|
|
2722
|
+
hideFromUI: true,
|
|
2719
2723
|
},
|
|
2720
2724
|
[MEASURE.ORDERS_CPA]: {
|
|
2721
2725
|
priority: 2,
|
|
@@ -3873,7 +3877,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3873
3877
|
avgSuffix: '',
|
|
3874
3878
|
icon: MEASURE_ICON.CHANNEL,
|
|
3875
3879
|
measure: MEASURE.ORDERS_CM2,
|
|
3876
|
-
category: MEASURE_CATEGORY.
|
|
3880
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3877
3881
|
valueType: MeasureValueType.CURRENCY,
|
|
3878
3882
|
decimalPlaces: 2,
|
|
3879
3883
|
useCompactNotation: true,
|
|
@@ -3894,7 +3898,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3894
3898
|
avgSuffix: '%',
|
|
3895
3899
|
icon: MEASURE_ICON.CHANNEL,
|
|
3896
3900
|
measure: MEASURE.ORDERS_CM2_PERCENT,
|
|
3897
|
-
category: MEASURE_CATEGORY.
|
|
3901
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3898
3902
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3899
3903
|
decimalPlaces: 2,
|
|
3900
3904
|
useCompactNotation: false,
|
|
@@ -3914,7 +3918,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3914
3918
|
avgSuffix: '',
|
|
3915
3919
|
icon: MEASURE_ICON.SHOPIFY,
|
|
3916
3920
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2,
|
|
3917
|
-
category: MEASURE_CATEGORY.
|
|
3921
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3918
3922
|
valueType: MeasureValueType.CURRENCY,
|
|
3919
3923
|
decimalPlaces: 2,
|
|
3920
3924
|
useCompactNotation: true,
|
|
@@ -3934,7 +3938,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3934
3938
|
avgSuffix: '%',
|
|
3935
3939
|
icon: MEASURE_ICON.SHOPIFY,
|
|
3936
3940
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM2_PERCENT,
|
|
3937
|
-
category: MEASURE_CATEGORY.
|
|
3941
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3938
3942
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3939
3943
|
decimalPlaces: 2,
|
|
3940
3944
|
useCompactNotation: false,
|
|
@@ -3954,7 +3958,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3954
3958
|
avgSuffix: '',
|
|
3955
3959
|
icon: MEASURE_ICON.SHOPIFY,
|
|
3956
3960
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2,
|
|
3957
|
-
category: MEASURE_CATEGORY.
|
|
3961
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3958
3962
|
valueType: MeasureValueType.CURRENCY,
|
|
3959
3963
|
decimalPlaces: 2,
|
|
3960
3964
|
useCompactNotation: true,
|
|
@@ -3974,7 +3978,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3974
3978
|
avgSuffix: '%',
|
|
3975
3979
|
icon: MEASURE_ICON.SHOPIFY,
|
|
3976
3980
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM2_PERCENT,
|
|
3977
|
-
category: MEASURE_CATEGORY.
|
|
3981
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3978
3982
|
valueType: MeasureValueType.PERCENTAGE,
|
|
3979
3983
|
decimalPlaces: 2,
|
|
3980
3984
|
useCompactNotation: false,
|
|
@@ -3995,7 +3999,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
3995
3999
|
avgSuffix: '',
|
|
3996
4000
|
icon: MEASURE_ICON.CHANNEL,
|
|
3997
4001
|
measure: MEASURE.ORDERS_CM3,
|
|
3998
|
-
category: MEASURE_CATEGORY.
|
|
4002
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
3999
4003
|
valueType: MeasureValueType.CURRENCY,
|
|
4000
4004
|
decimalPlaces: 2,
|
|
4001
4005
|
useCompactNotation: true,
|
|
@@ -4016,7 +4020,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4016
4020
|
avgSuffix: '%',
|
|
4017
4021
|
icon: MEASURE_ICON.CHANNEL,
|
|
4018
4022
|
measure: MEASURE.ORDERS_CM3_PERCENT,
|
|
4019
|
-
category: MEASURE_CATEGORY.
|
|
4023
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4020
4024
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4021
4025
|
decimalPlaces: 2,
|
|
4022
4026
|
useCompactNotation: false,
|
|
@@ -4036,7 +4040,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4036
4040
|
avgSuffix: '',
|
|
4037
4041
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4038
4042
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3,
|
|
4039
|
-
category: MEASURE_CATEGORY.
|
|
4043
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4040
4044
|
valueType: MeasureValueType.CURRENCY,
|
|
4041
4045
|
decimalPlaces: 2,
|
|
4042
4046
|
useCompactNotation: true,
|
|
@@ -4056,7 +4060,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4056
4060
|
avgSuffix: '%',
|
|
4057
4061
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4058
4062
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM3_PERCENT,
|
|
4059
|
-
category: MEASURE_CATEGORY.
|
|
4063
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4060
4064
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4061
4065
|
decimalPlaces: 2,
|
|
4062
4066
|
useCompactNotation: false,
|
|
@@ -4076,7 +4080,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4076
4080
|
avgSuffix: '',
|
|
4077
4081
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4078
4082
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3,
|
|
4079
|
-
category: MEASURE_CATEGORY.
|
|
4083
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4080
4084
|
valueType: MeasureValueType.CURRENCY,
|
|
4081
4085
|
decimalPlaces: 2,
|
|
4082
4086
|
useCompactNotation: true,
|
|
@@ -4096,7 +4100,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4096
4100
|
avgSuffix: '%',
|
|
4097
4101
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4098
4102
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM3_PERCENT,
|
|
4099
|
-
category: MEASURE_CATEGORY.
|
|
4103
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4100
4104
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4101
4105
|
decimalPlaces: 2,
|
|
4102
4106
|
useCompactNotation: false,
|
|
@@ -4117,7 +4121,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4117
4121
|
avgSuffix: '',
|
|
4118
4122
|
icon: MEASURE_ICON.CHANNEL,
|
|
4119
4123
|
measure: MEASURE.ORDERS_CM4,
|
|
4120
|
-
category: MEASURE_CATEGORY.
|
|
4124
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4121
4125
|
valueType: MeasureValueType.CURRENCY,
|
|
4122
4126
|
decimalPlaces: 2,
|
|
4123
4127
|
useCompactNotation: true,
|
|
@@ -4138,7 +4142,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4138
4142
|
avgSuffix: '%',
|
|
4139
4143
|
icon: MEASURE_ICON.CHANNEL,
|
|
4140
4144
|
measure: MEASURE.ORDERS_CM4_PERCENT,
|
|
4141
|
-
category: MEASURE_CATEGORY.
|
|
4145
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4142
4146
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4143
4147
|
decimalPlaces: 2,
|
|
4144
4148
|
useCompactNotation: false,
|
|
@@ -4158,7 +4162,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4158
4162
|
avgSuffix: '',
|
|
4159
4163
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4160
4164
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM4,
|
|
4161
|
-
category: MEASURE_CATEGORY.
|
|
4165
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4162
4166
|
valueType: MeasureValueType.CURRENCY,
|
|
4163
4167
|
decimalPlaces: 2,
|
|
4164
4168
|
useCompactNotation: true,
|
|
@@ -4166,6 +4170,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4166
4170
|
tooltip: 'Operating profit from new customer acquisitions after all variable and fixed costs.',
|
|
4167
4171
|
formulaDisplay: '(NC CM3) − (NC Fixed Costs)',
|
|
4168
4172
|
formula: '(nc_cm3) - (nc_fixed_costs)',
|
|
4173
|
+
hideFromUI: true,
|
|
4169
4174
|
},
|
|
4170
4175
|
[MEASURE.ORDERS_NEW_CUSTOMER_CM4_PERCENT]: {
|
|
4171
4176
|
priority: 38,
|
|
@@ -4178,7 +4183,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4178
4183
|
avgSuffix: '%',
|
|
4179
4184
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4180
4185
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM4_PERCENT,
|
|
4181
|
-
category: MEASURE_CATEGORY.
|
|
4186
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4182
4187
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4183
4188
|
decimalPlaces: 2,
|
|
4184
4189
|
useCompactNotation: false,
|
|
@@ -4186,6 +4191,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4186
4191
|
tooltip: 'What percentage of new customer net revenue becomes operating profit after all costs.',
|
|
4187
4192
|
formulaDisplay: '((NC CM4) ÷ (NC Net Revenue)) × 100',
|
|
4188
4193
|
formula: '((nc_cm4) / (nc_net_revenue)) * 100',
|
|
4194
|
+
hideFromUI: true,
|
|
4189
4195
|
},
|
|
4190
4196
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM4]: {
|
|
4191
4197
|
priority: 24,
|
|
@@ -4198,7 +4204,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4198
4204
|
avgSuffix: '',
|
|
4199
4205
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4200
4206
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM4,
|
|
4201
|
-
category: MEASURE_CATEGORY.
|
|
4207
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4202
4208
|
valueType: MeasureValueType.CURRENCY,
|
|
4203
4209
|
decimalPlaces: 2,
|
|
4204
4210
|
useCompactNotation: true,
|
|
@@ -4206,6 +4212,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4206
4212
|
tooltip: 'Operating profit from returning customer orders after all variable and fixed costs.',
|
|
4207
4213
|
formulaDisplay: '(RC CM3) − (RC Fixed Costs)',
|
|
4208
4214
|
formula: '(rc_cm3) - (rc_fixed_costs)',
|
|
4215
|
+
hideFromUI: true,
|
|
4209
4216
|
},
|
|
4210
4217
|
[MEASURE.ORDERS_RETURNING_CUSTOMER_CM4_PERCENT]: {
|
|
4211
4218
|
priority: 42,
|
|
@@ -4226,6 +4233,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4226
4233
|
tooltip: 'What percentage of returning customer net revenue becomes operating profit after all costs.',
|
|
4227
4234
|
formulaDisplay: '((RC CM4) ÷ (RC Net Revenue)) × 100',
|
|
4228
4235
|
formula: '((rc_cm4) / (rc_net_revenue)) * 100',
|
|
4236
|
+
hideFromUI: true,
|
|
4229
4237
|
},
|
|
4230
4238
|
[MEASURE.ORDERS_CM1]: {
|
|
4231
4239
|
priority: 1,
|
|
@@ -4238,7 +4246,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4238
4246
|
avgSuffix: '',
|
|
4239
4247
|
icon: MEASURE_ICON.CHANNEL,
|
|
4240
4248
|
measure: MEASURE.ORDERS_CM1,
|
|
4241
|
-
category: MEASURE_CATEGORY.
|
|
4249
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4242
4250
|
valueType: MeasureValueType.CURRENCY,
|
|
4243
4251
|
decimalPlaces: 2,
|
|
4244
4252
|
useCompactNotation: true,
|
|
@@ -4258,7 +4266,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4258
4266
|
avgSuffix: '%',
|
|
4259
4267
|
icon: MEASURE_ICON.CHANNEL,
|
|
4260
4268
|
measure: MEASURE.ORDERS_CM1_PERCENT,
|
|
4261
|
-
category: MEASURE_CATEGORY.
|
|
4269
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4262
4270
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4263
4271
|
decimalPlaces: 2,
|
|
4264
4272
|
useCompactNotation: false,
|
|
@@ -4278,7 +4286,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4278
4286
|
avgSuffix: '',
|
|
4279
4287
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4280
4288
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1,
|
|
4281
|
-
category: MEASURE_CATEGORY.
|
|
4289
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4282
4290
|
valueType: MeasureValueType.CURRENCY,
|
|
4283
4291
|
decimalPlaces: 2,
|
|
4284
4292
|
useCompactNotation: true,
|
|
@@ -4298,7 +4306,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4298
4306
|
avgSuffix: '%',
|
|
4299
4307
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4300
4308
|
measure: MEASURE.ORDERS_NEW_CUSTOMER_CM1_PERCENT,
|
|
4301
|
-
category: MEASURE_CATEGORY.
|
|
4309
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4302
4310
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4303
4311
|
decimalPlaces: 2,
|
|
4304
4312
|
useCompactNotation: false,
|
|
@@ -4318,7 +4326,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4318
4326
|
avgSuffix: '',
|
|
4319
4327
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4320
4328
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1,
|
|
4321
|
-
category: MEASURE_CATEGORY.
|
|
4329
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4322
4330
|
valueType: MeasureValueType.CURRENCY,
|
|
4323
4331
|
decimalPlaces: 2,
|
|
4324
4332
|
useCompactNotation: true,
|
|
@@ -4338,7 +4346,7 @@ export const ORDERS_MEASURES_MAP = {
|
|
|
4338
4346
|
avgSuffix: '%',
|
|
4339
4347
|
icon: MEASURE_ICON.SHOPIFY,
|
|
4340
4348
|
measure: MEASURE.ORDERS_RETURNING_CUSTOMER_CM1_PERCENT,
|
|
4341
|
-
category: MEASURE_CATEGORY.
|
|
4349
|
+
category: MEASURE_CATEGORY.ORDERS_CONTRIBUTION_MARGIN,
|
|
4342
4350
|
valueType: MeasureValueType.PERCENTAGE,
|
|
4343
4351
|
decimalPlaces: 2,
|
|
4344
4352
|
useCompactNotation: false,
|