intelica-library-components 1.1.78 → 1.1.80
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.
|
@@ -106,7 +106,7 @@ class TermService {
|
|
|
106
106
|
_http = inject(HttpClient);
|
|
107
107
|
_config = inject(ConfigService);
|
|
108
108
|
GetTerms(languageCode, pageRoot) {
|
|
109
|
-
return this._http.get(`${this._config.environment?.securityPath}/Term/ignore/page/${
|
|
109
|
+
return this._http.get(`${this._config.environment?.securityPath}/Term/ignore/page/${pageRoot}/language/${languageCode}`);
|
|
110
110
|
}
|
|
111
111
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TermService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
112
112
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TermService, providedIn: "root" });
|
|
@@ -11221,9 +11221,9 @@ class NotificationOrchestratorService {
|
|
|
11221
11221
|
return;
|
|
11222
11222
|
const active = await firstValueFrom(this.jobService.getActiveJob(this.featureCode, this.origin));
|
|
11223
11223
|
if (!active) {
|
|
11224
|
-
|
|
11225
|
-
|
|
11226
|
-
|
|
11224
|
+
this.currentJobId = undefined;
|
|
11225
|
+
this.setJobState({ status: "idle", processedCount: 0, totalCount: 0, processedNotificationsCount: 0, totalNotificationsCount: 0 });
|
|
11226
|
+
this.dispatchErrorsMapSubject.next(new Map());
|
|
11227
11227
|
return;
|
|
11228
11228
|
}
|
|
11229
11229
|
this.currentJobId = active.jobId;
|