@indigina/wms-api 0.0.110 → 0.0.112
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 +103 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -819,10 +819,110 @@ declare class CartonMovementHistoriesService extends BaseService {
|
|
|
819
819
|
context?: HttpContext;
|
|
820
820
|
transferCache?: boolean;
|
|
821
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>>;
|
|
822
847
|
static ɵfac: i0.ɵɵFactoryDeclaration<CartonMovementHistoriesService, [null, { optional: true; }, { optional: true; }]>;
|
|
823
848
|
static ɵprov: i0.ɵɵInjectableDeclaration<CartonMovementHistoriesService>;
|
|
824
849
|
}
|
|
825
850
|
|
|
851
|
+
/**
|
|
852
|
+
* Wms.API.Client
|
|
853
|
+
*
|
|
854
|
+
*
|
|
855
|
+
*
|
|
856
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
857
|
+
* https://openapi-generator.tech
|
|
858
|
+
* Do not edit the class manually.
|
|
859
|
+
*/
|
|
860
|
+
interface CartonPickGridView {
|
|
861
|
+
id?: string;
|
|
862
|
+
clientId: string;
|
|
863
|
+
clientDescription: string;
|
|
864
|
+
number: number;
|
|
865
|
+
fullLocationPath?: string;
|
|
866
|
+
salesOrderNumberList?: string;
|
|
867
|
+
productCode: string;
|
|
868
|
+
productDescription?: string;
|
|
869
|
+
dispatchNumber?: string;
|
|
870
|
+
shipToCompanyDescription?: string;
|
|
871
|
+
lineNo?: number;
|
|
872
|
+
pickedQuantity: number;
|
|
873
|
+
createdDate: string;
|
|
874
|
+
bestBeforeDate?: string | null;
|
|
875
|
+
lotNo?: string;
|
|
876
|
+
createdByUser?: string;
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
/**
|
|
880
|
+
* Wms.API.Client
|
|
881
|
+
*
|
|
882
|
+
*
|
|
883
|
+
*
|
|
884
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
885
|
+
* https://openapi-generator.tech
|
|
886
|
+
* Do not edit the class manually.
|
|
887
|
+
*/
|
|
888
|
+
|
|
889
|
+
interface Picks {
|
|
890
|
+
total: number;
|
|
891
|
+
data: Array<CartonPickGridView>;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
declare class CartonPicksService extends BaseService {
|
|
895
|
+
protected httpClient: HttpClient;
|
|
896
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
897
|
+
/**
|
|
898
|
+
* Getting carton picks
|
|
899
|
+
* @param $skip
|
|
900
|
+
* @param $top
|
|
901
|
+
* @param $orderby
|
|
902
|
+
* @param $filter
|
|
903
|
+
* @param $search
|
|
904
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
905
|
+
* @param reportProgress flag to report request and response progress.
|
|
906
|
+
*/
|
|
907
|
+
getCartonPicks($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
908
|
+
httpHeaderAccept?: 'application/json';
|
|
909
|
+
context?: HttpContext;
|
|
910
|
+
transferCache?: boolean;
|
|
911
|
+
}): Observable<Picks>;
|
|
912
|
+
getCartonPicks($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
913
|
+
httpHeaderAccept?: 'application/json';
|
|
914
|
+
context?: HttpContext;
|
|
915
|
+
transferCache?: boolean;
|
|
916
|
+
}): Observable<HttpResponse<Picks>>;
|
|
917
|
+
getCartonPicks($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
918
|
+
httpHeaderAccept?: 'application/json';
|
|
919
|
+
context?: HttpContext;
|
|
920
|
+
transferCache?: boolean;
|
|
921
|
+
}): Observable<HttpEvent<Picks>>;
|
|
922
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CartonPicksService, [null, { optional: true; }, { optional: true; }]>;
|
|
923
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CartonPicksService>;
|
|
924
|
+
}
|
|
925
|
+
|
|
826
926
|
/**
|
|
827
927
|
* Wms.API.Client
|
|
828
928
|
*
|
|
@@ -5303,7 +5403,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
5303
5403
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
5304
5404
|
}
|
|
5305
5405
|
|
|
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)[];
|
|
5406
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | 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)[];
|
|
5307
5407
|
|
|
5308
5408
|
/**
|
|
5309
5409
|
* Wms.API.Client
|
|
@@ -5488,5 +5588,5 @@ declare class ApiModule {
|
|
|
5488
5588
|
|
|
5489
5589
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
5490
5590
|
|
|
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 };
|
|
5591
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, 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 };
|
|
5592
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, 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, Picks, 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 };
|