Skip to content

Releases: VirtoCommerce/vc-module-experience-api

3.816.0

25 Mar 14:18
Compare
Choose a tag to compare

🎯 Development

  • add subscriptions support (#534)

3.815.0

18 Mar 17:09
Compare
Choose a tag to compare

🐞 Bug fixes

  • (The anonymous cart is not cleared after merge. After the fix, the mutation will delete second cart after merge by default. Added mutation option deleteAfterMerge: bool. By default, true.)

3.814.0

18 Mar 07:56
Compare
Choose a tag to compare

🐞 Bug fixes

  • (Adds CertainDate Filter to for product search in xapi if First listed and Listing expires are configured for product.)

3.800.5

18 Mar 17:23
Compare
Choose a tag to compare

🐞 Bug fixes

  • (The anonymous cart is not cleared after merge. After the fix, the mutation will delete second cart after merge by default. Added mutation option deleteAfterMerge: bool. By default, true.)

3.800.4

18 Mar 10:22
Compare
Choose a tag to compare

🐞 Bug fixes

  • (Adds CertainDate Filter to for product search in xapi if First listed and Listing expires are configured for product.)

3.449.6

18 Mar 17:25
Compare
Choose a tag to compare

🐞 Bug fixes

  • (The anonymous cart is not cleared after merge. After the fix, the mutation will delete second cart after merge by default. Added mutation option deleteAfterMerge: bool. By default, true.)

3.449.5

18 Mar 10:34
Compare
Choose a tag to compare

🐞 Bug fixes

  • (Adds CertainDate Filter to for product search in xapi if First listed and Listing expires are configured for product.)

3.813.0

14 Mar 09:07
Compare
Choose a tag to compare

🎯 Development

  • (Added Content Type filter to enable filtering by pages. It prevents from retrieving blogs via page query.)

3.812.0

13 Mar 13:13
Compare
Choose a tag to compare

🎯 Development

  • (Expanded store settings query to include installed modules and public store settings for each module. This enhancement enables frontend applications to efficiently access module settings. Set the store platform setting to true to ensure accessibility and visibility of settings across the store query in XAPI. Example of the modules with public settings: Google Analytics, Hotjar, etc.)
query{
  store(storeId: "B2B-store", cultureName: "en-US") {
    storeId
    settings {
      modules { moduleId settings { name value } }
    }
  }
}

image

3.811.0

12 Mar 07:37
Compare
Choose a tag to compare

🎯 Development

  • Adds page query that allows request page content by id.

🐞 Bug fixes

  • Resolves seo by slug with empty store.

Pages Query

query{
  pages(storeId: "B2B-store",  cultureName: "en-US", keyword: "Test" ) {
    totalCount
    items{ permalink relativeUrl name id content }
  }
}

Page Query

query{
  page(storeId: "B2B-store", id: "QjJCLXN0b3JlOjpwYWdlczo6L2hvbWVwYWdlLnBhZ2U-" ) {
    id name content
  }
}