@indigina/wms-api 0.0.109 → 0.0.111
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 +97 -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.111
|
|
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.111 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -837,6 +837,121 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
837
837
|
type: Optional
|
|
838
838
|
}] }] });
|
|
839
839
|
|
|
840
|
+
/**
|
|
841
|
+
* Wms.API.Client
|
|
842
|
+
*
|
|
843
|
+
*
|
|
844
|
+
*
|
|
845
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
846
|
+
* https://openapi-generator.tech
|
|
847
|
+
* Do not edit the class manually.
|
|
848
|
+
*/
|
|
849
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
850
|
+
class CartonMovementHistoriesService extends BaseService {
|
|
851
|
+
httpClient;
|
|
852
|
+
constructor(httpClient, basePath, configuration) {
|
|
853
|
+
super(basePath, configuration);
|
|
854
|
+
this.httpClient = httpClient;
|
|
855
|
+
}
|
|
856
|
+
getCartonMovementHistories($skip, $top, $orderby, $filter, $search, observe = 'body', reportProgress = false, options) {
|
|
857
|
+
let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
|
|
858
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
|
|
859
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
|
|
860
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
|
|
861
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
|
|
862
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $search, '$search');
|
|
863
|
+
let localVarHeaders = this.defaultHeaders;
|
|
864
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
865
|
+
'application/json'
|
|
866
|
+
]);
|
|
867
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
868
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
869
|
+
}
|
|
870
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
871
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
872
|
+
let responseType_ = 'json';
|
|
873
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
874
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
875
|
+
responseType_ = 'text';
|
|
876
|
+
}
|
|
877
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
878
|
+
responseType_ = 'json';
|
|
879
|
+
}
|
|
880
|
+
else {
|
|
881
|
+
responseType_ = 'blob';
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
let localVarPath = `/cartonMovementHistories`;
|
|
885
|
+
const { basePath, withCredentials } = this.configuration;
|
|
886
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
887
|
+
context: localVarHttpContext,
|
|
888
|
+
params: localVarQueryParameters,
|
|
889
|
+
responseType: responseType_,
|
|
890
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
891
|
+
headers: localVarHeaders,
|
|
892
|
+
observe: observe,
|
|
893
|
+
transferCache: localVarTransferCache,
|
|
894
|
+
reportProgress: reportProgress
|
|
895
|
+
});
|
|
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
|
+
}
|
|
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 });
|
|
939
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonMovementHistoriesService, providedIn: 'root' });
|
|
940
|
+
}
|
|
941
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonMovementHistoriesService, decorators: [{
|
|
942
|
+
type: Injectable,
|
|
943
|
+
args: [{
|
|
944
|
+
providedIn: 'root'
|
|
945
|
+
}]
|
|
946
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
947
|
+
type: Optional
|
|
948
|
+
}, {
|
|
949
|
+
type: Inject,
|
|
950
|
+
args: [BASE_PATH]
|
|
951
|
+
}] }, { type: Configuration, decorators: [{
|
|
952
|
+
type: Optional
|
|
953
|
+
}] }] });
|
|
954
|
+
|
|
840
955
|
/**
|
|
841
956
|
* Wms.API.Client
|
|
842
957
|
*
|
|
@@ -5747,7 +5862,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
5747
5862
|
type: Optional
|
|
5748
5863
|
}] }] });
|
|
5749
5864
|
|
|
5750
|
-
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CartonDeliveryItemsService, 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];
|
|
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];
|
|
5866
|
+
|
|
5867
|
+
/**
|
|
5868
|
+
* Wms.API.Client
|
|
5869
|
+
*
|
|
5870
|
+
*
|
|
5871
|
+
*
|
|
5872
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5873
|
+
* https://openapi-generator.tech
|
|
5874
|
+
* Do not edit the class manually.
|
|
5875
|
+
*/
|
|
5751
5876
|
|
|
5752
5877
|
/**
|
|
5753
5878
|
* Wms.API.Client
|
|
@@ -6564,5 +6689,5 @@ function provideApi(configOrBasePath) {
|
|
|
6564
6689
|
* Generated bundle index. Do not edit.
|
|
6565
6690
|
*/
|
|
6566
6691
|
|
|
6567
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemsService, 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 };
|
|
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 };
|
|
6568
6693
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|