@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/index.d.ts CHANGED
@@ -754,6 +754,75 @@ declare class CartonDeliveryItemsService extends BaseService {
754
754
  static ɵprov: i0.ɵɵInjectableDeclaration<CartonDeliveryItemsService>;
755
755
  }
756
756
 
757
+ /**
758
+ * Wms.API.Client
759
+ *
760
+ *
761
+ *
762
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
763
+ * https://openapi-generator.tech
764
+ * Do not edit the class manually.
765
+ */
766
+ interface CartonMovementHistoryGridView {
767
+ id: string;
768
+ client: string;
769
+ number: number;
770
+ productCode: string;
771
+ fromLocation?: string;
772
+ fromLocationType?: string;
773
+ toLocation?: string;
774
+ toLocationType?: string;
775
+ createdDate: string;
776
+ createdByUser?: string;
777
+ }
778
+
779
+ /**
780
+ * Wms.API.Client
781
+ *
782
+ *
783
+ *
784
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
785
+ * https://openapi-generator.tech
786
+ * Do not edit the class manually.
787
+ */
788
+
789
+ interface CartonMovementHistories {
790
+ total: number;
791
+ data: Array<CartonMovementHistoryGridView>;
792
+ }
793
+
794
+ declare class CartonMovementHistoriesService extends BaseService {
795
+ protected httpClient: HttpClient;
796
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
797
+ /**
798
+ * Getting carton movement histories
799
+ * @param $skip
800
+ * @param $top
801
+ * @param $orderby
802
+ * @param $filter
803
+ * @param $search
804
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
805
+ * @param reportProgress flag to report request and response progress.
806
+ */
807
+ getCartonMovementHistories($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
808
+ httpHeaderAccept?: 'application/json';
809
+ context?: HttpContext;
810
+ transferCache?: boolean;
811
+ }): Observable<CartonMovementHistories>;
812
+ getCartonMovementHistories($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
813
+ httpHeaderAccept?: 'application/json';
814
+ context?: HttpContext;
815
+ transferCache?: boolean;
816
+ }): Observable<HttpResponse<CartonMovementHistories>>;
817
+ getCartonMovementHistories($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
818
+ httpHeaderAccept?: 'application/json';
819
+ context?: HttpContext;
820
+ transferCache?: boolean;
821
+ }): Observable<HttpEvent<CartonMovementHistories>>;
822
+ static ɵfac: i0.ɵɵFactoryDeclaration<CartonMovementHistoriesService, [null, { optional: true; }, { optional: true; }]>;
823
+ static ɵprov: i0.ɵɵInjectableDeclaration<CartonMovementHistoriesService>;
824
+ }
825
+
757
826
  /**
758
827
  * Wms.API.Client
759
828
  *
@@ -3725,6 +3794,31 @@ declare class ReplenishmentRecordsService extends BaseService {
3725
3794
  context?: HttpContext;
3726
3795
  transferCache?: boolean;
3727
3796
  }): Observable<HttpEvent<ReplenishmentRecords>>;
3797
+ /**
3798
+ * ReplenishmentRecords list
3799
+ * @param $skip
3800
+ * @param $top
3801
+ * @param $orderby
3802
+ * @param $filter
3803
+ * @param searchTerm
3804
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3805
+ * @param reportProgress flag to report request and response progress.
3806
+ */
3807
+ getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
3808
+ httpHeaderAccept?: 'application/json';
3809
+ context?: HttpContext;
3810
+ transferCache?: boolean;
3811
+ }): Observable<ReplenishmentRecords>;
3812
+ getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
3813
+ httpHeaderAccept?: 'application/json';
3814
+ context?: HttpContext;
3815
+ transferCache?: boolean;
3816
+ }): Observable<HttpResponse<ReplenishmentRecords>>;
3817
+ getReplenishmentRecordsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
3818
+ httpHeaderAccept?: 'application/json';
3819
+ context?: HttpContext;
3820
+ transferCache?: boolean;
3821
+ }): Observable<HttpEvent<ReplenishmentRecords>>;
3728
3822
  /**
3729
3823
  * Unallocate a replenishment record
3730
3824
  * @param id
@@ -5209,7 +5303,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
5209
5303
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
5210
5304
  }
5211
5305
 
5212
- declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
5306
+ declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
5213
5307
 
5214
5308
  /**
5215
5309
  * Wms.API.Client
@@ -5394,5 +5488,5 @@ declare class ApiModule {
5394
5488
 
5395
5489
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
5396
5490
 
5397
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
5398
- export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
5491
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
5492
+ export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.108",
3
+ "version": "0.0.110",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {