/**
  * @param StoreEntity $store
  * @param array $products
  * @param CatalogEntity $catalog
  */
 public function addProductsToCollection(StoreEntity $store, array $products, CatalogEntity $catalog)
 {
     $this->setSettings($store);
     $this->client->updateCustomCollection(['id' => $catalog->getShopifyCollectionId(), 'custom_collection' => ['id' => $catalog->getShopifyCollectionId(), 'collects' => $products]]);
 }