monkey-front-core 0.0.71 → 0.0.72
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/config/monkeyecx-config.service.mjs +5 -3
- package/fesm2015/monkey-front-core.mjs +2 -2
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +4 -2
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.72.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.71.tgz +0 -0
|
@@ -2552,11 +2552,13 @@ class MonkeyEcxConfigService extends MonkeyEcxCommonsService {
|
|
|
2552
2552
|
getWhiteLabelSettings(monkeyecxCode, configBoostrap, callback, environment, identifyCode) {
|
|
2553
2553
|
const { monkeyecxService, monkeyecxi18nConfigService, configSubject$, monkeyStyleGuideSettingsService, monkeyecxLogsConfigService, monkeyecxErrorConfigService, monkeyEcxFeatureToggleService, internalValidations, } = this;
|
|
2554
2554
|
const url = `${environment.urlAssets}`;
|
|
2555
|
-
monkeyecxService
|
|
2555
|
+
monkeyecxService
|
|
2556
|
+
?.get(`${url}/${monkeyecxCode.toLowerCase()}/white-label.json?t=${MonkeyUtils.getRandomString(30)}`)
|
|
2557
|
+
?.subscribe((config) => {
|
|
2556
2558
|
monkeyecxi18nConfigService.apply(config, environment);
|
|
2557
2559
|
monkeyecxLogsConfigService.apply(config, configBoostrap, environment, identifyCode);
|
|
2558
2560
|
monkeyEcxFeatureToggleService.apply(configSubject$, environment);
|
|
2559
|
-
monkeyStyleGuideSettingsService.boostrap(`${url}/${monkeyecxCode.toLowerCase()}/monkey-style-guide-settings.json`, internalValidations.bind(this, configBoostrap, callback, environment));
|
|
2561
|
+
monkeyStyleGuideSettingsService.boostrap(`${url}/${monkeyecxCode.toLowerCase()}/monkey-style-guide-settings.json?t=${MonkeyUtils.getRandomString(30)}`, internalValidations.bind(this, configBoostrap, callback, environment));
|
|
2560
2562
|
configSubject$.next(config);
|
|
2561
2563
|
}, (err) => {
|
|
2562
2564
|
monkeyecxErrorConfigService.apply('theme');
|