@indigina/wms-api 0.0.140 → 0.0.142
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
|
@@ -2789,7 +2789,7 @@ declare const PackingProcesses: {
|
|
|
2789
2789
|
readonly SkuPacking: "SkuPacking";
|
|
2790
2790
|
readonly PickPack: "PickPack";
|
|
2791
2791
|
readonly PickPackBySku: "PickPackBySku";
|
|
2792
|
-
readonly
|
|
2792
|
+
readonly BatchPacking: "BatchPacking";
|
|
2793
2793
|
};
|
|
2794
2794
|
type PackingProcesses = typeof PackingProcesses[keyof typeof PackingProcesses];
|
|
2795
2795
|
|
|
@@ -3321,8 +3321,6 @@ declare class HealthService extends BaseService {
|
|
|
3321
3321
|
*/
|
|
3322
3322
|
interface LicencePlateSerialView {
|
|
3323
3323
|
id: number;
|
|
3324
|
-
clientId?: string;
|
|
3325
|
-
cartonId?: string;
|
|
3326
3324
|
client: string | null;
|
|
3327
3325
|
licencePlateNumber: number;
|
|
3328
3326
|
location: string | null;
|
|
@@ -3378,6 +3376,33 @@ declare class LicencePlateSerialsService extends BaseService {
|
|
|
3378
3376
|
context?: HttpContext;
|
|
3379
3377
|
transferCache?: boolean;
|
|
3380
3378
|
}): Observable<HttpEvent<LicencePlateSerials>>;
|
|
3379
|
+
/**
|
|
3380
|
+
* Licence plate serials list
|
|
3381
|
+
* @endpoint get /licencePlateSerials/search
|
|
3382
|
+
* @param $skip
|
|
3383
|
+
* @param $top
|
|
3384
|
+
* @param $orderby
|
|
3385
|
+
* @param $filter
|
|
3386
|
+
* @param searchTerm
|
|
3387
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3388
|
+
* @param reportProgress flag to report request and response progress.
|
|
3389
|
+
* @param options additional options
|
|
3390
|
+
*/
|
|
3391
|
+
getLicencePlateSerialsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3392
|
+
httpHeaderAccept?: 'application/json';
|
|
3393
|
+
context?: HttpContext;
|
|
3394
|
+
transferCache?: boolean;
|
|
3395
|
+
}): Observable<LicencePlateSerials>;
|
|
3396
|
+
getLicencePlateSerialsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3397
|
+
httpHeaderAccept?: 'application/json';
|
|
3398
|
+
context?: HttpContext;
|
|
3399
|
+
transferCache?: boolean;
|
|
3400
|
+
}): Observable<HttpResponse<LicencePlateSerials>>;
|
|
3401
|
+
getLicencePlateSerialsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3402
|
+
httpHeaderAccept?: 'application/json';
|
|
3403
|
+
context?: HttpContext;
|
|
3404
|
+
transferCache?: boolean;
|
|
3405
|
+
}): Observable<HttpEvent<LicencePlateSerials>>;
|
|
3381
3406
|
static ɵfac: i0.ɵɵFactoryDeclaration<LicencePlateSerialsService, [null, { optional: true; }, { optional: true; }]>;
|
|
3382
3407
|
static ɵprov: i0.ɵɵInjectableDeclaration<LicencePlateSerialsService>;
|
|
3383
3408
|
}
|