@zoxllc/shopify-checkout-extensions 0.0.7 → 0.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zoxllc/shopify-checkout-extensions",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "ZOX helper lib for shopify checkout extensions",
5
5
  "main": "src/index.ts",
6
6
  "directories": {
@@ -164,8 +164,7 @@ export class CampaignFactory {
164
164
  case 'CountryCodeQualifier':
165
165
  return new CountryCodeQualifier(
166
166
  args[0] as QualifierMatchType,
167
- args[1] as StringComparisonType,
168
- args[2] as string[]
167
+ args[1] as string[]
169
168
  );
170
169
  case 'SaleItemSelector':
171
170
  return new SaleItemSelector(
@@ -14,6 +14,7 @@ export class ProductHandleSelector extends Selector {
14
14
  this.handles = handles.map((t) => t.toLowerCase());
15
15
  }
16
16
 
17
+ match(lineItem: unknown): boolean;
17
18
  match(lineItem: CartLine) {
18
19
  const variant = lineItem.merchandise as ProductVariant;
19
20