@esolve/ng-esolve-connect 0.27.2 → 0.27.3

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.
@@ -4285,6 +4285,27 @@ class EsolveStockService {
4285
4285
  if (options.is_active) {
4286
4286
  params = params.set('is_active', options.is_active);
4287
4287
  }
4288
+ if (options.category_id) {
4289
+ params = params.set('category_id', options.category_id);
4290
+ }
4291
+ if (options.subcategory_id) {
4292
+ params = params.set('subcategory_id', options.subcategory_id);
4293
+ }
4294
+ if (options.manufacturers_id) {
4295
+ params = params.set('manufacturers_id', options.manufacturers_id);
4296
+ }
4297
+ if (options.ranges_id) {
4298
+ params = params.set('ranges_id', options.ranges_id);
4299
+ }
4300
+ if (options.specials_id) {
4301
+ params = params.set('specials_id', options.specials_id);
4302
+ }
4303
+ if (options.tag_id_list && options.tag_id_list.length > 0) {
4304
+ params = params.set('tag_id', options.tag_id_list.join(','));
4305
+ }
4306
+ if (options.topic_id_list && options.topic_id_list.length > 0) {
4307
+ params = params.set('topic_id', options.topic_id_list.join(','));
4308
+ }
4288
4309
  if (options.filters) {
4289
4310
  let filters = options.filters;
4290
4311
  if (!Array.isArray(filters)) {