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.
@@ -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;