@indigina/wms-api 0.0.107 → 0.0.109
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 +42 -7
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +45 -21
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3579,6 +3579,22 @@ declare const ReplenishmentStages: {
|
|
|
3579
3579
|
};
|
|
3580
3580
|
type ReplenishmentStages = typeof ReplenishmentStages[keyof typeof ReplenishmentStages];
|
|
3581
3581
|
|
|
3582
|
+
/**
|
|
3583
|
+
* Wms.API.Client
|
|
3584
|
+
*
|
|
3585
|
+
*
|
|
3586
|
+
*
|
|
3587
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3588
|
+
* https://openapi-generator.tech
|
|
3589
|
+
* Do not edit the class manually.
|
|
3590
|
+
*/
|
|
3591
|
+
declare const ReplenishmentStatuses: {
|
|
3592
|
+
readonly Active: "Active";
|
|
3593
|
+
readonly Complete: "Complete";
|
|
3594
|
+
readonly Cancel: "Cancel";
|
|
3595
|
+
};
|
|
3596
|
+
type ReplenishmentStatuses = typeof ReplenishmentStatuses[keyof typeof ReplenishmentStatuses];
|
|
3597
|
+
|
|
3582
3598
|
/**
|
|
3583
3599
|
* Wms.API.Client
|
|
3584
3600
|
*
|
|
@@ -3608,6 +3624,7 @@ interface ReplenishmentRecordGridView {
|
|
|
3608
3624
|
id: string;
|
|
3609
3625
|
clientName: string;
|
|
3610
3626
|
replenishmentType: ReplenishmentTypes;
|
|
3627
|
+
replenishmentStatus?: ReplenishmentStatuses;
|
|
3611
3628
|
replenishmentTypeIdLocalizedName?: string;
|
|
3612
3629
|
productCode: string;
|
|
3613
3630
|
bestBeforeDate?: string | null;
|
|
@@ -3659,22 +3676,6 @@ interface ReplenishmentRecords {
|
|
|
3659
3676
|
data: Array<ReplenishmentRecordGridView>;
|
|
3660
3677
|
}
|
|
3661
3678
|
|
|
3662
|
-
/**
|
|
3663
|
-
* Wms.API.Client
|
|
3664
|
-
*
|
|
3665
|
-
*
|
|
3666
|
-
*
|
|
3667
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3668
|
-
* https://openapi-generator.tech
|
|
3669
|
-
* Do not edit the class manually.
|
|
3670
|
-
*/
|
|
3671
|
-
declare const ReplenishmentStatuses: {
|
|
3672
|
-
readonly Active: "Active";
|
|
3673
|
-
readonly Complete: "Complete";
|
|
3674
|
-
readonly Cancel: "Cancel";
|
|
3675
|
-
};
|
|
3676
|
-
type ReplenishmentStatuses = typeof ReplenishmentStatuses[keyof typeof ReplenishmentStatuses];
|
|
3677
|
-
|
|
3678
3679
|
declare class ReplenishmentRecordsService extends BaseService {
|
|
3679
3680
|
protected httpClient: HttpClient;
|
|
3680
3681
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -3706,22 +3707,45 @@ declare class ReplenishmentRecordsService extends BaseService {
|
|
|
3706
3707
|
* @param $orderby
|
|
3707
3708
|
* @param $filter
|
|
3708
3709
|
* @param $search
|
|
3709
|
-
* @param replenishmentStatuses List of replenishment statuses to filter by
|
|
3710
|
-
* @param hasAllocatedUsers
|
|
3711
3710
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3712
3711
|
* @param reportProgress flag to report request and response progress.
|
|
3713
3712
|
*/
|
|
3714
|
-
getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string,
|
|
3713
|
+
getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3714
|
+
httpHeaderAccept?: 'application/json';
|
|
3715
|
+
context?: HttpContext;
|
|
3716
|
+
transferCache?: boolean;
|
|
3717
|
+
}): Observable<ReplenishmentRecords>;
|
|
3718
|
+
getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3719
|
+
httpHeaderAccept?: 'application/json';
|
|
3720
|
+
context?: HttpContext;
|
|
3721
|
+
transferCache?: boolean;
|
|
3722
|
+
}): Observable<HttpResponse<ReplenishmentRecords>>;
|
|
3723
|
+
getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3724
|
+
httpHeaderAccept?: 'application/json';
|
|
3725
|
+
context?: HttpContext;
|
|
3726
|
+
transferCache?: boolean;
|
|
3727
|
+
}): Observable<HttpEvent<ReplenishmentRecords>>;
|
|
3728
|
+
/**
|
|
3729
|
+
* ReplenishmentRecords list
|
|
3730
|
+
* @param $skip
|
|
3731
|
+
* @param $top
|
|
3732
|
+
* @param $orderby
|
|
3733
|
+
* @param $filter
|
|
3734
|
+
* @param searchTerm
|
|
3735
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3736
|
+
* @param reportProgress flag to report request and response progress.
|
|
3737
|
+
*/
|
|
3738
|
+
getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3715
3739
|
httpHeaderAccept?: 'application/json';
|
|
3716
3740
|
context?: HttpContext;
|
|
3717
3741
|
transferCache?: boolean;
|
|
3718
3742
|
}): Observable<ReplenishmentRecords>;
|
|
3719
|
-
|
|
3743
|
+
getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3720
3744
|
httpHeaderAccept?: 'application/json';
|
|
3721
3745
|
context?: HttpContext;
|
|
3722
3746
|
transferCache?: boolean;
|
|
3723
3747
|
}): Observable<HttpResponse<ReplenishmentRecords>>;
|
|
3724
|
-
|
|
3748
|
+
getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3725
3749
|
httpHeaderAccept?: 'application/json';
|
|
3726
3750
|
context?: HttpContext;
|
|
3727
3751
|
transferCache?: boolean;
|