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