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.
@@ -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;