Skip to content

Commit 4e5f88e

Browse files
Merge pull request #522 from Ecwid/ECWID-167154
ECWID-167154 'All products' mode on catalog page: CATEGORY filter and…
2 parents 4987185 + a27cf2f commit 4e5f88e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/main/kotlin/com/ecwid/apiclient/v3/dto/profile/result/FetchedStoreProfile.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,9 @@ data class FetchedStoreProfile(
446446
@JsonFieldName("feedback_message_position")
447447
val feedbackMessagePosition: String? = null,
448448

449+
@JsonFieldName("hide_category_block_show_all_enabled_products")
450+
val hideCategoryBlockShowAllEnabledProducts: Boolean? = null,
451+
449452
@JsonFieldName("legal_pages_show_page_links")
450453
val legalPagesShowPageLinks: Boolean? = null,
451454

src/test/kotlin/com/ecwid/apiclient/v3/rule/nullablepropertyrules/FetchedStoreProfileRules.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ val fetchedStoreProfileNullablePropertyRules: List<NullablePropertyRule<*, *>> =
6868
AllowNullable(FetchedStoreProfile.DesignSettings::enablePageTransitions),
6969
AllowNullable(FetchedStoreProfile.DesignSettings::enableSimpleCategoryList),
7070
AllowNullable(FetchedStoreProfile.DesignSettings::feedbackMessagePosition),
71+
AllowNullable(FetchedStoreProfile.DesignSettings::hideCategoryBlockShowAllEnabledProducts),
7172
AllowNullable(FetchedStoreProfile.DesignSettings::legalPagesShowPageLinks),
7273
AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsAdditionalImagesHasShadow),
7374
AllowNullable(FetchedStoreProfile.DesignSettings::productDetailsAdditionalImagesPreviewOnClick),

0 commit comments

Comments
 (0)