@indigina/wms-api 0.0.111 → 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 +86 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +78 -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):_
|
|
@@ -952,6 +952,80 @@ 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
|
+
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
|
+
|
|
955
1029
|
/**
|
|
956
1030
|
* Wms.API.Client
|
|
957
1031
|
*
|
|
@@ -5862,7 +5936,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
5862
5936
|
type: Optional
|
|
5863
5937
|
}] }] });
|
|
5864
5938
|
|
|
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];
|
|
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
|
+
*/
|
|
5866
5950
|
|
|
5867
5951
|
/**
|
|
5868
5952
|
* Wms.API.Client
|
|
@@ -6689,5 +6773,5 @@ function provideApi(configOrBasePath) {
|
|
|
6689
6773
|
* Generated bundle index. Do not edit.
|
|
6690
6774
|
*/
|
|
6691
6775
|
|
|
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 };
|
|
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 };
|
|
6693
6777
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|