@spiffcommerce/core 30.0.0 → 30.0.1-beta.d8ca7f5f-c09f-5948-929d-d01551394c73

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.d.ts CHANGED
@@ -1640,9 +1640,12 @@ declare class ProductCollection {
1640
1640
  * @param limit The maximum number of products to return.
1641
1641
  * @param filters Optional metafield filters to apply to the query.
1642
1642
  * @param tags Optional object of tag filters to apply.
1643
+ * @param sortKey Optional field of the products to sort by.
1644
+ * @param sortDescending Optional boolean to indicate if the sort should be in descending order.
1645
+ * @param quickSearch Optional string to filter products by name.
1643
1646
  * @returns
1644
1647
  */
1645
- fetchProductsFeed(offset: number, limit: number, filters?: ProductMetafieldFilter[], tags?: ProductTagFilter, sortKey?: ProductCollectionProductSortKey, sortDescending?: boolean): Promise<{
1648
+ fetchProductsFeed(offset: number, limit: number, filters?: ProductMetafieldFilter[], tags?: ProductTagFilter, sortKey?: ProductCollectionProductSortKey, sortDescending?: boolean, quickSearch?: string): Promise<{
1646
1649
  items: CollectionProduct[];
1647
1650
  total: number;
1648
1651
  }>;