@indigina/wms-api 0.0.178 → 0.0.179
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
|
@@ -2351,6 +2351,7 @@ interface CountRecordGridView {
|
|
|
2351
2351
|
countType: CountType;
|
|
2352
2352
|
countStatus: CountStatuses;
|
|
2353
2353
|
location?: string;
|
|
2354
|
+
sortOrder?: number | null;
|
|
2354
2355
|
licencePlate?: number | null;
|
|
2355
2356
|
productMasterId?: string | null;
|
|
2356
2357
|
sku?: string;
|
|
@@ -2532,6 +2533,34 @@ declare class CountRecordsService extends BaseService {
|
|
|
2532
2533
|
context?: HttpContext;
|
|
2533
2534
|
transferCache?: boolean;
|
|
2534
2535
|
}): Observable<HttpEvent<CountRecords>>;
|
|
2536
|
+
/**
|
|
2537
|
+
* CountRecords list
|
|
2538
|
+
* @endpoint get /CountRecords/search
|
|
2539
|
+
* @param statusGroup
|
|
2540
|
+
* @param $skip
|
|
2541
|
+
* @param $top
|
|
2542
|
+
* @param $orderby
|
|
2543
|
+
* @param $filter
|
|
2544
|
+
* @param searchTerm
|
|
2545
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2546
|
+
* @param reportProgress flag to report request and response progress.
|
|
2547
|
+
* @param options additional options
|
|
2548
|
+
*/
|
|
2549
|
+
getCountRecordsFromIndex(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2550
|
+
httpHeaderAccept?: 'application/json';
|
|
2551
|
+
context?: HttpContext;
|
|
2552
|
+
transferCache?: boolean;
|
|
2553
|
+
}): Observable<CountRecords>;
|
|
2554
|
+
getCountRecordsFromIndex(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2555
|
+
httpHeaderAccept?: 'application/json';
|
|
2556
|
+
context?: HttpContext;
|
|
2557
|
+
transferCache?: boolean;
|
|
2558
|
+
}): Observable<HttpResponse<CountRecords>>;
|
|
2559
|
+
getCountRecordsFromIndex(statusGroup: CountStatusGroup, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2560
|
+
httpHeaderAccept?: 'application/json';
|
|
2561
|
+
context?: HttpContext;
|
|
2562
|
+
transferCache?: boolean;
|
|
2563
|
+
}): Observable<HttpEvent<CountRecords>>;
|
|
2535
2564
|
/**
|
|
2536
2565
|
* Getting operator counts for a count record
|
|
2537
2566
|
* @endpoint get /CountRecords/{id}/operatorCounts
|