@indigina/wms-api 0.0.125 → 0.0.127
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 +45 -8
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +107 -19
package/package.json
CHANGED
|
@@ -1761,7 +1761,6 @@ interface Delivery {
|
|
|
1761
1761
|
customerCompanyId: string | null;
|
|
1762
1762
|
supplierCompanyId: string | null;
|
|
1763
1763
|
useDirectivePutAway: boolean;
|
|
1764
|
-
ownerCompanyId?: string;
|
|
1765
1764
|
deliveryNumber?: string;
|
|
1766
1765
|
hbRef: string;
|
|
1767
1766
|
asnDate: string | null;
|
|
@@ -1791,18 +1790,13 @@ declare namespace Delivery {
|
|
|
1791
1790
|
* Do not edit the class manually.
|
|
1792
1791
|
*/
|
|
1793
1792
|
|
|
1794
|
-
interface
|
|
1795
|
-
customerCompanyId?: string | null;
|
|
1796
|
-
supplierCompanyId?: string | null;
|
|
1793
|
+
interface DeliveryCreateModel {
|
|
1797
1794
|
useDirectivePutAway: boolean;
|
|
1798
|
-
ownerCompanyId?: string | null;
|
|
1799
|
-
deliveryNumber?: string | null;
|
|
1800
1795
|
hbRef: string;
|
|
1801
|
-
asnDate
|
|
1802
|
-
warehouseEtaDate
|
|
1796
|
+
asnDate: string;
|
|
1797
|
+
warehouseEtaDate: string;
|
|
1803
1798
|
deliveryType: DeliveryType;
|
|
1804
1799
|
deliveryStatus: OrderStatus;
|
|
1805
|
-
dcId?: string | null;
|
|
1806
1800
|
qcType?: QcType;
|
|
1807
1801
|
qcRequired: boolean;
|
|
1808
1802
|
createdDate: string;
|
|
@@ -1815,8 +1809,13 @@ interface DeliveryDataModel {
|
|
|
1815
1809
|
directivePutAwayComplete: boolean;
|
|
1816
1810
|
isStockAdjustment?: boolean | null;
|
|
1817
1811
|
createdFromShortReceipt: boolean;
|
|
1812
|
+
customerCompanyId: string;
|
|
1813
|
+
supplierCompanyId: string;
|
|
1814
|
+
ownerCompanyId?: string | null;
|
|
1815
|
+
deliveryNumber?: string | null;
|
|
1816
|
+
dcId: string;
|
|
1818
1817
|
}
|
|
1819
|
-
declare namespace
|
|
1818
|
+
declare namespace DeliveryCreateModel {
|
|
1820
1819
|
}
|
|
1821
1820
|
|
|
1822
1821
|
/**
|
|
@@ -1853,6 +1852,39 @@ interface DeliverySummary {
|
|
|
1853
1852
|
declare namespace DeliverySummary {
|
|
1854
1853
|
}
|
|
1855
1854
|
|
|
1855
|
+
/**
|
|
1856
|
+
* Wms.API.Client
|
|
1857
|
+
*
|
|
1858
|
+
*
|
|
1859
|
+
*
|
|
1860
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1861
|
+
* https://openapi-generator.tech
|
|
1862
|
+
* Do not edit the class manually.
|
|
1863
|
+
*/
|
|
1864
|
+
|
|
1865
|
+
interface DeliveryUpdateModel {
|
|
1866
|
+
useDirectivePutAway: boolean;
|
|
1867
|
+
hbRef: string;
|
|
1868
|
+
asnDate: string;
|
|
1869
|
+
warehouseEtaDate: string;
|
|
1870
|
+
deliveryType: DeliveryType;
|
|
1871
|
+
deliveryStatus: OrderStatus;
|
|
1872
|
+
qcType?: QcType;
|
|
1873
|
+
qcRequired: boolean;
|
|
1874
|
+
createdDate: string;
|
|
1875
|
+
arrivedDate?: string | null;
|
|
1876
|
+
receivingStartDate?: string | null;
|
|
1877
|
+
confirmedDate?: string | null;
|
|
1878
|
+
recordType: RecordType;
|
|
1879
|
+
receiptReasonId?: string | null;
|
|
1880
|
+
supplierCompliance?: boolean | null;
|
|
1881
|
+
directivePutAwayComplete: boolean;
|
|
1882
|
+
isStockAdjustment?: boolean | null;
|
|
1883
|
+
createdFromShortReceipt: boolean;
|
|
1884
|
+
}
|
|
1885
|
+
declare namespace DeliveryUpdateModel {
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1856
1888
|
declare class DeliveriesService extends BaseService {
|
|
1857
1889
|
protected httpClient: HttpClient;
|
|
1858
1890
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -1928,22 +1960,22 @@ declare class DeliveriesService extends BaseService {
|
|
|
1928
1960
|
/**
|
|
1929
1961
|
* Create a specific delivery
|
|
1930
1962
|
* @endpoint post /deliveries
|
|
1931
|
-
* @param
|
|
1963
|
+
* @param deliveryCreateModel
|
|
1932
1964
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1933
1965
|
* @param reportProgress flag to report request and response progress.
|
|
1934
1966
|
* @param options additional options
|
|
1935
1967
|
*/
|
|
1936
|
-
createDelivery(
|
|
1968
|
+
createDelivery(deliveryCreateModel: DeliveryCreateModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1937
1969
|
httpHeaderAccept?: 'application/json';
|
|
1938
1970
|
context?: HttpContext;
|
|
1939
1971
|
transferCache?: boolean;
|
|
1940
1972
|
}): Observable<Delivery>;
|
|
1941
|
-
createDelivery(
|
|
1973
|
+
createDelivery(deliveryCreateModel: DeliveryCreateModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1942
1974
|
httpHeaderAccept?: 'application/json';
|
|
1943
1975
|
context?: HttpContext;
|
|
1944
1976
|
transferCache?: boolean;
|
|
1945
1977
|
}): Observable<HttpResponse<Delivery>>;
|
|
1946
|
-
createDelivery(
|
|
1978
|
+
createDelivery(deliveryCreateModel: DeliveryCreateModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1947
1979
|
httpHeaderAccept?: 'application/json';
|
|
1948
1980
|
context?: HttpContext;
|
|
1949
1981
|
transferCache?: boolean;
|
|
@@ -2076,22 +2108,22 @@ declare class DeliveriesService extends BaseService {
|
|
|
2076
2108
|
* Update a specific delivery
|
|
2077
2109
|
* @endpoint put /deliveries/{id}
|
|
2078
2110
|
* @param id
|
|
2079
|
-
* @param
|
|
2111
|
+
* @param deliveryUpdateModel
|
|
2080
2112
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2081
2113
|
* @param reportProgress flag to report request and response progress.
|
|
2082
2114
|
* @param options additional options
|
|
2083
2115
|
*/
|
|
2084
|
-
setDelivery(id: string,
|
|
2116
|
+
setDelivery(id: string, deliveryUpdateModel: DeliveryUpdateModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2085
2117
|
httpHeaderAccept?: 'application/json';
|
|
2086
2118
|
context?: HttpContext;
|
|
2087
2119
|
transferCache?: boolean;
|
|
2088
2120
|
}): Observable<Delivery>;
|
|
2089
|
-
setDelivery(id: string,
|
|
2121
|
+
setDelivery(id: string, deliveryUpdateModel: DeliveryUpdateModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2090
2122
|
httpHeaderAccept?: 'application/json';
|
|
2091
2123
|
context?: HttpContext;
|
|
2092
2124
|
transferCache?: boolean;
|
|
2093
2125
|
}): Observable<HttpResponse<Delivery>>;
|
|
2094
|
-
setDelivery(id: string,
|
|
2126
|
+
setDelivery(id: string, deliveryUpdateModel: DeliveryUpdateModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2095
2127
|
httpHeaderAccept?: 'application/json';
|
|
2096
2128
|
context?: HttpContext;
|
|
2097
2129
|
transferCache?: boolean;
|
|
@@ -5949,6 +5981,29 @@ interface WavePickingAccesses {
|
|
|
5949
5981
|
declare class WavePickingAccessService extends BaseService {
|
|
5950
5982
|
protected httpClient: HttpClient;
|
|
5951
5983
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5984
|
+
/**
|
|
5985
|
+
* Delete a wave picking access record
|
|
5986
|
+
* @endpoint delete /wavePickingAccesses/{id}
|
|
5987
|
+
* @param id
|
|
5988
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5989
|
+
* @param reportProgress flag to report request and response progress.
|
|
5990
|
+
* @param options additional options
|
|
5991
|
+
*/
|
|
5992
|
+
deleteWavePickingAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5993
|
+
httpHeaderAccept?: 'application/json';
|
|
5994
|
+
context?: HttpContext;
|
|
5995
|
+
transferCache?: boolean;
|
|
5996
|
+
}): Observable<any>;
|
|
5997
|
+
deleteWavePickingAccess(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5998
|
+
httpHeaderAccept?: 'application/json';
|
|
5999
|
+
context?: HttpContext;
|
|
6000
|
+
transferCache?: boolean;
|
|
6001
|
+
}): Observable<HttpResponse<any>>;
|
|
6002
|
+
deleteWavePickingAccess(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6003
|
+
httpHeaderAccept?: 'application/json';
|
|
6004
|
+
context?: HttpContext;
|
|
6005
|
+
transferCache?: boolean;
|
|
6006
|
+
}): Observable<HttpEvent<any>>;
|
|
5952
6007
|
/**
|
|
5953
6008
|
* Getting wave picking access list
|
|
5954
6009
|
* @endpoint get /wavePickingAccesses
|
|
@@ -6130,6 +6185,39 @@ interface CartonView {
|
|
|
6130
6185
|
productMasterSystemEan?: ProductMasterSystemEan;
|
|
6131
6186
|
}
|
|
6132
6187
|
|
|
6188
|
+
/**
|
|
6189
|
+
* Wms.API.Client
|
|
6190
|
+
*
|
|
6191
|
+
*
|
|
6192
|
+
*
|
|
6193
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6194
|
+
* https://openapi-generator.tech
|
|
6195
|
+
* Do not edit the class manually.
|
|
6196
|
+
*/
|
|
6197
|
+
|
|
6198
|
+
interface DeliveryDataModel {
|
|
6199
|
+
useDirectivePutAway: boolean;
|
|
6200
|
+
hbRef: string;
|
|
6201
|
+
asnDate: string;
|
|
6202
|
+
warehouseEtaDate: string;
|
|
6203
|
+
deliveryType: DeliveryType;
|
|
6204
|
+
deliveryStatus: OrderStatus;
|
|
6205
|
+
qcType?: QcType;
|
|
6206
|
+
qcRequired: boolean;
|
|
6207
|
+
createdDate: string;
|
|
6208
|
+
arrivedDate?: string | null;
|
|
6209
|
+
receivingStartDate?: string | null;
|
|
6210
|
+
confirmedDate?: string | null;
|
|
6211
|
+
recordType: RecordType;
|
|
6212
|
+
receiptReasonId?: string | null;
|
|
6213
|
+
supplierCompliance?: boolean | null;
|
|
6214
|
+
directivePutAwayComplete: boolean;
|
|
6215
|
+
isStockAdjustment?: boolean | null;
|
|
6216
|
+
createdFromShortReceipt: boolean;
|
|
6217
|
+
}
|
|
6218
|
+
declare namespace DeliveryDataModel {
|
|
6219
|
+
}
|
|
6220
|
+
|
|
6133
6221
|
/**
|
|
6134
6222
|
* Wms.API.Client
|
|
6135
6223
|
*
|
|
@@ -6260,5 +6348,5 @@ declare class ApiModule {
|
|
|
6260
6348
|
|
|
6261
6349
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
6262
6350
|
|
|
6263
|
-
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, PrintTypes, Printer, PrinterView, PrintersService, 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, UserPrinter, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
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, ReplenishmentAccessesService, 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 };
|
|
6264
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 };
|