@indigina/wms-api 0.0.129 → 0.0.131
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 +97 -10
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +80 -19
package/package.json
CHANGED
|
@@ -3985,23 +3985,6 @@ interface ReplenishmentAccessClients {
|
|
|
3985
3985
|
* Do not edit the class manually.
|
|
3986
3986
|
*/
|
|
3987
3987
|
interface ReplenishmentAccessView {
|
|
3988
|
-
id: string;
|
|
3989
|
-
client: string;
|
|
3990
|
-
systemReplenishment: boolean;
|
|
3991
|
-
createdDate: string;
|
|
3992
|
-
createdBy: string;
|
|
3993
|
-
}
|
|
3994
|
-
|
|
3995
|
-
/**
|
|
3996
|
-
* Wms.API.Client
|
|
3997
|
-
*
|
|
3998
|
-
*
|
|
3999
|
-
*
|
|
4000
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4001
|
-
* https://openapi-generator.tech
|
|
4002
|
-
* Do not edit the class manually.
|
|
4003
|
-
*/
|
|
4004
|
-
interface ReplenishmentAccessGridView {
|
|
4005
3988
|
id: string;
|
|
4006
3989
|
clientId: string;
|
|
4007
3990
|
client: string;
|
|
@@ -4022,7 +4005,7 @@ interface ReplenishmentAccessGridView {
|
|
|
4022
4005
|
|
|
4023
4006
|
interface ReplenishmentAccesses {
|
|
4024
4007
|
total: number;
|
|
4025
|
-
data: Array<
|
|
4008
|
+
data: Array<ReplenishmentAccessView>;
|
|
4026
4009
|
}
|
|
4027
4010
|
|
|
4028
4011
|
declare class ReplenishmentAccessService extends BaseService {
|
|
@@ -5956,6 +5939,34 @@ interface WavePickingAccess {
|
|
|
5956
5939
|
pickByLicencePlate: boolean;
|
|
5957
5940
|
}
|
|
5958
5941
|
|
|
5942
|
+
/**
|
|
5943
|
+
* Wms.API.Client
|
|
5944
|
+
*
|
|
5945
|
+
*
|
|
5946
|
+
*
|
|
5947
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5948
|
+
* https://openapi-generator.tech
|
|
5949
|
+
* Do not edit the class manually.
|
|
5950
|
+
*/
|
|
5951
|
+
interface WavePickingAccessClient {
|
|
5952
|
+
clientId: string;
|
|
5953
|
+
}
|
|
5954
|
+
|
|
5955
|
+
/**
|
|
5956
|
+
* Wms.API.Client
|
|
5957
|
+
*
|
|
5958
|
+
*
|
|
5959
|
+
*
|
|
5960
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5961
|
+
* https://openapi-generator.tech
|
|
5962
|
+
* Do not edit the class manually.
|
|
5963
|
+
*/
|
|
5964
|
+
|
|
5965
|
+
interface WavePickingAccessClients {
|
|
5966
|
+
total: number;
|
|
5967
|
+
data: Array<WavePickingAccessClient>;
|
|
5968
|
+
}
|
|
5969
|
+
|
|
5959
5970
|
/**
|
|
5960
5971
|
* Wms.API.Client
|
|
5961
5972
|
*
|
|
@@ -5994,6 +6005,29 @@ interface WavePickingAccesses {
|
|
|
5994
6005
|
declare class WavePickingAccessService extends BaseService {
|
|
5995
6006
|
protected httpClient: HttpClient;
|
|
5996
6007
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
6008
|
+
/**
|
|
6009
|
+
* Create a wave picking access record
|
|
6010
|
+
* @endpoint post /wavePickingAccesses
|
|
6011
|
+
* @param wavePickingAccess
|
|
6012
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6013
|
+
* @param reportProgress flag to report request and response progress.
|
|
6014
|
+
* @param options additional options
|
|
6015
|
+
*/
|
|
6016
|
+
createWavePickingAccess(wavePickingAccess: WavePickingAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6017
|
+
httpHeaderAccept?: 'application/json';
|
|
6018
|
+
context?: HttpContext;
|
|
6019
|
+
transferCache?: boolean;
|
|
6020
|
+
}): Observable<WavePickingAccess>;
|
|
6021
|
+
createWavePickingAccess(wavePickingAccess: WavePickingAccess, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6022
|
+
httpHeaderAccept?: 'application/json';
|
|
6023
|
+
context?: HttpContext;
|
|
6024
|
+
transferCache?: boolean;
|
|
6025
|
+
}): Observable<HttpResponse<WavePickingAccess>>;
|
|
6026
|
+
createWavePickingAccess(wavePickingAccess: WavePickingAccess, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6027
|
+
httpHeaderAccept?: 'application/json';
|
|
6028
|
+
context?: HttpContext;
|
|
6029
|
+
transferCache?: boolean;
|
|
6030
|
+
}): Observable<HttpEvent<WavePickingAccess>>;
|
|
5997
6031
|
/**
|
|
5998
6032
|
* Delete a wave picking access record
|
|
5999
6033
|
* @endpoint delete /wavePickingAccesses/{id}
|
|
@@ -6040,6 +6074,33 @@ declare class WavePickingAccessService extends BaseService {
|
|
|
6040
6074
|
context?: HttpContext;
|
|
6041
6075
|
transferCache?: boolean;
|
|
6042
6076
|
}): Observable<HttpEvent<WavePickingAccessView>>;
|
|
6077
|
+
/**
|
|
6078
|
+
* Get list of wave picking access clients
|
|
6079
|
+
* @endpoint get /wavePickingAccesses/clients
|
|
6080
|
+
* @param $skip
|
|
6081
|
+
* @param $top
|
|
6082
|
+
* @param $orderby
|
|
6083
|
+
* @param $filter
|
|
6084
|
+
* @param $search
|
|
6085
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6086
|
+
* @param reportProgress flag to report request and response progress.
|
|
6087
|
+
* @param options additional options
|
|
6088
|
+
*/
|
|
6089
|
+
getWavePickingAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6090
|
+
httpHeaderAccept?: 'application/json';
|
|
6091
|
+
context?: HttpContext;
|
|
6092
|
+
transferCache?: boolean;
|
|
6093
|
+
}): Observable<WavePickingAccessClients>;
|
|
6094
|
+
getWavePickingAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6095
|
+
httpHeaderAccept?: 'application/json';
|
|
6096
|
+
context?: HttpContext;
|
|
6097
|
+
transferCache?: boolean;
|
|
6098
|
+
}): Observable<HttpResponse<WavePickingAccessClients>>;
|
|
6099
|
+
getWavePickingAccessClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6100
|
+
httpHeaderAccept?: 'application/json';
|
|
6101
|
+
context?: HttpContext;
|
|
6102
|
+
transferCache?: boolean;
|
|
6103
|
+
}): Observable<HttpEvent<WavePickingAccessClients>>;
|
|
6043
6104
|
/**
|
|
6044
6105
|
* Getting wave picking access list
|
|
6045
6106
|
* @endpoint get /wavePickingAccesses
|
|
@@ -6409,4 +6470,4 @@ declare class ApiModule {
|
|
|
6409
6470
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
6410
6471
|
|
|
6411
6472
|
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, 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, PrintTypes, Printer, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinter, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
6412
|
-
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, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients,
|
|
6473
|
+
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, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|