monkey-front-core 0.0.431 → 0.0.433
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/interfaces/monkeyecx-config-bootstrap.mjs +1 -1
- package/esm2020/lib/core/services/config/monkeyecx-config.service.mjs +2 -2
- package/esm2020/lib/core/services/config/monkeyecx-gtm-config.service.mjs +3 -3
- package/fesm2015/monkey-front-core.mjs +3 -3
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +3 -3
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/monkeyecx-config-bootstrap.d.ts +0 -4
- package/lib/core/services/config/monkeyecx-gtm-config.service.d.ts +1 -2
- package/monkey-front-core-0.0.433.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.431.tgz +0 -0
|
@@ -3626,8 +3626,8 @@ class MonkeyEcxGTMConfigService {
|
|
|
3626
3626
|
console.error('GTM Configuration Error!');
|
|
3627
3627
|
}
|
|
3628
3628
|
}
|
|
3629
|
-
apply(
|
|
3630
|
-
const { gtm } =
|
|
3629
|
+
apply(environment) {
|
|
3630
|
+
const { gtm } = environment;
|
|
3631
3631
|
const { enabled, key } = gtm || { enabled: false, key: '' };
|
|
3632
3632
|
if (enabled && environment.environment !== 'dev') {
|
|
3633
3633
|
this.handleCode(key);
|
|
@@ -3714,7 +3714,7 @@ class MonkeyEcxConfigService extends MonkeyEcxCommonsService {
|
|
|
3714
3714
|
monkeyecxi18nConfigService.apply(config, environment);
|
|
3715
3715
|
monkeyecxLogsConfigService.apply(config, configBootstrap, environment, identifyCode);
|
|
3716
3716
|
monkeyEcxFeatureToggleService.apply(configSubject$, environment);
|
|
3717
|
-
monkeyGTMConfigService.apply(
|
|
3717
|
+
monkeyGTMConfigService.apply(environment);
|
|
3718
3718
|
monkeyEcxAlertsConfigService.apply(config);
|
|
3719
3719
|
monkeyStyleGuideSettingsService.bootstrap(`${url}/monkey-style-guide-settings.json`, internalValidations.bind(this, configBootstrap, callback, environment));
|
|
3720
3720
|
configSubject$.next(config);
|