Skip to content

Releases: Relewise/relewise-sdk-javascript

[email protected]

05 Dec 12:30
3aaf8b9
Compare
Choose a tag to compare

[email protected]

19 Nov 07:06
Compare
Choose a tag to compare

What's Changed

  • feat: update all 3rd party packages by @mzanoni in #84
  • feat: set client version for integrations by @mzanoni in #85

Full Changelog: https://github.com/Relewise/relewise-sdk-javascript/compare/[email protected]@1.0.2

[email protected]

27 Aug 06:31
Compare
Choose a tag to compare

What's Changed

  • Feat: remove cross fetch by @SWH-Relewise in #83
    This has been done to better support using this package client side in Next.js 14.
    cross-fetch was originally introduced to ensure fetch support in older Node versions.
    Latest Node LTS does support fetch natively now which encouraged us to no longer use the package.
    This release contains no other breaking changes than the removal of the cross fetch dependency.

Full Changelog: https://github.com/Relewise/relewise-sdk-javascript/compare/[email protected]@2.0.0

[email protected]

22 Aug 09:15
Compare
Choose a tag to compare

What's Changed

Full Changelog: https://github.com/Relewise/relewise-sdk-javascript/compare/[email protected]@1.34.0

[email protected]

07 Aug 10:44
Compare
Choose a tag to compare

What's Changed

  • Feat: Add Get Content Facet Helper & Get Product Category Facet Helper by @mzanoni in #72

Full Changelog: https://github.com/Relewise/relewise-sdk-javascript/compare/[email protected]@1.33.0

[email protected]

26 Jul 06:54
Compare
Choose a tag to compare

[email protected]

05 Jul 05:19
Compare
Choose a tag to compare

What's Changed

  • feat: Get Product Facet by @mzanoni in #69
    This features a clean way of getting a concrete facet with the correct type:
    const request: ProductSearchRequest = new ProductSearchBuilder(...)
        .facets(f => f.addProductDataStringValueFacet('DataKeyName', 'Product'))
        .build();

    const result = await searcher.searchProducts(request);

    if (result && result.facets) {
        const dataStringFacet: ProductDataStringValueFacetResult | null = GetProductFacet.dataString(result.facets, 'DataKeyName', 'Product');
    }

Full Changelog: https://github.com/Relewise/relewise-sdk-javascript/compare/[email protected]@1.31.0

[email protected]

01 Jul 12:58
Compare
Choose a tag to compare

What's Changed

  • [internal optimization] feat: split filterbuilder into individual builders by @RAORelewise in #63
  • feat: Add HasValue and RelativeDateTimeCondition by @mzanoni in #62
  • feat: add new Variant, ProductCategory, Brand, Company and ContentCategory filters by @mzanoni in #64
  • feat: Add new RecentlyViewed and RecentlyPurchased Modifiers by @mzanoni in #66
  • feat: add new Product and Content filters by @mzanoni in #65
  • feat: Add ProductCategoryDataObjectFacet and ContentDataObjectFacet by @mzanoni in #67
  • feat: optimize comments for FilterBuilders by @RAORelewise in #68

Full Changelog: https://github.com/Relewise/relewise-sdk-javascript/compare/[email protected]@1.30.0

[email protected]

24 Jun 09:06
Compare
Choose a tag to compare

[email protected]

18 Jun 06:26
Compare
Choose a tag to compare