monkey-front-core 0.0.379 → 0.0.380
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-token-storage.service.mjs +6 -2
- package/fesm2015/monkey-front-core.mjs +4 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +5 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.380.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.379.tgz +0 -0
|
@@ -3637,8 +3637,12 @@ class MonkeyEcxTokenStorageService {
|
|
|
3637
3637
|
}
|
|
3638
3638
|
const config = await monkeyecxConfigService.config()
|
|
3639
3639
|
.pipe(take(1)).toPromise();
|
|
3640
|
+
const accessType = localStorage.getItem('accessType');
|
|
3641
|
+
const companyType = localStorage.getItem('companyType');
|
|
3640
3642
|
const handledData = {
|
|
3641
|
-
...data
|
|
3643
|
+
...data,
|
|
3644
|
+
accessType,
|
|
3645
|
+
companyType
|
|
3642
3646
|
};
|
|
3643
3647
|
if (!data?.program && config?.program) {
|
|
3644
3648
|
handledData.program = config?.program?.token;
|