monkey-front-core 0.0.220 → 0.0.221
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/esm2020/lib/core/services/storage/monkeyecx-cookie-storage.service.mjs +3 -3
- package/fesm2015/monkey-front-core.mjs +2 -2
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +2 -2
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.221.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.220.tgz +0 -0
|
@@ -339,7 +339,7 @@ class MonkeyEcxCookieStorageService {
|
|
|
339
339
|
this.removeCookie(name, environment);
|
|
340
340
|
const { urlDomain } = environment;
|
|
341
341
|
const handledDomain = urlDomain ? `.${urlDomain}` : '';
|
|
342
|
-
this.cookieService.set(name, value, undefined, '/', handledDomain, true);
|
|
342
|
+
this.cookieService.set(name, value, undefined, '/', handledDomain, true, 'None');
|
|
343
343
|
}
|
|
344
344
|
getCookie(name) {
|
|
345
345
|
return this.cookieService.get(name);
|
|
@@ -347,7 +347,7 @@ class MonkeyEcxCookieStorageService {
|
|
|
347
347
|
removeCookie(name, environment) {
|
|
348
348
|
const { urlDomain } = environment;
|
|
349
349
|
const handledDomain = urlDomain ? `.${urlDomain}` : '';
|
|
350
|
-
this.cookieService.delete(name, '/', handledDomain, true);
|
|
350
|
+
this.cookieService.delete(name, '/', handledDomain, true, 'None');
|
|
351
351
|
}
|
|
352
352
|
}
|
|
353
353
|
MonkeyEcxCookieStorageService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxCookieStorageService, deps: [{ token: i1$2.CookieService }], target: i0.ɵɵFactoryTarget.Injectable });
|