@indigina/wms-api 0.0.106 → 0.0.107
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 +70 -0
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +42 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3678,6 +3678,27 @@ type ReplenishmentStatuses = typeof ReplenishmentStatuses[keyof typeof Replenish
|
|
|
3678
3678
|
declare class ReplenishmentRecordsService extends BaseService {
|
|
3679
3679
|
protected httpClient: HttpClient;
|
|
3680
3680
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3681
|
+
/**
|
|
3682
|
+
* Cancel a replenishment record
|
|
3683
|
+
* @param id
|
|
3684
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3685
|
+
* @param reportProgress flag to report request and response progress.
|
|
3686
|
+
*/
|
|
3687
|
+
cancelReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3688
|
+
httpHeaderAccept?: undefined;
|
|
3689
|
+
context?: HttpContext;
|
|
3690
|
+
transferCache?: boolean;
|
|
3691
|
+
}): Observable<any>;
|
|
3692
|
+
cancelReplenishmentRecord(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3693
|
+
httpHeaderAccept?: undefined;
|
|
3694
|
+
context?: HttpContext;
|
|
3695
|
+
transferCache?: boolean;
|
|
3696
|
+
}): Observable<HttpResponse<any>>;
|
|
3697
|
+
cancelReplenishmentRecord(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3698
|
+
httpHeaderAccept?: undefined;
|
|
3699
|
+
context?: HttpContext;
|
|
3700
|
+
transferCache?: boolean;
|
|
3701
|
+
}): Observable<HttpEvent<any>>;
|
|
3681
3702
|
/**
|
|
3682
3703
|
* Getting replenishment records
|
|
3683
3704
|
* @param $skip
|
|
@@ -3705,6 +3726,27 @@ declare class ReplenishmentRecordsService extends BaseService {
|
|
|
3705
3726
|
context?: HttpContext;
|
|
3706
3727
|
transferCache?: boolean;
|
|
3707
3728
|
}): Observable<HttpEvent<ReplenishmentRecords>>;
|
|
3729
|
+
/**
|
|
3730
|
+
* Unallocate a replenishment record
|
|
3731
|
+
* @param id
|
|
3732
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3733
|
+
* @param reportProgress flag to report request and response progress.
|
|
3734
|
+
*/
|
|
3735
|
+
unallocateReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3736
|
+
httpHeaderAccept?: undefined;
|
|
3737
|
+
context?: HttpContext;
|
|
3738
|
+
transferCache?: boolean;
|
|
3739
|
+
}): Observable<any>;
|
|
3740
|
+
unallocateReplenishmentRecord(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3741
|
+
httpHeaderAccept?: undefined;
|
|
3742
|
+
context?: HttpContext;
|
|
3743
|
+
transferCache?: boolean;
|
|
3744
|
+
}): Observable<HttpResponse<any>>;
|
|
3745
|
+
unallocateReplenishmentRecord(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3746
|
+
httpHeaderAccept?: undefined;
|
|
3747
|
+
context?: HttpContext;
|
|
3748
|
+
transferCache?: boolean;
|
|
3749
|
+
}): Observable<HttpEvent<any>>;
|
|
3708
3750
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentRecordsService, [null, { optional: true; }, { optional: true; }]>;
|
|
3709
3751
|
static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentRecordsService>;
|
|
3710
3752
|
}
|