From 719b66e538a89bd99124ed3ff3f437300b2e89af Mon Sep 17 00:00:00 2001 From: gandalf Date: Thu, 19 Sep 2024 19:13:34 +0400 Subject: [PATCH 1/3] ECWID-149175 add uniqueProductViews to ReportType --- .../kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt b/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt index 55660060b..43948ee82 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt @@ -23,6 +23,7 @@ enum class ReportType { topOfPaymentMethodsByOrders, topOfCouponsByOrders, topOfCategoriesByOrders, + uniqueProductViews, /** finance */ allRevenue, From 4999c1c8b683521dcd795c34bedb63a5857b1b38 Mon Sep 17 00:00:00 2001 From: gandalf Date: Thu, 19 Sep 2024 19:41:58 +0400 Subject: [PATCH 2/3] ECWID-149175 add all conversions reports --- .../com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt b/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt index 43948ee82..666eda808 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt @@ -23,7 +23,6 @@ enum class ReportType { topOfPaymentMethodsByOrders, topOfCouponsByOrders, topOfCategoriesByOrders, - uniqueProductViews, /** finance */ allRevenue, @@ -40,5 +39,9 @@ enum class ReportType { checkoutSalesFunnel, abandonedCarts, topOfProductsByAddingToFavorites, + uniqueProductViews, + uniqueProductInCart, + uniqueProductOnCheckout, + uniqueCompletedOrders, } From 7b391987612b7dadeb53cb5b30bdd43779893a39 Mon Sep 17 00:00:00 2001 From: gandalf Date: Mon, 23 Sep 2024 16:19:16 +0400 Subject: [PATCH 3/3] ECWID-149175 rename conversions report types --- .../com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt b/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt index 666eda808..29d76d337 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/dto/report/enums/ReportType.kt @@ -39,9 +39,9 @@ enum class ReportType { checkoutSalesFunnel, abandonedCarts, topOfProductsByAddingToFavorites, - uniqueProductViews, - uniqueProductInCart, - uniqueProductOnCheckout, - uniqueCompletedOrders, + uniqueVisitorsProductViews, + uniqueVisitorsProductInCart, + uniqueVisitorsCheckoutStart, + uniqueVisitorsPurchase, }