@indigina/wms-api 0.0.127 → 0.0.129
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 -6
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +83 -23
package/package.json
CHANGED
|
@@ -1791,28 +1791,26 @@ declare namespace Delivery {
|
|
|
1791
1791
|
*/
|
|
1792
1792
|
|
|
1793
1793
|
interface DeliveryCreateModel {
|
|
1794
|
-
useDirectivePutAway
|
|
1794
|
+
useDirectivePutAway?: boolean;
|
|
1795
1795
|
hbRef: string;
|
|
1796
1796
|
asnDate: string;
|
|
1797
1797
|
warehouseEtaDate: string;
|
|
1798
1798
|
deliveryType: DeliveryType;
|
|
1799
1799
|
deliveryStatus: OrderStatus;
|
|
1800
1800
|
qcType?: QcType;
|
|
1801
|
-
qcRequired
|
|
1802
|
-
createdDate
|
|
1801
|
+
qcRequired?: boolean;
|
|
1802
|
+
createdDate?: string;
|
|
1803
1803
|
arrivedDate?: string | null;
|
|
1804
1804
|
receivingStartDate?: string | null;
|
|
1805
1805
|
confirmedDate?: string | null;
|
|
1806
1806
|
recordType: RecordType;
|
|
1807
1807
|
receiptReasonId?: string | null;
|
|
1808
1808
|
supplierCompliance?: boolean | null;
|
|
1809
|
-
directivePutAwayComplete
|
|
1809
|
+
directivePutAwayComplete?: boolean;
|
|
1810
1810
|
isStockAdjustment?: boolean | null;
|
|
1811
|
-
createdFromShortReceipt
|
|
1811
|
+
createdFromShortReceipt?: boolean;
|
|
1812
1812
|
customerCompanyId: string;
|
|
1813
1813
|
supplierCompanyId: string;
|
|
1814
|
-
ownerCompanyId?: string | null;
|
|
1815
|
-
deliveryNumber?: string | null;
|
|
1816
1814
|
dcId: string;
|
|
1817
1815
|
}
|
|
1818
1816
|
declare namespace DeliveryCreateModel {
|
|
@@ -1863,24 +1861,24 @@ declare namespace DeliverySummary {
|
|
|
1863
1861
|
*/
|
|
1864
1862
|
|
|
1865
1863
|
interface DeliveryUpdateModel {
|
|
1866
|
-
useDirectivePutAway
|
|
1864
|
+
useDirectivePutAway?: boolean;
|
|
1867
1865
|
hbRef: string;
|
|
1868
1866
|
asnDate: string;
|
|
1869
1867
|
warehouseEtaDate: string;
|
|
1870
1868
|
deliveryType: DeliveryType;
|
|
1871
1869
|
deliveryStatus: OrderStatus;
|
|
1872
1870
|
qcType?: QcType;
|
|
1873
|
-
qcRequired
|
|
1874
|
-
createdDate
|
|
1871
|
+
qcRequired?: boolean;
|
|
1872
|
+
createdDate?: string;
|
|
1875
1873
|
arrivedDate?: string | null;
|
|
1876
1874
|
receivingStartDate?: string | null;
|
|
1877
1875
|
confirmedDate?: string | null;
|
|
1878
1876
|
recordType: RecordType;
|
|
1879
1877
|
receiptReasonId?: string | null;
|
|
1880
1878
|
supplierCompliance?: boolean | null;
|
|
1881
|
-
directivePutAwayComplete
|
|
1879
|
+
directivePutAwayComplete?: boolean;
|
|
1882
1880
|
isStockAdjustment?: boolean | null;
|
|
1883
|
-
createdFromShortReceipt
|
|
1881
|
+
createdFromShortReceipt?: boolean;
|
|
1884
1882
|
}
|
|
1885
1883
|
declare namespace DeliveryUpdateModel {
|
|
1886
1884
|
}
|
|
@@ -4027,7 +4025,7 @@ interface ReplenishmentAccesses {
|
|
|
4027
4025
|
data: Array<ReplenishmentAccessGridView>;
|
|
4028
4026
|
}
|
|
4029
4027
|
|
|
4030
|
-
declare class
|
|
4028
|
+
declare class ReplenishmentAccessService extends BaseService {
|
|
4031
4029
|
protected httpClient: HttpClient;
|
|
4032
4030
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
4033
4031
|
/**
|
|
@@ -4177,8 +4175,8 @@ declare class ReplenishmentAccessesService extends BaseService {
|
|
|
4177
4175
|
context?: HttpContext;
|
|
4178
4176
|
transferCache?: boolean;
|
|
4179
4177
|
}): Observable<HttpEvent<ReplenishmentAccess>>;
|
|
4180
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
4181
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
4178
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentAccessService, [null, { optional: true; }, { optional: true; }]>;
|
|
4179
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentAccessService>;
|
|
4182
4180
|
}
|
|
4183
4181
|
|
|
4184
4182
|
/**
|
|
@@ -5943,6 +5941,21 @@ declare class WavePickReleasesService extends BaseService {
|
|
|
5943
5941
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickReleasesService>;
|
|
5944
5942
|
}
|
|
5945
5943
|
|
|
5944
|
+
/**
|
|
5945
|
+
* Wms.API.Client
|
|
5946
|
+
*
|
|
5947
|
+
*
|
|
5948
|
+
*
|
|
5949
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5950
|
+
* https://openapi-generator.tech
|
|
5951
|
+
* Do not edit the class manually.
|
|
5952
|
+
*/
|
|
5953
|
+
interface WavePickingAccess {
|
|
5954
|
+
id: string;
|
|
5955
|
+
clientId: string;
|
|
5956
|
+
pickByLicencePlate: boolean;
|
|
5957
|
+
}
|
|
5958
|
+
|
|
5946
5959
|
/**
|
|
5947
5960
|
* Wms.API.Client
|
|
5948
5961
|
*
|
|
@@ -6004,6 +6017,29 @@ declare class WavePickingAccessService extends BaseService {
|
|
|
6004
6017
|
context?: HttpContext;
|
|
6005
6018
|
transferCache?: boolean;
|
|
6006
6019
|
}): Observable<HttpEvent<any>>;
|
|
6020
|
+
/**
|
|
6021
|
+
* Get a wave picking access record by Id
|
|
6022
|
+
* @endpoint get /wavePickingAccesses/{id}
|
|
6023
|
+
* @param id
|
|
6024
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6025
|
+
* @param reportProgress flag to report request and response progress.
|
|
6026
|
+
* @param options additional options
|
|
6027
|
+
*/
|
|
6028
|
+
getWavePickingAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6029
|
+
httpHeaderAccept?: 'application/json';
|
|
6030
|
+
context?: HttpContext;
|
|
6031
|
+
transferCache?: boolean;
|
|
6032
|
+
}): Observable<WavePickingAccessView>;
|
|
6033
|
+
getWavePickingAccess(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6034
|
+
httpHeaderAccept?: 'application/json';
|
|
6035
|
+
context?: HttpContext;
|
|
6036
|
+
transferCache?: boolean;
|
|
6037
|
+
}): Observable<HttpResponse<WavePickingAccessView>>;
|
|
6038
|
+
getWavePickingAccess(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6039
|
+
httpHeaderAccept?: 'application/json';
|
|
6040
|
+
context?: HttpContext;
|
|
6041
|
+
transferCache?: boolean;
|
|
6042
|
+
}): Observable<HttpEvent<WavePickingAccessView>>;
|
|
6007
6043
|
/**
|
|
6008
6044
|
* Getting wave picking access list
|
|
6009
6045
|
* @endpoint get /wavePickingAccesses
|
|
@@ -6031,6 +6067,30 @@ declare class WavePickingAccessService extends BaseService {
|
|
|
6031
6067
|
context?: HttpContext;
|
|
6032
6068
|
transferCache?: boolean;
|
|
6033
6069
|
}): Observable<HttpEvent<WavePickingAccesses>>;
|
|
6070
|
+
/**
|
|
6071
|
+
* Update a wave picking access record
|
|
6072
|
+
* @endpoint put /wavePickingAccesses/{id}
|
|
6073
|
+
* @param id
|
|
6074
|
+
* @param wavePickingAccess
|
|
6075
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
6076
|
+
* @param reportProgress flag to report request and response progress.
|
|
6077
|
+
* @param options additional options
|
|
6078
|
+
*/
|
|
6079
|
+
updateWavePickingAccess(id: string, wavePickingAccess: WavePickingAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
6080
|
+
httpHeaderAccept?: 'application/json';
|
|
6081
|
+
context?: HttpContext;
|
|
6082
|
+
transferCache?: boolean;
|
|
6083
|
+
}): Observable<WavePickingAccess>;
|
|
6084
|
+
updateWavePickingAccess(id: string, wavePickingAccess: WavePickingAccess, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6085
|
+
httpHeaderAccept?: 'application/json';
|
|
6086
|
+
context?: HttpContext;
|
|
6087
|
+
transferCache?: boolean;
|
|
6088
|
+
}): Observable<HttpResponse<WavePickingAccess>>;
|
|
6089
|
+
updateWavePickingAccess(id: string, wavePickingAccess: WavePickingAccess, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6090
|
+
httpHeaderAccept?: 'application/json';
|
|
6091
|
+
context?: HttpContext;
|
|
6092
|
+
transferCache?: boolean;
|
|
6093
|
+
}): Observable<HttpEvent<WavePickingAccess>>;
|
|
6034
6094
|
static ɵfac: i0.ɵɵFactoryDeclaration<WavePickingAccessService, [null, { optional: true; }, { optional: true; }]>;
|
|
6035
6095
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickingAccessService>;
|
|
6036
6096
|
}
|
|
@@ -6130,7 +6190,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
6130
6190
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
6131
6191
|
}
|
|
6132
6192
|
|
|
6133
|
-
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
|
|
6193
|
+
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)[];
|
|
6134
6194
|
|
|
6135
6195
|
/**
|
|
6136
6196
|
* Wms.API.Client
|
|
@@ -6196,24 +6256,24 @@ interface CartonView {
|
|
|
6196
6256
|
*/
|
|
6197
6257
|
|
|
6198
6258
|
interface DeliveryDataModel {
|
|
6199
|
-
useDirectivePutAway
|
|
6259
|
+
useDirectivePutAway?: boolean;
|
|
6200
6260
|
hbRef: string;
|
|
6201
6261
|
asnDate: string;
|
|
6202
6262
|
warehouseEtaDate: string;
|
|
6203
6263
|
deliveryType: DeliveryType;
|
|
6204
6264
|
deliveryStatus: OrderStatus;
|
|
6205
6265
|
qcType?: QcType;
|
|
6206
|
-
qcRequired
|
|
6207
|
-
createdDate
|
|
6266
|
+
qcRequired?: boolean;
|
|
6267
|
+
createdDate?: string;
|
|
6208
6268
|
arrivedDate?: string | null;
|
|
6209
6269
|
receivingStartDate?: string | null;
|
|
6210
6270
|
confirmedDate?: string | null;
|
|
6211
6271
|
recordType: RecordType;
|
|
6212
6272
|
receiptReasonId?: string | null;
|
|
6213
6273
|
supplierCompliance?: boolean | null;
|
|
6214
|
-
directivePutAwayComplete
|
|
6274
|
+
directivePutAwayComplete?: boolean;
|
|
6215
6275
|
isStockAdjustment?: boolean | null;
|
|
6216
|
-
createdFromShortReceipt
|
|
6276
|
+
createdFromShortReceipt?: boolean;
|
|
6217
6277
|
}
|
|
6218
6278
|
declare namespace DeliveryDataModel {
|
|
6219
6279
|
}
|
|
@@ -6348,5 +6408,5 @@ declare class ApiModule {
|
|
|
6348
6408
|
|
|
6349
6409
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
6350
6410
|
|
|
6351
|
-
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,
|
|
6352
|
-
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, 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, WavePickingAccessView, WavePickingAccesses, Waves };
|
|
6411
|
+
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, 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, WavePickingAccess, WavePickingAccessView, WavePickingAccesses, Waves };
|