@searchspring/snap-tracker 0.58.0 → 0.58.2

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.
@@ -494,7 +494,7 @@ var Tracker = /** @class */ (function () {
494
494
  },
495
495
  clear: function () {
496
496
  if (_this.cookies.cart.get().length) {
497
- snap_toolbox_1.cookies.unset(CART_PRODUCTS);
497
+ snap_toolbox_1.cookies.unset(CART_PRODUCTS, COOKIE_DOMAIN);
498
498
  _this.sendPreflight();
499
499
  }
500
500
  },
@@ -466,7 +466,7 @@ export class Tracker {
466
466
  },
467
467
  clear: () => {
468
468
  if (this.cookies.cart.get().length) {
469
- cookies.unset(CART_PRODUCTS);
469
+ cookies.unset(CART_PRODUCTS, COOKIE_DOMAIN);
470
470
  this.sendPreflight();
471
471
  }
472
472
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@searchspring/snap-tracker",
3
- "version": "0.58.0",
3
+ "version": "0.58.2",
4
4
  "description": "Snap Tracker",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -20,8 +20,8 @@
20
20
  "test:watch": "jest --watch"
21
21
  },
22
22
  "dependencies": {
23
- "@searchspring/snap-store-mobx": "^0.58.0",
24
- "@searchspring/snap-toolbox": "^0.58.0",
23
+ "@searchspring/snap-store-mobx": "^0.58.2",
24
+ "@searchspring/snap-toolbox": "^0.58.2",
25
25
  "@types/uuid": "8.3.4",
26
26
  "deepmerge": "4.3.1",
27
27
  "uuid": "9.0.1"
@@ -30,5 +30,5 @@
30
30
  "files": [
31
31
  "dist/**/*"
32
32
  ],
33
- "gitHead": "66000e90f43118ae73e165f9558f2138d40d3bc7"
33
+ "gitHead": "4c7b492e09e8c0c20bbaa178ad9d3d4225a57ad2"
34
34
  }