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.
@@ -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?.get(`${url}/${monkeyecxCode.toLowerCase()}/white-label.json`)?.subscribe((config) => {
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');