@experteam-mx/ngx-services 20.0.15 → 20.0.19
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.
|
@@ -3414,6 +3414,15 @@ class ApiInvoicesService {
|
|
|
3414
3414
|
return this.http.get(`${this.url}/document-type-ranges`, { params })
|
|
3415
3415
|
.pipe(map(({ data }) => data));
|
|
3416
3416
|
}
|
|
3417
|
+
/**
|
|
3418
|
+
* Retrieves the currently active document type ranges.
|
|
3419
|
+
*
|
|
3420
|
+
* @returns {Observable<DocumentsTypesRangesCurrentStatusOut>} An observable that emits the currently active document type ranges data.
|
|
3421
|
+
*/
|
|
3422
|
+
getDocumentsTypesRangesCurrentStatus() {
|
|
3423
|
+
return this.http.get(`${this.url}/document-type-ranges/current-status`)
|
|
3424
|
+
.pipe(map(({ data }) => data));
|
|
3425
|
+
}
|
|
3417
3426
|
/**
|
|
3418
3427
|
* Creates a new document type range.
|
|
3419
3428
|
* @param body - The document type range data to create
|