@indigina/wms-api 0.0.110 → 0.0.112
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 +127 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +103 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.112
|
|
2
2
|
|
|
3
3
|
WMS API Client for Angular applications
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @indigina/wms-api@0.0.
|
|
27
|
+
npm install @indigina/wms-api@0.0.112 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -894,6 +894,47 @@ class CartonMovementHistoriesService extends BaseService {
|
|
|
894
894
|
reportProgress: reportProgress
|
|
895
895
|
});
|
|
896
896
|
}
|
|
897
|
+
getCartonMovementHistoriesFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
898
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
899
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|
|
900
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
|
|
901
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
|
|
902
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
|
|
903
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, searchTerm, 'searchTerm');
|
|
904
|
+
let localVarHeaders = this.defaultHeaders;
|
|
905
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
906
|
+
'application/json'
|
|
907
|
+
]);
|
|
908
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
909
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
910
|
+
}
|
|
911
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
912
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
913
|
+
let responseType_ = 'json';
|
|
914
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
915
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
916
|
+
responseType_ = 'text';
|
|
917
|
+
}
|
|
918
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
919
|
+
responseType_ = 'json';
|
|
920
|
+
}
|
|
921
|
+
else {
|
|
922
|
+
responseType_ = 'blob';
|
|
923
|
+
}
|
|
924
|
+
}
|
|
925
|
+
let localVarPath = `/cartonMovementHistories/search`;
|
|
926
|
+
const { basePath, withCredentials } = this.configuration;
|
|
927
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
928
|
+
context: localVarHttpContext,
|
|
929
|
+
params: localVarQueryParameters,
|
|
930
|
+
responseType: responseType_,
|
|
931
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
932
|
+
headers: localVarHeaders,
|
|
933
|
+
observe: observe,
|
|
934
|
+
transferCache: localVarTransferCache,
|
|
935
|
+
reportProgress: reportProgress
|
|
936
|
+
});
|
|
937
|
+
}
|
|
897
938
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonMovementHistoriesService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
898
939
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonMovementHistoriesService, providedIn: 'root' });
|
|
899
940
|
}
|
|
@@ -911,6 +952,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
911
952
|
type: Optional
|
|
912
953
|
}] }] });
|
|
913
954
|
|
|
955
|
+
/**
|
|
956
|
+
* Wms.API.Client
|
|
957
|
+
*
|
|
958
|
+
*
|
|
959
|
+
*
|
|
960
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
961
|
+
* https://openapi-generator.tech
|
|
962
|
+
* Do not edit the class manually.
|
|
963
|
+
*/
|
|
964
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
965
|
+
class CartonPicksService extends BaseService {
|
|
966
|
+
httpClient;
|
|
967
|
+
constructor(httpClient, basePath, configuration) {
|
|
968
|
+
super(basePath, configuration);
|
|
969
|
+
this.httpClient = httpClient;
|
|
970
|
+
}
|
|
971
|
+
getCartonPicks($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
972
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
973
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|
|
974
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
|
|
975
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
|
|
976
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
|
|
977
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $search, '$search');
|
|
978
|
+
let localVarHeaders = this.defaultHeaders;
|
|
979
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
980
|
+
'application/json'
|
|
981
|
+
]);
|
|
982
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
983
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
984
|
+
}
|
|
985
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
986
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
987
|
+
let responseType_ = 'json';
|
|
988
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
989
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
990
|
+
responseType_ = 'text';
|
|
991
|
+
}
|
|
992
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
993
|
+
responseType_ = 'json';
|
|
994
|
+
}
|
|
995
|
+
else {
|
|
996
|
+
responseType_ = 'blob';
|
|
997
|
+
}
|
|
998
|
+
}
|
|
999
|
+
let localVarPath = `/cartonPicks`;
|
|
1000
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1001
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
1002
|
+
context: localVarHttpContext,
|
|
1003
|
+
params: localVarQueryParameters,
|
|
1004
|
+
responseType: responseType_,
|
|
1005
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1006
|
+
headers: localVarHeaders,
|
|
1007
|
+
observe: observe,
|
|
1008
|
+
transferCache: localVarTransferCache,
|
|
1009
|
+
reportProgress: reportProgress
|
|
1010
|
+
});
|
|
1011
|
+
}
|
|
1012
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonPicksService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1013
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonPicksService, providedIn: 'root' });
|
|
1014
|
+
}
|
|
1015
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonPicksService, decorators: [{
|
|
1016
|
+
type: Injectable,
|
|
1017
|
+
args: [{
|
|
1018
|
+
providedIn: 'root'
|
|
1019
|
+
}]
|
|
1020
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
1021
|
+
type: Optional
|
|
1022
|
+
}, {
|
|
1023
|
+
type: Inject,
|
|
1024
|
+
args: [BASE_PATH]
|
|
1025
|
+
}] }, { type: Configuration, decorators: [{
|
|
1026
|
+
type: Optional
|
|
1027
|
+
}] }] });
|
|
1028
|
+
|
|
914
1029
|
/**
|
|
915
1030
|
* Wms.API.Client
|
|
916
1031
|
*
|
|
@@ -5821,7 +5936,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
5821
5936
|
type: Optional
|
|
5822
5937
|
}] }] });
|
|
5823
5938
|
|
|
5824
|
-
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, NotesService, PendoService, PermissionsService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UsersInternalService, WavePickReleasesService, WavesByPickReleaseIdService];
|
|
5939
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, NotesService, PendoService, PermissionsService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UsersInternalService, WavePickReleasesService, WavesByPickReleaseIdService];
|
|
5940
|
+
|
|
5941
|
+
/**
|
|
5942
|
+
* Wms.API.Client
|
|
5943
|
+
*
|
|
5944
|
+
*
|
|
5945
|
+
*
|
|
5946
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5947
|
+
* https://openapi-generator.tech
|
|
5948
|
+
* Do not edit the class manually.
|
|
5949
|
+
*/
|
|
5825
5950
|
|
|
5826
5951
|
/**
|
|
5827
5952
|
* Wms.API.Client
|
|
@@ -6648,5 +6773,5 @@ function provideApi(configOrBasePath) {
|
|
|
6648
6773
|
* Generated bundle index. Do not edit.
|
|
6649
6774
|
*/
|
|
6650
6775
|
|
|
6651
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
6776
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, ProductMastersService, ProductQuantitiesService, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
6652
6777
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|