iptdevs-design-system 3.1.896 → 3.1.898

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.
@@ -6581,6 +6581,21 @@ class BudgetService extends IPTGeneralService {
6581
6581
  this.generateRequestParams(params);
6582
6582
  return this.http.post(serviceUrl, this.httpOptions);
6583
6583
  }
6584
+ createTransferValidate(params) {
6585
+ const serviceUrl = this.SERVICE_URL + 'create/transfer/validate';
6586
+ this.generateRequestParams(params);
6587
+ return this.http.post(serviceUrl, this.httpOptions);
6588
+ }
6589
+ searchTransferByReference(params) {
6590
+ const serviceUrl = this.SERVICE_URL + 'search/transfer/by/reference';
6591
+ this.generateRequestParams(params);
6592
+ return this.http.post(serviceUrl, this.httpOptions);
6593
+ }
6594
+ updateTransferData(params) {
6595
+ const serviceUrl = this.SERVICE_URL + 'update/transfer/data';
6596
+ this.generateRequestParams(params);
6597
+ return this.http.post(serviceUrl, this.httpOptions);
6598
+ }
6584
6599
  }
6585
6600
  BudgetService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
6586
6601
  BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });