@indigina/wms-api 0.0.118 → 0.0.119
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 +67 -20
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +70 -30
package/package.json
CHANGED
|
@@ -3838,6 +3838,23 @@ interface ReplenishmentAccessClients {
|
|
|
3838
3838
|
data: Array<ReplenishmentAccessClient>;
|
|
3839
3839
|
}
|
|
3840
3840
|
|
|
3841
|
+
/**
|
|
3842
|
+
* Wms.API.Client
|
|
3843
|
+
*
|
|
3844
|
+
*
|
|
3845
|
+
*
|
|
3846
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3847
|
+
* https://openapi-generator.tech
|
|
3848
|
+
* Do not edit the class manually.
|
|
3849
|
+
*/
|
|
3850
|
+
interface ReplenishmentAccessView {
|
|
3851
|
+
id: string;
|
|
3852
|
+
client: string;
|
|
3853
|
+
systemReplenishment: boolean;
|
|
3854
|
+
createdDate: string;
|
|
3855
|
+
createdBy: string;
|
|
3856
|
+
}
|
|
3857
|
+
|
|
3841
3858
|
/**
|
|
3842
3859
|
* Wms.API.Client
|
|
3843
3860
|
*
|
|
@@ -3871,58 +3888,81 @@ interface ReplenishmentAccesses {
|
|
|
3871
3888
|
data: Array<ReplenishmentAccessGridView>;
|
|
3872
3889
|
}
|
|
3873
3890
|
|
|
3874
|
-
declare class
|
|
3891
|
+
declare class ReplenishmentAccessesService extends BaseService {
|
|
3875
3892
|
protected httpClient: HttpClient;
|
|
3876
3893
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3877
3894
|
/**
|
|
3878
3895
|
* Create a specific replenishment access
|
|
3879
|
-
* @endpoint post /
|
|
3896
|
+
* @endpoint post /replenishmentAccesses
|
|
3880
3897
|
* @param replenishmentAccess
|
|
3881
3898
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3882
3899
|
* @param reportProgress flag to report request and response progress.
|
|
3883
3900
|
* @param options additional options
|
|
3884
3901
|
*/
|
|
3885
|
-
|
|
3902
|
+
createReplenishmentAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3886
3903
|
httpHeaderAccept?: 'application/json';
|
|
3887
3904
|
context?: HttpContext;
|
|
3888
3905
|
transferCache?: boolean;
|
|
3889
3906
|
}): Observable<ReplenishmentAccess>;
|
|
3890
|
-
|
|
3907
|
+
createReplenishmentAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3891
3908
|
httpHeaderAccept?: 'application/json';
|
|
3892
3909
|
context?: HttpContext;
|
|
3893
3910
|
transferCache?: boolean;
|
|
3894
3911
|
}): Observable<HttpResponse<ReplenishmentAccess>>;
|
|
3895
|
-
|
|
3912
|
+
createReplenishmentAccess(replenishmentAccess: ReplenishmentAccess, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3896
3913
|
httpHeaderAccept?: 'application/json';
|
|
3897
3914
|
context?: HttpContext;
|
|
3898
3915
|
transferCache?: boolean;
|
|
3899
3916
|
}): Observable<HttpEvent<ReplenishmentAccess>>;
|
|
3900
3917
|
/**
|
|
3901
|
-
* Delete a replenishment access
|
|
3902
|
-
* @endpoint delete /
|
|
3918
|
+
* Delete a replenishment access by Id
|
|
3919
|
+
* @endpoint delete /replenishmentAccesses/{id}
|
|
3903
3920
|
* @param id
|
|
3904
3921
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3905
3922
|
* @param reportProgress flag to report request and response progress.
|
|
3906
3923
|
* @param options additional options
|
|
3907
3924
|
*/
|
|
3908
|
-
|
|
3925
|
+
deleteReplenishmentAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3909
3926
|
httpHeaderAccept?: 'application/json';
|
|
3910
3927
|
context?: HttpContext;
|
|
3911
3928
|
transferCache?: boolean;
|
|
3912
3929
|
}): Observable<any>;
|
|
3913
|
-
|
|
3930
|
+
deleteReplenishmentAccess(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3914
3931
|
httpHeaderAccept?: 'application/json';
|
|
3915
3932
|
context?: HttpContext;
|
|
3916
3933
|
transferCache?: boolean;
|
|
3917
3934
|
}): Observable<HttpResponse<any>>;
|
|
3918
|
-
|
|
3935
|
+
deleteReplenishmentAccess(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3919
3936
|
httpHeaderAccept?: 'application/json';
|
|
3920
3937
|
context?: HttpContext;
|
|
3921
3938
|
transferCache?: boolean;
|
|
3922
3939
|
}): Observable<HttpEvent<any>>;
|
|
3923
3940
|
/**
|
|
3924
|
-
* Get
|
|
3925
|
-
* @endpoint get /
|
|
3941
|
+
* Get an existing replenishment access by Id
|
|
3942
|
+
* @endpoint get /replenishmentAccesses/{id}
|
|
3943
|
+
* @param id
|
|
3944
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3945
|
+
* @param reportProgress flag to report request and response progress.
|
|
3946
|
+
* @param options additional options
|
|
3947
|
+
*/
|
|
3948
|
+
getReplenishmentAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3949
|
+
httpHeaderAccept?: 'application/json';
|
|
3950
|
+
context?: HttpContext;
|
|
3951
|
+
transferCache?: boolean;
|
|
3952
|
+
}): Observable<ReplenishmentAccessView>;
|
|
3953
|
+
getReplenishmentAccess(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3954
|
+
httpHeaderAccept?: 'application/json';
|
|
3955
|
+
context?: HttpContext;
|
|
3956
|
+
transferCache?: boolean;
|
|
3957
|
+
}): Observable<HttpResponse<ReplenishmentAccessView>>;
|
|
3958
|
+
getReplenishmentAccess(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3959
|
+
httpHeaderAccept?: 'application/json';
|
|
3960
|
+
context?: HttpContext;
|
|
3961
|
+
transferCache?: boolean;
|
|
3962
|
+
}): Observable<HttpEvent<ReplenishmentAccessView>>;
|
|
3963
|
+
/**
|
|
3964
|
+
* Get list of replenishment access clients
|
|
3965
|
+
* @endpoint get /replenishmentAccesses/clients
|
|
3926
3966
|
* @param $skip
|
|
3927
3967
|
* @param $top
|
|
3928
3968
|
* @param $orderby
|
|
@@ -3932,24 +3972,24 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3932
3972
|
* @param reportProgress flag to report request and response progress.
|
|
3933
3973
|
* @param options additional options
|
|
3934
3974
|
*/
|
|
3935
|
-
|
|
3975
|
+
getReplenishmentAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3936
3976
|
httpHeaderAccept?: 'application/json';
|
|
3937
3977
|
context?: HttpContext;
|
|
3938
3978
|
transferCache?: boolean;
|
|
3939
3979
|
}): Observable<ReplenishmentAccessClients>;
|
|
3940
|
-
|
|
3980
|
+
getReplenishmentAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3941
3981
|
httpHeaderAccept?: 'application/json';
|
|
3942
3982
|
context?: HttpContext;
|
|
3943
3983
|
transferCache?: boolean;
|
|
3944
3984
|
}): Observable<HttpResponse<ReplenishmentAccessClients>>;
|
|
3945
|
-
|
|
3985
|
+
getReplenishmentAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3946
3986
|
httpHeaderAccept?: 'application/json';
|
|
3947
3987
|
context?: HttpContext;
|
|
3948
3988
|
transferCache?: boolean;
|
|
3949
3989
|
}): Observable<HttpEvent<ReplenishmentAccessClients>>;
|
|
3950
3990
|
/**
|
|
3951
|
-
* Getting replenishment
|
|
3952
|
-
* @endpoint get /
|
|
3991
|
+
* Getting replenishment accesses
|
|
3992
|
+
* @endpoint get /replenishmentAccesses
|
|
3953
3993
|
* @param $skip
|
|
3954
3994
|
* @param $top
|
|
3955
3995
|
* @param $orderby
|
|
@@ -3959,24 +3999,24 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3959
3999
|
* @param reportProgress flag to report request and response progress.
|
|
3960
4000
|
* @param options additional options
|
|
3961
4001
|
*/
|
|
3962
|
-
|
|
4002
|
+
getReplenishmentAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3963
4003
|
httpHeaderAccept?: 'application/json';
|
|
3964
4004
|
context?: HttpContext;
|
|
3965
4005
|
transferCache?: boolean;
|
|
3966
4006
|
}): Observable<ReplenishmentAccesses>;
|
|
3967
|
-
|
|
4007
|
+
getReplenishmentAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3968
4008
|
httpHeaderAccept?: 'application/json';
|
|
3969
4009
|
context?: HttpContext;
|
|
3970
4010
|
transferCache?: boolean;
|
|
3971
4011
|
}): Observable<HttpResponse<ReplenishmentAccesses>>;
|
|
3972
|
-
|
|
4012
|
+
getReplenishmentAccesses($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3973
4013
|
httpHeaderAccept?: 'application/json';
|
|
3974
4014
|
context?: HttpContext;
|
|
3975
4015
|
transferCache?: boolean;
|
|
3976
4016
|
}): Observable<HttpEvent<ReplenishmentAccesses>>;
|
|
3977
4017
|
/**
|
|
3978
|
-
* Update an existing replenishment access
|
|
3979
|
-
* @endpoint put /
|
|
4018
|
+
* Update an existing replenishment access by Id
|
|
4019
|
+
* @endpoint put /replenishmentAccesses/{id}
|
|
3980
4020
|
* @param id
|
|
3981
4021
|
* @param replenishmentAccess
|
|
3982
4022
|
* @param propertiesToUpdate Array of property names to update
|
|
@@ -3984,23 +4024,23 @@ declare class ReplenishmentService extends BaseService {
|
|
|
3984
4024
|
* @param reportProgress flag to report request and response progress.
|
|
3985
4025
|
* @param options additional options
|
|
3986
4026
|
*/
|
|
3987
|
-
|
|
4027
|
+
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3988
4028
|
httpHeaderAccept?: 'application/json';
|
|
3989
4029
|
context?: HttpContext;
|
|
3990
4030
|
transferCache?: boolean;
|
|
3991
4031
|
}): Observable<ReplenishmentAccess>;
|
|
3992
|
-
|
|
4032
|
+
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3993
4033
|
httpHeaderAccept?: 'application/json';
|
|
3994
4034
|
context?: HttpContext;
|
|
3995
4035
|
transferCache?: boolean;
|
|
3996
4036
|
}): Observable<HttpResponse<ReplenishmentAccess>>;
|
|
3997
|
-
|
|
4037
|
+
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, propertiesToUpdate?: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3998
4038
|
httpHeaderAccept?: 'application/json';
|
|
3999
4039
|
context?: HttpContext;
|
|
4000
4040
|
transferCache?: boolean;
|
|
4001
4041
|
}): Observable<HttpEvent<ReplenishmentAccess>>;
|
|
4002
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
4003
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
4042
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentAccessesService, [null, { optional: true; }, { optional: true; }]>;
|
|
4043
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentAccessesService>;
|
|
4004
4044
|
}
|
|
4005
4045
|
|
|
4006
4046
|
/**
|
|
@@ -5761,7 +5801,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
5761
5801
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
5762
5802
|
}
|
|
5763
5803
|
|
|
5764
|
-
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 ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof
|
|
5804
|
+
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 ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessesService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
|
|
5765
5805
|
|
|
5766
5806
|
/**
|
|
5767
5807
|
* Wms.API.Client
|
|
@@ -5946,5 +5986,5 @@ declare class ApiModule {
|
|
|
5946
5986
|
|
|
5947
5987
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
5948
5988
|
|
|
5949
|
-
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, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentRecordGridView, ReplenishmentRecordsService,
|
|
5950
|
-
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, 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 };
|
|
5989
|
+
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, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordGridView, ReplenishmentRecordsService, 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 };
|
|
5990
|
+
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, Param, ParamLocation, ParamStyle, Picks, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
|