Vue Storefront is now Alokai! Learn More
@vsf-enterprise/bigcommerce-sdk

@vsf-enterprise/bigcommerce-sdk

4.0.0

Major Changes

  • CHANGED Changed minimum Node version from 16 to 18. The condition that was forcing the Node version to be lower than 19 is also removed.

Patch Changes

  • Updated dependencies:
    • @vsf-enterprise/bigcommerce-types@2.0.0

3.1.1

Patch Changes

  • CHANGED Deprecated the BigCommerceModuleType interface. It is no longer necessary to use this type. It's going to be removed in the next major version after Oct 1, 2024.
import { initSDK, buildModule } from "@vue-storefront/sdk";
- import { bigcommerceModule, SAPCCModuleType } from "@vue-storefront/sapcc-sdk";
+ import { bigcommerceModule } from "@vue-storefront/sapcc-sdk";

const sdkConfig = {
-  bigcommerce: buildModule<BigCommerceModuleType>(bigcommerceModule, {
+  bigcommerce: buildModule(bigcommerceModule, {
    apiUrl: "http://localhost:8181/bigcommerce",
  }),
};

export const sdk = initSDK(sdkConfig);
  • CHANGED bigcommerceModule has been deprecated. Use middlewareModule instead. It's going to be removed in the next major version after Apr 1, 2025.
- import { initSDK, buildModule } from '@vue-storefront/sdk';
- import { bigcommerceModule } from '@vsf-enterprise/bigcommerce-sdk'
+ import { initSDK, buildModule, middlewareModule } from '@vue-storefront/sdk';
+ import { Endpoints as BigcommerceEndpoints } from '@vsf-enterprise/bigcommerce-api';

const sdkConfig = {
  bigcommerce:
    buildModule(
-      bigcommerceModule,
+      middlewareModule<BigcommerceEndpoints>,
      {
        apiUrl: 'http://localhost:8181/bigcommerce',
        ssrApiUrl: 'http://localhost:8181/bigcommerce'
      }
    )
};

export const sdk = initSDK(sdkConfig);

Updating your bigcommerceModule to this version should not disrupt your existing code; however, switching to middlewareModule will require certain modifications. To migrate:

  • Use wishlistId: number instead of { wishlistId: number } in the deleteWishlist method.
- await sdk.bigcommerce.deleteWishlist({ wishlistId: 1 });
+ await sdk.bigcommerce.deleteWishlist(1);

3.1.0

Minor Changes

  • cefe8e6: Add 'getCategoryTreeGql' method to fetch category tree from BigCommerce via GraphQL. The response is enriched with a 'productCount' field that contains the number of products in each category comparing to the REST getCategoryTree method.

Patch Changes

  • Updated dependencies cefe8e6
    • @vsf-enterprise/bigcommerce-types@1.5.0

3.0.0

Major Changes

  • 93ebb8f: Added possibility to send cookie-independent requests via SDK to integration's GET endpoints in order to cache their response

    Migration guide


    In this version, we had to introduce tiny breaking changes to give possibility of sending cookie independent requests to the GET endpoints. Signature of following SDK methods changed:
    getCategoryTree

    From:
    async function getCategoryTree(
      options?: MethodOptions
    ): Promise<GetCategoryTreeResponse>;
    

    To:
    async function getCategoryTree(
      props?: GetCategoryTreeParameters,
      options?: MethodOptions
    ): Promise<GetCategoryTreeResponse>;
    
    getSite

    From:
    async function getSite(options?: MethodOptions): Promise<GetSiteResponse>;
    

    To:
    async function getSite(
      props?: GetSiteParameters,
      options?: MethodOptions
    ): Promise<GetSiteResponse>;
    
    getStoreMeta

    From:
    async function getStoreMeta(
      options?: MethodOptions
    ): Promise<GetStoreMetaResponse>;
    

    To:
    async function getStoreMeta(
      props?: GetStoreMetaParameters,
      options?: MethodOptions
    ): Promise<GetStoreMetaResponse>;
    

    Make sure to update calls of aforementioned methods in your codebase if you use options parameter in some of them. If not, then probably it won't be neccesary to make any changes.

Patch Changes

  • Updated dependencies 93ebb8f
    • @vsf-enterprise/bigcommerce-types@1.4.0

2.0.0

Major Changes

  • Implemented @vue-storefront/sdk-axios-request-sender package in all SDK methods. Also, getCategory, getChannel, getCurrencies, getCustomers, getFilters, getProductById, getProductReview, getProductReviewCollection, getProducts, getProductsById, getProductsWithFilter, getSite, getStoreMeta methods now send GET instead of POST requests to Alokai's Server Middleware.

1.3.0

Minor Changes

  • Added "deleteCoupon" Endpoint Functionality:
    • Introduced a new API endpoint in the api package to facilitate coupon deletion.
    • Implemented a corresponding client method in the SDK package for seamless interaction.
    • Expanded the types package with necessary data structures to support this feature.

Patch Changes

  • Updated dependencies [bdfe3b3]:
    • @vsf-enterprise/bigcommerce-types@1.3.0

1.2.0

Minor Changes

  • Added "addCoupon" Endpoint Functionality:
  • Introduced a new API endpoint in the api package to facilitate coupon addition.
  • Implemented a corresponding client method in the SDK package for seamless interaction.
  • Expanded the types package with necessary data structures to support this feature.

Patch Changes

  • Updated dependencies [d5150d2]:
    • @vsf-enterprise/bigcommerce-types@1.2.0

1.1.1

Patch Changes

  • chore: updateCustomer add customer settings global login

1.1.0

Minor Changes

  • add node18 (>= 16 < 19) support

1.0.0

Patch Changes

  • Update vsf package versions to stable versions

1.0.0-rc.0

Minor Changes

  • new sdk method - getAllWishlists
  • updateCustomer sdk method
  • getFilters - sdk method
  • Updating the documentation for the BigCommerce SDK, minor changes and corrections done across a number of doc files
  • updateFormFields sdk method
  • getCustomerAddress sdk method
  • getOrders sdk method
  • getStoreMeta sdk method
  • removing unused type in UpdateAddressParameters and introducing new createCustomerAddress sdk method
  • getProductsById sdk method
  • getProductById and getOrdersWithDetails sdk methods for the BigCommerce integration
  • getOrderProducts and getOrderShippingAddresses sdk methods
  • removeCartItem sdk method
  • fixed JS error in the updateCustomerAddress endpoint where destructuring was made on a variable that can be undefined. added a new updateCustomerAddress method for the sdk
  • createCustomer sdk method
  • removeWishlistItem new sdk method
  • bigcommerce-types - removed redundant customer_id property in the CreateAddressParameters, bigcommerce-sdk - added createCustomerAddress method"
  • getOrderByCart - sdk method
  • Applied the fix to disable the redirect to the unexisting route account.php, update login method to return customer token, added login and updateCart methods to the SDK
  • adding new sdk method - createWishlist
  • getProductReview - new sdk method
  • getCustomerSettings sdk method
  • getCurrencies sdk method
  • getCustomers sdk method
  • getProductsWithFilter sdk method
  • validateCredentials - new sdk method
  • deleteCustomerAddress - sdk method
  • introduced new method for the SDK - addWishlistItems
  • added new sdk method - createProductReview
  • getChannel sdk method
  • api package: fixed issue with unauthenticated users being able to create new carts for existing users, performLogin now returns a user token; sdk package: cart methods and integration tests
  • new loginCustomerGql method for the sdk
  • updateCartItem sdk method

Patch Changes

  • Updated the generated documentation for the BigCommerce, formatted and added the entire documentation for the sdk. Changed SDK methods from arrow functions to function declarations.
  • Updated dependencies
    • @vsf-enterprise/bigcommerce-types@1.0.0