@arsedizioni/ars-utils 20.4.13 → 20.4.15
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +1 -5
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +4 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +1 -5
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2061,9 +2061,6 @@ class ClipperService {
|
|
|
2061
2061
|
if (!sessionStorage.getItem('clipper_client_id')) {
|
|
2062
2062
|
sessionStorage.setItem('clipper_client_id', SystemUtils.generateUUID());
|
|
2063
2063
|
}
|
|
2064
|
-
if (!localStorage.getItem('clipper_machine_id')) {
|
|
2065
|
-
localStorage.setItem('clipper_machine_id', SystemUtils.generateUUID());
|
|
2066
|
-
}
|
|
2067
2064
|
// Initialize
|
|
2068
2065
|
this._serviceUri = serviceUri;
|
|
2069
2066
|
this._appUri = appUri;
|
|
@@ -3062,8 +3059,7 @@ class ClipperAuthInterceptor {
|
|
|
3062
3059
|
withCredentials: true,
|
|
3063
3060
|
setHeaders: {
|
|
3064
3061
|
'ngsw-bypass': 'ngsw-bypass',
|
|
3065
|
-
'X-Client-Id': sessionStorage.getItem('clipper_client_id') ?? ''
|
|
3066
|
-
'X-Machine-Id': localStorage.getItem('clipper_machine_id') ?? ''
|
|
3062
|
+
'X-Client-Id': sessionStorage.getItem('clipper_client_id') ?? ''
|
|
3067
3063
|
}
|
|
3068
3064
|
});
|
|
3069
3065
|
return next.handle(request)
|