@indigina/wms-api 0.0.111 → 0.0.113
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.113
|
|
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.113 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -952,6 +952,121 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
952
952
|
type: Optional
|
|
953
953
|
}] }] });
|
|
954
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
|
+
getCartonPicksFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
1013
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
1014
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|
|
1015
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
|
|
1016
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
|
|
1017
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
|
|
1018
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, searchTerm, 'searchTerm');
|
|
1019
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1020
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
1021
|
+
'application/json'
|
|
1022
|
+
]);
|
|
1023
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1024
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
1025
|
+
}
|
|
1026
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1027
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1028
|
+
let responseType_ = 'json';
|
|
1029
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1030
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
1031
|
+
responseType_ = 'text';
|
|
1032
|
+
}
|
|
1033
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1034
|
+
responseType_ = 'json';
|
|
1035
|
+
}
|
|
1036
|
+
else {
|
|
1037
|
+
responseType_ = 'blob';
|
|
1038
|
+
}
|
|
1039
|
+
}
|
|
1040
|
+
let localVarPath = `/cartonPicks/search`;
|
|
1041
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1042
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
1043
|
+
context: localVarHttpContext,
|
|
1044
|
+
params: localVarQueryParameters,
|
|
1045
|
+
responseType: responseType_,
|
|
1046
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1047
|
+
headers: localVarHeaders,
|
|
1048
|
+
observe: observe,
|
|
1049
|
+
transferCache: localVarTransferCache,
|
|
1050
|
+
reportProgress: reportProgress
|
|
1051
|
+
});
|
|
1052
|
+
}
|
|
1053
|
+
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 });
|
|
1054
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonPicksService, providedIn: 'root' });
|
|
1055
|
+
}
|
|
1056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonPicksService, decorators: [{
|
|
1057
|
+
type: Injectable,
|
|
1058
|
+
args: [{
|
|
1059
|
+
providedIn: 'root'
|
|
1060
|
+
}]
|
|
1061
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
1062
|
+
type: Optional
|
|
1063
|
+
}, {
|
|
1064
|
+
type: Inject,
|
|
1065
|
+
args: [BASE_PATH]
|
|
1066
|
+
}] }, { type: Configuration, decorators: [{
|
|
1067
|
+
type: Optional
|
|
1068
|
+
}] }] });
|
|
1069
|
+
|
|
955
1070
|
/**
|
|
956
1071
|
* Wms.API.Client
|
|
957
1072
|
*
|
|
@@ -5862,7 +5977,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
5862
5977
|
type: Optional
|
|
5863
5978
|
}] }] });
|
|
5864
5979
|
|
|
5865
|
-
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];
|
|
5980
|
+
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];
|
|
5981
|
+
|
|
5982
|
+
/**
|
|
5983
|
+
* Wms.API.Client
|
|
5984
|
+
*
|
|
5985
|
+
*
|
|
5986
|
+
*
|
|
5987
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5988
|
+
* https://openapi-generator.tech
|
|
5989
|
+
* Do not edit the class manually.
|
|
5990
|
+
*/
|
|
5866
5991
|
|
|
5867
5992
|
/**
|
|
5868
5993
|
* Wms.API.Client
|
|
@@ -6689,5 +6814,5 @@ function provideApi(configOrBasePath) {
|
|
|
6689
6814
|
* Generated bundle index. Do not edit.
|
|
6690
6815
|
*/
|
|
6691
6816
|
|
|
6692
|
-
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 };
|
|
6817
|
+
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 };
|
|
6693
6818
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|