diff --git a/src/BigCommerce/Api/Catalog/Products/ProductImagesApi.php b/src/BigCommerce/Api/Catalog/Products/ProductImagesApi.php index dc25df42..5f3d1631 100644 --- a/src/BigCommerce/Api/Catalog/Products/ProductImagesApi.php +++ b/src/BigCommerce/Api/Catalog/Products/ProductImagesApi.php @@ -42,4 +42,9 @@ public function create(ProductImage $productImage): ProductImageResponse { return new ProductImageResponse($this->createResource($productImage)); } + + public function update(ProductImage $productImage): ProductImageResponse + { + return new ProductImageResponse($this->updateResource($productImage)); + } }