@indigina/wms-api 0.0.112 → 0.0.113
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
|
@@ -919,6 +919,31 @@ declare class CartonPicksService extends BaseService {
|
|
|
919
919
|
context?: HttpContext;
|
|
920
920
|
transferCache?: boolean;
|
|
921
921
|
}): Observable<HttpEvent<Picks>>;
|
|
922
|
+
/**
|
|
923
|
+
* CartonPicks list
|
|
924
|
+
* @param $skip
|
|
925
|
+
* @param $top
|
|
926
|
+
* @param $orderby
|
|
927
|
+
* @param $filter
|
|
928
|
+
* @param searchTerm
|
|
929
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
930
|
+
* @param reportProgress flag to report request and response progress.
|
|
931
|
+
*/
|
|
932
|
+
getCartonPicksFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
933
|
+
httpHeaderAccept?: 'application/json';
|
|
934
|
+
context?: HttpContext;
|
|
935
|
+
transferCache?: boolean;
|
|
936
|
+
}): Observable<Picks>;
|
|
937
|
+
getCartonPicksFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
938
|
+
httpHeaderAccept?: 'application/json';
|
|
939
|
+
context?: HttpContext;
|
|
940
|
+
transferCache?: boolean;
|
|
941
|
+
}): Observable<HttpResponse<Picks>>;
|
|
942
|
+
getCartonPicksFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
943
|
+
httpHeaderAccept?: 'application/json';
|
|
944
|
+
context?: HttpContext;
|
|
945
|
+
transferCache?: boolean;
|
|
946
|
+
}): Observable<HttpEvent<Picks>>;
|
|
922
947
|
static ɵfac: i0.ɵɵFactoryDeclaration<CartonPicksService, [null, { optional: true; }, { optional: true; }]>;
|
|
923
948
|
static ɵprov: i0.ɵɵInjectableDeclaration<CartonPicksService>;
|
|
924
949
|
}
|