monkey-front-core 0.0.293 → 0.0.295
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.mjs +1 -1
- package/esm2020/lib/core/services/config/monkeyecx-config.service.mjs +9 -10
- package/esm2020/lib/core/services/config/monkeyecx-gtm-config.service.mjs +51 -0
- package/esm2020/lib/core/utils/utils.mjs +13 -1
- package/fesm2015/monkey-front-core.mjs +70 -61
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +69 -61
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/lib/core/interfaces/monkeyecx-config.d.ts +2 -2
- package/lib/core/services/config/monkeyecx-config.service.d.ts +10 -10
- package/lib/core/services/config/monkeyecx-gtm-config.service.d.ts +9 -0
- package/lib/core/utils/utils.d.ts +1 -0
- package/monkey-front-core-0.0.295.tgz +0 -0
- package/package.json +1 -1
- package/esm2020/lib/core/services/config/monkeyecx-ga-config.service.mjs +0 -57
- package/lib/core/services/config/monkeyecx-ga-config.service.d.ts +0 -10
- package/monkey-front-core-0.0.293.tgz +0 -0
|
@@ -13,15 +13,15 @@ import { throwError, BehaviorSubject, Subscription, interval, concat, of, Subjec
|
|
|
13
13
|
import * as i1$3 from '@angular/common/http';
|
|
14
14
|
import { HttpParams, HttpErrorResponse, HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
|
|
15
15
|
import * as i2$1 from '@angular/platform-browser';
|
|
16
|
-
import * as
|
|
16
|
+
import * as i2$2 from '@angular/router';
|
|
17
17
|
import { NavigationStart, NavigationEnd, NavigationError, NavigationCancel } from '@angular/router';
|
|
18
18
|
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
19
19
|
import { TemplatePortal } from '@angular/cdk/portal';
|
|
20
|
-
import * as i1$
|
|
20
|
+
import * as i1$4 from '@angular/cdk/overlay';
|
|
21
21
|
import { OverlayModule } from '@angular/cdk/overlay';
|
|
22
22
|
import { __decorate } from 'tslib';
|
|
23
23
|
import { datadogRum } from '@datadog/browser-rum';
|
|
24
|
-
import * as i1$
|
|
24
|
+
import * as i1$5 from '@angular/service-worker';
|
|
25
25
|
import { ServiceWorkerModule } from '@angular/service-worker';
|
|
26
26
|
import { initialize } from 'launchdarkly-js-client-sdk';
|
|
27
27
|
|
|
@@ -151,6 +151,18 @@ class MonkeyEcxUtils {
|
|
|
151
151
|
}
|
|
152
152
|
}[country.toUpperCase()]?.[type];
|
|
153
153
|
}
|
|
154
|
+
static getDocumentPlaceholder(type, country = '') {
|
|
155
|
+
return {
|
|
156
|
+
BR: {
|
|
157
|
+
CPF: '000.000.000-XX',
|
|
158
|
+
CNPJ: '00.000.000/0000-00'
|
|
159
|
+
},
|
|
160
|
+
CL: {
|
|
161
|
+
CPF: '0000000-A',
|
|
162
|
+
CNPJ: '0000000-A'
|
|
163
|
+
}
|
|
164
|
+
}[country.toUpperCase()]?.[type];
|
|
165
|
+
}
|
|
154
166
|
static formatDocumentWithMask(doc, withType, country) {
|
|
155
167
|
if (!doc)
|
|
156
168
|
return doc;
|
|
@@ -1616,14 +1628,14 @@ class MonkeyEcxProgressBarService {
|
|
|
1616
1628
|
return this.visible?.asObservable() || null;
|
|
1617
1629
|
}
|
|
1618
1630
|
}
|
|
1619
|
-
MonkeyEcxProgressBarService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxProgressBarService, deps: [{ token:
|
|
1631
|
+
MonkeyEcxProgressBarService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxProgressBarService, deps: [{ token: i2$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1620
1632
|
MonkeyEcxProgressBarService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxProgressBarService, providedIn: 'root' });
|
|
1621
1633
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxProgressBarService, decorators: [{
|
|
1622
1634
|
type: Injectable,
|
|
1623
1635
|
args: [{
|
|
1624
1636
|
providedIn: 'root'
|
|
1625
1637
|
}]
|
|
1626
|
-
}], ctorParameters: function () { return [{ type:
|
|
1638
|
+
}], ctorParameters: function () { return [{ type: i2$2.Router }]; } });
|
|
1627
1639
|
|
|
1628
1640
|
class MonkeyEcxProgressBarComponent {
|
|
1629
1641
|
constructor(progressBarService) {
|
|
@@ -2375,14 +2387,14 @@ class MonkeyEcxPopoverDirective {
|
|
|
2375
2387
|
this.eventsSubs.unsubscribe();
|
|
2376
2388
|
}
|
|
2377
2389
|
}
|
|
2378
|
-
MonkeyEcxPopoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ViewContainerRef }, { token: i0.ChangeDetectorRef }, { token: i1$
|
|
2390
|
+
MonkeyEcxPopoverDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverDirective, deps: [{ token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ViewContainerRef }, { token: i0.ChangeDetectorRef }, { token: i1$4.Overlay }, { token: i1$4.OverlayPositionBuilder }, { token: i2$2.Router }, { token: POPOVER_OPTIONS, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2379
2391
|
MonkeyEcxPopoverDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.1.1", type: MonkeyEcxPopoverDirective, selector: "[monkeyecxPopover]", inputs: { popover: ["monkeyecxPopover", "popover"], closed: ["monkeyecxPopoverClosed", "closed"], target: ["monkeyecxPopoverTarget", "target"], minwidth: ["monkeyecxPopoverMinwidth", "minwidth"], backdrop: ["monkeyecxPopoverBackdrop", "backdrop"], watch: ["monkeyecxPopoverWatch", "watch"], dir: ["monkeyecxPopoverDir", "dir"], contextmenu: ["monkeyecxPopoverContextmenu", "contextmenu"], height: ["monkeyecxPopoverHeight", "height"] }, ngImport: i0 });
|
|
2380
2392
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxPopoverDirective, decorators: [{
|
|
2381
2393
|
type: Directive,
|
|
2382
2394
|
args: [{
|
|
2383
2395
|
selector: '[monkeyecxPopover]'
|
|
2384
2396
|
}]
|
|
2385
|
-
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ViewContainerRef }, { type: i0.ChangeDetectorRef }, { type: i1$
|
|
2397
|
+
}], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.ViewContainerRef }, { type: i0.ElementRef }, { type: i0.NgZone }, { type: i0.ViewContainerRef }, { type: i0.ChangeDetectorRef }, { type: i1$4.Overlay }, { type: i1$4.OverlayPositionBuilder }, { type: i2$2.Router }, { type: undefined, decorators: [{
|
|
2386
2398
|
type: Inject,
|
|
2387
2399
|
args: [POPOVER_OPTIONS]
|
|
2388
2400
|
}, {
|
|
@@ -3109,14 +3121,14 @@ class MonkeyEcxServiceWorkerConfigService {
|
|
|
3109
3121
|
this.verify();
|
|
3110
3122
|
}
|
|
3111
3123
|
}
|
|
3112
|
-
MonkeyEcxServiceWorkerConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, deps: [{ token: i0.ApplicationRef }, { token: i1$
|
|
3124
|
+
MonkeyEcxServiceWorkerConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, deps: [{ token: i0.ApplicationRef }, { token: i1$5.SwUpdate }, { token: i1.MonkeyStyleGuideModalService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3113
3125
|
MonkeyEcxServiceWorkerConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, providedIn: 'root' });
|
|
3114
3126
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxServiceWorkerConfigService, decorators: [{
|
|
3115
3127
|
type: Injectable,
|
|
3116
3128
|
args: [{
|
|
3117
3129
|
providedIn: 'root'
|
|
3118
3130
|
}]
|
|
3119
|
-
}], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i1$
|
|
3131
|
+
}], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i1$5.SwUpdate }, { type: i1.MonkeyStyleGuideModalService }]; } });
|
|
3120
3132
|
|
|
3121
3133
|
/* eslint-disable no-console */
|
|
3122
3134
|
class MonkeyEcxSecurityConsoleConfigService extends MonkeyEcxCommonsService {
|
|
@@ -3179,14 +3191,14 @@ class MonkeyEcxMaintenanceConfigService {
|
|
|
3179
3191
|
this.handleValidation(config);
|
|
3180
3192
|
}
|
|
3181
3193
|
}
|
|
3182
|
-
MonkeyEcxMaintenanceConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxMaintenanceConfigService, deps: [{ token: i1.MonkeyStyleGuideModalService }, { token:
|
|
3194
|
+
MonkeyEcxMaintenanceConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxMaintenanceConfigService, deps: [{ token: i1.MonkeyStyleGuideModalService }, { token: i2$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3183
3195
|
MonkeyEcxMaintenanceConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxMaintenanceConfigService, providedIn: 'root' });
|
|
3184
3196
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxMaintenanceConfigService, decorators: [{
|
|
3185
3197
|
type: Injectable,
|
|
3186
3198
|
args: [{
|
|
3187
3199
|
providedIn: 'root'
|
|
3188
3200
|
}]
|
|
3189
|
-
}], ctorParameters: function () { return [{ type: i1.MonkeyStyleGuideModalService }, { type:
|
|
3201
|
+
}], ctorParameters: function () { return [{ type: i1.MonkeyStyleGuideModalService }, { type: i2$2.Router }]; } });
|
|
3190
3202
|
|
|
3191
3203
|
class MonkeyEcxFeatureToggleService {
|
|
3192
3204
|
constructor() {
|
|
@@ -3259,58 +3271,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3259
3271
|
}]
|
|
3260
3272
|
}], ctorParameters: function () { return []; } });
|
|
3261
3273
|
|
|
3262
|
-
/* eslint-disable
|
|
3263
|
-
class
|
|
3264
|
-
constructor(
|
|
3265
|
-
this.rt = rt;
|
|
3274
|
+
/* eslint-disable no-console */
|
|
3275
|
+
class MonkeyEcxGTMConfigService {
|
|
3276
|
+
constructor() {
|
|
3266
3277
|
// not to do
|
|
3267
3278
|
}
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
window.gtag ||
|
|
3276
|
-
function gtag() {
|
|
3277
|
-
window.dataLayer.push(arguments);
|
|
3278
|
-
};
|
|
3279
|
-
window.gtag('js', new Date());
|
|
3280
|
-
window.gtag('config', key);
|
|
3281
|
-
};
|
|
3282
|
-
const pageChangeAction = () => {
|
|
3283
|
-
this.rt.events.subscribe((event) => {
|
|
3284
|
-
if (event instanceof NavigationEnd) {
|
|
3285
|
-
window.gtag('set', 'page_path', event.url);
|
|
3286
|
-
window.gtag('event', 'page_view');
|
|
3287
|
-
}
|
|
3288
|
-
});
|
|
3289
|
-
};
|
|
3279
|
+
handleCode(key) {
|
|
3280
|
+
try {
|
|
3281
|
+
window.dataLayer = window.dataLayer || [];
|
|
3282
|
+
window.dataLayer.push({
|
|
3283
|
+
'gtm.start': new Date().getTime(),
|
|
3284
|
+
event: 'gtm.js'
|
|
3285
|
+
});
|
|
3290
3286
|
const head = document.querySelector('head');
|
|
3291
3287
|
const script = document.createElement('script');
|
|
3292
3288
|
script.async = true;
|
|
3293
|
-
script.
|
|
3294
|
-
script.src = `//www.googletagmanager.com/gtag/js?id=${key}`;
|
|
3295
|
-
script.onload = () => {
|
|
3296
|
-
action();
|
|
3297
|
-
pageChangeAction();
|
|
3298
|
-
};
|
|
3299
|
-
script.onerror = () => {
|
|
3300
|
-
head?.removeChild(script);
|
|
3301
|
-
};
|
|
3289
|
+
script.src = `https://www.googletagmanager.com/gtm.js?id=GTM-${key}`;
|
|
3302
3290
|
head?.appendChild(script);
|
|
3291
|
+
const body = document.querySelector('body');
|
|
3292
|
+
const noscript = document.createElement('noscript');
|
|
3293
|
+
const iframe = document.createElement('iframe');
|
|
3294
|
+
iframe.src = `https://www.googletagmanager.com/ns.html?id=GTM-${key}`;
|
|
3295
|
+
iframe.height = '0';
|
|
3296
|
+
iframe.width = '0';
|
|
3297
|
+
iframe.style.display = 'none';
|
|
3298
|
+
iframe.style.visibility = 'hidden';
|
|
3299
|
+
noscript.appendChild(iframe);
|
|
3300
|
+
body?.appendChild(noscript);
|
|
3301
|
+
}
|
|
3302
|
+
catch (e) {
|
|
3303
|
+
console.error('GTM Configuration Error!');
|
|
3304
|
+
}
|
|
3305
|
+
}
|
|
3306
|
+
apply(params, environment) {
|
|
3307
|
+
const { gtm } = params;
|
|
3308
|
+
const { enabled, key } = gtm || { enabled: false, key: '' };
|
|
3309
|
+
if (enabled && environment.environment !== 'dev') {
|
|
3310
|
+
this.handleCode(key);
|
|
3303
3311
|
}
|
|
3304
3312
|
}
|
|
3305
3313
|
}
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type:
|
|
3314
|
+
MonkeyEcxGTMConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxGTMConfigService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3315
|
+
MonkeyEcxGTMConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxGTMConfigService, providedIn: 'root' });
|
|
3316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxGTMConfigService, decorators: [{
|
|
3309
3317
|
type: Injectable,
|
|
3310
3318
|
args: [{
|
|
3311
3319
|
providedIn: 'root'
|
|
3312
3320
|
}]
|
|
3313
|
-
}], ctorParameters: function () { return [
|
|
3321
|
+
}], ctorParameters: function () { return []; } });
|
|
3314
3322
|
|
|
3315
3323
|
const moment = moment_;
|
|
3316
3324
|
class MonkeyEcxAlertsConfigService {
|
|
@@ -3348,7 +3356,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3348
3356
|
}], ctorParameters: function () { return [{ type: i1.MonkeyStyleGuideModalFixedService }]; } });
|
|
3349
3357
|
|
|
3350
3358
|
class MonkeyEcxConfigService extends MonkeyEcxCommonsService {
|
|
3351
|
-
constructor(monkeyecxService, monkeyecxi18nConfigService, monkeyecxLogsConfigService, monkeyStyleGuideSettingsService, monkeyecxServiceWorkerConfigService, monkeyecxSecurityConsoleConfigService, monkeyecxMaintenanceConfigService, monkeyecxErrorConfigService, monkeyEcxFeatureToggleService,
|
|
3359
|
+
constructor(monkeyecxService, monkeyecxi18nConfigService, monkeyecxLogsConfigService, monkeyStyleGuideSettingsService, monkeyecxServiceWorkerConfigService, monkeyecxSecurityConsoleConfigService, monkeyecxMaintenanceConfigService, monkeyecxErrorConfigService, monkeyEcxFeatureToggleService, monkeyGTMConfigService, monkeyEcxAlertsConfigService) {
|
|
3352
3360
|
super(monkeyecxService);
|
|
3353
3361
|
this.monkeyecxi18nConfigService = monkeyecxi18nConfigService;
|
|
3354
3362
|
this.monkeyecxLogsConfigService = monkeyecxLogsConfigService;
|
|
@@ -3358,7 +3366,7 @@ class MonkeyEcxConfigService extends MonkeyEcxCommonsService {
|
|
|
3358
3366
|
this.monkeyecxMaintenanceConfigService = monkeyecxMaintenanceConfigService;
|
|
3359
3367
|
this.monkeyecxErrorConfigService = monkeyecxErrorConfigService;
|
|
3360
3368
|
this.monkeyEcxFeatureToggleService = monkeyEcxFeatureToggleService;
|
|
3361
|
-
this.
|
|
3369
|
+
this.monkeyGTMConfigService = monkeyGTMConfigService;
|
|
3362
3370
|
this.monkeyEcxAlertsConfigService = monkeyEcxAlertsConfigService;
|
|
3363
3371
|
this.configSubject$ = new BehaviorSubject({});
|
|
3364
3372
|
this.configBootstrapSubject$ = new BehaviorSubject({});
|
|
@@ -3373,7 +3381,7 @@ class MonkeyEcxConfigService extends MonkeyEcxCommonsService {
|
|
|
3373
3381
|
callback(configBootstrap);
|
|
3374
3382
|
}
|
|
3375
3383
|
getWhiteLabelSettings(monkeyecxCode, configBootstrap, callback, environment, identifyCode) {
|
|
3376
|
-
const { monkeyecxService, monkeyecxi18nConfigService, configSubject$, monkeyStyleGuideSettingsService, monkeyecxLogsConfigService, monkeyecxErrorConfigService, monkeyEcxFeatureToggleService,
|
|
3384
|
+
const { monkeyecxService, monkeyecxi18nConfigService, configSubject$, monkeyStyleGuideSettingsService, monkeyecxLogsConfigService, monkeyecxErrorConfigService, monkeyEcxFeatureToggleService, monkeyGTMConfigService, monkeyEcxAlertsConfigService, internalValidations } = this;
|
|
3377
3385
|
const url = `${environment.urlAssets}/${monkeyecxCode.toLowerCase()}`;
|
|
3378
3386
|
monkeyecxService
|
|
3379
3387
|
?.get(`${url}/white-label.json`)
|
|
@@ -3381,7 +3389,7 @@ class MonkeyEcxConfigService extends MonkeyEcxCommonsService {
|
|
|
3381
3389
|
monkeyecxi18nConfigService.apply(config, environment);
|
|
3382
3390
|
monkeyecxLogsConfigService.apply(config, configBootstrap, environment, identifyCode);
|
|
3383
3391
|
monkeyEcxFeatureToggleService.apply(configSubject$, environment);
|
|
3384
|
-
|
|
3392
|
+
monkeyGTMConfigService.apply(config, environment);
|
|
3385
3393
|
monkeyEcxAlertsConfigService.apply(config);
|
|
3386
3394
|
monkeyStyleGuideSettingsService.bootstrap(`${url}/monkey-style-guide-settings.json`, internalValidations.bind(this, configBootstrap, callback, environment));
|
|
3387
3395
|
configSubject$.next(config);
|
|
@@ -3421,7 +3429,7 @@ class MonkeyEcxConfigService extends MonkeyEcxCommonsService {
|
|
|
3421
3429
|
return this.configBootstrapSubject$.asObservable();
|
|
3422
3430
|
}
|
|
3423
3431
|
}
|
|
3424
|
-
MonkeyEcxConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxConfigService, deps: [{ token: MonkeyEcxService }, { token: MonkeyEcxi18nConfigService }, { token: MonkeyEcxLogsConfigService }, { token: i1.MonkeyStyleGuideSettingsService }, { token: MonkeyEcxServiceWorkerConfigService }, { token: MonkeyEcxSecurityConsoleConfigService }, { token: MonkeyEcxMaintenanceConfigService }, { token: MonkeyEcxErrorConfigService }, { token: MonkeyEcxFeatureToggleService }, { token:
|
|
3432
|
+
MonkeyEcxConfigService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxConfigService, deps: [{ token: MonkeyEcxService }, { token: MonkeyEcxi18nConfigService }, { token: MonkeyEcxLogsConfigService }, { token: i1.MonkeyStyleGuideSettingsService }, { token: MonkeyEcxServiceWorkerConfigService }, { token: MonkeyEcxSecurityConsoleConfigService }, { token: MonkeyEcxMaintenanceConfigService }, { token: MonkeyEcxErrorConfigService }, { token: MonkeyEcxFeatureToggleService }, { token: MonkeyEcxGTMConfigService }, { token: MonkeyEcxAlertsConfigService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3425
3433
|
MonkeyEcxConfigService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxConfigService, providedIn: 'root' });
|
|
3426
3434
|
__decorate([
|
|
3427
3435
|
MonkeyEcxCoreService({
|
|
@@ -3438,7 +3446,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
3438
3446
|
args: [{
|
|
3439
3447
|
providedIn: 'root'
|
|
3440
3448
|
}]
|
|
3441
|
-
}], ctorParameters: function () { return [{ type: MonkeyEcxService }, { type: MonkeyEcxi18nConfigService }, { type: MonkeyEcxLogsConfigService }, { type: i1.MonkeyStyleGuideSettingsService }, { type: MonkeyEcxServiceWorkerConfigService }, { type: MonkeyEcxSecurityConsoleConfigService }, { type: MonkeyEcxMaintenanceConfigService }, { type: MonkeyEcxErrorConfigService }, { type: MonkeyEcxFeatureToggleService }, { type:
|
|
3449
|
+
}], ctorParameters: function () { return [{ type: MonkeyEcxService }, { type: MonkeyEcxi18nConfigService }, { type: MonkeyEcxLogsConfigService }, { type: i1.MonkeyStyleGuideSettingsService }, { type: MonkeyEcxServiceWorkerConfigService }, { type: MonkeyEcxSecurityConsoleConfigService }, { type: MonkeyEcxMaintenanceConfigService }, { type: MonkeyEcxErrorConfigService }, { type: MonkeyEcxFeatureToggleService }, { type: MonkeyEcxGTMConfigService }, { type: MonkeyEcxAlertsConfigService }]; }, propDecorators: { init: [] } });
|
|
3442
3450
|
|
|
3443
3451
|
class MonkeyEcxTokenStorageService {
|
|
3444
3452
|
constructor(monkeyecxConfigService) {
|
|
@@ -4144,14 +4152,14 @@ class MonkeyEcxHttpErrorHandlingService extends MonkeyEcxCommonsService {
|
|
|
4144
4152
|
}
|
|
4145
4153
|
}
|
|
4146
4154
|
}
|
|
4147
|
-
MonkeyEcxHttpErrorHandlingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxHttpErrorHandlingService, deps: [{ token: MonkeyEcxService }, { token: MonkeyEcxTokenStorageService }, { token: MonkeyEcxAuthenticationService }, { token:
|
|
4155
|
+
MonkeyEcxHttpErrorHandlingService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxHttpErrorHandlingService, deps: [{ token: MonkeyEcxService }, { token: MonkeyEcxTokenStorageService }, { token: MonkeyEcxAuthenticationService }, { token: i2$2.Router }, { token: i1.MonkeyStyleGuideSnackbarService }, { token: i1$1.TranslateService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4148
4156
|
MonkeyEcxHttpErrorHandlingService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxHttpErrorHandlingService, providedIn: 'root' });
|
|
4149
4157
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxHttpErrorHandlingService, decorators: [{
|
|
4150
4158
|
type: Injectable,
|
|
4151
4159
|
args: [{
|
|
4152
4160
|
providedIn: 'root'
|
|
4153
4161
|
}]
|
|
4154
|
-
}], ctorParameters: function () { return [{ type: MonkeyEcxService }, { type: MonkeyEcxTokenStorageService }, { type: MonkeyEcxAuthenticationService }, { type:
|
|
4162
|
+
}], ctorParameters: function () { return [{ type: MonkeyEcxService }, { type: MonkeyEcxTokenStorageService }, { type: MonkeyEcxAuthenticationService }, { type: i2$2.Router }, { type: i1.MonkeyStyleGuideSnackbarService }, { type: i1$1.TranslateService }]; } });
|
|
4155
4163
|
|
|
4156
4164
|
class MonkeyEcxOthersErrorsHandlingService {
|
|
4157
4165
|
constructor(modalService) {
|
|
@@ -4704,14 +4712,14 @@ class MonkeyEcxDiscoveryParamsService {
|
|
|
4704
4712
|
return found;
|
|
4705
4713
|
}
|
|
4706
4714
|
}
|
|
4707
|
-
MonkeyEcxDiscoveryParamsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, deps: [{ token:
|
|
4715
|
+
MonkeyEcxDiscoveryParamsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, deps: [{ token: i2$2.Router }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4708
4716
|
MonkeyEcxDiscoveryParamsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, providedIn: 'root' });
|
|
4709
4717
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxDiscoveryParamsService, decorators: [{
|
|
4710
4718
|
type: Injectable,
|
|
4711
4719
|
args: [{
|
|
4712
4720
|
providedIn: 'root'
|
|
4713
4721
|
}]
|
|
4714
|
-
}], ctorParameters: function () { return [{ type:
|
|
4722
|
+
}], ctorParameters: function () { return [{ type: i2$2.Router }]; } });
|
|
4715
4723
|
|
|
4716
4724
|
class MonkeyEcxRequestScheduleService {
|
|
4717
4725
|
constructor(monkeyecxService, monkeyLoggedHandlingService) {
|
|
@@ -5368,7 +5376,7 @@ class MonkeyFrontCoreModule {
|
|
|
5368
5376
|
}
|
|
5369
5377
|
MonkeyFrontCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5370
5378
|
MonkeyFrontCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyFrontCoreModule, imports: [CommonModule,
|
|
5371
|
-
HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$
|
|
5379
|
+
HttpClientModule, i1$1.TranslateModule, MonkeyEcxConfigModule, MonkeyEcxHttpConfigInterceptorModule, MonkeyEcxErrorHandlingModule, MonkeyStyleGuideModule, i1$5.ServiceWorkerModule, ClosedToMaintenanceModule,
|
|
5372
5380
|
VersionChangedModule,
|
|
5373
5381
|
AlertsModule,
|
|
5374
5382
|
CurrencyConfigModule] });
|