feed-common 1.77.6 → 1.77.8

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.
@@ -26,6 +26,7 @@ import {
26
26
  SOURCE_EBAY_LISTING_TYPE,
27
27
  SOURCE_EBAY_MEASUREMENT_UNITS,
28
28
  SOURCE_EBAY_PAID_BY_COST,
29
+ SOURCE_EBAY_SITE,
29
30
  SOURCE_EBAY_YES_NO,
30
31
  SOURCE_ENERGY_EFFICIENCY,
31
32
  SOURCE_FB_AGE_GROUP,
@@ -77,6 +78,7 @@ import { EbayInternationalRefundOptionsSource } from '../sources/ebay-refund-opt
77
78
  import { EbayInternationalReturnsAcceptedSource } from '../sources/ebay-returns-accepted.source.js';
78
79
  import { EbayPaidByCostSource } from '../sources/ebay-paid-by-cost.source.js';
79
80
  import { EbayMeasurementUnitsSource } from '../sources/ebay-measurement-units.source.js';
81
+ import { EBaySiteSource } from '../sources/ebay-site.source.js';
80
82
 
81
83
  /**
82
84
  * Check for rules duplication
@@ -437,6 +439,8 @@ export function resolveSourceValue(source: string): SelectItem[] | null {
437
439
  return EbayPaidByCostSource;
438
440
  case SOURCE_EBAY_MEASUREMENT_UNITS:
439
441
  return EbayMeasurementUnitsSource;
442
+ case SOURCE_EBAY_SITE:
443
+ return EBaySiteSource;
440
444
  default:
441
445
  return null;
442
446
  }