diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/converter/FetchedStoreProfile.kt b/src/main/kotlin/com/ecwid/apiclient/v3/converter/FetchedStoreProfile.kt index 5100f8de4..e6e203822 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/converter/FetchedStoreProfile.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/converter/FetchedStoreProfile.kt @@ -115,6 +115,7 @@ fun FetchedStoreProfile.Settings.toUpdated(): UpdatedStoreProfile.Settings { salePrice = salePrice?.toUpdated(), showAcceptMarketingCheckbox = showAcceptMarketingCheckbox, showPricePerUnit = showPricePerUnit, + showRepeatOrderButton = showRepeatOrderButton, snapPixelId = snapPixelId, storeDescription = storeDescription, storeDescriptionTranslated = storeDescriptionTranslated, diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/request/UpdatedStoreProfile.kt b/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/request/UpdatedStoreProfile.kt index dcf4e7d8b..9b0a8ed71 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/request/UpdatedStoreProfile.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/request/UpdatedStoreProfile.kt @@ -108,6 +108,7 @@ data class UpdatedStoreProfile( val salePrice: SalePriceSettings? = null, val showAcceptMarketingCheckbox: Boolean? = null, val showPricePerUnit: Boolean? = null, + val showRepeatOrderButton: Boolean? = null, val snapPixelId: String? = null, val storeDescription: String? = null, val storeDescriptionTranslated: LocalizedValueMap? = null, diff --git a/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt b/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt index 57ffd731a..d1877f340 100644 --- a/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt +++ b/src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt @@ -139,6 +139,7 @@ data class FetchedStoreProfile( val salePrice: SalePriceSettings? = null, val showAcceptMarketingCheckbox: Boolean? = null, val showPricePerUnit: Boolean = false, + val showRepeatOrderButton: Boolean = false, val snapPixelId: String? = null, val storeDescription: String? = null, val storeDescriptionTranslated: LocalizedValueMap? = null,