monkey-front-core 0.0.569 → 0.0.571

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.
@@ -717,7 +717,7 @@ class MonkeyEcxService {
717
717
  'governmentIdType',
718
718
  'governmentIdMask',
719
719
  'screenType',
720
- 'screenTab',
720
+ 'screenTab'
721
721
  ]) {
722
722
  delete params[field];
723
723
  }
@@ -729,15 +729,15 @@ class MonkeyEcxService {
729
729
  post(url, params, options) {
730
730
  return this.http.post(url, params, options);
731
731
  }
732
- put(url, params) {
732
+ put(url, params, options) {
733
733
  return this.http.put(url, this.handlelize({
734
- ...params,
735
- }));
734
+ ...params
735
+ }), options);
736
736
  }
737
- patch(url, params) {
737
+ patch(url, params, options) {
738
738
  return this.http.patch(url, this.handlelize({
739
- ...params,
740
- }));
739
+ ...params
740
+ }), options);
741
741
  }
742
742
  delete(url, params) {
743
743
  return this.http.delete(url, params);
@@ -756,11 +756,11 @@ class MonkeyEcxService {
756
756
  .replace(new RegExp(/"/g), '');
757
757
  }
758
758
  const blob = new Blob([body], {
759
- type: `${contentType}`,
759
+ type: `${contentType}`
760
760
  });
761
761
  return {
762
762
  filename,
763
- blob,
763
+ blob
764
764
  };
765
765
  }, (err) => {
766
766
  throwError(err);
@@ -780,11 +780,11 @@ class MonkeyEcxService {
780
780
  .replace(new RegExp(/"/g), '');
781
781
  }
782
782
  const blob = new Blob([body], {
783
- type: `${contentType}`,
783
+ type: `${contentType}`
784
784
  });
785
785
  return {
786
786
  filename,
787
- blob,
787
+ blob
788
788
  };
789
789
  }), catchError((err) => {
790
790
  return throwError(err);
@@ -796,7 +796,7 @@ MonkeyEcxService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", ver
796
796
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: MonkeyEcxService, decorators: [{
797
797
  type: Injectable,
798
798
  args: [{
799
- providedIn: 'root',
799
+ providedIn: 'root'
800
800
  }]
801
801
  }], ctorParameters: function () { return [{ type: i1$2.HttpClient }, { type: MonkeyEcxHandlingService }]; } });
802
802