@experteam-mx/ngx-services 20.1.14 → 20.1.16
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.
|
@@ -2948,21 +2948,21 @@ class ApiInventoriesService {
|
|
|
2948
2948
|
* Fetches the missing package details based on query parameters.
|
|
2949
2949
|
*
|
|
2950
2950
|
* @param {QueryParams} params - The query parameters for filtering the missing package details.
|
|
2951
|
-
* @return {Observable<
|
|
2951
|
+
* @return {Observable<ReEntryOfMissingPackageOut>} An observable that emits the detail missing package data.
|
|
2952
2952
|
*/
|
|
2953
|
-
|
|
2954
|
-
return this.http.get(`${this.url}/
|
|
2953
|
+
getReEntryOfMissingPackages(params) {
|
|
2954
|
+
return this.http.get(`${this.url}/re-entry-of-missing-packages`, {
|
|
2955
2955
|
params
|
|
2956
2956
|
}).pipe(map(({ data }) => data));
|
|
2957
2957
|
}
|
|
2958
2958
|
/**
|
|
2959
2959
|
* Re-entry missing packages
|
|
2960
2960
|
*
|
|
2961
|
-
* @param {
|
|
2962
|
-
* @returns {Observable<
|
|
2961
|
+
* @param {ReEntryOfMissingPackagesIn} body - The missing packages data to be re-entry.
|
|
2962
|
+
* @returns {Observable<ReEntryOfMissingPackagesOut>} An observable detail of the updated incident reason complement.
|
|
2963
2963
|
*/
|
|
2964
|
-
|
|
2965
|
-
return this.http.put(`${this.url}/
|
|
2964
|
+
putReEntryOfMissingPackages(body) {
|
|
2965
|
+
return this.http.put(`${this.url}/re-entry-of-missing-packages`, body).pipe(map(({ data }) => data));
|
|
2966
2966
|
}
|
|
2967
2967
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ApiInventoriesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2968
2968
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: ApiInventoriesService, providedIn: 'root' });
|