@indigina/wms-api 0.0.171 → 0.0.173
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 +504 -5
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +525 -59
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @indigina/wms-api@0.0.
|
|
1
|
+
# @indigina/wms-api@0.0.173
|
|
2
2
|
|
|
3
3
|
WMS API Client for Angular applications
|
|
4
4
|
|
|
@@ -24,7 +24,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
24
24
|
_published:_
|
|
25
25
|
|
|
26
26
|
```console
|
|
27
|
-
npm install @indigina/wms-api@0.0.
|
|
27
|
+
npm install @indigina/wms-api@0.0.173 --save
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
_without publishing (not recommended):_
|
|
@@ -1648,6 +1648,426 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
1648
1648
|
type: Optional
|
|
1649
1649
|
}] }] });
|
|
1650
1650
|
|
|
1651
|
+
/**
|
|
1652
|
+
* Wms.API.Client
|
|
1653
|
+
*
|
|
1654
|
+
*
|
|
1655
|
+
*
|
|
1656
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1657
|
+
* https://openapi-generator.tech
|
|
1658
|
+
* Do not edit the class manually.
|
|
1659
|
+
*/
|
|
1660
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
1661
|
+
class ClusterPackingService extends BaseService {
|
|
1662
|
+
httpClient;
|
|
1663
|
+
constructor(httpClient, basePath, configuration) {
|
|
1664
|
+
super(basePath, configuration);
|
|
1665
|
+
this.httpClient = httpClient;
|
|
1666
|
+
}
|
|
1667
|
+
getClusterPackLabelPrinters(observe = 'body', reportProgress = false, options) {
|
|
1668
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1669
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
1670
|
+
'application/json'
|
|
1671
|
+
]);
|
|
1672
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1673
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
1674
|
+
}
|
|
1675
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1676
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1677
|
+
let responseType_ = 'json';
|
|
1678
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1679
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
1680
|
+
responseType_ = 'text';
|
|
1681
|
+
}
|
|
1682
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1683
|
+
responseType_ = 'json';
|
|
1684
|
+
}
|
|
1685
|
+
else {
|
|
1686
|
+
responseType_ = 'blob';
|
|
1687
|
+
}
|
|
1688
|
+
}
|
|
1689
|
+
let localVarPath = `/clusterPacking/label-printers`;
|
|
1690
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1691
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
1692
|
+
context: localVarHttpContext,
|
|
1693
|
+
responseType: responseType_,
|
|
1694
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1695
|
+
headers: localVarHeaders,
|
|
1696
|
+
observe: observe,
|
|
1697
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
1698
|
+
reportProgress: reportProgress
|
|
1699
|
+
});
|
|
1700
|
+
}
|
|
1701
|
+
getClusterPackWavesByGridType(gridType, $skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
1702
|
+
if (gridType === null || gridType === undefined) {
|
|
1703
|
+
throw new Error('Required parameter gridType was null or undefined when calling getClusterPackWavesByGridType.');
|
|
1704
|
+
}
|
|
1705
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
1706
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
1707
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
1708
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
1709
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
1710
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1711
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
1712
|
+
'application/json'
|
|
1713
|
+
]);
|
|
1714
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1715
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
1716
|
+
}
|
|
1717
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1718
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1719
|
+
let responseType_ = 'json';
|
|
1720
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1721
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
1722
|
+
responseType_ = 'text';
|
|
1723
|
+
}
|
|
1724
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1725
|
+
responseType_ = 'json';
|
|
1726
|
+
}
|
|
1727
|
+
else {
|
|
1728
|
+
responseType_ = 'blob';
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1731
|
+
let localVarPath = `/clusterPacking/waves/${this.configuration.encodeParam({ name: "gridType", value: gridType, in: "path", style: "simple", explode: false, dataType: "ClusterPackWaveGridTypes", dataFormat: undefined })}`;
|
|
1732
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1733
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
1734
|
+
context: localVarHttpContext,
|
|
1735
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
1736
|
+
responseType: responseType_,
|
|
1737
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1738
|
+
headers: localVarHeaders,
|
|
1739
|
+
observe: observe,
|
|
1740
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
1741
|
+
reportProgress: reportProgress
|
|
1742
|
+
});
|
|
1743
|
+
}
|
|
1744
|
+
getClusterPackWavesByGridTypeFromIndex(gridType, $skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
1745
|
+
if (gridType === null || gridType === undefined) {
|
|
1746
|
+
throw new Error('Required parameter gridType was null or undefined when calling getClusterPackWavesByGridTypeFromIndex.');
|
|
1747
|
+
}
|
|
1748
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
1749
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
1750
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
1751
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
1752
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
1753
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
1754
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1755
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
1756
|
+
'application/json'
|
|
1757
|
+
]);
|
|
1758
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1759
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
1760
|
+
}
|
|
1761
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1762
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1763
|
+
let responseType_ = 'json';
|
|
1764
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1765
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
1766
|
+
responseType_ = 'text';
|
|
1767
|
+
}
|
|
1768
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1769
|
+
responseType_ = 'json';
|
|
1770
|
+
}
|
|
1771
|
+
else {
|
|
1772
|
+
responseType_ = 'blob';
|
|
1773
|
+
}
|
|
1774
|
+
}
|
|
1775
|
+
let localVarPath = `/clusterPacking/waves/${this.configuration.encodeParam({ name: "gridType", value: gridType, in: "path", style: "simple", explode: false, dataType: "ClusterPackWaveGridTypes", dataFormat: undefined })}/search`;
|
|
1776
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1777
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
1778
|
+
context: localVarHttpContext,
|
|
1779
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
1780
|
+
responseType: responseType_,
|
|
1781
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1782
|
+
headers: localVarHeaders,
|
|
1783
|
+
observe: observe,
|
|
1784
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
1785
|
+
reportProgress: reportProgress
|
|
1786
|
+
});
|
|
1787
|
+
}
|
|
1788
|
+
getClusterPackingErrorLog($skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
1789
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
1790
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
1791
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
1792
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
1793
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
1794
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1795
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
1796
|
+
'application/json'
|
|
1797
|
+
]);
|
|
1798
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1799
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
1800
|
+
}
|
|
1801
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1802
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1803
|
+
let responseType_ = 'json';
|
|
1804
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1805
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
1806
|
+
responseType_ = 'text';
|
|
1807
|
+
}
|
|
1808
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1809
|
+
responseType_ = 'json';
|
|
1810
|
+
}
|
|
1811
|
+
else {
|
|
1812
|
+
responseType_ = 'blob';
|
|
1813
|
+
}
|
|
1814
|
+
}
|
|
1815
|
+
let localVarPath = `/clusterPacking/errorLog`;
|
|
1816
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1817
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
1818
|
+
context: localVarHttpContext,
|
|
1819
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
1820
|
+
responseType: responseType_,
|
|
1821
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1822
|
+
headers: localVarHeaders,
|
|
1823
|
+
observe: observe,
|
|
1824
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
1825
|
+
reportProgress: reportProgress
|
|
1826
|
+
});
|
|
1827
|
+
}
|
|
1828
|
+
getClusterPackingErrorLogFromIndex($skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
1829
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
1830
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
1831
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
1832
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
1833
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
1834
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
1835
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1836
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
1837
|
+
'application/json'
|
|
1838
|
+
]);
|
|
1839
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1840
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
1841
|
+
}
|
|
1842
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1843
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1844
|
+
let responseType_ = 'json';
|
|
1845
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1846
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
1847
|
+
responseType_ = 'text';
|
|
1848
|
+
}
|
|
1849
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1850
|
+
responseType_ = 'json';
|
|
1851
|
+
}
|
|
1852
|
+
else {
|
|
1853
|
+
responseType_ = 'blob';
|
|
1854
|
+
}
|
|
1855
|
+
}
|
|
1856
|
+
let localVarPath = `/clusterPacking/errorLog/search`;
|
|
1857
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1858
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
1859
|
+
context: localVarHttpContext,
|
|
1860
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
1861
|
+
responseType: responseType_,
|
|
1862
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1863
|
+
headers: localVarHeaders,
|
|
1864
|
+
observe: observe,
|
|
1865
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
1866
|
+
reportProgress: reportProgress
|
|
1867
|
+
});
|
|
1868
|
+
}
|
|
1869
|
+
getClusterPackingReprintsByStatus(reprintStatus, $skip, $top, $orderby, $filter, observe = 'body', reportProgress = false, options) {
|
|
1870
|
+
if (reprintStatus === null || reprintStatus === undefined) {
|
|
1871
|
+
throw new Error('Required parameter reprintStatus was null or undefined when calling getClusterPackingReprintsByStatus.');
|
|
1872
|
+
}
|
|
1873
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
1874
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
1875
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
1876
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
1877
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
1878
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1879
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
1880
|
+
'application/json'
|
|
1881
|
+
]);
|
|
1882
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1883
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
1884
|
+
}
|
|
1885
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1886
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1887
|
+
let responseType_ = 'json';
|
|
1888
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1889
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
1890
|
+
responseType_ = 'text';
|
|
1891
|
+
}
|
|
1892
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1893
|
+
responseType_ = 'json';
|
|
1894
|
+
}
|
|
1895
|
+
else {
|
|
1896
|
+
responseType_ = 'blob';
|
|
1897
|
+
}
|
|
1898
|
+
}
|
|
1899
|
+
let localVarPath = `/clusterPacking/reprints/${this.configuration.encodeParam({ name: "reprintStatus", value: reprintStatus, in: "path", style: "simple", explode: false, dataType: "ReprintStatuses", dataFormat: undefined })}`;
|
|
1900
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1901
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
1902
|
+
context: localVarHttpContext,
|
|
1903
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
1904
|
+
responseType: responseType_,
|
|
1905
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1906
|
+
headers: localVarHeaders,
|
|
1907
|
+
observe: observe,
|
|
1908
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
1909
|
+
reportProgress: reportProgress
|
|
1910
|
+
});
|
|
1911
|
+
}
|
|
1912
|
+
getClusterPackingReprintsByStatusFromIndex(reprintStatus, $skip, $top, $orderby, $filter, searchTerm, observe = 'body', reportProgress = false, options) {
|
|
1913
|
+
if (reprintStatus === null || reprintStatus === undefined) {
|
|
1914
|
+
throw new Error('Required parameter reprintStatus was null or undefined when calling getClusterPackingReprintsByStatusFromIndex.');
|
|
1915
|
+
}
|
|
1916
|
+
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
1917
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$skip', $skip, QueryParamStyle.Form, true);
|
|
1918
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$top', $top, QueryParamStyle.Form, true);
|
|
1919
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$orderby', $orderby, QueryParamStyle.Form, true);
|
|
1920
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, '$filter', $filter, QueryParamStyle.Form, true);
|
|
1921
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'searchTerm', searchTerm, QueryParamStyle.Form, true);
|
|
1922
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1923
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
1924
|
+
'application/json'
|
|
1925
|
+
]);
|
|
1926
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1927
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
1928
|
+
}
|
|
1929
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1930
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1931
|
+
let responseType_ = 'json';
|
|
1932
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1933
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
1934
|
+
responseType_ = 'text';
|
|
1935
|
+
}
|
|
1936
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1937
|
+
responseType_ = 'json';
|
|
1938
|
+
}
|
|
1939
|
+
else {
|
|
1940
|
+
responseType_ = 'blob';
|
|
1941
|
+
}
|
|
1942
|
+
}
|
|
1943
|
+
let localVarPath = `/clusterPacking/reprints/${this.configuration.encodeParam({ name: "reprintStatus", value: reprintStatus, in: "path", style: "simple", explode: false, dataType: "ReprintStatuses", dataFormat: undefined })}/search`;
|
|
1944
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1945
|
+
return this.httpClient.request('get', `${basePath}${localVarPath}`, {
|
|
1946
|
+
context: localVarHttpContext,
|
|
1947
|
+
params: localVarQueryParameters.toHttpParams(),
|
|
1948
|
+
responseType: responseType_,
|
|
1949
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1950
|
+
headers: localVarHeaders,
|
|
1951
|
+
observe: observe,
|
|
1952
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
1953
|
+
reportProgress: reportProgress
|
|
1954
|
+
});
|
|
1955
|
+
}
|
|
1956
|
+
queueClusterPackReprint(waveId, clusterPackPrinterRequest, observe = 'body', reportProgress = false, options) {
|
|
1957
|
+
if (waveId === null || waveId === undefined) {
|
|
1958
|
+
throw new Error('Required parameter waveId was null or undefined when calling queueClusterPackReprint.');
|
|
1959
|
+
}
|
|
1960
|
+
if (clusterPackPrinterRequest === null || clusterPackPrinterRequest === undefined) {
|
|
1961
|
+
throw new Error('Required parameter clusterPackPrinterRequest was null or undefined when calling queueClusterPackReprint.');
|
|
1962
|
+
}
|
|
1963
|
+
let localVarHeaders = this.defaultHeaders;
|
|
1964
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
1965
|
+
'application/json'
|
|
1966
|
+
]);
|
|
1967
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
1968
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
1969
|
+
}
|
|
1970
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
1971
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
1972
|
+
// to determine the Content-Type header
|
|
1973
|
+
const consumes = [
|
|
1974
|
+
'application/json'
|
|
1975
|
+
];
|
|
1976
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1977
|
+
if (httpContentTypeSelected !== undefined) {
|
|
1978
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
1979
|
+
}
|
|
1980
|
+
let responseType_ = 'json';
|
|
1981
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
1982
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
1983
|
+
responseType_ = 'text';
|
|
1984
|
+
}
|
|
1985
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
1986
|
+
responseType_ = 'json';
|
|
1987
|
+
}
|
|
1988
|
+
else {
|
|
1989
|
+
responseType_ = 'blob';
|
|
1990
|
+
}
|
|
1991
|
+
}
|
|
1992
|
+
let localVarPath = `/clusterPacking/waves/${this.configuration.encodeParam({ name: "waveId", value: waveId, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/reprint`;
|
|
1993
|
+
const { basePath, withCredentials } = this.configuration;
|
|
1994
|
+
return this.httpClient.request('post', `${basePath}${localVarPath}`, {
|
|
1995
|
+
context: localVarHttpContext,
|
|
1996
|
+
body: clusterPackPrinterRequest,
|
|
1997
|
+
responseType: responseType_,
|
|
1998
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
1999
|
+
headers: localVarHeaders,
|
|
2000
|
+
observe: observe,
|
|
2001
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
2002
|
+
reportProgress: reportProgress
|
|
2003
|
+
});
|
|
2004
|
+
}
|
|
2005
|
+
setClusterPackWavePrinter(waveId, clusterPackPrinterRequest, observe = 'body', reportProgress = false, options) {
|
|
2006
|
+
if (waveId === null || waveId === undefined) {
|
|
2007
|
+
throw new Error('Required parameter waveId was null or undefined when calling setClusterPackWavePrinter.');
|
|
2008
|
+
}
|
|
2009
|
+
if (clusterPackPrinterRequest === null || clusterPackPrinterRequest === undefined) {
|
|
2010
|
+
throw new Error('Required parameter clusterPackPrinterRequest was null or undefined when calling setClusterPackWavePrinter.');
|
|
2011
|
+
}
|
|
2012
|
+
let localVarHeaders = this.defaultHeaders;
|
|
2013
|
+
const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
2014
|
+
'application/json'
|
|
2015
|
+
]);
|
|
2016
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
2017
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
2018
|
+
}
|
|
2019
|
+
const localVarHttpContext = options?.context ?? new HttpContext();
|
|
2020
|
+
const localVarTransferCache = options?.transferCache ?? true;
|
|
2021
|
+
// to determine the Content-Type header
|
|
2022
|
+
const consumes = [
|
|
2023
|
+
'application/json'
|
|
2024
|
+
];
|
|
2025
|
+
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
2026
|
+
if (httpContentTypeSelected !== undefined) {
|
|
2027
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
2028
|
+
}
|
|
2029
|
+
let responseType_ = 'json';
|
|
2030
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
2031
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
2032
|
+
responseType_ = 'text';
|
|
2033
|
+
}
|
|
2034
|
+
else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
2035
|
+
responseType_ = 'json';
|
|
2036
|
+
}
|
|
2037
|
+
else {
|
|
2038
|
+
responseType_ = 'blob';
|
|
2039
|
+
}
|
|
2040
|
+
}
|
|
2041
|
+
let localVarPath = `/clusterPacking/waves/${this.configuration.encodeParam({ name: "waveId", value: waveId, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: "uuid" })}/printer`;
|
|
2042
|
+
const { basePath, withCredentials } = this.configuration;
|
|
2043
|
+
return this.httpClient.request('patch', `${basePath}${localVarPath}`, {
|
|
2044
|
+
context: localVarHttpContext,
|
|
2045
|
+
body: clusterPackPrinterRequest,
|
|
2046
|
+
responseType: responseType_,
|
|
2047
|
+
...(withCredentials ? { withCredentials } : {}),
|
|
2048
|
+
headers: localVarHeaders,
|
|
2049
|
+
observe: observe,
|
|
2050
|
+
...(localVarTransferCache !== undefined ? { transferCache: localVarTransferCache } : {}),
|
|
2051
|
+
reportProgress: reportProgress
|
|
2052
|
+
});
|
|
2053
|
+
}
|
|
2054
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ClusterPackingService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2055
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ClusterPackingService, providedIn: 'root' });
|
|
2056
|
+
}
|
|
2057
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImport: i0, type: ClusterPackingService, decorators: [{
|
|
2058
|
+
type: Injectable,
|
|
2059
|
+
args: [{
|
|
2060
|
+
providedIn: 'root'
|
|
2061
|
+
}]
|
|
2062
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
|
|
2063
|
+
type: Optional
|
|
2064
|
+
}, {
|
|
2065
|
+
type: Inject,
|
|
2066
|
+
args: [BASE_PATH]
|
|
2067
|
+
}] }, { type: Configuration, decorators: [{
|
|
2068
|
+
type: Optional
|
|
2069
|
+
}] }] });
|
|
2070
|
+
|
|
1651
2071
|
/**
|
|
1652
2072
|
* Wms.API.Client
|
|
1653
2073
|
*
|
|
@@ -3634,9 +4054,6 @@ class DispatchesService extends BaseService {
|
|
|
3634
4054
|
if (id === null || id === undefined) {
|
|
3635
4055
|
throw new Error('Required parameter id was null or undefined when calling setDispatchCarrierReference.');
|
|
3636
4056
|
}
|
|
3637
|
-
if (courierReference === null || courierReference === undefined) {
|
|
3638
|
-
throw new Error('Required parameter courierReference was null or undefined when calling setDispatchCarrierReference.');
|
|
3639
|
-
}
|
|
3640
4057
|
let localVarQueryParameters = new OpenApiHttpParams(this.encoder);
|
|
3641
4058
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'courierReference', courierReference, QueryParamStyle.Form, true);
|
|
3642
4059
|
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters, 'carrierServiceName', carrierServiceName, QueryParamStyle.Form, true);
|
|
@@ -8855,7 +9272,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.0", ngImpor
|
|
|
8855
9272
|
type: Optional
|
|
8856
9273
|
}] }] });
|
|
8857
9274
|
|
|
8858
|
-
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
|
|
9275
|
+
const APIS = [AnalyticsService, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackingService, CompaniesService, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, HealthService, LicencePlateSerialsService, NotesService, PendoService, PermissionsService, PickSummariesService, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ReasonsService, ReplenishmentAccessService, ReplenishmentRecordsService, ReturnedItemsService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UserService, UserCompaniesService, UserPrintersService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WavePickReleasesService, WavePickingAccessService, WaveSummariesService, WavesByPickReleaseIdService];
|
|
9276
|
+
|
|
9277
|
+
/**
|
|
9278
|
+
* Wms.API.Client
|
|
9279
|
+
*
|
|
9280
|
+
*
|
|
9281
|
+
*
|
|
9282
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9283
|
+
* https://openapi-generator.tech
|
|
9284
|
+
* Do not edit the class manually.
|
|
9285
|
+
*/
|
|
9286
|
+
|
|
9287
|
+
/**
|
|
9288
|
+
* Wms.API.Client
|
|
9289
|
+
*
|
|
9290
|
+
*
|
|
9291
|
+
*
|
|
9292
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9293
|
+
* https://openapi-generator.tech
|
|
9294
|
+
* Do not edit the class manually.
|
|
9295
|
+
*/
|
|
8859
9296
|
|
|
8860
9297
|
/**
|
|
8861
9298
|
* Wms.API.Client
|
|
@@ -8974,6 +9411,34 @@ const ClusterPackStatuses = {
|
|
|
8974
9411
|
NoLongerRequired: 'NoLongerRequired'
|
|
8975
9412
|
};
|
|
8976
9413
|
|
|
9414
|
+
/**
|
|
9415
|
+
* Wms.API.Client
|
|
9416
|
+
*
|
|
9417
|
+
*
|
|
9418
|
+
*
|
|
9419
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9420
|
+
* https://openapi-generator.tech
|
|
9421
|
+
* Do not edit the class manually.
|
|
9422
|
+
*/
|
|
9423
|
+
const ClusterPackWaveGridTypes = {
|
|
9424
|
+
SetPrinter: 'SetPrinter',
|
|
9425
|
+
ToBeProcessed: 'ToBeProcessed',
|
|
9426
|
+
PartiallySuccessful: 'PartiallySuccessful',
|
|
9427
|
+
AllSuccessful: 'AllSuccessful',
|
|
9428
|
+
AllFailed: 'AllFailed',
|
|
9429
|
+
NoLongerRequired: 'NoLongerRequired'
|
|
9430
|
+
};
|
|
9431
|
+
|
|
9432
|
+
/**
|
|
9433
|
+
* Wms.API.Client
|
|
9434
|
+
*
|
|
9435
|
+
*
|
|
9436
|
+
*
|
|
9437
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9438
|
+
* https://openapi-generator.tech
|
|
9439
|
+
* Do not edit the class manually.
|
|
9440
|
+
*/
|
|
9441
|
+
|
|
8977
9442
|
/**
|
|
8978
9443
|
* Wms.API.Client
|
|
8979
9444
|
*
|
|
@@ -9472,6 +9937,16 @@ const QcType = {
|
|
|
9472
9937
|
CheckerCount: 'CheckerCount'
|
|
9473
9938
|
};
|
|
9474
9939
|
|
|
9940
|
+
/**
|
|
9941
|
+
* Wms.API.Client
|
|
9942
|
+
*
|
|
9943
|
+
*
|
|
9944
|
+
*
|
|
9945
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9946
|
+
* https://openapi-generator.tech
|
|
9947
|
+
* Do not edit the class manually.
|
|
9948
|
+
*/
|
|
9949
|
+
|
|
9475
9950
|
/**
|
|
9476
9951
|
* Wms.API.Client
|
|
9477
9952
|
*
|
|
@@ -9591,6 +10066,30 @@ const ReplenishmentTypes = {
|
|
|
9591
10066
|
System: 'System'
|
|
9592
10067
|
};
|
|
9593
10068
|
|
|
10069
|
+
/**
|
|
10070
|
+
* Wms.API.Client
|
|
10071
|
+
*
|
|
10072
|
+
*
|
|
10073
|
+
*
|
|
10074
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10075
|
+
* https://openapi-generator.tech
|
|
10076
|
+
* Do not edit the class manually.
|
|
10077
|
+
*/
|
|
10078
|
+
|
|
10079
|
+
/**
|
|
10080
|
+
* Wms.API.Client
|
|
10081
|
+
*
|
|
10082
|
+
*
|
|
10083
|
+
*
|
|
10084
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10085
|
+
* https://openapi-generator.tech
|
|
10086
|
+
* Do not edit the class manually.
|
|
10087
|
+
*/
|
|
10088
|
+
const ReprintStatuses = {
|
|
10089
|
+
Queued: 'Queued',
|
|
10090
|
+
Completed: 'Completed'
|
|
10091
|
+
};
|
|
10092
|
+
|
|
9594
10093
|
/**
|
|
9595
10094
|
* Wms.API.Client
|
|
9596
10095
|
*
|
|
@@ -9939,5 +10438,5 @@ function provideApi(configOrBasePath) {
|
|
|
9939
10438
|
* Generated bundle index. Do not edit.
|
|
9940
10439
|
*/
|
|
9941
10440
|
|
|
9942
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
10441
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemsService, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackingService, CompaniesService, Configuration, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, DeliveryItemsService, DeliveryType, DeviceType, DispatchBoxesService, DispatchItemQuantityChangesService, DispatchItemsService, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintTypes, PrintersService, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WavePickReleaseMethods, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WavesByPickReleaseIdService, provideApi };
|
|
9943
10442
|
//# sourceMappingURL=indigina-wms-api.mjs.map
|