@brggroup/share-lib 0.0.50 → 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,16 +420,10 @@ class CommonService extends HTTPService {
|
|
|
420
420
|
}));
|
|
421
421
|
}
|
|
422
422
|
ExportPdf(data) {
|
|
423
|
-
return
|
|
424
|
-
responseType: ENUM_ResponseType.BLOB,
|
|
425
|
-
observe: 'response',
|
|
426
|
-
}));
|
|
423
|
+
return this.postData(AppGlobals.apiEndpoint + '/api/Common/ExportPdf', data);
|
|
427
424
|
}
|
|
428
425
|
ExportDocx(data) {
|
|
429
|
-
return
|
|
430
|
-
responseType: ENUM_ResponseType.BLOB,
|
|
431
|
-
observe: 'response',
|
|
432
|
-
}));
|
|
426
|
+
return this.postData(AppGlobals.apiEndpoint + '/api/Common/ExportDocx', data);
|
|
433
427
|
}
|
|
434
428
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: CommonService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
435
429
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.7", ngImport: i0, type: CommonService, providedIn: 'root' });
|