@indigina/wms-api 0.0.128 → 0.0.130
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 +102 -16
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +69 -24
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,10 +4005,10 @@ interface ReplenishmentAccessGridView {
|
|
|
4022
4005
|
|
|
4023
4006
|
interface ReplenishmentAccesses {
|
|
4024
4007
|
total: number;
|
|
4025
|
-
data: Array<
|
|
4008
|
+
data: Array<ReplenishmentAccessView>;
|
|
4026
4009
|
}
|
|
4027
4010
|
|
|
4028
|
-
declare class
|
|
4011
|
+
declare class ReplenishmentAccessService extends BaseService {
|
|
4029
4012
|
protected httpClient: HttpClient;
|
|
4030
4013
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4031
4014
|
/**
|
|
@@ -4175,8 +4158,8 @@ declare class ReplenishmentAccessesService extends BaseService {
|
|
|
4175
4158
|
context?: HttpContext;
|
|
4176
4159
|
transferCache?: boolean;
|
|
4177
4160
|
}): Observable<HttpEvent<ReplenishmentAccess>>;
|
|
4178
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
4179
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
4161
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentAccessService, [null, { optional: true; }, { optional: true; }]>;
|
|
4162
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentAccessService>;
|
|
4180
4163
|
}
|
|
4181
4164
|
|
|
4182
4165
|
/**
|
|
@@ -5941,6 +5924,21 @@ declare class WavePickReleasesService extends BaseService {
|
|
|
5941
5924
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickReleasesService>;
|
|
5942
5925
|
}
|
|
5943
5926
|
|
|
5927
|
+
/**
|
|
5928
|
+
* Wms.API.Client
|
|
5929
|
+
*
|
|
5930
|
+
*
|
|
5931
|
+
*
|
|
5932
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5933
|
+
* https://openapi-generator.tech
|
|
5934
|
+
* Do not edit the class manually.
|
|
5935
|
+
*/
|
|
5936
|
+
interface WavePickingAccess {
|
|
5937
|
+
id: string;
|
|
5938
|
+
clientId: string;
|
|
5939
|
+
pickByLicencePlate: boolean;
|
|
5940
|
+
}
|
|
5941
|
+
|
|
5944
5942
|
/**
|
|
5945
5943
|
* Wms.API.Client
|
|
5946
5944
|
*
|
|
@@ -6002,6 +6000,29 @@ declare class WavePickingAccessService extends BaseService {
|
|
|
6002
6000
|
context?: HttpContext;
|
|
6003
6001
|
transferCache?: boolean;
|
|
6004
6002
|
}): Observable<HttpEvent<any>>;
|
|
6003
|
+
/**
|
|
6004
|
+
* Get a wave picking access record by Id
|
|
6005
|
+
* @endpoint get /wavePickingAccesses/{id}
|
|
6006
|
+
* @param id
|
|
6007
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6008
|
+
* @param reportProgress flag to report request and response progress.
|
|
6009
|
+
* @param options additional options
|
|
6010
|
+
*/
|
|
6011
|
+
getWavePickingAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6012
|
+
httpHeaderAccept?: 'application/json';
|
|
6013
|
+
context?: HttpContext;
|
|
6014
|
+
transferCache?: boolean;
|
|
6015
|
+
}): Observable<WavePickingAccessView>;
|
|
6016
|
+
getWavePickingAccess(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6017
|
+
httpHeaderAccept?: 'application/json';
|
|
6018
|
+
context?: HttpContext;
|
|
6019
|
+
transferCache?: boolean;
|
|
6020
|
+
}): Observable<HttpResponse<WavePickingAccessView>>;
|
|
6021
|
+
getWavePickingAccess(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6022
|
+
httpHeaderAccept?: 'application/json';
|
|
6023
|
+
context?: HttpContext;
|
|
6024
|
+
transferCache?: boolean;
|
|
6025
|
+
}): Observable<HttpEvent<WavePickingAccessView>>;
|
|
6005
6026
|
/**
|
|
6006
6027
|
* Getting wave picking access list
|
|
6007
6028
|
* @endpoint get /wavePickingAccesses
|
|
@@ -6029,6 +6050,30 @@ declare class WavePickingAccessService extends BaseService {
|
|
|
6029
6050
|
context?: HttpContext;
|
|
6030
6051
|
transferCache?: boolean;
|
|
6031
6052
|
}): Observable<HttpEvent<WavePickingAccesses>>;
|
|
6053
|
+
/**
|
|
6054
|
+
* Update a wave picking access record
|
|
6055
|
+
* @endpoint put /wavePickingAccesses/{id}
|
|
6056
|
+
* @param id
|
|
6057
|
+
* @param wavePickingAccess
|
|
6058
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6059
|
+
* @param reportProgress flag to report request and response progress.
|
|
6060
|
+
* @param options additional options
|
|
6061
|
+
*/
|
|
6062
|
+
updateWavePickingAccess(id: string, wavePickingAccess: WavePickingAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6063
|
+
httpHeaderAccept?: 'application/json';
|
|
6064
|
+
context?: HttpContext;
|
|
6065
|
+
transferCache?: boolean;
|
|
6066
|
+
}): Observable<WavePickingAccess>;
|
|
6067
|
+
updateWavePickingAccess(id: string, wavePickingAccess: WavePickingAccess, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6068
|
+
httpHeaderAccept?: 'application/json';
|
|
6069
|
+
context?: HttpContext;
|
|
6070
|
+
transferCache?: boolean;
|
|
6071
|
+
}): Observable<HttpResponse<WavePickingAccess>>;
|
|
6072
|
+
updateWavePickingAccess(id: string, wavePickingAccess: WavePickingAccess, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6073
|
+
httpHeaderAccept?: 'application/json';
|
|
6074
|
+
context?: HttpContext;
|
|
6075
|
+
transferCache?: boolean;
|
|
6076
|
+
}): Observable<HttpEvent<WavePickingAccess>>;
|
|
6032
6077
|
static ɵfac: i0.ɵɵFactoryDeclaration<WavePickingAccessService, [null, { optional: true; }, { optional: true; }]>;
|
|
6033
6078
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickingAccessService>;
|
|
6034
6079
|
}
|
|
@@ -6128,7 +6173,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
6128
6173
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
6129
6174
|
}
|
|
6130
6175
|
|
|
6131
|
-
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 PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof
|
|
6176
|
+
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 PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserPrintersService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
|
|
6132
6177
|
|
|
6133
6178
|
/**
|
|
6134
6179
|
* Wms.API.Client
|
|
@@ -6346,5 +6391,5 @@ declare class ApiModule {
|
|
|
6346
6391
|
|
|
6347
6392
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
6348
6393
|
|
|
6349
|
-
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,
|
|
6350
|
-
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,
|
|
6394
|
+
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 };
|