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 3afaa046..69fb7780 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 @@ -760,6 +760,12 @@ data class FetchedStoreProfile( @JsonFieldName("product_details_show_image_alt_text_as_visible_description") val productDetailsShowAltTextAsVisibleAsDescription: Boolean? = null, + + @JsonFieldName("product_filters_orientation_position") + val productFiltersOrientationPosition: String? = null, + + @JsonFieldName("product_list_swatches_product_option_behavior") + val productListSwatchesProductOptionBehavior: String? = 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 c40c8b7f..808a2677 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 @@ -173,6 +173,8 @@ val fetchedStoreProfileNullablePropertyRules: List> = AllowNullable(FetchedStoreProfile.DesignSettings::swatchesProductOptionShape), AllowNullable(FetchedStoreProfile.DesignSettings::swatchesProductOptionSize), AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsShowAltTextAsVisibleAsDescription), + AllowNullable(FetchedStoreProfile.DesignSettings::productFiltersOrientationPosition), + AllowNullable(FetchedStoreProfile.DesignSettings::productListSwatchesProductOptionBehavior), IgnoreNullable(FetchedStoreProfile.FBMessengerSettings::enabled), IgnoreNullable(FetchedStoreProfile.FBMessengerSettings::fbMessengerMessageUsButtonColor), IgnoreNullable(FetchedStoreProfile.FBMessengerSettings::fbMessengerPageId),