@indigina/wms-api 0.0.108 → 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 CHANGED
@@ -1,4 +1,4 @@
1
- # @indigina/wms-api@0.0.108
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.108 --save
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
  *
@@ -3856,6 +3930,47 @@ class ReplenishmentRecordsService extends BaseService {
3856
3930
  reportProgress: reportProgress
3857
3931
  });
3858
3932
  }
3933
+ getReplenishmentRecordsFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
3934
+ let localVarQueryParameters = new HttpParams({ encoder: this.encoder });
3935
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $skip, '$skip');
3936
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $top, '$top');
3937
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $orderby, '$orderby');
3938
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, $filter, '$filter');
3939
+ localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, searchTerm, 'searchTerm');
3940
+ let localVarHeaders = this.defaultHeaders;
3941
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
3942
+ 'application/json'
3943
+ ]);
3944
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
3945
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
3946
+ }
3947
+ const localVarHttpContext = options?.context ?? new HttpContext();
3948
+ const localVarTransferCache = options?.transferCache ?? true;
3949
+ let responseType_ = 'json';
3950
+ if (localVarHttpHeaderAcceptSelected) {
3951
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
3952
+ responseType_ = 'text';
3953
+ }
3954
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
3955
+ responseType_ = 'json';
3956
+ }
3957
+ else {
3958
+ responseType_ = 'blob';
3959
+ }
3960
+ }
3961
+ let localVarPath = `/replenishmentRecords/search`;
3962
+ const { basePath, withCredentials } = this.configuration;
3963
+ return this.httpClient.request('get', `${basePath}${localVarPath}`, {
3964
+ context: localVarHttpContext,
3965
+ params: localVarQueryParameters,
3966
+ responseType: responseType_,
3967
+ ...(withCredentials ? { withCredentials } : {}),
3968
+ headers: localVarHeaders,
3969
+ observe: observe,
3970
+ transferCache: localVarTransferCache,
3971
+ reportProgress: reportProgress
3972
+ });
3973
+ }
3859
3974
  unallocateReplenishmentRecord(id, observe = 'body', reportProgress = false, options) {
3860
3975
  if (id === null || id === undefined) {
3861
3976
  throw new Error('Required parameter id was null or undefined when calling unallocateReplenishmentRecord.');
@@ -5706,7 +5821,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImpor
5706
5821
  type: Optional
5707
5822
  }] }] });
5708
5823
 
5709
- 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
+ */
5710
5835
 
5711
5836
  /**
5712
5837
  * Wms.API.Client
@@ -6523,5 +6648,5 @@ function provideApi(configOrBasePath) {
6523
6648
  * Generated bundle index. Do not edit.
6524
6649
  */
6525
6650
 
6526
- 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 };
6527
6652
  //# sourceMappingURL=indigina-wms-api.mjs.map