@indigina/wms-api 0.0.108 → 0.0.109
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.
- package/README.md +2 -2
- package/fesm2022/indigina-wms-api.mjs +41 -0
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +25 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3725,6 +3725,31 @@ declare class ReplenishmentRecordsService extends BaseService {
|
|
|
3725
3725
|
context?: HttpContext;
|
|
3726
3726
|
transferCache?: boolean;
|
|
3727
3727
|
}): Observable<HttpEvent<ReplenishmentRecords>>;
|
|
3728
|
+
/**
|
|
3729
|
+
* ReplenishmentRecords list
|
|
3730
|
+
* @param $skip
|
|
3731
|
+
* @param $top
|
|
3732
|
+
* @param $orderby
|
|
3733
|
+
* @param $filter
|
|
3734
|
+
* @param searchTerm
|
|
3735
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3736
|
+
* @param reportProgress flag to report request and response progress.
|
|
3737
|
+
*/
|
|
3738
|
+
getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3739
|
+
httpHeaderAccept?: 'application/json';
|
|
3740
|
+
context?: HttpContext;
|
|
3741
|
+
transferCache?: boolean;
|
|
3742
|
+
}): Observable<ReplenishmentRecords>;
|
|
3743
|
+
getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3744
|
+
httpHeaderAccept?: 'application/json';
|
|
3745
|
+
context?: HttpContext;
|
|
3746
|
+
transferCache?: boolean;
|
|
3747
|
+
}): Observable<HttpResponse<ReplenishmentRecords>>;
|
|
3748
|
+
getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3749
|
+
httpHeaderAccept?: 'application/json';
|
|
3750
|
+
context?: HttpContext;
|
|
3751
|
+
transferCache?: boolean;
|
|
3752
|
+
}): Observable<HttpEvent<ReplenishmentRecords>>;
|
|
3728
3753
|
/**
|
|
3729
3754
|
* Unallocate a replenishment record
|
|
3730
3755
|
* @param id
|