epicenter-libs 3.34.0 → 3.34.1

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/epicenter.js CHANGED
@@ -2354,6 +2354,10 @@
2354
2354
  cookies.removeItem(EPI_SSO_KEY, {
2355
2355
  path: `/app${account}${project}`
2356
2356
  });
2357
+ cookies.removeItem(EPI_SSO_KEY, {
2358
+ domain: `.${window.location.hostname}`,
2359
+ path: `/app${account}${project}`
2360
+ });
2357
2361
  }
2358
2362
  }
2359
2363
  }
@@ -10759,8 +10763,8 @@
10759
10763
  });
10760
10764
 
10761
10765
  /* yes, this string template literal is weird;
10762
- * it's cause rollup does not recogize 3.34.0 as an individual token otherwise */
10763
- const version = `Epicenter (v${'3.34.0'}) for Browsers | Build Date: 2026-02-12T21:41:02.367Z`;
10766
+ * it's cause rollup does not recogize 3.34.1 as an individual token otherwise */
10767
+ const version = `Epicenter (v${'3.34.1'}) for Browsers | Build Date: 2026-02-19T18:00:38.906Z`;
10764
10768
  const UNAUTHORIZED = 401;
10765
10769
  const FORBIDDEN = 403;
10766
10770
  const DEFAULT_ERROR_HANDLERS = {};