@indigina/wms-api 0.0.141 → 0.0.143
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
|
@@ -831,6 +831,29 @@ declare class CartonDeliveryItemsService extends BaseService {
|
|
|
831
831
|
context?: HttpContext;
|
|
832
832
|
transferCache?: boolean;
|
|
833
833
|
}): Observable<HttpEvent<CartonDeliveryItems>>;
|
|
834
|
+
/**
|
|
835
|
+
* Get carton IDs by delivery item IDs
|
|
836
|
+
* @endpoint get /cartons/deliveryItems/cartonIds
|
|
837
|
+
* @param ids
|
|
838
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
839
|
+
* @param reportProgress flag to report request and response progress.
|
|
840
|
+
* @param options additional options
|
|
841
|
+
*/
|
|
842
|
+
getCartonIdsByDeliveryItemIds(ids: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
843
|
+
httpHeaderAccept?: 'application/json';
|
|
844
|
+
context?: HttpContext;
|
|
845
|
+
transferCache?: boolean;
|
|
846
|
+
}): Observable<Array<string>>;
|
|
847
|
+
getCartonIdsByDeliveryItemIds(ids: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
848
|
+
httpHeaderAccept?: 'application/json';
|
|
849
|
+
context?: HttpContext;
|
|
850
|
+
transferCache?: boolean;
|
|
851
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
852
|
+
getCartonIdsByDeliveryItemIds(ids: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
853
|
+
httpHeaderAccept?: 'application/json';
|
|
854
|
+
context?: HttpContext;
|
|
855
|
+
transferCache?: boolean;
|
|
856
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
834
857
|
static ɵfac: i0.ɵɵFactoryDeclaration<CartonDeliveryItemsService, [null, { optional: true; }, { optional: true; }]>;
|
|
835
858
|
static ɵprov: i0.ɵɵInjectableDeclaration<CartonDeliveryItemsService>;
|
|
836
859
|
}
|
|
@@ -3321,8 +3344,6 @@ declare class HealthService extends BaseService {
|
|
|
3321
3344
|
*/
|
|
3322
3345
|
interface LicencePlateSerialView {
|
|
3323
3346
|
id: number;
|
|
3324
|
-
clientId?: string;
|
|
3325
|
-
cartonId?: string;
|
|
3326
3347
|
client: string | null;
|
|
3327
3348
|
licencePlateNumber: number;
|
|
3328
3349
|
location: string | null;
|
|
@@ -3378,6 +3399,33 @@ declare class LicencePlateSerialsService extends BaseService {
|
|
|
3378
3399
|
context?: HttpContext;
|
|
3379
3400
|
transferCache?: boolean;
|
|
3380
3401
|
}): Observable<HttpEvent<LicencePlateSerials>>;
|
|
3402
|
+
/**
|
|
3403
|
+
* Licence plate serials list
|
|
3404
|
+
* @endpoint get /licencePlateSerials/search
|
|
3405
|
+
* @param $skip
|
|
3406
|
+
* @param $top
|
|
3407
|
+
* @param $orderby
|
|
3408
|
+
* @param $filter
|
|
3409
|
+
* @param searchTerm
|
|
3410
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3411
|
+
* @param reportProgress flag to report request and response progress.
|
|
3412
|
+
* @param options additional options
|
|
3413
|
+
*/
|
|
3414
|
+
getLicencePlateSerialsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3415
|
+
httpHeaderAccept?: 'application/json';
|
|
3416
|
+
context?: HttpContext;
|
|
3417
|
+
transferCache?: boolean;
|
|
3418
|
+
}): Observable<LicencePlateSerials>;
|
|
3419
|
+
getLicencePlateSerialsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3420
|
+
httpHeaderAccept?: 'application/json';
|
|
3421
|
+
context?: HttpContext;
|
|
3422
|
+
transferCache?: boolean;
|
|
3423
|
+
}): Observable<HttpResponse<LicencePlateSerials>>;
|
|
3424
|
+
getLicencePlateSerialsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3425
|
+
httpHeaderAccept?: 'application/json';
|
|
3426
|
+
context?: HttpContext;
|
|
3427
|
+
transferCache?: boolean;
|
|
3428
|
+
}): Observable<HttpEvent<LicencePlateSerials>>;
|
|
3381
3429
|
static ɵfac: i0.ɵɵFactoryDeclaration<LicencePlateSerialsService, [null, { optional: true; }, { optional: true; }]>;
|
|
3382
3430
|
static ɵprov: i0.ɵɵInjectableDeclaration<LicencePlateSerialsService>;
|
|
3383
3431
|
}
|