@brggroup/share-lib 0.0.51 → 0.0.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.
@@ -420,10 +420,10 @@ class CommonService extends HTTPService {
420
420
  }));
421
421
  }
422
422
  ExportPdf(data) {
423
- return firstValueFrom(this.httpClient.post(AppGlobals.apiEndpoint + '/api/Common/ExportPdf', data));
423
+ return this.postData(AppGlobals.apiEndpoint + '/api/Common/ExportPdf', data);
424
424
  }
425
425
  ExportDocx(data) {
426
- return firstValueFrom(this.httpClient.post(AppGlobals.apiEndpoint + '/api/Common/ExportDocx', data));
426
+ return this.postData(AppGlobals.apiEndpoint + '/api/Common/ExportDocx', data);
427
427
  }
428
428
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: CommonService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
429
429
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: CommonService, providedIn: 'root' });