File tree Expand file tree Collapse file tree 4 files changed +4
-0
lines changed
main/kotlin/com/ecwid/apiclient/v3
test/kotlin/com/ecwid/apiclient/v3/entity Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ fun FetchedStoreProfile.Settings.toUpdated(): UpdatedStoreProfile.Settings {
104104 googleRemarketingEnabled = googleRemarketingEnabled,
105105 googleTagId = googleTagId,
106106 hideOutOfStockProductsInStorefront = hideOutOfStockProductsInStorefront,
107+ highlightCompositeProductsOnStorefront = highlightCompositeProductsOnStorefront,
107108 openBagOnAddition = openBagOnAddition,
108109 orderCommentsCaption = orderCommentsCaption,
109110 orderCommentsEnabled = orderCommentsEnabled,
Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ data class UpdatedStoreProfile(
9898 val googleRemarketingEnabled : Boolean? = null ,
9999 val googleTagId : String? = null ,
100100 val hideOutOfStockProductsInStorefront : Boolean? = null ,
101+ val highlightCompositeProductsOnStorefront : Boolean? = null ,
101102 val orderCommentsCaption : String? = null ,
102103 val orderCommentsEnabled : Boolean? = null ,
103104 val orderCommentsRequired : Boolean? = null ,
Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ data class FetchedStoreProfile(
127127 val googleRemarketingEnabled : Boolean? = null ,
128128 val googleTagId : String? = null ,
129129 val hideOutOfStockProductsInStorefront : Boolean? = null ,
130+ val highlightCompositeProductsOnStorefront : Boolean? = null ,
130131 val invoiceLogoUrl : String? = null ,
131132 val openBagOnAddition : Boolean = false ,
132133 val orderCommentsCaption : String? = null ,
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ class StoreProfileTest : BaseEntityTest() {
4949 orderCommentsCaption = " orderCommentsCaption" ,
5050 orderCommentsRequired = true ,
5151 hideOutOfStockProductsInStorefront = true ,
52+ highlightCompositeProductsOnStorefront = true ,
5253 askCompanyName = true ,
5354 favoritesEnabled = true ,
5455 defaultProductSortOrder = UpdatedStoreProfile .ProductSortOrder .NAME_ASC ,
You can’t perform that action at this time.
0 commit comments