@indigina/wms-api 0.0.109 → 0.0.110
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 +72 -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.110
|
|
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.110 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -837,6 +837,80 @@ 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
|
+
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
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonMovementHistoriesService, providedIn: 'root' });
|
|
899
|
+
}
|
|
900
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: CartonMovementHistoriesService, decorators: [{
|
|
901
|
+
type: Injectable,
|
|
902
|
+
args: [{
|
|
903
|
+
providedIn: 'root'
|
|
904
|
+
}]
|
|
905
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
906
|
+
type: Optional
|
|
907
|
+
}, {
|
|
908
|
+
type: Inject,
|
|
909
|
+
args: [BASE_PATH]
|
|
910
|
+
}] }, { type: Configuration, decorators: [{
|
|
911
|
+
type: Optional
|
|
912
|
+
}] }] });
|
|
913
|
+
|
|
840
914
|
/**
|
|
841
915
|
* Wms.API.Client
|
|
842
916
|
*
|
|
@@ -5747,7 +5821,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
|
|
|
5747
5821
|
type: Optional
|
|
5748
5822
|
}] }] });
|
|
5749
5823
|
|
|
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];
|
|
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];
|
|
5825
|
+
|
|
5826
|
+
/**
|
|
5827
|
+
* Wms.API.Client
|
|
5828
|
+
*
|
|
5829
|
+
*
|
|
5830
|
+
*
|
|
5831
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5832
|
+
* https://openapi-generator.tech
|
|
5833
|
+
* Do not edit the class manually.
|
|
5834
|
+
*/
|
|
5751
5835
|
|
|
5752
5836
|
/**
|
|
5753
5837
|
* Wms.API.Client
|
|
@@ -6564,5 +6648,5 @@ function provideApi(configOrBasePath) {
|
|
|
6564
6648
|
* Generated bundle index. Do not edit.
|
|
6565
6649
|
*/
|
|
6566
6650
|
|
|
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 };
|
|
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 };
|
|
6568
6652
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|