@experteam-mx/ngx-services 20.8.4 → 20.8.5
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.
|
@@ -3546,6 +3546,15 @@ class ApiInventoriesService {
|
|
|
3546
3546
|
putMissingPackages(body) {
|
|
3547
3547
|
return this.http.put(`${this.url}/missing-packages`, body).pipe(map(({ data }) => data));
|
|
3548
3548
|
}
|
|
3549
|
+
/**
|
|
3550
|
+
* Edit package on hold resource..
|
|
3551
|
+
*
|
|
3552
|
+
* @param {PackageOnHoldIn} body - The package on hold resource data to be updated.
|
|
3553
|
+
* @returns {Observable<PackageOnHoldOut>} An observable with the package on hold resource updated.
|
|
3554
|
+
*/
|
|
3555
|
+
putPackageOnHold(body) {
|
|
3556
|
+
return this.http.put(`${this.url}/package-on-hold`, body).pipe(map(({ data }) => data));
|
|
3557
|
+
}
|
|
3549
3558
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: ApiInventoriesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3550
3559
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: ApiInventoriesService, providedIn: 'root' });
|
|
3551
3560
|
}
|
|
@@ -5501,6 +5510,7 @@ var InventoryActions;
|
|
|
5501
5510
|
InventoryActions["INVENTORY_MISSING_PIECES"] = "inventoryMissingPieces";
|
|
5502
5511
|
InventoryActions["INVENTORY_RE_ENTRY_MISSING_PIECES"] = "inventoryReEntryMissingPieces";
|
|
5503
5512
|
InventoryActions["INVENTORY_ODD_NOTIFICATION"] = "inventoryOddNotifications";
|
|
5513
|
+
InventoryActions["INVENTORY_ON_HOLD_MISSED_CONNECTION"] = "inventoryOnHoldMissed";
|
|
5504
5514
|
})(InventoryActions || (InventoryActions = {}));
|
|
5505
5515
|
var InventoryErrorCodes;
|
|
5506
5516
|
(function (InventoryErrorCodes) {
|