@indigina/wms-api 0.0.130 → 0.0.132
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/package.json
CHANGED
|
@@ -5119,7 +5119,7 @@ interface TaskUserRecordView {
|
|
|
5119
5119
|
startedDate?: string;
|
|
5120
5120
|
startedDeviceType: DeviceType;
|
|
5121
5121
|
finishedUserId?: string | null;
|
|
5122
|
-
finishedUserName?: string;
|
|
5122
|
+
finishedUserName?: string | null;
|
|
5123
5123
|
finishedDate?: string | null;
|
|
5124
5124
|
finishedDeviceType?: DeviceType;
|
|
5125
5125
|
}
|
|
@@ -5939,6 +5939,34 @@ interface WavePickingAccess {
|
|
|
5939
5939
|
pickByLicencePlate: boolean;
|
|
5940
5940
|
}
|
|
5941
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
|
+
|
|
5942
5970
|
/**
|
|
5943
5971
|
* Wms.API.Client
|
|
5944
5972
|
*
|
|
@@ -5977,6 +6005,29 @@ interface WavePickingAccesses {
|
|
|
5977
6005
|
declare class WavePickingAccessService extends BaseService {
|
|
5978
6006
|
protected httpClient: HttpClient;
|
|
5979
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>>;
|
|
5980
6031
|
/**
|
|
5981
6032
|
* Delete a wave picking access record
|
|
5982
6033
|
* @endpoint delete /wavePickingAccesses/{id}
|
|
@@ -6023,6 +6074,33 @@ declare class WavePickingAccessService extends BaseService {
|
|
|
6023
6074
|
context?: HttpContext;
|
|
6024
6075
|
transferCache?: boolean;
|
|
6025
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>>;
|
|
6026
6104
|
/**
|
|
6027
6105
|
* Getting wave picking access list
|
|
6028
6106
|
* @endpoint get /wavePickingAccesses
|
|
@@ -6392,4 +6470,4 @@ declare class ApiModule {
|
|
|
6392
6470
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
6393
6471
|
|
|
6394
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 };
|
|
6395
|
-
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, WavePickingAccessView, WavePickingAccesses, Waves };
|
|
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 };
|