intelica-library-components 1.1.79 → 1.1.81
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.
|
@@ -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;
|
|
@@ -11329,8 +11329,6 @@ class NotificationOrchestratorService {
|
|
|
11329
11329
|
}
|
|
11330
11330
|
}
|
|
11331
11331
|
onCallbackResult(update) {
|
|
11332
|
-
update.payload = update.payload ? JSON.parse(update.payload) : null;
|
|
11333
|
-
update.responseBody = update.responseBody ? JSON.parse(update.responseBody) : null;
|
|
11334
11332
|
this.callbackRawSubject.next(update);
|
|
11335
11333
|
}
|
|
11336
11334
|
setJobState(state) {
|