@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.171",
3
+ "version": "0.0.173",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -599,7 +599,7 @@ declare class CarrierProviderIntegrationsService extends BaseService {
599
599
  * Do not edit the class manually.
600
600
  */
601
601
  interface CarrierService {
602
- carrierServiceTypeId?: string;
602
+ carrierServiceId?: string;
603
603
  serviceName?: string;
604
604
  }
605
605
 
@@ -1427,6 +1427,524 @@ declare class ClientWaveConfigurationsService extends BaseService {
1427
1427
  static ɵprov: i0.ɵɵInjectableDeclaration<ClientWaveConfigurationsService>;
1428
1428
  }
1429
1429
 
1430
+ /**
1431
+ * Wms.API.Client
1432
+ *
1433
+ *
1434
+ *
1435
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1436
+ * https://openapi-generator.tech
1437
+ * Do not edit the class manually.
1438
+ */
1439
+ interface ClusterPackPrinterRequest {
1440
+ printerId: number;
1441
+ }
1442
+
1443
+ /**
1444
+ * Wms.API.Client
1445
+ *
1446
+ *
1447
+ *
1448
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1449
+ * https://openapi-generator.tech
1450
+ * Do not edit the class manually.
1451
+ */
1452
+ interface ClusterPackPrinterView {
1453
+ printerId: number;
1454
+ printerDescription: string;
1455
+ }
1456
+
1457
+ /**
1458
+ * Wms.API.Client
1459
+ *
1460
+ *
1461
+ *
1462
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1463
+ * https://openapi-generator.tech
1464
+ * Do not edit the class manually.
1465
+ */
1466
+ declare const ClusterPackWaveGridTypes: {
1467
+ readonly SetPrinter: "SetPrinter";
1468
+ readonly ToBeProcessed: "ToBeProcessed";
1469
+ readonly PartiallySuccessful: "PartiallySuccessful";
1470
+ readonly AllSuccessful: "AllSuccessful";
1471
+ readonly AllFailed: "AllFailed";
1472
+ readonly NoLongerRequired: "NoLongerRequired";
1473
+ };
1474
+ type ClusterPackWaveGridTypes = typeof ClusterPackWaveGridTypes[keyof typeof ClusterPackWaveGridTypes];
1475
+
1476
+ /**
1477
+ * Wms.API.Client
1478
+ *
1479
+ *
1480
+ *
1481
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1482
+ * https://openapi-generator.tech
1483
+ * Do not edit the class manually.
1484
+ */
1485
+ declare const ClusterPackStatuses: {
1486
+ readonly ToBeProcessed: "ToBeProcessed";
1487
+ readonly PartiallySuccessful: "PartiallySuccessful";
1488
+ readonly AllSuccessful: "AllSuccessful";
1489
+ readonly AllFailed: "AllFailed";
1490
+ readonly NoLongerRequired: "NoLongerRequired";
1491
+ };
1492
+ type ClusterPackStatuses = typeof ClusterPackStatuses[keyof typeof ClusterPackStatuses];
1493
+
1494
+ /**
1495
+ * Wms.API.Client
1496
+ *
1497
+ *
1498
+ *
1499
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1500
+ * https://openapi-generator.tech
1501
+ * Do not edit the class manually.
1502
+ */
1503
+ declare const DocumentGenerationStatuses: {
1504
+ readonly NoDocsToGenerate: "NoDocsToGenerate";
1505
+ readonly ToBeGenerated: "ToBeGenerated";
1506
+ readonly Regenerate: "Regenerate";
1507
+ readonly Complete: "Complete";
1508
+ readonly Exception: "Exception";
1509
+ };
1510
+ type DocumentGenerationStatuses = typeof DocumentGenerationStatuses[keyof typeof DocumentGenerationStatuses];
1511
+
1512
+ /**
1513
+ * Wms.API.Client
1514
+ *
1515
+ *
1516
+ *
1517
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1518
+ * https://openapi-generator.tech
1519
+ * Do not edit the class manually.
1520
+ */
1521
+ declare const WaveStatuses: {
1522
+ readonly Active: "Active";
1523
+ readonly Complete: "Complete";
1524
+ readonly Closed: "Closed";
1525
+ };
1526
+ type WaveStatuses = typeof WaveStatuses[keyof typeof WaveStatuses];
1527
+
1528
+ /**
1529
+ * Wms.API.Client
1530
+ *
1531
+ *
1532
+ *
1533
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1534
+ * https://openapi-generator.tech
1535
+ * Do not edit the class manually.
1536
+ */
1537
+
1538
+ interface ClusterPackWaveView {
1539
+ id: string;
1540
+ wavePickReleaseId: string;
1541
+ waveNumber: number;
1542
+ waveStatus: WaveStatuses;
1543
+ dispatchCount: number;
1544
+ skipped: boolean;
1545
+ shortShipped: boolean;
1546
+ createdDate: string;
1547
+ createdBy: string;
1548
+ completedDate?: string | null;
1549
+ completedBy?: string;
1550
+ closedDate?: string | null;
1551
+ closedBy?: string;
1552
+ client: string;
1553
+ wavePickReleaseNumber: string;
1554
+ waveConfigurationDescription: string;
1555
+ extPlatesPending: boolean;
1556
+ documentGenerationStatus: DocumentGenerationStatuses;
1557
+ locked: boolean;
1558
+ clusterPick: boolean;
1559
+ reverseSortOrder: boolean;
1560
+ containsCi?: boolean | null;
1561
+ containsNsr?: boolean | null;
1562
+ containsBuildKit: boolean;
1563
+ clusterPackStatus?: ClusterPackStatuses | null;
1564
+ autoPrint: boolean;
1565
+ printerId?: number | null;
1566
+ printerDescription?: string | null;
1567
+ pickStartDate?: string | null;
1568
+ }
1569
+ declare namespace ClusterPackWaveView {
1570
+ }
1571
+
1572
+ /**
1573
+ * Wms.API.Client
1574
+ *
1575
+ *
1576
+ *
1577
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1578
+ * https://openapi-generator.tech
1579
+ * Do not edit the class manually.
1580
+ */
1581
+
1582
+ interface ClusterPackWaves {
1583
+ total: number;
1584
+ data: Array<ClusterPackWaveView>;
1585
+ }
1586
+
1587
+ /**
1588
+ * Wms.API.Client
1589
+ *
1590
+ *
1591
+ *
1592
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1593
+ * https://openapi-generator.tech
1594
+ * Do not edit the class manually.
1595
+ */
1596
+ interface ClusterPackingErrorLogView {
1597
+ id: number;
1598
+ waveId?: string | null;
1599
+ client: string;
1600
+ wavePickReleaseNumber: string;
1601
+ waveNumber: number;
1602
+ dispatchId?: string | null;
1603
+ dispatchNumber?: string | null;
1604
+ salesOrderNumberList?: string | null;
1605
+ createdDate: string;
1606
+ log?: string | null;
1607
+ }
1608
+
1609
+ /**
1610
+ * Wms.API.Client
1611
+ *
1612
+ *
1613
+ *
1614
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1615
+ * https://openapi-generator.tech
1616
+ * Do not edit the class manually.
1617
+ */
1618
+
1619
+ interface ClusterPackingErrorLogs {
1620
+ total: number;
1621
+ data: Array<ClusterPackingErrorLogView>;
1622
+ }
1623
+
1624
+ /**
1625
+ * Wms.API.Client
1626
+ *
1627
+ *
1628
+ *
1629
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1630
+ * https://openapi-generator.tech
1631
+ * Do not edit the class manually.
1632
+ */
1633
+ declare const ReprintStatuses: {
1634
+ readonly Queued: "Queued";
1635
+ readonly Completed: "Completed";
1636
+ };
1637
+ type ReprintStatuses = typeof ReprintStatuses[keyof typeof ReprintStatuses];
1638
+
1639
+ /**
1640
+ * Wms.API.Client
1641
+ *
1642
+ *
1643
+ *
1644
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1645
+ * https://openapi-generator.tech
1646
+ * Do not edit the class manually.
1647
+ */
1648
+
1649
+ interface ClusterPackingReprintView {
1650
+ id: number;
1651
+ waveId: string;
1652
+ client: string;
1653
+ wavePickReleaseNumber: string;
1654
+ waveNumber: number;
1655
+ waveConfigurationDescription: string;
1656
+ dispatchCount: number;
1657
+ printerId: number;
1658
+ printerDescription?: string;
1659
+ reprintStatus: ReprintStatuses;
1660
+ reprintedBy: string;
1661
+ reprintRequestDate: string;
1662
+ reprintCompleteDate?: string | null;
1663
+ }
1664
+ declare namespace ClusterPackingReprintView {
1665
+ }
1666
+
1667
+ /**
1668
+ * Wms.API.Client
1669
+ *
1670
+ *
1671
+ *
1672
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1673
+ * https://openapi-generator.tech
1674
+ * Do not edit the class manually.
1675
+ */
1676
+
1677
+ interface ClusterPackingReprints {
1678
+ total: number;
1679
+ data: Array<ClusterPackingReprintView>;
1680
+ }
1681
+
1682
+ /**
1683
+ * Wms.API.Client
1684
+ *
1685
+ *
1686
+ *
1687
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1688
+ * https://openapi-generator.tech
1689
+ * Do not edit the class manually.
1690
+ */
1691
+ interface QueueClusterPackReprintResult {
1692
+ success: boolean;
1693
+ }
1694
+
1695
+ /**
1696
+ * Wms.API.Client
1697
+ *
1698
+ *
1699
+ *
1700
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1701
+ * https://openapi-generator.tech
1702
+ * Do not edit the class manually.
1703
+ */
1704
+ interface SetWavePrinterResult {
1705
+ success: boolean;
1706
+ }
1707
+
1708
+ declare class ClusterPackingService extends BaseService {
1709
+ protected httpClient: HttpClient;
1710
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1711
+ /**
1712
+ * Getting the current user\&#39;s label printers for the current DC
1713
+ * @endpoint get /clusterPacking/label-printers
1714
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1715
+ * @param reportProgress flag to report request and response progress.
1716
+ * @param options additional options
1717
+ */
1718
+ getClusterPackLabelPrinters(observe?: 'body', reportProgress?: boolean, options?: {
1719
+ httpHeaderAccept?: 'application/json';
1720
+ context?: HttpContext;
1721
+ transferCache?: boolean;
1722
+ }): Observable<Array<ClusterPackPrinterView>>;
1723
+ getClusterPackLabelPrinters(observe?: 'response', reportProgress?: boolean, options?: {
1724
+ httpHeaderAccept?: 'application/json';
1725
+ context?: HttpContext;
1726
+ transferCache?: boolean;
1727
+ }): Observable<HttpResponse<Array<ClusterPackPrinterView>>>;
1728
+ getClusterPackLabelPrinters(observe?: 'events', reportProgress?: boolean, options?: {
1729
+ httpHeaderAccept?: 'application/json';
1730
+ context?: HttpContext;
1731
+ transferCache?: boolean;
1732
+ }): Observable<HttpEvent<Array<ClusterPackPrinterView>>>;
1733
+ /**
1734
+ * Getting cluster pack waves by grid type
1735
+ * @endpoint get /clusterPacking/waves/{gridType}
1736
+ * @param gridType
1737
+ * @param $skip
1738
+ * @param $top
1739
+ * @param $orderby
1740
+ * @param $filter
1741
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1742
+ * @param reportProgress flag to report request and response progress.
1743
+ * @param options additional options
1744
+ */
1745
+ getClusterPackWavesByGridType(gridType: ClusterPackWaveGridTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
1746
+ httpHeaderAccept?: 'application/json';
1747
+ context?: HttpContext;
1748
+ transferCache?: boolean;
1749
+ }): Observable<ClusterPackWaves>;
1750
+ getClusterPackWavesByGridType(gridType: ClusterPackWaveGridTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
1751
+ httpHeaderAccept?: 'application/json';
1752
+ context?: HttpContext;
1753
+ transferCache?: boolean;
1754
+ }): Observable<HttpResponse<ClusterPackWaves>>;
1755
+ getClusterPackWavesByGridType(gridType: ClusterPackWaveGridTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
1756
+ httpHeaderAccept?: 'application/json';
1757
+ context?: HttpContext;
1758
+ transferCache?: boolean;
1759
+ }): Observable<HttpEvent<ClusterPackWaves>>;
1760
+ /**
1761
+ * Getting cluster pack waves by grid type from the search index
1762
+ * @endpoint get /clusterPacking/waves/{gridType}/search
1763
+ * @param gridType
1764
+ * @param $skip
1765
+ * @param $top
1766
+ * @param $orderby
1767
+ * @param $filter
1768
+ * @param searchTerm
1769
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1770
+ * @param reportProgress flag to report request and response progress.
1771
+ * @param options additional options
1772
+ */
1773
+ getClusterPackWavesByGridTypeFromIndex(gridType: ClusterPackWaveGridTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
1774
+ httpHeaderAccept?: 'application/json';
1775
+ context?: HttpContext;
1776
+ transferCache?: boolean;
1777
+ }): Observable<ClusterPackWaves>;
1778
+ getClusterPackWavesByGridTypeFromIndex(gridType: ClusterPackWaveGridTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
1779
+ httpHeaderAccept?: 'application/json';
1780
+ context?: HttpContext;
1781
+ transferCache?: boolean;
1782
+ }): Observable<HttpResponse<ClusterPackWaves>>;
1783
+ getClusterPackWavesByGridTypeFromIndex(gridType: ClusterPackWaveGridTypes, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
1784
+ httpHeaderAccept?: 'application/json';
1785
+ context?: HttpContext;
1786
+ transferCache?: boolean;
1787
+ }): Observable<HttpEvent<ClusterPackWaves>>;
1788
+ /**
1789
+ * Getting cluster packing error log
1790
+ * @endpoint get /clusterPacking/errorLog
1791
+ * @param $skip
1792
+ * @param $top
1793
+ * @param $orderby
1794
+ * @param $filter
1795
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1796
+ * @param reportProgress flag to report request and response progress.
1797
+ * @param options additional options
1798
+ */
1799
+ getClusterPackingErrorLog($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
1800
+ httpHeaderAccept?: 'application/json';
1801
+ context?: HttpContext;
1802
+ transferCache?: boolean;
1803
+ }): Observable<ClusterPackingErrorLogs>;
1804
+ getClusterPackingErrorLog($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
1805
+ httpHeaderAccept?: 'application/json';
1806
+ context?: HttpContext;
1807
+ transferCache?: boolean;
1808
+ }): Observable<HttpResponse<ClusterPackingErrorLogs>>;
1809
+ getClusterPackingErrorLog($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
1810
+ httpHeaderAccept?: 'application/json';
1811
+ context?: HttpContext;
1812
+ transferCache?: boolean;
1813
+ }): Observable<HttpEvent<ClusterPackingErrorLogs>>;
1814
+ /**
1815
+ * Getting cluster packing error log from the search index
1816
+ * @endpoint get /clusterPacking/errorLog/search
1817
+ * @param $skip
1818
+ * @param $top
1819
+ * @param $orderby
1820
+ * @param $filter
1821
+ * @param searchTerm
1822
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1823
+ * @param reportProgress flag to report request and response progress.
1824
+ * @param options additional options
1825
+ */
1826
+ getClusterPackingErrorLogFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
1827
+ httpHeaderAccept?: 'application/json';
1828
+ context?: HttpContext;
1829
+ transferCache?: boolean;
1830
+ }): Observable<ClusterPackingErrorLogs>;
1831
+ getClusterPackingErrorLogFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
1832
+ httpHeaderAccept?: 'application/json';
1833
+ context?: HttpContext;
1834
+ transferCache?: boolean;
1835
+ }): Observable<HttpResponse<ClusterPackingErrorLogs>>;
1836
+ getClusterPackingErrorLogFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
1837
+ httpHeaderAccept?: 'application/json';
1838
+ context?: HttpContext;
1839
+ transferCache?: boolean;
1840
+ }): Observable<HttpEvent<ClusterPackingErrorLogs>>;
1841
+ /**
1842
+ * Getting cluster pack reprints by status
1843
+ * @endpoint get /clusterPacking/reprints/{reprintStatus}
1844
+ * @param reprintStatus
1845
+ * @param $skip
1846
+ * @param $top
1847
+ * @param $orderby
1848
+ * @param $filter
1849
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1850
+ * @param reportProgress flag to report request and response progress.
1851
+ * @param options additional options
1852
+ */
1853
+ getClusterPackingReprintsByStatus(reprintStatus: ReprintStatuses, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
1854
+ httpHeaderAccept?: 'application/json';
1855
+ context?: HttpContext;
1856
+ transferCache?: boolean;
1857
+ }): Observable<ClusterPackingReprints>;
1858
+ getClusterPackingReprintsByStatus(reprintStatus: ReprintStatuses, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
1859
+ httpHeaderAccept?: 'application/json';
1860
+ context?: HttpContext;
1861
+ transferCache?: boolean;
1862
+ }): Observable<HttpResponse<ClusterPackingReprints>>;
1863
+ getClusterPackingReprintsByStatus(reprintStatus: ReprintStatuses, $skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
1864
+ httpHeaderAccept?: 'application/json';
1865
+ context?: HttpContext;
1866
+ transferCache?: boolean;
1867
+ }): Observable<HttpEvent<ClusterPackingReprints>>;
1868
+ /**
1869
+ * Getting cluster pack reprints by status from the search index
1870
+ * @endpoint get /clusterPacking/reprints/{reprintStatus}/search
1871
+ * @param reprintStatus
1872
+ * @param $skip
1873
+ * @param $top
1874
+ * @param $orderby
1875
+ * @param $filter
1876
+ * @param searchTerm
1877
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1878
+ * @param reportProgress flag to report request and response progress.
1879
+ * @param options additional options
1880
+ */
1881
+ getClusterPackingReprintsByStatusFromIndex(reprintStatus: ReprintStatuses, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
1882
+ httpHeaderAccept?: 'application/json';
1883
+ context?: HttpContext;
1884
+ transferCache?: boolean;
1885
+ }): Observable<ClusterPackingReprints>;
1886
+ getClusterPackingReprintsByStatusFromIndex(reprintStatus: ReprintStatuses, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
1887
+ httpHeaderAccept?: 'application/json';
1888
+ context?: HttpContext;
1889
+ transferCache?: boolean;
1890
+ }): Observable<HttpResponse<ClusterPackingReprints>>;
1891
+ getClusterPackingReprintsByStatusFromIndex(reprintStatus: ReprintStatuses, $skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
1892
+ httpHeaderAccept?: 'application/json';
1893
+ context?: HttpContext;
1894
+ transferCache?: boolean;
1895
+ }): Observable<HttpEvent<ClusterPackingReprints>>;
1896
+ /**
1897
+ * Queue a cluster pack wave for reprint
1898
+ * @endpoint post /clusterPacking/waves/{waveId}/reprint
1899
+ * @param waveId
1900
+ * @param clusterPackPrinterRequest
1901
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1902
+ * @param reportProgress flag to report request and response progress.
1903
+ * @param options additional options
1904
+ */
1905
+ queueClusterPackReprint(waveId: string, clusterPackPrinterRequest: ClusterPackPrinterRequest, observe?: 'body', reportProgress?: boolean, options?: {
1906
+ httpHeaderAccept?: 'application/json';
1907
+ context?: HttpContext;
1908
+ transferCache?: boolean;
1909
+ }): Observable<QueueClusterPackReprintResult>;
1910
+ queueClusterPackReprint(waveId: string, clusterPackPrinterRequest: ClusterPackPrinterRequest, observe?: 'response', reportProgress?: boolean, options?: {
1911
+ httpHeaderAccept?: 'application/json';
1912
+ context?: HttpContext;
1913
+ transferCache?: boolean;
1914
+ }): Observable<HttpResponse<QueueClusterPackReprintResult>>;
1915
+ queueClusterPackReprint(waveId: string, clusterPackPrinterRequest: ClusterPackPrinterRequest, observe?: 'events', reportProgress?: boolean, options?: {
1916
+ httpHeaderAccept?: 'application/json';
1917
+ context?: HttpContext;
1918
+ transferCache?: boolean;
1919
+ }): Observable<HttpEvent<QueueClusterPackReprintResult>>;
1920
+ /**
1921
+ * Set the printer for a cluster pack wave
1922
+ * @endpoint patch /clusterPacking/waves/{waveId}/printer
1923
+ * @param waveId
1924
+ * @param clusterPackPrinterRequest
1925
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1926
+ * @param reportProgress flag to report request and response progress.
1927
+ * @param options additional options
1928
+ */
1929
+ setClusterPackWavePrinter(waveId: string, clusterPackPrinterRequest: ClusterPackPrinterRequest, observe?: 'body', reportProgress?: boolean, options?: {
1930
+ httpHeaderAccept?: 'application/json';
1931
+ context?: HttpContext;
1932
+ transferCache?: boolean;
1933
+ }): Observable<SetWavePrinterResult>;
1934
+ setClusterPackWavePrinter(waveId: string, clusterPackPrinterRequest: ClusterPackPrinterRequest, observe?: 'response', reportProgress?: boolean, options?: {
1935
+ httpHeaderAccept?: 'application/json';
1936
+ context?: HttpContext;
1937
+ transferCache?: boolean;
1938
+ }): Observable<HttpResponse<SetWavePrinterResult>>;
1939
+ setClusterPackWavePrinter(waveId: string, clusterPackPrinterRequest: ClusterPackPrinterRequest, observe?: 'events', reportProgress?: boolean, options?: {
1940
+ httpHeaderAccept?: 'application/json';
1941
+ context?: HttpContext;
1942
+ transferCache?: boolean;
1943
+ }): Observable<HttpEvent<SetWavePrinterResult>>;
1944
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClusterPackingService, [null, { optional: true; }, { optional: true; }]>;
1945
+ static ɵprov: i0.ɵɵInjectableDeclaration<ClusterPackingService>;
1946
+ }
1947
+
1430
1948
  /**
1431
1949
  * Wms.API.Client
1432
1950
  *
@@ -3665,17 +4183,17 @@ declare class DispatchesService extends BaseService {
3665
4183
  * @param reportProgress flag to report request and response progress.
3666
4184
  * @param options additional options
3667
4185
  */
3668
- setDispatchCarrierReference(id: string, courierReference: string, carrierServiceName?: string, observe?: 'body', reportProgress?: boolean, options?: {
4186
+ setDispatchCarrierReference(id: string, courierReference?: string, carrierServiceName?: string, observe?: 'body', reportProgress?: boolean, options?: {
3669
4187
  httpHeaderAccept?: undefined;
3670
4188
  context?: HttpContext;
3671
4189
  transferCache?: boolean;
3672
4190
  }): Observable<any>;
3673
- setDispatchCarrierReference(id: string, courierReference: string, carrierServiceName?: string, observe?: 'response', reportProgress?: boolean, options?: {
4191
+ setDispatchCarrierReference(id: string, courierReference?: string, carrierServiceName?: string, observe?: 'response', reportProgress?: boolean, options?: {
3674
4192
  httpHeaderAccept?: undefined;
3675
4193
  context?: HttpContext;
3676
4194
  transferCache?: boolean;
3677
4195
  }): Observable<HttpResponse<any>>;
3678
- setDispatchCarrierReference(id: string, courierReference: string, carrierServiceName?: string, observe?: 'events', reportProgress?: boolean, options?: {
4196
+ setDispatchCarrierReference(id: string, courierReference?: string, carrierServiceName?: string, observe?: 'events', reportProgress?: boolean, options?: {
3679
4197
  httpHeaderAccept?: undefined;
3680
4198
  context?: HttpContext;
3681
4199
  transferCache?: boolean;
@@ -7479,58 +7997,6 @@ interface UnlockWaveResult {
7479
7997
  success: boolean;
7480
7998
  }
7481
7999
 
7482
- /**
7483
- * Wms.API.Client
7484
- *
7485
- *
7486
- *
7487
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7488
- * https://openapi-generator.tech
7489
- * Do not edit the class manually.
7490
- */
7491
- declare const ClusterPackStatuses: {
7492
- readonly ToBeProcessed: "ToBeProcessed";
7493
- readonly PartiallySuccessful: "PartiallySuccessful";
7494
- readonly AllSuccessful: "AllSuccessful";
7495
- readonly AllFailed: "AllFailed";
7496
- readonly NoLongerRequired: "NoLongerRequired";
7497
- };
7498
- type ClusterPackStatuses = typeof ClusterPackStatuses[keyof typeof ClusterPackStatuses];
7499
-
7500
- /**
7501
- * Wms.API.Client
7502
- *
7503
- *
7504
- *
7505
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7506
- * https://openapi-generator.tech
7507
- * Do not edit the class manually.
7508
- */
7509
- declare const DocumentGenerationStatuses: {
7510
- readonly NoDocsToGenerate: "NoDocsToGenerate";
7511
- readonly ToBeGenerated: "ToBeGenerated";
7512
- readonly Regenerate: "Regenerate";
7513
- readonly Complete: "Complete";
7514
- readonly Exception: "Exception";
7515
- };
7516
- type DocumentGenerationStatuses = typeof DocumentGenerationStatuses[keyof typeof DocumentGenerationStatuses];
7517
-
7518
- /**
7519
- * Wms.API.Client
7520
- *
7521
- *
7522
- *
7523
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
7524
- * https://openapi-generator.tech
7525
- * Do not edit the class manually.
7526
- */
7527
- declare const WaveStatuses: {
7528
- readonly Active: "Active";
7529
- readonly Complete: "Complete";
7530
- readonly Closed: "Closed";
7531
- };
7532
- type WaveStatuses = typeof WaveStatuses[keyof typeof WaveStatuses];
7533
-
7534
8000
  /**
7535
8001
  * Wms.API.Client
7536
8002
  *
@@ -8302,7 +8768,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
8302
8768
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
8303
8769
  }
8304
8770
 
8305
- declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | 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 UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
8771
+ declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CarriersService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof ClusterPackingService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PickSummariesService | 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 UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WaveSummariesService | typeof WavesByPickReleaseIdService)[];
8306
8772
 
8307
8773
  /**
8308
8774
  * Wms.API.Client
@@ -8575,5 +9041,5 @@ declare class ApiModule {
8575
9041
 
8576
9042
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
8577
9043
 
8578
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, 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, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, 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, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
8579
- export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
9044
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, 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, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
9045
+ export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };