@nexusmutual/sdk 2.1.0 → 2.1.1-rc.0

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.
package/dist/index.mjs CHANGED
@@ -23491,7 +23491,7 @@ var ProductAPI = class extends NexusSDKBase {
23491
23491
  * @returns Product type details
23492
23492
  */
23493
23493
  async getProductTypeById(productTypeId) {
23494
- const productTypeEndpoint = `/product-types/${productTypeId}?withAttributes=ipfsContentType`;
23494
+ const productTypeEndpoint = `/product-types/${productTypeId}`;
23495
23495
  return this.sendRequest(productTypeEndpoint);
23496
23496
  }
23497
23497
  /**
@@ -23499,7 +23499,7 @@ var ProductAPI = class extends NexusSDKBase {
23499
23499
  * @returns List of product types
23500
23500
  */
23501
23501
  async getAllProductTypes() {
23502
- const productTypesEndpoint = "/product-types?withAttributes=ipfsContentType";
23502
+ const productTypesEndpoint = "/product-types";
23503
23503
  return this.sendRequest(productTypesEndpoint);
23504
23504
  }
23505
23505
  /**