File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11node_modules
22CHANGELOG.md
3+ packages /types /src /config
Original file line number Diff line number Diff line change 77export enum GoalDataKey {
88 AMOUNT = 'amount' ,
99 PRODUCTS_COUNT = 'productsCount' ,
10- TRANSACTION_ID = 'transactionId'
10+ TRANSACTION_ID = 'transactionId' ,
11+ CUSTOM_DIMENSION_1 = 'customDimension1' ,
12+ CUSTOM_DIMENSION_2 = 'customDimension2' ,
13+ CUSTOM_DIMENSION_3 = 'customDimension3' ,
14+ CUSTOM_DIMENSION_4 = 'customDimension4' ,
15+ CUSTOM_DIMENSION_5 = 'customDimension5'
1116}
Original file line number Diff line number Diff line change @@ -2529,11 +2529,11 @@ export type ConversionEvent = {
25292529 /**
25302530 * Key of the metric
25312531 */
2532- key ?: 'amount' | 'productsCount' | 'transactionId' ;
2532+ key ?: 'amount' | 'productsCount' | 'transactionId' | 'customDimension1' | 'customDimension2' | 'customDimension3' | 'customDimension4' | 'customDimension5' ;
25332533 /**
25342534 * Value of the metric
25352535 */
2536- value ?: ( number | string ) ;
2536+ value ?: ( number | string | Array < string > ) ;
25372537 } > ;
25382538 /**
25392539 * Bucketing data (experiences that this visitor is currently part of) for the visitor. In case that **enrichData=true** flag is being sent and
@@ -2830,4 +2830,4 @@ export type $OpenApiTs = {
28302830 } ;
28312831 } ;
28322832 } ;
2833- } ;
2833+ } ;
You can’t perform that action at this time.
0 commit comments