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/CHANGELOG.md +8 -0
- package/dist/browser/epicenter.js +6 -2
- package/dist/browser/epicenter.js.map +1 -1
- package/dist/cjs/epicenter.js +6 -2
- package/dist/cjs/epicenter.js.map +1 -1
- package/dist/epicenter.js +6 -2
- package/dist/epicenter.js.map +1 -1
- package/dist/epicenter.min.js +1 -1
- package/dist/epicenter.min.js.map +1 -1
- package/dist/module/epicenter.js +6 -2
- package/dist/module/epicenter.js.map +1 -1
- package/package.json +1 -1
- package/src/utils/identification.ts +4 -0
package/dist/module/epicenter.js
CHANGED
|
@@ -83321,6 +83321,10 @@ class Identification {
|
|
|
83321
83321
|
cookies.removeItem(EPI_SSO_KEY, {
|
|
83322
83322
|
path: `/app${account}${project}`
|
|
83323
83323
|
});
|
|
83324
|
+
cookies.removeItem(EPI_SSO_KEY, {
|
|
83325
|
+
domain: `.${window.location.hostname}`,
|
|
83326
|
+
path: `/app${account}${project}`
|
|
83327
|
+
});
|
|
83324
83328
|
}
|
|
83325
83329
|
}
|
|
83326
83330
|
}
|
|
@@ -91726,8 +91730,8 @@ var utilities = /*#__PURE__*/Object.freeze({
|
|
|
91726
91730
|
});
|
|
91727
91731
|
|
|
91728
91732
|
/* yes, this string template literal is weird;
|
|
91729
|
-
* it's cause rollup does not recogize 3.34.
|
|
91730
|
-
const version = `Epicenter (v${'3.34.
|
|
91733
|
+
* it's cause rollup does not recogize 3.34.1 as an individual token otherwise */
|
|
91734
|
+
const version = `Epicenter (v${'3.34.1'}) for Module | Build Date: 2026-02-19T18:00:42.889Z`;
|
|
91731
91735
|
const UNAUTHORIZED = 401;
|
|
91732
91736
|
const FORBIDDEN = 403;
|
|
91733
91737
|
const DEFAULT_ERROR_HANDLERS = {};
|