@indigina/wms-api 0.0.167 → 0.0.169
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/package.json
CHANGED
|
@@ -4088,21 +4088,25 @@ declare class PickSummariesService extends BaseService {
|
|
|
4088
4088
|
* @endpoint get /pickSummaries
|
|
4089
4089
|
* @param from
|
|
4090
4090
|
* @param to
|
|
4091
|
+
* @param $skip
|
|
4092
|
+
* @param $top
|
|
4093
|
+
* @param $orderby
|
|
4094
|
+
* @param $filter
|
|
4091
4095
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4092
4096
|
* @param reportProgress flag to report request and response progress.
|
|
4093
4097
|
* @param options additional options
|
|
4094
4098
|
*/
|
|
4095
|
-
getPickSummaries(from: string, to: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4099
|
+
getPickSummaries(from: string, to: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4096
4100
|
httpHeaderAccept?: 'application/json';
|
|
4097
4101
|
context?: HttpContext;
|
|
4098
4102
|
transferCache?: boolean;
|
|
4099
4103
|
}): Observable<PickSummaries>;
|
|
4100
|
-
getPickSummaries(from: string, to: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4104
|
+
getPickSummaries(from: string, to: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4101
4105
|
httpHeaderAccept?: 'application/json';
|
|
4102
4106
|
context?: HttpContext;
|
|
4103
4107
|
transferCache?: boolean;
|
|
4104
4108
|
}): Observable<HttpResponse<PickSummaries>>;
|
|
4105
|
-
getPickSummaries(from: string, to: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4109
|
+
getPickSummaries(from: string, to: string, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4106
4110
|
httpHeaderAccept?: 'application/json';
|
|
4107
4111
|
context?: HttpContext;
|
|
4108
4112
|
transferCache?: boolean;
|
|
@@ -7269,7 +7273,7 @@ interface WaveConfigurationGridView {
|
|
|
7269
7273
|
findStockOutsideZones: boolean;
|
|
7270
7274
|
editLocked: boolean;
|
|
7271
7275
|
enabled: boolean;
|
|
7272
|
-
|
|
7276
|
+
createdDate: string;
|
|
7273
7277
|
createdBy: string;
|
|
7274
7278
|
lastModifiedDate?: string | null;
|
|
7275
7279
|
lastModifiedBy?: string | null;
|