vcomply-workflow-engine 2.4.51 → 2.4.52
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/bundles/vcomply-workflow-engine.umd.js +20 -0
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/interceptor/business-cycle.interceptor.js +15 -0
- package/esm2015/lib/interceptor/business-cycle.interceptor.ngsummary.json +1 -0
- package/esm2015/lib/workflow-engine.module.js +6 -2
- package/esm2015/lib/workflow-engine.module.ngfactory.js +33 -32
- package/esm2015/lib/workflow-engine.module.ngsummary.json +1 -1
- package/esm2015/vcomply-workflow-engine.js +2 -1
- package/esm2015/vcomply-workflow-engine.ngsummary.json +1 -1
- package/fesm2015/vcomply-workflow-engine.js +18 -2
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/lib/interceptor/business-cycle.interceptor.d.ts +5 -0
- package/package.json +1 -1
- package/vcomply-workflow-engine.d.ts +1 -0
- package/vcomply-workflow-engine.metadata.json +1 -1
|
@@ -27720,6 +27720,22 @@
|
|
|
27720
27720
|
},] }
|
|
27721
27721
|
];
|
|
27722
27722
|
|
|
27723
|
+
var BusinessCycleInterceptor = /** @class */ (function () {
|
|
27724
|
+
function BusinessCycleInterceptor() {
|
|
27725
|
+
}
|
|
27726
|
+
BusinessCycleInterceptor.prototype.intercept = function (httpRequest, next) {
|
|
27727
|
+
var newReq = httpRequest.clone({
|
|
27728
|
+
params: (httpRequest.params ? httpRequest.params : new i1.HttpParams())
|
|
27729
|
+
.set('bcycleInterceptMode', 'NO_CYCLE') /*.... Business cycle remove interceptor added here .....*/
|
|
27730
|
+
});
|
|
27731
|
+
return next.handle(newReq);
|
|
27732
|
+
};
|
|
27733
|
+
return BusinessCycleInterceptor;
|
|
27734
|
+
}());
|
|
27735
|
+
BusinessCycleInterceptor.decorators = [
|
|
27736
|
+
{ type: i0.Injectable }
|
|
27737
|
+
];
|
|
27738
|
+
|
|
27723
27739
|
var VComplyWorkflowEngineModule = /** @class */ (function () {
|
|
27724
27740
|
function VComplyWorkflowEngineModule() {
|
|
27725
27741
|
}
|
|
@@ -27849,6 +27865,9 @@
|
|
|
27849
27865
|
exports: [
|
|
27850
27866
|
WorkflowEngineContainerComponent,
|
|
27851
27867
|
],
|
|
27868
|
+
providers: [
|
|
27869
|
+
{ provide: i1.HTTP_INTERCEPTORS, useClass: BusinessCycleInterceptor, multi: true },
|
|
27870
|
+
],
|
|
27852
27871
|
},] }
|
|
27853
27872
|
];
|
|
27854
27873
|
|
|
@@ -28128,6 +28147,7 @@
|
|
|
28128
28147
|
exports.ɵkr = PaginationComponent;
|
|
28129
28148
|
exports.ɵks = NoDataModule;
|
|
28130
28149
|
exports.ɵkt = NoDataComponent;
|
|
28150
|
+
exports.ɵku = BusinessCycleInterceptor;
|
|
28131
28151
|
exports.ɵl = PolicyService;
|
|
28132
28152
|
exports.ɵm = MoreOptionComponent;
|
|
28133
28153
|
exports.ɵn = OwnerListComponent;
|