@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/index.d.ts
CHANGED
|
@@ -754,6 +754,100 @@ 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
|
+
/**
|
|
823
|
+
* CartonMovementHistories list
|
|
824
|
+
* @param $skip
|
|
825
|
+
* @param $top
|
|
826
|
+
* @param $orderby
|
|
827
|
+
* @param $filter
|
|
828
|
+
* @param searchTerm
|
|
829
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
830
|
+
* @param reportProgress flag to report request and response progress.
|
|
831
|
+
*/
|
|
832
|
+
getCartonMovementHistoriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
833
|
+
httpHeaderAccept?: 'application/json';
|
|
834
|
+
context?: HttpContext;
|
|
835
|
+
transferCache?: boolean;
|
|
836
|
+
}): Observable<CartonMovementHistories>;
|
|
837
|
+
getCartonMovementHistoriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
838
|
+
httpHeaderAccept?: 'application/json';
|
|
839
|
+
context?: HttpContext;
|
|
840
|
+
transferCache?: boolean;
|
|
841
|
+
}): Observable<HttpResponse<CartonMovementHistories>>;
|
|
842
|
+
getCartonMovementHistoriesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
843
|
+
httpHeaderAccept?: 'application/json';
|
|
844
|
+
context?: HttpContext;
|
|
845
|
+
transferCache?: boolean;
|
|
846
|
+
}): Observable<HttpEvent<CartonMovementHistories>>;
|
|
847
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CartonMovementHistoriesService, [null, { optional: true; }, { optional: true; }]>;
|
|
848
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CartonMovementHistoriesService>;
|
|
849
|
+
}
|
|
850
|
+
|
|
757
851
|
/**
|
|
758
852
|
* Wms.API.Client
|
|
759
853
|
*
|
|
@@ -5234,7 +5328,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
5234
5328
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
5235
5329
|
}
|
|
5236
5330
|
|
|
5237
|
-
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)[];
|
|
5331
|
+
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)[];
|
|
5238
5332
|
|
|
5239
5333
|
/**
|
|
5240
5334
|
* Wms.API.Client
|
|
@@ -5419,5 +5513,5 @@ declare class ApiModule {
|
|
|
5419
5513
|
|
|
5420
5514
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
5421
5515
|
|
|
5422
|
-
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 };
|
|
5423
|
-
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 };
|
|
5516
|
+
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 };
|
|
5517
|
+
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 };
|