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 d2251d1a..3afaa046 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 @@ -751,6 +751,15 @@ data class FetchedStoreProfile( @JsonFieldName("show_signin_link_with_unified_account_page") val showSigninLinkWithUnifiedAccountPage: Boolean? = null, + + @JsonFieldName("swatches_product_option_shape") + val swatchesProductOptionShape: String? = null, + + @JsonFieldName("swatches_product_option_size") + val swatchesProductOptionSize: String? = null, + + @JsonFieldName("product_details_show_image_alt_text_as_visible_description") + val productDetailsShowAltTextAsVisibleAsDescription: Boolean? = null, ) data class ProductFilterItem( diff --git a/src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt b/src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt index b7b5987e..c40c8b7f 100644 --- a/src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt +++ b/src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt @@ -170,6 +170,9 @@ val fetchedStoreProfileNullablePropertyRules: List> = AllowNullable(FetchedStoreProfile.DesignSettings::showCartWidget), AllowNullable(FetchedStoreProfile.DesignSettings::showRootCategories), AllowNullable(FetchedStoreProfile.DesignSettings::showSigninLinkWithUnifiedAccountPage), + AllowNullable(FetchedStoreProfile.DesignSettings::swatchesProductOptionShape), + AllowNullable(FetchedStoreProfile.DesignSettings::swatchesProductOptionSize), + AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsShowAltTextAsVisibleAsDescription), IgnoreNullable(FetchedStoreProfile.FBMessengerSettings::enabled), IgnoreNullable(FetchedStoreProfile.FBMessengerSettings::fbMessengerMessageUsButtonColor), IgnoreNullable(FetchedStoreProfile.FBMessengerSettings::fbMessengerPageId),