commerce-sdk-isomorphic 1.7.0 → 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23809,6 +23809,7 @@ declare namespace helpers {
23809
23809
  * Logout a shopper. The shoppers access token and refresh token will be revoked and if the shopper authenticated with ECOM the OCAPI JWT will also be revoked.
23810
23810
  * @param slasClient a configured instance of the ShopperLogin SDK client.
23811
23811
  * @param parameters - parameters to pass in the API calls.
23812
+ * @param parameters.accessToken - a valid access token to exchange for a new access token (and refresh token).
23812
23813
  * @param parameters.refreshToken - a valid refresh token to exchange for a new access token (and refresh token).
23813
23814
  * @returns TokenResponse
23814
23815
  */
@@ -23818,6 +23819,7 @@ declare namespace helpers {
23818
23819
  clientId: string;
23819
23820
  siteId: string;
23820
23821
  }>, parameters: {
23822
+ accessToken: string;
23821
23823
  refreshToken: string;
23822
23824
  }): Promise<TokenResponse>;
23823
23825
  }